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

DynamoDB/Testing: Use CrateDB nightly again #76

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Changelog

## Unreleased
- DynamoDB/Testing: Use CrateDB nightly again

## 2024/10/09 v0.0.21
- MongoDB: Fixed BSON decoding of `{"$date": 1180690093000}` timestamps
- DynamoDB: Use CrateDB 5.8.3 for testing because 5.8.4 can no longer
- DynamoDB/Testing: Use CrateDB 5.8.3 for because 5.8.4 can no longer
store `ARRAY`s with varying inner types into `OBJECT(IGNORED)` columns.

## 2024/09/30 v0.0.20
Expand Down
2 changes: 1 addition & 1 deletion tests/transform/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def cratedb_custom_service():
"""
from cratedb_toolkit.testing.testcontainers.cratedb import CrateDBTestAdapter

db = CrateDBTestAdapter(crate_version="5.8.3")
db = CrateDBTestAdapter(crate_version="nightly")
db.start()
yield db
db.stop()
Expand Down