diff --git a/CHANGELOG.md b/CHANGELOG.md index f63c02a5..d52a19f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2.1.0](https://github.com/gravity-ui/websql-autocomplete/compare/v2.0.0...v2.1.0) (2023-12-04) + + +### Features + +* add eslint ci, fix eslint errors ([#97](https://github.com/gravity-ui/websql-autocomplete/issues/97)) ([2c66e7a](https://github.com/gravity-ui/websql-autocomplete/commit/2c66e7a46b5e790557efe2b53ae4a207e7b1b4d1)) +* define database StatementPart, add identifierChain to TablesSuggestion, remove useless totos, migrate drop tests to typescript ([#96](https://github.com/gravity-ui/websql-autocomplete/issues/96)) ([47a18c2](https://github.com/gravity-ui/websql-autocomplete/commit/47a18c272db9f00dad2a0823eb2c5bf000151866)) +* define FiltersSuggestion, FunctionsSuggestion, ValuesSuggestion, Colref, migrate update table tests to typescript ([#99](https://github.com/gravity-ui/websql-autocomplete/issues/99)) ([4b99563](https://github.com/gravity-ui/websql-autocomplete/commit/4b995634e1a82664f7eae1df91b48763c5a26eb9)) +* define suggestColRefKeywords, suggestEngines, add typechecking ci ([#95](https://github.com/gravity-ui/websql-autocomplete/issues/95)) ([f09f370](https://github.com/gravity-ui/websql-autocomplete/commit/f09f370319d0b8b13cffa6d0bd6d8c0269008b95)) +* define useDatabase, add prependQuestionMark and prependFrom to DatabasesSuggestion, migrate use and set tests to typescript ([#101](https://github.com/gravity-ui/websql-autocomplete/issues/101)) ([7ec60ae](https://github.com/gravity-ui/websql-autocomplete/commit/7ec60ae846df2253a5696e9acbe0dc341cc605e2)) +* migrate truncate table tests to typescript ([#102](https://github.com/gravity-ui/websql-autocomplete/issues/102)) ([7d7d38b](https://github.com/gravity-ui/websql-autocomplete/commit/7d7d38be65adec188d1f51c7679700779b3833c7)) +* move AggregateFunctionsSuggestion to a separate interface, refactor general parser create tests ([#92](https://github.com/gravity-ui/websql-autocomplete/issues/92)) ([08e8c26](https://github.com/gravity-ui/websql-autocomplete/commit/08e8c26982ec2e62a3951234f0db014329070741)) +* type generator and move to single package.json ([#93](https://github.com/gravity-ui/websql-autocomplete/issues/93)) ([a5ac8e9](https://github.com/gravity-ui/websql-autocomplete/commit/a5ac8e9f889e9c5b6419a160c4bb4cd97156946d)) + ## [2.0.0](https://github.com/gravity-ui/websql-autocomplete/compare/v1.22.0...v2.0.0) (2023-11-28) diff --git a/package-lock.json b/package-lock.json index 0f99c6ee..039a9183 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "websql-autocomplete", - "version": "2.0.0", + "version": "2.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "websql-autocomplete", - "version": "2.0.0", + "version": "2.1.0", "license": "Apache-2.0", "devDependencies": { "@babel/preset-env": "7.14.4", diff --git a/package.json b/package.json index 4b58ad5e..cb0121c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "websql-autocomplete", - "version": "2.0.0", + "version": "2.1.0", "description": "A library that provides autocompletion and errors highlighting for various database dialects", "repository": { "type": "git",