@sentry/craft 0.34.3 → 0.35.0

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,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.35.0
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - chore(maven): Increase nexus polling deadline to 60 mins (#450) by @romtsn
8
+ - feat: Add hex target for publishing elixir packages (#449) by @sl0thentr0py
9
+ - feat(github): Allow to push a tag without a release (#447) by @tonyo
10
+ - cleanup(github): Remove mentions of unused annotatedTag (#446) by @tonyo
11
+ - document the sentry-pypi target (#444) by @asottile-sentry
12
+
3
13
  ## 0.34.3
4
14
 
5
15
  ### Various fixes & improvements
package/README.md CHANGED
@@ -41,6 +41,7 @@ then enforces a specific workflow for managing release branches, changelogs, art
41
41
  - [GitHub (`github`)](#github-github)
42
42
  - [NPM (`npm`)](#npm-npm)
43
43
  - [Python Package Index (`pypi`)](#python-package-index-pypi)
44
+ - [Sentry internal PyPI (`sentry-pypi`)](#sentry-internal-pypi-sentry-pypi)
44
45
  - [Homebrew (`brew`)](#homebrew-brew)
45
46
  - [NuGet (`nuget`)](#nuget-nuget)
46
47
  - [Rust Crates (`crates`)](#rust-crates-crates)
@@ -55,6 +56,7 @@ then enforces a specific workflow for managing release branches, changelogs, art
55
56
  - [Maven central (`maven`)](#maven-central-maven)
56
57
  - [Symbol Collector (`symbol-collector`)](#symbol-collector-symbol-collector)
57
58
  - [pub.dev (`pub-dev`)](#pubdev-pub-dev)
59
+ - [Hex (`hex`)](#hex-hex)
58
60
  - [Integrating Your Project with `craft`](#integrating-your-project-with-craft)
59
61
  - [Pre-release (Version-bumping) Script: Conventions](#pre-release-version-bumping-script-conventions)
60
62
  - [Post-release Script: Conventions](#post-release-script-conventions)
@@ -527,11 +529,11 @@ contains any one of `preview`, `pre`, `rc`, `dev`,`alpha`, `beta`, `unstable`,
527
529
 
528
530
  **Configuration**
529
531
 
530
- | Option | Description |
531
- | ----------------- | -------------------------------------------------------------------------------------------- |
532
- | `tagPrefix` | **optional**. Prefix for new git tags (e.g. "v"). Empty by default. |
533
- | `previewReleases` | **optional**. Automatically detect and create preview releases. `true` by default. |
534
- | `annotatedTag` | **optional**. Creates an annotated tag, set to false for lightweight tag. `true` by default. |
532
+ | Option | Description |
533
+ | ----------------- | ------------------------------------------------------------------------------------------------ |
534
+ | `tagPrefix` | **optional**. Prefix for new git tags (e.g. "v"). Empty by default. |
535
+ | `previewReleases` | **optional**. Automatically detect and create preview releases. `true` by default. |
536
+ | `tagOnly` | **optional**. If set to `true`, only create a tag (without a GitHub release).`false` by default. |
535
537
 
536
538
  **Example:**
537
539
 
@@ -540,7 +542,6 @@ targets:
540
542
  - name: github
541
543
  tagPrefix: v
542
544
  previewReleases: false
543
- annotatedTag: false
544
545
  ```
545
546
 
546
547
  ### NPM (`npm`)
@@ -603,6 +604,34 @@ targets:
603
604
  - name: pypi
604
605
  ```
605
606
 
607
+ ### Sentry internal PyPI (`sentry-pypi`)
608
+
609
+ Creates a GitHub pull request to import the package into a repo set up
610
+ like [getsentry/pypi]
611
+
612
+ [getsentry/pypi]: https://github.com/getsentry/pypi
613
+
614
+ **Environment**
615
+
616
+ | Name | Description |
617
+ | -------------- | ------------------------------------------------------------------ |
618
+ | `GITHUB_TOKEN` | Personal GitHub API token (see https://github.com/settings/tokens) |
619
+
620
+ **Configuration**
621
+
622
+ | Option | Description |
623
+ | ------------------ | ------------------------------------ |
624
+ | `internalPypiRepo` | GitHub repo containing pypi metadata |
625
+
626
+ **Example**
627
+
628
+ ```yaml
629
+ targets:
630
+ - name: pypi
631
+ - name: sentry-pypi
632
+ internalPypiRepo: getsentry/pypi
633
+ ```
634
+
606
635
  ### Homebrew (`brew`)
607
636
 
608
637
  Pushes a new or updated homebrew formula to a brew tap repository. The formula
@@ -1116,6 +1145,30 @@ targets:
1116
1145
  tres:
1117
1146
  ```
1118
1147
 
1148
+ ### Hex (`hex`)
1149
+
1150
+ Pushes a package to the Elixir / Erlang package manager [Hex](https://hex.pm).
1151
+
1152
+ **Environment**
1153
+
1154
+ `mix` (bundled with the `elixir` language) must be installed on the system.
1155
+
1156
+ | Name | Description |
1157
+ | --------- | --------------------------------------------------------- |
1158
+ | `HEX_API_KEY` | API Key obtained from hex.pm account |
1159
+ | `MIX_BIN` | **optional**. Path to "mix" executable. Defaults to `mix` |
1160
+
1161
+ **Configuration**
1162
+
1163
+ _none_
1164
+
1165
+ **Example**
1166
+
1167
+ ```yaml
1168
+ targets:
1169
+ - name: hex
1170
+ ```
1171
+
1119
1172
  ## Integrating Your Project with `craft`
1120
1173
 
1121
1174
  Here is how you can integrate your GitHub project with `craft`: