Commit Graph

202 Commits

Author SHA1 Message Date
Jan Mercl
24f76a561d update dependencies 2021-06-16 19:26:04 +02:00
Jan Mercl
56308939a8 windows/amd64: the failing test is symlink2.test, not symlink.test, updates #23 2021-06-13 19:11:44 +02:00
Jan Mercl
3bc18f992d add windows/amd64 support, updates #23 2021-06-13 18:48:40 +02:00
Jan Mercl
296a92e469 move the ff775b36 changes to testdata/overlay, updates #23 2021-06-13 18:09:57 +02:00
Jan Mercl
90665c42af Merge branch 'master' of gitlab.com:cznic/sqlite 2021-06-13 18:06:00 +02:00
Jan Mercl
3c08aa8b8b Disable symlink.test for windows/amd64, updates #23 2021-06-13 18:05:46 +02:00
Jan Mercl
bf0ba947a8 Disable symlink.test for windows/amd64 2021-06-13 18:04:46 +02:00
Jan Mercl
14c6ebc337 update dependencies 2021-06-12 14:58:16 +02:00
Jason DeBettencourt
cc37e09f4c close db after test case 2021-06-10 21:25:36 -04:00
Jason DeBettencourt
ff775b367c all_test.go - remove the temp db between scripts to prevent not quite closed/deleted/race.
malloc5.test - skip tests requiring memstats collection
pager1.test - skip 2 tests in non-functional sets.
snapshot_fault.test - skip test w/failing forcedelete
testdata/tcl/tester.tcl - fix get_pwd to return output of 'cd'
2021-06-09 18:44:35 -04:00
Saed SayedAhmed
0b2367747c Merge branch 'fix_security_vulnerabilities' into 'master'
update x/crypto to fix security vulnerability

See merge request cznic/sqlite!26
2021-05-29 19:11:16 +00:00
Saed SayedAhmed
700a58339a update x/crypto to fix security vulnerability 2021-05-29 19:11:16 +00:00
Jan Mercl
28b9e23d7b linux/s390x: generate initial version 2021-05-16 21:22:16 +02:00
Dan Peterson
ac48e5985c upgrade darwin/arm64 to SQLite 3.35.5 2021-05-12 11:49:53 -03:00
Jan Mercl
6f78508eae update dependencies 2021-05-12 11:45:35 +02:00
Jan Mercl
4d9b8b7ac9 upgrade darwin/amd64 to SQLite 3.35.5 2021-05-10 14:44:37 +02:00
Jan Mercl
df32326857 upgrade linux/*, windows/amd64 to SQLite 3.35.5 2021-05-10 14:35:53 +02:00
Jan Mercl
8a0b7390c0 release v1.10.6 2021-05-06 17:35:10 +02:00
Jan Mercl
2cfe43d1e8 release v1.10.6 2021-05-06 17:34:05 +02:00
Jan Mercl
d93404b2e0 release v1.10.5, closes #53 2021-05-06 17:29:51 +02:00
Jan Mercl
7de07c7a26 fix manual memory management error, updates #53 2021-05-06 12:04:30 +02:00
Jan Mercl
a740e9e176 add reproducer, updates #53 2021-05-05 12:05:52 +02:00
Dan Peterson
ca47b106c9 fix and enable TestIssue51, updates #51 2021-04-30 16:30:26 -03:00
Ross Light
a3a619dcd2 Merge branch 'issue52' into 'master'
Set up mutex on lib package initialization

Closes #52

See merge request cznic/sqlite!25
2021-04-22 23:59:02 +00:00
Ross Light
5a2af3f4dc Set up mutex on lib package initialization
Fixes #52
2021-04-21 20:56:35 -07:00
Jan Mercl
4a946a98e9 update dependencies, disable TestIssue51 2021-04-18 14:36:48 +02:00
Jan Mercl
eb8fb3b86d add TestIssue51, updates #51 2021-04-16 10:40:07 +02:00
Dan Peterson
244d800af4 darwin/arm64: upgrade to SQLite 3.35.4, updates #50 2021-04-09 19:38:16 -03:00
Jan Mercl
842841c36b darwin/amd64: upgrade to SQLite 3.35.4, updates #50 2021-04-09 17:06:08 +02:00
Jan Mercl
af0d8ac4fa upgrade linux/*, windows/amd64 to SQLite 3.35.4, updates #50 2021-04-09 12:49:40 +02:00
Jan Mercl
2ba81b032f update dependencies, closes #49 2021-04-09 11:54:40 +02:00
Jan Mercl
4800b08a35 update dependencies 2021-04-08 12:18:25 +02:00
cznic
a3b3662248 Merge branch 'libc-load-environ' into 'master'
driver: set libc environment in init

Closes #49

See merge request cznic/sqlite!24
2021-04-08 09:50:47 +00:00
Jan Mercl
aa302889ea update dependencies 2021-04-07 12:43:37 +02:00
Dan Peterson
e2b915c98c driver: set libc environment in init
modernc.org/libc.Start does this when wrapping funcs main to seed data
for libc.Xgetenv and friends.

However, sqlite doesn't use libc.Start. It sets libc bits up in an
init func. This leaves the libc view of the enivorment empty/null.

When the sqlite "localtime" modifier used with datetime/strftime/etc,
sqlite eventually calls libc.Xlocaltime which wants to read TZ from
the environment. With an empty/null libc enivornment, this segfaults.

To fix that, call libc.SetEnviron in func init like libc.Start
does.

Fixes https://gitlab.com/cznic/sqlite/-/issues/49
2021-04-05 20:35:19 -03:00
Jan Mercl
9ffbf7a0e1 update dependencies 2021-03-23 22:48:00 +01:00
Jan Mercl
fae63b194d linux/amd64: enable pthreads 2021-03-23 00:17:08 +01:00
Jan Mercl
188cc2d36d windows/amd64: regenerate 2021-03-18 17:12:08 +01:00
Dan Peterson
798bbeb9bb driver: support scanning more formats into time.Time
Fixes https://gitlab.com/cznic/sqlite/-/issues/46
2021-03-14 16:07:07 -03:00
Dan Peterson
ceed017ea1 Merge branch 'no-rows-column-info' into 'master'
driver: return column info even when no rows

Closes #32

See merge request cznic/sqlite!22
2021-03-14 17:54:31 +00:00
Dan Peterson
77ccaf71ff driver: return column info even when no rows
Fixes https://gitlab.com/cznic/sqlite/-/issues/32
2021-03-14 13:09:25 -03:00
Jason DeBettencourt
6f3d099498 merged, re-fixed windows get_pwd. 2021-03-14 12:07:03 -04:00
Dan Peterson
c3e4c13784 changelog: v1.10.0 2021-03-14 10:46:32 -03:00
Jan Mercl
b272f0d24f 3.35: regenerate linux/arm64 2021-03-13 18:22:00 +01:00
Jan Mercl
872162fe45 3.35: regenerate linux/arm 2021-03-13 18:20:36 +01:00
Jan Mercl
9204906192 3.35: regenerate linux/386 2021-03-13 18:17:36 +01:00
Dan Peterson
c22ee6e16d regenerate linux/amd64 2021-03-13 14:42:27 +00:00
Dan Peterson
4d0d114b6e regenerate darwin/amd64 2021-03-13 09:29:18 -04:00
Dan Peterson
39d4e071e1 regenerate darwin/arm64 2021-03-13 09:14:00 -04:00
Dan Peterson
f2abd009c3 generator: use sqlite 3.35.0 2021-03-13 09:13:28 -04:00