chore: dev to main merge#843
Merged
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- postcss: 8.5.6 -> 8.5.13 (fixes GHSA-qx2v-qp2m-jg93 - XSS via unescaped </style> in CSS stringify output)
…Header to use LoginButton
…Context to fetch user email from claims
… remove AuthContext
…-label on LoginButton buttons Agent-Logs-Url: https://github.com/microsoft/content-generation-solution-accelerator/sessions/22315c19-138c-49fc-9d54-060a30972272 Co-authored-by: Akhileswara-Microsoft <234037885+Akhileswara-Microsoft@users.noreply.github.com>
…icrosoft/content-generation-solution-accelerator into LogoutFunctionality_Akhileswar
docs: Image update
fix: resolve dependabot alert
…ontainer needs time to restart
feat: implementation of logout functionality
Avijit-Microsoft
approved these changes
May 11, 2026
Roopan-Microsoft
approved these changes
May 11, 2026
Contributor
|
🎉 This PR is included in version 2.5.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
This pull request introduces several improvements to backend health checking, error handling, and documentation, along with a minor dependency update. The main focus is on making the backend API health check more robust and improving the developer experience when the backend is not configured.
Backend health check improvements:
check_admin_api_healthfunction inscripts/post_deploy.pyto increase the number of retries and delay between retries, and to validate that the response is from the actual backend API (by checking for a JSON response with{"status": "healthy"}), not just a frontend fallback. Improved error messages for various failure scenarios, such as receiving HTML instead of JSON or a misconfigured proxy. [1] [2]API proxy error handling:
src/App/server/server.jsto provide a clear JSON error response with status 503 when theBACKEND_URLenvironment variable is not set, instead of falling through to the frontend SPA. This makes misconfiguration easier to diagnose. [1] [2]Dependency update:
postcssdependency from version 8.5.6 to 8.5.13 insrc/App/package-lock.jsonfor security and stability.Documentation:
docs/create_new_app_registration.mdto clarify that the user should click "+ Add Redirect URI" instead of "+ Add a platform".Does this introduce a breaking change?
Golden Path Validation
Deployment Validation