Update dependency knex to ^0.95.0 #5

Merged
niggl merged 1 commits from renovate/knex-0.x into main 2021-10-15 14:22:03 +00:00

This PR contains the following updates:

Package Type Update Change
knex (source) dependencies minor ^0.21.21 -> ^0.95.0

Release Notes

knex/knex

v0.95.11

Compare Source

New features:
  • Add support for nullability modification via schema builder (table.setNullable() and table.dropNullable()) #​4657
  • MySQL: Add support for mysql/mariadb-client JSON parameters in connectionURIs #​4629
  • MSSQL: Support comments as MS_Description properties #​4632
Bug fixes:
  • Fix Analytic orderBy and partitionBy to follow the SQL documentation #​4602
  • CLI: fix migrate:up for migrations disabling transactions #​4550
  • SQLite: Fix adding a column with a foreign key constraint in SQLite #​4649
  • MSSQL: columnInfo() support case-sensitive database collations #​4633
  • MSSQL: Generate valid SQL for withRecursive() #​4514
  • Oracle: withRecursive: omit invalid RECURSIVE keyword, include column list #​4514
Improvements:
  • Add .mjs migration and seed stubs #​4631
  • SQLite: Clean up DDL handling and move all operations to the parser-based approach #​4648

v0.95.10

Compare Source

Improvements:
  • Use sys info function instead of connection db name #​4623
Typings:
  • Deferrable and withkeyName should not be in ColumnBuilder #​4600

v0.95.9

Compare Source

New features:
  • Oracle: support specifying schema for dropTable and dropSequence #​4596
  • Oracle: support specifying schema for autoincrement #​4594
Typings:
  • Add TypeScript support for deferrable, new Primary/Unique syntax #​4589

v0.95.8

Compare Source

New features:
  • Add deferrable support for constraint #​4584
  • Implement delete with join #​4568
  • Add DPI error codes for Oracle #​4536
Bug fixes:
  • Fixing PostgreSQL datetime and timestamp column created with wrong format #​4578
Typings:
  • Improve analytic types #​4576
  • MSSQL: Add trustServerCertificate option #​4500

v0.95.7

Compare Source

New features:
  • Add ability to omit columns on an onConflict().ignore() #​4557
  • CLI: Log error message #​4534
Typings:
  • Export Knex.TransactionConfig #​4498
  • Include options object in count(Distinct) typings #​4491
  • Add types for analytic functions #​4544

v0.95.6

Compare Source

Typings:
  • Export TransactionProvider type #​4489

v0.95.5

Compare Source

New features:
  • SQLite: Add support for file open flags #​4446
  • Add .cjs extension to Seeder.js to support Node ESM #​4381 #​4382
Bug fixes:
  • Remove peerDependencies to avoid auto-install on npm 7 #​4480
Typings:
  • Fix typing for increments and bigIncrements #​4406
  • Add typings for on JoinClause for onVal #​4436
  • Adding Type Definition for isTransaction #​4418
  • Export client class from knex namespace #​4479

v0.95.4

Compare Source

Typings:

v0.95.3

Compare Source

New features:
  • PostgreSQL: Add "same" as operator #​4372
  • MSSQL: Improve an estimate of the max comment length #​4362
  • Throw an error if negative offset is provided #​4361
Bug fixes:
  • Fix timeout method #​4324
  • SQLite: prevent dropForeign from being silently ignored #​4376
Typings:
  • Allow config.client to be non-client instance #​4367
  • Add dropForeign arg type for single column #​4363
  • Update typings for TypePreservingAggregation and stream #​4377

v0.95.2

Compare Source

New features:
Bug fixes:
  • CLI: update ts.stub files to new TypeScript namespace #​4344
  • CLI: fix TypeScript migration stub after 0.95.0 changes #​4366
Typings:
  • Move QueryBuilder and KnexTimeoutError into knex namespace #​4358
Test / internal changes:

v0.95.1

Compare Source

New features:
  • Add support for nullability modification via schema builder (table.setNullable() and table.dropNullable()) #​4657
  • MySQL: Add support for mysql/mariadb-client JSON parameters in connectionURIs #​4629
  • MSSQL: Support comments as MS_Description properties #​4632
