Skip to content

Commit 812ef64

Browse files
authored
Merge pull request #25 from nepster-web/alpha-3
fix: CHANGELOG.md with alpha-3 description
2 parents 2331968 + 6444fc7 commit 812ef64

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PHP Simple Queue Change Log
44
A changelog of all notable changes made to this library.
55

66
- *ENH*: Enhance or modify
7-
- *FIX*: Fix error or a small change
7+
- *FIX*: Bug fix or a small change
88

99

1010
1.0.0 under development
@@ -24,10 +24,10 @@ A changelog of all notable changes made to this library.
2424

2525

2626

27-
1.0.0-Alpha-3 ???? ??, 2021
27+
1.0.0-Alpha-3 March 31, 2021
2828
---------------------------
2929
- *ENH*: [composer.json](./composer.json) updating package versions
30-
- *ENH*: Implemented abstraction for store ([DoctrineDbalStore](./src/Store/DoctrineDbalStore.php))
30+
- *ENH*: Implemented abstraction for ([Transport](./src/Transport/DoctrineDbalTransport.php))
3131
- *ENH*: Config expanded (job registration and processor registration)
3232
- *ENH*: Refactoring class architecture (tests updating)
3333
- *ENH*: Improved documentation

src/Transport/DoctrineDbalTransport.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ public function send(Message $message): void
108108
$rowsAffected = $this->connection->insert(DoctrineDbalTableCreator::getTableName(), $dataMessage, [
109109
'id' => Types::GUID,
110110
'status' => Types::STRING,
111-
'created_at' => Types::DATETIME_IMMUTABLE,
112-
'redelivered_at' => Types::DATETIME_IMMUTABLE,
111+
'created_at' => Types::STRING,
112+
'redelivered_at' => Types::STRING,
113113
'attempts' => Types::SMALLINT,
114114
'queue' => Types::STRING,
115115
'event' => Types::STRING,

0 commit comments

Comments
 (0)