dataleon 0.1.0.pre.alpha.23 → 0.1.0.pre.alpha.25

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: ae17e9f243a164714067b748424e9f560e0b0e442a936061af9ed59c9f04a0b1
4
- data.tar.gz: c753623f01c8f2d9511d204485b5b352948fe9827805e2f0afbfaddd53617979
3
+ metadata.gz: a5315f4fd721a9d8018c016f0f79bb1f3237de631a3770f72483aa8122ee9ecf
4
+ data.tar.gz: 8992b547de3a3123d02295afeaf4eb96264bad101016e36fa0c273214ae7d622
5
5
  SHA512:
6
- metadata.gz: 7cebc60446a07802917f229415183641569208fab7fa0574b1a226693a72778ee3ba861efb9bd3f00194a4dc6bf9467c5f1c1538d181bc0537f2d520e232bf57
7
- data.tar.gz: 0a79bd7ab8bea90f16b231fed40eb2b6af03d7db9c21dfbc017835a3324f032fc9e7e7f43d1338ab39325198e70ef6b700ff1aee68a879590999f37fdf446b03
6
+ metadata.gz: b8ef9adae6d10f8c31572df8e430bda2f01548dbef52f379ac2046b3b0af027c2e19569b5cc612aa0e47445b1c88800b714660efd2d5e6397c0e9ed3c9e5eb0c
7
+ data.tar.gz: 00fa10752737865550cff2a64300dd6f3f3ef618375d82e418e127ab54d389fa37d317e88ca9416480c84a910657822a7b0b14de22ea012fab77d13abba0e6a4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-alpha.25 (2026-07-18)
4
+
5
+ Full Changelog: [v0.1.0-alpha.24...v0.1.0-alpha.25](https://github.com/dataleonlabs/dataleon-ruby/compare/v0.1.0-alpha.24...v0.1.0-alpha.25)
6
+
7
+ ### Features
8
+
9
+ * **stlc:** configurable CI runner and private-production-repo support in workflow templates ([18e60d5](https://github.com/dataleonlabs/dataleon-ruby/commit/18e60d5258fc07ab2c9ac0e9bc1bcf62862e1558))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **internal:** bound formatter parallelism to CPU count ([f1a1aec](https://github.com/dataleonlabs/dataleon-ruby/commit/f1a1aec25b21eaa4de52e55d349274fd9a43b62a))
15
+
16
+ ## 0.1.0-alpha.24 (2026-06-17)
17
+
18
+ Full Changelog: [v0.1.0-alpha.23...v0.1.0-alpha.24](https://github.com/dataleonlabs/dataleon-ruby/compare/v0.1.0-alpha.23...v0.1.0-alpha.24)
19
+
20
+ ### Bug Fixes
21
+
22
+ * **client:** send content-type header for requests with an omitted optional body ([69e071f](https://github.com/dataleonlabs/dataleon-ruby/commit/69e071f97576201dec133ccac9561ad179a9bbf1))
23
+
3
24
  ## 0.1.0-alpha.23 (2026-05-14)
4
25
 
5
26
  Full Changelog: [v0.1.0-alpha.22...v0.1.0-alpha.23](https://github.com/dataleonlabs/dataleon-ruby/compare/v0.1.0-alpha.22...v0.1.0-alpha.23)
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 "dataleon", "~> 0.1.0.pre.alpha.23"
29
+ gem "dataleon", "~> 0.1.0.pre.alpha.25"
30
30
  ```
31
31
 
32
32
  <!-- x-release-please-end -->
@@ -306,7 +306,10 @@ module Dataleon
306
306
  Dataleon::Internal::Util.deep_merge(*[req[:body], opts[:extra_body]].compact)
307
307
  end
308
308
 
309
- headers.delete("content-type") if body.nil?
309
+ # Generated methods always pass `req[:body]` for operations that define a
310
+ # request body, so only elide the content-type header when the operation
311
+ # has no body at all, not when an optional body param was omitted.
312
+ headers.delete("content-type") if body.nil? && !req.key?(:body)
310
313
 
311
314
  url = Dataleon::Internal::Util.join_parsed_uri(
312
315
  @base_url_components,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dataleon
4
- VERSION = "0.1.0.pre.alpha.23"
4
+ VERSION = "0.1.0.pre.alpha.25"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dataleon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.alpha.23
4
+ version: 0.1.0.pre.alpha.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dataleon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-05-14 00:00:00.000000000 Z
11
+ date: 2026-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi