pinejs-client-core 6.10.1 → 6.10.2
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/.versionbot/CHANGELOG.yml +19 -1
- package/CHANGELOG.md +6 -0
- package/package.json +8 -8
- package/.circleci/config.yml +0 -34
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Update dependencies
|
|
3
|
+
hash: edc7575ac0976037506deb076d034e7cf08ce5bb
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
Change-type: patch
|
|
7
|
+
change-type: patch
|
|
8
|
+
author: Pagan Gazzard
|
|
9
|
+
- subject: Remove circleci
|
|
10
|
+
hash: 59c5a36292a80149b305d83a4d22b4d2dbe3001d
|
|
11
|
+
body: ""
|
|
12
|
+
footer:
|
|
13
|
+
Change-type: patch
|
|
14
|
+
change-type: patch
|
|
15
|
+
author: Pagan Gazzard
|
|
16
|
+
version: 6.10.2
|
|
17
|
+
title: "'Remove circleci/update deps'"
|
|
18
|
+
date: 2022-04-08T13:26:06.315Z
|
|
1
19
|
- commits:
|
|
2
20
|
- subject: Do not await the _request() result to allow enhanced promises downstream
|
|
3
21
|
hash: a209138f928809869d68e05cdcea4c2bf0d1fac1
|
|
@@ -10,7 +28,7 @@
|
|
|
10
28
|
author: Thodoris Greasidis
|
|
11
29
|
version: 6.10.1
|
|
12
30
|
title: "'Avoid modifying the resulting promise when retries are not used'"
|
|
13
|
-
date: 2022-02-08T23:
|
|
31
|
+
date: 2022-02-08T23:33:07.778Z
|
|
14
32
|
- commits:
|
|
15
33
|
- subject: Add optional retry logic to client
|
|
16
34
|
hash: d5496ebe73a0db28ac1c123575e80c9d25367d48
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
# v6.10.2
|
|
8
|
+
## (2022-04-08)
|
|
9
|
+
|
|
10
|
+
* Update dependencies [Pagan Gazzard]
|
|
11
|
+
* Remove circleci [Pagan Gazzard]
|
|
12
|
+
|
|
7
13
|
# v6.10.1
|
|
8
14
|
## (2022-02-08)
|
|
9
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pinejs-client-core",
|
|
3
|
-
"version": "6.10.
|
|
3
|
+
"version": "6.10.2",
|
|
4
4
|
"description": "This module provides the core tools to enable easier interaction with the pinejs API.",
|
|
5
5
|
"browser": "es2015",
|
|
6
6
|
"main": "index.js",
|
|
@@ -28,18 +28,18 @@
|
|
|
28
28
|
},
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@balena/es-version": "^1.0.
|
|
31
|
+
"@balena/es-version": "^1.0.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@balena/lint": "^5.4.
|
|
35
|
-
"chai": "^4.3.
|
|
34
|
+
"@balena/lint": "^5.4.2",
|
|
35
|
+
"chai": "^4.3.6",
|
|
36
36
|
"coffee-script": "~1.12.7",
|
|
37
37
|
"husky": "^4.3.8",
|
|
38
|
-
"lint-staged": "^
|
|
38
|
+
"lint-staged": "^12.3.7",
|
|
39
39
|
"lodash": "^4.17.21",
|
|
40
|
-
"mocha": "^
|
|
40
|
+
"mocha": "^9.2.2",
|
|
41
41
|
"require-npm4-to-publish": "^1.0.0",
|
|
42
|
-
"typescript": "^4.
|
|
42
|
+
"typescript": "^4.6.3"
|
|
43
43
|
},
|
|
44
44
|
"husky": {
|
|
45
45
|
"hooks": {
|
|
@@ -53,6 +53,6 @@
|
|
|
53
53
|
"_": "test/*.coffee"
|
|
54
54
|
},
|
|
55
55
|
"versionist": {
|
|
56
|
-
"publishedAt": "2022-
|
|
56
|
+
"publishedAt": "2022-04-08T13:26:06.504Z"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/.circleci/config.yml
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
version: 2
|
|
2
|
-
|
|
3
|
-
buildSteps: &buildSteps
|
|
4
|
-
- checkout
|
|
5
|
-
- run:
|
|
6
|
-
name: Install
|
|
7
|
-
command: npm install --loglevel warn
|
|
8
|
-
- run:
|
|
9
|
-
name: Test
|
|
10
|
-
command: npm test --loglevel warn
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
node-10:
|
|
14
|
-
docker:
|
|
15
|
-
- image: circleci/node:10
|
|
16
|
-
steps: *buildSteps
|
|
17
|
-
|
|
18
|
-
node-12:
|
|
19
|
-
docker:
|
|
20
|
-
- image: circleci/node:12
|
|
21
|
-
steps: *buildSteps
|
|
22
|
-
|
|
23
|
-
node-14:
|
|
24
|
-
docker:
|
|
25
|
-
- image: circleci/node:14
|
|
26
|
-
steps: *buildSteps
|
|
27
|
-
|
|
28
|
-
workflows:
|
|
29
|
-
version: 2
|
|
30
|
-
build:
|
|
31
|
-
jobs:
|
|
32
|
-
- node-10
|
|
33
|
-
- node-12
|
|
34
|
-
- node-14
|