release-it 15.1.0 → 15.1.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/test/github.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-it",
3
- "version": "15.1.0",
3
+ "version": "15.1.1",
4
4
  "description": "Generic CLI tool to automate versioning and package publishing related tasks.",
5
5
  "keywords": [
6
6
  "build",
@@ -74,13 +74,13 @@
74
74
  "mime-types": "2.1.35",
75
75
  "new-github-release-url": "2.0.0",
76
76
  "open": "8.4.0",
77
- "ora": "6.1.0",
77
+ "ora": "6.1.2",
78
78
  "os-name": "5.0.1",
79
79
  "promise.allsettled": "1.0.5",
80
80
  "proxy-agent": "5.0.0",
81
81
  "semver": "7.3.7",
82
82
  "shelljs": "0.8.5",
83
- "update-notifier": "5.1.0",
83
+ "update-notifier": "6.0.2",
84
84
  "url-join": "5.0.0",
85
85
  "wildcard-match": "5.1.2",
86
86
  "yargs-parser": "21.0.1"
@@ -92,7 +92,7 @@
92
92
  "eslint-config-prettier": "8.5.0",
93
93
  "eslint-plugin-ava": "13.2.0",
94
94
  "eslint-plugin-import": "2.26.0",
95
- "eslint-plugin-prettier": "4.0.0",
95
+ "eslint-plugin-prettier": "4.1.0",
96
96
  "mock-fs": "5.1.2",
97
97
  "mock-stdio": "1.0.3",
98
98
  "nock": "13.2.7",
package/test/github.js CHANGED
@@ -308,7 +308,7 @@ test.serial('should skip authentication and collaborator checks when running on
308
308
 
309
309
  t.is(authStub.callCount, 0);
310
310
  t.is(collaboratorStub.callCount, 0);
311
- t.is(github.getContext('username'), 'webpro');
311
+ t.is(github.getContext('username'), process.env.GITHUB_ACTOR);
312
312
 
313
313
  authStub.restore();
314
314
  collaboratorStub.restore();