Skip to content

Commit 3a6430e

Browse files
committed
Upgrade instruction was complemented
1 parent 739bfd0 commit 3a6430e

2 files changed

Lines changed: 37 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Yii2 Queue Extension Change Log
1212
- Enh #185: Loop object instead of Signal helper (zhuravljov)
1313
- Enh #188: Configurable verbose mode (zhuravljov)
1414

15-
## 2.0.1, November 13, 2017
15+
2.0.1 November 13, 2017
16+
-----------------------
1617

1718
- Bug #98: Fixed timeout error handler (zhuravljov)
1819
- Bug #112: Queue command inside module (tsingsun)
@@ -31,11 +32,13 @@ Yii2 Queue Extension Change Log
3132
- Enh: Rename `serializers\Serializer` interface to `serializers\SerializerInterface` (zhuravljov)
3233
- Enh: Added `Signal::setExitFlag()` to stop `Queue::run()` loop manually (silverfire)
3334

34-
## 2.0.0
35+
2.0.0 July 15, 2017
36+
-------------------
3537

3638
- Enh: The package is moved to yiisoft/yii2-queue (zhuravljov)
3739

38-
## 1.1.0
40+
1.1.0 July 12, 2017
41+
-------------------
3942

4043
- Enh #50 Documentation about worker starting control (zhuravljov)
4144
- Enh #70: Durability for rabbitmq queues (mkubenka)
@@ -46,12 +49,14 @@ Yii2 Queue Extension Change Log
4649
- Enh #47: Redis queue listen timeout (zhuravljov)
4750
- Enh #23: Retryable jobs (zhuravljov)
4851

49-
## 1.0.1
52+
1.0.1 June 7, 2017
53+
------------------
5054

5155
- Enh #58: Deleting failed jobs from queue (zhuravljov)
5256
- Enh #55: Job priority (zhuravljov)
5357

54-
## 1.0.0
58+
1.0.0 May 4, 2017
59+
-----------------
5560

5661
- Enh: Improvements of log behavior (zhuravljov)
5762
- Enh: File driver stat info (zhuravljov)
@@ -65,43 +70,51 @@ Yii2 Queue Extension Change Log
6570
- Enh: Queue message identifiers (zhuravljov)
6671
- Enh: File queue (zhuravljov)
6772

68-
## 0.12.2
73+
0.12.2 April 29, 2017
74+
---------------------
6975

7076
- Enh #10: Separate option that turn off isolate mode of job execute (zhuravljov)
7177

72-
## 0.12.1
78+
0.12.1 April 20, 2017
79+
---------------------
7380

7481
- Bug #37: Fixed opening of a child process (zhuravljov)
7582
- Enh: Ability to push a closure (zhuravljov)
7683
- Enh: Before push event (zhuravljov)
7784

78-
## 0.12.0
85+
0.12.0 April 14, 2017
86+
---------------------
7987

8088
- Enh #18: Executes a job in a child process (zhuravljov)
8189
- Bug #25: Enabled output buffer breaks output streams (luke-)
8290
- Enh: After push event (zhuravljov)
8391

84-
## 0.11.0
92+
0.11.0 April 2, 2017
93+
--------------------
8594

8695
- Enh #21: Delayed jobs for redis queue (zhuravljov)
8796
- Enh: Info action for db and redis queue command (zhuravljov)
8897

89-
## 0.10.1
98+
0.10.1 March 29, 2017
99+
---------------------
90100

91101
- Bug: Fixed db driver for pgsql (zhuravljov)
92102
- Bug #16: Timeout of  queue reading lock for db driver (zhuravljov)
93103
- Enh: Minor code style enhancements (SilverFire)
94104

95-
## 0.10.0
105+
0.10.0 March 22, 2017
106+
---------------------
96107

97108
- Enh #14: Json job serializer (zhuravljov)
98109
- Enh: Delayed running of a job (zhuravljov)
99110

100-
## 0.9.1
111+
0.9.1 March 6, 2017
112+
-------------------
101113

102114
- Bug #13: Fixed reading of DB queue (zhuravljov)
103115

104-
## 0.9.0
116+
0.9.0 March 6, 2017
117+
-------------------
105118

106119
- Enh: Signal handlers (zhuravljov)
107120
- Enh: Add exchange for AMQP driver (airani)

UPGRADE.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,17 @@ application when you upgrade the package from one version to another.
77
Upgrade from 2.0.1 to 2.0.2
88
---------------------------
99

10-
* The [Amqp driver](docs/guide/driver-amqp.md) has been deprecated. You can still use till 3.0 release where it will be removed. It is advised to migrate to [Amqp Interop]((docs/guide/driver-amqp-interop.md)).
10+
* The [Amqp driver](docs/guide/driver-amqp.md) has been deprecated. You can still use till `2.1` release
11+
where it will be removed. It is advised to migrate to [Amqp Interop](docs/guide/driver-amqp-interop.md).
12+
13+
* Added `\yii\queue\cli\Command::isWorkerAction()` abstract method. If you use yourself console
14+
controllers to run queue listeners, you must implement it.
15+
16+
* `\yii\queue\cli\Signal` helper is deprecated and will be removed since `2.1`. The extension uses
17+
`\yii\queue\cli\SignalLoop` instead of the helper.
18+
19+
* If you had made yourself console controller to listen a queue, you must upgrade it. See native
20+
console controllers to upgrade.
1121

1222
Upgrade from 2.0.0 to 2.0.1
1323
---------------------------

0 commit comments

Comments
 (0)