pi-sap-aicore 0.1.1 → 0.1.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.
- package/CHANGELOG.md +15 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.2] - 2026-06-06
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Package-catalog preview image (`pi.image`) so the pi.dev gallery card shows a
|
|
15
|
+
`pi --list-models` screenshot.
|
|
16
|
+
- Dependabot config: weekly grouped `npm` updates and `github-actions` updates.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- CI: bump `actions/checkout` and `actions/setup-node` to v6 (off the deprecated
|
|
21
|
+
Node 20 action runtime).
|
|
22
|
+
|
|
10
23
|
## [0.1.1] - 2026-06-06
|
|
11
24
|
|
|
12
25
|
### Added
|
|
@@ -38,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
38
51
|
`reasoning_effort` for OpenAI).
|
|
39
52
|
- MIT license and npm packaging.
|
|
40
53
|
|
|
41
|
-
[Unreleased]: https://github.com/ttiimmaahh/pi-sap-aicore/compare/v0.1.
|
|
54
|
+
[Unreleased]: https://github.com/ttiimmaahh/pi-sap-aicore/compare/v0.1.2...HEAD
|
|
55
|
+
[0.1.2]: https://github.com/ttiimmaahh/pi-sap-aicore/compare/v0.1.1...v0.1.2
|
|
42
56
|
[0.1.1]: https://github.com/ttiimmaahh/pi-sap-aicore/compare/v0.1.0...v0.1.1
|
|
43
57
|
[0.1.0]: https://github.com/ttiimmaahh/pi-sap-aicore/releases/tag/v0.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-sap-aicore",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "SAP AI Core (orchestration + foundation) provider for the pi coding agent",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Tim Pearson (https://github.com/ttiimmaahh)",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"pi": {
|
|
27
27
|
"extensions": [
|
|
28
28
|
"./index.ts"
|
|
29
|
-
]
|
|
29
|
+
],
|
|
30
|
+
"image": "https://raw.githubusercontent.com/ttiimmaahh/pi-sap-aicore/main/docs/sap-model-list.jpg"
|
|
30
31
|
},
|
|
31
32
|
"scripts": {
|
|
32
33
|
"update-models": "node scripts/update-models.mjs",
|