Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f2173eb
Extract default ledger info to testutils function (#1619)
leighmcculloch Nov 14, 2025
b1286d9
Store test name and env number in env itself (#1623)
leighmcculloch Nov 18, 2025
f4573f9
Bump version to 23.1.1 (#1624)
github-actions[bot] Nov 19, 2025
77cf173
Bump version to 23.2.1 (#1626)
github-actions[bot] Nov 19, 2025
ab415a3
Deprecate protocol_version method in Ledger (#1625)
leighmcculloch Nov 19, 2025
12904c3
Disable test snapshots and expands for test_alloc (#1629)
leighmcculloch Nov 27, 2025
56dd2f5
Split hazmat feature into granular sub-features (#1639)
leighmcculloch Dec 12, 2025
2f98b90
Add Address to_payload and from_payload (#1640)
leighmcculloch Dec 14, 2025
a359900
Bump version to 23.3.0 (#1642)
github-actions[bot] Dec 15, 2025
8219d77
Simplify hazmat feature docs (#1643)
leighmcculloch Dec 15, 2025
d71bed3
Update dependencies.
fnando Dec 15, 2025
6228b53
Merge branch 'main' into stellar-xdr-v25
sisuresh Dec 16, 2025
993b7cc
Update fuzz lock file
sisuresh Dec 16, 2025
3826d73
fix protocol version
sisuresh Dec 16, 2025
91007ec
Expand tests
sisuresh Dec 16, 2025
d250e0e
Remove limit of 10 and just call unwrap
sisuresh Dec 16, 2025
524d40e
cleanup
sisuresh Dec 16, 2025
858f5bb
Check for examples toml patch at top level directory
sisuresh Dec 16, 2025
7698fc0
Check for examples toml patch at top level directory
sisuresh Dec 16, 2025
ee64581
Check for examples toml patch at top level directory
sisuresh Dec 16, 2025
f9b7c76
Fix patch logic to include workspace root Cargo.toml (#1646)
leighmcculloch Dec 16, 2025
3e1d09e
Revert "Check for examples toml patch at top level directory"
sisuresh Dec 16, 2025
be65ead
Merge remote-tracking branch 'upstream/main' into stellar-xdr-v25
sisuresh Dec 16, 2025
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
1 change: 1 addition & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ jobs:
msrv="$(make msrv)"
rustup install $msrv
rustup target add --toolchain $msrv wasm32v1-none
rustup component add rustfmt
- uses: stellar/binaries@v45
with:
name: cargo-hack
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/test-with-soroban-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,14 @@ jobs:
run: |
# TODO: Update this patch logic to use `cargo add` once this issue is resolved: https://github.com/rust-lang/cargo/issues/16101
crates=$(cd ${{ github.workspace }}/rs-soroban-sdk && cargo metadata --format-version 1 --no-deps | jq -r '.packages[] | select(.publish != []) | .name')
find . -name Cargo.toml | while read file; do

# Find Cargo.toml files to patch
local_files=$(find . -name Cargo.toml)
workspace_root=$(cargo metadata --format-version 1 --no-deps | jq -r '.workspace_root')
files=$(echo "$local_files"; echo "$workspace_root/Cargo.toml")

# Patch local files and workspace root (sort -u to deduplicate)
echo "$files" | sort -u | while read -r file; do
echo Patching "$file" ...
dir=$(dirname "$file")
for crate in $crates; do
Expand Down
Loading
Loading