Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update bcrypt requirement from 4.1.2 to 4.1.3 in /backend (#705)
Updates the requirements on [bcrypt](https://github.com/pyca/bcrypt) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pyca/bcrypt/blob/main/release.py">bcrypt's changelog</a>.</em></p> <blockquote> <h1>Licensed under the Apache License, Version 2.0 (the "License");</h1> <h1>you may not use this file except in compliance with the License.</h1> <h1>You may obtain a copy of the License at</h1> <h1></h1> <h1><a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a></h1> <h1></h1> <h1>Unless required by applicable law or agreed to in writing, software</h1> <h1>distributed under the License is distributed on an "AS IS" BASIS,</h1> <h1>WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</h1> <h1>See the License for the specific language governing permissions and</h1> <h1>limitations under the License.</h1> <p>import getpass import io import json import os import subprocess import time import zipfile</p> <p>import click import requests</p> <p>def run(*args, **kwargs): print(f"[running] {list(args)}") subprocess.check_call(list(args), **kwargs)</p> <p>def wait_for_build_complete_github_actions(session, token, run_url): while True: response = session.get( run_url, headers={ "Content-Type": "application/json", "Authorization": f"token {token}", }, ) response.raise_for_status() if response.json()["conclusion"] is not None: break time.sleep(3)</p> <p>def download_artifacts_github_actions(session, token, run_url): response = session.get( run_url, headers={ "Content-Type": "application/json", "Authorization": f"token {token}",</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pyca/bcrypt/commit/35e5a6f5a5131bef22f04dcc9bf401b6eab79642"><code>35e5a6f</code></a> Bump version for 4.1.3 release (<a href="https://github.com/pyca/bcrypt/issues/791">#791</a>)</li> <li><a href="https://github.com/pyca/bcrypt/commit/d99d1e568d41c7248269bfd37295f65c74fb12bd"><code>d99d1e5</code></a> Bump autocfg from 1.2.0 to 1.3.0 in /src/_bcrypt (<a href="https://github.com/pyca/bcrypt/issues/790">#790</a>)</li> <li><a href="https://github.com/pyca/bcrypt/commit/0775d47c9a1436706932b1bf8911735881aec8e2"><code>0775d47</code></a> allow testing with pytest 8.2.0 (<a href="https://github.com/pyca/bcrypt/issues/786">#786</a>)</li> <li><a href="https://github.com/pyca/bcrypt/commit/97d09ac5c190de343af145b61d0b4356950281c0"><code>97d09ac</code></a> Bump base64 from 0.22.0 to 0.22.1 in /src/_bcrypt (<a href="https://github.com/pyca/bcrypt/issues/787">#787</a>)</li> <li><a href="https://github.com/pyca/bcrypt/commit/ee4a9a8dd1b23d33da931022f2acbf156316f2fb"><code>ee4a9a8</code></a> use ubuntu rolling in arm64 CI (<a href="https://github.com/pyca/bcrypt/issues/784">#784</a>)</li> <li><a href="https://github.com/pyca/bcrypt/commit/7d2474faa546a1a9daae5cac282977d34fe8aedd"><code>7d2474f</code></a> Bump libc from 0.2.153 to 0.2.154 in /src/_bcrypt (<a href="https://github.com/pyca/bcrypt/issues/783">#783</a>)</li> <li><a href="https://github.com/pyca/bcrypt/commit/7a252dde4d84dedfc9d8e04308234fea18c6fa45"><code>7a252dd</code></a> Try blocking pytest 8.2.0 (<a href="https://github.com/pyca/bcrypt/issues/785">#785</a>)</li> <li><a href="https://github.com/pyca/bcrypt/commit/297a915720a64c15274cd927a2b6f0fef2e28772"><code>297a915</code></a> Remove brew install rust from macOS CI (<a href="https://github.com/pyca/bcrypt/issues/782">#782</a>)</li> <li><a href="https://github.com/pyca/bcrypt/commit/6b3f99eff2447cc7cf9b0cd7bffb3e31871c3648"><code>6b3f99e</code></a> Bump parking_lot_core from 0.9.9 to 0.9.10 in /src/_bcrypt (<a href="https://github.com/pyca/bcrypt/issues/778">#778</a>)</li> <li><a href="https://github.com/pyca/bcrypt/commit/c88b31007dfada537b9594540a4e12d49e08eca0"><code>c88b310</code></a> Bump parking_lot from 0.12.1 to 0.12.2 in /src/_bcrypt (<a href="https://github.com/pyca/bcrypt/issues/780">#780</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pyca/bcrypt/compare/4.1.2...4.1.3">compare view</a></li> </ul> </details> <br /> 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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information