Releases: kevintyj/prlint
v2.3.0
Minor Changes
- #23
729b924a735a3cb3773744c79961862546cd534aThanks @kevintyj! - Fixes an issue with failing results not stopping the job before timeout
What's Changed
- feat: Change failiure behavior by @kevintyj in #23
- ci(release): Version packages by @github-actions in #24
Full Changelog: v2.2.0...v2.3.0
v2.2.0
Minor Changes
- #20
7a22e6b95bd102732dd05d78a269adf9738617dbThanks @kevintyj! - Add timeout and timeout input on action
What's Changed
Full Changelog: v2...v2.2.0
v2.1.0
Minor Changes
-
d6cb453dbf8447cdddc94fb4cbe59763e80fe078Thanks @kevintyj! - Add ability to pass in body to commit -
#18
a99014b7b89d14c0e30e6354464b218df764b04cThanks @kevintyj! - Fixes unresolved behavior on remote action run
What's Changed
- feat: Add @commitlint/load as external dependency by @kevintyj in #18
- ci(release): Version packages by @github-actions in #19
Full Changelog: v2...v2.1.0
v2.0.0
Major Changes
-
#15
c14bd660b8588fa73708f9697bcc35f0a34b7d56Thanks @kevintyj! - Adds pure native ESM supportThis new major version of prlint updates commitlint package to the new v19.
This update removes support for CJS and only exports the app as a ESM package
(this should not affect the way you use this plugin in any way as the Github
node runner handles ESM just fine).This release drops support for:
- Custom configuration file names:
- The new upgrade takes advantage of the native commitlint config loader to
load the configuration from your project folder. If you do really need support for custom commitlint specification file names such as my-awesome-config-file.jsx, either way you need to be setting up custom commitlint configurations on your environment (which I do not recommend you to do), you could easily just create a symlink pointing to a valid name such as commitlint.config.mjs, this action will be able to work in your workflow without any further setup.
- The new upgrade takes advantage of the native commitlint config loader to
New features:
- Native ESM & CJS compatibility
- As the new project bundles to native ESM ran on Node, previous handling of
CJS config files are unecessary
- As the new project bundles to native ESM ran on Node, previous handling of
- Automatic configuration detection
Upgraded the following dependencies and devDependencies:
Dependencies:
@commitlint/config-conventional: ^18.1.0 -> ^19.2.2
@commitlint/lint: ^18.1.0 -> ^19.2.2
@commitlint/load: ^18.2.0 -> ^19.2.0
DevDependencies:@antfu/eslint-config: ^2.1.0 -> ^2.21.1
@commitlint/cli: ^18.4.3 -> ^19.3.0
@commitlint/types: ^18.1.0 -> ^19.0.3
@types/node: ^20.9.0 -> ^20.14.8
eslint: ^8.54.0 -> ^8.57.0
lint-staged: ^15.1.0 -> ^15.2.7
rimraf: ^5.0.5 -> ^5.0.7
tsup: ^7.2.0 -> ^8.1.0
typescript: ^5.2.2 -> ^5.5.2
vitest: ^0.34.6 -> ^1.6.0BREAKING: Upgraded @commitlint packages to v19 which have switched to pure ESM.
- Custom configuration file names:
What's Changed
- chore(deps): Upgrade dependencies by @kevintyj in #15
- ci(release): Version packages by @github-actions in #16
Full Changelog: v1...v2.0.0
v1.1.0
v1.0.1
v1.0.0
Major Changes (v1.0.0)
aaf60e9- Minify build output using cjs output
Uses a prebuild and post-build step to enforce cjs compilation for nodejs support.
Removes test files from the build bundle.
BREAKING!: previous implementations of @kevintyj/prlint is now deprecated, no support for mjs is provided due to upstream limitation.
This stable release does not include ability to customize commitlint configuration without access to the repository (defaults to: commitlint.config.js)
by @kevintyj