Minor doc and metadata tweaks

This commit is contained in:
Igor Savin 2021-01-02 14:25:43 +02:00
parent c16b731fdc
commit 74b1683bf2
2 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,7 @@ const knexInstance: Knex = knex(config)
* Connection url parsing changed from legacy [url.parse](https://nodejs.org/docs/latest-v10.x/api/url.html#url_legacy_url_api) to [WHATWG URL](https://nodejs.org/docs/latest-v10.x/api/url.html#url_the_whatwg_url_api). If you have symbols, unusual for a URL (not A-z, not digits, not dot, not dash) - check [Node.js docs](https://nodejs.org/docs/latest-v10.x/api/url.html#url_percent_encoding_in_urls) for details
* `Knex.raw` support dropped, use `knex.raw` (`require('knex').raw()` won't work anymore)
* Global static `Knex.raw` support dropped, use instance `knex.raw` instead. (`require('knex').raw()` won't work anymore)
* v8 flags are no longer supported in cli. To pass these flags use [`NODE_OPTIONS` environment variable](https://nodejs.org/api/cli.html#cli_node_options_options).
For example `NODE_OPTIONS="--max-old-space-size=1536" npm run knex`

View File

@ -144,7 +144,9 @@
"mssql",
"builder",
"querybuilder",
"build"
"build",
"db",
"database"
],
"author": {
"name": "Tim Griesser",