diff --git a/CHANGELOG.md b/CHANGELOG.md index b2e97afd9c..ffc61ffaeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ "You know what they say. Fool me once, strike one, but fool me twice... strike three." — Michael Scott +## 2.16.0 + +### Various fixes & improvements + +- ref(crons): Prefer DSN based auth (#1545) by @kamilogorek +- fix(inject): Improve fixup_js_file (#1533) by @loewenheim +- feat(inject): Handle relative and absoule sourcemap URLs (#1530) by @loewenheim +- ref(monitors): Prefer slugs over guids (#1540) by @evanpurkhiser +- feat(auth): Support DSN auth for the API client (#1536) by @evanpurkhiser +- ref(crons): monitors command is not legacy atm (#1538) by @evanpurkhiser +- fix(help): Consistent wording for API keys (#1539) by @evanpurkhiser + ## 2.15.2 ### Various fixes and improvements diff --git a/Cargo.lock b/Cargo.lock index cf787fbb78..8c253a01ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2195,7 +2195,7 @@ dependencies = [ [[package]] name = "sentry-cli" -version = "2.15.2" +version = "2.16.0" dependencies = [ "anyhow", "anylog", diff --git a/Cargo.toml b/Cargo.toml index 7050e16dae..99d89345e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Armin Ronacher "] build = "build.rs" name = "sentry-cli" -version = "2.15.2" +version = "2.16.0" edition = "2021" rust-version = "1.65" diff --git a/package.json b/package.json index 0697bbc993..fde6e6bd18 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sentry/cli", - "version": "2.15.2", + "version": "2.16.0", "description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/", "repository": "git://github.com/getsentry/sentry-cli.git", "homepage": "https://docs.sentry.io/hosted/learn/cli/",