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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.1] - 2026-04-04
### Security
- Pinned patched transitive `minimatch` versions via npm `overrides` so the `ejs -> jake -> filelist -> minimatch` path now resolves to a patched `minimatch` release instead of a vulnerable one.
- Refreshed the lockfile to pull fixed `minimatch` and `brace-expansion` releases for both production and dev dependency paths.

## [0.2.0] - 2026-02-21
### Added
- Added package manager selection for dependency installation (`npm` or `yarn`) in interactive prompts and non-interactive runs.
Expand Down
47 changes: 35 additions & 12 deletions package-lock.json

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

10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alexmc2/create-express-api-starter",
"version": "0.2.0",
"version": "0.2.1",
"description": "Interactive CLI to scaffold API-first Express backend projects",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -70,5 +70,13 @@
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"overrides": {
"@typescript-eslint/typescript-estree": {
"minimatch": "9.0.7"
},
"filelist": {
"minimatch": "5.1.8"
}
}
}
Loading