Skip to content
This repository was archived by the owner on Jan 25, 2022. It is now read-only.

Commit 19719c4

Browse files
committed
Merge branch '0.17.0'
# Conflicts: # README.md
2 parents ddeea3f + fb5c9ab commit 19719c4

File tree

428 files changed

+72153
-19168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

428 files changed

+72153
-19168
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,29 @@
11
# WPLib Box ChangeLog
22

3+
## 0.17.0
4+
=======
5+
+ Prebuilt PHP component containers for 5.2.4, 5.6.36, 7.0.30, 7.1.18 & 7.2.6. (5.3.29, 5.4.45 & 5.5.38 to follow in 0.17.1).
6+
+ New project.json layout.
7+
+ Merging of official project.json release file with user project.json file.
8+
+ New sub-command `box component` with simpler command set.
9+
+ Better handling of component stop/start.
10+
+ Cleaner output from `box component` & `box container`.
11+
+ Component Makefiles will now log build output.
12+
+ Improved `box self-update` allowing same version updates.
13+
+ Moved all Packer provisioning scripts to a new sub-command `box provision`.
14+
+ Several `box container` bugs squashed.
15+
+ Refactoring of several scripts.
16+
+ Moved many common functions contained in scripts to central file.
17+
+ General stability improvements.
18+
19+
320
## 0.16.2
421
=======
522
This release allowed us to catch up on some of the things we missed with `0.16.1`:
623

7-
+ Details to be added soon.
824

925
## 0.16.1
26+
=======
1027
This release allowed us to catch up on some of the things we missed with `0.16.0`:
1128

1229
+ PHP `7.2`
@@ -19,7 +36,9 @@ This release allowed us to catch up on some of the things we missed with `0.16.0
1936
+ Dropped support for older WP-CLI versions
2037
+ Added basic `box test` command to test box functionality
2138

39+
2240
## 0.16.0
41+
=======
2342
Numerically it was a small change, but functionality and stability-wise is was a **HUGE** update.
2443

2544
### Added:

README.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
1-
![Latest Stable Version](https://img.shields.io/badge/stable-0.16.2-blue.svg)
2-
![Latest Testing Version](https://img.shields.io/badge/testing-0.17.0-red.svg)
1+
![Latest Stable Version](https://img.shields.io/badge/stable-0.17.0-blue.svg)
2+
![Latest Testing Version](https://img.shields.io/badge/testing-0.17.1-red.svg)
33
[![License](https://poser.pugx.org/wplib/wplib-box/license)](https://packagist.org/packages/wplib/wplib-box)
44

55
![WPLib-Box](https://github.com/wplib/wplib.github.io/raw/master/WPLib-Box-100x.png)
66

7-
8-
```
9-
__ _______ _ _ _ ____
10-
\ \ / / __ \| | (_) | | _ \
11-
\ \ /\ / /| |__) | | _| |__ | |_) | _____ __
12-
\ \/ \/ / | ___/| | | | '_ \ | _ < / _ \ \/ /
13-
\ /\ / | | | |____| | |_) | | |_) | (_) > <
14-
\/ \/ |_| |______|_|_.__/ |____/ \___/_/\_\
15-
```
16-
17-
187
# WPLib Box
198

209
**The Best Single-project Solution for Local WordPress Development**

Vagrantfile

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ system "vagrant plugin install vagrant-hostsupdater" \
391391
Vagrant.configure(2) do |config|
392392

393393
config.vm.box = "wplib/wplib"
394-
config.vm.box_version = "0.16.2"
394+
config.vm.box_version = "0.17.0"
395395

396396
File.write('IP', "10.10.10.#{rand(10..250)}") if not File.exists?('IP')
397397
File.write('HOSTNAME', "wplib.box") if not File.exists?('HOSTNAME')
@@ -400,6 +400,7 @@ Vagrant.configure(2) do |config|
400400

401401
config.vm.hostname = hostname
402402
config.hostsupdater.aliases = [
403+
"docs.wplib.box",
403404
"www.#{hostname}",
404405
"adminer.#{hostname}",
405406
"mailhog.#{hostname}"
@@ -411,7 +412,14 @@ Vagrant.configure(2) do |config|
411412

412413
config.vm.network 'private_network', ip: IO.read('IP').strip
413414

414-
config.vm.synced_folder "www", "/var/www"
415+
# 0.17.0 and onwards.
416+
config.vm.synced_folder ".", "/vagrant", disabled: true
417+
config.vm.synced_folder ".", "/projects/wplib.box"
418+
config.ssh.username = "boxuser"
419+
420+
# pre-0.17.0.
421+
# config.vm.synced_folder "www", "/var/www"
422+
# config.ssh.username = "vagrant"
415423

416424
config.ssh.forward_agent = true
417425
config.ssh.insert_key = false

docs/_config.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/errors/README.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

docs/errors/W001/README.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

docs/errors/W002/README.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

docs/errors/W003/README.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

docs/errors/W004/README.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

docs/errors/W005/README.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)