Replaced $(...) instead of legacy backticked ... - #243
Merged
Merged
Conversation
Backtick command substitution `...` is legacy syntax with several issues. 1. It has a series of undefined behaviors related to quoting in POSIX. 2. It imposes a custom escaping mode with surprising results. 3. It's exceptionally hard to nest. $(...) command substitution has none of these problems, and is therefore strongly encouraged.
Member
|
THANK YOU! All changes merged 🥳 Please reach out to me on our Discord server if you would like me to send you some cool Appwrite stickers and magnets! To say thank you, we have just invited you to join the Appwrite organization on GitHub. Accept the invite by visiting https://github.com/orgs/appwrite/invitation. By joining our team, you will officially be an Appwrite maintainer on GitHub. You can change your membership visibility settings, so your new Appwrite team membership will show up on your personal GitHub profile. |
ChiragAgg5k
added a commit
that referenced
this pull request
Sep 9, 2026
Bumps the requirement from ^0.10 to ^0.11 (installed 0.11.1). The 0.10.2..0.11.1 range is additive only — it adds the OAuth2 AuthorizationDetails reader and its AuthorizationDetail enum (utopia-php/monorepo #242, #243); no existing class changed — so nothing in server-ce needs updating. The lock change is limited to utopia-php/auth. Unblocks consumers that read a token's RFC 9396 authorization_details through the new reader, in particular the Cloud OAuth2 access-token authorization path.
pull Bot
pushed a commit
to AmirulAndalib/appwrite
that referenced
this pull request
Sep 26, 2026
…n-details-list-shape fix(auth): reject non-list authorization_details shapes
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.
Backtick command substitution
...is legacy syntax with severalissues.
$(...) command substitution has none of these problems, and is therefore
strongly encouraged.