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

Skip to content

Commit 5cf6553

Browse files
authored
Merge branch 'master' into patch-1
2 parents f742dca + fbeab6a commit 5cf6553

File tree

105 files changed

+2452
-1370
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+2452
-1370
lines changed

.circleci/config.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
- ".venv"
2222
- "/usr/local/bin"
2323
- "/usr/local/lib/python2.7/site-packages"
24-
- run: coverage run --include=auth0/v3/*.py --omit=auth0/v3/test/*.py -m unittest discover
24+
- run:
25+
name: Run tests
26+
command: coverage run --include=auth0/v3/*.py --omit=auth0/v3/test/*.py -m unittest discover
2527
- run:
2628
when: on_success
2729
command: bash <(curl -s https://codecov.io/bash)
@@ -40,13 +42,19 @@ jobs:
4042
command: |
4143
pip install .[test]
4244
pip install codecov
45+
pip install -r docs/requirements.txt
4346
- save_cache:
4447
key: deps3-{{ .Branch }}-{{ checksum "setup.py" }}
4548
paths:
4649
- ".venv"
4750
- "/usr/local/bin"
4851
- "/usr/local/lib/python3.6/site-packages"
49-
- run: coverage run --include=auth0/v3/*.py --omit=auth0/v3/test/*.py -m unittest discover
52+
- run:
53+
name: Run tests
54+
command: coverage run --include=auth0/v3/*.py --omit=auth0/v3/test/*.py -m unittest discover
55+
- run:
56+
name: Build docs
57+
command: cd docs/ && make html
5058
- run:
5159
when: on_success
5260
command: bash <(curl -s https://codecov.io/bash)

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ coverage.xml
4646
*.pot
4747

4848
# Sphinx documentation
49-
docs/_build/
49+
docs/build/
5050

5151
# IDEA
5252
.idea/

.readthedocs.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
3+
sphinx:
4+
configuration: docs/source/conf.py
5+
6+
python:
7+
version: "3.7"
8+
install:
9+
- requirements: docs/requirements.txt

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,56 @@
11
Changes
22
=======
33

4+
3.21.0
5+
------------------
6+
7+
**Added**
8+
- Add pagination to device credentials [\#300](https://github.com/auth0/auth0-python/pull/300) ([fionnulak](https://github.com/fionnulak))
9+
10+
3.20.0
11+
------------------
12+
13+
**Added**
14+
- Add attack protection endpoints [\#303](https://github.com/auth0/auth0-python/pull/303) ([adamjmcgrath](https://github.com/adamjmcgrath))
15+
16+
3.19.0
17+
------------------
18+
19+
**Added**
20+
- Add actions to Auth0 class [\#293](https://github.com/auth0/auth0-python/pull/293) ([jrzerr](https://github.com/jrzerr))
21+
- Added support for prompts API [\#291](https://github.com/auth0/auth0-python/pull/291) ([lorinkoz](https://github.com/lorinkoz))
22+
23+
**Changed**
24+
- Remove references to ID token in generic token classes [\#295](https://github.com/auth0/auth0-python/pull/295) ([lbalmaceda](https://github.com/lbalmaceda))
25+
26+
**Fixed**
27+
- Use assertNotEqual instead of assertNotEquals for Python 3.11 compatibility. [\#294](https://github.com/auth0/auth0-python/pull/294) ([tirkarthi](https://github.com/tirkarthi))
28+
29+
3.18.0
30+
------------------
31+
32+
**Added**
33+
- [SDK-2720] Add support for actions APIs [\#289](https://github.com/auth0/auth0-python/pull/289) ([jimmyjames](https://github.com/jimmyjames))
34+
35+
3.17.0
36+
------------------
37+
38+
**Added**
39+
- Make the CI fail when the docs syntax is invalid [\#287](https://github.com/auth0/auth0-python/pull/287) ([lbalmaceda](https://github.com/lbalmaceda))
40+
- [SDK-2687] Implement automatic rate-limit handling [\#285](https://github.com/auth0/auth0-python/pull/285) ([evansims](https://github.com/evansims))
41+
- Use Sphinx to generate API docs [\#281](https://github.com/auth0/auth0-python/pull/281) ([lbalmaceda](https://github.com/lbalmaceda))
42+
- Add Passwordless Login function [\#279](https://github.com/auth0/auth0-python/pull/279) ([lbalmaceda](https://github.com/lbalmaceda))
43+
- [SDK 2665] Update endpoint methods to support 'from' and 'take' checkpoint pagination parameters, where appropriate [\#278](https://github.com/auth0/auth0-python/pull/278) ([evansims](https://github.com/evansims))
44+
45+
**Deprecated**
46+
- Deprecate /oauth/ro for passwordless [\#280](https://github.com/auth0/auth0-python/pull/280) ([lbalmaceda](https://github.com/lbalmaceda))
47+
48+
3.16.2
49+
------------------
50+
51+
**Fixed**
52+
- Re-Route Job Results endpoint [\#275](https://github.com/auth0/auth0-python/pull/275) ([lbalmaceda](https://github.com/lbalmaceda))
53+
454
3.16.1
555
------------------
656

0 commit comments

Comments
 (0)