@sentry/craft 0.27.2 → 0.27.6

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 CHANGED
@@ -1,5 +1,39 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.27.6
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - fix: Make sure that gradle directory exists before writing to it (#349) by @kamilogorek
8
+
9
+ ## 0.27.5
10
+
11
+ ### Increase Release Safety and Reliability (ongoing)
12
+
13
+ Work on increasing the release safety and reliability.
14
+
15
+ By: @chadwhitacre (#343)
16
+
17
+ ### Various fixes & improvements
18
+
19
+ - feat: Unattended GPG signing for Maven target (#346) by @kamilogorek
20
+ - Github → GitHub (#347) by @chadwhitacre
21
+
22
+ ## 0.27.4
23
+
24
+ ### Various fixes & improvements
25
+
26
+ - fix(crates): Skip path-only dev-dependencies in dep cycle checking (#341) by @Swatinem
27
+ - Limit the number of leftovers listed (#335) by @chadwhitacre
28
+
29
+ ## 0.27.3
30
+
31
+ ### Various fixes & improvements
32
+
33
+ - fix: Remove GitHub asset checksum (#333) by @rhcarvalho
34
+ - misc: Update error message to clarify what size refers to what (#332) by @rhcarvalho
35
+ - build: Use source map to produce debuggable stack traces (#326) by @rhcarvalho
36
+
3
37
  ## 0.27.2
4
38
 
5
39
  ### Increase Release Safety and Reliability (ongoing)
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 | Description |
1006
- | ---------------- | -------------------------------- |
1007
- | `OSSRH_USERNAME` | Username of Sonatype repository. |
1008
- | `OSSRH_PASSWORD` | Password of Sonatype repository. |
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