@hexonet/semantic-release-whmcs 5.0.20 → 5.0.22
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/.releaserc.json +1 -6
- package/HISTORY.md +14 -0
- package/package.json +5 -6
- package/gulpfile.cjs +0 -1
package/.releaserc.json
CHANGED
|
@@ -8,12 +8,6 @@
|
|
|
8
8
|
"changelogFile": "HISTORY.md"
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
|
-
[
|
|
12
|
-
"@semantic-release/exec",
|
|
13
|
-
{
|
|
14
|
-
"successCmd": "gulp -f gulpfile.cjs publishNotification --update \"${nextRelease.version}\" --type \"${nextRelease.type}\" --notes \"${encodeURIComponent(nextRelease.notes)}\""
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
11
|
"@semantic-release/npm",
|
|
18
12
|
[
|
|
19
13
|
"@semantic-release/git",
|
|
@@ -22,6 +16,7 @@
|
|
|
22
16
|
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
23
17
|
}
|
|
24
18
|
],
|
|
19
|
+
"semantic-release-teams-notify-plugin",
|
|
25
20
|
"@semantic-release/github"
|
|
26
21
|
]
|
|
27
22
|
}
|
package/HISTORY.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [5.0.22](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.21...v5.0.22) (2024-06-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump ws and puppeteer ([0b89956](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/0b899562b437157d1250d3eba4dafc5a943edd03))
|
|
7
|
+
|
|
8
|
+
## [5.0.21](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.20...v5.0.21) (2024-06-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** bump debug from 4.3.4 to 4.3.5 ([0f35d82](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/0f35d827004a5e18481ab29e637613800cd7ef0d))
|
|
14
|
+
|
|
1
15
|
## [5.0.20](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.19...v5.0.20) (2024-04-05)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hexonet/semantic-release-whmcs",
|
|
3
3
|
"description": "`semantic-release` plugin for auto-publishing on WHMCS marketplace",
|
|
4
|
-
"version": "5.0.
|
|
4
|
+
"version": "5.0.22",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"publishConfig": {
|
|
@@ -75,12 +75,11 @@
|
|
|
75
75
|
"@semantic-release/changelog": "^6.0.3",
|
|
76
76
|
"@semantic-release/exec": "^6.0.3",
|
|
77
77
|
"@semantic-release/git": "^10.0.1",
|
|
78
|
-
"ava": "6.1.
|
|
79
|
-
"c8": "^
|
|
80
|
-
"gulp": "^5.0.0",
|
|
78
|
+
"ava": "6.1.3",
|
|
79
|
+
"c8": "^10.0.0",
|
|
81
80
|
"prettier": "^3.0.0",
|
|
82
|
-
"
|
|
83
|
-
"semantic-release": "
|
|
81
|
+
"semantic-release": "^24.0.0",
|
|
82
|
+
"semantic-release-teams-notify-plugin": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-notify-plugin",
|
|
84
83
|
"stream-buffers": "^3.0.2"
|
|
85
84
|
},
|
|
86
85
|
"dependencies": {
|
package/gulpfile.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
exports.publishNotification = require('rtldev-middleware-gulp-release-notification-plugin');
|