@sentry/craft 0.27.4 → 0.28.1

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,36 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.28.1
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - fix: Correctly set auth header and content-type for Nexus requests (#352) by @kamilogorek
8
+
9
+ ## 0.28.0
10
+
11
+ ### Various fixes & improvements
12
+
13
+ - feat: Publish maven packages without use of Gradle (#351) by @kamilogorek
14
+
15
+ ## 0.27.6
16
+
17
+ ### Various fixes & improvements
18
+
19
+ - fix: Make sure that gradle directory exists before writing to it (#349) by @kamilogorek
20
+
21
+ ## 0.27.5
22
+
23
+ ### Increase Release Safety and Reliability (ongoing)
24
+
25
+ Work on increasing the release safety and reliability.
26
+
27
+ By: @chadwhitacre (#343)
28
+
29
+ ### Various fixes & improvements
30
+
31
+ - feat: Unattended GPG signing for Maven target (#346) by @kamilogorek
32
+ - Github → GitHub (#347) by @chadwhitacre
33
+
3
34
  ## 0.27.4
4
35
 
5
36
  ### 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,21 +1004,22 @@ 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
 
1012
- | Option | Description |
1013
- | ------------------- | --------------------------------------------------------------------- |
1014
- | `gradleCliPath` | Path to the Gradle CLI. It must be executable by the calling process. |
1015
- | `mavenCliPath` | Path to the Maven CLI. It must be executable by the calling process. |
1016
- | `mavenSettingsPath` | Path to the Maven `settings.xml` file. |
1017
- | `mavenRepoId` | ID of the Maven server in the `settings.xml`. |
1018
- | `mavenRepoUrl` | URL of the Maven repository. |
1019
- | `android` | Android configuration, see below. |
1016
+ | Option | Description |
1017
+ | ------------------- | -------------------------------------------------------------------- |
1018
+ | `mavenCliPath` | Path to the Maven CLI. It must be executable by the calling process. |
1019
+ | `mavenSettingsPath` | Path to the Maven `settings.xml` file. |
1020
+ | `mavenRepoId` | ID of the Maven server in the `settings.xml`. |
1021
+ | `mavenRepoUrl` | URL of the Maven repository. |
1022
+ | `android` | Android configuration, see below. |
1020
1023
 
1021
1024
  If your project isn't related to Android, you don't need this configuration and
1022
1025
  can set the option to `false`. If not, set the following nested elements:
@@ -1030,7 +1033,6 @@ can set the option to `false`. If not, set the following nested elements:
1030
1033
  ```yaml
1031
1034
  targets:
1032
1035
  - name: maven
1033
- gradleCliPath: ./gradlew
1034
1036
  mavenCliPath: scripts/mvnw.cmd
1035
1037
  mavenSettingsPath: scripts/settings.xml
1036
1038
  mavenRepoId: ossrh
@@ -1043,7 +1045,6 @@ targets:
1043
1045
  ```yaml
1044
1046
  targets:
1045
1047
  - name: maven
1046
- gradleCliPath: ./gradlew
1047
1048
  mavenCliPath: scripts/mvnw.cmd
1048
1049
  mavenSettingsPath: scripts/settings.xml
1049
1050
  mavenRepoId: ossrh