ask-agent 0.24.1 → 0.24.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5268e3474f109d7471749692a535a89b266e5a9d10c20499a565087500eaee8
4
- data.tar.gz: 24fc0068d51f1eedc2e0d6f427234db468db375e915a4383533086993dab8b5d
3
+ metadata.gz: c4f30ce069402dd4a125120e13e63fbbb438ca2270cd683a199d8f774d93b40c
4
+ data.tar.gz: db1e37fea28111e58ac75723d483019c6e13bec7ed0fa4b3ed0c81dcbda0621d
5
5
  SHA512:
6
- metadata.gz: 8dddca135834b42108d217fc09a121a4fc4fd4ad44da326849b9654f30ba393bc115b44a3bc756433a7cbb8bd1b729d02dc246feb540e6f0ff39dc2aff1e56ad
7
- data.tar.gz: 5cde0691f9aa8bd6723c20344211c50cc18e15ffdf392d97710896d4752b8343c583faab5de7e4156e261049676dbe06e2136162a8d10d1b48e9ae3e174f7786
6
+ metadata.gz: 2d4562819a0a62a758e173ef3473800880c3da920a1bf00466933a1ff39a488e6cfc35b82e89429add6c5a255f4593888e48c191bed4c286324da0a5132bec5a
7
+ data.tar.gz: d1f94898e2155cf63d8ef04e6e458582ef9fed2c5b74adf007a27c1562bd0958165a79070612b5a08cca87b18e16e216fc6efd5352e79a39e6f76d94b0d4fe5a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## [0.24.2] — 2026-07-30
2
+
3
+ ### Fixed
4
+
5
+ - **Definitions discovered through an intermediate base class no longer
6
+ crash.** `Definition.inherited` appended to `@subclasses` on `self`, so
7
+ subclassing `Ask::Agent::Definition` through an application base class
8
+ (e.g. `class Agent < ApplicationAgent` in a Rails app) made the ivar nil
9
+ and raised `NoMethodError` on load. Tracking now reads the registry from
10
+ `Definition` itself, and `Definition.subclasses` reports the same list
11
+ regardless of receiver.
12
+
13
+ - **Changelog for 0.24.1.** The subclass-chain fix shipped as 0.24.1
14
+ without a changelog entry; it is documented here and republished as
15
+ 0.24.2 so the gem content includes it.
16
+
1
17
  ## [0.24.0] — 2026-07-30
2
18
 
3
19
  ### Changed
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ask
4
4
  module Agent
5
- VERSION = "0.24.1"
5
+ VERSION = "0.24.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ask-agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.1
4
+ version: 0.24.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaka Ruto