[release/9.0] Update dependencies from dotnet/arcade#2
Conversation
…127.5 On relative base path root Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor From Version 9.0.0-beta.25562.4 -> To Version 9.0.0-beta.25577.5
…otnet#64326) (cherry picked from commit c4f8522)
…meUser (dotnet#59992) (cherry picked from commit 2f9d787)
…sLiteral test Port of same change from 8.0 in dotnet#63565
…211.4 On relative base path root Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor From Version 9.0.0-beta.25562.4 -> To Version 9.0.0-beta.25611.4
…226.6 On relative base path root Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor From Version 9.0.0-beta.25562.4 -> To Version 9.0.0-beta.25626.6
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: b71ad44079
ℹ️ 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.True( | ||
| ParseErrorMessageRegexOld.IsMatch(logs[0].Message) && | ||
| ParseErrorMessageRegexNew.IsMatch(logs[0].Message), |
There was a problem hiding this comment.
Use OR when matching alternate CSP log patterns
The assertion currently requires the log message to match both CSP regex variants, but the two patterns are mutually exclusive ("Refused to frame" vs "Framing"). In any environment where the browser emits one of these formats, the other regex will fail, causing this test to fail even when the CSP error is correct. The failure will occur whenever the message matches exactly one of the two known formats, which is the intended scenario per the error string.
Useful? React with 👍 / 👎.
Benchmark PR from agentic-review-benchmarks#2