diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..3a3cce5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "npm" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/CHANGELOG.md b/CHANGELOG.md index 41a2d1f..317ec4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.4](https://github.com/tediousjs/connection-string/compare/v0.4.3...v0.4.4) (2023-08-02) + + +### Bug Fixes + +* update typings ([bbd7ddc](https://github.com/tediousjs/connection-string/commit/bbd7ddcc9c3fe848e31267c40176eb337855d5c4)) + ## [0.4.3](https://github.com/tediousjs/connection-string/compare/v0.4.2...v0.4.3) (2023-08-01) diff --git a/package-lock.json b/package-lock.json index 95ddee0..4ad94c1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@tediousjs/connection-string", - "version": "0.4.3", + "version": "0.4.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 4a465a5..29233c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tediousjs/connection-string", - "version": "0.4.3", + "version": "0.4.4", "description": "SQL ConnectionString parser", "repository": { "type": "git", diff --git a/src/parser/connection-string.ts b/src/parser/connection-string.ts index c9b94ef..2b19aa5 100644 --- a/src/parser/connection-string.ts +++ b/src/parser/connection-string.ts @@ -1,6 +1,6 @@ export interface CollectionConfig { terminator: string, - quotes: {[index: string]: string}, + quotes: Record, } export interface ParserConfig {