Skip to content

Commit

Permalink
Merge branch 'master' into delete_file_permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
pauarge authored Oct 27, 2021
2 parents 04d5f30 + de1258b commit 3b467d3
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,40 @@ By default, we record information about the usage of this tool using an in-house

## Changelog

### 2.2.0 (27 October 2021)

New: Environment variables command
- #896 Open config envvar command for all customers
- #876 Update envvar list command to only show names
- #879 Add config envvar get and get-all commands
- #875 Temporarily gate access to new config command to VIP staff
- #858 Environment variable CLI commands (list, set, delete)

Fixes:
- #901 Don't mark import as failed until restore has completed
- #899 Proxy fix + healthchecks
- #894 support windows db import
- #889 Proxy config change
- #888 mount wordpress code
- #872 Auto flush cache after import and add vipgo user
- #869 Media redirect to production site.
- #885 Make search data persistent between restarts
- #844 Expose DB and expose extra services in info table
- #865 spawn WP-CLI as root to allow for FS operations
- #895 Fix rmdir deprecation warning
- #870 Add the VIP CLI release process and release schedule

Dependencies updates:
- #778 Update dependency ini to v2
- #786 Update dependency keytar to v7
- #884 Update dependency cli-columns to v4
- #887 Update dependency lando to v3.4.3
- #874 Update dependency lando to v3.4.0
- #750 Bump hosted-git-info from 2.8.8 to 2.8.9
- #877 Bump tmpl from 1.0.4 to 1.0.5

https://github.com/Automattic/vip/releases/tag/v2.2.0

### 2.1.0 (16 September 2021)

- #857 Remove select DB checks
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@automattic/vip",
"version": "2.1.0",
"version": "2.2.0",
"description": "The VIP Javascript library & CLI",
"main": "index.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/site-import/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ ${ maybeExitPrompt }
};
} );

if ( statusSteps.some( ( { result } ) => result === 'failed' ) ) {
if ( statusSteps.some( ( { result } ) => result === 'failed' ) && ! statusSteps.find( ( { name, result } ) => name === 'restore_db' && ! result ) ) {
jobStatus = 'error';
} else if ( statusSteps.every( ( { result } ) => result === 'success' ) ) {
jobStatus = 'success';
Expand Down

0 comments on commit 3b467d3

Please sign in to comment.