Skip to content

Commit

Permalink
feat: Migrate ConnectionManager to TypeScript (#14652)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: The signature of `connectionManager.pool` when read replication is disabled is now the same as when read replication is enabled. If read replication is disabled, you can access the actual pool through `connectionManager.pool.write`. If read replication is enabled, you can use both `connectionManager.pool.read` and `connectionManager.pool.write`.
BREAKING CHANGE: When instantiating Sequelize by providing the same options through both the URI and an option bag to the sequelize constructor, the option bag always takes priority over the URI
  • Loading branch information
ephys committed Jun 19, 2022
1 parent 751826a commit b382a32
Show file tree
Hide file tree
Showing 43 changed files with 1,594 additions and 1,289 deletions.
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -66,6 +66,7 @@
"@types/lodash": "4.14.182",
"@types/mocha": "9.1.1",
"@types/node": "16.11.41",
"@types/semver": "7.3.10",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@types/uuid": "8.3.4",
Expand Down
41 changes: 0 additions & 41 deletions src/dialects/abstract/connection-manager.d.ts

This file was deleted.

0 comments on commit b382a32

Please sign in to comment.