Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
All notable changes to OpenLore are documented here. This project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.2.0] - 2026-09-13

**The release where OpenLore checks the locks before reading the map.**

- **See collisions before they land.** In-flight work now gets a real Git textual-merge verdict,
and changed or newly added tests are always selected with a plain-language reason.
- **Find more of the code that actually runs.** Framework entry points, literal dispatch tables,
and config-wired files now participate in reachability instead of looking accidentally dead.
- **Make governance portable.** Public-surface checks emit stable finding codes, recommend the
appropriate SemVer bump, and can export SARIF for code-scanning workflows.
- **Give agents a better-sized map.** `orient` fits its entire answer to the requested token budget,
while generated spec links are checked against structural evidence before they are presented.
- **Treat a repository like input, not a houseguest.** Git execution, network egress, symlinks,
artifact reads, terminal output, MCP arguments, regex cost, and trust labels all gained stricter
fail-closed boundaries. Dependabot is clear and the reviewed intentional-egress alerts are closed.

No breaking changes. Existing commands and configuration remain compatible with 3.1.x.

**Upgrade:** `npm i -g openlore@3.2.0` — or `openlore update`.

**Full Changelog**: https://github.com/clay-good/OpenLore/compare/v3.1.1...v3.2.0

## [3.1.1] - 2026-09-07

**The release where the first run stops being the worst run — and Windows joins CI.**
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openlore",
"version": "3.1.1",
"version": "3.2.0",
"description": "Persistent architectural memory and structural cognition for AI coding agents.",
"type": "module",
"main": "dist/api/index.js",
Expand Down
19 changes: 19 additions & 0 deletions src/core/services/fixtures/configs/3.2.0-default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "1.2.0",
"projectType": "nodejs",
"openspecPath": "openspec",
"analysis": {
"maxFiles": 100000,
"includePatterns": [],
"excludePatterns": []
},
"generation": {
"model": "claude-sonnet-4-6",
"domains": "auto"
},
"panicResponse": {
"mode": "off"
},
"createdAt": "2026-09-13T00:00:00.000Z",
"lastRun": null
}
2 changes: 2 additions & 0 deletions src/core/services/fixtures/configs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ They intentionally do not move with the current schema.
v3.1.0.
- `3.1.1-default.json` captures the unchanged default configuration factory shape for v3.1.1 and
schema 1.2.0.
- `3.2.0-default.json` captures the unchanged default configuration factory shape for v3.2.0 and
schema 1.2.0.

For each release, add at least one `<package-version>-*.json` fixture before changing the package
version. Include both a factory-default shape and a realistic customized shape when the release
Expand Down