Skip to content

Releases: vigimite/aqueducts

Aqueducts v0.3.2

06 Jul 14:48
0c69826
Compare
Choose a tag to compare

0.3.2 - 2024-07-06

Details

Changed

  • Revert "prepare release v0.3.1"

This reverts commit 38d4980. by @vigimite

Fixed

  • Don't coerce LargeUtf8 and LargeBinary into smaller types by @vigimite

Removed

  • Revert "fix: remove schema validation due to incorrect casting of LargeUtf8"

This reverts commit a924aaf. by @vigimite

Aqueducts v0.3.0

24 Jun 07:52
d1f9a76
Compare
Choose a tag to compare

Migration guide

There was a breaking API change due to the implementation of parallel stage execution.
To migrate existing aqueduct definitions add an extra indented list:

before

stages:
  - name: stage_name
    query: SELECT * FROM data

after

stages:
  - - name: stage_name
      query: SELECT * FROM data

[0.3.0] - 2024-06-24

Details

Changed

[0.3.0-rc1] - 2024-06-22

Details

Added

  • Add json support, add JSONSchema, add docs by @vigimite

Changed

  • Upgrade datafusion to 39 by @vigimite
  • Add initial mkDocs documentation by @vigimite
  • Update serde_yml requirement from 0.0.8 to 0.0.10
  • Implement parallel processing of stages by @vigimite in #14
  • Logging changes by @vigimite
  • Feat (aqueducts-cli): enable json querying functionality by @vigimite
  • Improve param substitution handling by @vigimite
  • Add changelog by @vigimite

Aqueducts v0.3.0-rc1

22 Jun 22:39
11799a8
Compare
Choose a tag to compare
Aqueducts v0.3.0-rc1 Pre-release
Pre-release

This is an RC release due to depending on the git revision of the delta-rs repo until delta-io/delta-rs#2602 is released

[0.3.0-rc1] - 2024-06-22

Details

Migration guide

There was a breaking API change due to the implementation of parallel stage execution.
To migrate existing aqueduct definitions add an extra indented list:

before

stages:
  - name: stage_name
    query: SELECT * FROM data

after

stages:
  - - name: stage_name
      query: SELECT * FROM data

Added

  • Add json support, add JSONSchema, add docs by @vigimite

Changed

  • Implement parallel processing of stages by @vigimite in #14

Fixed

Aqueducts v0.2.2

27 May 15:23
7cf780a
Compare
Choose a tag to compare

Hotfix release: Add feature flags to Aqueducts CLI and hide ODBC behind optional feature flag due to linking issue during compilation if unixODBC is not installed

Aqueducts v0.2.1

27 May 12:53
dab090e
Compare
Choose a tag to compare

This release adds an interface to parse an aqueduct definition from a string.

Features

  • feat: add parsing aqueducts definition from string #3

Fixes

Aqueducts v0.2.0

25 May 19:28
2a8dac7
Compare
Choose a tag to compare

This release includes experimental ODBC support.

Features

  • feat: add odbc support for source #2

Fixes

  • Fix readme typo #1