@sentry/craft 0.27.1 → 0.27.5
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 +40 -0
- package/README.md +8 -4
- package/dist/craft +227 -226
- package/dist/craft.map +7 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.27.5
|
|
4
|
+
|
|
5
|
+
### Increase Release Safety and Reliability (ongoing)
|
|
6
|
+
|
|
7
|
+
Work on increasing the release safety and reliability.
|
|
8
|
+
|
|
9
|
+
By: @chadwhitacre (#343)
|
|
10
|
+
|
|
11
|
+
### Various fixes & improvements
|
|
12
|
+
|
|
13
|
+
- feat: Unattended GPG signing for Maven target (#346) by @kamilogorek
|
|
14
|
+
- Github → GitHub (#347) by @chadwhitacre
|
|
15
|
+
|
|
16
|
+
## 0.27.4
|
|
17
|
+
|
|
18
|
+
### Various fixes & improvements
|
|
19
|
+
|
|
20
|
+
- fix(crates): Skip path-only dev-dependencies in dep cycle checking (#341) by @Swatinem
|
|
21
|
+
- Limit the number of leftovers listed (#335) by @chadwhitacre
|
|
22
|
+
|
|
23
|
+
## 0.27.3
|
|
24
|
+
|
|
25
|
+
### Various fixes & improvements
|
|
26
|
+
|
|
27
|
+
- fix: Remove GitHub asset checksum (#333) by @rhcarvalho
|
|
28
|
+
- misc: Update error message to clarify what size refers to what (#332) by @rhcarvalho
|
|
29
|
+
- build: Use source map to produce debuggable stack traces (#326) by @rhcarvalho
|
|
30
|
+
|
|
31
|
+
## 0.27.2
|
|
32
|
+
|
|
33
|
+
### Increase Release Safety and Reliability (ongoing)
|
|
34
|
+
|
|
35
|
+
Work on increasing the release safety and reliability.
|
|
36
|
+
|
|
37
|
+
By: @iker-barriocanal (#328)
|
|
38
|
+
|
|
39
|
+
### Various fixes & improvements
|
|
40
|
+
|
|
41
|
+
- docs: Fix typos and cleanup some documentation (#325) by @rhcarvalho
|
|
42
|
+
|
|
3
43
|
## 0.27.1
|
|
4
44
|
|
|
5
45
|
### Various fixes & improvements
|
package/README.md
CHANGED
|
@@ -16,6 +16,8 @@ then enforces a specific workflow for managing release branches, changelogs, art
|
|
|
16
16
|
## Table of Contents <!-- omit in toc -->
|
|
17
17
|
|
|
18
18
|
- [Installation](#installation)
|
|
19
|
+
- [Binary](#binary)
|
|
20
|
+
- [npm (not recommended)](#npm-not-recommended)
|
|
19
21
|
- [Usage](#usage)
|
|
20
22
|
- [Caveats](#caveats)
|
|
21
23
|
- [Global Configuration](#global-configuration)
|
|
@@ -1002,10 +1004,12 @@ Note: in order to see the output of the commands, set the [logging level](#loggi
|
|
|
1002
1004
|
|
|
1003
1005
|
**Environment**
|
|
1004
1006
|
|
|
1005
|
-
| Name
|
|
1006
|
-
|
|
|
1007
|
-
| `OSSRH_USERNAME`
|
|
1008
|
-
| `OSSRH_PASSWORD`
|
|
1007
|
+
| Name | Description |
|
|
1008
|
+
| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
1009
|
+
| `OSSRH_USERNAME` | Username of Sonatype repository. |
|
|
1010
|
+
| `OSSRH_PASSWORD` | Password of Sonatype repository. |
|
|
1011
|
+
| `GPG_PASSPHRASE` | Passphrase for your default GPG Private Key. |
|
|
1012
|
+
| `GPG_PRIVATE_KEY` | **optional** GPG Private Key generated via `gpg --armor --export-secret-keys YOUR_ID`. If not provided, default key from your machine will be used. |
|
|
1009
1013
|
|
|
1010
1014
|
**Configuration**
|
|
1011
1015
|
|