Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

Tags: duckdb/duckdb

Tags

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 (#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 (#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 (#19716)

v1.4.1

Toggle v1.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump: avro, httpfs (#19248)

This PR bumps the following extensions:
- `avro` from `0c97a61781` to `7b75062f63`
- `httpfs` from `0518838dae` to `8356a90174 (patches removed: 1)`

v1.4.0

Toggle v1.4.0's commit message

Verified

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

v1.3.2

Toggle v1.3.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
bump ducklake for v1.3.2. (#18156)

v1.3.1

Toggle v1.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[tpcds] dsdgen currently assumes DuckTable, throw if that's not the c…

…ase (#17934)

Very minor, but could as well just be fixed.

Currently already handled for TPCH, now also TPCDS.

v1.3.0

Toggle v1.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix setup.py to correctly handle OVERRIDE_GIT_DESCRIBE (#17580)

With @Maxxen and @Tishj

This is currently tested at
https://github.com/carlopi/duckdb/actions/runs/15160608765/job/42625694082

v1.2.2

Toggle v1.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Backport @szarnyasg's PR 16999 (#17013)

Thanks @szarnyasg!

v1.2.1

Toggle v1.2.1's commit message

Verified

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