Skip to content

Commit 4cdba19

Browse files
committed
Prepare v2.0.10 release
1 parent b9d893c commit 4cdba19

4 files changed

Lines changed: 36 additions & 2 deletions

File tree

docs/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121

2222
---
2323

24+
## [2.0.10] - 2026-02-21
25+
26+
### Fixed
27+
28+
- **Symfony 7.1+:** `DoctrineEncryptExtension` now extends `Symfony\Component\DependencyInjection\Extension\Extension` instead of `Symfony\Component\HttpKernel\DependencyInjection\Extension`. The latter is considered internal since Symfony 7.1 and will be deprecated in 8.1; this change removes the deprecation notice.
29+
30+
### Changed
31+
32+
- **Documentation:** [COMMANDS.md](COMMANDS.md) — batchSize default for encrypt/decrypt database is documented as 5 (from config); link to CONFIGURATION added.
33+
34+
No upgrade steps required from 2.0.9. See [UPGRADING.md](UPGRADING.md#upgrading-to-2010).
35+
36+
---
37+
2438
## [2.0.9] - 2026-02-21
2539

2640
### Changed

docs/COMMANDS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ php bin/console doctrine:encrypt:database
3939
Optional arguments:
4040

4141
- **config** — Config alias to use (e.g. `default`, `personal_data`, `financial_data`). If omitted, all configs are processed in turn.
42-
- **batchSize** — Number of entities to flush per batch (default: 20).
42+
- **batchSize** — Number of entities to flush per batch (default from config: 5; see [Configuration](CONFIGURATION.md)).
4343

4444
Options:
4545

@@ -64,7 +64,7 @@ php bin/console doctrine:decrypt:database
6464
Optional arguments:
6565

6666
- **config** — Config alias to use (e.g. `default`, `personal_data`). If omitted, all configs are processed in turn.
67-
- **batchSize** — Number of entities to flush per batch (default: 20).
67+
- **batchSize** — Number of entities to flush per batch (default from config: 5; see [Configuration](CONFIGURATION.md)).
6868

6969
Options:
7070

docs/RELEASE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@
3232

3333
---
3434

35+
## v2.0.10 (2026-02-21)
36+
37+
- **Scope:** (1) DoctrineEncryptExtension extends `DependencyInjection\Extension\Extension` instead of `HttpKernel\DependencyInjection\Extension` (fixes Symfony 7.1+ internal/deprecation). (2) COMMANDS.md: batchSize default 5 and link to CONFIGURATION.
38+
- **Checklist:** CHANGELOG and UPGRADING updated; run `make qa`; commit; tag `v2.0.10`; push branch and tag.
39+
40+
---
41+
3542
## v2.0.9 (2026-02-21)
3643

3744
- **Scope:** Code style (PHP-CS-Fixer) and internal refactors across src/tests/demos; demo apps and demo/Makefile updates; CI and Makefile/docker-compose adjustments. No API or config changes.

docs/UPGRADING.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,19 @@ This guide explains how to upgrade the Doctrine Encrypt Bundle between versions.
2929

3030
---
3131

32+
## Upgrading to 2.0.10
33+
34+
No breaking changes. This release fixes the Symfony 7.1+ deprecation (Extension class) and corrects COMMANDS.md (batchSize default). No changes required in your application.
35+
36+
Update as usual:
37+
38+
```bash
39+
composer update nowo-tech/doctrine-encrypt-bundle
40+
php bin/console cache:clear
41+
```
42+
43+
---
44+
3245
## Upgrading to 2.0.9
3346

3447
No breaking changes. This release applies code style (PHP-CS-Fixer), internal refactors, and demo/CI updates; no changes required in your application.

0 commit comments

Comments
 (0)