Skip to content

Commit

Permalink
release: sink-console, sink-mongo, sink-parquet, sink-postgres, sink-…
Browse files Browse the repository at this point in the history
…webhook

**Summary**

 - sink-console: v0.3.4
 - sink-mongo: v0.4.4
 - sink-parquet: v0.3.4
 - sink-postgres: v0.4.5
 - sink-webhook: v0.3.4
  • Loading branch information
fracek committed Nov 7, 2023
1 parent 8b6364f commit 93137f4
Show file tree
Hide file tree
Showing 11 changed files with 117 additions and 12 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

21 changes: 21 additions & 0 deletions sinks/sink-console/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ The format is based on [Common Changelog](https://common-changelog.org/), and
this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.4] - 2023-11-07

_Improve performance for data-heavy indexers._

### Added

- Update Starknet's event filter to support the new `includeTransaction`,
and `includeReceipt` options. These options control whether the server will
send the transaction and/or receipt that generated an event. For indexers
that don't need this data, toggling this option on can improve performance
drastically.

### Changed

- Update the Deno runtime to `deno_core v0.244` and `deno_runtime v0.130`.
- Use the new
[`#[op2]`](https://docs.rs/deno_core/0.224.0/deno_core/attr.op2.html) macro
to exchange data between Deno and Rust. Data serialization and
deserialization between the sink and the script is now faster.

## [0.3.3] - 2023-10-27

_Fix exit code on disconnect._
Expand Down Expand Up @@ -74,6 +94,7 @@ _This release improves the developer experience when running locally._
_First tagged release 🎉_


[0.3.4]: https://github.com/apibara/dna/releases/tag/sink-console/v0.3.4
[0.3.3]: https://github.com/apibara/dna/releases/tag/sink-console/v0.3.3
[0.3.2]: https://github.com/apibara/dna/releases/tag/sink-console/v0.3.2
[0.3.1]: https://github.com/apibara/dna/releases/tag/sink-console/v0.3.1
Expand Down
2 changes: 1 addition & 1 deletion sinks/sink-console/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apibara-sink-console"
version = "0.3.3"
version = "0.3.4"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
25 changes: 23 additions & 2 deletions sinks/sink-mongo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ The format is based on [Common Changelog](https://common-changelog.org/), and
this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.4] - 2023-11-07

_Improve performance for data-heavy indexers._

### Added

- Update Starknet's event filter to support the new `includeTransaction`,
and `includeReceipt` options. These options control whether the server will
send the transaction and/or receipt that generated an event. For indexers
that don't need this data, toggling this option on can improve performance
drastically.

### Changed

- Update the Deno runtime to `deno_core v0.244` and `deno_runtime v0.130`.
- Use the new
[`#[op2]`](https://docs.rs/deno_core/0.224.0/deno_core/attr.op2.html) macro
to exchange data between Deno and Rust. Data serialization and
deserialization between the sink and the script is now faster.

## [0.4.3] - 2023-10-27

_Fix exit code on disconnect._
Expand Down Expand Up @@ -90,8 +110,9 @@ _This release improves the developer experience when running locally._
_First tagged release 🎉_


[0.4.3]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.4.2
[0.4.2]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.4.3
[0.4.4]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.4.4
[0.4.3]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.4.3
[0.4.2]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.4.2
[0.4.1]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.4.1
[0.4.0]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.4.0
[0.3.0]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion sinks/sink-mongo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apibara-sink-mongo"
version = "0.4.3"
version = "0.4.4"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
21 changes: 21 additions & 0 deletions sinks/sink-parquet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ The format is based on [Common Changelog](https://common-changelog.org/), and
this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.4] - 2023-11-07

_Improve performance for data-heavy indexers._

### Added

- Update Starknet's event filter to support the new `includeTransaction`,
and `includeReceipt` options. These options control whether the server will
send the transaction and/or receipt that generated an event. For indexers
that don't need this data, toggling this option on can improve performance
drastically.

### Changed

- Update the Deno runtime to `deno_core v0.244` and `deno_runtime v0.130`.
- Use the new
[`#[op2]`](https://docs.rs/deno_core/0.224.0/deno_core/attr.op2.html) macro
to exchange data between Deno and Rust. Data serialization and
deserialization between the sink and the script is now faster.

## [0.3.3] - 2023-10-27

_Fix exit code on disconnect._
Expand Down Expand Up @@ -74,6 +94,7 @@ _This release improves the developer experience when running locally._
_First tagged release 🎉_


[0.3.4]: https://github.com/apibara/dna/releases/tag/sink-parquet/v0.3.4
[0.3.3]: https://github.com/apibara/dna/releases/tag/sink-parquet/v0.3.3
[0.3.2]: https://github.com/apibara/dna/releases/tag/sink-parquet/v0.3.2
[0.3.1]: https://github.com/apibara/dna/releases/tag/sink-parquet/v0.3.1
Expand Down
2 changes: 1 addition & 1 deletion sinks/sink-parquet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apibara-sink-parquet"
version = "0.3.3"
version = "0.3.4"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
21 changes: 21 additions & 0 deletions sinks/sink-postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ The format is based on [Common Changelog](https://common-changelog.org/), and
this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.5] - 2023-11-07

_Improve performance for data-heavy indexers._

### Added

- Update Starknet's event filter to support the new `includeTransaction`,
and `includeReceipt` options. These options control whether the server will
send the transaction and/or receipt that generated an event. For indexers
that don't need this data, toggling this option on can improve performance
drastically.

### Changed

- Update the Deno runtime to `deno_core v0.244` and `deno_runtime v0.130`.
- Use the new
[`#[op2]`](https://docs.rs/deno_core/0.224.0/deno_core/attr.op2.html) macro
to exchange data between Deno and Rust. Data serialization and
deserialization between the sink and the script is now faster.

## [0.4.4] - 2023-11-06

_Write to the same table from multiple indexers._
Expand Down Expand Up @@ -104,6 +124,7 @@ _This release improves the developer experience when running locally._
_First tagged release 🎉_


[0.4.5]: https://github.com/apibara/dna/releases/tag/sink-postgres/v0.4.5
[0.4.4]: https://github.com/apibara/dna/releases/tag/sink-postgres/v0.4.4
[0.4.3]: https://github.com/apibara/dna/releases/tag/sink-postgres/v0.4.3
[0.4.2]: https://github.com/apibara/dna/releases/tag/sink-postgres/v0.4.2
Expand Down
2 changes: 1 addition & 1 deletion sinks/sink-postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apibara-sink-postgres"
version = "0.4.4"
version = "0.4.5"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
21 changes: 21 additions & 0 deletions sinks/sink-webhook/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ The format is based on [Common Changelog](https://common-changelog.org/), and
this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.4] - 2023-11-07

_Improve performance for data-heavy indexers._

### Added

- Update Starknet's event filter to support the new `includeTransaction`,
and `includeReceipt` options. These options control whether the server will
send the transaction and/or receipt that generated an event. For indexers
that don't need this data, toggling this option on can improve performance
drastically.

### Changed

- Update the Deno runtime to `deno_core v0.244` and `deno_runtime v0.130`.
- Use the new
[`#[op2]`](https://docs.rs/deno_core/0.224.0/deno_core/attr.op2.html) macro
to exchange data between Deno and Rust. Data serialization and
deserialization between the sink and the script is now faster.

## [0.3.3] - 2023-10-27

_Fix exit code on disconnect._
Expand Down Expand Up @@ -77,6 +97,7 @@ _This release improves the developer experience when running locally._
_First tagged release 🎉_


[0.3.4]: https://github.com/apibara/dna/releases/tag/sink-webhook/v0.3.4
[0.3.3]: https://github.com/apibara/dna/releases/tag/sink-webhook/v0.3.3
[0.3.2]: https://github.com/apibara/dna/releases/tag/sink-webhook/v0.3.2
[0.3.1]: https://github.com/apibara/dna/releases/tag/sink-webhook/v0.3.1
Expand Down
2 changes: 1 addition & 1 deletion sinks/sink-webhook/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apibara-sink-webhook"
version = "0.3.3"
version = "0.3.4"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down

0 comments on commit 93137f4

Please sign in to comment.