Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Codecs avro updates #2666

Merged
merged 10 commits into from
Oct 16, 2024
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

## Unreleased

### New features
* update apache-avro to version 0.17 adding support for nano resolution timestamp logical types in schemas

### Fixes
* gbq connector naming is now `gbq_writer` as it is documented
* fix gbq connector url missing `/`

## [0.13.0-rc.29]

### New features
Expand Down Expand Up @@ -186,7 +189,7 @@
- Fixed error reporting in ConnectOutput and ConnectInput functions
- Fixed kv test cases

## [0.13.0-rc.1]
## [0.13.0-rc.1]

### Breaking Changes

Expand Down
110 changes: 58 additions & 52 deletions Cargo.lock

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

7 changes: 3 additions & 4 deletions tremor-codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ chrono = "0.4"
uuid = { version = "1.9", features = ["v4"] }
async-recursion = "1"

schema_registry_converter = { version = "4", default-features = false, features = [
schema_registry_converter = { version = "4.2", default-features = false, features = [
"futures",
"rustls_tls",
"avro",
Expand All @@ -45,14 +45,13 @@ reqwest = { version = "0.12", default-features = false, features = [
csv = "1.2"
tremor-influx = { version = "0.13.0-rc.29", path = "../tremor-influx" }
simd-json = "0.13"
apache-avro = { version = "0.16", features = [
apache-avro = { version = "0.17", features = [
"snappy",
"bzip",
"xz",
"zstandard",
"bzip2",
] }
#
#
serde = "1"
rmp-serde = "1.2"
syslog_loose = "0.21"
Expand Down
Loading
Loading