From 3e3127da66d210014841bb803569e76749c6fb4c Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Mon, 7 Jul 2025 14:32:28 +0300 Subject: [PATCH 1/4] Add `yiisoft/db-implementation` to dependencies --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 43541ddec..3d9b4b8f9 100644 --- a/composer.json +++ b/composer.json @@ -44,6 +44,7 @@ "vimeo/psalm": "^5.26.1 || ^6.8.8", "yiisoft/aliases": "^3.0", "yiisoft/cache-file": "^3.2", + "yiisoft/db-implementation": "1.0.0", "yiisoft/di": "^1.3", "yiisoft/event-dispatcher": "^1.1", "yiisoft/log": "^2.1", From ac5c8385f85e38a2c3c9592febe753524f8e66f2 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Mon, 7 Jul 2025 14:36:06 +0300 Subject: [PATCH 2/4] changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 From 77fd14adc3c3b27f36b64ecaedbfa0ba859286b4 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Mon, 7 Jul 2025 16:22:47 +0300 Subject: [PATCH 3/4] add `yiisoft/dummy-provider` --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 3d9b4b8f9..ad694e7b1 100644 --- a/composer.json +++ b/composer.json @@ -46,6 +46,7 @@ "yiisoft/cache-file": "^3.2", "yiisoft/db-implementation": "1.0.0", "yiisoft/di": "^1.3", + "yiisoft/dummy-provider": "^1.1", "yiisoft/event-dispatcher": "^1.1", "yiisoft/log": "^2.1", "yiisoft/var-dumper": "^1.7", From e064be85966e00a965bf5fe337da44ad0ba059fc Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Mon, 7 Jul 2025 16:23:48 +0300 Subject: [PATCH 4/4] fix --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index ad694e7b1..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", @@ -44,7 +45,6 @@ "vimeo/psalm": "^5.26.1 || ^6.8.8", "yiisoft/aliases": "^3.0", "yiisoft/cache-file": "^3.2", - "yiisoft/db-implementation": "1.0.0", "yiisoft/di": "^1.3", "yiisoft/dummy-provider": "^1.1", "yiisoft/event-dispatcher": "^1.1",