-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Remove markdown file update from version increment-cargo-version.sh #27851
Remove markdown file update from version increment-cargo-version.sh #27851
Conversation
@@ -1949,7 +1949,7 @@ Returns all accounts owned by the provided program Pubkey | |||
- `offset: <usize>` - offset into program account data to start comparison | |||
- `bytes: <string>` - data to match, as encoded string | |||
- `encoding: <string>` - encoding for filter `bytes` data, either "base58" or "base64". Data is limited in size to 128 or fewer decoded bytes. | |||
**NEW: This field, and base64 support generally, is only available in solana-core v1.15.0 or newer. Please omit when querying nodes on earlier versions** | |||
**NEW: This field, and base64 support generally, is only available in solana-core v1.11.2 or newer. Please omit when querying nodes on earlier versions** |
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.
Good catch!
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.
r+ reverting the Address Lookup change.
(Also, just for historical documentation purposes, I fixed the Address Lookup versions in v1.14/published docs here: #27806)
Pull request has been modified.
…27851) * Remove markdown file update from version increment-cargo-version.sh * Update doc version numbers that were incorrectly advanced by increment-cargo-version.sh * Revert incorrect doc change based on review feedback (cherry picked from commit 8f96a39) # Conflicts: # docs/src/developing/clients/jsonrpc-api.md
…27851) * Remove markdown file update from version increment-cargo-version.sh * Update doc version numbers that were incorrectly advanced by increment-cargo-version.sh * Revert incorrect doc change based on review feedback (cherry picked from commit 8f96a39) # Conflicts: # docs/src/developing/clients/jsonrpc-api.md
…27851) * Remove markdown file update from version increment-cargo-version.sh * Update doc version numbers that were incorrectly advanced by increment-cargo-version.sh * Revert incorrect doc change based on review feedback (cherry picked from commit 8f96a39) # Conflicts: # docs/src/developing/clients/jsonrpc-api.md
…backport #27851) (#27928) * Remove markdown file update from version increment-cargo-version.sh (#27851) * Remove markdown file update from version increment-cargo-version.sh * Update doc version numbers that were incorrectly advanced by increment-cargo-version.sh * Revert incorrect doc change based on review feedback (cherry picked from commit 8f96a39) # Conflicts: # docs/src/developing/clients/jsonrpc-api.md * Resolve conflict Co-authored-by: Will Hickey <[email protected]>
…backport #27851) (#27926) * Remove markdown file update from version increment-cargo-version.sh (#27851) * Remove markdown file update from version increment-cargo-version.sh * Update doc version numbers that were incorrectly advanced by increment-cargo-version.sh * Revert incorrect doc change based on review feedback (cherry picked from commit 8f96a39) # Conflicts: # docs/src/developing/clients/jsonrpc-api.md * Resolve merge conflict Co-authored-by: Will Hickey <[email protected]>
…backport #27851) (#27927) * Remove markdown file update from version increment-cargo-version.sh (#27851) * Remove markdown file update from version increment-cargo-version.sh * Update doc version numbers that were incorrectly advanced by increment-cargo-version.sh * Revert incorrect doc change based on review feedback (cherry picked from commit 8f96a39) # Conflicts: # docs/src/developing/clients/jsonrpc-api.md * Resolve merge conflict Co-authored-by: Will Hickey <[email protected]>
Problem
increment-cargo-version.sh increments version numbers in markdown files. This behavior is no longer necessary and sometimes increments version numbers that should be static.
Some discussion here:
https://discord.com/channels/428295358100013066/560503042458517505/1020445231004532810
Summary of Changes