activeagent 1.3.0 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45044ca9e6ddabcdfb1be0f32074149a3e9fb8fcaa9e7c8a79c02f81c73eb64b
4
- data.tar.gz: 7f0a2489a68e01f0dd0e9a1fb96878bb900acaab173ba0a0157ad82a8a510fe6
3
+ metadata.gz: e041e8f2080b82e5b01648a83edfcfb7efa66cdfdb44fe814c4cca03e268816a
4
+ data.tar.gz: d6bcf308c34a8eb7522137275beaa286571fdc82c13cb91a0d8de9fa4609313f
5
5
  SHA512:
6
- metadata.gz: 7c4797fc3bc8e97be8624ef989abc1486fe0d357f5248353dd09bc9852de605e0b14cebb33f3fb35ba166f62e64f7ce5522f62da94ad25b5b188a771f1f8aeec
7
- data.tar.gz: 72bc8b89a042c1d3fd2489de0eb452d2e95106eaf9a46ad4dc5e8f1378b3441345c0b652c123490804943064f16526a1baa67584ce4b2a4315255beb3783203e
6
+ metadata.gz: a9010a8e0f091c79757f282fd4f233b19468bfeb979fdecd4f00ad3b239bd60c3e39d159e17187444d56804fadde65ad748dd84fd7fb25fde9ecdfe3b081d257
7
+ data.tar.gz: 17c642804ffd9dc781bbb7a55fc5f68207fbb44ad68e836509aa3657d81767fee8d0138a29e53193fde58926e2c889dfa77461ba31372e95e5782f55adfb4b29
data/CHANGELOG.md CHANGED
@@ -5,6 +5,28 @@ 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.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.3.1] - 2026-08-19
9
+
10
+ ### Fixed
11
+
12
+ - **Traces record the user turn an agent renders from its template.** An
13
+ agent written the idiomatic way — `instructions:` plus `locals:`, with the
14
+ user message in the action's ERB — passed no `messages:`, so the
15
+ instrumentation had nothing to serialize and `prompt.input.messages` was
16
+ absent from its traces. The system prompt and the completion were both
17
+ captured, which made the gap easy to miss: a trace looked populated while
18
+ the half an evaluation scores, what the model was actually asked, was
19
+ missing. The instrumentation now falls back to the rendered parameters when
20
+ no explicit messages exist.
21
+
22
+ ### Note on the 1.3.0 gem
23
+
24
+ `activeagent 1.3.0` was published from a tree that already carried the fix
25
+ above, so the released gem did not match the `v1.3.0` tag — the tag's source
26
+ would not reproduce it. This release contains no change relative to that
27
+ published gem; it exists so that the tag, `main` and the published gem agree
28
+ again. Upgrading from 1.3.0 is optional and changes no behaviour.
29
+
8
30
  ## [1.3.0] - 2026-08-18
9
31
 
10
32
  ### Added
@@ -1,3 +1,3 @@
1
1
  module ActiveAgent
2
- VERSION = "1.3.0"
2
+ VERSION = "1.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeagent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Bowen