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
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
os:
- macos-13
- macos-15-intel
- ubuntu-22.04
- windows-latest
host:
Expand Down Expand Up @@ -66,6 +66,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
architecture: ${{ matrix.host }}
scope: '@appthreat'
- name: Add yarn
run: npm install -g yarn
- name: Set up Python
Expand Down Expand Up @@ -128,11 +129,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
- name: Publish
run: |
npm config set //registry.npmjs.org/:_authToken=$NPMJS_AUTH_TOKEN
npm publish --provenance --access=public --@appthreat:registry='https://registry.npmjs.org'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPMJS_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
npm publish --provenance --access=public
if: matrix.node == 24 && matrix.os == 'ubuntu-22.04' && startsWith(github.ref, 'refs/tags/')
build-qemu:
runs-on: ubuntu-24.04-arm
Expand Down
2 changes: 1 addition & 1 deletion deps/common-sqlite.gypi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
'variables': {
'sqlite_version%':'3510000',
'sqlite_version%':'3510200',
"toolset%":'',
},
'target_defaults': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7782,6 +7782,7 @@ static int fileStat(
b1[sz] = 0;
rc = _wstat(b1, pStatBuf);
if( rc==0 ) statTimesToUtc(zPath, pStatBuf);
sqlite3_free(b1);
return rc;
#else
return stat(zPath, pStatBuf);
Expand Down Expand Up @@ -10653,7 +10654,7 @@ static int zipfileGetEntry(
);
}else{
aRead = (u8*)&aBlob[iOff + ZIPFILE_CDS_FIXED_SZ];
if( (iOff + ZIPFILE_LFH_FIXED_SZ + nFile + nExtra)>nBlob ){
if( (iOff + ZIPFILE_CDS_FIXED_SZ + nFile + nExtra)>nBlob ){
rc = zipfileCorrupt(pzErr);
}
}
Expand Down Expand Up @@ -14944,6 +14945,7 @@ static char *intckMprintf(sqlite3_intck *p, const char *zFmt, ...){
sqlite3_free(zRet);
zRet = 0;
}
va_end(ap);
return zRet;
}

Expand Down Expand Up @@ -29053,6 +29055,7 @@ static int do_meta_command(char *zLine, ShellState *p){
}
p->showHeader = savedShowHeader;
p->shellFlgs = savedShellFlags;
rc = p->nErr>0;
}else

if( c=='e' && cli_strncmp(azArg[0], "echo", n)==0 ){
Expand Down Expand Up @@ -33598,7 +33601,8 @@ int SQLITE_CDECL wmain(int argc, wchar_t **wargv){
if( nCmd>0 ){
sqlite3_fprintf(stderr,"Error: cannot mix regular SQL or dot-commands"
" with \"%s\"\n", z);
return 1;
rc = 1;
goto shell_main_exit;
}
open_db(&data, OPEN_DB_ZIPFILE);
if( z[2] ){
Expand Down
Loading