@hexonet/semantic-release-whmcs 5.0.58 → 5.0.60
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/HISTORY.md +14 -0
- package/README.md +3 -3
- package/lib/definitions/errors.js +1 -1
- package/package.json +1 -1
package/HISTORY.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
## [5.0.60](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.59...v5.0.60) (2025-04-02)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump puppeteer from 24.4.0 to 24.5.0 ([18ac388](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/18ac3887bef982fe6f4db052f1414cfd71ca6830))
|
7
|
+
|
8
|
+
## [5.0.59](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.58...v5.0.59) (2025-03-18)
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* **error.js:** EWHMCSNOCREDENTIALS details env var names ([daf71d3](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/daf71d37085917abb61916dfbdcc37483340e82a))
|
14
|
+
|
1
15
|
## [5.0.58](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.57...v5.0.58) (2025-03-10)
|
2
16
|
|
3
17
|
|
package/README.md
CHANGED
@@ -32,7 +32,7 @@ FYI: This module is ESM ready!
|
|
32
32
|
### Install
|
33
33
|
|
34
34
|
```bash
|
35
|
-
> npm i semantic-release-whmcs -D
|
35
|
+
> npm i @hexonet/semantic-release-whmcs -D
|
36
36
|
```
|
37
37
|
|
38
38
|
### Configuration
|
@@ -44,7 +44,7 @@ The plugin can be loaded in the [**semantic-release** configuration file](https:
|
|
44
44
|
"plugins": [
|
45
45
|
"@semantic-release/commit-analyzer",
|
46
46
|
"@semantic-release/release-notes-generator",
|
47
|
-
"semantic-release-whmcs"
|
47
|
+
"@hexonet/semantic-release-whmcs"
|
48
48
|
]
|
49
49
|
}
|
50
50
|
```
|
@@ -55,7 +55,7 @@ With this example product/module versions will be published to the [WHMCS Market
|
|
55
55
|
|
56
56
|
The WHMCS Marketplace authentication configuration is **required** and can be set via [environment variables](#environment-variables).
|
57
57
|
|
58
|
-
If you don't have
|
58
|
+
If you don't have a WHMCS Marketplace account yet, please create one. The credentials have to be made available in your CI environment via the `WHMCSMP_LOGIN` and `WHMCSMP_PASSWORD` environment variables. The account must have access to the product(s) you want to publish new versions for.
|
59
59
|
|
60
60
|
### WHMCS Marketplace Product ID
|
61
61
|
|
@@ -9,7 +9,7 @@ export function EWHMCSNOCREDENTIALS() {
|
|
9
9
|
return {
|
10
10
|
message: "No WHMCS Marketplace credentials specified.",
|
11
11
|
details:
|
12
|
-
"WHMCS Marketplace
|
12
|
+
"WHMCS Marketplace credentials have to be set in the `WHMCSMP_LOGIN` and `WHMCSMP_PASSWORD` environment variables in your CI environment.",
|
13
13
|
};
|
14
14
|
}
|
15
15
|
|
package/package.json
CHANGED