Skip to content
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
7 changes: 4 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Changes for crate
=================

Unreleased
2026/09/17 2.3.0
================
- Added ``DefaultTypeConverter`` support that decodes ``DataType.UUID``
columns to Python ``uuid.UUID`` objects instead of returning the raw string.
Expand All @@ -11,8 +11,9 @@ Unreleased
Fixed ``Converter.get()`` raising ``ValueError`` for column type identifiers
it does not know. Unknown identifiers now fall back to the default converter.

- Breaking change: ``connect()`` now raises ``ConnectionError`` immediately if
no configured server node responds.
- Breaking change: ``connect()`` now raises
``crate.client.exceptions.ConnectionError`` immediately if no configured
server node responds.

- Breaking change: ``DefaultTypeConverter`` now decodes ``DataType.BIT``
columns, converting CrateDB's ``B'0110'`` wire format to a plain string of
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"/docs",
"/src/crate/*.py",
"/src/crate",
"/tests",
"*.rst",
"*.txt",
"/*.rst",
"/*.txt",
]
exclude = [
"/docs/.crate-docs",
Expand Down
Loading