@hexonet/semantic-release-whmcs 5.0.0 → 5.0.2

Sign up to get free protection for your applications and to get access to all the features.
package/HISTORY.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [5.0.2](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.1...v5.0.2) (2023-07-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **puppet.js:** headless mode to 'new' ([9fb86c6](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/9fb86c65018776ef1e228d40dd1790bf40950587))
7
+
8
+ ## [5.0.1](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.0...v5.0.1) (2023-01-18)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **npm:** launch new version to correctly cover "engines" listed in package.json ([4bb1443](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/4bb14433b04f56855f89b7f9857498edfc098dea))
14
+
1
15
  # [5.0.0](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v4.0.4...v5.0.0) (2023-01-18)
2
16
 
3
17
 
package/README.md CHANGED
@@ -14,6 +14,8 @@
14
14
  | `verifyConditions` | Verify the presence and the validity of the authentication credentials (set via [environment variables](#environment-variables)) and the product id option configuration. |
15
15
  | `publish` | Publish product/module version to [WHMCS Marketplace](https://marketplace.whmcs.com) including changelog notes. |
16
16
 
17
+ FYI: This module is ESM ready!
18
+
17
19
  ## Resources
18
20
 
19
21
  * [Usage Guide](#usage-guide)
package/lib/puppet.js CHANGED
@@ -23,7 +23,7 @@ export default async (context) => {
23
23
  };
24
24
 
25
25
  const browser = await puppeteer.launch({
26
- headless: cfg.headless === "1",
26
+ headless: cfg.headless === "1" ? "new" : false,
27
27
  defaultViewport: null, // automatically full-sized
28
28
  args: [
29
29
  "--disable-gpu",
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.0",
4
+ "version": "5.0.2",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "publishConfig": {
@@ -13,8 +13,7 @@
13
13
  },
14
14
  "license": "MIT",
15
15
  "engines": {
16
- "node": ">=18",
17
- "npm": "8.11.0"
16
+ "node": ">=18.3.0"
18
17
  },
19
18
  "homepage": "https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs#readme",
20
19
  "repository": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs",
@@ -66,22 +65,25 @@
66
65
  "lint": "prettier --check \"*.{js,json}\" \".github/**/*.{md,yml}\" \"{lib,test}/*.js\"",
67
66
  "lint:fix": "prettier --write \"*.{js,json}\" \".github/**/*.{md,yml}\" \"{lib,test}/*.js\""
68
67
  },
68
+ "overrides": {
69
+ "http-cache-semantics": "^4.1.1"
70
+ },
69
71
  "devDependencies": {
70
72
  "@semantic-release/changelog": "^6.0.1",
71
73
  "@semantic-release/exec": "^6.0.2",
72
74
  "@semantic-release/git": "^10.0.1",
73
- "ava": "5.1.1",
74
- "c8": "^7.12.0",
75
- "prettier": "^2.8.3",
76
- "semantic-release": "^20.0.2",
75
+ "ava": "5.3.1",
76
+ "c8": "^8.0.0",
77
+ "prettier": "^2.8.4",
78
+ "semantic-release": "^21.0.0",
77
79
  "stream-buffers": "^3.0.2"
78
80
  },
79
81
  "dependencies": {
80
- "@semantic-release/error": "^3.0.0",
82
+ "@semantic-release/error": "^4.0.0",
81
83
  "aggregate-error": "^4.0.1",
82
84
  "debug": "^4.3.4",
83
85
  "github-api": "^3.4.0",
84
- "puppeteer": "^19.4.1",
85
- "yargs": "^17.5.1"
86
+ "puppeteer": "^20.0.0",
87
+ "yargs": "^17.7.1"
86
88
  }
87
89
  }