Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
fff42bc
test: add database checker to inspect receipts, values and ravs for V…
neithanmo Aug 16, 2025
eaa69fc
feat(monitor): add escrow accounts utility methods
neithanmo Aug 20, 2025
fc43d5c
fix(tap-agent): fix allocation type mapping based on horizon detection
neithanmo Aug 20, 2025
c6e315c
fix(tap-agent): fix signer address encoding for receipt queries
neithanmo Aug 20, 2025
d6b43a6
chore(tap-agent): impprove RAV request error messages with database-t…
neithanmo Aug 20, 2025
b8fd349
test(tracker): improve logging for testing and debugging
neithanmo Aug 20, 2025
64cbc12
feat: add comprehensive logging for escrow accounts and allocation tr…
neithanmo Aug 20, 2025
8fe114b
test: optimize TAP configuration for development testing
neithanmo Aug 20, 2025
1e129b8
build: update tap_core and tap_aggregator deps
neithanmo Aug 21, 2025
57408a4
feat(tap): add V2 domain separator support across core components
neithanmo Aug 21, 2025
a6ca08e
feat(service): implement dual domain separator architecture
neithanmo Aug 21, 2025
3dd2ffe
fix(tap): use correct domain separator for V2 receipt storage
neithanmo Aug 21, 2025
1698952
feat(auth): add dual TAP receipt authorization middleware
neithanmo Aug 21, 2025
0dc1bdf
feat(middleware): add V2 domain separator to sender middleware
neithanmo Aug 21, 2025
ff20784
feat(tap-agent): integrate V2 domain separator throughout agent
neithanmo Aug 21, 2025
859072f
test: update TAP validation checks for dual domain support
neithanmo Aug 21, 2025
1f4146c
test: add dual domain support to integration and service tests
neithanmo Aug 21, 2025
a882819
test: fix struct name in escrow regex
neithanmo Aug 21, 2025
a48574d
test: add database handler to check for new receipts, RAV
neithanmo Aug 21, 2025
3d777f5
test: add a new horizon tests
neithanmo Aug 21, 2025
c9430e4
feat(config): add receipts_verifier_address_v2 configuration field
neithanmo Aug 22, 2025
be865d6
feat(config): implement fail-safe dual domain separators for V2 receipts
neithanmo Aug 22, 2025
5e7e0c1
refactor(config): remove no-longer used configuration files
neithanmo Aug 22, 2025
1d27b05
refactor(docker): remove static config files and use dynamic generation
neithanmo Aug 22, 2025
01622a4
fix: cargo fmt
neithanmo Aug 22, 2025
e6aeb9a
fix(clippy): fix unused function and other clippy warnings
neithanmo Aug 22, 2025
ff0b52e
ci: add missing license
neithanmo Aug 22, 2025
f3b0f7d
test: update error snapshot
neithanmo Aug 22, 2025
be4b685
test: fix start script to use tap verifier address
neithanmo Aug 25, 2025
414b0ae
test: fix type in command that retrieves tap escrow contract address
neithanmo Aug 25, 2025
c711d5b
feat(config): add new subgraph_service field to config.horizon
neithanmo Sep 1, 2025
d07134a
chore: improve logging
neithanmo Sep 1, 2025
295a78b
test: add new setting to services configuration
neithanmo Sep 1, 2025
57555e6
fix: update config examples
neithanmo Sep 1, 2025
a681871
fix(test): Some fixes to funding script for V2
neithanmo Sep 1, 2025
8babd7e
fix(tests): include subgraph_service address book
neithanmo Sep 1, 2025
399ea4c
build: use latest tap_aggregator version
neithanmo Sep 2, 2025
5f98e6a
ops: Update rust version in containers
neithanmo Sep 2, 2025
11bd525
ci: update Rust version in workflows
neithanmo Sep 2, 2025
be58818
fix(tap-agent): derive allocation_id from V2 collection_id in Allocat…
neithanmo Sep 2, 2025
f8120db
fix(tap-agent): Use subgraph service address in last_rav query
neithanmo Sep 2, 2025
a0ec278
chore(service): log better the any error while parsing receipts headers
neithanmo Sep 2, 2025
d105332
chore: improve logging
neithanmo Sep 2, 2025
c6107f9
remove member from workspace
neithanmo Sep 2, 2025
78439db
test(tap): reduce amount willing to lose to improve testing
neithanmo Sep 2, 2025
b162506
feat(integration-tests): add centralized environment configuration
neithanmo Sep 2, 2025
ac0e7aa
refactor(integration-tests): migrate RAV tests to use database checker
neithanmo Sep 2, 2025
72e9760
chore(integration-tests): remove unused test function and improve log…
neithanmo Sep 2, 2025
9283229
fix(test-setup): improve service synchronization and reliability
neithanmo Sep 2, 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
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: cargo fmt
runs-on: ubuntu-latest
container:
image: rust:1.86-bookworm
image: rust:1.87-bookworm
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- run: |
Expand All @@ -34,7 +34,7 @@ jobs:
ports:
- 5432:5432
container:
image: rust:1.86-bookworm
image: rust:1.87-bookworm
env:
DATABASE_URL: postgres://postgres@postgres:5432
steps:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
name: cargo clippy
runs-on: ubuntu-latest
container:
image: rust:1.86-bookworm
image: rust:1.87-bookworm
env:
DATABASE_URL: postgres://postgres@postgres:5432
SQLX_OFFLINE: true
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
name: cargo test and coverage
runs-on: ubuntu-latest
container:
image: rust:1.86-bookworm
image: rust:1.87-bookworm
options: --privileged -v /var/run/docker.sock:/var/run/docker.sock
env:
CI: true
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
name: cargo test docs code snippets
runs-on: ubuntu-latest
container:
image: rust:1.86-bookworm
image: rust:1.87-bookworm
options: --privileged -v /var/run/docker.sock:/var/run/docker.sock
env:
SQLX_OFFLINE: true
Expand Down
Loading
Loading