danger 14.0.4 → 14.0.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 CHANGED
@@ -18,6 +18,10 @@
18
18
 
19
19
  <!-- Your comment above this -->
20
20
 
21
+ ## 14.0.0-5
22
+
23
+ Release faff as I migrate to OIDC deploys for danger - orta
24
+
21
25
  ## 14.0.0
22
26
 
23
27
  Danger now installs undici 7 by default. undici is what Danger uses to talk to GitHub, GitLab and Bitbucket, and version
package/README.md CHANGED
@@ -96,12 +96,16 @@ Check the issues, I try and keep my short term perspective there. Long term is i
96
96
 
97
97
  ### Releasing a new version of Danger
98
98
 
99
- Following [this commit](https://github.com/danger/danger-js/commit/a26ac3b3bd4f002acd37f6a363c8e74c9d5039ab) as a model:
99
+ Releases are triggered by pushing a version tag. Tag creation on this repo is restricted by the "Release tags"
100
+ repository ruleset, so the set of people who can ship a release is that ruleset's bypass list.
100
101
 
101
102
  - Checkout the `main` branch. Ensure your working tree is clean, and make sure you have the latest changes by running
102
103
  `git pull; yarn`.
103
- - Publish - `npm run release -- patch --npm.otp=<code>`.
104
- - This will trigger a CI run which updates homebrew for the native builds
104
+ - Bump and tag - `npm run release -- patch`. This bumps `package.json`, commits, tags and pushes. It no longer publishes
105
+ to npm from your machine, so there's no OTP to enter.
106
+ - Pushing the tag runs [`npm_publish.yml`](.github/workflows/npm_publish.yml), which publishes to npm using npm's
107
+ trusted publishing (there is no `NPM_TOKEN` secret) and then kicks off `release.yml` for the macOS native builds and
108
+ the homebrew tap.
105
109
 
106
110
  :ship:
107
111
 
@@ -119,4 +123,3 @@ to stay on top of Danger without all the emails from GitHub.
119
123
  >
120
124
  > Contributors subscribe to the [Contributor Code of Conduct](http://contributor-covenant.org/version/1/3/0/) based on
121
125
  > the [Contributor Covenant](http://contributor-covenant.org) version 1.3.0.
122
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danger",
3
- "version": "14.0.4",
3
+ "version": "14.0.5",
4
4
  "description": "Unit tests for Team Culture",
5
5
  "main": "distribution/danger.js",
6
6
  "typings": "distribution/danger.d.ts",