oursprivacy-ingest 1.14.0 → 1.14.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: c717603bde7e819e4498b5735300c267b1a4277adbbef8813e63397456ec0335
4
- data.tar.gz: 5135d602464bfe6c356cde4fee8f8dbc3378da7a25384cd41454b9c332d08f63
3
+ metadata.gz: 4a09df5375f98219a025314f7568bd973332335392e74a610c1e5bbcde0fe09f
4
+ data.tar.gz: 5b84972ae1867beb17451e9284cdf24fec192c957d2ddb5a52d6c3d8064cb664
5
5
  SHA512:
6
- metadata.gz: a3f2c7429ef91b6042b47c30ed5ef3020330b0e584e0c73776fa309ef62f17f5da5cf773a551f4537fec88e14cfbddbab2a80c4ef6ae483117a37a1c03947517
7
- data.tar.gz: cc501feb9075ef546043d5d214884f7ed77d48d75d32c5dd53fa54fc8d6c33f497b06e0b641050bd9556b66bc08ed90f1e5df61e549cd93620ad45b1097b3f0d
6
+ metadata.gz: c658ece9f473607b0164066ef6f544415b754efdd8235f9350d45e5aacc33d1a095b1033741ccdbb67090b026b64fab1da02bf3222fb981e83d8a878b654c742
7
+ data.tar.gz: b1026bc20cea3d413d702ebbd9a6349fd17ba1d861bfb71e0d7fef8088494a7641aff44512a289d87bfe702705f44fcbc26c0592fe0dd2ef9556a530e7a295c5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.14.2 (2026-06-24)
4
+
5
+ Full Changelog: [v1.14.1...v1.14.2](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.14.1...v1.14.2)
6
+
7
+ ### Bug Fixes
8
+
9
+ * **deps:** patch concurrent-ruby vulnerabilities ([8938d85](https://github.com/with-ours/ingest-sdk-ruby/commit/8938d85ddc185ef05279f74e39ee9625a592ae9d))
10
+
11
+ ## 1.14.1 (2026-06-17)
12
+
13
+ Full Changelog: [v1.14.0...v1.14.1](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.14.0...v1.14.1)
14
+
15
+ ### Bug Fixes
16
+
17
+ * **client:** send content-type header for requests with an omitted optional body ([cacbd82](https://github.com/with-ours/ingest-sdk-ruby/commit/cacbd82030358c88cee8f403472df372b0151060))
18
+
3
19
  ## 1.14.0 (2026-06-12)
4
20
 
5
21
  Full Changelog: [v1.13.0...v1.14.0](https://github.com/with-ours/ingest-sdk-ruby/compare/v1.13.0...v1.14.0)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "oursprivacy-ingest", "~> 1.14.0"
20
+ gem "oursprivacy-ingest", "~> 1.14.2"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -300,7 +300,10 @@ module OursprivacyIngest
300
300
  OursprivacyIngest::Internal::Util.deep_merge(*[req[:body], opts[:extra_body]].compact)
301
301
  end
302
302
 
303
- headers.delete("content-type") if body.nil?
303
+ # Generated methods always pass `req[:body]` for operations that define a
304
+ # request body, so only elide the content-type header when the operation
305
+ # has no body at all, not when an optional body param was omitted.
306
+ headers.delete("content-type") if body.nil? && !req.key?(:body)
304
307
 
305
308
  url = OursprivacyIngest::Internal::Util.join_parsed_uri(
306
309
  @base_url_components,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module OursprivacyIngest
4
- VERSION = "1.14.0"
4
+ VERSION = "1.14.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oursprivacy-ingest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.14.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ours Privacy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-15 00:00:00.000000000 Z
11
+ date: 2026-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi