- Use datetime2 for MSSQL datetime + timestamp types. This change is incompatible with MSSQL older than 2008 #2757
- Knex.VERSION() method was removed, run "require('knex/package').version" instead #2776
- Knex transpilation now targets Node.js 6, meaning it will no longer run on older Node.js versions #2813
- Add json type support for SQLite 3.9+ (tested to work with Node package 'sqlite3' 4.0.2+) #2814
- Introduced abstraction for getting migrations to make migration bundling easier #2775
- Allow timestamp with timezone on mssql databases #2724
- Allow specifying multiple migration directories #2735
- Allow cloning query builder with .userParams({}) assigned to it #2802
- Allow chaining of increment, decrement, and update #2740
- Allow table names with
forUpdate
/forShare
#2834 - Added
whereColumn
and the associatednot
/and
/or
methods for using columns on the right side of a where clause #2837 - Added
whereRecursive
method to make self-referential CTEs possible #2889 - Added support for named unique, primary and foreign keys to SQLite3 #2840
- Added support for generating new migration and seed files without knexfile #2884 #2905
- Added support for multiple columns in
.orderBy()
#2881 - Added option of
existingType
to.enum()
method to support repeated use of enums #2719 - Added option to pass
indexType
for MySQL dialect #2890 - Added
onVal
and the associatednot
/and
/or
methods for using values inon
clauses within joins #2746 - Kill queries after timeout for PostgreSQL #2636
- Manage TypeScript types internally #2845
- Implement fail-fast logic for dialect resolution #2776
- Fixed identifier wrapping for
using()
. Use columnize instead of wrap in using() #2713 - Fix issues with warnPromise when migration does not return a promise #2730
- Compile with before update so that bindings are put in correct order #2733
- Fix join using builder withSchema #2744
- Throw instead of process.exit when client module missing #2843
- Display correct filename of a migration that failed #2910
- Fixed support of knexSnakeCaseWrappers in migrations #2914
- Add tests for multiple union arguments with callbacks and builders #2749
- Update dependencies #2772 #2810 #2842 #2848 #2893 #2904
- Separate migration generator #2786
- Do not postprocess internal queries in Migrator #2914
- Use Babel 7 #2813
- Rolled back changes introduced by #2542, in favor of opt-in behavior by adding a precision option in
date
/timestamp
/datetime
/knex.fn.now
(#2715, #2721)
- Fix warning erroneously displayed for mysql #2705
- Stop executing tests on Node 4 and 5. #2451 (not supported anymore)
json
data type is no longer converted totext
within a schema builder migration for MySQL databases (note that JSON data type is only supported for MySQL 5.7.8+) #2635- Removed WebSQL dialect #2461
- Drop mariadb support #2681
- Primary Key for Migration Lock Table #2569. This shouldn't affect to old loc tables, but if you like to have your locktable to have primary key, delete the old table and it will be recreated when migrations are ran next time.
- Ensure knex.destroy() returns a bluebird promise #2589
- Increment floats #2614
- Testing removal of 'skim' #2520, Now rows are not converted to plain js objects, returned row objects might have changed type with oracle, mssql, mysql and sqlite3
- Drop support for strong-oracle #2487
- Timeout errors doesn't silently ignore the passed errors anymore #2626
- Removed WebSQL dialect #2647
- Various fixes to mssql dialect to make it compatible with other dialects #2653, Unique constraint now allow multiple null values, float type is now float instaed of decimal, rolling back transaction with undefined rejects with Error, select for update and select for share actually locks selected row, so basically old schema migrations will work a lot different and produce different schema like before. Also now MSSQL is included in CI tests.
- Fixes onIn with empty values array #2513
- fix wrapIdentifier not being called in postgres alter column #2612
- fixes wrapIdentifier to work with postgres
returning
statement 2630 #2642 - Fix mssql driver crashing in certain cases when conneciton is closed unexpectedly #2637
- Removed semicolon from rollback stmt for oracle #2564
- Make the stream catch errors in the query #2638
- Create timestamp columns with microsecond precision on MySQL 5.6 and newer #2542
- Allow storing stacktrace, where builder is initialized to be able trace back where certain query was created #2500 #2505
- Added 'ref' function #2509, no need for knex.raw('??', ['id']) anymore, one can do knex.ref('id')
- Support postgresql connection uri protocol #2609
- Add support for native enums on Postgres #2632
- Allow overwriting log functions #2625
- chore: cache node_modules #2595
- Remove babel-plugin-lodash #2634
- Remove readable-stream and safe-buffer #2640
- chore: add Node.js 10 #2594
- add homepage field to package.json #2650
- Restored functionality of query event #2566 (#2549)
- Fix wrapping returning column on oracledb #2554
- Support passing DB schema name for migrations #2499 #2559
- add clearOrder method #2360 #2553
- Added knexTxId to query events and debug calls #2476
- Support multi-column
whereIn
with query #1390 - Added error if chaining update/insert/etc with first() #2506
- Checks for an empty, undefined or null object on transacting #2494
- countDistinct with multiple columns #2449
- Added npm run test:oracledb command that runs oracledb tests in docker #2491
- Runnin mssql tests in docker #2496
- Update dependencies #2561
- containsUndefined only validate plain objects. Fixes #1898 (#2468)
- Add warning when using .returning() in sqlite3. Fixes #1660 (#2471)
- Throw an error if .update() results in an empty sql (#2472)
- Removed unnecessary createTableIfNotExist and replaced with createTable (#2473)
- Allow calling lock procedures (such as forUpdate) outside of transaction. Fixes #2403. (#2475)
- Added test and documentation for Event 'start' (#2488)
- Added stress test, which uses TCP proxy to simulate flaky connection #2460
- Removed old docker tests, new stress test setup (#2474)
- Removed unused property __cid on the base client (#2481)
- Changed rm to rimraf in 'npm run dev' (#2483)
- Changed babel preset and use latest node as target when running dev (#2484)
- Use tarn as pool instead of generic-pool which has been given various problems #2450
- Fixed mysql issue where add columns failed if using both after and collate #2432
- CLI sets exit-code 1 if the command supplied was not parseable #2358
- Set toNative() to be not enumerable #2388
- Use wrapIdentifier in columnInfo. fixes #2402 #2405
- Fixed a bug when using .returning (OUTPUT) in an update query with joins in MSSQL #2399
- Better error message when running migrations fail before even starting run migrations #2373
- Read oracle's UV_THREADPOOL_SIZE env variable correctly #2372
- Added decimal variable precision / scale support #2353
- Added queryContext to schema and query builders #2314
- Added redshift dialect #2233
- Added warning when one uses .createTableIfNotExist and deprecated it from docs #2458
- Update dependencies and fix ESLint warnings accordingly #2433
- Disable oracledb tests from non LTS nodes #2407
- Update dependencies #2422
- Fix sqlite3 truncate method to work again #2348
- Fix support for multiple schema names in in postgres
searchPath
#2340 - Fix create new connection to pass errors to query instead of retry loop #2336
- Fix recognition of connections closed by server #2341
- Remove sorting of statements from update queries #2171
- Updated allowed operator list with some missing operators and make all to lower case #2239
- Use node-mssql 4.0.0 #2029
- Support for enum columns to SQlite3 dialect #2055
- Better identifier quoting in Sqlite3 #2087
- Migration Errors - Display filename of of failed migration #2272
- Post processing hook for query result #2261
- Build native SQL where binding parameters are dialect specific #2237
- Configuration option to allow override identifier wrapping #2217
- Implemented select syntax: select({ alias: 'column' }) #2227
- Allows to filter seeds and migrations by extensions #2168
- Reconnecting after database server disconnect/reconnect + tests #2017
- Removed filering from allowed configuration settings of mysql2 #2040
- Allow raw expressions in query builder aggregate methods #2257
- Throw error on non-string table comment #2126
- Support for mysql stream query options #2301
- Allow update queries and passing query builder to with statements #2298
- Fix escape table name in SQLite columnInfo call #2281
- Preventing containsUndefined from going to recursion loop #1711
- Fix error caused by call to knex.migrate.currentVersion #2123
- Upgraded generic-pool to 3.1.7 (did resolve some memory issues) #2208
- Allow using NOT ILIKE operator #2195
- Fix postgres searchPath to be case-sensitive #2172
- Fix drop of multiple columns in sqlite3 #2107
- Fix adding multiple columns in Oracle #2115
- Use selected schema when dropping indices in Postgres. #2105
- Fix hasTable for MySQL to not do partial matches #2097
- Fix setting autoTransaction in batchInsert #2113
- Fix connection error propagation when streaming #2199
- Fix comments not being applied to increments columns #2243
- Fix mssql wrong binding order of queries that combine a limit with select raw or update #2066
- Fixed mysql alter table attributes order #2062
- Update each out-of-date dependency according to david-dm.org #2297
- Update v8flags to version 3.0.0 #2288
- Update interpret version #2283
- Fix debug output typo #2187
- Docker CI tests #2164
- Unit test for right/rightOuterJoin combination #2117
- Unit test for fullOuterJoin #2118
- Unit tests for table comment #2098
- Test referencing non-existent column with sqlite3 #2104
- Unit test for renaming column in postgresql #2099
- Unit test for cross-join #2102
- Fix incorrect parameter name #2068
- Multiple concurrent migration runners blocks instead of throwing error when possible #1962
- Fixed transaction promise mutation issue #1991
- Allow passing version of connected db in configuration file #1993
- Bugfixes on batchInsert and transactions for mysql/maria #1992
- Add fetchAsString optional parameter to oracledb dialect #1998
- fix: escapeObject parameter order for Postgres dialect. #2003
- Fixed unhandled exception in batchInsert when the rows to be inserted resulted in duplicate key violation #1880
- Added clearSelect and clearWhere to query builder #1912
- Properly close Postgres query streams on error #1935
- Transactions should never reject with undefined #1970
- Clear acquireConnectionTimeout if an error occurs when acquiring a connection #1973
- Ensure that 'client' is provided in knex config object #1822
- Support custom foreign key names #1311, #1726
- Fixed named bindings to work with queries containing
:
-chars #1890 - Exposed more promise functions #1896
- Pass rollback errors to transaction promise in mssql #1885
- ONLY keyword support for PostgreSQL (for table inheritance) #1874
- Fixed Mssql update with join syntax #1777
- Replace migrations and seed for react-native packager #1813
- Support knexfile, migration and seeds in TypeScript #1769
- Fix float to integer conversion of decimal fields in MSSQL #1781
- External authentication capability when using oracledb driver #1716
- Fixed MSSQL incorect query build when locks are used #1707
- Allow to use
first
method as aliased select #1784 - Alter column for nullability, type and default value #46, #1759
- Add more having* methods / join clause on* methods #1674
- Compatibility fixes and cleanups #1788, #1792, #1794, #1814, #1857, #1649
- Address warnings mentioned in #1388 (#1740)
- Remove postinstall script (#1746)
- Fix broken 0.12.4 build (removed from npm)
- Fix #1733, #920, incorrect postgres array bindings
- Fix #1703, #1694 - connections should be returned to pool if acquireConnectionTimeout is triggered
- Fix #1710 regression in postgres array escaping
- Restore pool min: 1 for sqlite3, #1701
- Fix for connection error after it's closed / released, #1691
- Fix oracle prefetchRowCount setting, #1675
- Fix MSSQL sql execution error, #1669
- Added DEBUG=knex:bindings for debugging query bindings, #1557
- Remove build / built files, #1616
- Upgrade to Babel 6, #1617
- Reference Bluebird module directly, remove deprecated .exec method, #1618
- Remove documentation files from main repo
- Fix broken behavior on WebSQL build, #1638
- Oracle id sequence now handles manual inserts, #906
- Cleanup PG escaping, fix #1602, #1548
- Added
with
to builder for common table expressions, #1599 - Fix #1619, pluck with explicit column names
- Switching back to generic-pool for pooling resource management
- Removed index.html, please direct all PR's for docs against the files in knex/documentation
- Added CHANGELOG.md for a new documentation builder coming soon, #1615
- Minor documentation tweaks
- PG: Fix Uint8Array being considered undefined, #1601
- MSSQL: Make columnInfo schema dynamic, #1585
- Reverted knex client breaking change (commit b74cd69e906), fixes #1587
- Oracledb dialect #990
- Documentation fix #1532
- Allow named bindings to be escaped. #1576
- Several bugs with MS SQL schema creation and installing from gihub fix #1577
- Fix incorrect escaping of backslashes in SqlString.escape #1545
- Add missing dependency. #1516
- Allow cancellation on timeout (MySQL) #1454
- Better bigint support. (MSSQL) #1445
- More consistent handling of
undefined
values inQueryBuilder#where
andRaw
. #1459 - Fix Webpack build. #1447
- Fix code that triggered Bluebird warnings. #1460, #1489
- Fix
ping
function. (Oracle) #1486 - Fix
columnInfo
. (MSSQL) #1464 - Fix
ColumnCompiler#binary
. (MSSQL) #1464 - Allow connection strings that do not contain a password. #1473
- Fix race condition in seed stubs. #1493
- Give each query a UUID. #1510
- Bugfix: Using
Raw
orQueryBuilder
as a binding toRaw
now works as intended
- Bugfix: Inconsistency of
.primary()
and.dropPrimary()
between dialects #1430 - Feature: Allow using custom Client/Dialect (you can pass your own client in knex config) #1428
- Docs: Add documentation for .dropTimestamps #1432
- Bugfix: Fixed passing undefined fields for insert/update inside transaction #1423
- Feature:
batchInsert
with existing transaction #1354 - Build: eslint instead of jshint #1416
- Bugfix: Pooled connections not releasing #1382
- Bugfix: Support passing
knex.raw
to.whereNot
#1402 - Docs: Fixed list of dialects which supports
.returning
#1398 - Bugfix: rename table does not fail anymore even with schema defined #1403
- Support nested joins. #1397
- Prevent crash on
knex seed:make
. #1389 - Improvements to
batchInsert
. #1391 - Improvements to inserting
DEFAULT
withundefined
binding. #1396 - Correct generated code for adding/dropping multiple columns. (MSSQL) #1401
- Fix error in CLI command
migrate:make
. #1386
QueryBuilder#orWhere
joins multiple arguments withAND
. #1164
- Collate for columns. (MySQL) #1147
- Add
QueryBuilder#timeout
,Raw#timeout
. #1201 #1260 - Exit with error code when appropriate. #1238
- MSSQL connection accepts
host
as an alias forserver
in accordance with other dialects. #1239 - Add
query-response
event. #1231 - Correct behaviour of sibling nested transactions. #1226
- Support
RETURNING
withUPDATE
. (Oracle) #1253 - Throwing callbacks from transactions automatically rolls them back. #1257
- Fixes to named
Raw
bindings. #1251 timestamps
accepts an argument to setNOT NULL
and default to current timestamp.- Add
TableBuilder#inherits
for PostgreSQL. #601 - Wrap index names. #1289
- Restore coffeescript knexfiles and configurations. #1292
- Add
andWhereBetween
andandWhereNotBetween
#1132 - Fix
valueForUndefined
failure. #1269 renameColumn
no longer drops default value or nullability. #1326- Correct MySQL2 error handling. #1315
- Fix MSSQL
createTableIfNotExists
. #1362 - Fix MSSQL URL parsing. #1342
- Update Lodash to 4.6.0 #1242
- Update Bluebird to 3.3.4 #1279
insert
andupdate
now ignoreundefined
values. Back compatibility is provided through the optionuseNullAsDefault
. #1174, #1043
- Add
countDistinct
,avgDistinct
andsumDistinct
. #1046 - Add
schema.jsonb
. Deprecatedschema.json(column, true)
. #991 - Support binding identifiers with
??
. #1103 - Restore
query
event when triggered by transactions. #855 - Correct question mark escaping in rendered queries. #519, #1058
- Add per-dialect escaping, allowing quotes to be escaped correctly. #886, #1095
- Add MSSQL support. #1090
- Add migration locking. #1094
- Allow column aliases to contain
.
. #1181 - Add
batchInsert
. #1182 - Support non-array arguments to
knex.raw
. - Global
query-error
event. #1163 - Add
batchInsert
. #1182 - Better support for Mysql2 dialect options. #980
- Support for
acquireConnectionTimeout
default 60 seconds preventing #1040 from happening. #1177 - Fixed constraint name escaping when dropping a constraint. #1177
- Show also
.raw
queries in debug output. #1169 - Support for
cli
to use basic configuration without specific environment set. #1101
- Fix error when merging
knex.raw
instances without arguments. #853 - Fix error that caused the connection to time out while streaming. #849
- Correctly parse SSL query parameter for PostgreSQL. #852
- Pass
compress
option to MySQL2. #843 - Schema: Use
timestamp with timezone
by default fortime
,datetime
andtimestamp
for Oracle. #876 - Add
QueryBuilder#modify
#881 - Add LiveScript and Early Gray support for seeds and migrations.
- Add
QueryBuilder#withSchema
#518 - Allow escaping of
?
inknex.raw
queries. #946 - Allow
0
in join clause. #953 - Add migration config to allow disabling/enabling transactions per migration. #834
- Fix for several transaction / migration issues, #832, #833, #834, #835
- Pool should be initialized if no pool options are specified
- Pool should not be initialized if {max: 0} is sent in config options
- Alias postgresql -> postgres in connection config options
- Fix regression in using query string in connection config
- Warn rather than error when implicit commits wipe out savepoints in mysql / mariadb, #805.
- Fix for incorrect seed config reference, #804
- Fixes several major outstanding bugs with the connection pool, switching to Pool2 in place of generic-pool-redux
- strong-oracle module support
- Nested transactions automatically become savepoints, with
commit
&rollback
releasing or rolling back the current savepoint. - Database seed file support, #391
- Improved support for sub-raw queries within raw statements
- Migrations are now wrapped in transactions where possible
- Subqueries supported in insert statements, #627
- Support for nested having, #572
- Support object syntax for joins, similar to "where" #743
- Transactions are immediately invoked as A+ promises, #470 (this is a feature and should not actually break anything in practice)
- Heavy refactoring internal APIs (public APIs should not be affected)
- Allow mysql2 to use non-default port, #588
- Support creating & dropping extensions in PostgreSQL, #540
- CLI support for knexfiles that do not provide environment keys, #527
- Added sqlite3 dialect version of whereRaw/andWhereRaw (#477)
- Fix bug in validateMigrationList, (#697)
- Fix incorrect order of query parameters when using subqueries, #704
- Properly handle limit 0, (#655)
- Apply promise args from then instead of explicitly passing.
- Respect union parameter as last argument (#660).
- Added sqlite3 dialect version of whereRaw/andWhereRaw (#477).
- Fix SQLite dropColumn doesn't work for last column (#544).
- Add POSIX operator support for Postgres (#562)
- Sample seed files now correctly (#391)
- Support for
join(table, rawOrBuilder)
syntax. - Fix for regression in PostgreSQL connection (#516)
- Fix for regression in migrations
- Better disconnect handling & pool removal for MySQL clients, #452
- Oracle support, #419
- Database seed file support, #391
- Improved support for sub-raw queries within raw statements
- "collate nocase" no longer used by default in sqlite3 #396
- Bumping Bluebird to ^2.x
- Transactions in websql are now a no-op (unsupported) #375
- Improved test suite
- knex.fn namespace as function helper (knex.fn.now), #372
- Better handling of disconnect errors
- Support for offset without limit, #446
- Chainable first method for mysql schema, #406
- Support for empty array in
whereIn
- Create/drop schema for postgres, #511
- Inserting multiple rows with default values, #468
- Join columns are optional for cross-join, #508
- Flag for creating jsonb columns in Postgresql, #500
- Bug fix for properly binding postgresql streaming queries, (#363)
- Bug fix for raw queries not being transaction context aware, (#351).
- Properly forward stream errors in sqlite3 runner, (#359)
- Allow case insensitive operators in sql clauses, (#344)
- Add
groupByRaw
/orderByRaw
methods, better support for raw statements in group / order (#282). - Support more config options for node-mysql2 dialect (#341).
- CLI help text fix, (#342)
- Patch for the method, calling without a handler should return the stream, not a promise (#337)
- Adding missing map / reduce proxies to bluebird's implementation
- Increment / decrement returns the number of affectedRows (#330).
- Allow --cwd option flag to be passed to CLI tool (#326)
- Added the as method for aliasing subqueries
- whereExists / whereNotExists may now take a query builder instance as well as a callback
- Fix regression with onUpdate / onDelete in PostgreSQL, (#308).
- Add missing
Promise
require to knex.js, unit test for knex.destroy (#314)
- Fix for regression with boolean default types in PostgreSQL
- Fix for regression with queries containing multiple order by statements in sqlite3
- Fix for big regression in memoization of column names from 0.5 -> 0.6
- Fix for regression in specificType method
- Package.json fix for CLI
- Adds support for node-mysql2 library.
- Bundles CLI with the knex install, various related migrate CLI fixes
- console.warn rather than throw when adding foreignKeys in SQLite3.
- Add support for dropColumn in SQLite3.
- Document
raw.wrap
- Add missing _ require to WebSQL builds
- Fix & document schema.raw method
- Schema methods on transaction object are now transaction aware (#301).
- Fix for resolved value from transactions, (#298).
- Undefined columns are not added to builder
- Fix regression in raw query output, (#297).
- Fix regression in "pluck" method (#296).
- Document first method
- Reverting to using .npmignore, the "files" syntax forgot the knex.js file
- Major internal overhaul to clean up the various dialect code.
- Improved unit test suite.
- Support for the mariasql driver.
- More consistent use of raw query bindings throughout the library.
- Queries are more composable, may be injected in various points throughout the builder.
- Added streaming interface
- Deprecated 5 argument join in favor of additional join methods.
- The wrapValue function to allow for array column operations in PostgreSQL (#287).
- An explicit connection can be passed for any query (#56).
- Drop column support for sqlite3
- All schema actions are run sequentially on the same connection if chained.
- Schema actions can now be wrapped in a transaction
.references(tableName.columnName)
as shorthand for.references(columnName).inTable(tableName)
.join('table.column', 'otherTable.column')
as shorthand for .join('table.column', '=', 'otherTable.column')- Streams are supported for selects, passing through to the streaming capabilities of node-mysql and node-postgres
- For More information, see this pull-request
- Dropped indexes feature now functions correctly, (#278)
- Remove the charset encoding if it's utf8 for mysql, as it's the default but also currently causes some issues in recent versions of node-mysql
- Fix regression in array bindings for postgresql (#228)
- Add more operators for where clauses, including && (#226)
.where(col, 'is', null)
or.where(col, 'is not', null)
are not supported (#221).- Case insensitive
where
operators now allowed (#212). - Fix bug in increment/decrement truncating to an integer (#210).
- Disconnected connections are now properly handled & removed from the pool (#206).
- Internal tweaks to binding concatenations for performance (#207)
- Add the .exec method to the internal promise shim
- Remove error'ed connections from the connection pool (#206), added support for node-postgres-pure (pg.js) (#200)
- Fix for chaining on forUpdate / forShare, adding map & reduce from bluebird
- Fix for a null limit / offset breaking query chain (#182)
- Bump bluebird dependency to ~1.0.0, fixing regression in Bluebird 1.0.2 (#176)
- Fix for the exit code on the migrations cli (#151).
- The
init
method inknex.migrate
now usesthis.config
if one isn't passed in (#156)
- Fix for using raw statements in defaultTo schema builder methods (#146)
- Fix for incorrectly formed sql when aggregates are used with columns (#144)
- Adding passthrough "catch", "finally" to bluebird implementations, use bluebird's "nodeify" internally for exec
- The returning in PostgreSQL may now accept * or an array of columns to return. If either of these are passed, the response will be an array of objects rather than an array of values. Updates may also now use a
returning
value. (#132) - Added
bigint
andbigserial
type to PostgreSQL. (#111) - Fix for the specificType schema call (#118)
- Several fixes for migrations, including migration file path fixes, passing a Promise constructor to the migration
up
anddown
methods, allowing the "knex" module to be used globally, file ordering on migrations, and other small improvements. (#112-115, #125, #135)
- Initial pass at a migration api.
- Aggregate methods are no longer aliased as "aggregate", but may now be aliased and have more than one aggregate in a query (#108, #110).
- Adding bigint and bigserial to PostgreSQL (#111).
- Bugfix on increment/decrement values (#100).
- Bugfix with having method (#107).
- Switched from when.js to bluebird for promise implementation, with shim for backward compatibility.
- Switched from underscore to lodash, for semver reliability
- Fix for aggregate methods on toString and clone, (#98)
- Fix incorrect values passed to float in MySQL and decimal in PostgreSQL
- Fix potential sql injection vulnerability in orderBy, thanks to @sebgie
- Added forUpdate and forShare for select modes in transactions. (#84)
- Fix bug where current query chain type is not copied on clone. (#90)
- Charset and collate are now added as methods on the schema builder. (#89)
- Added
into
as an alias of from, for builder syntax of:insert(value).into(tableName)
- Internal pool fixes. (#90)
- Fix for documentation of hasColumn, ensure that
hasColumn
works with MySQL (#87). - More cleanup of error messages, showing the original error message concatenated with the sql and bindings
- Connections are no longer pushed back into the pool if they never existed to begin with (#85)
- The column is now a documented method on the builder api, and takes either an individual column or an array of columns to select
- Standardizing handling of errors for easier debugging, as noted in (#39)
- Fix for hasTable always returning true in MySQL (#82), fix where sql queries were duplicated with multiple calls on toSql with the schema builder
- Fix for debug method not properly debugging individual queries
- Fix for underscore not being defined in various grammar files
- Fix for an error being thrown when an initialized ClientBase instance was passed into Knex.initialize. pool.destroy now optionally accepts a callback to notify when it has completed draining and destroying all connections
- Cleanup from the 0.4.0 release, fix a potential exploit in "where" clauses pointed out by Andri Möll, fix for clients not being properly released from the pool #70, fix for where("foo", "<>", null) doing an "IS NULL" statement
- Global state is no longer stored in the library, an instance is returned from
Knex.initialize
, so you will need to call this once and then reference thisknex
client elsewhere in your application. - Lowercasing of
knex.raw
,knex.transaction
, andknex.schema
. - Created columns are now nullable by default, unless
notNullable
is chained as an option. - Keys created with
increments
are now assumed to be unsigned (MySQL) by default. - The
destroyAllNow
is no longer called by the library onprocess.exit
event. If you need to call it explicitly yourself, you may useknex.client.destroyPool
- Reject the transaction promise if the transaction "commit" fails, (#50)
- Fix error if a callback isn't specified for exec, (#49)
- Fix SQLite3 delete not returning affected row count, (#45)
- Fix insert with default values in PostgreSQL and SQLite3, (#44)
- Allowing Raw queries to be passed as the primary table names
- Fix for an array passed to insert being mutated
- hasTable now returns a boolean rather than a failed promise.
- Changed syntax for insert in postgresql, where the
id
is not assumed on inserts (#18). The second parameter of insert is now required to return an array of insert id's for the last insert. - The timestamp method on the schema builder now uses a
dateTime
rather than atimestamp
- Somehow missing the != operator. Using _.find rather than _.where in getCommandsByName(#22)
- Ensures unhandled errors in the exec callback interface are re-thrown
- Renaming beforeCreate to afterCreate. Better handling of errors in the connection pooling
- Added the ability to specify beforeCreate and beforeDestroy hooks on the initialize's options.pool to perform any necessary database setup/teardown on connections before use (#14). where and having may now accept Knex.Raw instances, for consistency (#15). Added an orHaving method to the builder. The ability to specify bindings on Raw queries has been removed
- defaultTo now accepts "false" for boolean columns, allows for empty strings as default values
- Enabling table aliases (#11). Fix for issues with transactions not functioning (#12)
- Bug fixes for groupBy (#7). Mysql using collation, charset config settings in createTable. Added engine on schemaBuilder specifier (#6). Other doc fixes, tests
- Bug fixes for sub-queries, minor changes to initializing "main" instance, adding "pg" as a valid parameter for the client name in the connection settings
- Initial Knex release