Socket
Socket
Sign inDemoInstall

@sentry/webpack-plugin

Package Overview
Dependencies
Maintainers
13
Versions
100
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.10.0 to 1.11.0

10

CHANGELOG.md
# Changelog
## v1.11.0
**This release sets `node.engine: >=8` which makes it incompatible with Node v6**
If you need to support Node v6, please pin your dependency to `1.10.0`
and use selective version resolution: https://classic.yarnpkg.com/en/docs/selective-version-resolutions/
- meta: Bump sentry-cli to `1.52.2`
- meta: Drop support for `node v6` due to new `sentry-cli` requiring `node >=8`
- chore: Fix setCommits types (#169)
## v1.10.0

@@ -4,0 +14,0 @@

41

index.d.ts

@@ -49,4 +49,4 @@ import { Plugin, Compiler } from 'webpack';

* This sets an URL prefix at the beginning of all files.
* This defaults to ~/ but you might want to set this to the full URL.
* This is also useful if your files are stored in a sub folder. eg: url-prefix '~/static/js'.
* This defaults to `~/` but you might want to set this to the full URL.
* This is also useful if your files are stored in a sub folder. eg: url-prefix `~/static/js`.
*/

@@ -119,22 +119,27 @@ urlPrefix?: string;

/**
* The current (last) commit in the release.
* Adds commits to sentry
*/
commit?: string;
setCommits?: {
/**
* The full repo name as defined in Sentry.
*/
repo: string;
/**
* The commit before the beginning of this release (in other words, the last commit of the previous release).
* If omitted, this will default to the last commit of the previous release in Sentry.
* If there was no previous release, the last 10 commits will be used.
*/
previousCommit?: string;
/**
* The current (last) commit in the release.
*/
commit?: string;
/**
* The full repo name as defined in Sentry.
*/
repo?: string;
/**
* The commit before the beginning of this release (in other words, the last commit of the previous release).
* If omitted, this will default to the last commit of the previous release in Sentry.
* If there was no previous release, the last 10 commits will be used.
*/
previousCommit?: string;
/**
* Automatically choose the associated commit (uses the current commit). Overrides other set-commit options.
*/
auto?: boolean;
/**
* Automatically choose the associated commit (uses the current commit). Overrides other setCommit options.
*/
auto?: boolean;
};
}

@@ -141,0 +146,0 @@

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

"author": "Sentry",
"version": "1.10.0",
"version": "1.11.0",
"license": "MIT",

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

"engines": {
"node": ">= 6.0.0"
"node": ">= 8"
},
"dependencies": {
"@sentry/cli": "^1.49.0"
"@sentry/cli": "^1.52.2"
},

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

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

throw new Error(
`Unabled to determine version. Make sure to include \`release\` option or use the environment that supports auto-detection https://docs.sentry.io/cli/releases/#creating-releases`
`Unable to determine version. Make sure to include \`release\` option or use the environment that supports auto-detection https://docs.sentry.io/cli/releases/#creating-releases`
);

@@ -328,0 +328,0 @@ }

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc