Skip to content

Commit

Permalink
Release 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
curry684 committed Feb 24, 2024
1 parent 3ef3fcf commit 3d31d1c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
Nothing yet.

## [0.8.1] - 2024-02-24
### Added
- Support PHPoffice v2 (#330)

### Changed
- Adding empty string as a value and making column search parameter optional in request body (#323)
- Upgrade to PHPunit v11
- Fix deprecations in test suite

## [0.8.0] - 2023-12-05
### Breaking
- All interfaces and classes are now fully typed, this will likely require modifications in any custom extensions
Expand Down Expand Up @@ -180,7 +189,8 @@ or break any applications.
### Added
- Basic functionality

[Unreleased]: https://github.com/omines/datatables-bundle/compare/0.8.0...master
[Unreleased]: https://github.com/omines/datatables-bundle/compare/0.8.1...master
[0.8.1]: https://github.com/omines/datatables-bundle/compare/0.8.0...0.8.1
[0.8.0]: https://github.com/omines/datatables-bundle/compare/0.7.2...0.8.0
[0.7.2]: https://github.com/omines/datatables-bundle/compare/0.7.1...0.7.2
[0.7.1]: https://github.com/omines/datatables-bundle/compare/0.7.0...0.7.1
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
"friendsofphp/php-cs-fixer": "^v3.40.0",
"mongodb/mongodb": "^1.17",
"ocramius/package-versions": "^2.8",
"phpoffice/phpspreadsheet": "^2.0",
"phpoffice/phpspreadsheet": "^1.29.0 || ^2.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.55",
"phpstan/phpstan-doctrine": "^1.3.54",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpstan/phpstan-symfony": "^1.3.6",
"phpunit/phpunit": "^10.5.5",
"phpunit/phpunit": "^11.0.3",
"ruflin/elastica": "^6.2|^7.3.1",
"symfony/browser-kit": "^6.3|^7.0",
"symfony/css-selector": "^6.3|^7.0",
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ini name="intl.error_level" value="0"/>
<ini name="memory_limit" value="-1"/>
<env name="SHELL_VERBOSITY" value="-1"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[direct]=0&amp;verbose=0&amp;ignoreFile=./tests/known-deprecations"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[direct]=0&amp;verbose=1&amp;ignoreFile=./tests/known-deprecations"/>
<env name="KERNEL_CLASS" value="\Tests\Fixtures\AppKernel"/>
</php>
<testsuites>
Expand Down
2 changes: 2 additions & 0 deletions tests/Fixtures/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ doctrine:
orm:
auto_generate_proxy_classes: '%kernel.debug%'
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
enable_lazy_ghost_objects: true

auto_mapping: true
report_fields_where_declared: true
query_cache_driver:
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Adapter/DoctrineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function testSearchCriteriaProvider(): void
$qb = $this->createMock(QueryBuilder::class);
$qb
->method('expr')
->will($this->returnCallback(function () { return new Query\Expr(); }));
->willReturnCallback(function () { return new Query\Expr(); });

/* @var QueryBuilder $qb */
(new SearchCriteriaProvider())->process($qb, $state);
Expand Down

0 comments on commit 3d31d1c

Please sign in to comment.