Skip to content

Commit e8e600e

Browse files
committed
chore(release): release v4.0.0
1 parent de4eb8a commit e8e600e

File tree

34 files changed

+381
-83
lines changed

34 files changed

+381
-83
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/SAP/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)
7+
8+
9+
### Bug Fixes
10+
11+
* clear diagnostics for a closed file ([#539](https://github.com/SAP/ui5-language-assistant/issues/539)) ([8060f6c](https://github.com/SAP/ui5-language-assistant/commit/8060f6c075fb3d318b2cf584fddf1b1197113098))
12+
* code completion in default aggregation ([#499](https://github.com/SAP/ui5-language-assistant/issues/499)) ([a0f4043](https://github.com/SAP/ui5-language-assistant/commit/a0f404339385c0cee63b59cb27dadc2e715e44d7))
13+
* duplicate code completion items ([#500](https://github.com/SAP/ui5-language-assistant/issues/500)) ([4ad8c80](https://github.com/SAP/ui5-language-assistant/commit/4ad8c802566e33bed8c4aa729b06410ec6faed93))
14+
* show ui diagnostics if minUI5 version undefined in manifest.json or unsupported ([#536](https://github.com/SAP/ui5-language-assistant/issues/536)) ([06ced88](https://github.com/SAP/ui5-language-assistant/commit/06ced889db7ce5da00e5c2957f05a1b1a62441a3))
15+
16+
17+
### Features
18+
19+
* annotation relevant lsp package ([#535](https://github.com/SAP/ui5-language-assistant/issues/535)) ([6b35d43](https://github.com/SAP/ui5-language-assistant/commit/6b35d43e91753eef6bcd215d894ce69472b77863))
20+
* create new module for bas extension ([#544](https://github.com/SAP/ui5-language-assistant/issues/544)) ([de4eb8a](https://github.com/SAP/ui5-language-assistant/commit/de4eb8a813ef5d6dc193fbd73bef075504ad571a))
21+
* introduce context package ([#523](https://github.com/SAP/ui5-language-assistant/issues/523)) ([ce59328](https://github.com/SAP/ui5-language-assistant/commit/ce59328b229cd55a2b2e606afd50785feffab5a5))
22+
23+
24+
### BREAKING CHANGES
25+
26+
* introduce context by pr #523
27+
28+
Co-authored-by: Klaus Keller <klaus.keller@sap.com>
29+
30+
31+
32+
33+
634
## [3.3.1](https://github.com/SAP/ui5-language-assistant/compare/v3.3.0...v3.3.1) (2022-09-01)
735

836
**Note:** Version bump only for package root

lerna.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
2-
"packages": ["packages/*", "test-packages/*"],
2+
"packages": [
3+
"packages/*",
4+
"test-packages/*"
5+
],
36
"useWorkspaces": true,
47
"npmClient": "yarn",
5-
"version": "3.3.1",
8+
"version": "4.0.0",
69
"command": {
710
"publish": {
811
"conventionalCommits": true

packages/context/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,23 @@
22

33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)
7+
8+
9+
### Bug Fixes
10+
11+
* show ui diagnostics if minUI5 version undefined in manifest.json or unsupported ([#536](https://github.com/sap/ui5-language-assistant/issues/536)) ([06ced88](https://github.com/sap/ui5-language-assistant/commit/06ced889db7ce5da00e5c2957f05a1b1a62441a3))
12+
13+
14+
### Features
15+
16+
* annotation relevant lsp package ([#535](https://github.com/sap/ui5-language-assistant/issues/535)) ([6b35d43](https://github.com/sap/ui5-language-assistant/commit/6b35d43e91753eef6bcd215d894ce69472b77863))
17+
* introduce context package ([#523](https://github.com/sap/ui5-language-assistant/issues/523)) ([ce59328](https://github.com/sap/ui5-language-assistant/commit/ce59328b229cd55a2b2e606afd50785feffab5a5))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* introduce context by pr #523
23+
24+
Co-authored-by: Klaus Keller <klaus.keller@sap.com>

packages/context/package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5-language-assistant/context",
3-
"version": "3.3.1",
3+
"version": "4.0.0",
44
"private": true,
55
"description": "A context for an xml file",
66
"keywords": [],
@@ -16,32 +16,32 @@
1616
"license": "Apache-2.0",
1717
"typings": "./api.d.ts",
1818
"dependencies": {
19-
"@ui5-language-assistant/logic-utils": "3.3.1",
19+
"@sap-ux/annotation-converter": "0.5.20",
20+
"@sap-ux/edmx-parser": "0.5.13",
2021
"@sap-ux/project-access": "1.0.2",
21-
"lodash": "4.17.21",
22+
"@ui5-language-assistant/logic-utils": "4.0.0",
2223
"fs-extra": "10.1.0",
23-
"vscode-uri": "2.1.2",
24-
"vscode-languageserver": "8.0.2",
2524
"globby": "11.1.0",
26-
"js-yaml": "4.1.0",
2725
"https-proxy-agent": "5.0.1",
28-
"proxy-from-env": "1.1.0",
26+
"js-yaml": "4.1.0",
27+
"lodash": "4.17.21",
2928
"node-fetch": "3.2.10",
29+
"proxy-from-env": "1.1.0",
3030
"semver": "7.3.7",
31-
"@sap-ux/annotation-converter": "0.5.20",
32-
"@sap-ux/edmx-parser": "0.5.13"
31+
"vscode-languageserver": "8.0.2",
32+
"vscode-uri": "2.1.2"
3333
},
3434
"devDependencies": {
3535
"@sap-ux/vocabularies-types": "0.6.8",
3636
"@types/js-yaml": "4.0.5",
3737
"@types/lodash": "4.14.168",
3838
"@types/node-fetch": "2.5.10",
3939
"@types/semver": "7.3.12",
40-
"@ui5-language-assistant/semantic-model-types": "3.3.1",
41-
"@ui5-language-assistant/test-utils": "3.3.1",
42-
"@ui5-language-assistant/test-framework": "3.3.1",
43-
"tmp-promise": "3.0.2",
44-
"rimraf": "3.0.2"
40+
"@ui5-language-assistant/semantic-model-types": "4.0.0",
41+
"@ui5-language-assistant/test-framework": "4.0.0",
42+
"@ui5-language-assistant/test-utils": "4.0.0",
43+
"rimraf": "3.0.2",
44+
"tmp-promise": "3.0.2"
4545
},
4646
"scripts": {
4747
"ci": "npm-run-all clean compile lint coverage",

packages/fe/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,17 @@
22

33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)
7+
8+
9+
### Features
10+
11+
* annotation relevant lsp package ([#535](https://github.com/sap/ui5-language-assistant/issues/535)) ([6b35d43](https://github.com/sap/ui5-language-assistant/commit/6b35d43e91753eef6bcd215d894ce69472b77863))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* introduce context by pr #523
17+
18+
Co-authored-by: Klaus Keller <klaus.keller@sap.com>

packages/fe/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5-language-assistant/fe",
3-
"version": "3.3.1",
3+
"version": "4.0.0",
44
"private": true,
55
"description": "UI5 LSP server extension for annotation relevant building blocks",
66
"keywords": [],
@@ -16,23 +16,23 @@
1616
"license": "Apache-2.0",
1717
"typings": "./api.d.ts",
1818
"dependencies": {
19-
"lodash": "4.17.21",
20-
"@ui5-language-assistant/logic-utils": "3.3.1",
21-
"@ui5-language-assistant/context": "3.3.1",
22-
"@ui5-language-assistant/xml-views-completion": "3.3.1",
23-
"@ui5-language-assistant/xml-views-validation": "3.3.1",
24-
"deep-freeze-strict": "1.1.1"
19+
"@ui5-language-assistant/context": "4.0.0",
20+
"@ui5-language-assistant/logic-utils": "4.0.0",
21+
"@ui5-language-assistant/xml-views-completion": "4.0.0",
22+
"@ui5-language-assistant/xml-views-validation": "4.0.0",
23+
"deep-freeze-strict": "1.1.1",
24+
"lodash": "4.17.21"
2525
},
2626
"devDependencies": {
2727
"@sap-ux/vocabularies-types": "0.6.8",
2828
"@types/lodash": "4.14.168",
29-
"@ui5-language-assistant/semantic-model-types": "3.3.1",
30-
"@ui5-language-assistant/test-framework": "3.3.1",
31-
"@ui5-language-assistant/test-utils": "3.3.1",
29+
"@ui5-language-assistant/semantic-model-types": "4.0.0",
30+
"@ui5-language-assistant/test-framework": "4.0.0",
31+
"@ui5-language-assistant/test-utils": "4.0.0",
3232
"@xml-tools/ast": "5.0.0",
3333
"@xml-tools/parser": "1.0.7",
34-
"vscode-languageserver-types": "3.17.2",
35-
"vscode-languageserver-protocol": "3.17.2"
34+
"vscode-languageserver-protocol": "3.17.2",
35+
"vscode-languageserver-types": "3.17.2"
3636
},
3737
"scripts": {
3838
"ci": "npm-run-all clean compile lint coverage",

packages/language-server/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)
7+
8+
9+
### Bug Fixes
10+
11+
* clear diagnostics for a closed file ([#539](https://github.com/sap/ui5-language-assistant/issues/539)) ([8060f6c](https://github.com/sap/ui5-language-assistant/commit/8060f6c075fb3d318b2cf584fddf1b1197113098))
12+
* code completion in default aggregation ([#499](https://github.com/sap/ui5-language-assistant/issues/499)) ([a0f4043](https://github.com/sap/ui5-language-assistant/commit/a0f404339385c0cee63b59cb27dadc2e715e44d7))
13+
* show ui diagnostics if minUI5 version undefined in manifest.json or unsupported ([#536](https://github.com/sap/ui5-language-assistant/issues/536)) ([06ced88](https://github.com/sap/ui5-language-assistant/commit/06ced889db7ce5da00e5c2957f05a1b1a62441a3))
14+
15+
16+
### Features
17+
18+
* annotation relevant lsp package ([#535](https://github.com/sap/ui5-language-assistant/issues/535)) ([6b35d43](https://github.com/sap/ui5-language-assistant/commit/6b35d43e91753eef6bcd215d894ce69472b77863))
19+
* introduce context package ([#523](https://github.com/sap/ui5-language-assistant/issues/523)) ([ce59328](https://github.com/sap/ui5-language-assistant/commit/ce59328b229cd55a2b2e606afd50785feffab5a5))
20+
21+
22+
### BREAKING CHANGES
23+
24+
* introduce context by pr #523
25+
26+
Co-authored-by: Klaus Keller <klaus.keller@sap.com>
27+
28+
29+
30+
31+
632
## [3.3.1](https://github.com/sap/ui5-language-assistant/compare/v3.3.0...v3.3.1) (2022-09-01)
733

834
**Note:** Version bump only for package @ui5-language-assistant/language-server

packages/language-server/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5-language-assistant/language-server",
3-
"version": "3.3.1",
3+
"version": "4.0.0",
44
"private": true,
55
"description": "UI5 Language Server",
66
"keywords": [
@@ -26,15 +26,15 @@
2626
},
2727
"dependencies": {
2828
"@sap/swa-for-sapbas-vsx": "1.1.9",
29-
"@ui5-language-assistant/semantic-model": "3.3.1",
30-
"@ui5-language-assistant/settings": "3.3.1",
31-
"@ui5-language-assistant/context": "3.3.1",
32-
"@ui5-language-assistant/user-facing-text": "3.3.1",
33-
"@ui5-language-assistant/xml-views-completion": "3.3.1",
34-
"@ui5-language-assistant/xml-views-quick-fix": "3.3.1",
35-
"@ui5-language-assistant/xml-views-tooltip": "3.3.1",
36-
"@ui5-language-assistant/xml-views-validation": "3.3.1",
37-
"@ui5-language-assistant/fe": "3.3.1",
29+
"@ui5-language-assistant/context": "4.0.0",
30+
"@ui5-language-assistant/fe": "4.0.0",
31+
"@ui5-language-assistant/semantic-model": "4.0.0",
32+
"@ui5-language-assistant/settings": "4.0.0",
33+
"@ui5-language-assistant/user-facing-text": "4.0.0",
34+
"@ui5-language-assistant/xml-views-completion": "4.0.0",
35+
"@ui5-language-assistant/xml-views-quick-fix": "4.0.0",
36+
"@ui5-language-assistant/xml-views-tooltip": "4.0.0",
37+
"@ui5-language-assistant/xml-views-validation": "4.0.0",
3838
"@xml-tools/ast": "5.0.0",
3939
"@xml-tools/ast-position": "2.0.2",
4040
"@xml-tools/parser": "1.0.7",
@@ -50,8 +50,8 @@
5050
"@types/node-fetch": "2.5.10",
5151
"@types/semver": "7.3.12",
5252
"@types/tmp": "0.2.0",
53-
"@ui5-language-assistant/semantic-model-types": "3.3.1",
54-
"@ui5-language-assistant/test-utils": "3.3.1",
53+
"@ui5-language-assistant/semantic-model-types": "4.0.0",
54+
"@ui5-language-assistant/test-utils": "4.0.0",
5555
"string-replace-loader": "3.1.0",
5656
"vscode-languageserver-types": "3.17.2"
5757
},

packages/logic-utils/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)
7+
8+
9+
### Bug Fixes
10+
11+
* duplicate code completion items ([#500](https://github.com/sap/ui5-language-assistant/issues/500)) ([4ad8c80](https://github.com/sap/ui5-language-assistant/commit/4ad8c802566e33bed8c4aa729b06410ec6faed93))
12+
13+
14+
### Features
15+
16+
* introduce context package ([#523](https://github.com/sap/ui5-language-assistant/issues/523)) ([ce59328](https://github.com/sap/ui5-language-assistant/commit/ce59328b229cd55a2b2e606afd50785feffab5a5))
17+
18+
19+
20+
21+
622
## [3.3.1](https://github.com/sap/ui5-language-assistant/compare/v3.3.0...v3.3.1) (2022-09-01)
723

824
**Note:** Version bump only for package @ui5-language-assistant/logic-utils

packages/logic-utils/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5-language-assistant/logic-utils",
3-
"version": "3.3.1",
3+
"version": "4.0.0",
44
"private": true,
55
"description": "TBD",
66
"keywords": [],
@@ -16,16 +16,16 @@
1616
"license": "Apache-2.0",
1717
"typings": "./api.d.ts",
1818
"dependencies": {
19-
"@ui5-language-assistant/semantic-model-types": "3.3.1",
20-
"@xml-tools/ast": "5.0.0",
19+
"@ui5-language-assistant/semantic-model-types": "4.0.0",
20+
"@ui5-language-assistant/settings": "4.0.0",
2121
"@vscode-logging/logger": "1.2.2",
22-
"@ui5-language-assistant/settings": "3.3.1",
22+
"@xml-tools/ast": "5.0.0",
2323
"lodash": "4.17.21"
2424
},
2525
"devDependencies": {
26+
"@ui5-language-assistant/semantic-model": "4.0.0",
27+
"@ui5-language-assistant/test-utils": "4.0.0",
2628
"@vscode-logging/types": "0.1.4",
27-
"@ui5-language-assistant/semantic-model": "3.3.1",
28-
"@ui5-language-assistant/test-utils": "3.3.1",
2929
"@xml-tools/parser": "1.0.7"
3030
},
3131
"scripts": {

0 commit comments

Comments
 (0)