Skip to content

Commit

Permalink
#49: Extract common code for virtual schema extensions (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada authored Nov 3, 2023
1 parent b44160d commit 4f0f1e2
Show file tree
Hide file tree
Showing 43 changed files with 1,476 additions and 499 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/broken_links_checker.yml

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

4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node 18
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm ci
Expand Down
19 changes: 6 additions & 13 deletions .github/workflows/project-keeper-verify.yml

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

2 changes: 1 addition & 1 deletion .github/workflows/project-keeper.sh

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

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Build and release
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
Expand Down
1 change: 0 additions & 1 deletion .project-keeper.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
sources:
- type: npm
path: package.json
version: 0.3.1
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ the [Exasol extension-manager](https://github.com/exasol/extension-manager/).
## Additional Information

* [Changelog](doc/changes/changelog.md)
* [Guide for developing an extension for Extension Manager](https://github.com/exasol/extension-manager/blob/main/doc/extension_developer_guide.md)
* [Developer Guide](doc/developer_guide/developer_guide.md)
* [Dependencies](dependencies.md)
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.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Extension Manager Interface 0.4.0, released 2023-11-03

Code name: Simplify Virtual Schema Extensions

## Summary

This release simplifies creating extension definitions for Java-based virtual schemas. To use it, simply create your `ExasolExtension` by calling `convertVirtualSchemaBaseExtension(baseExtension: JavaVirtualSchemaBaseExtension)`. This works similar to `convertBaseExtension(baseExtension: JavaBaseExtension)` for Java-based script extensions. No need to implement all extension methods yourself, just configure required `SCRIPT`s, `CONNECTION` parameters and `VIRTUAL SCHEMA` properties. See the the S3 Virtual Schema [extension](https://github.com/exasol/s3-document-files-virtual-schema/blob/main/extension/src/extension.ts) updated in [#139](https://github.com/exasol/s3-document-files-virtual-schema/pull/139) as an example.

## Features

* #49: Extracted common code for virtual schema extensions

## Dependency Updates

### Development Dependency Updates

* Updated `eslint:^8.47.0` to `^8.52.0`
* Updated `@jest/globals:^29.6.3` to `^29.7.0`
* Updated `@typescript-eslint/parser:^6.4.1` to `^6.9.1`
* Updated `typescript:5.1.6` to `5.2.2`
* Updated `@typescript-eslint/eslint-plugin:^6.4.1` to `^6.9.1`
* Updated `jest:^29.6.3` to `^29.7.0`
Loading

0 comments on commit 4f0f1e2

Please sign in to comment.