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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to FixMap are documented here.

## 0.6.2 - 2026-07-22

### Security

- Updated Next.js to 16.2.11 and pinned patched Sharp/libvips and `fast-uri` releases, clearing all high-severity production audit findings.
- Added a production audit gate that fails CI on high or critical advisories. The remaining two moderate findings come from the MCP SDK's unused HTTP static-file adapter; FixMap exposes only the SDK's stdio transport and does not import or run that adapter.

## 0.6.1 - 2026-07-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
with:
fetch-depth: 0
- id: fixmap
uses: aryamthecodebreaker/FixMap@v0.6.1
uses: aryamthecodebreaker/FixMap@v0.6.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
```
Expand Down
4 changes: 2 additions & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"next": "16.2.10",
"next": "16.2.11",
"react": "19.2.7",
"react-dom": "19.2.7"
},
Expand All @@ -24,6 +24,6 @@
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.10"
"eslint-config-next": "16.2.11"
}
}
Loading