openapi-ruby 2.2.0 → 2.2.1
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/lib/openapi_ruby/components/registry.rb +3 -2
- data/lib/openapi_ruby/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8dfe417a1a5864710883f37f364361850908925c15f4bde8c97a2cce5568040b
|
|
4
|
+
data.tar.gz: 1cae3cd37db70840d39afe38d49dabe7e136c3b5801d0485a0618cbd674c7427
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10c973884753f494a4917b88ca87ccdabdd408e06b365665a576cc0cf8940891f8656c8e657e9e873ca2b4c42dad4b6b172dfbe8a1e84203a192a16c6c8f1282
|
|
7
|
+
data.tar.gz: f41d3b6d56b26aaef013572733bf360a066abfb8cf1be4df4af0583cb23a685d0bc09d58c27b816229b7ae23b2dbd0a07d75e0a6ad211ad9e2d3b3ae7c6075d0
|
|
@@ -65,8 +65,9 @@ module OpenapiRuby
|
|
|
65
65
|
existing_scopes = existing._component_scopes
|
|
66
66
|
existing_scopes_set = existing._component_scopes_explicitly_set
|
|
67
67
|
|
|
68
|
-
# Skip when exactly one side has explicitly configured scopes —
|
|
69
|
-
#
|
|
68
|
+
# Skip when exactly one side has explicitly configured scopes — during initial
|
|
69
|
+
# loading, components are registered with empty default scopes before the Loader
|
|
70
|
+
# assigns inferred scopes. The unconfigured side may get scopes later via
|
|
70
71
|
# component_scopes, which unregisters/re-registers and retriggers this check.
|
|
71
72
|
next if new_scopes_set != existing_scopes_set
|
|
72
73
|
|
data/lib/openapi_ruby/version.rb
CHANGED