Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
07d858c
Compile runtime backtracing to ASM and compile-time to ABI JSON
ironcev Jul 20, 2025
5803c18
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 22, 2025
137331f
Adjust `TypeCheckContext::find_method_for_tyoe`
ironcev Sep 22, 2025
d206565
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 22, 2025
31b54df
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 23, 2025
c358762
Adjust methods in `method_lookup`
ironcev Sep 23, 2025
35bcb56
Fix Clippy issues
ironcev Sep 23, 2025
2cf3068
Add ignoring lines to `.typos.toml`
ironcev Sep 23, 2025
ab17a54
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 23, 2025
9338cc2
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 23, 2025
2d25ab3
Bump to `fuel-abi-types` v0.15.2 and `fuels` v0.75
ironcev Sep 23, 2025
8d61a9c
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 24, 2025
a1746b9
Fix SDK harness CI build issue
ironcev Sep 24, 2025
8e30a62
Allow x.y.z dependency for `fuel-abi-types`
ironcev Sep 24, 2025
3fdb040
Fix `wiremock` build issue
ironcev Sep 24, 2025
b17b84f
Remove unnecessary `.to_string()` call
ironcev Sep 24, 2025
5367bcf
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 24, 2025
7dea201
Fix Clippy and fmt issues
ironcev Sep 24, 2025
95419a8
Downgrade `tracing-subscriber` to 0.3.19
ironcev Sep 24, 2025
092c87f
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 25, 2025
bfe3e8c
Fix failing tests
ironcev Sep 25, 2025
11612d6
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 25, 2025
b8951fe
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 26, 2025
b093e33
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 26, 2025
d28a3cf
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 27, 2025
c4f92ac
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 29, 2025
10394aa
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Sep 30, 2025
2b70ea1
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Oct 1, 2025
a85da95
Add tracking TODO for supporting recursive functions
ironcev Oct 1, 2025
38a85de
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Oct 1, 2025
a77087b
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Oct 2, 2025
362d81b
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Oct 2, 2025
244c764
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Oct 3, 2025
1da3028
Update Cargo.lock
ironcev Oct 3, 2025
cf41a42
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Oct 6, 2025
32a907f
Adjust tests and Cargo.lock affected by merge from master
ironcev Oct 6, 2025
0f0e26c
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Oct 8, 2025
2ac1333
Use hardcoded values for `MAX_PANIC_ERROR_CODE` and `MAX_PANICKING_CA…
ironcev Oct 8, 2025
456bb53
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
ironcev Oct 9, 2025
2edccd2
Update `Cargo.lock`s and enable `panic_string_slices` test
ironcev Oct 9, 2025
eca9b41
Adjust ABI oracles in failing tests
ironcev Oct 9, 2025
b6d91e1
removed fuel-abi-types patch version
zees-dev Oct 9, 2025
8a0309d
updated fuels-rs deps 0.75.0 -> 0.75.1
zees-dev Oct 9, 2025
78f4f39
Merge branch 'master' into ironcev/abi-backtracing-compile-backtracing
zees-dev Oct 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/scripts/check-dep-versions/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const REQUIRED_XYZ_DEP: &str = "fuel-core-client";

// Dependency names allowed (but not required) to use x.y.z format
// Add names of common dev-dependencies here if you want to allow x.y.z for them
const ALLOWED_XYZ_DEPS: &[&str] = &["etk-asm", "etk-ops", "dap"];
const ALLOWED_XYZ_DEPS: &[&str] = &["etk-asm", "etk-ops", "dap", "fuel-abi-types"];

// Regex to strictly match semantic version x.y.z (no prefixes like ^, ~)
const XYZ_REGEX_STR: &str = r"^\d+\.\d+\.\d+([\w.-]*)$"; // Allow suffixes like -alpha, .1
Expand Down
4 changes: 4 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ extend-ignore-identifiers-re = [
"typ",
]

extend-ignore-re = [
"(?Rm)^.*(#|//)\\s*typos:ignore$",
]

[files]
extend-exclude = [
"docs/book/theme/highlight.js",
Expand Down
Loading
Loading