@sentry/webpack-plugin 1.18.6 → 1.18.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -3
- package/README.md +3 -1
- package/package.json +2 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
- "Would I rather be feared or loved? Easy. Both. I want people to be afraid of how much they love me." — Michael Scott
|
|
4
|
+
|
|
5
|
+
## 1.18.9
|
|
6
|
+
|
|
7
|
+
### Various fixes & improvements
|
|
8
|
+
|
|
9
|
+
- ref: Update sentry-cli and refresh GH actions (#368) by @kamilogorek
|
|
10
|
+
- docs: Update dryRun documentation to reflect auto-configuration. (#366) by @fiveable-jferg
|
|
11
|
+
- chore: update @sentry/cli to latest major version (#363) by @sawilde
|
|
12
|
+
|
|
13
|
+
## 1.18.8
|
|
14
|
+
|
|
15
|
+
### Various fixes & improvements
|
|
4
16
|
|
|
5
|
-
-
|
|
6
|
-
|
|
17
|
+
- deps: Bump sentry-cli to 1.73.0 (#356) by @kamilogorek
|
|
18
|
+
|
|
19
|
+
## 1.18.7
|
|
20
|
+
|
|
21
|
+
### Various fixes & improvements
|
|
22
|
+
|
|
23
|
+
- deps: Remove webpack from peerDep and move info about ver to readme (#354) by @kamilogorek
|
|
24
|
+
- misc: Correct 1.18.6 changelog (#353) by @kamilogorek
|
|
25
|
+
|
|
26
|
+
## 1.18.6
|
|
27
|
+
|
|
28
|
+
- ci: Change changelogPolicy to auto for Craft releases (#351)
|
|
29
|
+
- deps: Mark Webpack as optional peerDependency via peerDependenciesMeta ( #350)
|
|
7
30
|
|
|
8
31
|
## v1.18.5
|
|
9
32
|
|
package/README.md
CHANGED
|
@@ -20,6 +20,8 @@ A webpack plugin acting as an interface to
|
|
|
20
20
|
|
|
21
21
|
### Installation
|
|
22
22
|
|
|
23
|
+
`@sentry/webpack-plugin` requires at least `webpack@4.41.31` or any `webpack@5` version to be installed.
|
|
24
|
+
|
|
23
25
|
Using npm:
|
|
24
26
|
|
|
25
27
|
```bash
|
|
@@ -82,7 +84,7 @@ Also, check the [example](example) directory.
|
|
|
82
84
|
| sourceMapReference | `boolean` | optional | Determines whether sentry-cli should attempt to link minified files with their corresponding maps. By default, it will match files and maps based on name, and add a `Sourcemap` header to each minified file for which it finds a map. Can be disabled if all minified files contain `sourceMappingURL`. Defaults to `true`. |
|
|
83
85
|
| rewrite | `boolean` | optional | Enables rewriting of matching source maps so that indexed maps are flattened and missing sources are inlined if possible. Defaults to `true` |
|
|
84
86
|
| finalize | `boolean` | optional | Determines whether Sentry release record should be automatically finalized (`date_released` timestamp added) after artifact upload. Defaults to `true` |
|
|
85
|
-
| dryRun | `boolean` | optional | Attempts a dry run (useful for dev environments). Defaults to `false
|
|
87
|
+
| dryRun | `boolean` | optional | Attempts a dry run (useful for dev environments). Defaults to `false`, but may be automatically set to true in development environments by some framework integrations (Next.JS, possibly others). |
|
|
86
88
|
| debug | `boolean` | optional | Print useful debug information. Defaults to `false`. |
|
|
87
89
|
| silent | `boolean` | optional | Suppresses all logs (useful for `--json` option). Defaults to `false`. |
|
|
88
90
|
| cleanArtifacts | `boolean` | optional | Remove all the artifacts in the release before the upload. Defaults to `false`. |
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"source-map"
|
|
9
9
|
],
|
|
10
10
|
"author": "Sentry",
|
|
11
|
-
"version": "1.18.
|
|
11
|
+
"version": "1.18.9",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"repository": "git@github.com:getsentry/sentry-webpack-plugin.git",
|
|
14
14
|
"homepage": "https://github.com/getsentry/sentry-webpack-plugin",
|
|
@@ -18,15 +18,7 @@
|
|
|
18
18
|
"node": ">= 8"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@sentry/cli": "^1.
|
|
22
|
-
},
|
|
23
|
-
"peerDependencies": {
|
|
24
|
-
"webpack": "^4.41.31 || ^5.0.0"
|
|
25
|
-
},
|
|
26
|
-
"peerDependenciesMeta": {
|
|
27
|
-
"webpack": {
|
|
28
|
-
"optional": true
|
|
29
|
-
}
|
|
21
|
+
"@sentry/cli": "^1.74.4"
|
|
30
22
|
},
|
|
31
23
|
"devDependencies": {
|
|
32
24
|
"@types/webpack": "^4.41.31 || ^5.0.0",
|