-
Notifications
You must be signed in to change notification settings - Fork 129
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
duckdb 1.29.0; self-host extensions #1734
Merged
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
c70e1bc
explicit duckdb 1.29.0; self-host core extensions; document
Fil 0029c8c
configure which extensions are self-hosted
Fil feeaad8
Merge branch 'main' into fil/duckdb-wasm-1.29
Fil 33aa5cb
hash extensions
Fil 543f823
better docs
Fil 7475589
cleaner duckdb manifest — now works in scripts and embeds
Fil 47b6bd0
restructure code, extensible manifest
Fil abd0380
test, documentation
Fil 7ac5d1d
much nicer config
Fil 0adcb36
document config
Fil 5365371
add support for mvp, clean config & documentation
Fil 1fdf717
parametrized the initial LOAD in DuckDBClient
Fil bc712c3
tests
Fil 2fb2878
bake-in the extensions manifest
Fil bc49674
fix test
Fil 9a13f2a
don't activate spatial on the documentation
Fil e2c8b6c
Merge branch 'main' into fil/duckdb-wasm-1.29
Fil 4a5128d
refactor: hash individual extensions, include the list of platforms i…
Fil 13f892c
don't copy extensions twice
Fil 8bb2866
Merge branch 'main' into fil/duckdb-wasm-1.29
Fil 43ef6eb
Merge branch 'main' into fil/duckdb-wasm-1.29
Fil 6764969
Merge branch 'main' into fil/duckdb-wasm-1.29
mbostock d72f0c3
Update src/duckdb.ts
Fil d6fc020
remove DuckDBClientReport utility
Fil 69f25a2
renames
Fil 30788e3
p for platform
Fil 710f36a
centralize DUCKDBWASMVERSION and DUCKDBVERSION
Fil 4f58100
clearer
Fil a8cfdcd
better config; manifest.extensions now lists individual extensions on…
Fil 490d969
validate extension names; centralize DUCKDBBUNDLES
Fil aaff8f8
fix tests
Fil bc39bbe
Merge branch 'main' into fil/duckdb-wasm-1.29
Fil 8bd0972
copy edit
Fil b90c22a
support loading non-self-hosted extensions
Fil b37be07
test duckdb config normalization & defaults
Fil 9abaf57
documentation
Fil ccc0073
typography
Fil 26c7a6f
doc
Fil 4416dd3
Merge branch 'main' into fil/duckdb-wasm-1.29
mbostock 7704416
use view for <50MB
mbostock 1dde616
docs, shorthand, etc.
mbostock 0491966
annotate fixes
mbostock be26385
disable telemetry on annotate tests, too
mbostock a23d3e4
tidier duckdb manifest
mbostock c753728
Merge branch 'main' into fil/duckdb-wasm-1.29
mbostock 6e828c9
remove todo
mbostock 365dbe3
more robust duckdb: scheme
mbostock File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How do these paths get content-hashed and/or versioned (for immutable caching)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe they are versioned by the
1.1.1
in their path, but I'm not sure of what happens server-side in duckdb-land. I'm talking with @carlopi to understand this better.