Skip to content

Commit a3f5018

Browse files
4.37.0 (#8301)
1 parent 0c4b277 commit a3f5018

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [4.37.0](https://github.com/sonata-project/SonataAdminBundle/compare/4.36.2...4.37.0) - 2025-06-09
6+
### Added
7+
- [[#8300](https://github.com/sonata-project/SonataAdminBundle/pull/8300)] Add `LastModifiedVersionStrategy` version strategy ([@onEXHovia](https://github.com/onEXHovia))
8+
9+
### Changed
10+
- [[#8297](https://github.com/sonata-project/SonataAdminBundle/pull/8297)] Rework behavior sticky elements ([@onEXHovia](https://github.com/onEXHovia))
11+
- [[#8299](https://github.com/sonata-project/SonataAdminBundle/pull/8299)] Update installation docs ([@onEXHovia](https://github.com/onEXHovia))
12+
- [[#8296](https://github.com/sonata-project/SonataAdminBundle/pull/8296)] Replace readmore-js jquery plugin to the stimulus controller ([@onEXHovia](https://github.com/onEXHovia))
13+
14+
### Fixed
15+
- [[#8295](https://github.com/sonata-project/SonataAdminBundle/pull/8295)] Handle JSON.parse exception ([@onEXHovia](https://github.com/onEXHovia))
16+
517
## [4.36.2](https://github.com/sonata-project/SonataAdminBundle/compare/4.36.1...4.36.2) - 2025-05-16
618
### Changed
719
- [[#8283](https://github.com/sonata-project/SonataAdminBundle/pull/8283)] Replaced hardcoded `sonata.admin` strings with class constant TaggedAdminInterface::ADMIN_TAG ([@symfonyaml](https://github.com/symfonyaml))

tests/Maker/AdminMakerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ protected function setUp(): void
5757
->willReturn(['bar', 'baz']);
5858

5959
$this->modelManagers = ['sonata.admin.manager.orm' => $managerOrmProxy];
60-
$this->servicesFile = \sprintf('%s.yml', random_bytes(10));
60+
$this->servicesFile = \sprintf('%s.yml', uniqid('test_', true));
6161
$this->projectDirectory = \sprintf('%s/sonata-admin-bundle/', sys_get_temp_dir());
6262
$this->filesystem = new Filesystem();
6363
}

tests/Manipulator/ServicesManipulatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class ServicesManipulatorTest extends TestCase
2828

2929
protected function setUp(): void
3030
{
31-
$this->file = \sprintf('%s/%s.yml', sys_get_temp_dir(), random_bytes(10));
31+
$this->file = \sprintf('%s/%s.yml', sys_get_temp_dir(), uniqid('test_', true));
3232
$this->servicesManipulator = new ServicesManipulator($this->file);
3333
}
3434

0 commit comments

Comments
 (0)