@automattic/vip 2.13.0 → 2.13.1

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/README.md CHANGED
@@ -14,7 +14,7 @@ Then, launch the command and follow the prompts:
14
14
  vip
15
15
  ```
16
16
 
17
- If you need more information, check out our [VIP CLI documentation](https://docs.wpvip.com/technical-references/vip-cli/).
17
+ If you need more information, check out our [VIP-CLI documentation](https://docs.wpvip.com/technical-references/vip-cli/).
18
18
 
19
19
  ## Contributing
20
20
 
@@ -26,6 +26,12 @@ By default, we record information about the usage of this tool using an in-house
26
26
 
27
27
  ## Changelog
28
28
 
29
+ ### 2.13.1 (20 Jun 2022)
30
+
31
+ - #1052 [dev-env] Update/lando compose version
32
+ - #1045 README: Fix Typo `VIP CLI` => `VIP-CLI`
33
+ - #1048 Switch to GitHub Actions
34
+
29
35
  ### 2.13.0 (16 Jun 2022)
30
36
 
31
37
  - #1046 Add Cache Purge Command
@@ -223,7 +229,7 @@ Fixes:
223
229
  - #844 Expose DB and expose extra services in info table
224
230
  - #865 spawn WP-CLI as root to allow for FS operations
225
231
  - #895 Fix rmdir deprecation warning
226
- - #870 Add the VIP CLI release process and release schedule
232
+ - #870 Add the VIP-CLI release process and release schedule
227
233
 
228
234
  Dependencies updates:
229
235
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/vip",
3
- "version": "2.13.0",
3
+ "version": "2.13.1",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
@@ -10104,8 +10104,8 @@
10104
10104
  "dev": true
10105
10105
  },
10106
10106
  "lando": {
10107
- "version": "git+https://github.com/Automattic/lando-cli.git#2a5c2a4c1b1a428be62d5907d62b4d8c6e659b50",
10108
- "from": "git+https://github.com/Automattic/lando-cli.git#v3.5.2-patch2022_06_13",
10107
+ "version": "git+https://github.com/Automattic/lando-cli.git#3c74058161e51c9f482e6fa2727f616070853b98",
10108
+ "from": "git+https://github.com/Automattic/lando-cli.git#v3.5.2-patch2022_06_20",
10109
10109
  "requires": {
10110
10110
  "@lando/platformsh": "^0.6.0",
10111
10111
  "axios": "0.21.4",
@@ -10865,9 +10865,9 @@
10865
10865
  "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
10866
10866
  },
10867
10867
  "minipass": {
10868
- "version": "3.1.6",
10869
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz",
10870
- "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==",
10868
+ "version": "3.3.3",
10869
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.3.tgz",
10870
+ "integrity": "sha512-N0BOsdFAlNRfmwMhjAsLVWOk7Ljmeb39iqFlsV1At+jqRhSUP9yeof8FyJu4imaJiSUp8vQebWD/guZwGQC8iA==",
10871
10871
  "requires": {
10872
10872
  "yallist": "^4.0.0"
10873
10873
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/vip",
3
- "version": "2.13.0",
3
+ "version": "2.13.1",
4
4
  "description": "The VIP Javascript library & CLI",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -124,7 +124,7 @@
124
124
  "ini": "2.0.0",
125
125
  "json2csv": "5.0.6",
126
126
  "jwt-decode": "2.2.0",
127
- "lando": "git+https://github.com/Automattic/lando-cli.git#v3.5.2-patch2022_06_13",
127
+ "lando": "git+https://github.com/Automattic/lando-cli.git#v3.5.2-patch2022_06_20",
128
128
  "node-fetch": "^2.6.1",
129
129
  "opn": "5.5.0",
130
130
  "proxy-from-env": "^1.1.0",
@@ -1,67 +0,0 @@
1
- version: 2.1
2
-
3
- workflows:
4
- build:
5
- jobs:
6
- - lint
7
- - flow
8
- - test:
9
- version: 14-stretch
10
- name: 14-stretch
11
- requires:
12
- - lint
13
- - flow
14
- - test:
15
- version: lts-stretch
16
- name: lts-stretch
17
- requires:
18
- - lint
19
- - flow
20
- - test:
21
- version: current-stretch
22
- name: current-stretch
23
- requires:
24
- - lint
25
- - flow
26
-
27
- jobs:
28
- lint:
29
- docker:
30
- - image: circleci/node:current-stretch
31
-
32
- working_directory: ~/repo
33
-
34
- steps:
35
- - checkout
36
- - run: npm ci
37
- - run:
38
- name: Run lint
39
- command: npm run lint
40
-
41
- flow:
42
- docker:
43
- - image: circleci/node:current-stretch
44
-
45
- working_directory: ~/repo
46
-
47
- steps:
48
- - checkout
49
- - run: npm ci
50
- - run:
51
- name: Run flow
52
- command: npm run flow
53
-
54
- test:
55
- parameters:
56
- version:
57
- type: string
58
-
59
- docker:
60
- - image: circleci/node:<< parameters.version >>
61
-
62
- working_directory: ~/repo
63
-
64
- steps:
65
- - checkout
66
- - run: npm ci
67
- - run: npm run jest