diff --git a/CHANGELOG.md b/CHANGELOG.md index 2979f5f3..0c07d764 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## [v1.10.0] - 2024-05-05 + +[Release notes](https://github.com/betahuhn/deploy-to-vercel-action/releases/tag/v1.10.0) · [Compare](https://github.com/betahuhn/deploy-to-vercel-action/compare/v1.9.12...v1.10.0) · [Tag](https://github.com/betahuhn/deploy-to-vercel-action/tree/v1.10.0) · Archive ([zip](https://github.com/betahuhn/deploy-to-vercel-action/archive/v1.10.0.zip) · [tar.gz](https://github.com/betahuhn/deploy-to-vercel-action/archive/v1.10.0.tar.gz)) + +### New features + +- [`39ad2e1`](https://github.com/betahuhn/deploy-to-vercel-action/commit/39ad2e1) Add prebuilt option (#302) +(Issues: [`#302`](https://github.com/betahuhn/deploy-to-vercel-action/issues/302)) + +### Bug fixes + +- [`643bc80`](https://github.com/betahuhn/deploy-to-vercel-action/commit/643bc80) Make repo, user and branch url safe (#289) +(Issues: [`#289`](https://github.com/betahuhn/deploy-to-vercel-action/issues/289))- [`9c29c6f`](https://github.com/betahuhn/deploy-to-vercel-action/commit/9c29c6f) Fix prevent trimming attempts on undefined value (#389) +(Issues: [`#389`](https://github.com/betahuhn/deploy-to-vercel-action/issues/389)) + +### Security issues + +- [`e49bbe3`](https://github.com/betahuhn/deploy-to-vercel-action/commit/e49bbe3) Update action to use Node 20 (#379) +(Issues: [`#379`](https://github.com/betahuhn/deploy-to-vercel-action/issues/379) [`#390`](https://github.com/betahuhn/deploy-to-vercel-action/issues/390)) + ## [v1.9.12] - 2023-01-30 [Release notes](https://github.com/betahuhn/deploy-to-vercel-action/releases/tag/v1.9.12) · [Compare](https://github.com/betahuhn/deploy-to-vercel-action/compare/v1.9.11...v1.9.12) · [Tag](https://github.com/betahuhn/deploy-to-vercel-action/tree/v1.9.12) · Archive ([zip](https://github.com/betahuhn/deploy-to-vercel-action/archive/v1.9.12.zip) · [tar.gz](https://github.com/betahuhn/deploy-to-vercel-action/archive/v1.9.12.tar.gz)) diff --git a/dist/index.js b/dist/index.js index f0ced4e4..5f111c02 100644 --- a/dist/index.js +++ b/dist/index.js @@ -16041,7 +16041,6 @@ core.debug( module.exports = context - /***/ }), /***/ 8396: diff --git a/package-lock.json b/package-lock.json index 81e2f859..3606bb01 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "deploy-to-vercel-action", - "version": "1.9.12", + "version": "1.10.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "deploy-to-vercel-action", - "version": "1.9.12", + "version": "1.10.0", "license": "MIT", "dependencies": { "@actions/core": "^1.10.0", diff --git a/package.json b/package.json index 2b54293e..6ce24cf7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "deploy-to-vercel-action", - "version": "1.9.12", + "version": "1.10.0", "description": "Deploy your project to Vercel using GitHub Actions. Supports PR previews and GitHub deployments.", "main": "dist/index.js", "scripts": {