sqlite3 1.4.4 → 1.5.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{API_CHANGES.rdoc → API_CHANGES.md} +3 -4
- data/CHANGELOG.md +419 -0
- data/CONTRIBUTING.md +24 -0
- data/Gemfile +2 -19
- data/LICENSE-DEPENDENCIES +20 -0
- data/README.md +233 -0
- data/ext/sqlite3/database.c +7 -8
- data/ext/sqlite3/extconf.rb +153 -94
- data/ext/sqlite3/sqlite3.c +2 -0
- data/faq/faq.md +431 -0
- data/lib/sqlite3/version.rb +4 -4
- data/ports/archives/sqlite-autoconf-3380500.tar.gz +0 -0
- data/test/helper.rb +5 -3
- data/test/test_database.rb +13 -6
- data/test/test_sqlite3.rb +4 -0
- metadata +40 -84
- data/CHANGELOG.rdoc +0 -333
- data/Manifest.txt +0 -59
- data/README.rdoc +0 -118
- data/Rakefile +0 -8
- data/appveyor.yml +0 -36
- data/rakelib/faq.rake +0 -9
- data/rakelib/gem.rake +0 -40
- data/rakelib/native.rake +0 -59
- data/rakelib/vendor_sqlite3.rake +0 -108
- data/setup.rb +0 -1333
metadata
CHANGED
@@ -1,101 +1,73 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sqlite3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
8
8
|
- Luis Lavena
|
9
9
|
- Aaron Patterson
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-
|
13
|
+
date: 2022-07-05 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
17
|
-
requirement: !ruby/object:Gem::Requirement
|
18
|
-
requirements:
|
19
|
-
- - "~>"
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: '5.15'
|
22
|
-
type: :development
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
requirements:
|
26
|
-
- - "~>"
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
version: '5.15'
|
29
|
-
- !ruby/object:Gem::Dependency
|
30
|
-
name: rake-compiler
|
31
|
-
requirement: !ruby/object:Gem::Requirement
|
32
|
-
requirements:
|
33
|
-
- - "~>"
|
34
|
-
- !ruby/object:Gem::Version
|
35
|
-
version: '1.0'
|
36
|
-
type: :development
|
37
|
-
prerelease: false
|
38
|
-
version_requirements: !ruby/object:Gem::Requirement
|
39
|
-
requirements:
|
40
|
-
- - "~>"
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: '1.0'
|
43
|
-
- !ruby/object:Gem::Dependency
|
44
|
-
name: rake-compiler-dock
|
16
|
+
name: mini_portile2
|
45
17
|
requirement: !ruby/object:Gem::Requirement
|
46
18
|
requirements:
|
47
19
|
- - "~>"
|
48
20
|
- !ruby/object:Gem::Version
|
49
|
-
version:
|
50
|
-
type: :
|
21
|
+
version: 2.8.0
|
22
|
+
type: :runtime
|
51
23
|
prerelease: false
|
52
24
|
version_requirements: !ruby/object:Gem::Requirement
|
53
25
|
requirements:
|
54
26
|
- - "~>"
|
55
27
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
28
|
+
version: 2.8.0
|
57
29
|
- !ruby/object:Gem::Dependency
|
58
|
-
name:
|
30
|
+
name: minitest
|
59
31
|
requirement: !ruby/object:Gem::Requirement
|
60
32
|
requirements:
|
61
33
|
- - "~>"
|
62
34
|
- !ruby/object:Gem::Version
|
63
|
-
version: '
|
35
|
+
version: '5.15'
|
64
36
|
type: :development
|
65
37
|
prerelease: false
|
66
38
|
version_requirements: !ruby/object:Gem::Requirement
|
67
39
|
requirements:
|
68
40
|
- - "~>"
|
69
41
|
- !ruby/object:Gem::Version
|
70
|
-
version: '
|
42
|
+
version: '5.15'
|
71
43
|
- !ruby/object:Gem::Dependency
|
72
|
-
name:
|
44
|
+
name: rake-compiler
|
73
45
|
requirement: !ruby/object:Gem::Requirement
|
74
46
|
requirements:
|
75
47
|
- - "~>"
|
76
48
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
49
|
+
version: 1.2.0
|
78
50
|
type: :development
|
79
51
|
prerelease: false
|
80
52
|
version_requirements: !ruby/object:Gem::Requirement
|
81
53
|
requirements:
|
82
54
|
- - "~>"
|
83
55
|
- !ruby/object:Gem::Version
|
84
|
-
version:
|
56
|
+
version: 1.2.0
|
85
57
|
- !ruby/object:Gem::Dependency
|
86
|
-
name:
|
58
|
+
name: rake-compiler-dock
|
87
59
|
requirement: !ruby/object:Gem::Requirement
|
88
60
|
requirements:
|
89
61
|
- - "~>"
|
90
62
|
- !ruby/object:Gem::Version
|
91
|
-
version:
|
63
|
+
version: 1.2.1
|
92
64
|
type: :development
|
93
65
|
prerelease: false
|
94
66
|
version_requirements: !ruby/object:Gem::Requirement
|
95
67
|
requirements:
|
96
68
|
- - "~>"
|
97
69
|
- !ruby/object:Gem::Version
|
98
|
-
version:
|
70
|
+
version: 1.2.1
|
99
71
|
- !ruby/object:Gem::Dependency
|
100
72
|
name: rdoc
|
101
73
|
requirement: !ruby/object:Gem::Requirement
|
@@ -116,38 +88,20 @@ dependencies:
|
|
116
88
|
- - "<"
|
117
89
|
- !ruby/object:Gem::Version
|
118
90
|
version: '7'
|
119
|
-
- !ruby/object:Gem::Dependency
|
120
|
-
name: hoe
|
121
|
-
requirement: !ruby/object:Gem::Requirement
|
122
|
-
requirements:
|
123
|
-
- - "~>"
|
124
|
-
- !ruby/object:Gem::Version
|
125
|
-
version: '3.23'
|
126
|
-
type: :development
|
127
|
-
prerelease: false
|
128
|
-
version_requirements: !ruby/object:Gem::Requirement
|
129
|
-
requirements:
|
130
|
-
- - "~>"
|
131
|
-
- !ruby/object:Gem::Version
|
132
|
-
version: '3.23'
|
133
91
|
description: |-
|
134
92
|
This module allows Ruby programs to interface with the SQLite3
|
135
93
|
database engine (http://www.sqlite.org). You must have the
|
136
94
|
SQLite engine installed in order to build this module.
|
137
95
|
|
138
96
|
Note that this module is only compatible with SQLite 3.6.16 or newer.
|
139
|
-
email:
|
140
|
-
- jamis@37signals.com
|
141
|
-
- luislavena@gmail.com
|
142
|
-
- aaron@tenderlovemaking.com
|
97
|
+
email:
|
143
98
|
executables: []
|
144
99
|
extensions:
|
145
100
|
- ext/sqlite3/extconf.rb
|
146
101
|
extra_rdoc_files:
|
147
|
-
- API_CHANGES.
|
148
|
-
- CHANGELOG.
|
149
|
-
-
|
150
|
-
- README.rdoc
|
102
|
+
- API_CHANGES.md
|
103
|
+
- CHANGELOG.md
|
104
|
+
- README.md
|
151
105
|
- ext/sqlite3/aggregator.c
|
152
106
|
- ext/sqlite3/backup.c
|
153
107
|
- ext/sqlite3/database.c
|
@@ -156,15 +110,14 @@ extra_rdoc_files:
|
|
156
110
|
- ext/sqlite3/statement.c
|
157
111
|
files:
|
158
112
|
- ".gemtest"
|
159
|
-
- API_CHANGES.
|
160
|
-
- CHANGELOG.
|
113
|
+
- API_CHANGES.md
|
114
|
+
- CHANGELOG.md
|
115
|
+
- CONTRIBUTING.md
|
161
116
|
- ChangeLog.cvs
|
162
117
|
- Gemfile
|
163
118
|
- LICENSE
|
164
|
-
-
|
165
|
-
- README.
|
166
|
-
- Rakefile
|
167
|
-
- appveyor.yml
|
119
|
+
- LICENSE-DEPENDENCIES
|
120
|
+
- README.md
|
168
121
|
- ext/sqlite3/aggregator.c
|
169
122
|
- ext/sqlite3/aggregator.h
|
170
123
|
- ext/sqlite3/backup.c
|
@@ -178,6 +131,7 @@ files:
|
|
178
131
|
- ext/sqlite3/sqlite3_ruby.h
|
179
132
|
- ext/sqlite3/statement.c
|
180
133
|
- ext/sqlite3/statement.h
|
134
|
+
- faq/faq.md
|
181
135
|
- faq/faq.rb
|
182
136
|
- faq/faq.yml
|
183
137
|
- lib/sqlite3.rb
|
@@ -190,11 +144,7 @@ files:
|
|
190
144
|
- lib/sqlite3/translator.rb
|
191
145
|
- lib/sqlite3/value.rb
|
192
146
|
- lib/sqlite3/version.rb
|
193
|
-
-
|
194
|
-
- rakelib/gem.rake
|
195
|
-
- rakelib/native.rake
|
196
|
-
- rakelib/vendor_sqlite3.rake
|
197
|
-
- setup.rb
|
147
|
+
- ports/archives/sqlite-autoconf-3380500.tar.gz
|
198
148
|
- test/helper.rb
|
199
149
|
- test/test_backup.rb
|
200
150
|
- test/test_collation.rb
|
@@ -218,26 +168,32 @@ homepage: https://github.com/sparklemotion/sqlite3-ruby
|
|
218
168
|
licenses:
|
219
169
|
- BSD-3-Clause
|
220
170
|
metadata:
|
171
|
+
homepage_uri: https://github.com/sparklemotion/sqlite3-ruby
|
172
|
+
bug_tracker_uri: https://github.com/sparklemotion/sqlite3-ruby/issues
|
173
|
+
documentation_uri: https://www.rubydoc.info/gems/sqlite3
|
174
|
+
changelog_uri: https://github.com/sparklemotion/sqlite3-ruby/blob/master/CHANGELOG.md
|
175
|
+
source_code_uri: https://github.com/sparklemotion/sqlite3-ruby
|
221
176
|
msys2_mingw_dependencies: sqlite3
|
222
|
-
|
177
|
+
rubygems_mfa_required: 'true'
|
178
|
+
post_install_message:
|
223
179
|
rdoc_options:
|
224
180
|
- "--main"
|
225
|
-
- README.
|
181
|
+
- README.md
|
226
182
|
require_paths:
|
227
183
|
- lib
|
228
184
|
required_ruby_version: !ruby/object:Gem::Requirement
|
229
185
|
requirements:
|
230
186
|
- - ">="
|
231
187
|
- !ruby/object:Gem::Version
|
232
|
-
version: 1.
|
188
|
+
version: 1.9.2
|
233
189
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
234
190
|
requirements:
|
235
|
-
- - "
|
191
|
+
- - ">"
|
236
192
|
- !ruby/object:Gem::Version
|
237
|
-
version: 1.3.
|
193
|
+
version: 1.3.1
|
238
194
|
requirements: []
|
239
|
-
rubygems_version: 3.
|
240
|
-
signing_key:
|
195
|
+
rubygems_version: 3.3.7
|
196
|
+
signing_key:
|
241
197
|
specification_version: 4
|
242
198
|
summary: This module allows Ruby programs to interface with the SQLite3 database engine
|
243
199
|
(http://www.sqlite.org)
|
data/CHANGELOG.rdoc
DELETED
@@ -1,333 +0,0 @@
|
|
1
|
-
=== 1.4.4 (2022-06-14)
|
2
|
-
|
3
|
-
* Fixes
|
4
|
-
* Compilation no longer fails against SQLite3 versions < 3.29.0. This issue was introduced in v1.4.3. [#324] (Thank you, @r6e!)
|
5
|
-
|
6
|
-
|
7
|
-
=== 1.4.3 (2022-05-25)
|
8
|
-
|
9
|
-
* Enhancements
|
10
|
-
* Disable non-standard support for double-quoted string literals via the `:strict` option. [#317] (Thank you, @casperisfine!)
|
11
|
-
* Column type names are now explicitly downcased on platforms where they may have been in shoutcaps. [#315] (Thank you, @petergoldstein!)
|
12
|
-
* Support File or Pathname arguments to `Database.new`. [#283] (Thank you, @yb66!)
|
13
|
-
* Support building on MSVC. [#285] (Thank you, @jmarrec!)
|
14
|
-
|
15
|
-
|
16
|
-
=== 1.4.2 (2019-12-18)
|
17
|
-
|
18
|
-
* Travis: Drop unused setting "sudo: false"
|
19
|
-
* The taint mechanism will be deprecated in Ruby 2.7
|
20
|
-
* Fix Ruby 2.7 rb_check_safe_obj warnings
|
21
|
-
* Update travis config
|
22
|
-
|
23
|
-
=== 1.4.1
|
24
|
-
|
25
|
-
* Don't mandate dl functions for the extention build
|
26
|
-
* bumping version
|
27
|
-
|
28
|
-
=== 1.4.0
|
29
|
-
|
30
|
-
* Enhancements
|
31
|
-
* Better aggregator support
|
32
|
-
|
33
|
-
* Bugfixes
|
34
|
-
* Various
|
35
|
-
|
36
|
-
=== 1.3.13
|
37
|
-
|
38
|
-
* Enancements
|
39
|
-
* Support SQLite flags when defining functions
|
40
|
-
* Add definition for SQLITE_DETERMINISTIC flag
|
41
|
-
|
42
|
-
=== 1.3.12
|
43
|
-
|
44
|
-
* Bugfixes:
|
45
|
-
* OS X install will default to homebrew if available. Fixes #195
|
46
|
-
|
47
|
-
=== 1.3.11 / 2015-10-10
|
48
|
-
|
49
|
-
* Enhancements:
|
50
|
-
* Windows: build against SQLite 3.8.11.1
|
51
|
-
|
52
|
-
* Internal:
|
53
|
-
* Use rake-compiler-dock to build Windows binaries. Pull #159 [larskanis]
|
54
|
-
* Expand Ruby versions being tested for Travis and AppVeyor
|
55
|
-
|
56
|
-
=== 1.3.10 / 2014-10-30
|
57
|
-
|
58
|
-
* Enhancements:
|
59
|
-
* Windows: build against SQLite 3.8.6. Closes #135 [Hubro]
|
60
|
-
|
61
|
-
=== 1.3.9 / 2014-02-25
|
62
|
-
|
63
|
-
* Bugfixes:
|
64
|
-
* Reset exception message. Closes #80
|
65
|
-
* Reduce warnings due unused pointers. Closes #89
|
66
|
-
* Add BSD-3 license reference to gemspec. Refs #99 and #106
|
67
|
-
|
68
|
-
=== 1.3.8 / 2013-08-17
|
69
|
-
|
70
|
-
* Enhancements:
|
71
|
-
* Windows: build against SQLite 3.7.17
|
72
|
-
|
73
|
-
* Bugfixes:
|
74
|
-
* Reset exception message. Closes #80
|
75
|
-
* Correctly convert BLOB values to Ruby. Closes #65
|
76
|
-
* Add MIT license reference to gemspec. Closes #99
|
77
|
-
* Remove unused pointer. Closes #89
|
78
|
-
|
79
|
-
* Internal:
|
80
|
-
* Backport improvements in cross compilation for Windows
|
81
|
-
* Use of Minitest for internal tests
|
82
|
-
* Use Gemfile (generated by Hoe) to deal with dependencies
|
83
|
-
* Cleanup Travis CI
|
84
|
-
|
85
|
-
=== 1.3.7 / 2013-01-11
|
86
|
-
|
87
|
-
* Bugfixes
|
88
|
-
* Closing a bad statement twice will not segv.
|
89
|
-
* Aggregate handlers are initialized on each query. Closes #44
|
90
|
-
|
91
|
-
* Internal
|
92
|
-
* Unset environment variables that could affect cross compilation.
|
93
|
-
|
94
|
-
=== 1.3.6 / 2012-04-16
|
95
|
-
|
96
|
-
* Enhancements
|
97
|
-
* Windows: build against SQLite 3.7.11
|
98
|
-
* Added SQLite3::ResultSet#each_hash for fetching each row as a hash.
|
99
|
-
* Added SQLite3::ResultSet#next_hash for fetching one row as a hash.
|
100
|
-
|
101
|
-
* Bugfixes
|
102
|
-
* Support both UTF-16LE and UTF-16BE encoding modes on PPC. Closes #63
|
103
|
-
* Protect parameters to custom functions from being garbage collected too
|
104
|
-
soon. Fixes #60. Thanks hirataya!
|
105
|
-
* Fix backwards compatibility with 1.2.5 with bind vars and `query` method.
|
106
|
-
Fixes #35.
|
107
|
-
* Fix double definition error caused by defining sqlite3_int64/uint64.
|
108
|
-
* Fix suspicious version regexp.
|
109
|
-
|
110
|
-
* Deprecations
|
111
|
-
* ArrayWithTypesAndFields#types is deprecated and the class will be removed
|
112
|
-
in version 2.0.0. Please use the `types` method on the ResultSet class
|
113
|
-
that created this object.
|
114
|
-
* ArrayWithTypesAndFields#fields is deprecated and the class will be removed
|
115
|
-
in version 2.0.0. Please use the `columns` method on the ResultSet class
|
116
|
-
that created this object.
|
117
|
-
* The ArrayWithTypesAndFields class will be removed in 2.0.0
|
118
|
-
* The ArrayWithTypes class will be removed in 2.0.0
|
119
|
-
* HashWithTypesAndFields#types is deprecated and the class will be removed
|
120
|
-
in version 2.0.0. Please use the `types` method on the ResultSet class
|
121
|
-
that created this object.
|
122
|
-
* HashWithTypesAndFields#fields is deprecated and the class will be removed
|
123
|
-
in version 2.0.0. Please use the `columns` method on the ResultSet class
|
124
|
-
that created this object.
|
125
|
-
|
126
|
-
=== 1.3.5 / 2011-12-03 - ZOMG Holidays are here Edition!
|
127
|
-
|
128
|
-
* Enhancements
|
129
|
-
* Windows: build against SQLite 3.7.9
|
130
|
-
* Static: enable SQLITE_ENABLE_COLUMN_METADATA
|
131
|
-
* Added Statement#clear_bindings! to set bindings back to nil
|
132
|
-
|
133
|
-
* Bugfixes
|
134
|
-
* Fixed a segv on Database.new. Fixes #34 (thanks nobu!)
|
135
|
-
* Database error is not reset, so don't check it in Statement#reset!
|
136
|
-
* Remove conditional around Bignum statement bindings.
|
137
|
-
Fixes #52. Fixes #56. Thank you Evgeny Myasishchev.
|
138
|
-
|
139
|
-
* Internal
|
140
|
-
* Use proper endianness when testing database connection with UTF-16.
|
141
|
-
Fixes #40. Fixes #51
|
142
|
-
* Use -fPIC for static compilation when host is x86_64.
|
143
|
-
|
144
|
-
=== 1.3.4 / 2011-07-25
|
145
|
-
|
146
|
-
* Enhancements:
|
147
|
-
* Windows: build against SQLite 3.7.7.1
|
148
|
-
* Windows: build static binaries that do not depend on sqlite3.dll be
|
149
|
-
installed anymore
|
150
|
-
|
151
|
-
* Bugfixes
|
152
|
-
* Backup API is conditionally required so that older libsqlite3 can be used.
|
153
|
-
Thanks Hongli Lai.
|
154
|
-
* Fixed segmentation fault when nil is passed to SQLite3::Statement.new
|
155
|
-
* Fix extconf's hardcoded path that affected installation on certain systems.
|
156
|
-
|
157
|
-
=== 1.3.3 / 2010-01-16
|
158
|
-
|
159
|
-
* Bugfixes
|
160
|
-
* Abort on installation if sqlite3_backup_init is missing. Fixes #19
|
161
|
-
* Gem has been renamed to 'sqlite3'. Please use `gem install sqlite3`
|
162
|
-
|
163
|
-
=== 1.3.2 / 2010-10-30 / RubyConf Uruguay Edition!
|
164
|
-
|
165
|
-
* Enhancements:
|
166
|
-
* Windows: build against 3.7.3 version of SQLite3
|
167
|
-
* SQLite3::Database can now be open as readonly
|
168
|
-
|
169
|
-
db = SQLite3::Database.new('my.db', :readonly => true)
|
170
|
-
|
171
|
-
* Added SQLite3::SQLITE_VERSION and SQLite3::SQLITE_VERSION_NUMBER [nurse]
|
172
|
-
|
173
|
-
* Bugfixes
|
174
|
-
* type_translation= works along with Database#execute and a block
|
175
|
-
* defined functions are kept in a hash to prevent GC. #7
|
176
|
-
* Removed GCC specific flags from extconf.
|
177
|
-
|
178
|
-
* DEPRECATIONS
|
179
|
-
* SQLite3::Database#type_translation= will be deprecated in the future with
|
180
|
-
no replacement.
|
181
|
-
* SQlite3::Version will be deprecated in 2.0.0 with SQLite3::VERSION as the
|
182
|
-
replacement.
|
183
|
-
|
184
|
-
=== 1.3.1 / 2010-07-09
|
185
|
-
|
186
|
-
* Enhancements
|
187
|
-
* Custom collations may be defined using SQLite3::Database#collation
|
188
|
-
|
189
|
-
* Bugfixes
|
190
|
-
* Statements returning 0 columns are automatically stepped. [RF #28308]
|
191
|
-
* SQLite3::Database#encoding works on 1.8 and 1.9
|
192
|
-
|
193
|
-
=== 1.3.0 / 2010-06-06
|
194
|
-
|
195
|
-
* Enhancements
|
196
|
-
* Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove]
|
197
|
-
See API_CHANGES document for details.
|
198
|
-
This closes: Bug #27300, Bug #27241, Patch #16020
|
199
|
-
* Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse]
|
200
|
-
* Added support for type translations [tenderlove]
|
201
|
-
|
202
|
-
@db.translator.add_translator('sometime') do |type, thing|
|
203
|
-
'output' # this will be returned as value for that column
|
204
|
-
end
|
205
|
-
|
206
|
-
* Experimental
|
207
|
-
* Added API to access and load extensions. [kashif]
|
208
|
-
These functions maps directly into SQLite3 own enable_load_extension()
|
209
|
-
and load_extension() C-API functions. See SQLite3::Database API documentation for details.
|
210
|
-
This closes: Patches #9178
|
211
|
-
|
212
|
-
* Bugfixes
|
213
|
-
* Corrected gem dependencies (runtime and development)
|
214
|
-
* Fixed threaded tests [Alexey Borzenkov]
|
215
|
-
* Removed GitHub gemspec
|
216
|
-
* Fixed "No definition for" warnings from RDoc
|
217
|
-
* Generate zip and tgz files for releases
|
218
|
-
* Added Luis Lavena as gem Author (maintainer)
|
219
|
-
* Prevent mkmf interfere with Mighty Snow Leopard
|
220
|
-
* Allow extension compilation search for common lib paths [kashif]
|
221
|
-
(lookup /usr/local, /opt/local and /usr)
|
222
|
-
* Corrected extension compilation under MSVC [romuloceccon]
|
223
|
-
* Define load_extension functionality based on availability [tenderlove]
|
224
|
-
* Deprecation notices for Database#query. Fixes RF #28192
|
225
|
-
|
226
|
-
=== 1.3.0.beta.2 / 2010-05-15
|
227
|
-
|
228
|
-
* Enhancements
|
229
|
-
* Added support for type translations [tenderlove]
|
230
|
-
|
231
|
-
@db.translator.add_translator('sometime') do |type, thing|
|
232
|
-
'output' # this will be returned as value for that column
|
233
|
-
end
|
234
|
-
|
235
|
-
* Bugfixes
|
236
|
-
* Allow extension compilation search for common lib paths [kashif]
|
237
|
-
(lookup /usr/local, /opt/local and /usr)
|
238
|
-
* Corrected extension compilation under MSVC [romuloceccon]
|
239
|
-
* Define load_extension functionality based on availability [tenderlove]
|
240
|
-
* Deprecation notices for Database#query. Fixes RF #28192
|
241
|
-
|
242
|
-
=== 1.3.0.beta.1 / 2010-05-10
|
243
|
-
|
244
|
-
* Enhancements
|
245
|
-
* Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove]
|
246
|
-
See API_CHANGES document for details.
|
247
|
-
This closes: Bug #27300, Bug #27241, Patch #16020
|
248
|
-
* Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse]
|
249
|
-
|
250
|
-
* Experimental
|
251
|
-
* Added API to access and load extensions. [kashif]
|
252
|
-
These functions maps directly into SQLite3 own enable_load_extension()
|
253
|
-
and load_extension() C-API functions. See SQLite3::Database API documentation for details.
|
254
|
-
This closes: Patches #9178
|
255
|
-
|
256
|
-
* Bugfixes
|
257
|
-
* Corrected gem dependencies (runtime and development)
|
258
|
-
* Fixed threaded tests [Alexey Borzenkov]
|
259
|
-
* Removed GitHub gemspec
|
260
|
-
* Fixed "No definition for" warnings from RDoc
|
261
|
-
* Generate zip and tgz files for releases
|
262
|
-
* Added Luis Lavena as gem Author (maintainer)
|
263
|
-
* Prevent mkmf interfere with Mighty Snow Leopard
|
264
|
-
|
265
|
-
=== 1.2.5 / 25 Jul 2009
|
266
|
-
|
267
|
-
* Check for illegal nil before executing SQL [Erik Veenstra]
|
268
|
-
* Switch to Hoe for gem task management and packaging.
|
269
|
-
* Advertise rake-compiler as development dependency.
|
270
|
-
* Build gem binaries for Windows.
|
271
|
-
* Improved Ruby 1.9 support compatibility.
|
272
|
-
* Taint returned values. Patch #20325.
|
273
|
-
* Database.open and Database.new now take an optional block [Gerrit Kaiser]
|
274
|
-
|
275
|
-
|
276
|
-
=== 1.2.4.1 (internal) / 5 Jul 2009
|
277
|
-
|
278
|
-
* Check for illegal nil before executing SQL [Erik Veenstra]
|
279
|
-
* Switch to Hoe for gem task management and packaging.
|
280
|
-
* Advertise rake-compiler as development dependency.
|
281
|
-
* Build gem binaries for Windows.
|
282
|
-
* Improved Ruby 1.9 support compatibility.
|
283
|
-
|
284
|
-
|
285
|
-
=== 1.2.4 / 27 Aug 2008
|
286
|
-
|
287
|
-
* Package the updated C file for source builds. [Jamis Buck]
|
288
|
-
|
289
|
-
|
290
|
-
=== 1.2.3 / 26 Aug 2008
|
291
|
-
|
292
|
-
* Fix incorrect permissions on database.rb and translator.rb [Various]
|
293
|
-
|
294
|
-
* Avoid using Object#extend for greater speedups [Erik Veenstra]
|
295
|
-
|
296
|
-
* Ruby 1.9 compatibility tweaks for Array#zip [jimmy88@gmail.com]
|
297
|
-
|
298
|
-
* Fix linking against Ruby 1.8.5 [Rob Holland <rob@inversepath.com>]
|
299
|
-
|
300
|
-
|
301
|
-
=== 1.2.2 / 31 May 2008
|
302
|
-
|
303
|
-
* Make the table_info method adjust the returned default value for the rows
|
304
|
-
so that the sqlite3 change in 3.3.8 and greater can be handled
|
305
|
-
transparently [Jamis Buck <jamis@37signals.com>]
|
306
|
-
|
307
|
-
* Ruby 1.9 compatibility tweaks [Roman Le Negrate <roman2k@free.fr>]
|
308
|
-
|
309
|
-
* Various performance enhancements [thanks Erik Veenstra]
|
310
|
-
|
311
|
-
* Correct busy_handler documentation [Rob Holland <rob@inversepath.com>]
|
312
|
-
|
313
|
-
* Use int_bind64 on Fixnum values larger than a 32bit C int can take. [Rob Holland <rob@inversepath.com>]
|
314
|
-
|
315
|
-
* Work around a quirk in SQLite's error reporting by calling sqlite3_reset
|
316
|
-
to produce a more informative error code upon a failure from
|
317
|
-
sqlite3_step. [Rob Holland <rob@inversepath.com>]
|
318
|
-
|
319
|
-
* Various documentation, test, and style tweaks [Rob Holland <rob@inversepath.com>]
|
320
|
-
|
321
|
-
* Be more granular with time/data translation [Rob Holland <rob@inversepath.com>]
|
322
|
-
|
323
|
-
* Use Date directly for parsing rather than going via Time [Rob Holland <rob@inversepath.com>]
|
324
|
-
|
325
|
-
* Check for the rt library and fdatasync so we link against that when
|
326
|
-
needed [Rob Holland <rob@inversepath.com>]
|
327
|
-
|
328
|
-
* Rename data structures to avoid collision on win32. based on patch
|
329
|
-
by: Luis Lavena [Rob Holland <rob@inversepath.com>]
|
330
|
-
|
331
|
-
* Add test for defaults [Daniel Rodríguez Troitiño]
|
332
|
-
|
333
|
-
* Correctly unquote double-quoted pragma defaults [Łukasz Dargiewicz <lukasz.dargiewicz@gmail.com>]
|
data/Manifest.txt
DELETED
@@ -1,59 +0,0 @@
|
|
1
|
-
.gemtest
|
2
|
-
API_CHANGES.rdoc
|
3
|
-
CHANGELOG.rdoc
|
4
|
-
ChangeLog.cvs
|
5
|
-
Gemfile
|
6
|
-
LICENSE
|
7
|
-
Manifest.txt
|
8
|
-
README.rdoc
|
9
|
-
Rakefile
|
10
|
-
appveyor.yml
|
11
|
-
ext/sqlite3/aggregator.c
|
12
|
-
ext/sqlite3/aggregator.h
|
13
|
-
ext/sqlite3/backup.c
|
14
|
-
ext/sqlite3/backup.h
|
15
|
-
ext/sqlite3/database.c
|
16
|
-
ext/sqlite3/database.h
|
17
|
-
ext/sqlite3/exception.c
|
18
|
-
ext/sqlite3/exception.h
|
19
|
-
ext/sqlite3/extconf.rb
|
20
|
-
ext/sqlite3/sqlite3.c
|
21
|
-
ext/sqlite3/sqlite3_ruby.h
|
22
|
-
ext/sqlite3/statement.c
|
23
|
-
ext/sqlite3/statement.h
|
24
|
-
faq/faq.rb
|
25
|
-
faq/faq.yml
|
26
|
-
lib/sqlite3.rb
|
27
|
-
lib/sqlite3/constants.rb
|
28
|
-
lib/sqlite3/database.rb
|
29
|
-
lib/sqlite3/errors.rb
|
30
|
-
lib/sqlite3/pragmas.rb
|
31
|
-
lib/sqlite3/resultset.rb
|
32
|
-
lib/sqlite3/statement.rb
|
33
|
-
lib/sqlite3/translator.rb
|
34
|
-
lib/sqlite3/value.rb
|
35
|
-
lib/sqlite3/version.rb
|
36
|
-
rakelib/faq.rake
|
37
|
-
rakelib/gem.rake
|
38
|
-
rakelib/native.rake
|
39
|
-
rakelib/vendor_sqlite3.rake
|
40
|
-
setup.rb
|
41
|
-
test/helper.rb
|
42
|
-
test/test_backup.rb
|
43
|
-
test/test_collation.rb
|
44
|
-
test/test_database.rb
|
45
|
-
test/test_database_flags.rb
|
46
|
-
test/test_database_readonly.rb
|
47
|
-
test/test_database_readwrite.rb
|
48
|
-
test/test_deprecated.rb
|
49
|
-
test/test_encoding.rb
|
50
|
-
test/test_integration.rb
|
51
|
-
test/test_integration_aggregate.rb
|
52
|
-
test/test_integration_open_close.rb
|
53
|
-
test/test_integration_pending.rb
|
54
|
-
test/test_integration_resultset.rb
|
55
|
-
test/test_integration_statement.rb
|
56
|
-
test/test_result_set.rb
|
57
|
-
test/test_sqlite3.rb
|
58
|
-
test/test_statement.rb
|
59
|
-
test/test_statement_execute.rb
|