Skip to content

Update bcrypt requirement from 4.0.1 to 4.1.2 in /backend#398

Merged
evroon merged 1 commit intomasterfrom
dependabot/pip/backend/bcrypt-4.1.2
Feb 3, 2024
Merged

Update bcrypt requirement from 4.0.1 to 4.1.2 in /backend#398
evroon merged 1 commit intomasterfrom
dependabot/pip/backend/bcrypt-4.1.2

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Dec 20, 2023

Updates the requirements on bcrypt to permit the latest version.

Changelog

Sourced from bcrypt's changelog.

This file is dual licensed under the terms of the Apache License, Version

2.0, and the BSD License. See the LICENSE file in the root of this repository

for complete details.

import getpass import io import json import os import subprocess import time import zipfile

import click import requests

def run(*args, **kwargs): print(f"[running] {list(args)}") subprocess.check_call(list(args), **kwargs)

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)

def download_artifacts_github_actions(session, token, run_url): response = session.get( run_url, headers={ "Content-Type": "application/json", "Authorization": f"token {token}", }, ) response.raise_for_status()

response = session.get(
    response.json()["artifacts_url"],
    headers={

... (truncated)

Commits
  • b9223e6 Try building py39 wheels to see if that helps with reinitialization errors (#...
  • 5049783 Bump syn from 2.0.40 to 2.0.41 in /src/_bcrypt (#696)
  • 642d070 Bump syn from 2.0.39 to 2.0.40 in /src/_bcrypt (#693)
  • 8b44a10 Bump libc from 0.2.150 to 0.2.151 in /src/_bcrypt (#692)
  • 951cc64 Bump once_cell from 1.18.0 to 1.19.0 in /src/_bcrypt (#690)
  • 7377c6d Bump actions/setup-python from 4.8.0 to 5.0.0 (#689)
  • 61b3203 Bump actions/setup-python from 4.7.1 to 4.8.0 (#688)
  • 1c3159a Fixed wheels for older versions of macOS (#687)
  • 1a41437 Update README.rst (#682)
  • 7881c5b Fix building windows abi3 wheels (#681)
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 20, 2023
@vercel
Copy link
Copy Markdown

vercel bot commented Dec 20, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
bracket ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 17, 2024 3:52pm

@codecov
Copy link
Copy Markdown

codecov bot commented Dec 20, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (b2a2dd1) 90.01% compared to head (0b7d7ba) 90.19%.
Report is 1 commits behind head on master.

❗ Current head 0b7d7ba differs from pull request most recent head 41d70a7. Consider uploading reports for the commit 41d70a7 to get more accurate results

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #398      +/-   ##
==========================================
+ Coverage   90.01%   90.19%   +0.18%     
==========================================
  Files          89       89              
  Lines        2933     2917      -16     
==========================================
- Hits         2640     2631       -9     
+ Misses        293      286       -7     

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

Updates the requirements on [bcrypt](https://github.com/pyca/bcrypt) to permit the latest version.
- [Changelog](https://github.com/pyca/bcrypt/blob/main/release.py)
- [Commits](pyca/bcrypt@4.0.1...4.1.2)

---
updated-dependencies:
- dependency-name: bcrypt
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/backend/bcrypt-4.1.2 branch from 0b7d7ba to 41d70a7 Compare January 17, 2024 15:49
@evroon evroon merged commit 5f411f8 into master Feb 3, 2024
@evroon evroon deleted the dependabot/pip/backend/bcrypt-4.1.2 branch February 3, 2024 13:43
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 python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant