amalgalite 1.8.0-x64-mingw32 → 1.9.0-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d1fa4cf047440726ebf3df0acc94835cf9a4adf78e7e191ba15a2a3a6063e78
4
- data.tar.gz: ff8b7be38867cb2c5d0337f7b432bd5272ffbcd8ac49a65d2029132979fdec2a
3
+ metadata.gz: e6dcf87f6640e516e3e6b7615edb7a7ef6e282742b8ceb5790346984fe3b1660
4
+ data.tar.gz: 5b1bba8b92563ca2d15c48e49d481b621f593d64b0227f48be7f53f622dd7320
5
5
  SHA512:
6
- metadata.gz: 5f8b0861f06a45363cc36417da0afd1310a9b6f88d84222bbbd0ee44a8ac8940d1ec9672fa653e2d881ca28a0e9924e3baf482dab1e94db86a12f814402155ad
7
- data.tar.gz: f4834ca7d361222b560b1e67124d8f32ba24d3f810310b7c5acef754c3323dd0e8ead1efba438334d0372537c99ff5a951674b4038e4e7f5f965b318b3318be1
6
+ metadata.gz: 1b8009bf61b7c95ae218b3a2399e5143ebd3d611438daeef58ae11425f5304f16cbf8379b2bb074b500097ac2af401d599593b6d41b4a40be42a60cb912cee5a
7
+ data.tar.gz: 7afb63ee5cc0608095819b132ff69bef5c0c0674f4ee8174d4ff949b7b961d9e356d379243e68038839bffce02cc07b80a249c9190f4c6da72fa285773fb9e6d
data/HISTORY.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Amalgalite Changelog
2
2
 
3
+ ## Version 1.9.0 - 2023-04-20
4
+ * Update SQLite to 3.41.2
5
+ * Update required_ruby_version in gemspec to >= 2.3.0
6
+ * Update ruby compatability testing matrix to latest patch versions
7
+ * update compile time options
8
+ * remove SQLITE_ENABLE_DESERIALIZE - it is now default on
9
+ * remove SQLITE_ENABLE_JSON1 - it is now default on
10
+ * add SQLITE_ENABLE_MATH_FUNCTIONS
11
+ * add SQLITE_ENABLE_NORMALIZE
12
+ * add SQLITE_ENABLE_SOUNDEX
13
+ * add -Wundef to reduce compiler warnings from sqlite on clang
14
+ * fix a compiler warning in the extension code
15
+
3
16
  ## Version 1.8.0 - 2023-02-06
4
17
  * Update SQLite to 3.40.1
5
18
  * Update ruby compaibility to 2.5 -> 3.2
@@ -7,6 +7,7 @@
7
7
 
8
8
  #include "amalgalite.h"
9
9
  #include <stdio.h>
10
+ #include <stdnoreturn.h>
10
11
  extern VALUE mA;
11
12
  VALUE cAR;
12
13
  VALUE cARB;
@@ -18,7 +19,7 @@ VALUE eARB_Error;
18
19
  * allocated via malloc() or the like. It should be a local static buffer
19
20
  * that we do not have to worry about freeing.
20
21
  */
21
- void am_bootstrap_cleanup_and_raise( const char* msg, sqlite3* db, sqlite3_stmt* stmt )
22
+ noreturn void am_bootstrap_cleanup_and_raise( const char* msg, sqlite3* db, sqlite3_stmt* stmt )
22
23
  {
23
24
 
24
25
  if ( NULL != stmt ) { sqlite3_finalize( stmt ); stmt = NULL; }
@@ -10,15 +10,15 @@ $CFLAGS += " -DSQLITE_ENABLE_BYTECODE_VTAB=1"
10
10
  $CFLAGS += " -DSQLITE_ENABLE_COLUMN_METADATA=1"
11
11
  $CFLAGS += " -DSQLITE_ENABLE_DBSTAT_VTAB=1"
12
12
  $CFLAGS += " -DSQLITE_ENABLE_DBPAGE_VTAB=1"
13
- $CFLAGS += " -DSQLITE_ENABLE_DESERIALIZE=1"
14
13
  $CFLAGS += " -DSQLITE_ENABLE_EXPLAIN_COMMENTS=1"
15
14
  $CFLAGS += " -DSQLITE_ENABLE_FTS3=1"
16
15
  $CFLAGS += " -DSQLITE_ENABLE_FTS3_PARENTHESIS=1"
17
16
  $CFLAGS += " -DSQLITE_ENABLE_FTS4=1"
18
17
  $CFLAGS += " -DSQLITE_ENABLE_FTS5=1"
19
18
  $CFLAGS += " -DSQLITE_ENABLE_GEOPOLY=1"
20
- $CFLAGS += " -DSQLITE_ENABLE_JSON1=1"
19
+ $CFLAGS += " -DSQLITE_ENABLE_MATH_FUNCTIONS=1"
21
20
  $CFLAGS += " -DSQLITE_ENABLE_MEMORY_MANAGEMENT=1"
21
+ $CFLAGS += " -DSQLITE_ENABLE_NORMALIZE=1"
22
22
  $CFLAGS += " -DSQLITE_ENABLE_NULL_TRIM=1"
23
23
  $CFLAGS += " -DSQLITE_ENABLE_PREUPDATE_HOOK=1"
24
24
  $CFLAGS ++ " -DSQLITE_EANBLE_QPSG=1"
@@ -29,7 +29,9 @@ $CFLAGS += " -DSQLITE_ENABLE_SNAPSHOT=1"
29
29
  $CFLAGS += " -DSQLITE_ENABLE_STMTVTAB=1"
30
30
  $CFLAGS += " -DSQLITE_ENABLE_STAT4=1"
31
31
  $CFLAGS += " -DSQLITE_ENABLE_UNLOCK_NOTIFY=1"
32
+ $CFLAGS += " -DSQLITE_ENABLE_SOUNDEX=1"
32
33
 
34
+ $CFLAGS += " -DSQLITE_USE_ALLOCA=1"
33
35
  $CFLAGS += " -DSQLITE_OMIT_DEPRECATED=1"
34
36
 
35
37
  # we compile sqlite the same way that the installation of ruby is compiled.
@@ -54,7 +56,18 @@ ignore_by_compiler = {
54
56
  sign-compare
55
57
  unused-const-variable
56
58
  unused-variable
57
- ]
59
+ unused-but-set-variable
60
+ undef
61
+ ],
62
+ "gcc" => %w[
63
+ declaration-after-statement
64
+ implicit-function-declaration
65
+ unused-variable
66
+ unused-but-set-variable
67
+ maybe-uninitialized
68
+ old-style-definition
69
+ undef
70
+ ]
58
71
  }
59
72
 
60
73
  if extras = ignore_by_compiler[RbConfig::MAKEFILE_CONFIG["CC"]] then
@@ -63,7 +76,7 @@ end
63
76
 
64
77
  ignoreable_warnings.each do |warning|
65
78
  $CFLAGS = $CFLAGS.gsub(/-W#{warning}/,'')
66
- RbConfig::MAKEFILE_CONFIG['warnflags'] = RbConfig::MAKEFILE_CONFIG['warnflags'].gsub(/-W#{warning}/,'') if RbConfig::MAKEFILE_CONFIG['warnflags']
79
+ RbConfig::MAKEFILE_CONFIG['warnflags'] = RbConfig::MAKEFILE_CONFIG['warnflags'].gsub(/-W#{warning}/,'') if RbConfig::MAKEFILE_CONFIG['warnflags']
67
80
  $CFLAGS += " -Wno-#{warning}"
68
81
  end
69
82