diff --git a/CHANGELOG.md b/CHANGELOG.md index 297874903..2498dfb15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -103,7 +103,8 @@ - Chg #985: Rename `insertWithReturningPks()` to `insertReturningPks()` in `CommandInterface` and `DMLQueryBuilderInterface` (@Tigrov) - Enh #992: Add optional type casting to `DataReaderInterface` using columns (@Tigrov) - New #988: Add `CaseExpression` and `CaseExpressionBuilder` to build `CASE-WHEN-THEN-ELSE` SQL expressions (@Tigrov) -- Enh #991: Improve types in `ConnectionInterface::transaction()` (@kikara) +- Enh #991: Improve types in `ConnectionInterface::transaction()` (@kikara) +- Chg #998: Add `yiisoft/db-implementation` virtual package as dependency (@vjik) ## 1.3.0 March 21, 2024 diff --git a/composer.json b/composer.json index 43541ddec..c7e35ecf0 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,8 @@ "php": "8.1 - 8.4", "ext-pdo": "*", "psr/log": "^2.0|^3.0", - "psr/simple-cache": "^2.0|^3.0" + "psr/simple-cache": "^2.0|^3.0", + "yiisoft/db-implementation": "1.0.0" }, "require-dev": { "maglnet/composer-require-checker": "^4.7.1", @@ -45,6 +46,7 @@ "yiisoft/aliases": "^3.0", "yiisoft/cache-file": "^3.2", "yiisoft/di": "^1.3", + "yiisoft/dummy-provider": "^1.1", "yiisoft/event-dispatcher": "^1.1", "yiisoft/log": "^2.1", "yiisoft/var-dumper": "^1.7",