Skip to content

Releases: getsentry/action-release

3.1.0

06 Mar 14:30
Compare
Choose a tag to compare
  • feat: Add release and release_prefix in favor of version and version_prefix (#273) by @andreiborza

Input parameter version has been deprecated and will be removed in a future version in favor of a newly introduced release parameter.

Input parameter version_prefix has been deprecated and will be removed in a future version in favor of a newly introduced release_prefix parameter.

3.0.0

03 Mar 09:20
Compare
Choose a tag to compare

Version 3.0.0 contains breaking changes:

  • feat(sourcemaps)!: Enable injecting debug ids by default (#272) by @andreiborza

The action now automatically injects Debug IDs into your JavaScript source files and source maps to ensure your stacktraces can be
properly un-minified.

This is a breaking change as it modifies your source files. You can disable this behavior by setting inject: false:

- uses: getsentry/action-release@v3
  with:
    environment: 'production'
    sourcemaps: './dist'
    inject: false

Read more about Artifact Bundles and Debug IDs here.

1.11.0

28 Feb 09:42
Compare
Choose a tag to compare

After receiving user feedback both on runtime and compatibility issues for 1.10.0
the action has been reworked to use a Docker based approach on Linux runners, mimicking
< 1.9.0 versions, while Mac OS and Windows runners will follow the 1.10.0 approach
of installing @sentry/cli in the run step.

1.10.5

12 Feb 17:25
Compare
Choose a tag to compare

Various fixes & improvements

2.0.0

11 Feb 13:05
Compare
Choose a tag to compare

Note

This release contains no changes over v1.10.4 and is just meant to unblock users that have upgraded to v2 before.

We recommend pinning to v1.

Last week we pushed a v2 branch that triggered dependabot which treated it as a release.
This was not meant to be a release, but many users have upgraded to v2.

This release will help unblock users that have upgraded to v2.

Please see: #258

1.10.4

10 Feb 16:28
Compare
Choose a tag to compare

Various fixes & improvements

  • fix(action): Use action/setup-node instead of unofficial volta action (#256) by @andreiborza

1.10.3

10 Feb 09:22
Compare
Choose a tag to compare

Various fixes & improvements

  • fix(ci): Use volta to ensure node and npm are available (#255) by @andreiborza

1.10.2

07 Feb 13:39
Compare
Choose a tag to compare
  • fix(action): Ensure working directory always starts out at repo root (#250)
  • fix(action): Use npm instead of yarn to install sentry-cli (#251)

1.10.1

06 Feb 15:46
Compare
Choose a tag to compare

This release contains changes concerning maintainers of the repo and has no user-facing changes.

v1.10.0

06 Feb 14:54
Compare
Choose a tag to compare
  • feat(action): Support macos and windows runners
    We now publish a composite action that runs on all runners. Actions can now be properly versioned, allowing pinning versions from here on out.