Skip to content
Permalink

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
Choose a base ref
...
head repository: auth0/auth0-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.11.0
Choose a head ref
  • 6 commits
  • 19 files changed
  • 2 contributors

Commits on Jun 10, 2025

  1. chore: Release Pipeline Failure Fix (#704)

    ### Changes
    
    - Fixing the release pipeline
    kishore7snehil authored Jun 10, 2025
    Configuration menu
    Copy the full SHA
    288acf2 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2025

  1. 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
    kishore7snehil authored Jul 2, 2025
    Configuration menu
    Copy the full SHA
    49da078 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2025

  1. 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
    kishore7snehil authored Sep 11, 2025
    Configuration menu
    Copy the full SHA
    f13b580 View commit details
    Browse the repository at this point in the history
  2. Release 4.11.0 (#725)

    **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))
    kishore7snehil authored Sep 11, 2025
    Configuration menu
    Copy the full SHA
    bf16b2e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c124540 View commit details
    Browse the repository at this point in the history
  4. fix: add missing indentation for Python configuration step (#726)

    ### Changes
    
    - Fix the `RL-Scanner `Workflow
    tusharpandey13 authored Sep 11, 2025
    Configuration menu
    Copy the full SHA
    24a371f View commit details
    Browse the repository at this point in the history
Loading