Skip to content

Commit

Permalink
Added support for new 5.8.0 API (#125)
Browse files Browse the repository at this point in the history
* Added support for new 5.8.0 API

* Added tests

* Updated changelog

* Fixed eslint and tests

* Fixed issue with missing Palete properties

* Added permisions for CodeQL

* Reverted CodeQL changes

* Added permisions for the job
  • Loading branch information
AleksSavelev authored Feb 27, 2024
1 parent ee387ce commit a18965e
Show file tree
Hide file tree
Showing 15 changed files with 466 additions and 170 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:

jobs:
CodeQL-Build:
permissions:
contents: read
actions: read
security-events: write

runs-on: ubuntu-latest

Expand All @@ -26,15 +30,15 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
# Override language selection by uncommenting this and choosing your languages
# with:
# languages: go, javascript, csharp, python, cpp, java

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -48,4 +52,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 6.1.0
* Now `createVisualHost` method has only **one parameter** with interface `CreateVisualHostOptions` (includes all previous parameters)
* Added mock service for `IVisualLocalStorageV2Service`
* Added mock service for `IVisualSubSelectionService`

## 6.0.2
* Added missing mock functions

Expand Down
150 changes: 91 additions & 59 deletions package-lock.json

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

Loading

0 comments on commit a18965e

Please sign in to comment.