Bug fixes:
  • Fix Analytic orderBy and partitionBy to follow the SQL documentation #​4602
  • CLI: fix migrate:up for migrations disabling transactions #​4550
  • SQLite: Fix adding a column with a foreign key constraint in SQLite #​4649
  • MSSQL: columnInfo() support case-sensitive database collations #​4633
  • MSSQL: Generate valid SQL for withRecursive() #​4514
  • Oracle: withRecursive: omit invalid RECURSIVE keyword, include column list #​4514
Improvements:
  • Add .mjs migration and seed stubs #​4631
  • SQLite: Clean up DDL handling and move all operations to the parser-based approach #​4648

v0.95.0

Compare Source

Note: there are many breaking changes in this version, particularly in TypeScript support. Please see UPGRADING.md for details.

New features:
  • Add transaction isolation support #​4185
  • Add analytic functions #​4188
  • Change default to not trigger a promise rejection for transactions with a specified handler #​4195
  • Make toSQL().toNative() work for Raw to match the API for QueryBuilder #​4058
  • Allow 'match' operator #​3569
  • Support optimizer hints #​4243
  • Add parameter to prevent autoincrement columns from being primary keys #​4266
  • Make "first" and "pluck" mutually exclusive #​4280
  • Added merge strategy to allow selecting columns to upsert. #​4252
  • Throw error if the array passed to insert is empty #​4289
  • Events: introduce queryContext on query-error #​4301
  • CLI: Use UTC timestamp for new migrations #​4245
  • MSSQL: Replace MSSQL dialect with Tedious.js implementation #​2857 #​4281
  • MSSQL: Use "nvarchar(max)" for ".json()" #​4278
  • MSSQL: Schema builder - add predictable constraint names for default values #​4319
  • MSSQL: Schema builder - attempt to drop default constraints when changing default value on columns #​4321
  • SQLite: Fallback to json for sqlite3 when using jsonb #​4186
  • SQLite: Return complete list of DDL commands for creating foreign keys #​4194
  • SQLite: Support dropping composite foreign keys #​4202
  • SQLite: Recreate indices when altering a table #​4277
  • SQLite: Add support for altering columns #​4322
Bug fixes:
  • Fix issue with .withSchema usage with joins on a subquery #​4267
  • Fix issue with schema usage with FROM clause contain QueryBuilder, function or Raw #​4268
  • CLI: Address raised security warnings by dropping liftoff #​4122
  • CLI: Fix an issue with npm@7 and ESM when type was set to 'module' in package.json #​4295
  • PostgreSQL: Add check to only create native enum once #​3658
  • SQLite: Fix foreign key "on delete" when altering a table #​4225
  • SQLite: Made the constraint detection case-insensitive #​4330
  • MySQL: Keep auto increment after rename #​4266
  • MSSQL: don't raise query-error twice #​4314
  • MSSQL: Alter column must have its own query #​4317
Typings:
  • TypeScript 4.1+ is now required
  • Add missing onConflict overrides #​4182
  • Introduce the "infamous triplet" export #​4181
  • Fix type definition of Transaction #​4172
  • Add typedefinitions for havingNotIn #​4265
  • Include 'name' property in MigratorConfig #​4300
  • Improve join and conflict types #​4318
  • Fix ArrayIfAlready type #​4331
