Skip to content

Commit

Permalink
Merge branch 'master' of github.com:kamu-data/kamu-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
zaychenko-sergei committed Sep 26, 2024
2 parents 08fca49 + b75e088 commit 5498dd8
Show file tree
Hide file tree
Showing 26 changed files with 917 additions and 434 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ jobs:
include:
- name: Linux / amd64
runs-on: ubuntu-latest
cargo-flags: --profile ci --features ingest-ftp
nextest-flags: --cargo-profile ci --features ingest-ftp
cargo-flags: --profile ci --features ingest-ftp,web-ui
nextest-flags: --cargo-profile ci --features ingest-ftp,web-ui
nextest-exclusions-main-set-tests: -E '!(test(::database::) | test(::spark::)| test(::flink::))'
nextest-exclusions-database-set-part: ''
container-runtime: podman
Expand Down Expand Up @@ -147,6 +147,10 @@ jobs:
echo "KAMU_CONTAINER_RUNTIME_TYPE=${{ matrix.container-runtime }}" >> $GITHUB_ENV
- name: Build
# Note: only be used to test the "web-ui" feature building
env:
# To test just building, we embed a tiny folder
KAMU_WEB_UI_DIR: '../../../.github'
run: |
cargo test ${{ matrix.cargo-flags }} --no-run
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@ Recommendation: for ease of reading, use the following order:
- Fixed
-->

## [0.204.1] - 2024-09-25
### Fixed
- Fixed build regression, in case `web-ui` feature flag is used

## [0.204.0] - 2024-09-25
### Changed
- If not explicitly configured, a SQLite database is used for a multi-tenant workspace
- If a SQLite database is used, built-in migrations are automatically applied
- Start processing added Outbox messages after successful command execution
- DI: `ServerCatalog` added, to split dependencies

## [0.203.1] - 2024-09-24
### Added
- Added database migration & scripting to create an application user with restricted permissions
Expand Down Expand Up @@ -167,7 +178,7 @@ Recommendation: for ease of reading, use the following order:
### Changed
- Upgraded `sqlx` crate to v0.8
- Renamed `setConfigSchedule` GQL api to `setConfigIngest`. Also extended
`setConfigIngest` with new field `fetchUncacheable` which indicates to ingone cache
`setConfigIngest` with new field `fetchUncacheable` which indicates to ignore cache
during ingest step

## [0.195.1] - 2024-08-16
Expand Down
Loading

0 comments on commit 5498dd8

Please sign in to comment.