wolbarg 0.3.1 → 0.3.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 +12 -5
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project are documented here.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
7
7
|
|
|
8
|
+
## [0.3.2] — 2026-07-18
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **npm metadata** — `repository`, `bugs`, `homepage`, and `funding` now point at [wolbarg/wolbarg](https://github.com/wolbarg/wolbarg)
|
|
13
|
+
|
|
8
14
|
## [0.3.1] — 2026-07-17
|
|
9
15
|
|
|
10
16
|
### Fixed
|
|
@@ -33,7 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
33
39
|
- **Telemetry instrumentation** — records available organization/agent/checkpoint context, persists real recall explanations, and reports measured pipeline stages without inventing recency signals
|
|
34
40
|
- **Rebrand** — product renamed from AgentOrc / `agentorc` to **Wolbarg** / `wolbarg`
|
|
35
41
|
- **API** — `AgentOrc` → `Wolbarg`, `AgentOrcOptions` → `WolbargOptions`, `AgentOrcError` → `WolbargError`
|
|
36
|
-
- **Links** — docs and homepage now at [wolbarg.com](https://wolbarg.com); GitHub at [
|
|
42
|
+
- **Links** — docs and homepage now at [wolbarg.com](https://wolbarg.com); GitHub at [wolbarg/wolbarg](https://github.com/wolbarg/wolbarg)
|
|
37
43
|
- **Schema** — internal meta table renamed `agentorc_meta` → `wolbarg_meta` (new databases only; recreate or migrate existing DBs)
|
|
38
44
|
|
|
39
45
|
### Migration
|
|
@@ -120,8 +126,9 @@ const ctx = wolbarg({
|
|
|
120
126
|
|
|
121
127
|
- Initial npm release path (pre–modular storage / ingest)
|
|
122
128
|
|
|
123
|
-
[0.3.
|
|
124
|
-
[0.3.
|
|
125
|
-
[0.
|
|
126
|
-
[0.2.
|
|
129
|
+
[0.3.2]: https://github.com/wolbarg/wolbarg/releases/tag/v0.3.2
|
|
130
|
+
[0.3.1]: https://github.com/wolbarg/wolbarg/releases/tag/v0.3.1
|
|
131
|
+
[0.3.0]: https://github.com/wolbarg/wolbarg/releases/tag/v0.3.0
|
|
132
|
+
[0.2.1]: https://github.com/wolbarg/wolbarg/releases/tag/v0.2.1
|
|
133
|
+
[0.2.0]: https://github.com/wolbarg/wolbarg/releases/tag/v0.2.0
|
|
127
134
|
[0.1.1]: https://www.npmjs.com/package/wolbarg/v/0.1.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wolbarg",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Wolbarg — modular, provider-agnostic semantic memory SDK for AI agents. SQLite + PostgreSQL, hybrid search, ingest, optional rerankers.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -98,15 +98,15 @@
|
|
|
98
98
|
},
|
|
99
99
|
"repository": {
|
|
100
100
|
"type": "git",
|
|
101
|
-
"url": "git+https://github.com/
|
|
101
|
+
"url": "git+https://github.com/wolbarg/wolbarg.git"
|
|
102
102
|
},
|
|
103
103
|
"bugs": {
|
|
104
|
-
"url": "https://github.com/
|
|
104
|
+
"url": "https://github.com/wolbarg/wolbarg/issues"
|
|
105
105
|
},
|
|
106
|
-
"homepage": "https://
|
|
106
|
+
"homepage": "https://github.com/wolbarg/wolbarg#readme",
|
|
107
107
|
"funding": {
|
|
108
108
|
"type": "github",
|
|
109
|
-
"url": "https://github.com/
|
|
109
|
+
"url": "https://github.com/wolbarg/wolbarg"
|
|
110
110
|
},
|
|
111
111
|
"optionalDependencies": {
|
|
112
112
|
"mammoth": "^1.12.0",
|