Skip to content

Commit

Permalink
#54 Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed May 6, 2024
1 parent 280bcab commit ff8fd43
Show file tree
Hide file tree
Showing 8 changed files with 597 additions and 496 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -17,10 +19,10 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node 18
uses: actions/setup-node@v3
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm ci
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ jobs:
release:
name: Build and release
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: "npm"
registry-url: "https://registry.npmjs.org"
- run: npm ci
Expand Down
18 changes: 9 additions & 9 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.generate.finalModifiers": true
},
"sonarlint.connectedMode.project": {
"connectionId": "exasol",
"projectKey": "@exasol/extension-manager-interface"
}
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.generate.finalModifiers": "explicit",
},
"sonarlint.connectedMode.project": {
"connectionId": "exasol",
"projectKey": "@exasol/extension-manager-interface"
}
}
1 change: 1 addition & 0 deletions doc/changes/changelog.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions doc/changes/changes_0.4.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Extension Manager Interface 0.4.2, released 2024-05-06

Code name: Improve error message for existing virtual schema

## Summary

This release checks if a virtual schema already exists with the same name before creating a new one. This improves the error message for the user.

## Bugfix

* #54: Improved error handling for creating a virtual schema

## Dependency Updates

### Development Dependency Updates

* Updated `eslint:^8.53.0` to `^8.57.0`
* Updated `@typescript-eslint/parser:^6.10.0` to `^7.8.0`
* Updated `ts-jest:^29.1.1` to `^29.1.2`
* Updated `typescript:5.2.2` to `5.4.5`
* Updated `@typescript-eslint/eslint-plugin:^6.10.0` to `^7.8.0`
* Updated `ts-node:^10.9.1` to `^10.9.2`
Loading

0 comments on commit ff8fd43

Please sign in to comment.