@sentry/craft 0.27.4 → 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 +13 -0
- package/README.md +8 -4
- package/dist/craft +225 -225
- package/dist/craft.map +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
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
|
+
|
|
3
16
|
## 0.27.4
|
|
4
17
|
|
|
5
18
|
### 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
|
|