- 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