Skip to content

Commit

Permalink
chore: relese v0.2.9 (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
kobayurii authored Jun 4, 2024
1 parent d4766c2 commit 01905b7
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 44 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/near/read-rpc/compare/v0.2.8...HEAD)
## [Unreleased](https://github.com/near/read-rpc/compare/v0.2.9...HEAD)

## [0.2.9](https://github.com/near/read-rpc/releases/tag/v0.2.8)
### Supported Nearcore Version
- nearcore v1.39.1
- rust v1.77.0

### What's Changed
* Refactoring, extending and improving the metrics
* Refactoring and improving query.function_call
* Added `view_receipt_record` rpc endpoint



## [0.2.8](https://github.com/near/read-rpc/releases/tag/v0.2.8)
### Supported Nearcore Version
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.2.8"
version = "0.2.9"
authors = ["Near Inc <[email protected]>"]
edition = "2021"
rust-version = "1.77.0"
Expand Down
67 changes: 34 additions & 33 deletions docs/RPC_METHODS.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
| **Method** | **status** | **Note** |
|----------------------------------|---------------|-----------------------------------------------------------------------------|
| view_state_paginated | Included | Custom method. See details [here](../docs/CUSTOM_RPC_METHODS.md) |
| query.view_account | Included | |
| query.view_code | Included | |
| query.view_state | Included | |
| query.call_function | Included | |
| query.view_access_key | Included | |
| query.view_access_key_list | Proxy | Planned. It will be implemented in the future. |
| block | Included | |
| broadcast_tx_async | Proxy | PROXY_ONLY. Immediately proxy to a real RPC. |
| broadcast_tx_commit | Proxy | PROXY_ONLY. Immediately proxy to a real RPC. |
| chunk | Included | |
| gas_price | Included | |
| health | Included | Health includes the info about the syncing state of the node of rpc-server. |
| light_client_proof | Proxy | |
| next_light_client_block | Proxy | |
| network_info | Proxy | PROXY_ONLY. Immediately proxy to a real RPC. |
| status | Included | |
| send_tx | Proxy | PROXY_ONLY. Immediately proxy to a real RPC. |
| tx | Included | |
| validators | Included | |
| client_config | Unimplemented | |
| EXPERIMENTAL_changes | Included | |
| EXPERIMENTAL_changes_in_block | Included | |
| EXPERIMENTAL_genesis_config | Included | Cache it on the start. |
| EXPERIMENTAL_light_client_proof | Proxy | |
| EXPERIMENTAL_protocol_config | Included | |
| EXPETIMENTAL_receipt | Included | |
| EXPERIMENTAL_tx_status | Included | |
| EXPERIMENTAL_validators_ordered | Proxy | |
| EXPERIMENTAL_maintenance_windows | Unimplemented | |
| EXPERIMENTAL_split_storage_info | Unimplemented | |
| **Method** | **status** | **Note** |
|-----------------------------------|---------------|-----------------------------------------------------------------------------|
| view_state_paginated | Included | Custom method. See details [here](../docs/CUSTOM_RPC_METHODS.md) |
| view_receipt_record | Included | Custom method. See details [here](../docs/CUSTOM_RPC_METHODS.md) |
| query.view_account | Included | |
| query.view_code | Included | |
| query.view_state | Included | |
| query.call_function | Included | |
| query.view_access_key | Included | |
| query.view_access_key_list | Proxy | Planned. It will be implemented in the future. |
| block | Included | |
| broadcast_tx_async | Proxy | PROXY_ONLY. Immediately proxy to a real RPC. |
| broadcast_tx_commit | Proxy | PROXY_ONLY. Immediately proxy to a real RPC. |
| chunk | Included | |
| gas_price | Included | |
| health | Included | Health includes the info about the syncing state of the node of rpc-server. |
| light_client_proof | Proxy | |
| next_light_client_block | Proxy | |
| network_info | Proxy | PROXY_ONLY. Immediately proxy to a real RPC. |
| status | Included | |
| send_tx | Proxy | PROXY_ONLY. Immediately proxy to a real RPC. |
| tx | Included | |
| validators | Included | |
| client_config | Unimplemented | |
| EXPERIMENTAL_changes | Included | |
| EXPERIMENTAL_changes_in_block | Included | |
| EXPERIMENTAL_genesis_config | Included | Cache it on the start. |
| EXPERIMENTAL_light_client_proof | Proxy | |
| EXPERIMENTAL_protocol_config | Included | |
| EXPETIMENTAL_receipt | Included | |
| EXPERIMENTAL_tx_status | Included | |
| EXPERIMENTAL_validators_ordered | Proxy | |
| EXPERIMENTAL_maintenance_windows | Unimplemented | |
| EXPERIMENTAL_split_storage_info | Unimplemented | |

0 comments on commit 01905b7

Please sign in to comment.