pi-agent-rb 0.1.6 → 0.1.7
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 +10 -0
- data/README.md +1 -1
- data/lib/pi_agent/version.rb +2 -2
- 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: 850c5228edfceb196e78db8c6ecf1b8148ea02d4923838f76558fb927719feba
|
|
4
|
+
data.tar.gz: aa56e069fb511507da7e56963850c372891126dd9890f9aa1770efda1877242d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83a7df38b8ecfd98730fb9bd8ed30610576a6da3add0043f920b5e9694860e43cbcfe7d46816a6615e2a29fdf67c2f50ec054eba00c2eb9fbc9d6aa6f23dc1ea
|
|
7
|
+
data.tar.gz: ab5112deb45f46441e417966087c6b7097f525cc8030e6f0c79c4d3676d1c47760107a83acf7f7e9435715465171b7c6a228818049fdc274f7fbefe51c1a83c8
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.7] - 2026-06-16
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Bumped pinned upstream `pi-coding-agent` version to `0.79.6` (rolls up
|
|
14
|
+
0.79.5–0.79.6: provider-scoped API key `env` overrides in `auth.json`, a
|
|
15
|
+
global `httpProxy` setting, HTTP dispatcher respecting caller-provided
|
|
16
|
+
`fetch` overrides, and assorted provider/streaming fixes; no changes to the
|
|
17
|
+
RPC protocol surface or the `--approve`/`--no-approve` flags this gem
|
|
18
|
+
drives).
|
|
19
|
+
|
|
10
20
|
## [0.1.6] - 2026-06-15
|
|
11
21
|
|
|
12
22
|
### Changed
|
data/README.md
CHANGED
|
@@ -14,7 +14,7 @@ building interactive agent UIs (web, TUI) on top of pi.
|
|
|
14
14
|
|
|
15
15
|
- Ruby 3.3+
|
|
16
16
|
- `pi` on `PATH` (install via `npm i -g @earendil-works/pi-coding-agent`)
|
|
17
|
-
- This gem is pinned against pi `0.79.
|
|
17
|
+
- This gem is pinned against pi `0.79.6`; other versions may work but are not verified.
|
|
18
18
|
|
|
19
19
|
## Installation
|
|
20
20
|
|
data/lib/pi_agent/version.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module PiAgent
|
|
4
|
-
VERSION = "0.1.
|
|
4
|
+
VERSION = "0.1.7"
|
|
5
5
|
|
|
6
6
|
# Pinned upstream pi-coding-agent version this gem is verified against.
|
|
7
7
|
# See: https://www.npmjs.com/package/@earendil-works/pi-coding-agent
|
|
8
|
-
SUPPORTED_PI_VERSION = "0.79.
|
|
8
|
+
SUPPORTED_PI_VERSION = "0.79.6"
|
|
9
9
|
end
|