Socket
Socket
Sign inDemoInstall

@sentry/webpack-plugin

Package Overview
Dependencies
Maintainers
12
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/webpack-plugin - npm Package Compare versions

Comparing version 1.15.1 to 1.16.0

6

CHANGELOG.md

@@ -7,2 +7,8 @@ # Changelog

## v1.16.0
- feat: Add `ignoreMissing` sub-option to `setCommits` option (#281)
- fix: Add missing `dist` option to `SentryCliPluginOptions` type (#285)
- deps: Update sentry-cli to v1.67
## v1.15.1

@@ -9,0 +15,0 @@

@@ -23,2 +23,8 @@ import { Compiler, WebpackPluginInstance } from 'webpack';

release?: string;
/**
* Unique identifier for the distribution, used to further segment your release.
* Usually your build number.
*/
dist?: string;

@@ -170,2 +176,7 @@ /**

auto?: boolean;
/**
* Allow for ignoring missing commits in set-commit.
*/
ignoreMissing?: boolean;
};

@@ -172,0 +183,0 @@

4

package.json

@@ -11,3 +11,3 @@ {

"author": "Sentry",
"version": "1.15.1",
"version": "1.16.0",
"license": "MIT",

@@ -22,3 +22,3 @@ "repository": "git@github.com:getsentry/sentry-webpack-plugin.git",

"dependencies": {
"@sentry/cli": "^1.64.1"
"@sentry/cli": "^1.67.1"
},

@@ -25,0 +25,0 @@ "devDependencies": {

@@ -102,2 +102,3 @@ <p align="center">

| auto | `boolean` | optional | Automatically set `commit` and `previousCommit`. Defaults `commit` to `HEAD` and `previousCommit` as described above. Overrides other options |
| ignoreMissing | `boolean` | optional | When the flag is set and the previous release commit was not found in the repository, will create a release with the default commits count (or the one specified with `--initial-depth`) instead of failing the command. |

@@ -104,0 +105,0 @@ #### <a name="deploy"></a>options.deploy:

@@ -404,3 +404,3 @@ const SentryCli = require('@sentry/cli');

.then(() => {
const { commit, previousCommit, repo, auto } =
const { commit, previousCommit, repo, auto, ignoreMissing } =
this.options.setCommits || this.options;

@@ -414,5 +414,5 @@

auto,
ignoreMissing,
});
}
return undefined;

@@ -419,0 +419,0 @@ })

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc