Skip to content

Tags: 0xGoenka/sui

Tags

sui_v1.40.0_1735846677_ci

Toggle sui_v1.40.0_1735846677_ci's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[indexer-alt] Fix comments in pruner `to` (MystenLabs#20740)

## Description 

Clarified in the doc comment for `prune` that `to` should be exclusive
instead of inclusive.
Also updated the prune loop to make it clearer.

## Test plan 

We probably want to write some tests.
---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] gRPC:
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:

sui_v1.40.0_1735841166_rel_notes

Toggle sui_v1.40.0_1735841166_rel_notes's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[indexer-alt] Fix comments in pruner `to` (MystenLabs#20740)

## Description 

Clarified in the doc comment for `prune` that `to` should be exclusive
instead of inclusive.
Also updated the prune loop to make it clearer.

## Test plan 

We probably want to write some tests.
---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] gRPC:
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:

sui_v1.40.0_1735683368_ci

Toggle sui_v1.40.0_1735683368_ci's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[suiop][pulumi] handle non-poetry projects (MystenLabs#20751)

## Description 

Some projects don't use poetry

## Test plan 

Ran locally successfully on the services dir, which includes non-poetry
python projects.

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] gRPC:
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:

sui_v1.40.0_1735679775_ci

Toggle sui_v1.40.0_1735679775_ci's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[suiop][pulumi] handle non-poetry projects (MystenLabs#20751)

## Description 

Some projects don't use poetry

## Test plan 

Ran locally successfully on the services dir, which includes non-poetry
python projects.

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] gRPC:
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:

sui_v1.40.0_1735679048_rel_notes

Toggle sui_v1.40.0_1735679048_rel_notes's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[suiop][pulumi] handle non-poetry projects (MystenLabs#20751)

## Description 

Some projects don't use poetry

## Test plan 

Ran locally successfully on the services dir, which includes non-poetry
python projects.

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] gRPC:
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:

sui_v1.40.0_1735668335_rel_notes

Toggle sui_v1.40.0_1735668335_rel_notes's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix typos (MystenLabs#20746)

## Description 

This PR focuses on correcting typos and improving clarity in
documentation files

Signed-off-by: oliveredget <[email protected]>

sui_v1.40.0_1735587969_ci

Toggle sui_v1.40.0_1735587969_ci's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add burst mode for congestion control (MystenLabs#20631)

sui_v1.40.0_1735582885_ci

Toggle sui_v1.40.0_1735582885_ci's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update custom-indexer.mdx (MystenLabs#20717)

Typo in the docs (missing ".com")

sui_v1.40.0_1735581953_rel_notes

Toggle sui_v1.40.0_1735581953_rel_notes's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add burst mode for congestion control (MystenLabs#20631)

sui_v1.40.0_1735554101_ci

Toggle sui_v1.40.0_1735554101_ci's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
indexer-alt: treat None as NULL (MystenLabs#20704)

## Description

Pick out this change from the bigger MystenLabs#20482. `DEFAULT VALUE` is not
something we use, and treating `None` as `DEFAULT VALUE` means we have
to prepare different statements for each insert/update based on where
the `None`'s appear.

By treating `None` as `NULL`, we get to re-use prepared statements more,
and the query sampler will do a better job grouping similar
inserts/updates.

## Test plan

Run indexer on coin balances and object info, locally, for the first
10,000 checkpoints.

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] Indexer: 
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:
- [ ] REST API: