@automattic/vip 2.13.1 → 2.16.0
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/CHANGELOG.md +575 -0
- package/CONTRIBUTING.md +1 -1
- package/README.md +0 -542
- package/assets/dev-env.lando.template.yml.ejs +10 -14
- package/dist/bin/vip-config-software-get.js +90 -0
- package/dist/bin/vip-config-software.js +23 -0
- package/dist/bin/vip-config.js +1 -1
- package/dist/bin/vip-dev-env-create.js +11 -9
- package/dist/bin/vip-dev-env-exec.js +9 -2
- package/dist/bin/vip-dev-env-import-sql.js +1 -1
- package/dist/bin/vip-dev-env-info.js +0 -3
- package/dist/bin/vip-dev-env-start.js +3 -2
- package/dist/bin/vip-dev-env-update.js +2 -2
- package/dist/bin/vip-import-sql.js +6 -4
- package/dist/lib/api/app.js +9 -3
- package/dist/lib/cli/command.js +9 -2
- package/dist/lib/cli/userError.js +14 -0
- package/dist/lib/config/software.js +57 -0
- package/dist/lib/constants/dev-environment.js +7 -8
- package/dist/lib/dev-environment/dev-environment-cli.js +105 -44
- package/dist/lib/dev-environment/dev-environment-core.js +28 -6
- package/dist/lib/dev-environment/dev-environment-lando.js +13 -9
- package/dist/lib/site-import/db-file-import.js +1 -1
- package/dist/lib/validations/is-multisite-domain-mapped.js +161 -0
- package/dist/lib/validations/line-by-line.js +3 -2
- package/dist/lib/validations/site-type.js +27 -1
- package/dist/lib/validations/sql.js +46 -6
- package/dist/lib/validations/utils.js +45 -0
- package/npm-shrinkwrap.json +130 -26
- package/package.json +5 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,575 @@
|
|
|
1
|
+
## Changelog
|
|
2
|
+
|
|
3
|
+
### 2.16.0 (29 Aug 2022)
|
|
4
|
+
|
|
5
|
+
- #1086 Add tracking to config software get
|
|
6
|
+
- #1034 Bump node-fetch from 2.6.1 to 2.6.7
|
|
7
|
+
- #1087 Increase the limit of sql file from 1GB to 5GB for SQL Imports
|
|
8
|
+
- #1085 [dev-env] rename clientCode to appCode
|
|
9
|
+
- #1084 Update/sw get tweaks
|
|
10
|
+
- #1077 [dev-env] Remove app.env support from non-create command
|
|
11
|
+
- #1079 [dev-env] support multiple falsy values add/support_for_falsy
|
|
12
|
+
- #1080 [dev-env] switch name to slug in info table
|
|
13
|
+
- #1073 [dev-env] e2e Windows tests
|
|
14
|
+
- #1078 SQL Import: Fix multisite primary domain validation
|
|
15
|
+
- #1068 Software Management: Get settings
|
|
16
|
+
- #1070 [dev-env] validate client code - look for specific subdirectories
|
|
17
|
+
- #1075 [dev-env] Add switch to skip wp version check
|
|
18
|
+
- #1074 [dev-env] update lando dependency
|
|
19
|
+
- #1071 [dev-env] update wizard prompts to be fully configurable using config switches
|
|
20
|
+
|
|
21
|
+
### 2.15.0 (3 Aug 2022)
|
|
22
|
+
|
|
23
|
+
- #1067 FORNO-1244: SQL Import: Increase max import size for launched sites to 1GB
|
|
24
|
+
- #1064 FORNO-1254: SQL Import: Add multisite primary domain validation
|
|
25
|
+
- #1062 [dev-env] Change wizard wording
|
|
26
|
+
- #1065 [dev-env] Update default software versions for PHP and Elasticsearch
|
|
27
|
+
- #1063 [dev-env] Remove redundant healthchecks
|
|
28
|
+
- #1061 [dev-env] Fix duplicate shortcuts
|
|
29
|
+
|
|
30
|
+
### 2.14.0 (19 Jul 2022)
|
|
31
|
+
|
|
32
|
+
- #1059 Update engines to show support for npm > 6
|
|
33
|
+
- #1058 [dev-env] switch dev-env error during import to warning
|
|
34
|
+
- #1057 [dev-env] Update debug instruction example
|
|
35
|
+
- #1055 [dev-env] Makes exec attempt to run the task even if env seems to be down
|
|
36
|
+
|
|
37
|
+
### 2.13.1 (20 Jun 2022)
|
|
38
|
+
|
|
39
|
+
- #1052 [dev-env] Update/lando compose version
|
|
40
|
+
- #1045 README: Fix Typo `VIP CLI` => `VIP-CLI`
|
|
41
|
+
- #1048 Switch to GitHub Actions
|
|
42
|
+
|
|
43
|
+
### 2.13.0 (16 Jun 2022)
|
|
44
|
+
|
|
45
|
+
- #1046 Add Cache Purge Command
|
|
46
|
+
- #1050 [dev-env] Change docs link
|
|
47
|
+
- #1047 [dev-env] Bump lando package
|
|
48
|
+
- #1044 [dev-env] Fix healthchecks No. 2
|
|
49
|
+
- #1043 [dev-env] add docker-compose v2 support
|
|
50
|
+
- #1042 [dev-env] Fix search popup during wizard
|
|
51
|
+
- #1038 [dev-env] Adds domain validation during sql import
|
|
52
|
+
- #1040 [dev-env] track dev-env start time in seconds
|
|
53
|
+
|
|
54
|
+
### 2.12.0 (19 May 2022)
|
|
55
|
+
|
|
56
|
+
- #1035 and #1032 Improved publishing checks to publish on npm
|
|
57
|
+
- #1037 [dev-env] only record the php version numbers update/clean_php_version
|
|
58
|
+
- #999 Add Feature to Support HTTPS/HTTP/NO_PROXY Settings
|
|
59
|
+
- #1036 Move DO_NOT_TRACK handling to Analytics lib
|
|
60
|
+
- #1033 [dev-env] Bump lando in order to support node 18
|
|
61
|
+
|
|
62
|
+
#### Special thanks
|
|
63
|
+
frank-cerny for the contribution on #999
|
|
64
|
+
|
|
65
|
+
### 2.11.2 (12 May 2022)
|
|
66
|
+
|
|
67
|
+
- Hotfix to use correct production config.json in the NPM published package caused by a different NPM version in the build process.
|
|
68
|
+
|
|
69
|
+
### 2.11.1 (12 May 2022)
|
|
70
|
+
|
|
71
|
+
- Hotfix to use correct production config.json in the NPM published package
|
|
72
|
+
|
|
73
|
+
### 2.11.0 (11 May 2022)
|
|
74
|
+
|
|
75
|
+
- #1022 [dev-env] Validate docker installed
|
|
76
|
+
- #1026 [dev-env] adds tracking to stop subcommand
|
|
77
|
+
- #1028 Re-calculate the fileMeta if file gets changed by the searchAndReplace
|
|
78
|
+
- #1029 Adds Pendo analytics client
|
|
79
|
+
- #1030 [dev-env] Fix failure tracking
|
|
80
|
+
|
|
81
|
+
### 2.10.0 (4 May 2022)
|
|
82
|
+
|
|
83
|
+
- #1021 [dev-env] Add login info and documentation link to `dev-env info`
|
|
84
|
+
- #1023 [dev-env] Skip the trunk from the prompt about the latest available WordPress versions
|
|
85
|
+
- #1019 [dev-env] Unifies lando and other dev-env debug logs
|
|
86
|
+
- #1018 [dev-env] enable lando debug on `--debug`
|
|
87
|
+
- #1017 [dev-env] Adding tracking for create and destroy sub commands
|
|
88
|
+
- #1016 [dev-env] Adding tracking for start sub command
|
|
89
|
+
- #1020 [dev-env] More tracking
|
|
90
|
+
|
|
91
|
+
### 2.9.5 (26 April 2022)
|
|
92
|
+
|
|
93
|
+
- #1005 [dev-env] updateWordPress image improvements
|
|
94
|
+
- #1006 Remove renovate.json
|
|
95
|
+
- #1007 Set up CodeQL Scanning
|
|
96
|
+
- #1008 WP-CLI: Reattach Reconnect-Related Events After a Successful Reconnection
|
|
97
|
+
- #1009 Add ability to choose a PHP image to use
|
|
98
|
+
- #1010 [dev-env] Add Enterprise Search, XDebug, phpMyAdmin options to the config wizard.
|
|
99
|
+
|
|
100
|
+
### 2.9.4 (07 April 2022)
|
|
101
|
+
|
|
102
|
+
- #996 Clean up lint warnings
|
|
103
|
+
- #1001 Fix reconnect event listeners
|
|
104
|
+
- #1000 Bump socket.io-client from 4.0.1 to 4.4.1
|
|
105
|
+
|
|
106
|
+
### 2.9.3 (29 March 2022)
|
|
107
|
+
|
|
108
|
+
- #995 Add debug call to dev-envs handleCLIException
|
|
109
|
+
- #992 Add --debug flag to all commands
|
|
110
|
+
- #993 [dev-env] Fix in caching version list.
|
|
111
|
+
- #994 Fix typo in error message
|
|
112
|
+
- #990 [dev-env] Add check for wp folder map add/php_healthcheck
|
|
113
|
+
- #991 Adds optional channing since `progress` can be null as per GraphQL schema
|
|
114
|
+
- #989 Fixes unit test error `bsdthread_register error`
|
|
115
|
+
- #987 Add support for M1 Macs in the search-replace tests
|
|
116
|
+
|
|
117
|
+
### 2.9.2 (9 March 2022)
|
|
118
|
+
|
|
119
|
+
- #980 [dev-env] Fix/tag formatting on stapled images
|
|
120
|
+
- #986 Clean the build folder prior to rebuilding it
|
|
121
|
+
- #985 Adding webP to the list of accepted extensions for files
|
|
122
|
+
- #972 Run tests in Windows Env
|
|
123
|
+
|
|
124
|
+
https://github.com/Automattic/vip/releases/tag/v2.9.2
|
|
125
|
+
|
|
126
|
+
### 2.9.1 (2 March 2022)
|
|
127
|
+
|
|
128
|
+
- #982 Remove unused dependencies - Fixes Error: Cannot find module 'core-js'
|
|
129
|
+
- #978 [dev-env] Added phpmyadmin proxy value
|
|
130
|
+
|
|
131
|
+
https://github.com/Automattic/vip/releases/tag/v2.9.1
|
|
132
|
+
|
|
133
|
+
### 2.9.0 (1 March 2022)
|
|
134
|
+
|
|
135
|
+
- #966 [dev-env] Dynamic WordPress Image List
|
|
136
|
+
- #975 [dev-env] prompt On Unselected Env
|
|
137
|
+
- #974 [dev-env] Corrections of text for -h menu in dev-env create
|
|
138
|
+
- #973 [dev-env] update Nginx image
|
|
139
|
+
- #971 [dev-env] Use custom add user command
|
|
140
|
+
- #964 [dev-env] Validate sql on import
|
|
141
|
+
- #970 [dev-env] Do not use /tmp as a userConfRoot
|
|
142
|
+
- #977 Fix flow errors
|
|
143
|
+
- #976 Fix/duplicate shortcut parameter
|
|
144
|
+
- #968 Update minimum Node version
|
|
145
|
+
|
|
146
|
+
https://github.com/Automattic/vip/releases/tag/v2.9.0
|
|
147
|
+
|
|
148
|
+
### 2.8.2 (27 January 2021)
|
|
149
|
+
|
|
150
|
+
- #961 Fixes md5 calculation failing when search-replace is used
|
|
151
|
+
- #959 Fixes md5 calculation for SQL Imports on VIPd
|
|
152
|
+
|
|
153
|
+
https://github.com/Automattic/vip/releases/tag/v2.8.2
|
|
154
|
+
|
|
155
|
+
### 2.8.0 (25 January 2021)
|
|
156
|
+
|
|
157
|
+
- #952 FORNO-1047: Fix SQL Import for compressed files
|
|
158
|
+
- #955 Add Error prefix for "Failed to fetch logs" msg
|
|
159
|
+
- #946 Add support for the site logs tailing feature
|
|
160
|
+
- #953 [dev-env] Updated list of available wordpress images for dev-env
|
|
161
|
+
- #933 Update dependency debug to v4.3.3
|
|
162
|
+
|
|
163
|
+
https://github.com/Automattic/vip/releases/tag/v2.8.0
|
|
164
|
+
|
|
165
|
+
### 2.7.1 (10 January 2021)
|
|
166
|
+
|
|
167
|
+
- #950 Switch to npm-shrinkwrap
|
|
168
|
+
- #947 [dev-env] List all dev env alias
|
|
169
|
+
- #944 Add `vip whoami` command
|
|
170
|
+
- #942 Envvar: Show message when there is an attempt to change the New Relic key.
|
|
171
|
+
|
|
172
|
+
https://github.com/Automattic/vip/releases/tag/v2.7.1
|
|
173
|
+
|
|
174
|
+
### 2.7.0 (07 December 2021)
|
|
175
|
+
|
|
176
|
+
- #941 [dev-env] Bump lando CLI dependency
|
|
177
|
+
- #938 Hide roll back message after SQL Import failure for launched sites
|
|
178
|
+
- #936 Sets jest maxWorkers to 4
|
|
179
|
+
|
|
180
|
+
https://github.com/Automattic/vip/releases/tag/v2.7.0
|
|
181
|
+
|
|
182
|
+
### 2.6.0 (23 November 2021)
|
|
183
|
+
|
|
184
|
+
- #921 [dev-env] Introuces update to change existing environment
|
|
185
|
+
- #928 [dev-env] Switch lando to use our fork
|
|
186
|
+
- #927 [dev-env] Handles user already exists during sql import
|
|
187
|
+
- #925 [dev-env] Fix the issue with dev-env update
|
|
188
|
+
- #924 FORNO-985 Increase SQL Import limit for unlaunched sites to 100GB
|
|
189
|
+
- #923 FORNO-943 Fixes a bug which prevents displaying SQL Import error messages
|
|
190
|
+
- #922 Update eslint-config-wpvip commit hash to c6605d1
|
|
191
|
+
- #873 Pin dependencies
|
|
192
|
+
|
|
193
|
+
### 2.5.0 (9 November 2021)
|
|
194
|
+
|
|
195
|
+
- #919 [dev-env] Expose lando core logs
|
|
196
|
+
- #916 [dev-env] Save instance data state
|
|
197
|
+
- #914 [dev-env] update help wording for dev env
|
|
198
|
+
- #915 Add warning message when an envvar is set/deleted
|
|
199
|
+
|
|
200
|
+
### 2.4.0 (5 November 2021)
|
|
201
|
+
|
|
202
|
+
- #913 [dev-env] No login required for dev-env
|
|
203
|
+
- #911 Adds more release instructions
|
|
204
|
+
|
|
205
|
+
### 2.3.1 (2 November 2021)
|
|
206
|
+
|
|
207
|
+
- Fixes an issue with the 2.3.0 where the intended changes didn't get published correctly.
|
|
208
|
+
|
|
209
|
+
### 2.3.0 (2 November 2021)
|
|
210
|
+
|
|
211
|
+
- #908 [dev-env] Custom user permissions setup
|
|
212
|
+
- #897 [dev-env] Primary domain prompt for primary domain redirect
|
|
213
|
+
- #902 [dev-env] Delete file permissions
|
|
214
|
+
- #900 Clarify CONTRIBUTING guidelines
|
|
215
|
+
- #905 Update contribution steps
|
|
216
|
+
|
|
217
|
+
### 2.2.0 (27 October 2021)
|
|
218
|
+
|
|
219
|
+
New: Environment variables command
|
|
220
|
+
|
|
221
|
+
- #896 Open config envvar command for all customers
|
|
222
|
+
- #876 Update envvar list command to only show names
|
|
223
|
+
- #879 Add config envvar get and get-all commands
|
|
224
|
+
- #875 Temporarily gate access to new config command to VIP staff
|
|
225
|
+
- #858 Environment variable CLI commands (list, set, delete)
|
|
226
|
+
|
|
227
|
+
Fixes:
|
|
228
|
+
|
|
229
|
+
- #901 Don't mark import as failed until restore has completed
|
|
230
|
+
- #899 Proxy fix + healthchecks
|
|
231
|
+
- #894 support windows db import
|
|
232
|
+
- #889 Proxy config change
|
|
233
|
+
- #888 mount wordpress code
|
|
234
|
+
- #872 Auto flush cache after import and add vipgo user
|
|
235
|
+
- #869 Media redirect to production site.
|
|
236
|
+
- #885 Make search data persistent between restarts
|
|
237
|
+
- #844 Expose DB and expose extra services in info table
|
|
238
|
+
- #865 spawn WP-CLI as root to allow for FS operations
|
|
239
|
+
- #895 Fix rmdir deprecation warning
|
|
240
|
+
- #870 Add the VIP-CLI release process and release schedule
|
|
241
|
+
|
|
242
|
+
Dependencies updates:
|
|
243
|
+
|
|
244
|
+
- #778 Update dependency ini to v2
|
|
245
|
+
- #786 Update dependency keytar to v7
|
|
246
|
+
- #884 Update dependency cli-columns to v4
|
|
247
|
+
- #887 Update dependency lando to v3.4.3
|
|
248
|
+
- #874 Update dependency lando to v3.4.0
|
|
249
|
+
- #750 Bump hosted-git-info from 2.8.8 to 2.8.9
|
|
250
|
+
- #877 Bump tmpl from 1.0.4 to 1.0.5
|
|
251
|
+
|
|
252
|
+
https://github.com/Automattic/vip/releases/tag/v2.2.0
|
|
253
|
+
|
|
254
|
+
### 2.1.0 (16 September 2021)
|
|
255
|
+
|
|
256
|
+
- #857 Remove select DB checks
|
|
257
|
+
- #864 Adding WordPress versions to dev-env
|
|
258
|
+
- #868 persist database data in between container restarts
|
|
259
|
+
- #862 Fix lint warnings
|
|
260
|
+
- #867 Update dependency lando to v3.3.2
|
|
261
|
+
- #863 Add links to CONTRIBUTING and SECURITY
|
|
262
|
+
- #855 Add some helpful hints for new command scaffolding
|
|
263
|
+
- #856 Adding media import command on dev environment
|
|
264
|
+
- #849 Adding SQL import to dev environment
|
|
265
|
+
- #854 Updating command descriptions and arguments on dev-env
|
|
266
|
+
- #850 Use official memcached image on dev-env
|
|
267
|
+
- #853 Enable ssl forwarding on dev-env
|
|
268
|
+
- #851 Conditionally disabling statsd on mu-plugins
|
|
269
|
+
- #852 Fixing Prettier format annotation typo
|
|
270
|
+
- #843 Removing custom wp-config-defaults
|
|
271
|
+
- #848 Not using a prefix to all dev environments
|
|
272
|
+
- #847 Update dependency lando to v3.3.0
|
|
273
|
+
- #840 Use official Elasticsearch image on dev-env
|
|
274
|
+
- #845 Fix MariaDB healthcheck
|
|
275
|
+
- #846 dev-env: Update error message for directory prompt
|
|
276
|
+
- #842 Removing PHP parameter from dev environment
|
|
277
|
+
- #839 Use official MariaDB image and enable version selection on dev-env
|
|
278
|
+
|
|
279
|
+
https://github.com/Automattic/vip/releases/tag/v2.1.0
|
|
280
|
+
|
|
281
|
+
### 2.0.14 (26 August 2021)
|
|
282
|
+
|
|
283
|
+
- Update dependency graphql to v15.5.1 #796
|
|
284
|
+
- Update dependency graphql-tag to v2.12.5 #799
|
|
285
|
+
- Update dependency debug to v4.3.2 #806
|
|
286
|
+
- Remove fake data dev-env commands #830
|
|
287
|
+
- Disable statsd by default #831
|
|
288
|
+
- Support ES version option #832
|
|
289
|
+
- Removing mu-plugins test command #835
|
|
290
|
+
- Making PHPMyAdmin optional on dev-env #836
|
|
291
|
+
- Patching Docker for Windows in dev-env #837
|
|
292
|
+
- enable/disable xdebug #838
|
|
293
|
+
|
|
294
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.14
|
|
295
|
+
|
|
296
|
+
### 2.0.13 (19 August 2021)
|
|
297
|
+
|
|
298
|
+
- Allow user to run multisite import even if wpSites.nodes doesn't exist. #815
|
|
299
|
+
- Bumping version number to 2.0.12 #827
|
|
300
|
+
- Path resolving fixes #829
|
|
301
|
+
- Send header each time #826
|
|
302
|
+
- Sets up a volume for media files #825
|
|
303
|
+
- Update dependency chalk to v4.1.2 #813
|
|
304
|
+
- Update dependency lando to v3.1.4 #797
|
|
305
|
+
- Upgrading statsd container to 0.9.0 #828
|
|
306
|
+
|
|
307
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.13
|
|
308
|
+
|
|
309
|
+
### 2.0.12 (13 August 2021)
|
|
310
|
+
|
|
311
|
+
- Using new VIP Docker images for dev-env #818
|
|
312
|
+
- Bump path-parse from 1.0.6 to 1.0.7 #819
|
|
313
|
+
- Increasing dev-env PMA upload limit to 4G #822
|
|
314
|
+
- PIE-2890 Fixes issue where user is unable to login after logout #823
|
|
315
|
+
|
|
316
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.12
|
|
317
|
+
|
|
318
|
+
### 2.0.11 (5 August 2021)
|
|
319
|
+
|
|
320
|
+
- Handle parameter validation in a consistent way #795
|
|
321
|
+
- Fix error blocking data sync on CLI sites #810
|
|
322
|
+
- Update DB Engine check to reduce false positives #811
|
|
323
|
+
- Retrieve the status and steps regardless of the site type. #812
|
|
324
|
+
- Dev-Env: Handle relative file paths #802
|
|
325
|
+
- Dev-Env: Make dev-env start more resilient #804
|
|
326
|
+
- Dev-Env: Validate Path to a component #803
|
|
327
|
+
- Dev-Env: Handle multisite = false correctly #809
|
|
328
|
+
- Dev-Env: Adds a check for an orphaned proxy container #814
|
|
329
|
+
- FORNO-759: Add logged in user details to all Tracks events #801
|
|
330
|
+
- FORNO-779: Throttle request to Parker when fetching media import status #808
|
|
331
|
+
|
|
332
|
+
https://github.com/Automattic/vip/releases/tag/2.0.11
|
|
333
|
+
|
|
334
|
+
### 2.0.10 (21 June 2021)
|
|
335
|
+
|
|
336
|
+
- Adds Media Import Abort subcommand
|
|
337
|
+
- Disables enterprise search by default
|
|
338
|
+
- Handles numbered slugs correctly
|
|
339
|
+
- Unifies print table on start command with other commands
|
|
340
|
+
- Drops the isVip requirement for dev-env
|
|
341
|
+
- Fixes intermittent fatal error caused due to analytics tracking
|
|
342
|
+
- Misc dependency updates
|
|
343
|
+
|
|
344
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.10
|
|
345
|
+
|
|
346
|
+
### 2.0.9 (3 June 2021)
|
|
347
|
+
|
|
348
|
+
- Enable SQL import for all site types
|
|
349
|
+
- Bug fix for analytics errors causing some commands to fail
|
|
350
|
+
- Add the full changelog to the readme
|
|
351
|
+
- Improved error output by adding debug info and consistent output/error codes
|
|
352
|
+
- Misc dependency updates
|
|
353
|
+
|
|
354
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.9
|
|
355
|
+
|
|
356
|
+
### 2.0.8 (27 May 2021)
|
|
357
|
+
|
|
358
|
+
- [Beta] Media Import: Enable media imports for production WordPress applications
|
|
359
|
+
- SQL Import: Enable SQL Import for launched sites
|
|
360
|
+
- SQL Import: Enable SQL Import for multisite networks
|
|
361
|
+
- SQL Import: Additional input file validation
|
|
362
|
+
|
|
363
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.8
|
|
364
|
+
|
|
365
|
+
### 2.0.7 (6 May 2021)
|
|
366
|
+
|
|
367
|
+
- SQL Import: Add additional multisite validations
|
|
368
|
+
- Update socket.io-client to 4.0.1
|
|
369
|
+
- Misc. dependency updates
|
|
370
|
+
|
|
371
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.7
|
|
372
|
+
|
|
373
|
+
### 2.0.6 (15 Apr 2021)
|
|
374
|
+
|
|
375
|
+
- SQL Import: Add additional checks for site type
|
|
376
|
+
|
|
377
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.6
|
|
378
|
+
|
|
379
|
+
### 2.0.5 (8 Mar 2021)
|
|
380
|
+
|
|
381
|
+
- Fix a bug when comparing env data to selected environment #697
|
|
382
|
+
|
|
383
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.5
|
|
384
|
+
|
|
385
|
+
### 2.0.4 (3 Mar 2021)
|
|
386
|
+
|
|
387
|
+
- Bump socket.io-client from 2.3.0 to 2.4.0 (Fixes WP-CLI in node 15+) #679
|
|
388
|
+
- Additional SQL import file static validations #669
|
|
389
|
+
|
|
390
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.4
|
|
391
|
+
|
|
392
|
+
### 2.0.3 (19 Feb 2021)
|
|
393
|
+
|
|
394
|
+
- Improved SQL import validation around the use of TRIGGER
|
|
395
|
+
|
|
396
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.3
|
|
397
|
+
|
|
398
|
+
### 2.0.2 (15 Feb 2021)
|
|
399
|
+
|
|
400
|
+
- Improved handling of debug output during search & replace
|
|
401
|
+
- Updated the vip-search-replace package to ^1.0.13
|
|
402
|
+
|
|
403
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.2
|
|
404
|
+
|
|
405
|
+
### 2.0.1 (11 Feb 2021)
|
|
406
|
+
|
|
407
|
+
- SQL Import: Improved reporting of server-side failures
|
|
408
|
+
- SQL Import: Add ability to skip local validation
|
|
409
|
+
- Updated the vip-search-replace package to v1.0.12
|
|
410
|
+
- SQL Import: Fix and test for multi-site tables that have more than one digit
|
|
411
|
+
|
|
412
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.1
|
|
413
|
+
|
|
414
|
+
### 2.0.0 (2 Feb 2021)
|
|
415
|
+
|
|
416
|
+
- Drops support for Node 8
|
|
417
|
+
- Added Security Policy
|
|
418
|
+
- Added SQL file import feature for new sites
|
|
419
|
+
- Added SQL search and replace feature
|
|
420
|
+
|
|
421
|
+
https://github.com/Automattic/vip/releases/tag/v2.0.0
|
|
422
|
+
|
|
423
|
+
### 1.12.1 (8 Sep 2020)
|
|
424
|
+
|
|
425
|
+
- Updated list of accepted special characters for media files for imports
|
|
426
|
+
|
|
427
|
+
https://github.com/Automattic/vip/releases/tag/v1.12.1
|
|
428
|
+
|
|
429
|
+
### 1.12.0 (21 Aug 2020)
|
|
430
|
+
|
|
431
|
+
- Added multisite support for media files validation
|
|
432
|
+
- Added Tracks for SQL and media file validation events
|
|
433
|
+
|
|
434
|
+
https://github.com/Automattic/vip/releases/tag/v1.12.0
|
|
435
|
+
|
|
436
|
+
### 1.11.2 (17 Aug 2020)
|
|
437
|
+
|
|
438
|
+
- Added support for multiple nested folders for the media file validation command
|
|
439
|
+
|
|
440
|
+
https://github.com/Automattic/vip/releases/tag/v1.11.2
|
|
441
|
+
|
|
442
|
+
### 1.11.1 (17 Aug 2020)
|
|
443
|
+
|
|
444
|
+
- Added fix to process the import validation subcommands
|
|
445
|
+
|
|
446
|
+
https://github.com/Automattic/vip/releases/tag/v1.11.1
|
|
447
|
+
|
|
448
|
+
### 1.11.0 (17 Aug 2020)
|
|
449
|
+
|
|
450
|
+
- Added `vip import validate sql` and `vip import validate files` commands to run static validation checks for SQL and media files for imports
|
|
451
|
+
|
|
452
|
+
https://github.com/Automattic/vip/releases/tag/v1.11.0
|
|
453
|
+
|
|
454
|
+
### 1.10.0 (12 Jun 2020)
|
|
455
|
+
|
|
456
|
+
- Added support for specifying a SOCKS proxy through the environment variable VIP_PROXY
|
|
457
|
+
|
|
458
|
+
https://github.com/Automattic/vip/releases/tag/v1.10.0
|
|
459
|
+
|
|
460
|
+
### 1.9.0 (30 Mar 2020)
|
|
461
|
+
|
|
462
|
+
- Added support for [opting out of usage tracking](https://github.com/Automattic/vip/tree/e54d9ee0ce2dd4725ca8718b3aba06db24306ad7#analytics) via `DO_NOT_TRACK` environment variable #547
|
|
463
|
+
- Fix interactive commands not working correctly #478
|
|
464
|
+
- Show usage information when an unsupported command is entered #527
|
|
465
|
+
- Dependency & dev dependency upgrades
|
|
466
|
+
|
|
467
|
+
https://github.com/Automattic/vip/releases/tag/v1.9.0
|
|
468
|
+
|
|
469
|
+
### 1.8.0 (25 Sep 2019)
|
|
470
|
+
|
|
471
|
+
- Fixes around cancelling commands via Ctrl-C
|
|
472
|
+
- Gracefully handle remote command cancellation
|
|
473
|
+
- Enhance Rollbar logging for additional use cases
|
|
474
|
+
|
|
475
|
+
https://github.com/Automattic/vip/releases/tag/v1.8.0
|
|
476
|
+
|
|
477
|
+
### 1.7.0 (15 Aug 15 2019)
|
|
478
|
+
|
|
479
|
+
- Resume long-running WP-CLI commands in case of network interruptions
|
|
480
|
+
|
|
481
|
+
https://github.com/Automattic/vip/releases/tag/v1.7.0
|
|
482
|
+
|
|
483
|
+
### 1.6.2 (25 Jul 2019)
|
|
484
|
+
|
|
485
|
+
- Corrected some install issues with the 1.6.0/1.6.1 releases.
|
|
486
|
+
|
|
487
|
+
https://github.com/Automattic/vip/releases/tag/v1.6.2
|
|
488
|
+
|
|
489
|
+
### 1.6.1 (25 Jul 2019)
|
|
490
|
+
|
|
491
|
+
- Intermittent release to test some issues with v1.6.0
|
|
492
|
+
|
|
493
|
+
https://github.com/Automattic/vip/releases/tag/v1.6.1
|
|
494
|
+
|
|
495
|
+
### 1.6.0 (25 Jul 2019)
|
|
496
|
+
|
|
497
|
+
- We added ability to cancel running commands.
|
|
498
|
+
- We fixed an issue with trailing characters such as line breaks affecting use of command output by scripts.
|
|
499
|
+
- Various dependancy updates.
|
|
500
|
+
|
|
501
|
+
https://github.com/Automattic/vip/releases/tag/v1.6.0
|
|
502
|
+
|
|
503
|
+
### 1.5.0 (15 Jul 2019)
|
|
504
|
+
|
|
505
|
+
- Added `--yes` flag for WP-CLI commands to skip confirmation on production environments.
|
|
506
|
+
- We fixed the character limit errors raised when running long WP-CLI commands.
|
|
507
|
+
- We've added Rollbar to allow us to monitor and address errors
|
|
508
|
+
- We updated third party dependencies to newer, more secure versions.
|
|
509
|
+
|
|
510
|
+
https://github.com/Automattic/vip/releases/tag/v1.5.0
|
|
511
|
+
|
|
512
|
+
### 1.4.1 (29 Apr 2019)
|
|
513
|
+
|
|
514
|
+
- No functional changes, 1.4.0 was already taken on NPM :)
|
|
515
|
+
|
|
516
|
+
https://github.com/Automattic/vip/releases/tag/1.4.1
|
|
517
|
+
|
|
518
|
+
### 1.4.0 (29 Apr 2019)
|
|
519
|
+
|
|
520
|
+
- Added "environment alias" support (`vip @my-site.env sync`)
|
|
521
|
+
- Added support for WP-CLI commands
|
|
522
|
+
- Misc. dependency updates
|
|
523
|
+
|
|
524
|
+
https://github.com/Automattic/vip/releases/tag/1.4.0
|
|
525
|
+
|
|
526
|
+
### 1.3.0 (1 Feb 2019)
|
|
527
|
+
|
|
528
|
+
- We now display information header for every `vip app --app` execution [(#223)](https://github.com/Automattic/vip/pull/223).
|
|
529
|
+
- We fixed the logout bug asking the user to login before being able to logout [(#222)](https://github.com/Automattic/vip/pull/222) and we also display a message when a user logout [(#221)](https://github.com/Automattic/vip/pull/221).
|
|
530
|
+
- We replaced `inquirer` with `enquirer` [(#229)](https://github.com/Automattic/vip/pull/229).
|
|
531
|
+
- We fixed a bug where we didn't check if we can sync to an environment before accessing some information about it [(#230)](https://github.com/Automattic/vip/pull/230).
|
|
532
|
+
- We fixed an `EPIPE` bug when hitting `q` in `app list` command [(#225)](https://github.com/Automattic/vip/pull/225).
|
|
533
|
+
- We updated third party dependencies to newer, more secure versions.
|
|
534
|
+
|
|
535
|
+
https://github.com/Automattic/vip/releases/tag/v1.3.0
|
|
536
|
+
|
|
537
|
+
### 1.2.1 (5 Dec 2018)
|
|
538
|
+
|
|
539
|
+
- The `1.2.0` version was containing a bug and we published a patch to fix it. Please use this version instead.
|
|
540
|
+
|
|
541
|
+
https://github.com/Automattic/vip/releases/tag/v1.2.1
|
|
542
|
+
|
|
543
|
+
### 1.2.0 (5 Dec 2018)
|
|
544
|
+
|
|
545
|
+
- We now display a preview of the `sync` feature with the backup time and the search/replace taking place in your database.
|
|
546
|
+
- We now display your mapped domain instead of the placeholder `go-vip.co` domain in `vip app` and `vip app list`.
|
|
547
|
+
- We now display a better message when an app does not have any non-production environments.
|
|
548
|
+
- We fixed a bug where the help menu was not showing until you're logged in.
|
|
549
|
+
- We updated third party dependencies to newer, more secure versions.
|
|
550
|
+
|
|
551
|
+
https://github.com/Automattic/vip/releases/tag/v1.2.0
|
|
552
|
+
|
|
553
|
+
### 1.1.1 (1 Nov 2018)
|
|
554
|
+
|
|
555
|
+
- Updates dependencies to fix a bug introduced by sub-dependencies.
|
|
556
|
+
|
|
557
|
+
https://github.com/Automattic/vip/releases/tag/v1.1.1
|
|
558
|
+
|
|
559
|
+
### 1.1.0 (12 Jul 2018)
|
|
560
|
+
|
|
561
|
+
- We now correctly report errors when `vip sync` fails. Previously, this would incorrectly report that a sync was run previously.
|
|
562
|
+
- We fixed permissions issues for some users with `admin` access for repos. They were unable to properly view and access applications.
|
|
563
|
+
- We now display more applications in `vip app list` (up to 100!) and have made it easier to browse through a large list thanks to (`$PAGER`|`less`) support. Previously you would only see the first 10 applications in your account.
|
|
564
|
+
|
|
565
|
+
https://github.com/Automattic/vip/releases/tag/v1.1.0
|
|
566
|
+
|
|
567
|
+
### 1.0.0 (2 Jul 2018)
|
|
568
|
+
|
|
569
|
+
The first release!
|
|
570
|
+
|
|
571
|
+
- `vip app list`: view a list of all your applications.
|
|
572
|
+
- `vip app`: view details about one of your applications.
|
|
573
|
+
- `vip sync`: trigger [a data sync](https://vip.wordpress.com/2018/03/28/data-sync-on-vip-go/) to synchronize data from your production environment to non-production environments.
|
|
574
|
+
|
|
575
|
+
https://github.com/Automattic/vip/releases/tag/v1.0.0
|
package/CONTRIBUTING.md
CHANGED
|
@@ -78,7 +78,7 @@ Prepare the release by making sure that:
|
|
|
78
78
|
|
|
79
79
|
1. All relevant PRs have been merged.
|
|
80
80
|
1. The release has been tested across macOS, Windows, and Linux.
|
|
81
|
-
1. The [changelog](https://github.com/Automattic/vip/blob/master/
|
|
81
|
+
1. The [changelog](https://github.com/Automattic/vip/blob/master/CHANGELOG.md) has been updated on `master`.
|
|
82
82
|
1. All tests pass and your working directory is clean (we have pre-publish checks to catch this, just-in-case).
|
|
83
83
|
|
|
84
84
|
#### Changelog Generator Hint:
|