File tree 4 files changed +42
-1
lines changed
4 files changed +42
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Change Log
2
+
3
+ ## [ 0.2.3] ( https://github.com/php-enqueue/enqueue-dev/tree/0.2.3 ) (2017-01-09)
4
+ [ Full Changelog] ( https://github.com/php-enqueue/enqueue-dev/compare/0.2.2...0.2.3 )
5
+
6
+ - \[ travis\] Cache docker images on travis. [ \# 9] ( https://github.com/php-enqueue/enqueue-dev/pull/9 ) ([ makasim] ( https://github.com/makasim ) )
7
+ - \[ enhancement\]\[ amqp-ext\] Add purge queue method to amqp context. [ \# 8] ( https://github.com/php-enqueue/enqueue-dev/pull/8 ) ([ makasim] ( https://github.com/makasim ) )
8
+ - \[ bug\]\[ amqp-ext\] Receive timeout parameter is miliseconds [ \# 7] ( https://github.com/php-enqueue/enqueue-dev/pull/7 ) ([ makasim] ( https://github.com/makasim ) )
9
+
10
+ ## [ 0.2.2] ( https://github.com/php-enqueue/enqueue-dev/tree/0.2.2 ) (2017-01-06)
11
+ [ Full Changelog] ( https://github.com/php-enqueue/enqueue-dev/compare/0.2.1...0.2.2 )
12
+
13
+ - Amqp lazy connection [ \# 4] ( https://github.com/php-enqueue/enqueue-dev/issues/4 )
14
+
15
+ - \[ amqp\] introduce lazy context. [ \# 6] ( https://github.com/php-enqueue/enqueue-dev/pull/6 ) ([ makasim] ( https://github.com/makasim ) )
16
+
17
+ ## [ 0.2.1] ( https://github.com/php-enqueue/enqueue-dev/tree/0.2.1 ) (2017-01-05)
18
+ [ Full Changelog] ( https://github.com/php-enqueue/enqueue-dev/compare/0.2.0...0.2.1 )
19
+
20
+ ## [ 0.2.0] ( https://github.com/php-enqueue/enqueue-dev/tree/0.2.0 ) (2017-01-05)
21
+ [ Full Changelog] ( https://github.com/php-enqueue/enqueue-dev/compare/0.1.0...0.2.0 )
22
+
23
+ - Upd php cs fixer [ \# 3] ( https://github.com/php-enqueue/enqueue-dev/pull/3 ) ([ makasim] ( https://github.com/makasim ) )
24
+ - \[ psr\] Introduce MessageProcessor interface \( moved from consumption\) . [ \# 2] ( https://github.com/php-enqueue/enqueue-dev/pull/2 ) ([ makasim] ( https://github.com/makasim ) )
25
+ - \[ bundle\] Add ability to disable signal extension. [ \# 1] ( https://github.com/php-enqueue/enqueue-dev/pull/1 ) ([ makasim] ( https://github.com/makasim ) )
26
+
27
+ ## [ 0.1.0] ( https://github.com/php-enqueue/enqueue-dev/tree/0.1.0 ) (2016-12-29)
28
+
29
+
30
+ \* * This Change Log was automatically generated by [ github_changelog_generator] ( https://github.com/skywinder/Github-Changelog-Generator ) *
Original file line number Diff line number Diff line change
1
+ FROM ruby:2
2
+
3
+ RUN gem install github_changelog_generator
Original file line number Diff line number Diff line change 3
3
set -x
4
4
set -e
5
5
6
- while getopts " bustef " OPTION; do
6
+ while getopts " bustefc " OPTION; do
7
7
case $OPTION in
8
8
b)
9
9
COMPOSE_PROJECT_NAME=mqdev docker-compose build
@@ -23,6 +23,9 @@ while getopts "bustef" OPTION; do
23
23
t)
24
24
COMPOSE_PROJECT_NAME=mqdev docker-compose run --workdir=" /mqdev" --rm dev ./bin/test
25
25
;;
26
+ c)
27
+ COMPOSE_PROJECT_NAME=mqdev docker-compose run --workdir=" /mqdev" --rm generate-changelog github_changelog_generator --future-release " $2 " --simple-list
28
+ ;;
26
29
27
30
\? )
28
31
echo " Invalid option: -$OPTARG " >&2
Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ services:
38
38
environment :
39
39
MYSQL_ROOT_PASSWORD : rootpass
40
40
41
+ generate-changelog :
42
+ build : { context: ., dockerfile: Dockerfile.generate-changelog }
43
+ volumes :
44
+ - ./:/mqdev
45
+
41
46
volumes :
42
47
mysql-data :
43
48
driver : local
You can’t perform that action at this time.
0 commit comments