Skip to content

Commit d379a11

Browse files
Merge pull request #6 from auth0/release/1.0.0b0
Release 1.0.0b0
2 parents 407f8a7 + b65697d commit d379a11

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

.shiprc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"files": {
3-
".version": [],
4-
"pyproject.toml": ["version = \"{MAJOR}.{MINOR}.{PATCH}\""]
3+
".version": []
54
},
65
"prefixVersion": false
76
}

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.0
1+
1.0.0b0

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,31 @@
11
# Change Log
2+
3+
## [1.0.0b0](https://github.com/auth0/myorganization-python/tree/1.0.0b0) (2026-04-09)
4+
5+
`v1.0.0b0` is the first release of the **Auth0 My Organization Python SDK** — a Fern-generated SDK for the Auth0 My Organization API.
6+
7+
**Added**
8+
- `MyOrganizationClient` and `AsyncMyOrganizationClient` high-level wrappers with domain-based URL derivation [\#4](https://github.com/auth0/myorganization-python/pull/4)
9+
- `TokenProvider` and `AsyncTokenProvider` for automatic OAuth 2.0 client credentials token management with caching and auto-refresh [\#4](https://github.com/auth0/myorganization-python/pull/4)
10+
- Organization Details API — get and update org display name and branding [\#4](https://github.com/auth0/myorganization-python/pull/4)
11+
- Organization Domains API — list, create, get, delete, and verify custom domains with cursor-based pagination [\#4](https://github.com/auth0/myorganization-python/pull/4)
12+
- Organization Identity Providers API — create, get, list, update, delete, and detach IDPs; refresh attribute mappings [\#4](https://github.com/auth0/myorganization-python/pull/4)
13+
- Provisioning API — create, get, delete provisioning configs; refresh provisioning attribute mappings [\#4](https://github.com/auth0/myorganization-python/pull/4)
14+
- SCIM Tokens API — list, create, and revoke SCIM tokens per IDP [\#4](https://github.com/auth0/myorganization-python/pull/4)
15+
- Configuration API — retrieve API configuration [\#4](https://github.com/auth0/myorganization-python/pull/4)
16+
- Raw HTTP response access via `.with_raw_response` for status codes, headers, and response data [\#4](https://github.com/auth0/myorganization-python/pull/4)
17+
- Automatic retries with exponential backoff on 408, 429, and 5XX responses [\#4](https://github.com/auth0/myorganization-python/pull/4)
18+
- `Auth0-Client` telemetry header on every request [\#4](https://github.com/auth0/myorganization-python/pull/4)
19+
- Configurable timeouts, retries, and custom headers at client and per-request level [\#4](https://github.com/auth0/myorganization-python/pull/4)
20+
21+
**Fixed**
22+
- Use `AsyncTokenProvider` in async client to prevent event loop blocking [\#4](https://github.com/auth0/myorganization-python/pull/4)
23+
24+
### Installation
25+
26+
```sh
27+
poetry add myorganization-python==1.0.0b0
28+
```
29+
30+
### Requirements
31+
- Python >= 3.9

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "myorganization-python"
7-
version = "0.0.0"
7+
version = "1.0.0b0"
88
description = "Auth0 My Organization Python SDK"
99
readme = "README.md"
1010
authors = ["Auth0 <support@auth0.com>"]

0 commit comments

Comments
 (0)