Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
11b3f7c
Merge tag '1.10.1' into develop
turegjorup May 11, 2026
9bcda1a
feat: add semver filter to admin version columns
turegjorup May 18, 2026
6e3d6e5
fix: actually apply the semver filter
turegjorup May 18, 2026
a2f371c
feat: add inclusive/exclusive between operators to SemverFilter
turegjorup May 18, 2026
80aa6f2
feat: sort admin version columns in semver order
turegjorup May 18, 2026
d7e38ea
refactor: consolidate semver-sort wiring into SemverSortableCrudContr…
turegjorup May 18, 2026
93adf36
Update Changelog
turegjorup May 18, 2026
25ab300
Merge pull request #75 from itk-dev/feature/installation-semver-filter
turegjorup May 18, 2026
d9be81e
fix: SemverFilter must respect value2 with directional operators
turegjorup May 18, 2026
1fe33d5
docs: add changelog entry for #77
turegjorup May 18, 2026
038dea0
Merge pull request #77 from itk-dev/feature/semver-filter-upper-bound
turegjorup May 18, 2026
0b6b227
feat: add server.type filter and sort to Installation, Site, Domain
turegjorup May 18, 2026
c303c0d
docs: add changelog entry for #76
turegjorup May 18, 2026
33836c3
test: cover ServerTypeFilter nested-property branch
turegjorup May 18, 2026
7ca65cf
Merge pull request #76 from itk-dev/feature/server-type-filter
turegjorup May 18, 2026
72d4d24
chore: update composer dependencies, fix php-cs-fixer deprecation
turegjorup May 18, 2026
e276696
docs: add changelog entry for #78
turegjorup May 18, 2026
5dd974e
Merge pull request #78 from itk-dev/chore/update-deps-fix-deprecations
turegjorup May 18, 2026
63b61fa
release: 1.11.0
turegjorup May 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@

$config = new PhpCsFixer\Config();
$config->setFinder($finder);
// Allow running on PHP versions php-cs-fixer doesn't officially support yet
// (we run on the latest stable PHP). Replaces the deprecated
// PHP_CS_FIXER_IGNORE_ENV env var.
$config->setUnsupportedPhpVersionAllowed(true);

$config->setRules([
'@Symfony' => true,
Expand Down
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.11.0] - 2026-05-19

- [#78](https://github.com/itk-dev/devops_itksites/pull/78)
Update composer dependencies, fix php-cs-fixer deprecation
- [#77](https://github.com/itk-dev/devops_itksites/pull/77)
Fix SemverFilter: respect value2 with directional operators
- [#76](https://github.com/itk-dev/devops_itksites/pull/76)
Add server type filter and sort on Installation, Site, Domain
- [#75](https://github.com/itk-dev/devops_itksites/pull/75)
Add semver-aware filter on every admin version column, make version
column semver sortable

## [1.10.1] - 2026-05-11

- [#71](https://github.com/itk-dev/devops_itksites/pull/71)
Expand Down Expand Up @@ -164,7 +176,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [1.0.0] - 2022-09-15

[Unreleased]: https://github.com/itk-dev/devops_itksites/compare/1.10.0...HEAD
[Unreleased]: https://github.com/itk-dev/devops_itksites/compare/1.11.0...HEAD
[1.11.0]: https://github.com/itk-dev/devops_itksites/compare/1.10.1...1.11.0
[1.10.1]: https://github.com/itk-dev/devops_itksites/compare/1.10.0...1.10.1
[1.10.0]: https://github.com/itk-dev/devops_itksites/compare/1.9.2...1.10.0
[1.9.2]: https://github.com/itk-dev/devops_itksites/compare/1.9.1...1.9.2
[1.9.1]: https://github.com/itk-dev/devops_itksites/compare/1.9.0...1.9.1
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"coding-standards-apply": [
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix"
"vendor/bin/php-cs-fixer fix"
],
"coding-standards-check": [
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run"
"vendor/bin/php-cs-fixer fix --dry-run"
],
"fixtures-load": [
"bin/console hautelook:fixtures:load --no-interaction"
Expand Down
Loading
Loading