Skip to content
This repository was archived by the owner on Dec 1, 2018. It is now read-only.

Commit 397597a

Browse files
authored
Merge pull request #130 from blinkreaction/develop
Release v1.4.0
2 parents d4bc437 + ed1346e commit 397597a

18 files changed

+1002
-341
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
release/*
1+
# IDE files
2+
.idea

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## 1.4.0 (2016-06-10)
4+
5+
- dsh v1.20.0
6+
- Added update checker (once a week, currently dsh only)
7+
- Allow install prerequisites on other Linux versions if user takes the risk
8+
- dsh -v will now show short version
9+
- New command `dsh system-info` for debugging purposes
10+
- System-wide services
11+
- New service: `ssh-agent`. See [ssh-agent docs](docs/ssh-agent.md) for more details.
12+
- Bind system-wide services to 0.0.0.0 for simplicity
13+
- `dsh reset` can now install/reset system-wide services (dns, vhost-proxy, ssh-agent)
14+
- Support for [custom commands](docs/custom-commands.md) in dsh
15+
- Support for overlay networks for vhost-proxy (v2 compose file format)
16+
- Other improvements
17+
- dsh remove -f to quietly remove containers
18+
- Support dsh reset -f to quietly reset containers
19+
- Documentation updates
20+
- [Docs](docs/apache-solr.md) for Apache Solr
21+
- [Docs](docs/settings.md) on switching PHP and MySQL versions
22+
- Many other small updates and fixes
23+
24+
325
## 1.3.4 (2016-05-04)
426

527
- dsh v1.13.3

README.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ Please review [system requirements](/docs/system-requirements.md) before proceed
2323

2424
This is done **one time per project** and should be performed by the project TL.
2525

26-
3. [Initialize a Drude powered project](/docs/drude-project-init.md)
27-
28-
Follow these instructions to initiallize a Drude powered project.
29-
3026

3127
<a name="updates"></a>
3228
## Updates
@@ -44,6 +40,12 @@ On Mac and Windows only (skip for Linux) also run:
4440
dsh update boot2docker
4541
```
4642

43+
Finally, you will probably need to re-initialize your environment with:
44+
45+
```
46+
dsh init
47+
```
48+
4749

4850
<a name="dsh"></a>
4951
## Drude Shell Helper (dsh)
@@ -69,26 +71,32 @@ dsh bash
6971

7072
Tools available inside the **cli** container:
7173

72-
- php-cli, composer, drush[6,7,8], drupal console, phpcs
74+
- php-cli, composer, drush[6,7,8], drupal console, phpcs, phpcbf
7375
- ruby, bundler
74-
- node, nvm, npm, bower, grunt
75-
- git, wget, zip, mysql-client
76-
- python
76+
- node, nvm, npm
77+
- imagemagick
78+
- python, git, mc, mysql-client and [more](https://github.com/blinkreaction/docker-drupal-cli)
7779

7880

7981
<a name="instructions"></a>
8082
## Instructions and tutorials
8183

84+
### Advanced configuration
8285
- [Drupal settings](/docs/drupal-settings.md)
83-
- [Running multiple projects](/docs/multiple-projects.md)
8486
- [Overriding default PHP/MySQL/etc. settings](/docs/settings.md)
87+
- [Running multiple projects](/docs/multiple-projects.md)
8588
- [Public access](/docs/public-access.md)
8689
- [DB sandbox mode](/docs/db-sandbox.md)
87-
- [Using Behat](/docs/behat.md)
88-
- [Zero-configuration Debugging with Xdebug and PhpStorm](/docs/xdebug.md)
8990
- [MySQL DB access for external tools](/docs/db-access.md)
90-
- [Sending and capturing email](/docs/mail.md)
91+
- [Debugging with Xdebug and PhpStorm](/docs/xdebug.md)
92+
93+
### Third party utililies
94+
- [Using Behat](/docs/behat.md)
95+
- [Sending and capturing e-mail](/docs/mail.md)
9196
- [Enabling Varnish support](/docs/varnish.md)
97+
- [Enabling Apache Solr support](/docs/apache-solr.md)
98+
- [Using PHP Code Sniffer (phpcs, phpcbf)](/docs/phpcs.md)
99+
- [Extending dsh with custom commands](/docs/custom-commands.md)
92100

93101
<a name="troubleshooting"></a>
94102
## Troubleshooting
@@ -100,7 +108,7 @@ See [Troubleshooting](/docs/troubleshooting.md) section of the docs.
100108

101109
The MIT License (MIT)
102110

103-
Copyright (c) 2016 BlinkReaction
111+
Copyright © 2016 Blink Reaction
104112

105113
Permission is hereby granted, free of charge, to any person obtaining a copy
106114
of this software and associated documentation files (the "Software"), to deal

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.4
1+
1.4.0

0 commit comments

Comments
 (0)