auth0 6.0.0.beta.5 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.fern/metadata.json +5 -6
- data/.fern/replay.lock +7 -1
- data/.version +1 -1
- data/CHANGELOG.md +57 -0
- data/README.md +4 -1
- data/custom.gemspec.rb +1 -1
- data/examples/ruby-api/Gemfile.lock +3 -3
- data/lib/auth0/clients/client.rb +2 -2
- data/lib/auth0/connection_profiles/types/create_connection_profile_request_content.rb +2 -0
- data/lib/auth0/connection_profiles/types/update_connection_profile_request_content.rb +2 -0
- data/lib/auth0/connections/client.rb +2 -1
- data/lib/auth0/keys/client.rb +5 -0
- data/lib/auth0/keys/network_acls/client.rb +149 -0
- data/lib/auth0/keys/network_acls/types/create_keys_network_acls_request_content.rb +17 -0
- data/lib/auth0/mixins/token_management.rb +15 -11
- data/lib/auth0/types/client_my_organization_configuration_third_party_client_access_allowed_values_enum.rb +12 -0
- data/lib/auth0/types/client_my_organization_configuration_third_party_client_access_default_value_enum.rb +11 -0
- data/lib/auth0/types/client_my_organization_patch_configuration.rb +2 -0
- data/lib/auth0/types/client_my_organization_post_configuration.rb +2 -0
- data/lib/auth0/types/client_my_organization_response_configuration.rb +2 -0
- data/lib/auth0/types/client_my_organization_third_party_client_access_configuration.rb +12 -0
- data/lib/auth0/types/connection_identity_provider_enum.rb +1 -0
- data/lib/auth0/types/connection_options_common_oidc.rb +2 -0
- data/lib/auth0/types/connection_options_oidc.rb +2 -0
- data/lib/auth0/types/connection_options_okta.rb +2 -0
- data/lib/auth0/types/connection_profile.rb +2 -0
- data/lib/auth0/types/connection_profile_cross_app_access_resource_app.rb +10 -0
- data/lib/auth0/types/connection_profile_cross_app_access_resource_app_status.rb +12 -0
- data/lib/auth0/types/connection_profile_cross_app_access_resource_app_status_allowed_values_enum.rb +23 -0
- data/lib/auth0/types/connection_profile_cross_app_access_resource_app_status_default_value_enum.rb +12 -0
- data/lib/auth0/types/connection_profile_cross_app_access_resource_app_status_value_enum.rb +12 -0
- data/lib/auth0/types/connection_properties_options.rb +2 -0
- data/lib/auth0/types/connection_strategy_enum.rb +1 -0
- data/lib/auth0/types/connection_use_oauth_spec_scope.rb +23 -0
- data/lib/auth0/types/create_connection_profile_response_content.rb +2 -0
- data/lib/auth0/types/create_keys_network_acls_response_content.rb +19 -0
- data/lib/auth0/types/get_all_keys_network_acls_response_content.rb +9 -0
- data/lib/auth0/types/get_connection_profile_response_content.rb +2 -0
- data/lib/auth0/types/network_acl_key.rb +19 -0
- data/lib/auth0/types/network_acl_key_algorithm_enum.rb +11 -0
- data/lib/auth0/types/network_acl_rule.rb +2 -0
- data/lib/auth0/types/network_acl_rule_match_all_enum.rb +23 -0
- data/lib/auth0/types/oauth_scope.rb +3 -0
- data/lib/auth0/types/update_connection_options.rb +2 -0
- data/lib/auth0/types/update_connection_profile_response_content.rb +2 -0
- data/lib/auth0/version.rb +1 -1
- data/lib/auth0.rb +18 -2
- data/v6_MIGRATION_GUIDE.md +1 -1
- data/wiremock/wiremock-mappings.json +147 -12
- metadata +26 -4
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: auth0
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.
|
|
4
|
+
version: 6.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Auth0
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -28,16 +28,22 @@ dependencies:
|
|
|
28
28
|
name: jwt
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '2.7'
|
|
34
|
+
- - "<"
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '4.0'
|
|
34
37
|
type: :runtime
|
|
35
38
|
prerelease: false
|
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
40
|
requirements:
|
|
38
|
-
- - "
|
|
41
|
+
- - ">="
|
|
39
42
|
- !ruby/object:Gem::Version
|
|
40
43
|
version: '2.7'
|
|
44
|
+
- - "<"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '4.0'
|
|
41
47
|
- !ruby/object:Gem::Dependency
|
|
42
48
|
name: zache
|
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -371,6 +377,8 @@ files:
|
|
|
371
377
|
- lib/auth0/keys/encryption/types/create_encryption_key_request_content.rb
|
|
372
378
|
- lib/auth0/keys/encryption/types/import_encryption_key_request_content.rb
|
|
373
379
|
- lib/auth0/keys/encryption/types/list_encryption_keys_request_parameters.rb
|
|
380
|
+
- lib/auth0/keys/network_acls/client.rb
|
|
381
|
+
- lib/auth0/keys/network_acls/types/create_keys_network_acls_request_content.rb
|
|
374
382
|
- lib/auth0/keys/signing/client.rb
|
|
375
383
|
- lib/auth0/log_streams/client.rb
|
|
376
384
|
- lib/auth0/log_streams/types/update_log_stream_request_content.rb
|
|
@@ -721,10 +729,13 @@ files:
|
|
|
721
729
|
- lib/auth0/types/client_mobile_android.rb
|
|
722
730
|
- lib/auth0/types/client_mobilei_os.rb
|
|
723
731
|
- lib/auth0/types/client_my_organization_configuration_allowed_strategies_enum.rb
|
|
732
|
+
- lib/auth0/types/client_my_organization_configuration_third_party_client_access_allowed_values_enum.rb
|
|
733
|
+
- lib/auth0/types/client_my_organization_configuration_third_party_client_access_default_value_enum.rb
|
|
724
734
|
- lib/auth0/types/client_my_organization_deletion_behavior_enum.rb
|
|
725
735
|
- lib/auth0/types/client_my_organization_patch_configuration.rb
|
|
726
736
|
- lib/auth0/types/client_my_organization_post_configuration.rb
|
|
727
737
|
- lib/auth0/types/client_my_organization_response_configuration.rb
|
|
738
|
+
- lib/auth0/types/client_my_organization_third_party_client_access_configuration.rb
|
|
728
739
|
- lib/auth0/types/client_oidc_backchannel_logout_initiators.rb
|
|
729
740
|
- lib/auth0/types/client_oidc_backchannel_logout_initiators_enum.rb
|
|
730
741
|
- lib/auth0/types/client_oidc_backchannel_logout_initiators_mode_enum.rb
|
|
@@ -1039,6 +1050,11 @@ files:
|
|
|
1039
1050
|
- lib/auth0/types/connection_profile.rb
|
|
1040
1051
|
- lib/auth0/types/connection_profile_bitbucket.rb
|
|
1041
1052
|
- lib/auth0/types/connection_profile_config.rb
|
|
1053
|
+
- lib/auth0/types/connection_profile_cross_app_access_resource_app.rb
|
|
1054
|
+
- lib/auth0/types/connection_profile_cross_app_access_resource_app_status.rb
|
|
1055
|
+
- lib/auth0/types/connection_profile_cross_app_access_resource_app_status_allowed_values_enum.rb
|
|
1056
|
+
- lib/auth0/types/connection_profile_cross_app_access_resource_app_status_default_value_enum.rb
|
|
1057
|
+
- lib/auth0/types/connection_profile_cross_app_access_resource_app_status_value_enum.rb
|
|
1042
1058
|
- lib/auth0/types/connection_profile_enabled_features.rb
|
|
1043
1059
|
- lib/auth0/types/connection_profile_id.rb
|
|
1044
1060
|
- lib/auth0/types/connection_profile_name.rb
|
|
@@ -1263,6 +1279,7 @@ files:
|
|
|
1263
1279
|
- lib/auth0/types/connection_upstream_params_facebook.rb
|
|
1264
1280
|
- lib/auth0/types/connection_upstream_value.rb
|
|
1265
1281
|
- lib/auth0/types/connection_use_common_endpoint_azure_ad.rb
|
|
1282
|
+
- lib/auth0/types/connection_use_oauth_spec_scope.rb
|
|
1266
1283
|
- lib/auth0/types/connection_user_authorization_urlo_auth1.rb
|
|
1267
1284
|
- lib/auth0/types/connection_user_id_attribute_saml.rb
|
|
1268
1285
|
- lib/auth0/types/connection_userid_attribute_azure_ad.rb
|
|
@@ -1499,6 +1516,7 @@ files:
|
|
|
1499
1516
|
- lib/auth0/types/create_hook_secret_request_content.rb
|
|
1500
1517
|
- lib/auth0/types/create_identity_assertion_authorization_grant.rb
|
|
1501
1518
|
- lib/auth0/types/create_import_users_response_content.rb
|
|
1519
|
+
- lib/auth0/types/create_keys_network_acls_response_content.rb
|
|
1502
1520
|
- lib/auth0/types/create_log_stream_datadog_request_body.rb
|
|
1503
1521
|
- lib/auth0/types/create_log_stream_event_bridge_request_body.rb
|
|
1504
1522
|
- lib/auth0/types/create_log_stream_event_grid_request_body.rb
|
|
@@ -2926,6 +2944,7 @@ files:
|
|
|
2926
2944
|
- lib/auth0/types/get_action_version_response_content.rb
|
|
2927
2945
|
- lib/auth0/types/get_active_users_count_stats_response_content.rb
|
|
2928
2946
|
- lib/auth0/types/get_acul_response_content.rb
|
|
2947
|
+
- lib/auth0/types/get_all_keys_network_acls_response_content.rb
|
|
2929
2948
|
- lib/auth0/types/get_attack_protection_captcha_response_content.rb
|
|
2930
2949
|
- lib/auth0/types/get_bot_detection_settings_response_content.rb
|
|
2931
2950
|
- lib/auth0/types/get_branding_default_theme_response_content.rb
|
|
@@ -3196,12 +3215,15 @@ files:
|
|
|
3196
3215
|
- lib/auth0/types/network_acl_action_block_enum.rb
|
|
3197
3216
|
- lib/auth0/types/network_acl_action_log_enum.rb
|
|
3198
3217
|
- lib/auth0/types/network_acl_action_redirect_enum.rb
|
|
3218
|
+
- lib/auth0/types/network_acl_key.rb
|
|
3219
|
+
- lib/auth0/types/network_acl_key_algorithm_enum.rb
|
|
3199
3220
|
- lib/auth0/types/network_acl_match.rb
|
|
3200
3221
|
- lib/auth0/types/network_acl_match_connecting_ipv4cidr.rb
|
|
3201
3222
|
- lib/auth0/types/network_acl_match_connecting_ipv6cidr.rb
|
|
3202
3223
|
- lib/auth0/types/network_acl_match_ipv4cidr.rb
|
|
3203
3224
|
- lib/auth0/types/network_acl_match_ipv6cidr.rb
|
|
3204
3225
|
- lib/auth0/types/network_acl_rule.rb
|
|
3226
|
+
- lib/auth0/types/network_acl_rule_match_all_enum.rb
|
|
3205
3227
|
- lib/auth0/types/network_acl_rule_scope_enum.rb
|
|
3206
3228
|
- lib/auth0/types/network_acls_response_content.rb
|
|
3207
3229
|
- lib/auth0/types/not_found_error_body.rb
|