anthropic 1.16.2 → 1.16.3
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 +13 -0
- data/README.md +1 -1
- data/lib/anthropic/helpers/messages.rb +1 -1
- data/lib/anthropic/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: ed35d862c36fcf182d10e3564e1e8b3033d28d50cc41722cecad9f5cefe04485
|
|
4
|
+
data.tar.gz: ecd043c34b77294b695b30a6c4b18ea202ab0a395ee71f60c19bbfefe1c2e820
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d1d6c091b2c84079ff5ef5eb101aec169b3c39ca85a451d1ec0825bed474d8cdc7a2910f9244311e49c2064917969c3fae3e03d75f825fc8831a64d0a849ed4
|
|
7
|
+
data.tar.gz: 51e4e737cc87f636e52394ff615cbf563cd225031840add3fe05e01855a942735de1f51ed488ba25d2ff9a532e23b0c267972abe91021ab53aa2666ec3eb1600
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.16.3 (2026-01-05)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.16.2...v1.16.3](https://github.com/anthropics/anthropic-sdk-ruby/compare/v1.16.2...v1.16.3)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* Use proper module name for structured output parsing ([#769](https://github.com/anthropics/anthropic-sdk-ruby/issues/769)) ([fdbe433](https://github.com/anthropics/anthropic-sdk-ruby/commit/fdbe433cbcbe5a8611410338f7e0d47a727575be))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* **ci:** Add Claude Code GitHub Workflow ([#772](https://github.com/anthropics/anthropic-sdk-ruby/issues/772)) ([6ebfa59](https://github.com/anthropics/anthropic-sdk-ruby/commit/6ebfa59913de26aece1d946a0cfaad168cd5f632))
|
|
15
|
+
|
|
3
16
|
## 1.16.2 (2025-12-18)
|
|
4
17
|
|
|
5
18
|
Full Changelog: [v1.16.1...v1.16.2](https://github.com/anthropics/anthropic-sdk-ruby/compare/v1.16.1...v1.16.2)
|
data/README.md
CHANGED
|
@@ -60,7 +60,7 @@ module Anthropic
|
|
|
60
60
|
schema = model.to_json_schema
|
|
61
61
|
Anthropic::Helpers::InputSchema::SupportedSchemas.transform_schema!(schema)
|
|
62
62
|
data.update(output_format: {type: :json_schema, schema: schema})
|
|
63
|
-
in {output_format: {schema: Anthropic::Helpers::
|
|
63
|
+
in {output_format: {schema: Anthropic::Helpers::InputSchema::JsonSchemaConverter => model} => output_format}
|
|
64
64
|
name = model_name(model.name)
|
|
65
65
|
models.store(name, model)
|
|
66
66
|
schema = model.to_json_schema
|
data/lib/anthropic/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: anthropic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.16.
|
|
4
|
+
version: 1.16.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anthropic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|