openclacky 0.8.4 → 0.8.5
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 +6 -0
- data/lib/clacky/client.rb +2 -0
- data/lib/clacky/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: eafcf68d56923cdd3aaacc446277756c77661eaf5da6348ac7f54c565a141bd3
|
|
4
|
+
data.tar.gz: 5f09c5ffdfba608554be327b9e7bf6ea1e7df57ceedf2ead6402ae8f74ce8780
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 223dc788074dc74f3e61f1980eb9bab3ef0fb1d15d1644bf500013ae058212d52b8184be51762c08adeeee3d856d2eab4c78d7ea142fa69b3273e81003c80d7c
|
|
7
|
+
data.tar.gz: 58fbeba9eb4f17f02d61a61707c82e16f3a5d152d0ae95cc9ad745d356470a677ab471093271f54ca3e25ddffe9203060e8612698269c96d18015f24288f912a
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.8.5] - 2026-03-11
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **SSL connection on mise/Homebrew Ruby**: disabled SSL certificate verification in Faraday HTTP client to fix `SSL_connect` errors that affected users who installed Ruby via `mise` + Homebrew on macOS (where the system CA bundle is not linked automatically)
|
|
14
|
+
- **ChannelManager startup crash**: fixed `NoMethodError` for undefined `Clacky.logger` — now correctly calls `Clacky::Logger`
|
|
15
|
+
|
|
10
16
|
## [0.8.4] - 2026-03-10
|
|
11
17
|
|
|
12
18
|
### Added
|
data/lib/clacky/client.rb
CHANGED
|
@@ -573,6 +573,7 @@ module Clacky
|
|
|
573
573
|
conn.headers["Authorization"] = "Bearer #{@api_key}"
|
|
574
574
|
conn.options.timeout = 120
|
|
575
575
|
conn.options.open_timeout = 10
|
|
576
|
+
conn.ssl.verify = false
|
|
576
577
|
conn.adapter Faraday.default_adapter
|
|
577
578
|
end
|
|
578
579
|
end
|
|
@@ -586,6 +587,7 @@ module Clacky
|
|
|
586
587
|
conn.headers["anthropic-dangerous-direct-browser-access"] = "true"
|
|
587
588
|
conn.options.timeout = 120
|
|
588
589
|
conn.options.open_timeout = 10
|
|
590
|
+
conn.ssl.verify = false
|
|
589
591
|
conn.adapter Faraday.default_adapter
|
|
590
592
|
end
|
|
591
593
|
end
|
data/lib/clacky/version.rb
CHANGED