Skip to content

Tags: feldera/feldera

Tags

v0.274.0

Toggle v0.274.0's commit message
feldera-types: remove unused dependencies

Removes dependencies `serde_yaml`, `url` and `async-nats`.

Signed-off-by: Simon Kassing <[email protected]>

v0.273.0

Toggle v0.273.0's commit message
build: quiet on warnings

In docker builds we often execute build scripts without a proper
.git folder present. In this case the vergen Emitter emits
a warning through cargo. This is confusing for users.

This make sure the warning disappears. Our code already
handles the cases where these env variables are not set.

Signed-off-by: Gerd Zellweger <[email protected]>

v0.272.0

Toggle v0.272.0's commit message
[ci] apply automatic fixes

Signed-off-by: feldera-bot <[email protected]>

v0.271.0

Toggle v0.271.0's commit message
ci: add pytest extra args

Signed-off-by: Gerd Zellweger <[email protected]>

v0.270.0

Toggle v0.270.0's commit message
Generate unique topic names and lazy-initialize Kafka/Schema Registry…

… connections

- Replace run-id based topic names by unique UUID based topic names to avoid collisions across test runs
- Lazy-initialize Kafka and Schema registry connections to prevent import-time network calls

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

v0.269.0

Toggle v0.269.0's commit message
ci: gate docker build on web console unit tests passing

v0.268.0

Toggle v0.268.0's commit message
Rust 1.93 clippy lints.

Signed-off-by: Leonid Ryzhyk <[email protected]>

v0.267.0

Toggle v0.267.0's commit message
ci: address review comments, fix docker image check, and extract comp…

…osite action

v0.266.0

Toggle v0.266.0's commit message
[adapters] Add metrics and stats for transaction sizes and durations.

Tested manually.

Signed-off-by: Ben Pfaff <[email protected]>

v0.265.0

Toggle v0.265.0's commit message
ci: fix pre-commit job still passing when pre-commit fails

Remove continue-on-error from the pre-commit step and move the same-repo
condition to the auto-commit step using always(). This ensures the job
is correctly marked as failed when pre-commit fails, while still allowing
the auto-fix commit to run on branches within this repo.