microsoft_kiota_abstractions 0.19.0 → 0.20.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b353962e7614fa83d64c9cbd864f78799f66964ab1df386ded75ad553236c542
4
- data.tar.gz: c06a22a66b74d3215df932ee681abfff78ae47234c70531c65e3d6288c710504
3
+ metadata.gz: e26b300be1f9a48baaddc4ccfcaa161d76d2d86c9214a7ef6cbbfca882a14a15
4
+ data.tar.gz: 121821cd610784f71acae711b1885d79a911d4e4fee6db71badfe5163d18cdbc
5
5
  SHA512:
6
- metadata.gz: 014b57ab581ff12009208d57569e3a255ed2a3d5de23abe276e52550949081fc8f25da7cd7ae27c88809899da3e19d90bb376e55b9829a627d6fd6597400e0db
7
- data.tar.gz: 68c03854f2a84ad63182e6f2ff3297f84d03f739548aa20563613f9afdabf0a09a73721eaf7bb5f151ee76ba986091f38213644336b6ee1d2edb5a8d885d4902
6
+ metadata.gz: b8e239c4dfa37583bec80b8df2bb5bff1b7a5825a013e715519f407f22819bf17ffc4b7a66b0b8c1175230447218564aff678e470184ea8e53806cb934ddf253
7
+ data.tar.gz: 571aae3750af3172fd4f616ed7dae08d39f6a53c07adaf041f5a6faabd52324eabf5378a90a4b921d7894ffa10604e8d2d3c1a2720c48a4d08984035aa888cd1
@@ -27,7 +27,10 @@ module MicrosoftKiotaAbstractions
27
27
 
28
28
  return false unless parsed_url.is_a?(URI::HTTPS)
29
29
 
30
- @allowed_hosts.key? parsed_url.host.downcase
30
+ hostname = parsed_url.host.downcase
31
+ return true if @allowed_hosts.key? hostname
32
+
33
+ @allowed_hosts.any? { |allowed_host, _| allowed_host.start_with?('.') && hostname.end_with?(allowed_host) }
31
34
  rescue URI::InvalidURIError
32
35
  false
33
36
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MicrosoftKiotaAbstractions
4
- VERSION = '0.19.0' # x-release-please-version
4
+ VERSION = '0.20.0' # x-release-please-version
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: microsoft_kiota_abstractions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Microsoft Corporation