Unify symfony - #4153
Conversation
|
Benchmarks [ tracer ]Benchmark execution time: 2026-09-03 12:22:15 Comparing candidate commit 80b703e in PR branch Found 1 performance improvements and 2 performance regressions! Performance is the same for 190 metrics, 1 unstable metrics.
|
fdec45b to
802abe6
Compare
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 80b703ead8
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| assert endpoints.find { it.path == '/telemetry' && it.method == 'GET' && it.operationName == 'http.request' && it.resourceName == 'GET /telemetry' } != null | ||
| assert endpoints.find { it.path == '/lucky/number' && it.method == 'GET' && it.operationName == 'http.request' && it.resourceName == 'GET /lucky/number' } != null | ||
| assert endpoints.find { it.path == '/lucky/fail' && it.method == 'GET' && it.operationName == 'http.request' && it.resourceName == 'GET /lucky/fail' } != null | ||
| assert endpoints.find { it.path == '/_error/{code}.{_format}' && it.method == 'GET' && it.operationName == 'http.request' && it.resourceName == 'GET /_error/{code}.{_format}' } != null |
There was a problem hiding this comment.
Expect the UTF-8 route instead of the dev-only error route
When this endpoint-discovery check runs in the AppSec container, docker-init.sh sets APP_ENV=prod for both initialization and Apache requests, while config/routes/framework.yaml registers /_error/{code}.{_format} only under when@dev. The collected endpoints therefore cannot satisfy this assertion; the newly added /café/{item} route is the endpoint present in its place, so the assertion should reflect the production route set.
Useful? React with 👍 / 👎.
|
/merge |
|
View all feedbacks in Devflow UI.
It will be processed automatically as soon as GitHub reports it as mergeable. View in MergeQueue UI.
devflow unqueued this merge request: It did not become mergeable within the expected time |
|
/merge |
|
View all feedbacks in Devflow UI.
PR already in the queue with status waiting |
|
/code blockers |
|
View all feedbacks in Devflow UI.
Checking merge blockers for #4153... If you need support, contact us on Slack #devflow!
Could not check merge blockers: status 504: {"errors":[{"status":"504","title":"Gateway Timeout"}]} To get help about command usage, write If you need support, contact us on Slack #devflow with those details! |
|
/merge |
|
View all feedbacks in Devflow UI.
It will be processed automatically as soon as GitHub reports it as mergeable. View in MergeQueue UI.
devflow unqueued this merge request: It did not become mergeable within the expected time |
Description
This PR: Symfony 6.2 as the second step from #4149
appsec/tests/integration/src/test/www/symfony62/copytests/Frameworks/Symfony/Version_6_2/docker-init.shso the AppSec container can bootstrap the app (composer install, cache clear, SQLite DB setup)Next steps
Not doing