@justram/pie 0.2.6 → 0.2.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.
- package/CHANGELOG.md +19 -1
- package/README.md +4 -0
- package/package.json +7 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
-
|
|
3
2
|
## [Unreleased]
|
|
4
3
|
|
|
5
4
|
### Breaking Changes
|
|
@@ -12,6 +11,25 @@
|
|
|
12
11
|
|
|
13
12
|
### Removed
|
|
14
13
|
|
|
14
|
+
|
|
15
|
+
## 0.2.7
|
|
16
|
+
|
|
17
|
+
### Breaking Changes
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- Added http-proxy example showing HTTP proxy environment variable routing.
|
|
22
|
+
- Added unit test covering HTTP proxy environment routing.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- Updated @mariozechner/pi-ai to v0.50.1 (includes HTTP proxy env support).
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
### Removed
|
|
31
|
+
|
|
32
|
+
|
|
15
33
|
## 0.2.6
|
|
16
34
|
|
|
17
35
|
### Breaking Changes
|
package/README.md
CHANGED
|
@@ -110,6 +110,10 @@ Auth file entries take precedence over environment variables. To switch from OAu
|
|
|
110
110
|
|
|
111
111
|
Edit or delete `~/.pi/agent/auth.json` to remove a provider and force re-login.
|
|
112
112
|
|
|
113
|
+
## Release
|
|
114
|
+
|
|
115
|
+
See [docs/release.md](docs/release.md) for the release checklist.
|
|
116
|
+
|
|
113
117
|
## SDK Usage
|
|
114
118
|
|
|
115
119
|
```ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justram/pie",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "Structured extraction library and CLI built on @mariozechner/pi-ai.",
|
|
5
5
|
"homepage": "https://github.com/justram/pie#readme",
|
|
6
6
|
"repository": {
|
|
@@ -58,32 +58,28 @@
|
|
|
58
58
|
"test:watch": "vitest",
|
|
59
59
|
"test:e2e": "vitest run --config vitest.config.e2e.ts",
|
|
60
60
|
"clean": "rm -rf dist",
|
|
61
|
-
"version:patch": "npm version patch --no-git-tag-version && node scripts/sync-versions.js",
|
|
62
|
-
"version:minor": "npm version minor --no-git-tag-version && node scripts/sync-versions.js",
|
|
63
|
-
"version:major": "npm version major --no-git-tag-version && node scripts/sync-versions.js",
|
|
64
|
-
"version:set": "npm version --no-git-tag-version",
|
|
65
61
|
"prepublishOnly": "npm run clean && npm run build && npm run check",
|
|
66
|
-
"publish:public": "npm
|
|
67
|
-
"publish:dry": "npm
|
|
62
|
+
"publish:public": "npm publish --access public",
|
|
63
|
+
"publish:dry": "npm publish --access public --dry-run",
|
|
68
64
|
"release:patch": "node scripts/release.mjs patch",
|
|
69
65
|
"release:minor": "node scripts/release.mjs minor",
|
|
70
|
-
"release:
|
|
71
|
-
"
|
|
66
|
+
"release:push": "git push origin main --tags",
|
|
67
|
+
"release:github": "node scripts/release-github.mjs"
|
|
72
68
|
},
|
|
73
69
|
"dependencies": {
|
|
74
|
-
"@mariozechner/pi-ai": "^0.
|
|
70
|
+
"@mariozechner/pi-ai": "^0.50.1",
|
|
75
71
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
76
72
|
"@sinclair/typebox": "^0.34.46",
|
|
77
73
|
"minijinja-js": "^2.14.0"
|
|
78
74
|
},
|
|
79
75
|
"devDependencies": {
|
|
80
76
|
"@biomejs/biome": "^2.3.11",
|
|
77
|
+
"@j178/prek": "^0.3.0",
|
|
81
78
|
"@types/node": "^22.10.2",
|
|
82
79
|
"@typescript-eslint/parser": "^8.46.0",
|
|
83
80
|
"eslint": "^9.36.0",
|
|
84
81
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
85
82
|
"fast-check": "^4.5.3",
|
|
86
|
-
"husky": "^9.1.7",
|
|
87
83
|
"typescript": "^5.9.3",
|
|
88
84
|
"vitest": "^4.0.16"
|
|
89
85
|
}
|