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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/oursprivacy_ingest/internal/transport/base_client.rb +4 -1
- data/lib/oursprivacy_ingest/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a09df5375f98219a025314f7568bd973332335392e74a610c1e5bbcde0fe09f
|
|
4
|
+
data.tar.gz: 5b84972ae1867beb17451e9284cdf24fec192c957d2ddb5a52d6c3d8064cb664
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
-
|
|
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,
|
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.
|
|
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-
|
|
11
|
+
date: 2026-06-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|