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: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [4.0.0](https://github.com/OctopusDeploy/create-release-action/compare/v3.3.0...v4.0.0) (2025-12-09)


### ⚠ BREAKING CHANGES

* Update node to node 24 ([#606](https://github.com/OctopusDeploy/create-release-action/issues/606))

### Features

* Document use of custom fields ([#591](https://github.com/OctopusDeploy/create-release-action/issues/591)) ([c3b12c4](https://github.com/OctopusDeploy/create-release-action/commit/c3b12c4c0df42b378ab47b2c007bbc9dd85dc527))
* Update node to node 24 ([#606](https://github.com/OctopusDeploy/create-release-action/issues/606)) ([9201b12](https://github.com/OctopusDeploy/create-release-action/commit/9201b12c4dcfb0fa8542fff9db4fd108a56b679c))


### Bug Fixes

* **deps:** update dependency tmp to v0.2.4 [security] ([#576](https://github.com/OctopusDeploy/create-release-action/issues/576)) ([02c0ac0](https://github.com/OctopusDeploy/create-release-action/commit/02c0ac01aaa929e46d2d3df9e165e917441b628a))
* **deps:** update dependency tmp to v0.2.5 ([#579](https://github.com/OctopusDeploy/create-release-action/issues/579)) ([4537c5c](https://github.com/OctopusDeploy/create-release-action/commit/4537c5c674267ad979a5de146b112aea614ab1cf))

## [3.3.0](https://github.com/OctopusDeploy/create-release-action/compare/v3.2.4...v3.3.0) (2025-06-30)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ env:
steps:
# ...
- name: Create a release in Octopus Deploy 🐙
uses: OctopusDeploy/create-release-action@v3
uses: OctopusDeploy/create-release-action@v4
with:
project: 'MyProject'
```
Expand All @@ -51,7 +51,7 @@ env:
steps:
# ...
- name: Create a release in Octopus Deploy 🐙
uses: OctopusDeploy/create-release-action@v3
uses: OctopusDeploy/create-release-action@v4
with:
project: 'MyProject'
git_ref: ${{ (github.ref_type == 'tag' && github.event.repository.default_branch ) || (github.head_ref || github.ref) }}
Expand All @@ -68,7 +68,7 @@ env:
steps:
# ...
- name: Create a release in Octopus Deploy 🐙
uses: OctopusDeploy/create-release-action@v3
uses: OctopusDeploy/create-release-action@v4
with:
project: 'MyProject'
packages: |
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@
"test:unit": "jest --ci --reporters=default --reporters=jest-junit --testPathPattern=__tests__/unit",
"test:integration": "jest --ci --reporters=default --reporters=jest-junit --testPathPattern=__tests__/integration"
},
"version": "3.3.0"
"version": "4.0.0"
}