Skip to content

Commit

Permalink
Bump tenacity from 8.2.3 to 9.0.0 (#88)
Browse files Browse the repository at this point in the history
Bumps [tenacity](https://github.com/jd/tenacity) from 8.2.3 to 9.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jd/tenacity/releases">tenacity's
releases</a>.</em></p>
<blockquote>
<h2>tenacity 9.0.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Respects <code>min</code> argument for
<code>wait_random_exponential</code> by <a
href="https://github.com/yxtay"><code>@​yxtay</code></a> in <a
href="https://redirect.github.com/jd/tenacity/pull/425">jd/tenacity#425</a></li>
<li>Bump major version to warn API breakage on statistics attribute</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jd/tenacity/compare/8.5.0...9.0.0">https://github.com/jd/tenacity/compare/8.5.0...9.0.0</a></p>
<h2>8.5.0</h2>
<h2>What's Changed</h2>
<ul>
<li>fix: Restore contents of retry attribute for wrapped functions by <a
href="https://github.com/hasier"><code>@​hasier</code></a> in <a
href="https://redirect.github.com/jd/tenacity/pull/484">jd/tenacity#484</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jd/tenacity/compare/8.4.2...8.5.0">https://github.com/jd/tenacity/compare/8.4.2...8.5.0</a></p>
<h2>tenacity 8.4.2</h2>
<h2>What's Changed</h2>
<ul>
<li>fix: Avoid overwriting local contexts with retry decorator by <a
href="https://github.com/hasier"><code>@​hasier</code></a> in <a
href="https://redirect.github.com/jd/tenacity/pull/479">jd/tenacity#479</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jd/tenacity/compare/8.4.1...8.4.2">https://github.com/jd/tenacity/compare/8.4.1...8.4.2</a></p>
<h2>tenacity 8.4.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Include <code>tenacity.asyncio</code> subpackage in release dist by
<a href="https://github.com/cdce8p"><code>@​cdce8p</code></a> in <a
href="https://redirect.github.com/jd/tenacity/pull/474">jd/tenacity#474</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jd/tenacity/compare/8.4.0...8.4.1">https://github.com/jd/tenacity/compare/8.4.0...8.4.1</a></p>
<h2>tenacity 8.4.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Add async strategies by <a
href="https://github.com/hasier"><code>@​hasier</code></a> in <a
href="https://redirect.github.com/jd/tenacity/pull/451">jd/tenacity#451</a></li>
<li>Support Trio out-of-the-box by <a
href="https://github.com/jakkdl"><code>@​jakkdl</code></a> in <a
href="https://redirect.github.com/jd/tenacity/pull/463">jd/tenacity#463</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jd/tenacity/compare/8.3.0...8.4.0">https://github.com/jd/tenacity/compare/8.3.0...8.4.0</a></p>
<h2>8.3.0</h2>
<h1>New Features</h1>
<ul>
<li>Added a new stop function: <code>stop_before_delay</code>, which
will stop execution if the next sleep time would cause overall delay to
exceed the specified delay. Useful for use cases where you have some
upper bound on retry times that you must not exceed, so returning before
that timeout is preferable than returning after that timeout.</li>
</ul>
<h1>Bug Fixes</h1>
<ul>
<li>Preserve <strong>defaults</strong> and <strong>kwdefaults</strong>
through retry decorator</li>
</ul>
<h1>Other Notes</h1>
<ul>
<li>Add a &quot;test&quot; extra</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/jd/tenacity/commit/a662bbb487cd6d34541824589f8e8c7a1f7791bb"><code>a662bbb</code></a>
Respects <code>min</code> argument for
<code>wait_random_exponential</code> (<a
href="https://redirect.github.com/jd/tenacity/issues/425">#425</a>)</li>
<li><a
href="https://github.com/jd/tenacity/commit/31fe2d0cf2505bffd0cf1ffda8c7e30450ce709f"><code>31fe2d0</code></a>
fix: Restore contents of retry attribute for wrapped functions (<a
href="https://redirect.github.com/jd/tenacity/issues/484">#484</a>)</li>
<li><a
href="https://github.com/jd/tenacity/commit/33cd0e1d4ac529f2f7853eba66b8127232f1ec63"><code>33cd0e1</code></a>
chore(deps): bump actions/checkout in the github-actions group (<a
href="https://redirect.github.com/jd/tenacity/issues/483">#483</a>)</li>
<li><a
href="https://github.com/jd/tenacity/commit/a15fa645326ef776dbef81ee13e3833cd14bdced"><code>a15fa64</code></a>
fix: Avoid overwriting local contexts with retry decorator (<a
href="https://redirect.github.com/jd/tenacity/issues/479">#479</a>)</li>
<li><a
href="https://github.com/jd/tenacity/commit/ee6a8f7a76654d712fd44604d3b6d4f9af6b2249"><code>ee6a8f7</code></a>
Include <code>tenacity.asyncio</code> subpackage in release dist (<a
href="https://redirect.github.com/jd/tenacity/issues/474">#474</a>)</li>
<li><a
href="https://github.com/jd/tenacity/commit/702014bc224240c1bb92bdaab250bda178fd938f"><code>702014b</code></a>
ci: add support for trio in Mergify automerge (<a
href="https://redirect.github.com/jd/tenacity/issues/470">#470</a>)</li>
<li><a
href="https://github.com/jd/tenacity/commit/ade0567151ea6c9494fbca94c777ab729922e527"><code>ade0567</code></a>
Support Trio out-of-the-box, take 2 (<a
href="https://redirect.github.com/jd/tenacity/issues/463">#463</a>)</li>
<li><a
href="https://github.com/jd/tenacity/commit/952189b4e33c02b5cd3fb0eb82dd318087f06d66"><code>952189b</code></a>
Update index.rst: Remove * (<a
href="https://redirect.github.com/jd/tenacity/issues/465">#465</a>)</li>
<li><a
href="https://github.com/jd/tenacity/commit/5b00c1581a25d9777259f81562e9fc16f21c827e"><code>5b00c15</code></a>
chore(deps): bump the github-actions group across 1 directory with 2
updates ...</li>
<li><a
href="https://github.com/jd/tenacity/commit/21137e79ea6d59907b3b8d236c275c5190a612fe"><code>21137e7</code></a>
Add async strategies (<a
href="https://redirect.github.com/jd/tenacity/issues/451">#451</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/jd/tenacity/compare/8.2.3...9.0.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tenacity&package-manager=pip&previous-version=8.2.3&new-version=9.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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)


</details>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Claven <[email protected]>
  • Loading branch information
dependabot[bot] and jesse-c authored Aug 22, 2024
1 parent f7f6849 commit 36d29bb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1-node16
with:
aws-region: eu-west-1
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1

- name: Login to Amazon ECR
id: login-ecr
Expand All @@ -49,4 +49,4 @@ jobs:
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
13 changes: 7 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ python-slugify = "^6.1.2"
python-dateutil = "^2.8.2"
python-dotenv = "^0.19.2"
requests = "^2.28.1"
tenacity = "^8.1.0"
tenacity = "^9.0.0"
json-logging = "^1.3.0"
pypdf = "^4.2.0"
cpr-sdk = "^1.1.6"
Expand Down

0 comments on commit 36d29bb

Please sign in to comment.