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
18 changes: 4 additions & 14 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
## OpenCore Framework v1.1.1
## OpenCore Framework v1.1.2

### Added
- Added CodeQL analysis for JavaScript and TypeScript on `master`, `develop`, pull requests, and a weekly schedule.
- Added Dependabot updates for npm packages and GitHub Actions.

### Changed
- Replaced development-mode event history eviction with a fixed-capacity circular buffer.

### Fixed
- Redacted raw command arguments from suspicious-command rejection logs while retaining the argument count.
- Returned a generic public error for invalid RPC payloads without exposing validation details to callers.
- Preserved invalid RPC payload details in server-only logs for diagnostics.
- Kept rate-limit hits until their configured throttle window has elapsed.
- Prevented unbounded pending-event tracking without expiring valid long-running operations.
### Updates
- Dependencies updated and override `js-yaml` to `5.4.1`
- Typescript updated to version 7.
23 changes: 13 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-core/framework",
"version": "1.1.1",
"version": "1.1.2",
"description": "Secure, event-driven TypeScript Framework & Runtime engine for CitizenFX (Cfx).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -103,22 +103,25 @@
"zod": "^4.3.5"
},
"dependencies": {
"uuid": "^14.0.1"
"uuid": "^14.0.2"
},
"overrides": {
"js-yaml": "^5.4.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.5",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"dependency-cruiser": "^18.1.0",
"@biomejs/biome": "^2.5.11",
"@types/node": "^26.4.0",
"@vitest/coverage-v8": "^4.1.11",
"dependency-cruiser": "^18.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"graphviz": "^0.0.9",
"husky": "^9.1.7",
"lint-staged": "^17.1.0",
"tinybench": "^6.0.2",
"tsx": "^4.23.1",
"lint-staged": "^17.4.1",
"tinybench": "^6.1.4",
"tsx": "^4.23.12",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
"vitest": "^4.1.11"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,tsx,json,md}": [
Expand Down
Loading
Loading