mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 09:46:02 -04:00
Update SQLite3 from 3.30.1 to 3.32.1 (2020-05-25)
This commit is contained in:
parent
f0cd9e3586
commit
7edd337591
353
CHANGELOG.md
353
CHANGELOG.md
@ -1,178 +1,179 @@
|
|||||||
Mar 30 2012
|
Mar 30 2012
|
||||||
- Start of a new thin C++ SQLite wrapper
|
- Start of a new thin C++ SQLite wrapper
|
||||||
|
|
||||||
Apr 2 2012
|
Apr 2 2012
|
||||||
- The wrapper is functional
|
- The wrapper is functional
|
||||||
- Added documentation and examples
|
- Added documentation and examples
|
||||||
- Publication on GitHub
|
- Publication on GitHub
|
||||||
|
|
||||||
Version 0.1.0 - Apr 4 2012
|
Version 0.1.0 - Apr 4 2012
|
||||||
- Added a Database::exec() method to execute simple SQL statement
|
- Added a Database::exec() method to execute simple SQL statement
|
||||||
- Added a version number like in sqlite3.h, starting with 0.1.0
|
- Added a version number like in sqlite3.h, starting with 0.1.0
|
||||||
|
|
||||||
Version 0.2.0 - Apr 11 2012
|
Version 0.2.0 - Apr 11 2012
|
||||||
- Added getLastInsertId() and setBusyTimout()
|
- Added getLastInsertId() and setBusyTimout()
|
||||||
- Added bind() by name methods
|
- Added bind() by name methods
|
||||||
|
|
||||||
Version 0.3.0 - Apr 16 2012
|
Version 0.3.0 - Apr 16 2012
|
||||||
- Added an easy wrapper Database::execAngGet()
|
- Added an easy wrapper Database::execAngGet()
|
||||||
|
|
||||||
Version 0.4.0 - Apr 23 2012
|
Version 0.4.0 - Apr 23 2012
|
||||||
- Added a Database::tableExists() easy to use function
|
- Added a Database::tableExists() easy to use function
|
||||||
|
|
||||||
Dec 10 2012
|
Dec 10 2012
|
||||||
- Added a Statement::exec() method to execute a one-step query with no expected result
|
- Added a Statement::exec() method to execute a one-step query with no expected result
|
||||||
|
|
||||||
Version 0.5.0 - March 9 2013
|
Version 0.5.0 - March 9 2013
|
||||||
- Added assert() on errors on destructors
|
- Added assert() on errors on destructors
|
||||||
- Added getBytes()
|
- Added getBytes()
|
||||||
- Added getBlob(), getType() and isInteger/isFloat/isText/isBlob/isNull
|
- Added getBlob(), getType() and isInteger/isFloat/isText/isBlob/isNull
|
||||||
- Added bind() for binary blob data
|
- Added bind() for binary blob data
|
||||||
|
|
||||||
Version 0.5.1 - April 7 2013
|
Version 0.5.1 - April 7 2013
|
||||||
- Added Column::getName()
|
- Added Column::getName()
|
||||||
|
|
||||||
Version 0.6.0 - November 22 2013
|
Version 0.6.0 - November 22 2013
|
||||||
- Renamed Column::getName() to Column::getOriginName()
|
- Renamed Column::getName() to Column::getOriginName()
|
||||||
- Added Column::getName()
|
- Added Column::getName()
|
||||||
|
|
||||||
Version 0.7.0 - January 9 2014
|
Version 0.7.0 - January 9 2014
|
||||||
- Added Database::createFunction()
|
- Added Database::createFunction()
|
||||||
- Added std::string version of existing APIs
|
- Added std::string version of existing APIs
|
||||||
- Improved CMake with more build options and Doxygen auto-detection
|
- Improved CMake with more build options and Doxygen auto-detection
|
||||||
|
|
||||||
Version 0.8.0 - February 26 2014
|
Version 0.8.0 - February 26 2014
|
||||||
- Database constructor support opening a database with a custom VFS (default to NULL)
|
- Database constructor support opening a database with a custom VFS (default to NULL)
|
||||||
- Changed Column::getText() to return empty string "" by default instead of NULL pointer (to handle std::string conversion)
|
- Changed Column::getText() to return empty string "" by default instead of NULL pointer (to handle std::string conversion)
|
||||||
|
|
||||||
Version 1.0.0 - May 3 2015
|
Version 1.0.0 - May 3 2015
|
||||||
- Public headers file moved to include/ dir
|
- Public headers file moved to include/ dir
|
||||||
- Added support to biicode in CMakeLists.txt
|
- Added support to biicode in CMakeLists.txt
|
||||||
- Added Unit Tests
|
- Added Unit Tests
|
||||||
- Added aBusyTimeoutMs parameter to Database() constructors
|
- Added aBusyTimeoutMs parameter to Database() constructors
|
||||||
- Added Database::getTotalChanges()
|
- Added Database::getTotalChanges()
|
||||||
- Added Database::getErrorCode()
|
- Added Database::getErrorCode()
|
||||||
- Added Statement::clearBindings()
|
- Added Statement::clearBindings()
|
||||||
- Added Statement::getColumn(aName)
|
- Added Statement::getColumn(aName)
|
||||||
- Added Statement::getErrorCode()
|
- Added Statement::getErrorCode()
|
||||||
- Added Statement::getColumnName(aIndex)
|
- Added Statement::getColumnName(aIndex)
|
||||||
- Added Statement::getColumnOriginName(aIndex)
|
- Added Statement::getColumnOriginName(aIndex)
|
||||||
|
|
||||||
Version 1.1.0 - May 18 2015
|
Version 1.1.0 - May 18 2015
|
||||||
- Fixed valgrind error on Database destructor
|
- Fixed valgrind error on Database destructor
|
||||||
- Added Database::loadExtension
|
- Added Database::loadExtension
|
||||||
|
|
||||||
Version 1.2.0 - September 9 2015
|
Version 1.2.0 - September 9 2015
|
||||||
- Fixed build with GCC 5.1.0
|
- Fixed build with GCC 5.1.0
|
||||||
- Fixed MSVC release build warning
|
- Fixed MSVC release build warning
|
||||||
- Fixed CppDepends warnings
|
- Fixed CppDepends warnings
|
||||||
- Updated documentation on installation
|
- Updated documentation on installation
|
||||||
- Added Database::getHandle()
|
- Added Database::getHandle()
|
||||||
|
|
||||||
Version 1.3.0 - November 1 2015
|
Version 1.3.0 - November 1 2015
|
||||||
- Fixed build with Visual Studio 2015
|
- Fixed build with Visual Studio 2015
|
||||||
- Further improvements to README
|
- Further improvements to README
|
||||||
- Added Backup class
|
- Added Backup class
|
||||||
|
|
||||||
Version 1.3.1 - February 10 2016
|
Version 1.3.1 - February 10 2016
|
||||||
- Switch Linux/Mac build to the provided SQLite3 C library
|
- Switch Linux/Mac build to the provided SQLite3 C library
|
||||||
- Update SQLite3 from 3.8.8.3 to latest 3.10.2 (2016-01-20)
|
- Update SQLite3 from 3.8.8.3 to latest 3.10.2 (2016-01-20)
|
||||||
- Remove warnings
|
- Remove warnings
|
||||||
- Remove biicode support (defunct service, servers will shutdown the 16th of February 2016)
|
- Remove biicode support (defunct service, servers will shutdown the 16th of February 2016)
|
||||||
|
|
||||||
Version 2.0.0 - July 25 2016
|
Version 2.0.0 - July 25 2016
|
||||||
- Update SQLite3 from 3.10.2 to latest 3.13 (2016-05-18)
|
- Update SQLite3 from 3.10.2 to latest 3.13 (2016-05-18)
|
||||||
- Move #include <sqlite3.h> from headers to .cpp files only using forward declarations
|
- Move #include <sqlite3.h> from headers to .cpp files only using forward declarations
|
||||||
- Add Database::VERSION to reach SQLITE_VERSION without including sqlite3.h in application code
|
- Add Database::VERSION to reach SQLITE_VERSION without including sqlite3.h in application code
|
||||||
- Add getLibVersion() and getLibVersionNumber() to get runtime version of the library
|
- Add getLibVersion() and getLibVersionNumber() to get runtime version of the library
|
||||||
- Better exception messages when Statements fail PR #84
|
- Better exception messages when Statements fail PR #84
|
||||||
- Variadic templates for bind() (C++14) PR #85
|
- Variadic templates for bind() (C++14) PR #85
|
||||||
- Add Statement::bindNoCopy() methods for strings, using SQLITE_STATIC to avoid internal copy by SQLite3 PR #86
|
- Add Statement::bindNoCopy() methods for strings, using SQLITE_STATIC to avoid internal copy by SQLite3 PR #86
|
||||||
- Add Statement::bind() overload for uint32_t, and Column::getUint() and cast operator to uint32_t PR #86
|
- Add Statement::bind() overload for uint32_t, and Column::getUint() and cast operator to uint32_t PR #86
|
||||||
- Use the new SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION from SQLite 3.13 for security reason
|
- Use the new SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION from SQLite 3.13 for security reason
|
||||||
- Rename Backup::remainingPageCount()/totalPageCount() to Backup::getRemainingPageCount()/getTotalPageCount()
|
- Rename Backup::remainingPageCount()/totalPageCount() to Backup::getRemainingPageCount()/getTotalPageCount()
|
||||||
- Remove Column::errmsg() method : use Database or Statement equivalents
|
- Remove Column::errmsg() method : use Database or Statement equivalents
|
||||||
- More unit tests, with code coverage status on the GitHub page
|
- More unit tests, with code coverage status on the GitHub page
|
||||||
- Do not force MSVC to use static runtime if unit-tests are not build
|
- Do not force MSVC to use static runtime if unit-tests are not build
|
||||||
|
|
||||||
Version 2.1.0 - July 18 2017
|
Version 2.1.0 - July 18 2017
|
||||||
- Update SQLite3 from 3.13 to latest 3.19.3 (2017-06-08)
|
- Update SQLite3 from 3.13 to latest 3.19.3 (2017-06-08)
|
||||||
- Fixed Incompatibility in 3.19.0 (to use older SQLite version set the CMake variable SQLITE_USE_LEGACY_STRUCT) #125
|
- Fixed Incompatibility in 3.19.0 (to use older SQLite version set the CMake variable SQLITE_USE_LEGACY_STRUCT) #125
|
||||||
- Fixed link error (inline in cpp) and compiler warnings (unused variable...) #96
|
- Fixed link error (inline in cpp) and compiler warnings (unused variable...) #96
|
||||||
- Added ability to open encrypted databases (using SQLCipher, eg. libsqlcipher-dev) #107
|
- Added ability to open encrypted databases (using SQLCipher, eg. libsqlcipher-dev) #107
|
||||||
- Added convenience functions for constructing objects from a row #114
|
- Added convenience functions for constructing objects from a row #114
|
||||||
- Added CMake install step #118
|
- Added CMake install step #118
|
||||||
- Fix warnings #119
|
- Fix warnings #119
|
||||||
- Make cpplint.py Python-3 compatible #120
|
- Make cpplint.py Python-3 compatible #120
|
||||||
- Link libssp when targeted #100
|
- Link libssp when targeted #100
|
||||||
- Removed redundant const #102
|
- Removed redundant const #102
|
||||||
|
|
||||||
Version 2.2.0 - Sept 19 2017
|
Version 2.2.0 - Sept 19 2017
|
||||||
- Update SQLite3 from 3.19.3 to latest 3.20.1 (2017-08-24) #143
|
- Update SQLite3 from 3.19.3 to latest 3.20.1 (2017-08-24) #143
|
||||||
- Added tryExecuteStep and tryReset #142
|
- Added tryExecuteStep and tryReset #142
|
||||||
- Removed virtual keywords from destructors #140
|
- Removed virtual keywords from destructors #140
|
||||||
- Removed misplaced noexcept keyword #139
|
- Removed misplaced noexcept keyword #139
|
||||||
- Improved Exception class C++ conformance #138
|
- Improved Exception class C++ conformance #138
|
||||||
- Fix warnings #134
|
- Fix warnings #134
|
||||||
- Deprecated Statement::isOk() to Statement::hasRow()
|
- Deprecated Statement::isOk() to Statement::hasRow()
|
||||||
|
|
||||||
Version 2.3.0 - March 3 2019
|
Version 2.3.0 - March 3 2019
|
||||||
- Update SQLite3 from 3.20.1 to latest 3.27.2 (2019-02-25) #183 #187
|
- Update SQLite3 from 3.20.1 to latest 3.27.2 (2019-02-25) #183 #187
|
||||||
- Add Statement binding for long int values #147
|
- Add Statement binding for long int values #147
|
||||||
- Allows long int for bind when used with name #148
|
- Allows long int for bind when used with name #148
|
||||||
- More cmake instructions for Linux #151
|
- More cmake instructions for Linux #151
|
||||||
- Add comparison with sqlite_orm #141
|
- Add comparison with sqlite_orm #141
|
||||||
- Fix Statement::bind truncates long integer to 32 bits on x86_64 Linux #155
|
- Fix Statement::bind truncates long integer to 32 bits on x86_64 Linux #155
|
||||||
- Add a move constructor to Database #157
|
- Add a move constructor to Database #157
|
||||||
- Added tests for all MSVC compilers available on AppVeyor (2013, 2015, 2017) #169
|
- Added tests for all MSVC compilers available on AppVeyor (2013, 2015, 2017) #169
|
||||||
- Update VariadicBind.h #172
|
- Update VariadicBind.h #172
|
||||||
- Better CMake compatibility #170
|
- Better CMake compatibility #170
|
||||||
- Add implicit cast operator to char and short types #179 #180
|
- Add implicit cast operator to char and short types #179 #180
|
||||||
|
|
||||||
Version 2.4.0 - August 25 2019
|
Version 2.4.0 - August 25 2019
|
||||||
- Update SQLite3 from 3.27.2 to 3.29.0 (2019-07-10) #217
|
- Update SQLite3 from 3.27.2 to 3.29.0 (2019-07-10) #217
|
||||||
- #191 CMake Warning line 299
|
- #191 CMake Warning line 299
|
||||||
- #190 Implement move constructors
|
- #190 Implement move constructors
|
||||||
- #192 Add wrapper for bind parameter count
|
- #192 Add wrapper for bind parameter count
|
||||||
- #197 Add tuple_bind and execute_many (requested by #24)
|
- #197 Add tuple_bind and execute_many (requested by #24)
|
||||||
- #199 Fix #156 misleading error message in exception from Statement::exec
|
- #199 Fix #156 misleading error message in exception from Statement::exec
|
||||||
- #201 Add Statement::getExpandedSQL() to get the SQL text of prepared statement with bound parameters expanded
|
- #201 Add Statement::getExpandedSQL() to get the SQL text of prepared statement with bound parameters expanded
|
||||||
- #211 Implement Database::backup()
|
- #211 Implement Database::backup()
|
||||||
- #215 Disable implicit fallthrough warning when building internal sqlite3
|
- #215 Disable implicit fallthrough warning when building internal sqlite3
|
||||||
- #216 Set PROJECT_VERSION to fix CMP0048 Policy warnings
|
- #216 Set PROJECT_VERSION to fix CMP0048 Policy warnings
|
||||||
|
|
||||||
Version 2.5.0 - December 31 2019
|
Version 2.5.0 - December 31 2019
|
||||||
- Update SQLite3 from 3.29.0 to 3.30.1 (2019-10-10)
|
- Update SQLite3 from 3.29.0 to 3.30.1 (2019-10-10)
|
||||||
- 100% Unit Test coverage
|
- 100% Unit Test coverage
|
||||||
- #212 fix sqlite3 compile properties (jzt)
|
- #212 fix sqlite3 compile properties (jzt)
|
||||||
- #219 Disable cast-function-type warning when building internal sqlite (zxey)
|
- #219 Disable cast-function-type warning when building internal sqlite (zxey)
|
||||||
- #230 Fixed installation on other than Ubuntu GNU/Linux distributions (xvitaly)
|
- #230 Fixed installation on other than Ubuntu GNU/Linux distributions (xvitaly)
|
||||||
- #228 use transitive compile definitions via cmake (BioDataAnalysis/emmenlau)
|
- #228 use transitive compile definitions via cmake (BioDataAnalysis/emmenlau)
|
||||||
- #232 Added support of packaged GTest for running unit tests (xvitaly)
|
- #232 Added support of packaged GTest for running unit tests (xvitaly)
|
||||||
- #231 Added SOVERSION field for shared library (xvitaly)
|
- #231 Added SOVERSION field for shared library (xvitaly)
|
||||||
- #229 Explicitly find and link against system sqlite library (xvitaly)
|
- #229 Explicitly find and link against system sqlite library (xvitaly)
|
||||||
- #235 Added support for cmake dependencies and version information (BioDataAnalysis/emmenlau)
|
- #235 Added support for cmake dependencies and version information (BioDataAnalysis/emmenlau)
|
||||||
- #249 Added SQLite header parsing functionality and associated tests (patrick--)
|
- #249 Added SQLite header parsing functionality and associated tests (patrick--)
|
||||||
|
|
||||||
- #251 Added example for getHeaderInfo()
|
- #251 Added example for getHeaderInfo()
|
||||||
|
|
||||||
Version 3.0.0 - January 31 2020
|
Version 3.0.0 - January 31 2020
|
||||||
- C++11 is now required
|
- C++11 is now required
|
||||||
- CMake 3.1 minimum
|
- CMake 3.1 minimum
|
||||||
- Visual Studio 2015 minimum
|
- Visual Studio 2015 minimum
|
||||||
- Update Googletest to latest release 1.10
|
- Update Googletest to latest release 1.10
|
||||||
- Add Github Actions continuous integration solution
|
- Add Github Actions continuous integration solution
|
||||||
- Add Valgrind memcheck tool to Travis CI
|
- Add Valgrind memcheck tool to Travis CI
|
||||||
- Remove Statement::isOk() deprecated in 2.2.0 when renamed to Statement::hasRow()
|
- Remove Statement::isOk() deprecated in 2.2.0 when renamed to Statement::hasRow()
|
||||||
- Replace Database::backup() "C" implementation by calling the Backup class
|
- Replace Database::backup() "C" implementation by calling the Backup class
|
||||||
- #252 Run Valgrind memcheck on Travis CI
|
- #252 Run Valgrind memcheck on Travis CI
|
||||||
- #253 Keep inline functions for GCov code coverage
|
- #253 Keep inline functions for GCov code coverage
|
||||||
- #254 Re-enable Coverity static analysis
|
- #254 Re-enable Coverity static analysis
|
||||||
- #256 Fix linking with system library (libsqlite3)
|
- #256 Fix linking with system library (libsqlite3)
|
||||||
- #242 Added a `getIndex` method and used it (KOLANICH)
|
- #242 Added a `getIndex` method and used it (KOLANICH)
|
||||||
- #257 Improve Statement unit tests coverage (bind by name with a std::string)
|
- #257 Improve Statement unit tests coverage (bind by name with a std::string)
|
||||||
- #234 support for external sqlite3 (BioDataAnalysis/emmenlau)
|
- #234 support for external sqlite3 (BioDataAnalysis/emmenlau)
|
||||||
- #243 adding a pure attribute to getIndex() (KOLANICH)
|
- #243 adding a pure attribute to getIndex() (KOLANICH)
|
||||||
|
|
||||||
|
Version 3.x.x
|
||||||
|
- Update SQLite3 from 3.30.1 to 3.32.1 (2020-05-25)
|
||||||
|
|
||||||
|
18286
sqlite3/sqlite3.c
18286
sqlite3/sqlite3.c
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user