Skip to content
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

preview 10 release branch #704

Merged
merged 35 commits into from
Jul 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
bff2139
update go dep xdr for preview 10
Jun 16, 2023
65cc85e
Merge branch 'soroban-xdr-next' of https://github.com/stellar/soroban…
tsachiherman Jun 19, 2023
77c2e3e
Merge branch 'main' into soroban-xdr-next
tsachiherman Jun 20, 2023
6a07004
Merge branch 'main' into soroban-xdr-next
tsachiherman Jun 21, 2023
4eff874
update
tsachiherman Jun 22, 2023
2601cf5
soroban-rpc: update code to latest XDR auth and single-function chang…
2opremio Jun 23, 2023
600ac85
Merge branch 'main' into soroban-xdr-next
tsachiherman Jun 23, 2023
3801b5c
merge with main, and update the go monorepo link.
tsachiherman Jun 23, 2023
74d3369
soroban-rpc: Adapt Go and Rust code to the latest XDR changes (#724)
2opremio Jun 27, 2023
1b67f16
Fix ledgerentry tests for new xdr (#725)
Jun 27, 2023
5c1ad33
preview10: soroban-cli xdr updates (#722)
Jun 28, 2023
8a81c8d
Merge origin/main into soroban-xdr-next (#728)
Jun 28, 2023
c0de8f9
soroban-rpc: bug workaround and test fixes (#726)
2opremio Jun 28, 2023
d673de9
updated rs-env and mono repo versions (#741)
sreuland Jul 4, 2023
296b260
soroban-rpc: Implement preflighting of BumpFootprintExpiration and Re…
2opremio Jul 4, 2023
81630b4
sync with main (#744)
tsachiherman Jul 4, 2023
910db9a
Fix bug loading contract spec in sandbox when not deployed (#745)
Jul 4, 2023
d4f85d4
soroban-rpc: State Expiration (#695)
Jul 4, 2023
3dc9bbb
soroban-rpc: Fix integration test phrasing (#747)
Jul 5, 2023
5b53678
Fix: error, enum, union types (#731)
willemneal Jul 5, 2023
e2c917a
Merge branch 'main' into soroban-xdr-next
tsachiherman Jul 5, 2023
f7c3d5a
cargo fmt
tsachiherman Jul 5, 2023
4e53180
compile: disable the fetch test (#750)
tsachiherman Jul 5, 2023
b18a52c
Fix bug in cli lab xdr decode --type parsing (#751)
Jul 6, 2023
fdafe52
soroban-cli: Verify the network passphrase provided matches the serve…
Jul 7, 2023
56c4e39
soroban-cli: fix contract deploy (#755)
Jul 7, 2023
dc60331
Bump version to 0.9.0 (#758)
github-actions[bot] Jul 10, 2023
c584da2
soroban-rpc: Add bump footprint test (#746)
2opremio Jul 10, 2023
d7a7096
Bump Core version (#759)
2opremio Jul 10, 2023
56661ed
update (#760)
tsachiherman Jul 11, 2023
ca105c0
soroban-rpc: Restore footprint fixes (#761)
2opremio Jul 11, 2023
b3267c1
update e2e tests (#762)
tsachiherman Jul 11, 2023
882dd9d
soroban-cli: Add super basic `contract bump` and `contract restore` s…
Jul 12, 2023
78a705e
soroban-cli: Implement soroban contract read with real rpc support (#…
Jul 12, 2023
05abac7
update e2e tests (#765)
tsachiherman Jul 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
runs-on: ubuntu-latest-4-cores
env:
# the gh tag of system-test repo version to run
SYSTEM_TEST_GIT_REF: v1.0.15
SYSTEM_TEST_GIT_REF: v1.0.16

# the soroban tools source code to compile and run from system test
# refers to checked out source of current git hub ref context
SYSTEM_TEST_SOROBAN_TOOLS_REF: ${{ github.workspace }}/soroban-tools

# core git ref should be latest commit for stable soroban functionality
# the core bin can either be compiled in-line here as part of ci,
SYSTEM_TEST_CORE_GIT_REF: https://github.com/stellar/stellar-core.git#soroban-preview-9-May22
SYSTEM_TEST_CORE_GIT_REF: https://github.com/stellar/stellar-core.git#875f47e247cefc25c8a4b3982ee65610e6a620e3
tsachiherman marked this conversation as resolved.
Show resolved Hide resolved
SYSTEM_TEST_CORE_COMPILE_CONFIGURE_FLAGS: "--disable-tests --enable-next-protocol-version-unsafe-for-production"
# or can use option to pull a pre-compiled image instead
# SYSTEM_TEST_CORE_IMAGE:
Expand All @@ -32,17 +32,17 @@ jobs:
SYSTEM_TEST_RUST_TOOLCHAIN_VERSION: stable

# sets the version of soroban-js-client used by tests
SYSTEM_TEST_JS_SOROBAN_CLIENT_NPM_VERSION: "0.8.1"
SYSTEM_TEST_JS_SOROBAN_CLIENT_NPM_VERSION: "0.9.0"

# system test will build quickstart image internally to use for running the service stack
# configured in standalone network mode(core, rpc)
SYSTEM_TEST_QUICKSTART_GIT_REF: https://github.com/stellar/quickstart.git#7153d3fb02e26a63b767b1f544f918febc63ca69
SYSTEM_TEST_QUICKSTART_GIT_REF: https://github.com/stellar/quickstart.git#df8303380d5869272852ddb45c39abfeb7d4c938

# triggers system test to log out details from quickstart's logs and test steps
SYSTEM_TEST_VERBOSE_OUTPUT: "true"

# the soroban test cases will compile various contracts from the examples repo
SYSTEM_TEST_SOROBAN_EXAMPLES_GIT_HASH: "v0.8.1"
SYSTEM_TEST_SOROBAN_EXAMPLES_GIT_HASH: "0bb7e11db3ddf9ed88c56c05c22e14503f97824a"
SYSTEM_TEST_SOROBAN_EXAMPLES_GIT_REPO: "https://github.com/stellar/soroban-examples.git"
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/soroban-rpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
env:
SOROBAN_RPC_INTEGRATION_TESTS_ENABLED: true
SOROBAN_RPC_INTEGRATION_TESTS_CAPTIVE_CORE_BIN: /usr/bin/stellar-core
PROTOCOL_20_CORE_DEBIAN_PKG_VERSION: 19.10.1-1310.6649f5173.focal~soroban
PROTOCOL_20_CORE_DEBIAN_PKG_VERSION: 19.11.1-1373.875f47e24.focal~soroban
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
target/
.soroban/
!test.toml

cmd/crates/soroban-spec-typescript/fixtures/ts/package-lock.json
Loading