Test / internal changes:

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [knex](https://knexjs.org) ([source](https://github.com/knex/knex)) | dependencies | minor | [`^0.21.21` -> `^0.95.0`](https://renovatebot.com/diffs/npm/knex/0.21.21/0.95.11) | --- ### Release Notes <details> <summary>knex/knex</summary> ### [`v0.95.11`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;09511---03-September-2021) [Compare Source](https://github.com/knex/knex/compare/0.95.10...0.95.11) ##### New features: - Add support for nullability modification via schema builder (table.setNullable() and table.dropNullable()) [#&#8203;4657](https://github.com/knex/knex/issues/4657) - MySQL: Add support for mysql/mariadb-client JSON parameters in connectionURIs [#&#8203;4629](https://github.com/knex/knex/issues/4629) - MSSQL: Support comments as MS_Description properties [#&#8203;4632](https://github.com/knex/knex/issues/4632) ##### Bug fixes: - Fix Analytic orderBy and partitionBy to follow the SQL documentation [#&#8203;4602](https://github.com/knex/knex/issues/4602) - CLI: fix migrate:up for migrations disabling transactions [#&#8203;4550](https://github.com/knex/knex/issues/4550) - SQLite: Fix adding a column with a foreign key constraint in SQLite [#&#8203;4649](https://github.com/knex/knex/issues/4649) - MSSQL: columnInfo() support case-sensitive database collations [#&#8203;4633](https://github.com/knex/knex/issues/4633) - MSSQL: Generate valid SQL for withRecursive() [#&#8203;4514](https://github.com/knex/knex/issues/4514) - Oracle: withRecursive: omit invalid RECURSIVE keyword, include column list [#&#8203;4514](https://github.com/knex/knex/issues/4514) ##### Improvements: - Add .mjs migration and seed stubs [#&#8203;4631](https://github.com/knex/knex/issues/4631) - SQLite: Clean up DDL handling and move all operations to the parser-based approach [#&#8203;4648](https://github.com/knex/knex/issues/4648) ### [`v0.95.10`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;09510---20-August-2021) [Compare Source](https://github.com/knex/knex/compare/102a44d7a5fe641bdee8f7e66f6518f5418ff93e...0.95.10) ##### Improvements: - Use sys info function instead of connection db name [#&#8203;4623](https://github.com/knex/knex/issues/4623) ##### Typings: - Deferrable and withkeyName should not be in ColumnBuilder [#&#8203;4600](https://github.com/knex/knex/issues/4600) ### [`v0.95.9`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;0959---31-July-2021) [Compare Source](https://github.com/knex/knex/compare/0.95.8...102a44d7a5fe641bdee8f7e66f6518f5418ff93e) ##### New features: - Oracle: support specifying schema for dropTable and dropSequence [#&#8203;4596](https://github.com/knex/knex/issues/4596) - Oracle: support specifying schema for autoincrement [#&#8203;4594](https://github.com/knex/knex/issues/4594) ##### Typings: - Add TypeScript support for deferrable, new Primary/Unique syntax [#&#8203;4589](https://github.com/knex/knex/issues/4589) ### [`v0.95.8`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;0958---25-July-2021) [Compare Source](https://github.com/knex/knex/compare/3089d50ec9e7762e120af77a46d808162a048b0e...0.95.8) ##### New features: - Add deferrable support for constraint [#&#8203;4584](https://github.com/knex/knex/issues/4584) - Implement delete with join [#&#8203;4568](https://github.com/knex/knex/issues/4568) - Add DPI error codes for Oracle [#&#8203;4536](https://github.com/knex/knex/issues/4536) ##### Bug fixes: - Fixing PostgreSQL datetime and timestamp column created with wrong format [#&#8203;4578](https://github.com/knex/knex/issues/4578) ##### Typings: - Improve analytic types [#&#8203;4576](https://github.com/knex/knex/issues/4576) - MSSQL: Add trustServerCertificate option [#&#8203;4500](https://github.com/knex/knex/issues/4500) ### [`v0.95.7`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;0957---10-July-2021) [Compare Source](https://github.com/knex/knex/compare/fff6eb15d7088d4198650a2c6e673dedaf3b8f36...3089d50ec9e7762e120af77a46d808162a048b0e) ##### New features: - Add ability to omit columns on an onConflict().ignore() [#&#8203;4557](https://github.com/knex/knex/issues/4557) - CLI: Log error message [#&#8203;4534](https://github.com/knex/knex/issues/4534) ##### Typings: - Export Knex.TransactionConfig [#&#8203;4498](https://github.com/knex/knex/issues/4498) - Include options object in count(Distinct) typings [#&#8203;4491](https://github.com/knex/knex/issues/4491) - Add types for analytic functions [#&#8203;4544](https://github.com/knex/knex/issues/4544) ### [`v0.95.6`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;0956---17-May-2021) [Compare Source](https://github.com/knex/knex/compare/0.95.5...fff6eb15d7088d4198650a2c6e673dedaf3b8f36) ##### Typings: - Export TransactionProvider type [#&#8203;4489](https://github.com/knex/knex/issues/4489) ### [`v0.95.5`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;0955---11-May-2021) [Compare Source](https://github.com/knex/knex/compare/8cfad286f246aff7455784b51751fdd17ba24c4c...0.95.5) ##### New features: - SQLite: Add support for file open flags [#&#8203;4446](https://github.com/knex/knex/issues/4446) - Add .cjs extension to Seeder.js to support Node ESM [#&#8203;4381](https://github.com/knex/knex/issues/4381) [#&#8203;4382](https://github.com/knex/knex/issues/4382) ##### Bug fixes: - Remove peerDependencies to avoid auto-install on npm 7 [#&#8203;4480](https://github.com/knex/knex/issues/4480) ##### Typings: - Fix typing for increments and bigIncrements [#&#8203;4406](https://github.com/knex/knex/issues/4406) - Add typings for on JoinClause for onVal [#&#8203;4436](https://github.com/knex/knex/issues/4436) - Adding Type Definition for isTransaction [#&#8203;4418](https://github.com/knex/knex/issues/4418) - Export client class from knex namespace [#&#8203;4479](https://github.com/knex/knex/issues/4479) ### [`v0.95.4`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;0954---26-March-2021) [Compare Source](https://github.com/knex/knex/compare/0.95.3...8cfad286f246aff7455784b51751fdd17ba24c4c) ##### Typings: - Fix mistyping of stream [#&#8203;4400](https://github.com/knex/knex/issues/4400) ### [`v0.95.3`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;0953---25-March-2021) [Compare Source](https://github.com/knex/knex/compare/0.95.2...0.95.3) ##### New features: - PostgreSQL: Add "same" as operator [#&#8203;4372](https://github.com/knex/knex/issues/4372) - MSSQL: Improve an estimate of the max comment length [#&#8203;4362](https://github.com/knex/knex/issues/4362) - Throw an error if negative offset is provided [#&#8203;4361](https://github.com/knex/knex/issues/4361) ##### Bug fixes: - Fix timeout method [#&#8203;4324](https://github.com/knex/knex/issues/4324) - SQLite: prevent dropForeign from being silently ignored [#&#8203;4376](https://github.com/knex/knex/issues/4376) ##### Typings: - Allow config.client to be non-client instance [#&#8203;4367](https://github.com/knex/knex/issues/4367) - Add dropForeign arg type for single column [#&#8203;4363](https://github.com/knex/knex/issues/4363) - Update typings for TypePreservingAggregation and stream [#&#8203;4377](https://github.com/knex/knex/issues/4377) ### [`v0.95.2`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;0952---11-March-2021) [Compare Source](https://github.com/knex/knex/compare/aa7121fa9823b982684c89b7fcb60166a845711a...0.95.2) ##### New features: - Improve ESM import support [#&#8203;4350](https://github.com/knex/knex/issues/4350) ##### Bug fixes: - CLI: update ts.stub files to new TypeScript namespace [#&#8203;4344](https://github.com/knex/knex/issues/4344) - CLI: fix TypeScript migration stub after 0.95.0 changes [#&#8203;4366](https://github.com/knex/knex/issues/4366) ##### Typings: - Move QueryBuilder and KnexTimeoutError into knex namespace [#&#8203;4358](https://github.com/knex/knex/issues/4358) ##### Test / internal changes: - Unify db test helpers [#&#8203;4356](https://github.com/knex/knex/issues/4356) ### [`v0.95.1`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;09511---03-September-2021) [Compare Source](https://github.com/knex/knex/compare/0.95.0...aa7121fa9823b982684c89b7fcb60166a845711a) ##### New features: - Add support for nullability modification via schema builder (table.setNullable() and table.dropNullable()) [#&#8203;4657](https://github.com/knex/knex/issues/4657) - MySQL: Add support for mysql/mariadb-client JSON parameters in connectionURIs [#&#8203;4629](https://github.com/knex/knex/issues/4629) - MSSQL: Support comments as MS_Description properties [#&#8203;4632](https://github.com/knex/knex/issues/4632) ##### Bug fixes: - Fix Analytic orderBy and partitionBy to follow the SQL documentation [#&#8203;4602](https://github.com/knex/knex/issues/4602) - CLI: fix migrate:up for migrations disabling transactions [#&#8203;4550](https://github.com/knex/knex/issues/4550) - SQLite: Fix adding a column with a foreign key constraint in SQLite [#&#8203;4649](https://github.com/knex/knex/issues/4649) - MSSQL: columnInfo() support case-sensitive database collations [#&#8203;4633](https://github.com/knex/knex/issues/4633) - MSSQL: Generate valid SQL for withRecursive() [#&#8203;4514](https://github.com/knex/knex/issues/4514) - Oracle: withRecursive: omit invalid RECURSIVE keyword, include column list [#&#8203;4514](https://github.com/knex/knex/issues/4514) ##### Improvements: - Add .mjs migration and seed stubs [#&#8203;4631](https://github.com/knex/knex/issues/4631) - SQLite: Clean up DDL handling and move all operations to the parser-based approach [#&#8203;4648](https://github.com/knex/knex/issues/4648) ### [`v0.95.0`](https://github.com/knex/knex/blob/master/CHANGELOG.md#&#8203;0950---03-March-2021) [Compare Source](https://github.com/knex/knex/compare/823c7b60f74fb16bcb8a8230afe1fea6673c2bd0...0.95.0) Note: there are many breaking changes in this version, particularly in TypeScript support. Please see `UPGRADING.md` for details. ##### New features: - Add transaction isolation support [#&#8203;4185](https://github.com/knex/knex/issues/4185) - Add analytic functions [#&#8203;4188](https://github.com/knex/knex/issues/4188) - Change default to not trigger a promise rejection for transactions with a specified handler [#&#8203;4195](https://github.com/knex/knex/issues/4195) - Make toSQL().toNative() work for Raw to match the API for QueryBuilder [#&#8203;4058](https://github.com/knex/knex/issues/4058) - Allow 'match' operator [#&#8203;3569](https://github.com/knex/knex/issues/3569) - Support optimizer hints [#&#8203;4243](https://github.com/knex/knex/issues/4243) - Add parameter to prevent autoincrement columns from being primary keys [#&#8203;4266](https://github.com/knex/knex/issues/4266) - Make "first" and "pluck" mutually exclusive [#&#8203;4280](https://github.com/knex/knex/issues/4280) - Added merge strategy to allow selecting columns to upsert. [#&#8203;4252](https://github.com/knex/knex/issues/4252) - Throw error if the array passed to insert is empty [#&#8203;4289](https://github.com/knex/knex/issues/4289) - Events: introduce queryContext on query-error [#&#8203;4301](https://github.com/knex/knex/issues/4301) - CLI: Use UTC timestamp for new migrations [#&#8203;4245](https://github.com/knex/knex/issues/4245) - MSSQL: Replace MSSQL dialect with Tedious.js implementation [#&#8203;2857](https://github.com/knex/knex/issues/2857) [#&#8203;4281](https://github.com/knex/knex/issues/4281) - MSSQL: Use "nvarchar(max)" for ".json()" [#&#8203;4278](https://github.com/knex/knex/issues/4278) - MSSQL: Schema builder - add predictable constraint names for default values [#&#8203;4319](https://github.com/knex/knex/issues/4319) - MSSQL: Schema builder - attempt to drop default constraints when changing default value on columns [#&#8203;4321](https://github.com/knex/knex/issues/4321) - SQLite: Fallback to json for sqlite3 when using jsonb [#&#8203;4186](https://github.com/knex/knex/issues/4186) - SQLite: Return complete list of DDL commands for creating foreign keys [#&#8203;4194](https://github.com/knex/knex/issues/4194) - SQLite: Support dropping composite foreign keys [#&#8203;4202](https://github.com/knex/knex/issues/4202) - SQLite: Recreate indices when altering a table [#&#8203;4277](https://github.com/knex/knex/issues/4277) - SQLite: Add support for altering columns [#&#8203;4322](https://github.com/knex/knex/issues/4322) ##### Bug fixes: - Fix issue with .withSchema usage with joins on a subquery [#&#8203;4267](https://github.com/knex/knex/issues/4267) - Fix issue with schema usage with FROM clause contain QueryBuilder, function or Raw [#&#8203;4268](https://github.com/knex/knex/issues/4268) - CLI: Address raised security warnings by dropping liftoff [#&#8203;4122](https://github.com/knex/knex/issues/4122) - CLI: Fix an issue with npm@7 and ESM when `type` was set to `'module'` in `package.json` [#&#8203;4295](https://github.com/knex/knex/issues/4295) - PostgreSQL: Add check to only create native enum once [#&#8203;3658](https://github.com/knex/knex/issues/3658) - SQLite: Fix foreign key "on delete" when altering a table [#&#8203;4225](https://github.com/knex/knex/issues/4225) - SQLite: Made the constraint detection case-insensitive [#&#8203;4330](https://github.com/knex/knex/issues/4330) - MySQL: Keep auto increment after rename [#&#8203;4266](https://github.com/knex/knex/issues/4266) - MSSQL: don't raise query-error twice [#&#8203;4314](https://github.com/knex/knex/issues/4314) - MSSQL: Alter column must have its own query [#&#8203;4317](https://github.com/knex/knex/issues/4317) ##### Typings: - TypeScript 4.1+ is now required - Add missing onConflict overrides [#&#8203;4182](https://github.com/knex/knex/issues/4182) - Introduce the "infamous triplet" export [#&#8203;4181](https://github.com/knex/knex/issues/4181) - Fix type definition of Transaction [#&#8203;4172](https://github.com/knex/knex/issues/4172) - Add typedefinitions for havingNotIn [#&#8203;4265](https://github.com/knex/knex/issues/4265) - Include 'name' property in MigratorConfig [#&#8203;4300](https://github.com/knex/knex/issues/4300) - Improve join and conflict types [#&#8203;4318](https://github.com/knex/knex/issues/4318) - Fix ArrayIfAlready type [#&#8203;4331](https://github.com/knex/knex/issues/4331) ##### Test / internal changes: - Drop global Knex.raw [#&#8203;4180](https://github.com/knex/knex/issues/4180) - Stop using legacy url.parse API [#&#8203;3702](https://github.com/knex/knex/issues/3702) - Various internal refactorings [#&#8203;4175](https://github.com/knex/knex/issues/4175) [#&#8203;4177](https://github.com/knex/knex/issues/4177) [#&#8203;4178](https://github.com/knex/knex/issues/4178) [#&#8203;4192](https://github.com/knex/knex/issues/4192) - Refactor to classes [#&#8203;4190](https://github.com/knex/knex/issues/4190) [#&#8203;4191](https://github.com/knex/knex/issues/4191) [#&#8203;4193](https://github.com/knex/knex/issues/4193) [#&#8203;4210](https://github.com/knex/knex/issues/4210) [#&#8203;4253](https://github.com/knex/knex/issues/4253) - Move transaction type tests to TSD [#&#8203;4208](https://github.com/knex/knex/issues/4208) - Clean up destroy logic [#&#8203;4248](https://github.com/knex/knex/issues/4248) - Colorize code snippets in readme files [#&#8203;4234](https://github.com/knex/knex/issues/4234) - Add "Ecosystem" documentation for Knex plugins [#&#8203;4183](https://github.com/knex/knex/issues/4183) - Documentation cleanup - SQLite: Use SQLite "rename column" instead of a DDL helper [#&#8203;4200](https://github.com/knex/knex/issues/4200) - SQLite: Simplify reinsert logic when altering a table [#&#8203;4272](https://github.com/knex/knex/issues/4272) </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
odit_renovate added 1 commit 2021-10-15 14:18:42 +00:00
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details
2b93f3ea8a
Update dependency knex to ^0.95.0
niggl merged commit e95ca8045a into main 2021-10-15 14:22:03 +00:00
niggl deleted branch renovate/knex-0.x 2021-10-15 14:22:03 +00:00
Sign in to join this conversation.
No reviewers
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kauft.es/linkylinky#5
No description provided.