mirror of
https://github.com/knex/knex.git
synced 2025-12-27 15:08:47 +00:00
Prep for release
This commit is contained in:
parent
778016620c
commit
b2bd2d902a
@ -1,7 +1,8 @@
|
||||
|
||||
# master - (unreleased)
|
||||
# 0.11.10 - 9 Aug, 2016
|
||||
|
||||
- Added CHANGELOG.md for a [new documentation](https://github.com/knex/documentation) builder, #1615
|
||||
- Added CHANGELOG.md for a [new documentation](https://github.com/knex/documentation) builder coming soon, #1615
|
||||
- Minor documentation tweaks
|
||||
- PG: Fix Uint8Array being considered undefined, #1601
|
||||
- MSSQL: Make columnInfo schema dynamic, #1585
|
||||
|
||||
|
||||
4
LICENSE
4
LICENSE
@ -1,4 +1,4 @@
|
||||
Copyright (c) 2013-2014 Tim Griesser
|
||||
Copyright (c) 2013-present Tim Griesser
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
@ -19,4 +19,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
818
build/knex.js
818
build/knex.js
File diff suppressed because one or more lines are too long
@ -32,7 +32,7 @@
|
||||
<div id="sidebar" class="interface">
|
||||
|
||||
<a class="toc_title" href="#changelog">
|
||||
Knex.js <span class="version">(0.11.9)</span>
|
||||
Knex.js <span class="version">(0.11.10)</span>
|
||||
</a>
|
||||
<ul class="toc_section">
|
||||
<li>» <a href="https://github.com/tgriesser/knex">GitHub Repository</a></li>
|
||||
@ -337,7 +337,7 @@
|
||||
</p>
|
||||
|
||||
|
||||
<h2>Latest Release: 0.11.8 - <span class="small"><a href="#changelog">Change Log</a></span></h2>
|
||||
<h2>Latest Release: 0.11.10 - <span class="small"><a href="#changelog">Change Log</a></span></h2>
|
||||
|
||||
<p>
|
||||
Current Develop —
|
||||
@ -3109,7 +3109,7 @@ $ npm test
|
||||
|
||||
<p>
|
||||
<b class="header">My tests are failing because slow DB connection and short test timeouts! How to extend test timeouts?</b><br />
|
||||
Sometimes, e.g. when running CI on travis, test suite's default timeout of 5 seconds might be too short. In such cases an alternative test timeout
|
||||
Sometimes, e.g. when running CI on travis, test suite's default timeout of 5 seconds might be too short. In such cases an alternative test timeout
|
||||
value in milliseconds can be specified using the <tt>KNEX_TEST_TIMEOUT</tt> environment variable.
|
||||
</p>
|
||||
<pre>
|
||||
|
||||
2
knex.js
2
knex.js
@ -1,6 +1,6 @@
|
||||
// Knex.js
|
||||
// --------------
|
||||
// (c) 2014 Tim Griesser
|
||||
// (c) 2013-present Tim Griesser
|
||||
// Knex may be freely distributed under the MIT license.
|
||||
// For details and documentation:
|
||||
// http://knexjs.org
|
||||
|
||||
@ -99,6 +99,7 @@
|
||||
"oracledb": false
|
||||
},
|
||||
"files": [
|
||||
"CONTRIBUTING.md",
|
||||
"README.md",
|
||||
"src/*",
|
||||
"lib/*",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user