Skip to content

Tags: TUM-DSE/miniduckdb

Tags

v1.5.5

Toggle v1.5.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump httpfs (duckdb#24003)

Title

v1.5.4

Toggle v1.5.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.

v1.4.5

Toggle v1.4.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Remove checked_array_iterator from fmt dep (1.4) (duckdb#23239)

This is a backport of the PR duckdb#22706 (duckdb#23238 in 1.5) to `v1.4-andium`
stable branch.

This PR removes
[stdext::checked_array_iterator](https://learn.microsoft.com/en-us/cpp/standard-library/checked-array-iterator-class?view=msvc-180)
usage applying the changes from [this
commit](fmtlib/fmt@9bea6ec)
to the version of the `fmt` library included in the `third_party` dir.

It is checked on Visual Studio 18.6.0 released on May 12.

Fixes: duckdb#22704

v1.5.3

Toggle v1.5.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Return an error if a negative number is passed to the factorial funct…

…ion (duckdb#22731)

Fixes: duckdb#22720

v1.5.2

Toggle v1.5.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Revert "Run ArrowConverter::ToArrowSchema in a transaction" (duckdb#2…

…2007)

Reverts duckdb#21927

v1.5.1

Toggle v1.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump vcpkg-duckdb-ports baseline (duckdb#21493)

While building duckdb-iceberg with the avro extension 
`duckdb-iceberg ✗ make clean &&
BUILD_EXTENSIONS='httpfs,avro,parquet,iceberg' make debug`
I ran into vcpckg errors while building avro. This fixes it.

v1.5.0

Toggle v1.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
bump spatial (duckdb#21206)

v1.4.4

Toggle v1.4.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fail fast extensions (duckdb#20605)

Changes so that INSTALL also performs signature checks (according to
database configuration).
This is somewhat redundant, BUT avoids cases where one might successful
install an extension that can't be then loaded.

Logic is as follows:
1. files ending in ".duckdb_extension" can only be created in the
INSTALL path
2. when moving, either ending ".duckdb_extension" is present both in
source and target, OR it should not be present on target
3. on install, we first verify signature of the buffer, then copy data
to "name.tmp-UUID.duckdb_extension", then move it to
"name.duckdb_extension". Note that this is legal with both 1 & 2, and
makes so that all files (written by duckdb) that ends in
'.duckdb_extension' are signature checked
4. on load, we load only from files eneding in ".duckdb_extension"

Basically there are 3 families of files:
* **A**: those ending in '.duckdb_extension'
* **B**. the other files

**B** can be created and moved into freely
**A** can only be created during install path (since it's the only place
where we pass the flag, and we will only create **B**)
**A** can only be moved into from other **A** files, while **A** can be
moved to a **B**
**A** is the only type of file we would load from

v1.4.3

Toggle v1.4.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
backport runner cleanup action (duckdb#20085)

v1.4.2

Toggle v1.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix minor crypto issues (duckdb#19716)