phronomy 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +3 -0
  3. data/lib/phronomy/version.rb +1 -1
  4. metadata +15 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c8712213b18692b6bf9531110ffc38fa0f9d069509bf85b3424c5b77a76eb8e
4
- data.tar.gz: c63a2cc058ad50b80306bcadfd7a99304f216ab02375272e43ab6cf5c38cb451
3
+ metadata.gz: eb31ae2fdc7b102461fd91480ea2e2aaeda618fb65cc3eb885a9525ca1e985e2
4
+ data.tar.gz: 2ede56b656b789ff195561ac72cac5df2f51dba410dbee8e3025437985509e61
5
5
  SHA512:
6
- metadata.gz: 64de5d992461ceaccc2d579bbd6b3046b8ce711ca65f68b14cfb9f9fe45d724c2db0646ef547fe7d6a4502a7ca6657b9330d33898e1f24e694418fe9e41c324d
7
- data.tar.gz: 507d16006d00d4304db2d1e2e67a61e605dbabfc190dc7cdbbf198e17e4648fc5a0767904f503e2da826f7744859c78ec99f7585732b45ace6251e1296cb274a
6
+ metadata.gz: fe717ea7a31272ad7d7247f214c59ca8c5370a80ce80e67d69d8bb14f5e285d779004545e56f3298e85d63ca7352ba430f2912e967453b899c1181e8d00fb77e
7
+ data.tar.gz: e3a45c05b4b8f129e61fa09ae7e23be8916aeae762642f5333fb3876c6d142091d836c8c33d3dcb0a3908d1d1d6d99261bffde3e07d8ad505aa136a0df9f9097
data/CHANGELOG.md CHANGED
@@ -14,6 +14,9 @@ Release history for 0.14.0 and earlier is archived in
14
14
 
15
15
  ### Fixed
16
16
 
17
+ - Add runtime dependency constraint `json < 3` to prevent Faraday/RubyLLM JSON
18
+ parser incompatibilities from resolving in consumer environments.
19
+
17
20
  - Run recovered output filtering inside the ordinary Agent FSM so filter
18
21
  exceptions commit a failed execution and release admission, including after
19
22
  another restart. Preserve explicit filter blocking as the `blocked` status.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Phronomy
4
- VERSION = "0.24.0"
4
+ VERSION = "0.24.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phronomy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.24.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Raizo T.C.S
@@ -78,6 +78,20 @@ dependencies:
78
78
  - - "~>"
79
79
  - !ruby/object:Gem::Version
80
80
  version: '1.0'
81
+ - !ruby/object:Gem::Dependency
82
+ name: json
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "<"
86
+ - !ruby/object:Gem::Version
87
+ version: '3'
88
+ type: :runtime
89
+ prerelease: false
90
+ version_requirements: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - "<"
93
+ - !ruby/object:Gem::Version
94
+ version: '3'
81
95
  description: Phronomy is a Ruby AI agent framework that provides composable building
82
96
  blocks — Agents, Workflows, Tools, Filters, and Tracing — for building AI agents
83
97
  in Ruby. Powered by RubyLLM for LLM abstraction.