turbopuffer 2.0.0 → 2.0.1
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 +8 -0
- data/README.md +1 -1
- data/lib/turbopuffer/internal/transport/base_client.rb +2 -0
- data/lib/turbopuffer/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: 4be40e5b1ec16648e8f8399a9ea5f226ce34b2a8e64599a03ae00ec1b7775098
|
|
4
|
+
data.tar.gz: b42a4f3bcf669249bee313f803e0a734688ebcab54904f1307ba86650f841b5c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 89563024f84fc9a2ee9b71d6321e147d940494702db456cac0a57495a890aec606fdd9db1b1d9809157a6dae4302afe5a1726182b8b47eb6ae44f304d9cfdd0b
|
|
7
|
+
data.tar.gz: 96a17ae4fa203347880ea0f384b890f5c9bd1da728e21aeb77c8f38380828ebcf829740131bc7767359b6c93d3bba8d8e10991d0ee16ba5d970b15cb97c25527
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.1 (2026-05-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v2.0.0...v2.0.1](https://github.com/turbopuffer/turbopuffer-ruby/compare/v2.0.0...v2.0.1)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **client:** elide content type header on requests without body ([c03121e](https://github.com/turbopuffer/turbopuffer-ruby/commit/c03121e22d62d66df81763733244f6c93e1af009))
|
|
10
|
+
|
|
3
11
|
## 2.0.0 (2026-05-10)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v2.0.0-alpha.4...v2.0.0](https://github.com/turbopuffer/turbopuffer-ruby/compare/v2.0.0-alpha.4...v2.0.0)
|
data/README.md
CHANGED
|
@@ -319,6 +319,8 @@ module Turbopuffer
|
|
|
319
319
|
Turbopuffer::Internal::Util.deep_merge(*[req[:body], opts[:extra_body]].compact)
|
|
320
320
|
end
|
|
321
321
|
|
|
322
|
+
headers.delete("content-type") if body.nil?
|
|
323
|
+
|
|
322
324
|
url = Turbopuffer::Internal::Util.join_parsed_uri(
|
|
323
325
|
@base_url_components,
|
|
324
326
|
{**req, path: path, query: query}
|
data/lib/turbopuffer/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: turbopuffer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Turbopuffer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|