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.12.0 to 1.12.1

5

CHANGELOG.md
# Changelog
## v1.12.1
- fix(deploy): change deploy to newDeploy in mocked CLI object (#206)
- fix(types): add deploy configuration to type definitions (#208)
## v1.12.0

@@ -4,0 +9,0 @@

@@ -145,2 +145,37 @@ import { Plugin, Compiler } from 'webpack';

};
/**
* Creates a new release deployment
*/
deploy?: {
/**
* Environment for this release. Values that make sense here would be `production` or `staging`
*/
env: string;
/**
* Unix timestamp when the deployment started
*/
started?: number;
/**
* Unix timestamp when the deployment finished
*/
finished?: number;
/**
* Deployment duration in seconds. This can be specified alternatively to `started` and `finished`
*/
time?: number;
/**
* Human readable name for this deployment
*/
name?: string;
/**
* URL that points to the deployment
*/
url?: string;
};
}

@@ -147,0 +182,0 @@

2

package.json

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

"author": "Sentry",
"version": "1.12.0",
"version": "1.12.1",
"license": "MIT",

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

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

},
deploy: (release, config) => {
newDeploy: (release, config) => {
this.outputDebug('Calling deploy with:\n', config);

@@ -160,0 +160,0 @@ return Promise.resolve(release, config);

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