-
Notifications
You must be signed in to change notification settings - Fork 34
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
[Chore] Merge develop
into sep-6
#1168
Merged
Merged
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
…r#1114) [ANCHOR-470] Upgrade Stellar Java SDK to `0.41.0`
### Description release 2.3.0 --------- Co-authored-by: Jamie Li <[email protected]>
Merge `release/2.3.0` to `develop`
### Description - Add `lockAndMockStatic` function - For `mockkStatic`, protect the critical section with `lockAndMockStatic`.
### Description - Fix bug of missing asset in JWT when no asset issuer is specified ### Context - Instead of parsing asset again, pass asset info to interactive url constructor ### Testing - `./gradlew test` - Added test to reproduce this behavior ### Known limitations N/A
…r#1165) ### Description Add ability to pass JVM flags to docker container ### Context Currently, we can't pass flags to the java command running in the container ### Testing Manual testing: checked passing flags is working ### Known limitations N/A
### Description Bump test version to latest
… JWT (stellar#1164) ### Description Add `home_domain` to Sep10 JWT and Sep24 interactive URL JWT ### Context To support multi-tenancy of SDP.
…lar#1167) ### Description Add @LockAndMockStatic and @LockStatic annotations. Instead of ```kotlin class MyTest { @LockAndMockStatic([NetUtil::class]) fun myTest(){ lockAndMockStatic() { // my tests here } } } ``` the test method can be annotated with `@LockAndMockStatic` ```kotlin @ExtendWith(LockAndMockTest::class) class MyTest { @LockAndMockStatic([NetUtil::class]) fun myTest(){ } } ```
philipliu
force-pushed
the
sep-6-10-19-merge
branch
from
October 19, 2023 15:08
3bd4ce7
to
3aef754
Compare
JiahuiWho
approved these changes
Oct 19, 2023
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.
Description
Merge
develop
intosep-6
.Context
sep-6
will be released soon.Testing
./gradlew test
Known limitations
N/A