* Update api to 5.9.0

* Replace master with main

* Updated build.yml file

* Increment dataviewutils version

---------

Co-authored-by: Iuliia Kulagina <v-ikulagina@microsoft.com>
This commit is contained in:
Iuliia Kulagina 2024-04-03 11:07:49 +02:00 коммит произвёл GitHub
Родитель a02624c567
Коммит ebb313ccad
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
5 изменённых файлов: 3059 добавлений и 1562 удалений

10
.github/workflows/build.yml поставляемый
Просмотреть файл

@ -5,9 +5,9 @@ name: build
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]
jobs:
build:
@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
node-version: [14.x]
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
@ -24,6 +24,10 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm audit
continue-on-error: true
- run: npm outdated
continue-on-error: true
- run: npm ci
- run: npm run lint
- run: npm test

Просмотреть файл

@ -1,3 +1,7 @@
## 6.0.3
* powerbi-visuals-api update to 5.9.0
## 6.0.2
* Vulnerabilities fixed

Просмотреть файл

@ -12,7 +12,7 @@ If you would like to contribute an improvement or a fix please take a look at ou
Before submitting a pull request please make sure the following is done:
1. Fork [the repository](https://github.com/Microsoft/powerbi-visuals-utils-dataviewutils)
2. Create a branch from the ```master```
2. Create a branch from the ```main```
3. Ensure that the code style checks are passed ([How to lint the source code](./docs/dev/development-workflow.md#how-to-lint-the-source-code))
4. Ensure that the unit tests are passed ([How to run unit tests locally](./docs/dev/development-workflow.md#how-to-run-unit-tests-locally))
5. Complete the [CLA](#contributor-license-agreement-cla)

4599
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "powerbi-visuals-utils-dataviewutils",
"version": "6.0.2",
"version": "6.0.3",
"description": "dataviewutils",
"main": "lib/index.js",
"module": "lib/index.js",
@ -36,9 +36,9 @@
"@types/webpack": "5.28.5",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"coverage-istanbul-loader": "^3.0.5",
"eslint": "^8.37.0",
"eslint-plugin-powerbi-visuals": "^0.8.1",
"coverage-istanbul-loader": "^3.0.5",
"jasmine": "5.1.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "3.2.0",
@ -49,8 +49,8 @@
"karma-typescript": "^5.5.4",
"karma-typescript-preprocessor": "0.4.0",
"karma-webpack": "^5.0.0",
"powerbi-visuals-api": "5.7.0",
"playwright-chromium": "1.40.1",
"powerbi-visuals-api": "^5.9.0",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "^4.9.5",