Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump flask-session from 0.6.0 to 0.8.0 #250

Merged
merged 1 commit into from
May 22, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 26, 2024

Bumps flask-session from 0.6.0 to 0.8.0.

Release notes

Sourced from flask-session's releases.

0.7.0

Changelog: https://flask-session.readthedocs.io/en/latest/changes.html#id1

Changelog

Sourced from flask-session's changelog.

0.8.0 - 2024-03-26

Added

-   Add DynamoDB session interface (`[#214](https://github.com/pallets-eco/flask-session/issues/214) <https://github.com/pallets-eco/flask-session/pull/214>`_).
-   Add ability to install client libraries for backends using optional dependencies (extras) (`[#228](https://github.com/pallets-eco/flask-session/issues/228) <https://github.com/pallets-eco/flask-session/pull/228>`_).

Fixed

-   Include prematurely removed ``cachelib`` dependency. Will be removed in 1.0.0 to be an optional dependency (`[#223](https://github.com/pallets-eco/flask-session/issues/223) &lt;https://github.com/pallets-eco/flask-session/issues/223&gt;`_).

0.7.0 - 2024-03-18

Changed
</code></pre>
<ul>
<li>Access session interfaces via subfolder, for example <code>flask_session.redis.RedisSessionInterface</code> (<code>2bc7df &lt;https://github.com/pallets-eco/flask-session/commit/2bc7df1be7b8929e55cb25f13845caf0503630d8&amp;gt;&lt;/code&gt;_).&lt;/li>
<li>Deprecate <code>pickle</code> in favor of <code>msgspec</code>, which is configured with <code>SESSION_SERIALIZATION_FORMAT</code> to choose between <code>'json'</code> and <code>'msgpack'</code>. All sessions will convert to msgspec upon first interaction with 0.7.0. Pickle is still available to read existing sessions, but will be removed in 1.0.0. (<code>c7f8ce &lt;https://github.com/pallets-eco/flask-session/commit/c7f8ced0e1532dea87850d34b3328a3fcb769988&amp;gt;&lt;/code&gt;&lt;em>, <code>c7f8ce &lt;https://github.com/pallets-eco/flask-session/commit/c7f8ced0e1532dea87850d34b3328a3fcb769988&amp;gt;&lt;/code&gt;&lt;/em&gt;)&lt;/li>
<li>Deprecate <code>SESSION_USE_SIGNER</code> (<code>a5dba7 &lt;https://github.com/pallets-eco/flask-session/commit/a5dba7022f806c8fb4412d0428b69dd4a077e4a7&amp;gt;&lt;/code&gt;_).&lt;/li>
<li>Deprecate :class:<code>flask_session.filesystem.FileSystemSessionInterface</code> in favor of the broader :class:<code>flask_session.cachelib.CacheLibSessionInterface</code> (<code>2bc7df &lt;https://github.com/pallets-eco/flask-session/commit/2bc7df1be7b8929e55cb25f13845caf0503630d8&amp;gt;&lt;/code&gt;_).&lt;/li>
</ul>
<p>Added</p>
<pre><code>- Add time-to-live expiration for MongoDB (9acee3 &amp;lt;https://github.com/pallets-eco/flask-session/commit/9acee3c5fb7072476f3feea923529d19d5e855c3&amp;gt;_).

  • Add retry for SQL based storage ([#211](https://github.com/pallets-eco/flask-session/issues/211) &amp;lt;https://github.com/pallets-eco/flask-session/pull/211&amp;gt;_).
  • Add flask session_cleanup command and alternatively, SESSION_CLEANUP_N_REQUESTS for SQLAlchemy or future non-TTL backends ([#211](https://github.com/pallets-eco/flask-session/issues/211) &amp;lt;https://github.com/pallets-eco/flask-session/pull/211&amp;gt;_).
  • Add type hints (7d7d58 &amp;lt;https://github.com/pallets-eco/flask-session/commit/7d7d58ce371553da39095a421445cf639a62bd5f&amp;gt;_).
  • Add logo and additional documentation.
  • Add vary cookie header when session modified or accessed as per flask's built-in session (7ab698 &amp;lt;https://github.com/pallets-eco/flask-session/commit/7ab6980c8ba15912df13dd1e78242803e8104dd6&amp;gt;_).
  • Add regenerate method to session interface to mitigate fixation ([#27](https://github.com/pallets-eco/flask-session/issues/27) &amp;lt;https://github.com/pallets-eco/flask-session/pull/27&amp;gt;, [#39](https://github.com/pallets-eco/flask-session/issues/39) &amp;lt;https://github.com/pallets-eco/flask-session/issues/39&amp;gt;)(80df63 &amp;lt;https://github.com/pallets-eco/flask-session/commit/80df635ffd466fa7798f6031be5469b4d5dae069&amp;gt;_).

Removed
</code></pre>
<ul>
<li>Remove null session in favour of relevant exception messages (<code>#107 &lt;https://github.com/pallets-eco/flask-session/issues/107&amp;gt;&lt;/code&gt;&lt;em>, <code>#182 &lt;https://github.com/pallets-eco/flask-session/issues/182&amp;gt;&lt;/code&gt;&lt;/em&gt;)(&lt;code&gt;d7ed1c &lt;https://github.com/pallets-eco/flask-session/commit/d7ed1c6e7eb3904888b72f0d6c006db1b9b60795&amp;gt;&lt;/code&gt;_).&lt;/li>
<li>Drop support for Python 3.7 which is end-of-life and precludes use of msgspec (<code>bd7e5b &lt;https://github.com/pallets-eco/flask-session/commit/bd7e5b0bbfc10cdfa9c83b859593c69cc4381571&amp;gt;&lt;/code&gt;_).&lt;/li>
</ul>
<p>Fixed</p>
<pre><code>- Prevent session identifier reuse on storage miss ([#76](https://github.com/pallets-eco/flask-session/issues/76) &amp;lt;https://github.com/pallets-eco/flask-session/pull/76&amp;gt;_).

  • Abstraction to improve consistency between backends.
  • Enforce PERMANENT_SESSION_LIFETIME as expiration consistently for all backends ([#81](https://github.com/pallets-eco/flask-session/issues/81) &amp;lt;https://github.com/pallets-eco/flask-session/issues/81&amp;gt;)(86895b &amp;lt;https://github.com/pallets-eco/flask-session/commit/86895b523203ca67c9f87416bdbf028852dcb357&amp;gt;).
  • Specifically include backend session interfaces in public API and document usage ([#210](https://github.com/pallets-eco/flask-session/issues/210) &amp;lt;https://github.com/pallets-eco/flask-session/issues/210&amp;gt;_).
  • Fix non-permanent sessions not updating expiry ([#221](https://github.com/pallets-eco/flask-session/issues/221) &amp;lt;https://github.com/pallets-eco/flask-session/issues/221&amp;gt;_).
    </code></pre>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>

<ul>
<li>See full diff in <a href="https://github.com/pallets-eco/flask-session/commits/0.8.0&quot;&gt;compare view</a></li>
</ul>
</details>

<br />

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [flask-session](https://github.com/pallets-eco/flask-session) from 0.6.0 to 0.8.0.
- [Release notes](https://github.com/pallets-eco/flask-session/releases)
- [Changelog](https://github.com/pallets-eco/flask-session/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets-eco/flask-session/commits/0.8.0)

---
updated-dependencies:
- dependency-name: flask-session
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from jdabtieu as a code owner March 26, 2024 08:07
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 26, 2024
Copy link

codecov bot commented Mar 26, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 90.82%. Comparing base (511cc86) to head (f748779).

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #250   +/-   ##
=======================================
  Coverage   90.82%   90.82%           
=======================================
  Files          27       27           
  Lines        2691     2691           
=======================================
  Hits         2444     2444           
  Misses        247      247           
Flag Coverage Δ
unittests 90.82% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@jdabtieu
Copy link
Owner

jdabtieu commented Apr 1, 2024

Note to self: take a look at

Deprecate flask_session.filesystem.FileSystemSessionInterface in favor of the broader flask_session.cachelib.CacheLibSessionInterface (2bc7df).

@jdabtieu jdabtieu merged commit a1531c1 into master May 22, 2024
7 checks passed
@dependabot dependabot bot deleted the dependabot/pip/flask-session-0.8.0 branch May 22, 2024 21:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant