Skip to content

Commit be52d4c

Browse files
github-actions[bot]github-actions[bot]
github-actions[bot]
authored and
github-actions[bot]
committed
updated
1 parent 4505613 commit be52d4c

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

changelog.markdown

+15
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,21 @@ title: Codeception Changelog
99

1010

1111

12+
### module-doctrine 3.2.0: 3.2.0
13+
14+
Released by [![](https://avatars.githubusercontent.com/u/64917965?v=4&s=16) TavoNiievez](https://github.com/TavoNiievez) on 2025/04/25 05:14:21 / [Repository](https://github.com/Codeception/module-doctrine) / [Releases](https://github.com/Codeception/module-doctrine/releases)
15+
16+
17+
18+
## What's Changed
19+
* Update Doctrine.php: Adding upgrade instructions by **[ThomasLandauer](https://github.com/ThomasLandauer)** in https://github.com/Codeception/module-doctrine/pull/29
20+
* Declare nullable parameter types explicitly by **[W0rma](https://github.com/W0rma)** in https://github.com/Codeception/module-doctrine/pull/31
21+
* Fix support for doctrine/dbal v2 by **[W0rma](https://github.com/W0rma)** in https://github.com/Codeception/module-doctrine/pull/32
22+
* PHP 8.4: Fix E_STRICT deprecation by **[W0rma](https://github.com/W0rma)** in https://github.com/Codeception/module-doctrine/pull/34
23+
24+
**Full Changelog**: https://github.com/Codeception/module-doctrine/compare/3.1.0...3.2.0
25+
26+
1227
### module-asserts 3.1.0: 3.1.0
1328

1429
Released by [![](https://avatars.githubusercontent.com/u/64917965?v=4&s=16) TavoNiievez](https://github.com/TavoNiievez) on 2025/04/24 17:21:11 / [Repository](https://github.com/Codeception/module-asserts) / [Releases](https://github.com/Codeception/module-asserts/releases)

docs/modules/Doctrine.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,15 @@ composer require --dev codeception/module-doctrine
1919

2020

2121

22+
Upgrading from Module "Doctrine2":
23+
* In your `composer.json`: Replace `"codeception/module-doctrine2"` with `"codeception/module-doctrine"`
24+
* In your `Acceptance.suite.yml`, `Functional.suite.yml`, and `Unit.suite.yml`: Replace `- Doctrine2:` with `- Doctrine:`
25+
* In any file in `Support/Helper/`: Change `$this->getModule('Doctrine2')` to `$this->getModule('Doctrine')`
26+
2227
Access the database using [Doctrine ORM](https://docs.doctrine-project.org/projects/doctrine-orm/en/latest/).
2328

2429
When used with Symfony or Zend Framework 2, Doctrine's Entity Manager is automatically retrieved from Service Locator.
25-
Set up your `functional.suite.yml` like this:
30+
Set up your `Functional.suite.yml` like this:
2631

2732
{% highlight yaml %}
2833

0 commit comments

Comments
 (0)