Skip to content

Commit 3081e70

Browse files
authored
Merge branch 'main' into dependabot/composer/symfony-82ad37d7c3
2 parents 3402d37 + 607086c commit 3081e70

File tree

6 files changed

+54
-53
lines changed

6 files changed

+54
-53
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
echo "MAILER_DSN=smtp://127.0.0.1:${{ job.services.mail.ports['1025'] }}" >> .env.test.local
5454
echo "MAILER_API_URL=http://127.0.0.1:${{ job.services.mail.ports['8025'] }}" >> .env.test.local
5555
- name: "Setup Node.js"
56-
uses: "actions/setup-node@v5"
56+
uses: "actions/setup-node@v6"
5757
with:
5858
node-version-file: "package.json"
5959
- name: "Setup PHP"
@@ -114,7 +114,7 @@ jobs:
114114
symfony server:start --daemon --no-tls
115115
vendor/bin/phpunit --colors=always
116116
- name: "Upload `/var` dir artifact"
117-
uses: "actions/upload-artifact@v4"
117+
uses: "actions/upload-artifact@v5"
118118
if: "${{ failure() && steps.phpunit.conclusion == 'failure' }}"
119119
with:
120120
name: "var"

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
"ext-gettext": "*",
1111
"ext-iconv": "*",
1212
"ext-pdo_mysql": "*",
13-
"doctrine/collections": "^2.3",
13+
"doctrine/collections": "^2.4",
1414
"doctrine/dbal": "^4.3",
1515
"doctrine/doctrine-bundle": "^2.16",
1616
"doctrine/doctrine-migrations-bundle": "^3.4",
1717
"doctrine/orm": "^3.5",
1818
"doctrine/persistence": "^4.1",
1919
"mledoze/countries": "^5.1",
20-
"opis/json-schema": "^2.4",
20+
"opis/json-schema": "^2.6",
2121
"psr/log": "^3.0",
2222
"symfony/asset": "^7.3",
2323
"symfony/cache-contracts": "^3.6",

composer.lock

Lines changed: 46 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"deepmerge": "^4.3.1",
1414
"echarts": "^6.0.0",
1515
"eslint": "^8.57.1",
16+
"file-loader": "^6.2.0",
1617
"flag-icons": "^7.5.0",
1718
"gridjs": "^6.2.0",
1819
"sass": "^1.80.6",

src/Telemetry/ChartSerie.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function getSqlQuery(): string
2323
(
2424
telemetry.created_at BETWEEN :startDate AND :endDate
2525
AND telemetry.glpi_version NOT LIKE '%dev'
26-
AND telemetry.glpi_version REGEXP '^(9|10)\.[0-9]+'
26+
AND telemetry.glpi_version REGEXP '^(9|10|11)\.[0-9]+'
2727
)
2828
SQL;
2929

0 commit comments

Comments
 (0)