-
Notifications
You must be signed in to change notification settings - Fork 220
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
v0.3.3: Atlantis #1573
Merged
Merged
v0.3.3: Atlantis #1573
Conversation
This file contains 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
Codecov Report
@@ Coverage Diff @@
## main #1573 +/- ##
=========================================
+ Coverage 0 87.41% +87.41%
=========================================
Files 0 133 +133
Lines 0 64133 +64133
=========================================
+ Hits 0 56063 +56063
- Misses 0 8070 +8070 |
seanyoung
force-pushed
the
atlantis
branch
3 times, most recently
from
October 22, 2023 21:16
7b06770
to
2922678
Compare
Signed-off-by: Sean Young <sean@mess.org>
This release improves the Solana developer experience, since now required accounts can be specified using annotations. There are many fixes all over the code base. ### Added - **Solana** the required accounts for instructions can now be specified using function annotations. [LucasSte](https://github.com/LucasSte) ``` contract Foo { @account(oneAccount) @signer(mySigner) @mutableAccount(otherAccount) @mutableSigner(otherSigner) function bar() external returns (uint64) {} } ``` - The language server can now format Solidity source code using the `forge-fmt` crate. [chioni16](https://github.com/chioni16) - The langauge server can now do go references, go to implementation, and go to type definition. [chioni16](https://github.com/chioni16) ### Fixed - **Solana** the data field of AccountInfo can now be modified. [LucasSte](https://github.com/LucasSte) - The vscode extension now uses the solang binary in the path, if available. [seanyoung](https://github.com/seanyoung) ### Changed - **breaking** **Solana** the contract Solidity type can no longer be used. This type used to represent a single address, but this does not make sense as there are many accounts associated with a contract call. [LucasSte](https://github.com/LucasSte) Signed-off-by: Sean Young <sean@mess.org>
This is an overstatement. |
LucasSte
approved these changes
Oct 23, 2023
Co-authored-by: Lucas Steuernagel <38472950+LucasSte@users.noreply.github.com> Signed-off-by: Sean Young <sean@mess.org>
xermicus
approved these changes
Oct 24, 2023
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.
Added my portion to the release note
Co-authored-by: Cyrill Leutwiler <bigcyrill@hotmail.com> Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Sean Young <sean@mess.org>
seanyoung
added a commit
that referenced
this pull request
Oct 26, 2023
The [v0.3.3 PR](#1573) did not update the version of the solang crate 🙄 This is a bit embarrassing! Signed-off-by: Sean Young <sean@mess.org>
stainless-app bot
pushed a commit
to 2lambda123/hyperledger-solang
that referenced
this pull request
Feb 4, 2024
The [v0.3.3 PR](hyperledger-solang/solang#1573) did not update the version of the solang crate 🙄 This is a bit embarrassing! Signed-off-by: Sean Young <sean@mess.org>
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.
This release improves the Solana developer experience, since now required
accounts can be specified using annotations. For Polkadot, compatibility with
Ethereum Solidity has been increased further, it is now possible to write
EIP-1967 compatible proxy contracts.
There are many fixes all over the code base.
Added
forge-fmt
crate. chioni16definition. chioni16
Panic
errors can now be caught in try-catch statements xermicusaddress.code
builtin xermicusFixed
xermicus seanyoung
return a = b
. xermicusstorage
location. xermicusChanged
used to represent a single address, but this does not make sense as there are many
accounts associated with a contract call. LucasSte