-
Notifications
You must be signed in to change notification settings - Fork 180
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: auth0/auth0-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.10.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: auth0/auth0-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.11.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 6 commits
- 19 files changed
- 2 contributors
Commits on Jun 10, 2025
-
chore: Release Pipeline Failure Fix (#704)
### Changes - Fixing the release pipeline
Configuration menu - View commit details
-
Copy full SHA for 288acf2 - Browse repository at this point
Copy the full SHA 288acf2View commit details
Commits on Jul 2, 2025
-
feat: Support For Network ACL Endpoints (#706)
### Changes - Added Support For `Network Acls` Endpoints Path | HTTP Method | Method Name | -- | -- | -- | | /network-acls | POST | create | | /network-acls/{id} | PUT | update | | /network-acls/{id} | DELETE | delete | | /network-acls | GET | getAll | | /network-acls/{id} | GET | get | | /network-acls/{id} | PATCH | patch | ### References - [Get Network Acls](https://auth0.com/docs/api/management/v2/network-acls/get-network-acls) - [Create Network Acls](https://auth0.com/docs/api/management/v2/network-acls/post-network-acls) - [Get Network Acls By Id](https://auth0.com/docs/api/management/v2/network-acls/get-network-acls-by-id) - [Partial Update Network Acls ](https://auth0.com/docs/api/management/v2/network-acls/patch-network-acls-by-id) - [Update Network Acls ](https://auth0.com/docs/api/management/v2/network-acls/put-network-acls-by-id) - [Delete Network Acls](https://auth0.com/docs/api/management/v2/network-acls/delete-network-acls-by-id) ### Testing - [x] This change adds unit test coverage - [x] This change adds integration test coverage - [x] This change has been tested on the latest version of the platform/language or why not ### Manual Verification (Flask test server) You can spin up a simple Flask app that exercises each of the new `network_acls` methods. : ``` from auth0.management import Auth0 domain = "<YOUR_DOMAIN>" mgmt_api_token = "<YOUR_MGMT_API_TOKEN>" auth0 = Auth0(domain, mgmt_api_token) app = Flask(__name__) app.secret_key = "super-secret-key" @app.route("/network-acls", methods=["POST"]) def create_network_acl(): try: result = auth0.network_acls.create(request.json) return jsonify(result), 201 except Exception as e: return jsonify({"error": str(e)}), 500 @app.route("/network-acls", methods=["GET"]) def get_network_acls(): try: result = auth0.network_acls.all( page=request.args.get("page", 0), per_page=request.args.get("per_page", 10), include_totals=request.args.get("include_totals", "false") ) return jsonify(result), 200 except Exception as e: return jsonify({"error": str(e)}), 500 @app.route("/network-acls/<acl_id>", methods=["PUT"]) def update_acl(acl_id): try: updated = auth0.network_acls.update(acl_id, body=request.json) return jsonify(updated), 200 except Exception as e: return jsonify({"error": str(e)}), 500 @app.route("/network-acls/<acl_id>", methods=["PATCH"]) def partial_update_acl(acl_id): try: patched = auth0.network_acls.update_partial(acl_id, body=request.json) return jsonify(patched), 200 except Exception as e: return jsonify({"error": str(e)}), 500 if __name__ == "__main__": app.run(debug=True, host="0.0.0.0", port=3000) ``` ### Checklist - [x] I have read the [Auth0 general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md) - [x] I have read the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md) - [x] All existing and new tests complete without errors
Configuration menu - View commit details
-
Copy full SHA for 49da078 - Browse repository at this point
Copy the full SHA 49da078View commit details
Commits on Sep 11, 2025
-
chore: fix workflow syntax errors and update dependencies (#724)
### Changes - Bump Dependancy in `requirements.txt` and `pyproject.toml` - Update `poetry.lock` file - Remove `Semgrep` Workflow
Configuration menu - View commit details
-
Copy full SHA for f13b580 - Browse repository at this point
Copy the full SHA f13b580View commit details -
**Added** - feat: Support For Network ACL Endpoints [\#706](#706) ([kishore7snehil](https://github.com/kishore7snehil)) **Fixed** - chore: fix workflow syntax errors and update dependencies [\#724](#724) ([kishore7snehil](https://github.com/kishore7snehil))
Configuration menu - View commit details
-
Copy full SHA for bf16b2e - Browse repository at this point
Copy the full SHA bf16b2eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c124540 - Browse repository at this point
Copy the full SHA c124540View commit details -
fix: add missing indentation for Python configuration step (#726)
### Changes - Fix the `RL-Scanner `Workflow
Configuration menu - View commit details
-
Copy full SHA for 24a371f - Browse repository at this point
Copy the full SHA 24a371fView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 4.10.0...4.11.0