Skip to content

Commit 4402754

Browse files
authored
Merge pull request #79 from itk-dev/release/1.11.0
release/1.11.0
2 parents 8126bb9 + 63b61fa commit 4402754

21 files changed

Lines changed: 1019 additions & 185 deletions

.php-cs-fixer.dist.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414

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

1822
$config->setRules([
1923
'@Symfony' => true,

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.11.0] - 2026-05-19
11+
12+
- [#78](https://github.com/itk-dev/devops_itksites/pull/78)
13+
Update composer dependencies, fix php-cs-fixer deprecation
14+
- [#77](https://github.com/itk-dev/devops_itksites/pull/77)
15+
Fix SemverFilter: respect value2 with directional operators
16+
- [#76](https://github.com/itk-dev/devops_itksites/pull/76)
17+
Add server type filter and sort on Installation, Site, Domain
18+
- [#75](https://github.com/itk-dev/devops_itksites/pull/75)
19+
Add semver-aware filter on every admin version column, make version
20+
column semver sortable
21+
1022
## [1.10.1] - 2026-05-11
1123

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

165177
## [1.0.0] - 2022-09-15
166178

167-
[Unreleased]: https://github.com/itk-dev/devops_itksites/compare/1.10.0...HEAD
179+
[Unreleased]: https://github.com/itk-dev/devops_itksites/compare/1.11.0...HEAD
180+
[1.11.0]: https://github.com/itk-dev/devops_itksites/compare/1.10.1...1.11.0
181+
[1.10.1]: https://github.com/itk-dev/devops_itksites/compare/1.10.0...1.10.1
168182
[1.10.0]: https://github.com/itk-dev/devops_itksites/compare/1.9.2...1.10.0
169183
[1.9.2]: https://github.com/itk-dev/devops_itksites/compare/1.9.1...1.9.2
170184
[1.9.1]: https://github.com/itk-dev/devops_itksites/compare/1.9.0...1.9.1

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@
114114
"assets:install %PUBLIC_DIR%": "symfony-cmd"
115115
},
116116
"coding-standards-apply": [
117-
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix"
117+
"vendor/bin/php-cs-fixer fix"
118118
],
119119
"coding-standards-check": [
120-
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run"
120+
"vendor/bin/php-cs-fixer fix --dry-run"
121121
],
122122
"fixtures-load": [
123123
"bin/console hautelook:fixtures:load --no-interaction"

0 commit comments

Comments
 (0)