Skip to content

Commit

Permalink
release: sink-{console, mongo, parquet, postgres, webhook}
Browse files Browse the repository at this point in the history
**Summary**
sink-console: v0.4.3
sink-mongo: v0.5.3
sink-parquet: v0.4.3
sink-postgres: v0.5.4
sink-webhook: v0.4.3
  • Loading branch information
fracek committed Jan 25, 2024
1 parent 5f20f51 commit d7c5bce
Show file tree
Hide file tree
Showing 11 changed files with 75 additions and 10 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.

13 changes: 13 additions & 0 deletions sinks/sink-console/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ 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.3] - 2024-01-25

_Persist state to Redis._

### Added

- You can now persist state to Redis! Use the `--persist-to-redis` flag with
[the connection string to your Redis
instance](https://docs.rs/redis/latest/redis/#connection-handling) and the sink
will store its state there. Data is persisted under the `apibara:sink:{sink_id}`
key and you can easily manage it with `redis-cli`.

## [0.4.2] - 2024-01-19

_Improve `--allow-net` flag usage._
Expand Down Expand Up @@ -175,6 +187,7 @@ _This release improves the developer experience when running locally._

_First tagged release 🎉_

[0.4.3]: https://github.com/apibara/dna/releases/tag/sink-console/v0.4.3
[0.4.2]: https://github.com/apibara/dna/releases/tag/sink-console/v0.4.2
[0.4.1]: https://github.com/apibara/dna/releases/tag/sink-console/v0.4.1
[0.4.0]: https://github.com/apibara/dna/releases/tag/sink-console/v0.4.0
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.4.2"
version = "0.4.3"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions sinks/sink-mongo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ 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.5.3] - 2024-01-25

_Persist state to Redis._

### Added

- You can now persist state to Redis! Use the `--persist-to-redis` flag with
[the connection string to your Redis
instance](https://docs.rs/redis/latest/redis/#connection-handling) and the sink
will store its state there. Data is persisted under the `apibara:sink:{sink_id}`
key and you can easily manage it with `redis-cli`.

## [0.5.2] - 2024-01-19

_Improve `--allow-net` flag usage._
Expand Down Expand Up @@ -212,6 +224,7 @@ _This release improves the developer experience when running locally._

_First tagged release 🎉_

[0.5.3]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.5.3
[0.5.2]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.5.2
[0.5.1]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.5.1
[0.5.0]: https://github.com/apibara/dna/releases/tag/sink-mongo/v0.5.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.5.2"
version = "0.5.3"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions sinks/sink-parquet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ 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.3] - 2024-01-25

_Persist state to Redis._

### Added

- You can now persist state to Redis! Use the `--persist-to-redis` flag with
[the connection string to your Redis
instance](https://docs.rs/redis/latest/redis/#connection-handling) and the sink
will store its state there. Data is persisted under the `apibara:sink:{sink_id}`
key and you can easily manage it with `redis-cli`.

## [0.4.2] - 2024-01-19

_Improve `--allow-net` flag usage._
Expand Down Expand Up @@ -182,6 +194,7 @@ _This release improves the developer experience when running locally._

_First tagged release 🎉_

[0.4.3]: https://github.com/apibara/dna/releases/tag/sink-parquet/v0.4.3
[0.4.2]: https://github.com/apibara/dna/releases/tag/sink-parquet/v0.4.2
[0.4.1]: https://github.com/apibara/dna/releases/tag/sink-parquet/v0.4.1
[0.4.0]: https://github.com/apibara/dna/releases/tag/sink-parquet/v0.4.0
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.4.2"
version = "0.4.3"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions sinks/sink-postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ 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.5.4] - 2024-01-25

_Persist state to Redis._

### Added

- You can now persist state to Redis! Use the `--persist-to-redis` flag with
[the connection string to your Redis
instance](https://docs.rs/redis/latest/redis/#connection-handling) and the sink
will store its state there. Data is persisted under the `apibara:sink:{sink_id}`
key and you can easily manage it with `redis-cli`.

## [0.5.3] - 2024-01-19

_Improve `--allow-net` flag usage._
Expand Down Expand Up @@ -224,6 +236,7 @@ _This release improves the developer experience when running locally._

_First tagged release 🎉_

[0.5.4]: https://github.com/apibara/dna/releases/tag/sink-postgres/v0.5.4
[0.5.3]: https://github.com/apibara/dna/releases/tag/sink-postgres/v0.5.3
[0.5.2]: https://github.com/apibara/dna/releases/tag/sink-postgres/v0.5.2
[0.5.1]: https://github.com/apibara/dna/releases/tag/sink-postgres/v0.5.1
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.5.3"
version = "0.5.4"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions sinks/sink-webhook/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ 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.3] - 2024-01-25

_Persist state to Redis._

### Added

- You can now persist state to Redis! Use the `--persist-to-redis` flag with
[the connection string to your Redis
instance](https://docs.rs/redis/latest/redis/#connection-handling) and the sink
will store its state there. Data is persisted under the `apibara:sink:{sink_id}`
key and you can easily manage it with `redis-cli`.

## [0.4.2] - 2024-01-19

_Improve `--allow-net` flag usage._
Expand Down Expand Up @@ -177,6 +189,7 @@ _This release improves the developer experience when running locally._

_First tagged release 🎉_

[0.4.3]: https://github.com/apibara/dna/releases/tag/sink-webhook/v0.4.3
[0.4.2]: https://github.com/apibara/dna/releases/tag/sink-webhook/v0.4.2
[0.4.1]: https://github.com/apibara/dna/releases/tag/sink-webhook/v0.4.1
[0.4.0]: https://github.com/apibara/dna/releases/tag/sink-webhook/v0.4.0
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.4.2"
version = "0.4.3"
edition.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down

0 comments on commit d7c5bce

Please sign in to comment.