feat: Add default domain endpoints, connection key provisioning, tenant SCIM listing; remove MiiCard/Renren providers#801
Merged
kishore7snehil merged 2 commits intomasterfrom Mar 30, 2026
Conversation
kailash-b
approved these changes
Mar 30, 2026
Merged
kishore7snehil
added a commit
that referenced
this pull request
Mar 30, 2026
**⚠️ Breaking: Python 3.8 support dropped** - Python 3.8 reached end-of-life in October 2024. This release requires **Python >=3.9.2**. Users on Python 3.8 should remain on v5.1.0 until they upgrade their Python version. [\#808](#808) **Added** - feat: Add default domain endpoints, connection key provisioning, tenant SCIM listing; remove MiiCard/Renren providers [\#801](#801) ([fern-api[bot]](https://github.com/apps/fern-api)) - feat: Add client_info support for custom telemetry in Authentication and Management clients [\#802](#802) ([kishore7snehil](https://github.com/kishore7snehil)) - feat: Add SDK logging infrastructure with configurable log levels and header redaction [\#785](#785) ([fern-api[bot]](https://github.com/apps/fern-api)) **Fixed** - fix: Pagination page advancement incorrectly skipping pages [\#785](#785) ([fern-api[bot]](https://github.com/apps/fern-api)) **Changed** - chore: Update ruff, aiohttp, cryptography, urllib3, codecov-action; replace Snyk with SCA scan [\#808](#808) ([kishore7snehil](https://github.com/kishore7snehil))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
New API Endpoints
custom_domains.get_default()- retrieve the tenant's default domain (GET /custom-domains/default)custom_domains.set_default(domain)- set the default custom domain for the tenant (PATCH /custom-domains/default)connections.keys.create(id, request)- provision initial connection keys for Okta/OIDC strategies enabling zero-downtime Private Key JWT transitions (POST /connections/{id}/keys)connections.scim_configuration.list(from_, take)- retrieve paginated list of all SCIM configurations at the tenant level (GET /connections-scim-configurations)Updated Endpoints
Client Grants
client_grants.create()-client_idis now optional;audienceis the first required parameter (signature reorder)LinkedIn Connections
ConnectionOptionsLinkedin- base class changed fromConnectionOptionsOAuth2CommontoConnectionOptionsCommonConnectionClientIdLinkedin,ConnectionClientSecretLinkedin,ConnectionFreeformScopesLinkedin,ConnectionScopeLinkedinfull_profile,network,openidboolean fields to LinkedIn optionsDocumentation Improvements
oidc_backchannel_logout,jwt_configuration,encryption_key,mobileon Clients endpointsuser_metadata/app_metadatadescriptions on Users endpointsRemoved Types (Legacy Providers)
ConnectionOptionsMiicard,ConnectionResponseContentMiicard,CreateConnectionRequestContentMiicardand related typesConnectionOptionsRenren,ConnectionResponseContentRenren,CreateConnectionRequestContentRenrenand related typesConnectionDpopSigningAlgEnum(deprecated)New Types
GetDefaultCanonicalDomainResponseContent,GetDefaultCustomDomainResponseContent,GetDefaultDomainResponseContent,UpdateDefaultDomainResponseContentPostConnectionKeysAlgEnum,PostConnectionKeysRequestContent,PostConnectionsKeysResponseContent,PostConnectionsKeysResponseContentItemListScimConfigurationsResponseContent,ScimConfigurationfor tenant-level SCIM listingSynchronizeGroupsEnum,SynchronizeGroupsEaEnumfor group synchronizationConnectionApiEnableGroups,ConnectionApiEnableGroupsGoogleAppsfor group enablementTesting
test_customDomains_get_default,test_customDomains_set_default,test_connections_keys_create,test_connections_scimConfiguration_list_