@codefresh-io/kube-integration 1.24.0 → 1.24.3
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/.nvmrc +1 -1
- package/Dockerfile +2 -2
- package/lib/helm/release/helm3/revision.js +1 -1
- package/package.json +10 -7
- package/service.yaml +1 -1
- package/yarn.lock +154 -86
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v12.22.
|
|
1
|
+
v12.22.8
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM node:12.22.
|
|
1
|
+
FROM node:12.22.8-alpine
|
|
2
2
|
|
|
3
3
|
WORKDIR /kube-integration
|
|
4
4
|
|
|
@@ -6,7 +6,7 @@ WORKDIR /kube-integration
|
|
|
6
6
|
COPY package.json yarn.lock ./
|
|
7
7
|
|
|
8
8
|
# install required binaries
|
|
9
|
-
RUN apk update && apk add --no-cache --virtual deps
|
|
9
|
+
RUN apk update && apk add --no-cache --virtual deps make g++ krb5-dev bash git openssh-client && \
|
|
10
10
|
rm -rf node_modules && yarn install --production --frozen-lockfile && \
|
|
11
11
|
yarn cache clean && \
|
|
12
12
|
apk del deps && apk upgrade && \
|
|
@@ -121,7 +121,7 @@ class ReleaseRevision extends BaseRevision {
|
|
|
121
121
|
|
|
122
122
|
_normalizeSecretKeys(obj) {
|
|
123
123
|
return _.transform(obj, (result, value, key) => {
|
|
124
|
-
result[
|
|
124
|
+
result[key] = _.isObject(value) ? this._normalizeSecretKeys(value) : value;
|
|
125
125
|
});
|
|
126
126
|
}
|
|
127
127
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.24.
|
|
2
|
+
"version": "1.24.3",
|
|
3
3
|
"name": "@codefresh-io/kube-integration",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"url": "git+https://github.com/codefresh-io/kube-integration.git"
|
|
20
20
|
},
|
|
21
21
|
"engines": {
|
|
22
|
-
"node": "12.22.
|
|
22
|
+
"node": "12.22.8"
|
|
23
23
|
},
|
|
24
24
|
"author": "Oleg Sucharevich <olegs@codefresh.io>",
|
|
25
25
|
"license": "ISC",
|
|
@@ -28,16 +28,19 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/codefresh-io/kube-integration#readme",
|
|
30
30
|
"resolutions": {
|
|
31
|
+
"json-schema": "^0.4.0",
|
|
31
32
|
"amqplib": "0.5.1",
|
|
32
|
-
"lodash": "~4.17.21"
|
|
33
|
+
"lodash": "~4.17.21",
|
|
34
|
+
"normalize-url": "4.5.1",
|
|
35
|
+
"shelljs": "0.8.5"
|
|
33
36
|
},
|
|
34
37
|
"dependencies": {
|
|
35
38
|
"@codefresh-io/docker-reference": "^0.0.5",
|
|
36
39
|
"@codefresh-io/eventbus": "1.4.1",
|
|
37
|
-
"@codefresh-io/http-infra": "^1.8.
|
|
40
|
+
"@codefresh-io/http-infra": "^1.8.11",
|
|
38
41
|
"bluebird": "^3.5.0",
|
|
39
42
|
"body-parser": "^1.17.2",
|
|
40
|
-
"cf-errors": "^0.1.
|
|
43
|
+
"cf-errors": "^0.1.16",
|
|
41
44
|
"cf-logs": "^1.1.24",
|
|
42
45
|
"cf-monitor": "git+https://github.com/codefresh-io/cf-monitor.git#072ce2b419bb615a9567d253139431ca3c3adf17",
|
|
43
46
|
"compression": "^1.6.2",
|
|
@@ -51,10 +54,10 @@
|
|
|
51
54
|
"kubernetes-client": "^8.3.7",
|
|
52
55
|
"lodash": "~4.17.21",
|
|
53
56
|
"method-override": "^2.3.9",
|
|
54
|
-
"mongoose": "^5.12.
|
|
57
|
+
"mongoose": "^5.12.3",
|
|
55
58
|
"morgan": "^1.10.0",
|
|
56
59
|
"nock": "^12.0.3",
|
|
57
|
-
"nodegistry": "^1.
|
|
60
|
+
"nodegistry": "^1.2.2",
|
|
58
61
|
"object-hash": "^1.2.0",
|
|
59
62
|
"request": "^2.88.2",
|
|
60
63
|
"request-promise": "^4.2.6",
|
package/service.yaml
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version: 1.25.
|
|
1
|
+
version: 1.25.9
|
package/yarn.lock
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
# yarn lockfile v1
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
"@codefresh-io/authenticated-entity@^2.13.
|
|
6
|
-
version "2.
|
|
7
|
-
resolved "https://registry.yarnpkg.com/@codefresh-io/authenticated-entity/-/authenticated-entity-2.
|
|
8
|
-
integrity sha512-
|
|
5
|
+
"@codefresh-io/authenticated-entity@^2.13.3":
|
|
6
|
+
version "2.14.1"
|
|
7
|
+
resolved "https://registry.yarnpkg.com/@codefresh-io/authenticated-entity/-/authenticated-entity-2.14.1.tgz#d0df461f897b7c5cb1cff07bee7c3abba7c1712c"
|
|
8
|
+
integrity sha512-EJwgXoxPp8gSwxBpBfyG79IMDDsqQ2xcL+ntgMndb2OhGa2oGQsi9oodIXlPyYkQ4pONSFudGLlGBoHglLT4lQ==
|
|
9
9
|
dependencies:
|
|
10
10
|
lodash "^4.17.21"
|
|
11
11
|
semver "^7.0.0"
|
|
@@ -29,17 +29,17 @@
|
|
|
29
29
|
pg-cursor "^1.2.0"
|
|
30
30
|
uuid "^3.0.1"
|
|
31
31
|
|
|
32
|
-
"@codefresh-io/http-infra@^1.8.
|
|
33
|
-
version "1.8.
|
|
34
|
-
resolved "https://registry.yarnpkg.com/@codefresh-io/http-infra/-/http-infra-1.8.
|
|
35
|
-
integrity sha512-
|
|
32
|
+
"@codefresh-io/http-infra@^1.8.11":
|
|
33
|
+
version "1.8.11"
|
|
34
|
+
resolved "https://registry.yarnpkg.com/@codefresh-io/http-infra/-/http-infra-1.8.11.tgz#11cf7b31a8561caba50ccc3717a7454f530da9fb"
|
|
35
|
+
integrity sha512-sAkDx0yX393KoH49EIR44bhr76bl4K3t5ya1jBKTYyAV6F++FCZotJn87Jsvil/JrIsfF2aakSuwK8AdDAUknQ==
|
|
36
36
|
dependencies:
|
|
37
|
-
"@codefresh-io/authenticated-entity" "^2.13.
|
|
37
|
+
"@codefresh-io/authenticated-entity" "^2.13.3"
|
|
38
38
|
bluebird "^3.7.2"
|
|
39
39
|
crypto-random-string "^3.3.0"
|
|
40
40
|
lodash "^4.17.21"
|
|
41
41
|
request "^2.88.2"
|
|
42
|
-
requestretry "^
|
|
42
|
+
requestretry "^7.0.0"
|
|
43
43
|
|
|
44
44
|
"@dabh/diagnostics@^2.0.2":
|
|
45
45
|
version "2.0.2"
|
|
@@ -129,6 +129,13 @@
|
|
|
129
129
|
dependencies:
|
|
130
130
|
"@types/node" "*"
|
|
131
131
|
|
|
132
|
+
"@types/bson@1.x || 4.0.x":
|
|
133
|
+
version "4.0.5"
|
|
134
|
+
resolved "https://registry.yarnpkg.com/@types/bson/-/bson-4.0.5.tgz#9e0e1d1a6f8866483f96868a9b33bc804926b1fc"
|
|
135
|
+
integrity sha512-vVLwMUqhYJSQ/WKcE60eFqcyuWse5fGH+NMAXHuKrUAPoryq3ATxk5o4bgYNtg5aOM4APVg7Hnb3ASqUYG0PKg==
|
|
136
|
+
dependencies:
|
|
137
|
+
"@types/node" "*"
|
|
138
|
+
|
|
132
139
|
"@types/caseless@*":
|
|
133
140
|
version "0.12.2"
|
|
134
141
|
resolved "https://registry.yarnpkg.com/@types/caseless/-/caseless-0.12.2.tgz#f65d3d6389e01eeb458bd54dc8f52b95a9463bc8"
|
|
@@ -547,7 +554,7 @@ caseless@~0.12.0:
|
|
|
547
554
|
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
|
548
555
|
integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
|
|
549
556
|
|
|
550
|
-
cf-errors@^0.1.
|
|
557
|
+
cf-errors@^0.1.16:
|
|
551
558
|
version "0.1.16"
|
|
552
559
|
resolved "https://registry.yarnpkg.com/cf-errors/-/cf-errors-0.1.16.tgz#03d0b050ac94762552792907b08bd39d1a012116"
|
|
553
560
|
integrity sha512-ewA6cTS+bVC32NCxIdEu/5HQ8zb09PV1ubdu0t2yPXs51K31gI78+XGEomVjaXdTbZcGBPVIWhFnG6R/U7K4IQ==
|
|
@@ -1459,10 +1466,10 @@ json-schema-traverse@^0.4.1:
|
|
|
1459
1466
|
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
|
|
1460
1467
|
integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
|
|
1461
1468
|
|
|
1462
|
-
json-schema@0.2.3:
|
|
1463
|
-
version "0.
|
|
1464
|
-
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.
|
|
1465
|
-
integrity
|
|
1469
|
+
json-schema@0.2.3, json-schema@^0.4.0:
|
|
1470
|
+
version "0.4.0"
|
|
1471
|
+
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5"
|
|
1472
|
+
integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==
|
|
1466
1473
|
|
|
1467
1474
|
json-stream@^1.0.0:
|
|
1468
1475
|
version "1.0.0"
|
|
@@ -1479,6 +1486,22 @@ jsonpath-plus@^0.19.0:
|
|
|
1479
1486
|
resolved "https://registry.yarnpkg.com/jsonpath-plus/-/jsonpath-plus-0.19.0.tgz#b901e57607055933dc9a8bef0cc25160ee9dd64c"
|
|
1480
1487
|
integrity sha512-GSVwsrzW9LsA5lzsqe4CkuZ9wp+kxBb2GwNniaWzI2YFn5Ig42rSW8ZxVpWXaAfakXNrx5pgY5AbQq7kzX29kg==
|
|
1481
1488
|
|
|
1489
|
+
jsonwebtoken@^8.5.1:
|
|
1490
|
+
version "8.5.1"
|
|
1491
|
+
resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d"
|
|
1492
|
+
integrity sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==
|
|
1493
|
+
dependencies:
|
|
1494
|
+
jws "^3.2.2"
|
|
1495
|
+
lodash.includes "^4.3.0"
|
|
1496
|
+
lodash.isboolean "^3.0.3"
|
|
1497
|
+
lodash.isinteger "^4.0.4"
|
|
1498
|
+
lodash.isnumber "^3.0.3"
|
|
1499
|
+
lodash.isplainobject "^4.0.6"
|
|
1500
|
+
lodash.isstring "^4.0.1"
|
|
1501
|
+
lodash.once "^4.0.0"
|
|
1502
|
+
ms "^2.1.1"
|
|
1503
|
+
semver "^5.6.0"
|
|
1504
|
+
|
|
1482
1505
|
jsprim@^1.2.2:
|
|
1483
1506
|
version "1.4.1"
|
|
1484
1507
|
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
|
|
@@ -1489,6 +1512,15 @@ jsprim@^1.2.2:
|
|
|
1489
1512
|
json-schema "0.2.3"
|
|
1490
1513
|
verror "1.10.0"
|
|
1491
1514
|
|
|
1515
|
+
jwa@^1.4.1:
|
|
1516
|
+
version "1.4.1"
|
|
1517
|
+
resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.4.1.tgz#743c32985cb9e98655530d53641b66c8645b039a"
|
|
1518
|
+
integrity sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==
|
|
1519
|
+
dependencies:
|
|
1520
|
+
buffer-equal-constant-time "1.0.1"
|
|
1521
|
+
ecdsa-sig-formatter "1.0.11"
|
|
1522
|
+
safe-buffer "^5.0.1"
|
|
1523
|
+
|
|
1492
1524
|
jwa@^2.0.0:
|
|
1493
1525
|
version "2.0.0"
|
|
1494
1526
|
resolved "https://registry.yarnpkg.com/jwa/-/jwa-2.0.0.tgz#a7e9c3f29dae94027ebcaf49975c9345593410fc"
|
|
@@ -1498,6 +1530,14 @@ jwa@^2.0.0:
|
|
|
1498
1530
|
ecdsa-sig-formatter "1.0.11"
|
|
1499
1531
|
safe-buffer "^5.0.1"
|
|
1500
1532
|
|
|
1533
|
+
jws@^3.2.2:
|
|
1534
|
+
version "3.2.2"
|
|
1535
|
+
resolved "https://registry.yarnpkg.com/jws/-/jws-3.2.2.tgz#001099f3639468c9414000e99995fa52fb478304"
|
|
1536
|
+
integrity sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==
|
|
1537
|
+
dependencies:
|
|
1538
|
+
jwa "^1.4.1"
|
|
1539
|
+
safe-buffer "^5.0.1"
|
|
1540
|
+
|
|
1501
1541
|
jws@^4.0.0:
|
|
1502
1542
|
version "4.0.0"
|
|
1503
1543
|
resolved "https://registry.yarnpkg.com/jws/-/jws-4.0.0.tgz#2d4e8cf6a318ffaa12615e9dec7e86e6c97310f4"
|
|
@@ -1558,7 +1598,42 @@ levn@~0.3.0:
|
|
|
1558
1598
|
prelude-ls "~1.1.2"
|
|
1559
1599
|
type-check "~0.3.2"
|
|
1560
1600
|
|
|
1561
|
-
lodash@^4.
|
|
1601
|
+
lodash.includes@^4.3.0:
|
|
1602
|
+
version "4.3.0"
|
|
1603
|
+
resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f"
|
|
1604
|
+
integrity sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=
|
|
1605
|
+
|
|
1606
|
+
lodash.isboolean@^3.0.3:
|
|
1607
|
+
version "3.0.3"
|
|
1608
|
+
resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6"
|
|
1609
|
+
integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=
|
|
1610
|
+
|
|
1611
|
+
lodash.isinteger@^4.0.4:
|
|
1612
|
+
version "4.0.4"
|
|
1613
|
+
resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343"
|
|
1614
|
+
integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=
|
|
1615
|
+
|
|
1616
|
+
lodash.isnumber@^3.0.3:
|
|
1617
|
+
version "3.0.3"
|
|
1618
|
+
resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc"
|
|
1619
|
+
integrity sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=
|
|
1620
|
+
|
|
1621
|
+
lodash.isplainobject@^4.0.6:
|
|
1622
|
+
version "4.0.6"
|
|
1623
|
+
resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
|
|
1624
|
+
integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=
|
|
1625
|
+
|
|
1626
|
+
lodash.isstring@^4.0.1:
|
|
1627
|
+
version "4.0.1"
|
|
1628
|
+
resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
|
|
1629
|
+
integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=
|
|
1630
|
+
|
|
1631
|
+
lodash.once@^4.0.0:
|
|
1632
|
+
version "4.1.1"
|
|
1633
|
+
resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
|
|
1634
|
+
integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=
|
|
1635
|
+
|
|
1636
|
+
lodash@^4.16.0, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21, lodash@^4.17.4, lodash@~4.17.21:
|
|
1562
1637
|
version "4.17.21"
|
|
1563
1638
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
|
1564
1639
|
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
|
|
@@ -1694,15 +1769,15 @@ module-not-found-error@^1.0.0:
|
|
|
1694
1769
|
resolved "https://registry.yarnpkg.com/module-not-found-error/-/module-not-found-error-1.0.1.tgz#cf8b4ff4f29640674d6cdd02b0e3bc523c2bbdc0"
|
|
1695
1770
|
integrity sha1-z4tP9PKWQGdNbN0CsOO8UjwrvcA=
|
|
1696
1771
|
|
|
1697
|
-
mongodb@3.
|
|
1698
|
-
version "3.
|
|
1699
|
-
resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-3.
|
|
1700
|
-
integrity sha512-
|
|
1772
|
+
mongodb@3.7.3:
|
|
1773
|
+
version "3.7.3"
|
|
1774
|
+
resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-3.7.3.tgz#b7949cfd0adc4cc7d32d3f2034214d4475f175a5"
|
|
1775
|
+
integrity sha512-Psm+g3/wHXhjBEktkxXsFMZvd3nemI0r3IPsE0bU+4//PnvNWKkzhZcEsbPcYiWqe8XqXJJEg4Tgtr7Raw67Yw==
|
|
1701
1776
|
dependencies:
|
|
1702
1777
|
bl "^2.2.1"
|
|
1703
1778
|
bson "^1.1.4"
|
|
1704
1779
|
denque "^1.4.1"
|
|
1705
|
-
|
|
1780
|
+
optional-require "^1.1.8"
|
|
1706
1781
|
safe-buffer "^5.1.2"
|
|
1707
1782
|
optionalDependencies:
|
|
1708
1783
|
saslprep "^1.0.0"
|
|
@@ -1712,22 +1787,24 @@ mongoose-legacy-pluralize@1.0.2:
|
|
|
1712
1787
|
resolved "https://registry.yarnpkg.com/mongoose-legacy-pluralize/-/mongoose-legacy-pluralize-1.0.2.tgz#3ba9f91fa507b5186d399fb40854bff18fb563e4"
|
|
1713
1788
|
integrity sha512-Yo/7qQU4/EyIS8YDFSeenIvXxZN+ld7YdV9LqFVQJzTLye8unujAWPZ4NWKfFA+RNjh+wvTWKY9Z3E5XM6ZZiQ==
|
|
1714
1789
|
|
|
1715
|
-
mongoose@^5.12.
|
|
1716
|
-
version "5.
|
|
1717
|
-
resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-5.
|
|
1718
|
-
integrity sha512-
|
|
1790
|
+
mongoose@^5.12.3:
|
|
1791
|
+
version "5.13.14"
|
|
1792
|
+
resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-5.13.14.tgz#ffc9704bd022dd018fbddcbe27dc802c77719fb4"
|
|
1793
|
+
integrity sha512-j+BlQjjxgZg0iWn42kLeZTB91OejcxWpY2Z50bsZTiKJ7HHcEtcY21Godw496GMkBqJMTzmW7G/kZ04mW+Cb7Q==
|
|
1719
1794
|
dependencies:
|
|
1795
|
+
"@types/bson" "1.x || 4.0.x"
|
|
1720
1796
|
"@types/mongodb" "^3.5.27"
|
|
1721
1797
|
bson "^1.1.4"
|
|
1722
1798
|
kareem "2.3.2"
|
|
1723
|
-
mongodb "3.
|
|
1799
|
+
mongodb "3.7.3"
|
|
1724
1800
|
mongoose-legacy-pluralize "1.0.2"
|
|
1725
|
-
mpath "0.8.
|
|
1726
|
-
mquery "3.2.
|
|
1801
|
+
mpath "0.8.4"
|
|
1802
|
+
mquery "3.2.5"
|
|
1727
1803
|
ms "2.1.2"
|
|
1804
|
+
optional-require "1.0.x"
|
|
1728
1805
|
regexp-clone "1.0.0"
|
|
1729
1806
|
safe-buffer "5.2.1"
|
|
1730
|
-
sift "
|
|
1807
|
+
sift "13.5.2"
|
|
1731
1808
|
sliced "1.0.1"
|
|
1732
1809
|
|
|
1733
1810
|
morgan@^1.10.0:
|
|
@@ -1741,15 +1818,15 @@ morgan@^1.10.0:
|
|
|
1741
1818
|
on-finished "~2.3.0"
|
|
1742
1819
|
on-headers "~1.0.2"
|
|
1743
1820
|
|
|
1744
|
-
mpath@0.8.
|
|
1745
|
-
version "0.8.
|
|
1746
|
-
resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.8.
|
|
1747
|
-
integrity sha512-
|
|
1821
|
+
mpath@0.8.4:
|
|
1822
|
+
version "0.8.4"
|
|
1823
|
+
resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.8.4.tgz#6b566d9581621d9e931dd3b142ed3618e7599313"
|
|
1824
|
+
integrity sha512-DTxNZomBcTWlrMW76jy1wvV37X/cNNxPW1y2Jzd4DZkAaC5ZGsm8bfGfNOthcDuRJujXLqiuS6o3Tpy0JEoh7g==
|
|
1748
1825
|
|
|
1749
|
-
mquery@3.2.
|
|
1750
|
-
version "3.2.
|
|
1751
|
-
resolved "https://registry.yarnpkg.com/mquery/-/mquery-3.2.
|
|
1752
|
-
integrity sha512-
|
|
1826
|
+
mquery@3.2.5:
|
|
1827
|
+
version "3.2.5"
|
|
1828
|
+
resolved "https://registry.yarnpkg.com/mquery/-/mquery-3.2.5.tgz#8f2305632e4bb197f68f60c0cffa21aaf4060c51"
|
|
1829
|
+
integrity sha512-VjOKHHgU84wij7IUoZzFRU07IAxd5kWJaDmyUzQlbjHjyoeK5TNeeo8ZsFDtTYnSgpW6n/nMNIHvE3u8Lbrf4A==
|
|
1753
1830
|
dependencies:
|
|
1754
1831
|
bluebird "3.5.1"
|
|
1755
1832
|
debug "3.1.0"
|
|
@@ -1831,24 +1908,26 @@ node-forge@^0.10.0:
|
|
|
1831
1908
|
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3"
|
|
1832
1909
|
integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
|
|
1833
1910
|
|
|
1834
|
-
nodegistry@^1.
|
|
1835
|
-
version "1.
|
|
1836
|
-
resolved "https://registry.yarnpkg.com/nodegistry/-/nodegistry-1.
|
|
1837
|
-
integrity sha512-
|
|
1911
|
+
nodegistry@^1.2.2:
|
|
1912
|
+
version "1.2.2"
|
|
1913
|
+
resolved "https://registry.yarnpkg.com/nodegistry/-/nodegistry-1.2.2.tgz#69e8bfb85980de566a8ad087f35ea124e28f464b"
|
|
1914
|
+
integrity sha512-tSULKjV1h2xzZEEhwAz0oYNklq0JYGiANW8zyhzWSKQB7Bb57B8Xc7/TVbkB7ZgO1fmbCI6JZ6zI0HRPSiH1/g==
|
|
1838
1915
|
dependencies:
|
|
1839
1916
|
"@codefresh-io/docker-reference" "^0.0.5"
|
|
1840
1917
|
aws-sdk "^2.868.0"
|
|
1841
1918
|
bluebird "^3.7.2"
|
|
1842
1919
|
cf-errors "^0.1.16"
|
|
1843
1920
|
google-auth-library "^6.1.3"
|
|
1921
|
+
jsonwebtoken "^8.5.1"
|
|
1844
1922
|
lodash "^4.17.21"
|
|
1845
1923
|
request "^2.88.2"
|
|
1846
|
-
|
|
1924
|
+
request-promise "^4.2.6"
|
|
1925
|
+
requestretry "^7.0.0"
|
|
1847
1926
|
|
|
1848
|
-
normalize-url@^4.1.0:
|
|
1849
|
-
version "4.5.
|
|
1850
|
-
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.
|
|
1851
|
-
integrity sha512-
|
|
1927
|
+
normalize-url@4.5.1, normalize-url@^4.1.0:
|
|
1928
|
+
version "4.5.1"
|
|
1929
|
+
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a"
|
|
1930
|
+
integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==
|
|
1852
1931
|
|
|
1853
1932
|
oauth-sign@~0.9.0:
|
|
1854
1933
|
version "0.9.0"
|
|
@@ -1916,6 +1995,18 @@ openid-client@^3.14.0:
|
|
|
1916
1995
|
oidc-token-hash "^5.0.0"
|
|
1917
1996
|
p-any "^3.0.0"
|
|
1918
1997
|
|
|
1998
|
+
optional-require@1.0.x:
|
|
1999
|
+
version "1.0.3"
|
|
2000
|
+
resolved "https://registry.yarnpkg.com/optional-require/-/optional-require-1.0.3.tgz#275b8e9df1dc6a17ad155369c2422a440f89cb07"
|
|
2001
|
+
integrity sha512-RV2Zp2MY2aeYK5G+B/Sps8lW5NHAzE5QClbFP15j+PWmP+T9PxlJXBOOLoSAdgwFvS4t0aMR4vpedMkbHfh0nA==
|
|
2002
|
+
|
|
2003
|
+
optional-require@^1.1.8:
|
|
2004
|
+
version "1.1.8"
|
|
2005
|
+
resolved "https://registry.yarnpkg.com/optional-require/-/optional-require-1.1.8.tgz#16364d76261b75d964c482b2406cb824d8ec44b7"
|
|
2006
|
+
integrity sha512-jq83qaUb0wNg9Krv1c5OQ+58EK+vHde6aBPzLvPPqJm89UQWsvSuFy9X/OSNJnFeSOKo7btE0n8Nl2+nE+z5nA==
|
|
2007
|
+
dependencies:
|
|
2008
|
+
require-at "^1.0.6"
|
|
2009
|
+
|
|
1919
2010
|
optionator@^0.8.1:
|
|
1920
2011
|
version "0.8.3"
|
|
1921
2012
|
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
|
|
@@ -2254,36 +2345,18 @@ request@^2.88.0, request@^2.88.2:
|
|
|
2254
2345
|
tunnel-agent "^0.6.0"
|
|
2255
2346
|
uuid "^3.3.2"
|
|
2256
2347
|
|
|
2257
|
-
requestretry@^
|
|
2258
|
-
version "
|
|
2259
|
-
resolved "https://registry.yarnpkg.com/requestretry/-/requestretry-
|
|
2260
|
-
integrity sha512-
|
|
2261
|
-
dependencies:
|
|
2262
|
-
extend "^3.0.2"
|
|
2263
|
-
lodash "^4.17.10"
|
|
2264
|
-
when "^3.7.7"
|
|
2265
|
-
|
|
2266
|
-
requestretry@^4.1.2:
|
|
2267
|
-
version "4.1.2"
|
|
2268
|
-
resolved "https://registry.yarnpkg.com/requestretry/-/requestretry-4.1.2.tgz#f5975c0c3be9e352e25038c9fed482d5cc51978e"
|
|
2269
|
-
integrity sha512-N1WAp+8eOy8NfsVBChcSxNCKvPY1azOpliQ4Sby4WDe0HFEhdKywlNZeROMBQ+BI3Jpc0eNOT1KVFGREawtahA==
|
|
2348
|
+
requestretry@^7.0.0:
|
|
2349
|
+
version "7.0.2"
|
|
2350
|
+
resolved "https://registry.yarnpkg.com/requestretry/-/requestretry-7.0.2.tgz#22a169e5d3aaadd95d00401d7347511f3695faf4"
|
|
2351
|
+
integrity sha512-Zz8z7G2OuVs4F0wR0shKMEMm7lNvPNHM0UIHNns9qfyuBDKSExoTsZGtSjKst6nPEwlMrbA9G+m/yC0AbGj+8w==
|
|
2270
2352
|
dependencies:
|
|
2271
2353
|
extend "^3.0.2"
|
|
2272
2354
|
lodash "^4.17.15"
|
|
2273
|
-
when "^3.7.7"
|
|
2274
2355
|
|
|
2275
|
-
|
|
2276
|
-
version "1.0.
|
|
2277
|
-
resolved "https://registry.yarnpkg.com/
|
|
2278
|
-
integrity sha512-
|
|
2279
|
-
dependencies:
|
|
2280
|
-
resolve-from "^2.0.0"
|
|
2281
|
-
semver "^5.1.0"
|
|
2282
|
-
|
|
2283
|
-
resolve-from@^2.0.0:
|
|
2284
|
-
version "2.0.0"
|
|
2285
|
-
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57"
|
|
2286
|
-
integrity sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=
|
|
2356
|
+
require-at@^1.0.6:
|
|
2357
|
+
version "1.0.6"
|
|
2358
|
+
resolved "https://registry.yarnpkg.com/require-at/-/require-at-1.0.6.tgz#9eb7e3c5e00727f5a4744070a7f560d4de4f6e6a"
|
|
2359
|
+
integrity sha512-7i1auJbMUrXEAZCOQ0VNJgmcT2VOKPRl2YGJwgpHpC9CE91Mv4/4UYIUm4chGJaI381ZDq1JUicFii64Hapd8g==
|
|
2287
2360
|
|
|
2288
2361
|
resolve@^1.1.6:
|
|
2289
2362
|
version "1.20.0"
|
|
@@ -2347,7 +2420,7 @@ semver@4.3.2:
|
|
|
2347
2420
|
resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.2.tgz#c7a07158a80bedd052355b770d82d6640f803be7"
|
|
2348
2421
|
integrity sha1-x6BxWKgL7dBSNVt3DYLWZA+AO+c=
|
|
2349
2422
|
|
|
2350
|
-
semver@^5.
|
|
2423
|
+
semver@^5.3.0, semver@^5.5.1, semver@^5.6.0:
|
|
2351
2424
|
version "5.7.1"
|
|
2352
2425
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
|
2353
2426
|
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
|
@@ -2393,10 +2466,10 @@ setprototypeof@1.1.1:
|
|
|
2393
2466
|
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
|
|
2394
2467
|
integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
|
|
2395
2468
|
|
|
2396
|
-
shelljs@^0.8.2:
|
|
2397
|
-
version "0.8.
|
|
2398
|
-
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.
|
|
2399
|
-
integrity sha512-
|
|
2469
|
+
shelljs@0.8.5, shelljs@^0.8.2:
|
|
2470
|
+
version "0.8.5"
|
|
2471
|
+
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c"
|
|
2472
|
+
integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==
|
|
2400
2473
|
dependencies:
|
|
2401
2474
|
glob "^7.0.0"
|
|
2402
2475
|
interpret "^1.0.0"
|
|
@@ -2411,10 +2484,10 @@ side-channel@^1.0.4:
|
|
|
2411
2484
|
get-intrinsic "^1.0.2"
|
|
2412
2485
|
object-inspect "^1.9.0"
|
|
2413
2486
|
|
|
2414
|
-
sift@
|
|
2415
|
-
version "
|
|
2416
|
-
resolved "https://registry.yarnpkg.com/sift/-/sift-
|
|
2417
|
-
integrity sha512
|
|
2487
|
+
sift@13.5.2:
|
|
2488
|
+
version "13.5.2"
|
|
2489
|
+
resolved "https://registry.yarnpkg.com/sift/-/sift-13.5.2.tgz#24a715e13c617b086166cd04917d204a591c9da6"
|
|
2490
|
+
integrity sha512-+gxdEOMA2J+AI+fVsCqeNn7Tgx3M9ZN9jdi95939l1IJ8cZsqS8sqpJyOkic2SJk+1+98Uwryt/gL6XDaV+UZA==
|
|
2418
2491
|
|
|
2419
2492
|
simple-swizzle@^0.2.2:
|
|
2420
2493
|
version "0.2.2"
|
|
@@ -2702,11 +2775,6 @@ verror@1.10.0:
|
|
|
2702
2775
|
core-util-is "1.0.2"
|
|
2703
2776
|
extsprintf "^1.2.0"
|
|
2704
2777
|
|
|
2705
|
-
when@^3.7.7:
|
|
2706
|
-
version "3.7.8"
|
|
2707
|
-
resolved "https://registry.yarnpkg.com/when/-/when-3.7.8.tgz#c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82"
|
|
2708
|
-
integrity sha1-xxMLan6gRpPoQs3J56Hyqjmjn4I=
|
|
2709
|
-
|
|
2710
2778
|
winston-transport@^4.4.0:
|
|
2711
2779
|
version "4.4.0"
|
|
2712
2780
|
resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.4.0.tgz#17af518daa690d5b2ecccaa7acf7b20ca7925e59"
|