turbopuffer-ruby 0.2.0.pre.beta.1 → 0.2.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 +21 -0
- data/README.md +2 -4
- data/lib/turbopuffer/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f74d6f24c603153315a8058ef7d2e3de69d0e67cc8826e67dd11b99b21ca3f78
|
4
|
+
data.tar.gz: a93a4d2debfde1e1d0b50ab1f88a1183ae63059e807926f78bb00a0832e80954
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dce1477f36f20639b896b23f7bd3ff288a1b7f48b1a72de98118f773e0ff48c45cbda88eed2fdc6c511e4e5f0f96a75513171d5591a25da4ed362ad6ad737195
|
7
|
+
data.tar.gz: c3122f443bdde73ae799e2451f2c74a3b23a89a85623c97029cc21f9fa6910b216a241f792181756d2a6b0ed70b578b516cae45d8748f721b808fe0c5a953a4f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.2.1 (2025-07-28)
|
4
|
+
|
5
|
+
Full Changelog: [v0.2.0...v0.2.1](https://github.com/turbopuffer/turbopuffer-ruby/compare/v0.2.0...v0.2.1)
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
* **api:** api update ([1e4eca8](https://github.com/turbopuffer/turbopuffer-ruby/commit/1e4eca8d1810c7b692a2922b6b2e0093f0a5cab3))
|
10
|
+
|
11
|
+
|
12
|
+
### Chores
|
13
|
+
|
14
|
+
* update contribute.md ([3eba4ef](https://github.com/turbopuffer/turbopuffer-ruby/commit/3eba4ef08cf0ab697a19a9fec242926badf5e9e9))
|
15
|
+
|
16
|
+
## 0.2.0 (2025-07-22)
|
17
|
+
|
18
|
+
Full Changelog: [v0.2.0-beta.1...v0.2.0](https://github.com/turbopuffer/turbopuffer-ruby/compare/v0.2.0-beta.1...v0.2.0)
|
19
|
+
|
20
|
+
### Chores
|
21
|
+
|
22
|
+
* **internal:** version bump ([fbca51e](https://github.com/turbopuffer/turbopuffer-ruby/commit/fbca51ebf45d575644d28890d2717cf31d2306dc))
|
23
|
+
|
3
24
|
## 0.2.0-beta.1 (2025-07-22)
|
4
25
|
|
5
26
|
Full Changelog: [v0.2.0-alpha.3...v0.2.0-beta.1](https://github.com/turbopuffer/turbopuffer-ruby/compare/v0.2.0-alpha.3...v0.2.0-beta.1)
|
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 "turbopuffer-ruby", "~> 0.2.
|
20
|
+
gem "turbopuffer-ruby", "~> 0.2.1"
|
21
21
|
```
|
22
22
|
|
23
23
|
<!-- x-release-please-end -->
|
@@ -243,9 +243,7 @@ Or, equivalently:
|
|
243
243
|
# Hashes work, but are not typesafe:
|
244
244
|
turbopuffer.namespace("products").write(
|
245
245
|
distance_metric: "cosine_distance",
|
246
|
-
upsert_rows: [
|
247
|
-
{id: "2108ed60-6851-49a0-9016-8325434f3845", vector: [0.1, 0.2], attributes: {name: "Red boots", price: 34.99}}
|
248
|
-
]
|
246
|
+
upsert_rows: [{id: "2108ed60-6851-49a0-9016-8325434f3845", vector: [0.1, 0.2]}]
|
249
247
|
)
|
250
248
|
|
251
249
|
# You can also splat a full Params class:
|
data/lib/turbopuffer/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: turbopuffer-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Turbopuffer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|
@@ -240,9 +240,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
240
240
|
version: 3.2.0
|
241
241
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
242
242
|
requirements:
|
243
|
-
- - "
|
243
|
+
- - ">="
|
244
244
|
- !ruby/object:Gem::Version
|
245
|
-
version:
|
245
|
+
version: '0'
|
246
246
|
requirements: []
|
247
247
|
rubygems_version: 3.4.1
|
248
248
|
signing_key:
|