riffer 0.24.0 → 0.24.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/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +7 -0
- data/lib/riffer/providers/anthropic.rb +6 -1
- data/lib/riffer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c825d1e5ba230247483b2d111a711b4d9edfbe87b03b1acd0da2cdf88db99bd8
|
|
4
|
+
data.tar.gz: a56a7bc07700971525cf326b7f931ad1e44ac8c561f0ef300b8046420ab091fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60a98ad7eae9708363ec90ab9ad3f8c75d734a9389879870c0eac8fa0401d876ace8a5c53442d0607e276ac60acefe8bdf43aa1c1087225e8743010d378ff7db
|
|
7
|
+
data.tar.gz: 32f552a9848e8cdd0bba3f111ac045bfbb8cc2f32c4852aae1cd9c49c6e8e9d6809589bbb5c1b15497e8ba0f1891af72fba0df339c8257e168c1ad2c47a822db
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.24.1](https://github.com/janeapp/riffer/compare/riffer/v0.24.0...riffer/v0.24.1) (2026-04-23)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* disable gzip on Anthropic stream to avoid SSE buffering ([#220](https://github.com/janeapp/riffer/issues/220)) ([ee2aaca](https://github.com/janeapp/riffer/commit/ee2aaca06eaefb12e5b6cbc3bde48ba8f3ea4ee8))
|
|
14
|
+
|
|
8
15
|
## [0.24.0](https://github.com/janeapp/riffer/compare/riffer/v0.23.0...riffer/v0.24.0) (2026-04-20)
|
|
9
16
|
|
|
10
17
|
|
|
@@ -144,7 +144,12 @@ class Riffer::Providers::Anthropic < Riffer::Providers::Base
|
|
|
144
144
|
web_search_query: nil
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
-
|
|
147
|
+
# Workaround for anthropics/anthropic-sdk-ruby#182: force identity
|
|
148
|
+
# encoding so Net::HTTP/Zlib doesn't buffer SSE chunks until EOF.
|
|
149
|
+
stream = @client.messages.stream(
|
|
150
|
+
**params,
|
|
151
|
+
request_options: {extra_headers: {"accept-encoding" => "identity"}}
|
|
152
|
+
)
|
|
148
153
|
current_state[:stream] = stream
|
|
149
154
|
|
|
150
155
|
stream.each do |event|
|
data/lib/riffer/version.rb
CHANGED