lithic 0.1.0.pre.alpha.21 → 0.1.0.pre.alpha.22

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: f2aa745c3f2eb6afb8fc87a6c560646fcb282043d7a452a492f81f69a3946634
4
- data.tar.gz: ee633329d392f1826a5c00ffd1e671e641c353c3b113781f36225f2927a9451d
3
+ metadata.gz: 9def0867c0819d94f1af8b057db5bfdd1fb0f3fab5eb089a6550b2de044252ad
4
+ data.tar.gz: d431118e6f871c486da62b7c2c131a490eab1ac55c275121e2707b7638149fb4
5
5
  SHA512:
6
- metadata.gz: c3145af00de2f1cf54900af721d29a0c18738eb716175118784bdd706b3cad2054fd68da9b4bdf836c92534404ac23ed2e059f36cde9a23fda34fc6f483251a0
7
- data.tar.gz: 3c4916856d1e359057b74e9641a148a67a00380befc418f4ee3fbec6891eda28aa59654c5a4786aa02299dd60ebc69be6497ac87adb2efa9c6a10ad509f253d0
6
+ metadata.gz: ba358fa04bbd267e34807bec11bd6c1dacfe6cf5590bf91182523fda78291211bc3d39c88cad331d768215f4e358b5fedfddc8cd52c0f676edef842dd548646b
7
+ data.tar.gz: bcb3cb2c1e2ba111d5d1b14e82dfdcc0120a8c3d0806b36648fa767884ada73c7ac49c7e63b1f2d9156330c097c1ba7ccd3429b775b084243408babe23d09756
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-alpha.22 (2025-05-06)
4
+
5
+ Full Changelog: [v0.1.0-alpha.21...v0.1.0-alpha.22](https://github.com/lithic-com/lithic-ruby/compare/v0.1.0-alpha.21...v0.1.0-alpha.22)
6
+
7
+ ### Bug Fixes
8
+
9
+ * **internal:** fix formatting script for macos ([3b3bd22](https://github.com/lithic-com/lithic-ruby/commit/3b3bd22c1ab59a11b6ebaccaced257c438c32236))
10
+
11
+
12
+ ### Chores
13
+
14
+ * accept all nd-json mimetype variants ([7d129f3](https://github.com/lithic-com/lithic-ruby/commit/7d129f3059741d51af715fea9a65bd8709cb3fce))
15
+ * **internal:** codegen related update ([f7985e1](https://github.com/lithic-com/lithic-ruby/commit/f7985e133e55800ac5359fe241589e2467cff35b))
16
+ * revert ignoring Gemfile.lock ([6535e99](https://github.com/lithic-com/lithic-ruby/commit/6535e999c2c1f38e810a450fac5509ee25cad087))
17
+
3
18
  ## 0.1.0-alpha.21 (2025-05-05)
4
19
 
5
20
  Full Changelog: [v0.1.0-alpha.20...v0.1.0-alpha.21](https://github.com/lithic-com/lithic-ruby/compare/v0.1.0-alpha.20...v0.1.0-alpha.21)
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 "lithic", "~> 0.1.0.pre.alpha.21"
18
+ gem "lithic", "~> 0.1.0.pre.alpha.22"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -470,7 +470,7 @@ module Lithic
470
470
  # @type [Regexp]
471
471
  JSON_CONTENT = %r{^application/(?:vnd(?:\.[^.]+)*\+)?json(?!l)}
472
472
  # @type [Regexp]
473
- JSONL_CONTENT = %r{^application/(?:x-)?jsonl}
473
+ JSONL_CONTENT = %r{^application/(:?x-(?:n|l)djson)|(:?(?:x-)?jsonl)}
474
474
 
475
475
  class << self
476
476
  # @api private
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Lithic
4
- VERSION = "0.1.0.pre.alpha.21"
4
+ VERSION = "0.1.0.pre.alpha.22"
5
5
  end
@@ -187,7 +187,7 @@ module Lithic
187
187
  end
188
188
 
189
189
  JSON_CONTENT = T.let(%r{^application/(?:vnd(?:\.[^.]+)*\+)?json(?!l)}, Regexp)
190
- JSONL_CONTENT = T.let(%r{^application/(?:x-)?jsonl}, Regexp)
190
+ JSONL_CONTENT = T.let(%r{^application/(:?x-(?:n|l)djson)|(:?(?:x-)?jsonl)}, Regexp)
191
191
 
192
192
  class << self
193
193
  # @api private
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lithic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.alpha.21
4
+ version: 0.1.0.pre.alpha.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lithic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-05 00:00:00.000000000 Z
11
+ date: 2025-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool