userplex 0.16.1 → 0.16.2

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: 409781f6217b2793f17800200901f573048f39ad4fc9f4a647053b375592b7a9
4
- data.tar.gz: a9700ab860cc4f1334b06dfc163051785ad005656bd86469d0a415359ff61ffd
3
+ metadata.gz: f2a354b3eb91fe1f4e682f2892742d9cc5d809fadc5a08d1536634c208d37cd3
4
+ data.tar.gz: dee02ba5e0e083de97e12f4d7431bab536633fbbffb6a9b9917a4abbe00795b3
5
5
  SHA512:
6
- metadata.gz: 4557cdcd095067429b4fb1c4bf66d0f0c5b5376fea4b158b449c2df66e5c0ecef067dc4f2a00957595784f365c59ac1f225f6fe18ac92f2315119831951661eb
7
- data.tar.gz: 56cba0d7b12c77bdd1d82e5cd94ef92df5b51131217eb297ea76a3e5293fda52e1e121b7f3c2bbe01b90c56385c81d1de48a89b0e000d47e98b9f95829f4b9af
6
+ metadata.gz: 96cee03d9489f7337f26e2bea98eb4d724156796981ffb4224fdf344543e3897149a9a06d7b9f4cd0c9e6e951adfec9d123f403519f1885c6a5c4a16da14d73c
7
+ data.tar.gz: 306cecd8129028e848028e52ad25824505dc54fe073f7c3c0dfebcdedcfdbbc614529c08feb82ab4fc8d42943e55f545eac594359e38778592d0530741d31136
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.16.2 (2026-02-07)
4
+
5
+ Full Changelog: [v0.16.1...v0.16.2](https://github.com/dqnamo/userplex-ruby/compare/v0.16.1...v0.16.2)
6
+
7
+ ### Bug Fixes
8
+
9
+ * **client:** loosen json header parsing ([ab54b58](https://github.com/dqnamo/userplex-ruby/commit/ab54b587c09d616fb14c559890ab57ec4c6dbf7a))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **docs:** remove www prefix ([111bdd7](https://github.com/dqnamo/userplex-ruby/commit/111bdd788526149f7e4eec6909133095c1591215))
15
+
3
16
  ## 0.16.1 (2026-02-03)
4
17
 
5
18
  Full Changelog: [v0.16.0...v0.16.1](https://github.com/dqnamo/userplex-ruby/compare/v0.16.0...v0.16.1)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "userplex", "~> 0.16.1"
18
+ gem "userplex", "~> 0.16.2"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -485,7 +485,7 @@ module Userplex
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 Userplex
4
- VERSION = "0.16.1"
4
+ VERSION = "0.16.2"
5
5
  end
@@ -296,7 +296,7 @@ module Userplex
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: userplex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.1
4
+ version: 0.16.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Userplex
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