Skip to content

Commit

Permalink
Merge branch 'dev', remote-tracking branch 'origin' into certification
Browse files Browse the repository at this point in the history
  • Loading branch information
Demonkratiy committed Aug 23, 2024
2 parents 021f16e + ecb11c6 commit 08b882e
Show file tree
Hide file tree
Showing 57 changed files with 3,125 additions and 2,683 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: build

on:
push:
branches: [ main ]
branches: [ main, dev, certification]
pull_request:
branches: [ main ]
branches: [ main, dev, certification ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -23,6 +23,8 @@ jobs:
- run: npm audit
continue-on-error: true

- run: npm outdated
continue-on-error: true
- run: npm ci

- run: npm run eslint --if-present
Expand All @@ -31,6 +33,6 @@ jobs:

- run: npm run package

- run: npm run test
- run: npm test
env:
CI: true
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
<<<<<<< .merge_file_W0a5Am
=======
## 2.3.2.0
### Visual changes:
* Fix color reassignment
* Fix bug with data displaying
### Code improvements:
* Update dependencies
* Api 5.11.0

## 2.3.1.0
* Added keyboard navigation

## 2.3.0.0
### Visual changes:
* Use selectionManager for interactive behavior
* Fix clear selection bug
* Add bookmark support
### Code improvements:
* API v5.9.0
* Update dependencies and fix audit vulnerabilities

>>>>>>> .merge_file_XOE6at
## 2.2.0
* API v5.4.0
* Fixed bug with instantiation of the SelectingManager class
Expand Down Expand Up @@ -57,4 +80,4 @@

## 1.2.11
* FIX. Stop word doesn't work if Word-breaking turned off
* FIX. Visual always was removing special characters. Added "Special characters" boolean property to "General" tab which will be control removing spesial characters
* FIX. Visual always was removing special characters. Added "Special characters" boolean property to "General" tab which will be control removing spesial characters
2 changes: 1 addition & 1 deletion karma.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const testRecursivePath = "test/visualTest.ts";
const srcOriginalRecursivePath = "src/**/*.ts";
const coverageFolder = "coverage";

process.env.CHROME_BIN = require("playwright").chromium.executablePath();
process.env.CHROME_BIN = require("playwright-chromium").chromium.executablePath();

module.exports = (config) => {
config.set({
Expand Down
Loading

0 comments on commit 08b882e

Please sign in to comment.