-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: Add deprecated warning #1604
base: main
Are you sure you want to change the base?
Conversation
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2025-01-09 12:48:35 CET |
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2025-01-09 12:48:43 CET |
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2025-01-09 12:48:42 CET |
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2025-01-09 12:48:43 CET |
@@ -102,6 +111,14 @@ | |||
{options} | |||
required | |||
hideRequired /> | |||
{#if isDeprecated} | |||
<Alert type="warning"> | |||
<span slot="title">Your runtime is deprecated</span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<span slot="title">Your runtime is deprecated</span> | |
<span slot="title">Your runtime version is deprecated</span> |
<Alert type="warning"> | ||
<span slot="title">Your runtime is deprecated</span> | ||
<p> | ||
Please upgrade to newer versio of the runtime, because on April 1st 2024, builds for deprecated runtimes will be disabled. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please upgrade to newer versio of the runtime, because on April 1st 2024, builds for deprecated runtimes will be disabled. | |
New builds for your function will be disabled if you don't update to a newer version before April 1, 2025. |
What does this PR do?
Adds UI support for deprecated runtimes
Test Plan
Manual QA
(PHP 8.0 is deprecated)
Related PRs and Issues
appwrite/appwrite#9197
Have you read the Contributing Guidelines on issues?
Yes