spotted 0.34.3 → 0.34.4

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: e02c781d17d35c6e202b502f42f94d32bb8edb2cf292cba396bb1caec5f7fba0
4
- data.tar.gz: 747c10814837debf036b4b3b926f9c3389f50ec2598848636febc9b4bfd263d2
3
+ metadata.gz: f904b10b2ba3e4c4d22860536c557c2a8fb4bf7c64c3b311b223158fd2bb7584
4
+ data.tar.gz: fc39c1221964d0e2a08cc5ac32d98e03301969c873f49301f2898815dd071e21
5
5
  SHA512:
6
- metadata.gz: 1f84905399291b44e464a54b281e4a6144ead5c94d606fdff2ac4130e142235f4856ec77134656f682df02b6c20d3533d23788de796285aa9e74d88a7e7facb8
7
- data.tar.gz: 5c9b329e2659e0db4ca15a7a47ffe34d8cc90684cf4d5546e875f591ae6b37f055f31d1a7e84b303f31085a3646e606de997fbc7d107d88497b3874f3165ef5e
6
+ metadata.gz: bc717af600324a985f0a2967bb0ec6d3213108e3443d4cb42968014b8372d2afe952abf8e6f665c7a084180c4819d4dd156845e63383e34b1126c89771fee7c1
7
+ data.tar.gz: 8778b3df7f7435c0da8522f2c2b6e01b84e2cd58e803f0fb1f06a07c3d08e85ad5b6f35d9ba9f1f4fb4694f2a7392bbc93b8aed71f498b4c264f720edc5379f9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.34.4 (2026-02-07)
4
+
5
+ Full Changelog: [v0.34.3...v0.34.4](https://github.com/cjavdev/spotted/compare/v0.34.3...v0.34.4)
6
+
7
+ ### Bug Fixes
8
+
9
+ * **client:** loosen json header parsing ([dac97c8](https://github.com/cjavdev/spotted/commit/dac97c84c542cee92dafd6a21feddf0feec5c9d1))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **docs:** remove www prefix ([1a5f8d0](https://github.com/cjavdev/spotted/commit/1a5f8d07056a7131f007b26fee7787a58c04208d))
15
+
3
16
  ## 0.34.3 (2026-02-03)
4
17
 
5
18
  Full Changelog: [v0.34.2...v0.34.3](https://github.com/cjavdev/spotted/compare/v0.34.2...v0.34.3)
data/README.md CHANGED
@@ -26,7 +26,7 @@ To use this gem, install via Bundler by adding the following to your application
26
26
  <!-- x-release-please-start-version -->
27
27
 
28
28
  ```ruby
29
- gem "spotted", "~> 0.34.3"
29
+ gem "spotted", "~> 0.34.4"
30
30
  ```
31
31
 
32
32
  <!-- x-release-please-end -->
@@ -485,7 +485,7 @@ module Spotted
485
485
  end
486
486
 
487
487
  # @type [Regexp]
488
- JSON_CONTENT = %r{^application/(?:vnd(?:\.[^.]+)*\+)?json(?!l)}
488
+ JSON_CONTENT = %r{^application/(?:[a-zA-Z0-9.-]+\+)?json(?!l)}
489
489
  # @type [Regexp]
490
490
  JSONL_CONTENT = %r{^application/(:?x-(?:n|l)djson)|(:?(?:x-)?jsonl)}
491
491
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spotted
4
- VERSION = "0.34.3"
4
+ VERSION = "0.34.4"
5
5
  end
@@ -296,7 +296,7 @@ module Spotted
296
296
  end
297
297
 
298
298
  JSON_CONTENT =
299
- T.let(%r{^application/(?:vnd(?:\.[^.]+)*\+)?json(?!l)}, Regexp)
299
+ T.let(%r{^application/(?:[a-zA-Z0-9.-]+\+)?json(?!l)}, Regexp)
300
300
  JSONL_CONTENT =
301
301
  T.let(%r{^application/(:?x-(?:n|l)djson)|(:?(?:x-)?jsonl)}, Regexp)
302
302
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spotted
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.3
4
+ version: 0.34.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Spotted
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-03 00:00:00.000000000 Z
11
+ date: 2026-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi