Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
SQLite 3.38
emscripten 3.1.20
  • Loading branch information
lovasoa committed Sep 8, 2022
1 parent 5e5b063 commit 70564d8
Show file tree
Hide file tree
Showing 4 changed files with 3,107 additions and 754 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
# Install EMSDK to /emsdk just like the EMSDK Dockerfile: https://github.com/emscripten-core/emsdk/blob/master/docker/Dockerfile
ENV EMSDK /emsdk
# We pin the EMSDK version rather than 'latest' so that everyone is using the same compiler version
ENV EMSCRIPTEN_VERSION 3.1.8
ENV EMSCRIPTEN_VERSION 3.1.20

RUN git clone https://github.com/emscripten-core/emsdk.git $EMSDK

Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

# I got this handy makefile syntax from : https://github.com/mandel59/sqlite-wasm (MIT License) Credited in LICENSE
# To use another version of Sqlite, visit https://www.sqlite.org/download.html and copy the appropriate values here:
SQLITE_AMALGAMATION = sqlite-amalgamation-3380500
SQLITE_AMALGAMATION_ZIP_URL = https://www.sqlite.org/2022/sqlite-amalgamation-3380500.zip
SQLITE_AMALGAMATION_ZIP_SHA3 = bfad5c42b767520a546251b9876e4a4b127fb651c437b968b149070e09252807
SQLITE_AMALGAMATION = sqlite-amalgamation-3390300
SQLITE_AMALGAMATION_ZIP_URL = https://www.sqlite.org/2022/sqlite-amalgamation-3390300.zip

This comment has been minimized.

Copy link
@kaizhu256

kaizhu256 Sep 8, 2022

Member

fyi, sqlite3 v3.39.xxx has regressions in its parser.

several examples of UPDATE-FROM-JOIN queries no longer work (https://sqlite.org/forum/forumpost/3a684353fd). i've personally reverted back to v3.38.5 after using it for awhile.

SQLITE_AMALGAMATION_ZIP_SHA3 = 6a83b7da4b73d7148364a0033632ae1e4f9d647417e6f3654a5d0afe8424bbb9

# Note that extension-functions.c hasn't been updated since 2010-02-06, so likely doesn't need to be updated
EXTENSION_FUNCTIONS = extension-functions.c
Expand Down
Loading

0 comments on commit 70564d8

Please sign in to comment.