Skip to content

Commit

Permalink
chore(release): release v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bd82 committed Jan 25, 2023
1 parent de4eb8a commit 657e450
Show file tree
Hide file tree
Showing 34 changed files with 292 additions and 82 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.0.0](https://github.com/SAP/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)

### Bug Fixes

- 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))
- 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))
- duplicate code completion items ([#500](https://github.com/SAP/ui5-language-assistant/issues/500)) ([4ad8c80](https://github.com/SAP/ui5-language-assistant/commit/4ad8c802566e33bed8c4aa729b06410ec6faed93))
- 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))

### Features

- annotation relevant lsp package ([#535](https://github.com/SAP/ui5-language-assistant/issues/535)) ([6b35d43](https://github.com/SAP/ui5-language-assistant/commit/6b35d43e91753eef6bcd215d894ce69472b77863))
- 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))
- introduce context package ([#523](https://github.com/SAP/ui5-language-assistant/issues/523)) ([ce59328](https://github.com/SAP/ui5-language-assistant/commit/ce59328b229cd55a2b2e606afd50785feffab5a5))

### BREAKING CHANGES

- introduce context by pr #523

Co-authored-by: Klaus Keller <[email protected]>

## [3.3.1](https://github.com/SAP/ui5-language-assistant/compare/v3.3.0...v3.3.1) (2022-09-01)

**Note:** Version bump only for package root
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": ["packages/*", "test-packages/*"],
"useWorkspaces": true,
"npmClient": "yarn",
"version": "3.3.1",
"version": "4.0.0",
"command": {
"publish": {
"conventionalCommits": true
Expand Down
17 changes: 17 additions & 0 deletions packages/context/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,20 @@

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)

### Bug Fixes

- 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))

### Features

- annotation relevant lsp package ([#535](https://github.com/sap/ui5-language-assistant/issues/535)) ([6b35d43](https://github.com/sap/ui5-language-assistant/commit/6b35d43e91753eef6bcd215d894ce69472b77863))
- introduce context package ([#523](https://github.com/sap/ui5-language-assistant/issues/523)) ([ce59328](https://github.com/sap/ui5-language-assistant/commit/ce59328b229cd55a2b2e606afd50785feffab5a5))

### BREAKING CHANGES

- introduce context by pr #523

Co-authored-by: Klaus Keller <[email protected]>
28 changes: 14 additions & 14 deletions packages/context/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ui5-language-assistant/context",
"version": "3.3.1",
"version": "4.0.0",
"private": true,
"description": "A context for an xml file",
"keywords": [],
Expand All @@ -16,32 +16,32 @@
"license": "Apache-2.0",
"typings": "./api.d.ts",
"dependencies": {
"@ui5-language-assistant/logic-utils": "3.3.1",
"@sap-ux/annotation-converter": "0.5.20",
"@sap-ux/edmx-parser": "0.5.13",
"@sap-ux/project-access": "1.0.2",
"lodash": "4.17.21",
"@ui5-language-assistant/logic-utils": "4.0.0",
"fs-extra": "10.1.0",
"vscode-uri": "2.1.2",
"vscode-languageserver": "8.0.2",
"globby": "11.1.0",
"js-yaml": "4.1.0",
"https-proxy-agent": "5.0.1",
"proxy-from-env": "1.1.0",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"node-fetch": "3.2.10",
"proxy-from-env": "1.1.0",
"semver": "7.3.7",
"@sap-ux/annotation-converter": "0.5.20",
"@sap-ux/edmx-parser": "0.5.13"
"vscode-languageserver": "8.0.2",
"vscode-uri": "2.1.2"
},
"devDependencies": {
"@sap-ux/vocabularies-types": "0.6.8",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.168",
"@types/node-fetch": "2.5.10",
"@types/semver": "7.3.12",
"@ui5-language-assistant/semantic-model-types": "3.3.1",
"@ui5-language-assistant/test-utils": "3.3.1",
"@ui5-language-assistant/test-framework": "3.3.1",
"tmp-promise": "3.0.2",
"rimraf": "3.0.2"
"@ui5-language-assistant/semantic-model-types": "4.0.0",
"@ui5-language-assistant/test-framework": "4.0.0",
"@ui5-language-assistant/test-utils": "4.0.0",
"rimraf": "3.0.2",
"tmp-promise": "3.0.2"
},
"scripts": {
"ci": "npm-run-all clean compile lint coverage",
Expand Down
12 changes: 12 additions & 0 deletions packages/fe/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,15 @@

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)

### Features

- annotation relevant lsp package ([#535](https://github.com/sap/ui5-language-assistant/issues/535)) ([6b35d43](https://github.com/sap/ui5-language-assistant/commit/6b35d43e91753eef6bcd215d894ce69472b77863))

### BREAKING CHANGES

- introduce context by pr #523

Co-authored-by: Klaus Keller <[email protected]>
24 changes: 12 additions & 12 deletions packages/fe/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ui5-language-assistant/fe",
"version": "3.3.1",
"version": "4.0.0",
"private": true,
"description": "UI5 LSP server extension for annotation relevant building blocks",
"keywords": [],
Expand All @@ -16,23 +16,23 @@
"license": "Apache-2.0",
"typings": "./api.d.ts",
"dependencies": {
"lodash": "4.17.21",
"@ui5-language-assistant/logic-utils": "3.3.1",
"@ui5-language-assistant/context": "3.3.1",
"@ui5-language-assistant/xml-views-completion": "3.3.1",
"@ui5-language-assistant/xml-views-validation": "3.3.1",
"deep-freeze-strict": "1.1.1"
"@ui5-language-assistant/context": "4.0.0",
"@ui5-language-assistant/logic-utils": "4.0.0",
"@ui5-language-assistant/xml-views-completion": "4.0.0",
"@ui5-language-assistant/xml-views-validation": "4.0.0",
"deep-freeze-strict": "1.1.1",
"lodash": "4.17.21"
},
"devDependencies": {
"@sap-ux/vocabularies-types": "0.6.8",
"@types/lodash": "4.14.168",
"@ui5-language-assistant/semantic-model-types": "3.3.1",
"@ui5-language-assistant/test-framework": "3.3.1",
"@ui5-language-assistant/test-utils": "3.3.1",
"@ui5-language-assistant/semantic-model-types": "4.0.0",
"@ui5-language-assistant/test-framework": "4.0.0",
"@ui5-language-assistant/test-utils": "4.0.0",
"@xml-tools/ast": "5.0.0",
"@xml-tools/parser": "1.0.7",
"vscode-languageserver-types": "3.17.2",
"vscode-languageserver-protocol": "3.17.2"
"vscode-languageserver-protocol": "3.17.2",
"vscode-languageserver-types": "3.17.2"
},
"scripts": {
"ci": "npm-run-all clean compile lint coverage",
Expand Down
19 changes: 19 additions & 0 deletions packages/language-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)

### Bug Fixes

- 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))
- 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))
- 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))

### Features

- annotation relevant lsp package ([#535](https://github.com/sap/ui5-language-assistant/issues/535)) ([6b35d43](https://github.com/sap/ui5-language-assistant/commit/6b35d43e91753eef6bcd215d894ce69472b77863))
- introduce context package ([#523](https://github.com/sap/ui5-language-assistant/issues/523)) ([ce59328](https://github.com/sap/ui5-language-assistant/commit/ce59328b229cd55a2b2e606afd50785feffab5a5))

### BREAKING CHANGES

- introduce context by pr #523

Co-authored-by: Klaus Keller <[email protected]>

## [3.3.1](https://github.com/sap/ui5-language-assistant/compare/v3.3.0...v3.3.1) (2022-09-01)

**Note:** Version bump only for package @ui5-language-assistant/language-server
Expand Down
24 changes: 12 additions & 12 deletions packages/language-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ui5-language-assistant/language-server",
"version": "3.3.1",
"version": "4.0.0",
"private": true,
"description": "UI5 Language Server",
"keywords": [
Expand All @@ -26,15 +26,15 @@
},
"dependencies": {
"@sap/swa-for-sapbas-vsx": "1.1.9",
"@ui5-language-assistant/semantic-model": "3.3.1",
"@ui5-language-assistant/settings": "3.3.1",
"@ui5-language-assistant/context": "3.3.1",
"@ui5-language-assistant/user-facing-text": "3.3.1",
"@ui5-language-assistant/xml-views-completion": "3.3.1",
"@ui5-language-assistant/xml-views-quick-fix": "3.3.1",
"@ui5-language-assistant/xml-views-tooltip": "3.3.1",
"@ui5-language-assistant/xml-views-validation": "3.3.1",
"@ui5-language-assistant/fe": "3.3.1",
"@ui5-language-assistant/context": "4.0.0",
"@ui5-language-assistant/fe": "4.0.0",
"@ui5-language-assistant/semantic-model": "4.0.0",
"@ui5-language-assistant/settings": "4.0.0",
"@ui5-language-assistant/user-facing-text": "4.0.0",
"@ui5-language-assistant/xml-views-completion": "4.0.0",
"@ui5-language-assistant/xml-views-quick-fix": "4.0.0",
"@ui5-language-assistant/xml-views-tooltip": "4.0.0",
"@ui5-language-assistant/xml-views-validation": "4.0.0",
"@xml-tools/ast": "5.0.0",
"@xml-tools/ast-position": "2.0.2",
"@xml-tools/parser": "1.0.7",
Expand All @@ -50,8 +50,8 @@
"@types/node-fetch": "2.5.10",
"@types/semver": "7.3.12",
"@types/tmp": "0.2.0",
"@ui5-language-assistant/semantic-model-types": "3.3.1",
"@ui5-language-assistant/test-utils": "3.3.1",
"@ui5-language-assistant/semantic-model-types": "4.0.0",
"@ui5-language-assistant/test-utils": "4.0.0",
"string-replace-loader": "3.1.0",
"vscode-languageserver-types": "3.17.2"
},
Expand Down
10 changes: 10 additions & 0 deletions packages/logic-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)

### Bug Fixes

- duplicate code completion items ([#500](https://github.com/sap/ui5-language-assistant/issues/500)) ([4ad8c80](https://github.com/sap/ui5-language-assistant/commit/4ad8c802566e33bed8c4aa729b06410ec6faed93))

### Features

- introduce context package ([#523](https://github.com/sap/ui5-language-assistant/issues/523)) ([ce59328](https://github.com/sap/ui5-language-assistant/commit/ce59328b229cd55a2b2e606afd50785feffab5a5))

## [3.3.1](https://github.com/sap/ui5-language-assistant/compare/v3.3.0...v3.3.1) (2022-09-01)

**Note:** Version bump only for package @ui5-language-assistant/logic-utils
Expand Down
12 changes: 6 additions & 6 deletions packages/logic-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ui5-language-assistant/logic-utils",
"version": "3.3.1",
"version": "4.0.0",
"private": true,
"description": "TBD",
"keywords": [],
Expand All @@ -16,16 +16,16 @@
"license": "Apache-2.0",
"typings": "./api.d.ts",
"dependencies": {
"@ui5-language-assistant/semantic-model-types": "3.3.1",
"@xml-tools/ast": "5.0.0",
"@ui5-language-assistant/semantic-model-types": "4.0.0",
"@ui5-language-assistant/settings": "4.0.0",
"@vscode-logging/logger": "1.2.2",
"@ui5-language-assistant/settings": "3.3.1",
"@xml-tools/ast": "5.0.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@ui5-language-assistant/semantic-model": "4.0.0",
"@ui5-language-assistant/test-utils": "4.0.0",
"@vscode-logging/types": "0.1.4",
"@ui5-language-assistant/semantic-model": "3.3.1",
"@ui5-language-assistant/test-utils": "3.3.1",
"@xml-tools/parser": "1.0.7"
},
"scripts": {
Expand Down
16 changes: 16 additions & 0 deletions packages/semantic-model-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)

### Bug Fixes

- 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))

### Features

- annotation relevant lsp package ([#535](https://github.com/sap/ui5-language-assistant/issues/535)) ([6b35d43](https://github.com/sap/ui5-language-assistant/commit/6b35d43e91753eef6bcd215d894ce69472b77863))

### BREAKING CHANGES

- introduce context by pr #523

Co-authored-by: Klaus Keller <[email protected]>

## [3.3.1](https://github.com/sap/ui5-language-assistant/compare/v3.3.0...v3.3.1) (2022-09-01)

**Note:** Version bump only for package @ui5-language-assistant/semantic-model-types
Expand Down
2 changes: 1 addition & 1 deletion packages/semantic-model-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ui5-language-assistant/semantic-model-types",
"version": "3.3.1",
"version": "4.0.0",
"private": true,
"description": "UI5 Semantic model type definitions",
"keywords": [],
Expand Down
16 changes: 16 additions & 0 deletions packages/semantic-model/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)

### Bug Fixes

- 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))

### Features

- annotation relevant lsp package ([#535](https://github.com/sap/ui5-language-assistant/issues/535)) ([6b35d43](https://github.com/sap/ui5-language-assistant/commit/6b35d43e91753eef6bcd215d894ce69472b77863))

### BREAKING CHANGES

- introduce context by pr #523

Co-authored-by: Klaus Keller <[email protected]>

## [3.3.1](https://github.com/sap/ui5-language-assistant/compare/v3.3.0...v3.3.1) (2022-09-01)

**Note:** Version bump only for package @ui5-language-assistant/semantic-model
Expand Down
6 changes: 3 additions & 3 deletions packages/semantic-model/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ui5-language-assistant/semantic-model",
"version": "3.3.1",
"version": "4.0.0",
"private": true,
"description": "Semantic model provider for UI5",
"keywords": [],
Expand All @@ -17,15 +17,15 @@
"license": "Apache-2.0",
"typings": "./api.d.ts",
"dependencies": {
"@ui5-language-assistant/semantic-model-types": "3.3.1",
"@ui5-language-assistant/semantic-model-types": "4.0.0",
"ajv": "6.12.3",
"deep-freeze-strict": "1.1.1",
"fs-extra": "10.1.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@types/deep-freeze-strict": "1.1.0",
"@ui5-language-assistant/test-utils": "3.3.1",
"@ui5-language-assistant/test-utils": "4.0.0",
"json-schema-to-typescript": "10.0.3"
},
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions packages/settings/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)

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

## [3.3.1](https://github.com/sap/ui5-language-assistant/compare/v3.3.0...v3.3.1) (2022-09-01)

**Note:** Version bump only for package @ui5-language-assistant/settings
Expand Down
2 changes: 1 addition & 1 deletion packages/settings/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ui5-language-assistant/settings",
"version": "3.3.1",
"version": "4.0.0",
"private": true,
"description": "Settings for UI5 Language Assistant",
"keywords": [],
Expand Down
4 changes: 4 additions & 0 deletions packages/user-facing-text/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.0.0](https://github.com/sap/ui5-language-assistant/compare/v3.3.1...v4.0.0) (2023-01-25)

**Note:** Version bump only for package @ui5-language-assistant/user-facing-text

## [3.3.1](https://github.com/sap/ui5-language-assistant/compare/v3.3.0...v3.3.1) (2022-09-01)

**Note:** Version bump only for package @ui5-language-assistant/user-facing-text
Expand Down
Loading

0 comments on commit 657e450

Please sign in to comment.