Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8fe26fb

Browse files
authored
Merge branch 'master' into retry-all-methods
2 parents bbad7af + ee200ce commit 8fe26fb

File tree

12 files changed

+150
-174
lines changed

12 files changed

+150
-174
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.
3737

3838
- name: Checkout
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040

4141
- name: Initialize CodeQL
4242
uses: github/codeql-action/init@v2

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Setup Pages
2525
uses: actions/configure-pages@v3

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
2424
fetch-tags: true

.github/workflows/semgrep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group'
4141
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.
4242

43-
- uses: actions/checkout@v3
43+
- uses: actions/checkout@v4
4444
with:
4545
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4646

.github/workflows/snyk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group'
4040
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.
4141

42-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v4
4343
with:
4444
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4545

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
steps:
5353
- name: Checkout code
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555
with:
5656
ref: ${{ github.event.pull_request.head.sha || github.ref }}
5757

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## [4.4.2](https://github.com/auth0/auth0-python/tree/4.4.2) (2023-08-31)
4+
[Full Changelog](https://github.com/auth0/auth0-python/compare/4.4.1...4.4.2)
5+
6+
**Fixed**
7+
- Fix python dependency version [\#522](https://github.com/auth0/auth0-python/pull/522) ([adamjmcgrath](https://github.com/adamjmcgrath))
8+
- Revert publishing types [\#521](https://github.com/auth0/auth0-python/pull/521) ([adamjmcgrath](https://github.com/adamjmcgrath))
9+
310
## [4.4.1](https://github.com/auth0/auth0-python/tree/4.4.1) (2023-08-21)
411
[Full Changelog](https://github.com/auth0/auth0-python/compare/4.4.0...4.4.1)
512

auth0/py.typed

Whitespace-only changes.

mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ignore_errors = True
66

77
[mypy-auth0.management.*]
88
ignore_errors = False
9-
disable_error_code=var-annotated, attr-defined
9+
disable_error_code=var-annotated
1010

1111
[mypy-auth0.rest_async]
1212
disable_error_code=override

poetry.lock

Lines changed: 133 additions & 164 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ files = ["*/__init__.py"]
2626
folders = [{ path = "auth0" }]
2727

2828
[tool.poetry.dependencies]
29-
python = "^3.7"
29+
python = ">=3.7"
3030
aiohttp = "^3.8.5"
3131
pyjwt = "^2.8.0"
3232
cryptography = "^41.0.3" # pyjwt has a weak dependency on cryptography

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ charset-normalizer==3.2.0 ; python_version >= "3.7" and python_version < "4.0"
1111
click==8.1.7 ; python_version >= "3.7" and python_version < "4.0"
1212
colorama==0.4.6 ; python_version >= "3.7" and python_version < "4.0" and sys_platform == "win32" or python_version >= "3.7" and python_version < "4.0" and platform_system == "Windows"
1313
coverage[toml]==7.2.7 ; python_version >= "3.7" and python_version < "4.0"
14-
cryptography==41.0.3 ; python_version >= "3.7" and python_version < "4.0"
14+
cryptography==41.0.4 ; python_version >= "3.7" and python_version < "4.0"
1515
exceptiongroup==1.1.3 ; python_version >= "3.7" and python_version < "3.11"
1616
frozenlist==1.3.3 ; python_version >= "3.7" and python_version < "4.0"
1717
idna==3.4 ; python_version >= "3.7" and python_version < "4.0"
@@ -35,7 +35,7 @@ responses==0.23.3 ; python_version >= "3.7" and python_version < "4.0"
3535
tomli==2.0.1 ; python_version >= "3.7" and python_full_version <= "3.11.0a6"
3636
types-pyyaml==6.0.12.11 ; python_version >= "3.7" and python_version < "4.0"
3737
typing-extensions==4.7.1 ; python_version >= "3.7" and python_version < "3.8"
38-
urllib3==2.0.4 ; python_version >= "3.7" and python_version < "4.0"
38+
urllib3==2.0.6 ; python_version >= "3.7" and python_version < "4.0"
3939
userpath==1.9.0 ; python_version >= "3.7" and python_version < "4.0"
4040
yarl==1.9.2 ; python_version >= "3.7" and python_version < "4.0"
4141
zipp==3.15.0 ; python_version >= "3.7" and python_version < "3.8"

0 commit comments

Comments
 (0)