From 6920263cfd2ed10f52bd781ffe19a393ea838f6c Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Tue, 21 Feb 2023 12:11:13 +0200 Subject: [PATCH 01/75] feat: test build usig github action --- .github/workflows/test.yml | 69 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..8e279b6e6 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,69 @@ +name: Lint without auto fix + +on: + # Trigger the workflow on push or pull request, + # but only for the main branch + push: + branches: + - master + - feat/switch-to-github-actions + pull_request: + branches: + - master + - feat/switch-to-github-actions + +jobs: + run-linters: + strategy: + matrix: + os: [ubuntu-latest] + node-version: [14.x] + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout code repository + uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.ref }} + # - name: Setup pnpm + # uses: pnpm/action-setup@v2.2.2 + # with: + # version: 7.1.0 + # run_install: true + # - name: Cache pnpm modules + # uses: actions/cache@v3 + # env: + # cache-name: cache-pnpm-modules + # with: + # path: ~/.pnpm-store + # key: ${{ matrix.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} + # restore-keys: | + # ${{ matrix.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}- + # - name: Use Node.js ${{ matrix.node-version }} + # uses: actions/setup-node@v3 + # with: + # node-version: ${{ matrix.node-version }} + # - name: Install pnpm modules + # run: pnpm install + + - name: Run install + uses: borales/actions-yarn@v4 + with: + cmd: install # will run `yarn install` command + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed + + - name: Run build + uses: borales/actions-yarn@v4 + with: + cmd: run ci # will run `yarn run ci` command + + # - name: Run lint:fix + # run: pnpm run lint:fix + # - name: Commit lint fixes if any + # run: | + # git config --global user.name github-actions[bot] + # git config --global user.email github-actions[bot]@users.noreply.github.com + # git add pnpm-lock.yaml + # git commit -m "Linting auto fix commit" -a --no-verify || true + # git push || true \ No newline at end of file From 151e94d0e640e055892fd4205a444dfca1cb5878 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Tue, 21 Feb 2023 12:14:15 +0200 Subject: [PATCH 02/75] fix: script fix --- .github/workflows/test.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8e279b6e6..eb21e3bf6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,19 +45,16 @@ jobs: # node-version: ${{ matrix.node-version }} # - name: Install pnpm modules # run: pnpm install - - name: Run install uses: borales/actions-yarn@v4 with: cmd: install # will run `yarn install` command env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed - - name: Run build uses: borales/actions-yarn@v4 with: cmd: run ci # will run `yarn run ci` command - # - name: Run lint:fix # run: pnpm run lint:fix # - name: Commit lint fixes if any From fa1c30010d7a45eac824aa25ac4273f581ff2768 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Tue, 21 Feb 2023 12:42:56 +0200 Subject: [PATCH 03/75] fix: script --- .github/workflows/test.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eb21e3bf6..ea3b4198b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,26 +25,6 @@ jobs: uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.ref }} - # - name: Setup pnpm - # uses: pnpm/action-setup@v2.2.2 - # with: - # version: 7.1.0 - # run_install: true - # - name: Cache pnpm modules - # uses: actions/cache@v3 - # env: - # cache-name: cache-pnpm-modules - # with: - # path: ~/.pnpm-store - # key: ${{ matrix.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} - # restore-keys: | - # ${{ matrix.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}- - # - name: Use Node.js ${{ matrix.node-version }} - # uses: actions/setup-node@v3 - # with: - # node-version: ${{ matrix.node-version }} - # - name: Install pnpm modules - # run: pnpm install - name: Run install uses: borales/actions-yarn@v4 with: From ce906feb0a85054f2001ac3c4286f713f714808b Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Tue, 21 Feb 2023 12:58:21 +0200 Subject: [PATCH 04/75] fix: spaces --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea3b4198b..abb0f70a1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,20 +16,20 @@ jobs: run-linters: strategy: matrix: - os: [ubuntu-latest] - node-version: [14.x] + os: [ubuntu-latest] + node-version: [14.x] runs-on: ${{ matrix.os }} steps: - name: Checkout code repository uses: actions/checkout@v3 with: - ref: ${{ github.event.pull_request.head.ref }} + ref: ${{ github.event.pull_request.head.ref }} - name: Run install uses: borales/actions-yarn@v4 with: cmd: install # will run `yarn install` command - env: + env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed - name: Run build uses: borales/actions-yarn@v4 @@ -43,4 +43,4 @@ jobs: # git config --global user.email github-actions[bot]@users.noreply.github.com # git add pnpm-lock.yaml # git commit -m "Linting auto fix commit" -a --no-verify || true - # git push || true \ No newline at end of file + # git push || true From 9afb03413e0b26b2a95113307f83525cdef6b3b7 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Tue, 21 Feb 2023 13:04:16 +0200 Subject: [PATCH 05/75] feat: check out fix --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index abb0f70a1..af20462ff 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: - name: Checkout code repository uses: actions/checkout@v3 with: - ref: ${{ github.event.pull_request.head.ref }} + fetch-depth: 0 - name: Run install uses: borales/actions-yarn@v4 with: From 436e5fe167d0a28f82e2d9d3ac109ff8ff84a52e Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Tue, 21 Feb 2023 13:22:50 +0200 Subject: [PATCH 06/75] feat: compiance check added --- .github/workflows/build.yml | 37 +++++++++++++++++++++++++ .github/workflows/compliance.yaml | 44 +++++++++++++++++++++++++++++ .github/workflows/test.yml | 46 ------------------------------- 3 files changed, 81 insertions(+), 46 deletions(-) create mode 100644 .github/workflows/build.yml create mode 100644 .github/workflows/compliance.yaml delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..8f9185688 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,37 @@ +name: Builds repo + +on: + # Trigger the workflow on push or pull request, + # but only for the main branch + push: + branches: + - master + # - feat/switch-to-github-actions + pull_request: + branches: + - master + +jobs: + run-builds: + strategy: + matrix: + os: [ubuntu-latest] + node-version: [14.x] # TODO: run for all versions + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout code repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 # will fetch all history + - name: Run install + uses: borales/actions-yarn@v4 + with: + cmd: install # will run `yarn install` command + # env: + # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed + - name: Run build + uses: borales/actions-yarn@v4 + with: + cmd: run ci # will run `yarn run ci` command + diff --git a/.github/workflows/compliance.yaml b/.github/workflows/compliance.yaml new file mode 100644 index 000000000..fe9162bfb --- /dev/null +++ b/.github/workflows/compliance.yaml @@ -0,0 +1,44 @@ +name: REUSE Compliance Check + +on: + # Trigger the workflow on push or pull request, + # but only for the main branch + push: + branches: + - master + - feat/switch-to-github-actions + pull_request: + branches: + - master + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: REUSE Compliance Check + uses: fsfe/reuse-action@v1 + with: + args: --include-submodules lint + # run-builds: + # strategy: + # matrix: + # os: [ubuntu-latest] + # node-version: [14.x] # TODO: run for all versions + # runs-on: ${{ matrix.os }} + + # steps: + # - name: Checkout code repository + # uses: actions/checkout@v3 + # with: + # fetch-depth: 0 # will fetch all history + # - name: Run install + # uses: borales/actions-yarn@v4 + # with: + # cmd: install # will run `yarn install` command + # # env: + # # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed + # - name: Run build + # uses: borales/actions-yarn@v4 + # with: + # cmd: run ci # will run `yarn run ci` command \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index af20462ff..000000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Lint without auto fix - -on: - # Trigger the workflow on push or pull request, - # but only for the main branch - push: - branches: - - master - - feat/switch-to-github-actions - pull_request: - branches: - - master - - feat/switch-to-github-actions - -jobs: - run-linters: - strategy: - matrix: - os: [ubuntu-latest] - node-version: [14.x] - runs-on: ${{ matrix.os }} - - steps: - - name: Checkout code repository - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Run install - uses: borales/actions-yarn@v4 - with: - cmd: install # will run `yarn install` command - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed - - name: Run build - uses: borales/actions-yarn@v4 - with: - cmd: run ci # will run `yarn run ci` command - # - name: Run lint:fix - # run: pnpm run lint:fix - # - name: Commit lint fixes if any - # run: | - # git config --global user.name github-actions[bot] - # git config --global user.email github-actions[bot]@users.noreply.github.com - # git add pnpm-lock.yaml - # git commit -m "Linting auto fix commit" -a --no-verify || true - # git push || true From 4c1ec74c0b40864da86bdc775a2c92bfe7375174 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 22 Feb 2023 09:34:51 +0200 Subject: [PATCH 07/75] feat: version test --- packages/fe/test/api-spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/fe/test/api-spec.ts b/packages/fe/test/api-spec.ts index 962e4b2cd..7be8a760b 100644 --- a/packages/fe/test/api-spec.ts +++ b/packages/fe/test/api-spec.ts @@ -3,6 +3,7 @@ import { expect } from "chai"; import { AnnotationIssue, ANNOTATION_ISSUE_TYPE } from "../src/types"; import { isAnnotationIssue, defaultValidators } from "../src/api"; +// comment just for test describe("fe api", () => { it("is AnnotationIssue", () => { const result = isAnnotationIssue({ From b0999500e21419e1e5a7335f92746281fac116ab Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 22 Feb 2023 14:44:35 +0200 Subject: [PATCH 08/75] feat: build script change --- .github/workflows/build.yml | 48 +++++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8f9185688..2f82a1a84 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ on: - master jobs: - run-builds: + build: strategy: matrix: os: [ubuntu-latest] @@ -34,4 +34,48 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: run ci # will run `yarn run ci` command - + # + - name: Upload vsix artifact + uses: actions/upload-artifact@v3 + with: + name: vscode-extension-file + path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix + retention-days: 5 + + gh-delpoy: + strategy: + matrix: + os: [ubuntu-latest] + node-version: [14.x] # TODO: run for all versions + runs-on: ${{ matrix.os }} + needs: build + steps: + - name: Setup Go 1.18 + uses: actions/setup-go@v3 + with: + go-version: '^1.18' + run: go version + #- name: Scripts + # uses: alinz/script.go@main + # with: + # workspace: ${{ github.workspace }} # <- this is important + # paths: .github/workflows/one,.github/workflows/two #<- the path to your go scripts + + run: md ./artifacts + - name: Download artifact + uses: actions/download-artifact@v3 + with: + name: vscode-extension-file + path: ./artifacts + run: ls -la + + - name: "Publish Release on GitHub" +#${{ secrets.GITHUB_TOKEN }} +# How to obtain new version? +# CIRCLE_PROJECT_REPONAME=ui5-language-assistant +# CIRCLE_PROJECT_USERNAME=SAP + + # run: echo 'export GOPATH=~/go' >> $BASH_ENV + # go get github.com/tcnksm/ghr + # VERSION=${CIRCLE_TAG} + # ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -replace ${VERSION} ./artifacts/ \ No newline at end of file From f91947081ef62385bd4d9407902fdf2e4a018f44 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 22 Feb 2023 14:47:43 +0200 Subject: [PATCH 09/75] fix: syntax --- .github/workflows/build.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f82a1a84..318230d2a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,10 +38,9 @@ jobs: - name: Upload vsix artifact uses: actions/upload-artifact@v3 with: - name: vscode-extension-file - path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix - retention-days: 5 - + name: vscode-extension-file + path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix + retention-days: 5 gh-delpoy: strategy: matrix: @@ -60,7 +59,6 @@ jobs: # with: # workspace: ${{ github.workspace }} # <- this is important # paths: .github/workflows/one,.github/workflows/two #<- the path to your go scripts - run: md ./artifacts - name: Download artifact uses: actions/download-artifact@v3 @@ -68,13 +66,11 @@ jobs: name: vscode-extension-file path: ./artifacts run: ls -la - - name: "Publish Release on GitHub" #${{ secrets.GITHUB_TOKEN }} # How to obtain new version? # CIRCLE_PROJECT_REPONAME=ui5-language-assistant # CIRCLE_PROJECT_USERNAME=SAP - # run: echo 'export GOPATH=~/go' >> $BASH_ENV # go get github.com/tcnksm/ghr # VERSION=${CIRCLE_TAG} From e919f597e7ba604c2bff4e86491131344068c9c5 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 22 Feb 2023 14:55:52 +0200 Subject: [PATCH 10/75] fix: syntax --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 318230d2a..1d9c55ec4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,8 +40,7 @@ jobs: with: name: vscode-extension-file path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix - retention-days: 5 - gh-delpoy: + gh-delpoy: strategy: matrix: os: [ubuntu-latest] From 904984d6d46886acc6037108d5e0e76a3127f6fb Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 22 Feb 2023 14:58:29 +0200 Subject: [PATCH 11/75] fix: syntax --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d9c55ec4..96f24c0ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,9 +49,9 @@ jobs: needs: build steps: - name: Setup Go 1.18 - uses: actions/setup-go@v3 - with: - go-version: '^1.18' + uses: actions/setup-go@v3 + with: + go-version: '^1.18' run: go version #- name: Scripts # uses: alinz/script.go@main From 8c706777e78bd1912fa498c2d8cc1ac463cbd4b5 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 22 Feb 2023 15:02:54 +0200 Subject: [PATCH 12/75] fix: script fix --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 96f24c0ef..1cd9f2c96 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,6 +52,7 @@ jobs: uses: actions/setup-go@v3 with: go-version: '^1.18' + - name: 'prepare to deploy' run: go version #- name: Scripts # uses: alinz/script.go@main @@ -64,6 +65,7 @@ jobs: with: name: vscode-extension-file path: ./artifacts + - name: 'check artifacts' run: ls -la - name: "Publish Release on GitHub" #${{ secrets.GITHUB_TOKEN }} From f2aefa5f116c824ed0b726aa1b1997132835559a Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 22 Feb 2023 15:04:36 +0200 Subject: [PATCH 13/75] fix: syntax --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1cd9f2c96..c25f94733 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,7 +67,7 @@ jobs: path: ./artifacts - name: 'check artifacts' run: ls -la - - name: "Publish Release on GitHub" + # - name: "Publish Release on GitHub" #${{ secrets.GITHUB_TOKEN }} # How to obtain new version? # CIRCLE_PROJECT_REPONAME=ui5-language-assistant From 34013c5c29b4adc1be5435f7fb282df875b272e3 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 22 Feb 2023 15:06:32 +0200 Subject: [PATCH 14/75] fix: syntax --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c25f94733..3e27bcf3f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,6 +59,7 @@ jobs: # with: # workspace: ${{ github.workspace }} # <- this is important # paths: .github/workflows/one,.github/workflows/two #<- the path to your go scripts + - name: 'make folder' run: md ./artifacts - name: Download artifact uses: actions/download-artifact@v3 From 3bc2bd309b00b80714e06add098c50b79ebf2f1e Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Thu, 23 Feb 2023 11:46:40 +0200 Subject: [PATCH 15/75] fix: mkdir fix --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3e27bcf3f..beade0347 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,7 +60,7 @@ jobs: # workspace: ${{ github.workspace }} # <- this is important # paths: .github/workflows/one,.github/workflows/two #<- the path to your go scripts - name: 'make folder' - run: md ./artifacts + run: mkdir ./artifacts - name: Download artifact uses: actions/download-artifact@v3 with: From a42efb8ff8a33d3e4087b0907a53c6d0db5ded4b Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Thu, 23 Feb 2023 14:46:28 +0200 Subject: [PATCH 16/75] feat: manual script --- .github/workflows/release.yaml | 128 +++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 000000000..5917e5c28 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,128 @@ +name: Release workflow + +on: + # Trigger the workflow only manually + workflow_dispatch: + inputs: + version: + description: 'Action' + required: true + type: choice + options: + - version bump + - release +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest] + node-version: [14.x] # TODO: run for all versions + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout code repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 # will fetch all history + - name: Run install + uses: borales/actions-yarn@v4 + with: + cmd: install # will run `yarn install` command + # env: + # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed + - name: Run build + uses: borales/actions-yarn@v4 + with: + cmd: run build:quick # will run `yarn run ci` command + # + - name: Upload vsix artifact + uses: actions/upload-artifact@v3 + with: + name: vscode-extension-file + path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix + # version: + # # Run version job only on pushes to the main branch. The job depends on completion of the build job. + # if: github.repository == 'vadson71/ui5-language-assistant-vk' && github.event_name == 'push' && github.ref == 'refs/heads/main' + # runs-on: ubuntu-latest + # needs: build + # outputs: + # changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output + # steps: + # - name: Checkout code repository + # uses: actions/checkout@v3 + # with: + # fetch-depth: 0 + # token: ${{ secrets.ACCESS_PAT }} + # - name: Setup pnpm + # uses: pnpm/action-setup@v2.2.2 + # with: + # version: 7.1.0 + # run_install: true + # - name: Cache pnpm modules + # uses: actions/cache@v3 + # env: + # cache-name: cache-pnpm-modules + # with: + # path: ~/.pnpm-store + # key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }} + # restore-keys: | + # ${{ runner.os }}-build-${{ env.cache-name }}- + # - name: Use Node.js 14.x + # uses: actions/setup-node@v3 + # with: + # node-version: 14.x + # - name: Install pnpm modules + # run: pnpm install + # - name: Apply changesets + # id: changesetVersion + # run: | + # echo ::set-output name=changes::$(pnpm ci:version 2>&1 | grep -q 'No unreleased changesets found' && echo 'false' || echo 'true') + # git status + # - name: Commit and push changes + # if: steps.changesetVersion.outputs.changes == 'true' + # run: | + # git config user.name github-actions + # git config user.email github-actions@github.com + # git status + # git add -A + # git status + # git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" + # git log --pretty=oneline | head -n 10 + # git push + # gh-delpoy: + # strategy: + # matrix: + # os: [ubuntu-latest] + # node-version: [14.x] # TODO: run for all versions + # runs-on: ${{ matrix.os }} + # needs: build + # steps: + # - name: Setup Go 1.18 + # uses: actions/setup-go@v3 + # with: + # go-version: '^1.18' + # - name: 'prepare to deploy' + # run: go version + # #- name: Scripts + # # uses: alinz/script.go@main + # # with: + # # workspace: ${{ github.workspace }} # <- this is important + # # paths: .github/workflows/one,.github/workflows/two #<- the path to your go scripts + # - name: 'make folder' + # run: mkdir ./artifacts + # - name: Download artifact + # uses: actions/download-artifact@v3 + # with: + # name: vscode-extension-file + # path: ./artifacts + # - name: 'check artifacts' + # run: ls -la + # - name: "Publish Release on GitHub" +#${{ secrets.GITHUB_TOKEN }} +# How to obtain new version? +# CIRCLE_PROJECT_REPONAME=ui5-language-assistant +# CIRCLE_PROJECT_USERNAME=SAP + # run: echo 'export GOPATH=~/go' >> $BASH_ENV + # go get github.com/tcnksm/ghr + # VERSION=${CIRCLE_TAG} + # ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -replace ${VERSION} ./artifacts/ \ No newline at end of file From 272889214e5b601a7714c581233f64e5f08116f5 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Thu, 23 Feb 2023 14:51:16 +0200 Subject: [PATCH 17/75] fix: no inputs --- .github/workflows/release.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5917e5c28..e4c93d7ea 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,14 +3,14 @@ name: Release workflow on: # Trigger the workflow only manually workflow_dispatch: - inputs: - version: - description: 'Action' - required: true - type: choice - options: - - version bump - - release + # inputs: + # version: + # description: 'Action' + # required: true + # type: choice + # options: + # - version bump + # - release jobs: build: strategy: From 72fab70a9db4a37283adf10ed6605bb757982cd2 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 11:19:47 +0200 Subject: [PATCH 18/75] feat: debug --- .github/workflows/release_manual.yaml | 105 ++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 .github/workflows/release_manual.yaml diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml new file mode 100644 index 000000000..ffd80c44b --- /dev/null +++ b/.github/workflows/release_manual.yaml @@ -0,0 +1,105 @@ +name: Release workflow + +on: + # For debugging + on: + push: + branches: [feat/switch-to-github-actions] + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest] + node-version: [14.x] # TODO: run for all versions + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout code repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 # will fetch all history + - name: Run install + uses: borales/actions-yarn@v4 + with: + cmd: install # will run `yarn install` command + # env: + # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed + - name: Run build + uses: borales/actions-yarn@v4 + with: + cmd: run build:quick # will run `yarn run ci` command + # + - name: Upload vsix artifact + uses: actions/upload-artifact@v3 + with: + name: vscode-extension-file + path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix + if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` + + complience: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: REUSE Compliance Check + uses: fsfe/reuse-action@v1 + with: + args: --include-submodules lint + + version: + # Run version job only on pushes to the main branch. The job depends on completion of the build job. + # if: inputs.job_name == 'version' && github.ref == 'refs/heads/master' + runs-on: ubuntu-latest + # needs: + # build + # complience + outputs: + changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output + steps: + - name: Checkout code repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 + # token: ${{ secrets.ACCESS_PAT }} ???? doesn't work in fork + - name: Setup node + uses: actions/setup-node@v3 + with: + node-version: 14 + # TODO: cache node modules + - name: Run install + uses: borales/actions-yarn@v4 + with: + cmd: install # will run `yarn install` command + + - name: Test + run: npm run ci:version 2>&1 + + - name: Apply changesets + id: changesetVersion + run: | + echo ::set-output name=changes::$(npm run ci:version 2>&1 | grep -q 'No unreleased changesets found' && echo 'false' || echo 'true') + git status + - name: Changeset output + run: echo ${{steps.changesetVersion.outputs.changes}} + + - name: get-npm-version + id: package-version + uses: martinbeentjes/npm-get-version-action@main + with: + path: ./packages/vscode-ui5-language-assistant + + - name: Commit and push changes + if: steps.changesetVersion.outputs.changes == 'true' + run: echo ${{ steps.package-version.outputs.current-version}} + run: | + git config user.name github-actions + git config user.email github-actions@github.com + git status + git add -A + git status + git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" + git log --pretty=oneline | head -n 10 + git tag -a ${{ steps.package-version.outputs.current-version}} -m "${{ steps.package-version.outputs.current-version}} release" + git push +# automatic_release_tag: ${{ steps.package-version.outputs.current-version}} + \ No newline at end of file From 86c58ae3e3139d7720119261fd647a2ba137fa89 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 11:44:12 +0200 Subject: [PATCH 19/75] Update release_manual.yaml bug fix --- .github/workflows/release_manual.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index ffd80c44b..d5df0a27d 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -1,10 +1,9 @@ name: Release workflow +# For debugging on: - # For debugging - on: - push: - branches: [feat/switch-to-github-actions] + push: + branches: [feat/switch-to-github-actions] jobs: build: @@ -102,4 +101,4 @@ jobs: git tag -a ${{ steps.package-version.outputs.current-version}} -m "${{ steps.package-version.outputs.current-version}} release" git push # automatic_release_tag: ${{ steps.package-version.outputs.current-version}} - \ No newline at end of file + From 68ff44963f759b0f4ab7d76eb0cbf3bd56a43636 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 11:47:00 +0200 Subject: [PATCH 20/75] Update release_manual.yaml bug fix --- .github/workflows/release_manual.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index d5df0a27d..74087d477 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -89,8 +89,8 @@ jobs: - name: Commit and push changes if: steps.changesetVersion.outputs.changes == 'true' - run: echo ${{ steps.package-version.outputs.current-version}} - run: | + run: | + echo ${{ steps.package-version.outputs.current-version}} git config user.name github-actions git config user.email github-actions@github.com git status From c93efa53a4bf12f9c9a0a9b28c8fe47335d3d279 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 11:51:57 +0200 Subject: [PATCH 21/75] fix: pkg.json --- .github/workflows/release_manual.yaml | 9 ++++----- package.json | 4 +++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index ffd80c44b..5fe60ad7e 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -1,10 +1,9 @@ name: Release workflow +# For debugging on: - # For debugging - on: - push: - branches: [feat/switch-to-github-actions] + push: + branches: [feat/switch-to-github-actions] jobs: build: @@ -90,8 +89,8 @@ jobs: - name: Commit and push changes if: steps.changesetVersion.outputs.changes == 'true' - run: echo ${{ steps.package-version.outputs.current-version}} run: | + echo ${{ steps.package-version.outputs.current-version}} git config user.name github-actions git config user.email github-actions@github.com git status diff --git a/package.json b/package.json index f12eeed85..bd9b26fe6 100644 --- a/package.json +++ b/package.json @@ -31,9 +31,11 @@ "legal:copy": "lerna exec \"shx cp -r ../../.reuse .reuse && shx cp -r ../../LICENSES LICENSES\"", "prepare": "node ./.husky/skip.js || husky install", "hooks:pre-commit": "lint-staged", - "hooks:commit-msg": "commitlint -e" + "hooks:commit-msg": "commitlint -e", + "ci:version": "changeset version" }, "devDependencies": { + "@changesets/cli": "2.24.1", "@commitlint/cli": "11.0.0", "@commitlint/config-conventional": "11.0.0", "@types/chai": "4.2.14", From 14cbab877adcafdf4d6f3f552a019d0d53f1527b Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 12:01:35 +0200 Subject: [PATCH 22/75] feat: test version action --- .changeset/README.md | 8 ++++++++ .changeset/config.json | 11 +++++++++++ .changeset/tidy-horses-deny.md | 6 ++++++ packages/fe/api.d.ts | 1 + 4 files changed, 26 insertions(+) create mode 100644 .changeset/README.md create mode 100644 .changeset/config.json create mode 100644 .changeset/tidy-horses-deny.md diff --git a/.changeset/README.md b/.changeset/README.md new file mode 100644 index 000000000..e5b6d8d6a --- /dev/null +++ b/.changeset/README.md @@ -0,0 +1,8 @@ +# Changesets + +Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works +with multi-package repos, or single-package repos to help you version and publish your code. You can +find the full documentation for it [in our repository](https://github.com/changesets/changesets) + +We have a quick list of common questions to get you started engaging with this project in +[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) diff --git a/.changeset/config.json b/.changeset/config.json new file mode 100644 index 000000000..d9d573492 --- /dev/null +++ b/.changeset/config.json @@ -0,0 +1,11 @@ +{ + "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json", + "changelog": "@changesets/cli/changelog", + "commit": false, + "fixed": [], + "linked": [], + "access": "public", + "baseBranch": "master", + "updateInternalDependencies": "patch", + "ignore": [] +} diff --git a/.changeset/tidy-horses-deny.md b/.changeset/tidy-horses-deny.md new file mode 100644 index 000000000..9d4f936a9 --- /dev/null +++ b/.changeset/tidy-horses-deny.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +Comment for change 1 diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index af9af75e5..69c42df50 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,3 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; +// test change 1 From e864ee2c1a01b25b8dcb2042c01e5f8c1ae2c004 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 12:27:17 +0200 Subject: [PATCH 23/75] Update release_manual.yaml --- .github/workflows/release_manual.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index 74087d477..f4ae75e3e 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -70,9 +70,6 @@ jobs: with: cmd: install # will run `yarn install` command - - name: Test - run: npm run ci:version 2>&1 - - name: Apply changesets id: changesetVersion run: | From 251ea7da3b86bcc0887e4ca676ea5f3964f7984a Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 24 Feb 2023 10:28:15 +0000 Subject: [PATCH 24/75] chore: apply latest changesets --- .changeset/tidy-horses-deny.md | 6 - packages/fe/CHANGELOG.md | 6 + packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 + packages/language-server/package.json | 4 +- .../package.json | 2 +- .../CHANGELOG.md | 7 + .../package.json | 4 +- yarn.lock | 594 +++++++++++++++++- 9 files changed, 599 insertions(+), 33 deletions(-) delete mode 100644 .changeset/tidy-horses-deny.md diff --git a/.changeset/tidy-horses-deny.md b/.changeset/tidy-horses-deny.md deleted file mode 100644 index 9d4f936a9..000000000 --- a/.changeset/tidy-horses-deny.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -Comment for change 1 diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index 3abc8ae61..034cca233 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.5 + +### Patch Changes + +- 14cbab8: Comment for change 1 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/fe/package.json b/packages/fe/package.json index d315519bd..19e53d300 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.4", + "version": "4.0.5", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index 0b47aed04..d8f9ee4f1 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.5 + +### Patch Changes + +- Updated dependencies [14cbab8] + - @ui5-language-assistant/fe@4.0.5 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/language-server/package.json b/packages/language-server/package.json index f09d0c505..4ab64d526 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.4", + "version": "4.0.5", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.4", + "@ui5-language-assistant/fe": "4.0.5", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index fec10e390..772d0ff1f 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.4" + "vscode-ui5-language-assistant": "4.0.5" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index 99ab327ef..f2a4729e7 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.5 + +### Patch Changes + +- 14cbab8: Comment for change 1 + - @ui5-language-assistant/language-server@4.0.5 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index fb6f6e3ba..bd066c30e 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.4", + "version": "4.0.5", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.4", + "@ui5-language-assistant/language-server": "4.0.5", "vscode-languageclient": "8.0.2" }, "devDependencies": { diff --git a/yarn.lock b/yarn.lock index dbb681c03..7a464746f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -165,6 +165,13 @@ resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.20.5.tgz" integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA== +"@babel/runtime@^7.10.4", "@babel/runtime@^7.20.1", "@babel/runtime@^7.5.5": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673" + integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw== + dependencies: + regenerator-runtime "^0.13.11" + "@babel/runtime@^7.11.2": version "7.20.6" resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.6.tgz" @@ -213,6 +220,218 @@ "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" +"@changesets/apply-release-plan@^6.0.3": + version "6.1.3" + resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-6.1.3.tgz#3bcc0bd57ba00d50d20df7d0141f1a9b2134eaf7" + integrity sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/config" "^2.3.0" + "@changesets/get-version-range-type" "^0.3.2" + "@changesets/git" "^2.0.0" + "@changesets/types" "^5.2.1" + "@manypkg/get-packages" "^1.1.3" + detect-indent "^6.0.0" + fs-extra "^7.0.1" + lodash.startcase "^4.4.0" + outdent "^0.5.0" + prettier "^2.7.1" + resolve-from "^5.0.0" + semver "^5.4.1" + +"@changesets/assemble-release-plan@^5.2.0", "@changesets/assemble-release-plan@^5.2.3": + version "5.2.3" + resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-5.2.3.tgz#5ce6191c6e193d40b566a7b0e01690cfb106f4db" + integrity sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/errors" "^0.1.4" + "@changesets/get-dependents-graph" "^1.3.5" + "@changesets/types" "^5.2.1" + "@manypkg/get-packages" "^1.1.3" + semver "^5.4.1" + +"@changesets/changelog-git@^0.1.12": + version "0.1.14" + resolved "https://registry.yarnpkg.com/@changesets/changelog-git/-/changelog-git-0.1.14.tgz#852caa7727dcf91497c131d05bc2cd6248532ada" + integrity sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA== + dependencies: + "@changesets/types" "^5.2.1" + +"@changesets/cli@2.24.1": + version "2.24.1" + resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.24.1.tgz#cb4c13c7712a3cb62fa9199cdda04567faf3d3b2" + integrity sha512-7Lz1inqGQjBrXgnXlENtzQ7EmO/9c+09d9oi8XoK4ARqlJe8GpafjqKRobcjcA/TTI7Fn2+cke4CrXFZfVF8Rw== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/apply-release-plan" "^6.0.3" + "@changesets/assemble-release-plan" "^5.2.0" + "@changesets/changelog-git" "^0.1.12" + "@changesets/config" "^2.1.0" + "@changesets/errors" "^0.1.4" + "@changesets/get-dependents-graph" "^1.3.3" + "@changesets/get-release-plan" "^3.0.12" + "@changesets/git" "^1.4.1" + "@changesets/logger" "^0.0.5" + "@changesets/pre" "^1.0.12" + "@changesets/read" "^0.5.7" + "@changesets/types" "^5.1.0" + "@changesets/write" "^0.1.9" + "@manypkg/get-packages" "^1.1.3" + "@types/is-ci" "^3.0.0" + "@types/semver" "^6.0.0" + ansi-colors "^4.1.3" + chalk "^2.1.0" + enquirer "^2.3.0" + external-editor "^3.1.0" + fs-extra "^7.0.1" + human-id "^1.0.2" + is-ci "^3.0.1" + meow "^6.0.0" + outdent "^0.5.0" + p-limit "^2.2.0" + preferred-pm "^3.0.0" + resolve-from "^5.0.0" + semver "^5.4.1" + spawndamnit "^2.0.0" + term-size "^2.1.0" + tty-table "^4.1.5" + +"@changesets/config@^2.1.0", "@changesets/config@^2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@changesets/config/-/config-2.3.0.tgz#bff074d6492fa772cee139f9a04efa4cd56445bb" + integrity sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ== + dependencies: + "@changesets/errors" "^0.1.4" + "@changesets/get-dependents-graph" "^1.3.5" + "@changesets/logger" "^0.0.5" + "@changesets/types" "^5.2.1" + "@manypkg/get-packages" "^1.1.3" + fs-extra "^7.0.1" + micromatch "^4.0.2" + +"@changesets/errors@^0.1.4": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@changesets/errors/-/errors-0.1.4.tgz#f79851746c43679a66b383fdff4c012f480f480d" + integrity sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q== + dependencies: + extendable-error "^0.1.5" + +"@changesets/get-dependents-graph@^1.3.3", "@changesets/get-dependents-graph@^1.3.5": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@changesets/get-dependents-graph/-/get-dependents-graph-1.3.5.tgz#f94c6672d2f9a87aa35512eea74550585ba41c21" + integrity sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA== + dependencies: + "@changesets/types" "^5.2.1" + "@manypkg/get-packages" "^1.1.3" + chalk "^2.1.0" + fs-extra "^7.0.1" + semver "^5.4.1" + +"@changesets/get-release-plan@^3.0.12": + version "3.0.16" + resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.16.tgz#5d9cfc4ffda02c496ef0fde407210de8e3a0fb19" + integrity sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/assemble-release-plan" "^5.2.3" + "@changesets/config" "^2.3.0" + "@changesets/pre" "^1.0.14" + "@changesets/read" "^0.5.9" + "@changesets/types" "^5.2.1" + "@manypkg/get-packages" "^1.1.3" + +"@changesets/get-version-range-type@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@changesets/get-version-range-type/-/get-version-range-type-0.3.2.tgz#8131a99035edd11aa7a44c341cbb05e668618c67" + integrity sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg== + +"@changesets/git@^1.4.1": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@changesets/git/-/git-1.5.0.tgz#71bbcf11f3b346d56eeaf3d3201e6dc3e270ea5a" + integrity sha512-Xo8AT2G7rQJSwV87c8PwMm6BAc98BnufRMsML7m7Iw8Or18WFvFmxqG5aOL5PBvhgq9KrKvaeIBNIymracSuHg== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/errors" "^0.1.4" + "@changesets/types" "^5.2.0" + "@manypkg/get-packages" "^1.1.3" + is-subdir "^1.1.1" + spawndamnit "^2.0.0" + +"@changesets/git@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@changesets/git/-/git-2.0.0.tgz#8de57649baf13a86eb669a25fa51bcad5cea517f" + integrity sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/errors" "^0.1.4" + "@changesets/types" "^5.2.1" + "@manypkg/get-packages" "^1.1.3" + is-subdir "^1.1.1" + micromatch "^4.0.2" + spawndamnit "^2.0.0" + +"@changesets/logger@^0.0.5": + version "0.0.5" + resolved "https://registry.yarnpkg.com/@changesets/logger/-/logger-0.0.5.tgz#68305dd5a643e336be16a2369cb17cdd8ed37d4c" + integrity sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw== + dependencies: + chalk "^2.1.0" + +"@changesets/parse@^0.3.16": + version "0.3.16" + resolved "https://registry.yarnpkg.com/@changesets/parse/-/parse-0.3.16.tgz#f8337b70aeb476dc81745ab3294022909bc4a84a" + integrity sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg== + dependencies: + "@changesets/types" "^5.2.1" + js-yaml "^3.13.1" + +"@changesets/pre@^1.0.12", "@changesets/pre@^1.0.14": + version "1.0.14" + resolved "https://registry.yarnpkg.com/@changesets/pre/-/pre-1.0.14.tgz#9df73999a4d15804da7381358d77bb37b00ddf0f" + integrity sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/errors" "^0.1.4" + "@changesets/types" "^5.2.1" + "@manypkg/get-packages" "^1.1.3" + fs-extra "^7.0.1" + +"@changesets/read@^0.5.7", "@changesets/read@^0.5.9": + version "0.5.9" + resolved "https://registry.yarnpkg.com/@changesets/read/-/read-0.5.9.tgz#a1b63a82b8e9409738d7a0f9cc39b6d7c28cbab0" + integrity sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ== + dependencies: + "@babel/runtime" "^7.20.1" + "@changesets/git" "^2.0.0" + "@changesets/logger" "^0.0.5" + "@changesets/parse" "^0.3.16" + "@changesets/types" "^5.2.1" + chalk "^2.1.0" + fs-extra "^7.0.1" + p-filter "^2.1.0" + +"@changesets/types@^4.0.1": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@changesets/types/-/types-4.1.0.tgz#fb8f7ca2324fd54954824e864f9a61a82cb78fe0" + integrity sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw== + +"@changesets/types@^5.1.0", "@changesets/types@^5.2.0", "@changesets/types@^5.2.1": + version "5.2.1" + resolved "https://registry.yarnpkg.com/@changesets/types/-/types-5.2.1.tgz#a228c48004aa8a93bce4be2d1d31527ef3bf21f6" + integrity sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg== + +"@changesets/write@^0.1.9": + version "0.1.9" + resolved "https://registry.yarnpkg.com/@changesets/write/-/write-0.1.9.tgz#ac9315d5985f83b251820b8a046155c14a9d21f4" + integrity sha512-E90ZrsrfJVOOQaP3Mm5Xd7uDwBAqq3z5paVEavTHKA8wxi7NAL8CmjgbGxSFuiP7ubnJA2BuHlrdE4z86voGOg== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/types" "^5.1.0" + fs-extra "^7.0.1" + human-id "^1.0.2" + prettier "^1.19.1" + "@colors/colors@1.5.0": version "1.5.0" resolved "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz" @@ -1231,6 +1450,28 @@ npmlog "^6.0.2" write-file-atomic "^4.0.1" +"@manypkg/find-root@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@manypkg/find-root/-/find-root-1.1.0.tgz#a62d8ed1cd7e7d4c11d9d52a8397460b5d4ad29f" + integrity sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA== + dependencies: + "@babel/runtime" "^7.5.5" + "@types/node" "^12.7.1" + find-up "^4.1.0" + fs-extra "^8.1.0" + +"@manypkg/get-packages@^1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@manypkg/get-packages/-/get-packages-1.1.3.tgz#e184db9bba792fa4693de4658cfb1463ac2c9c47" + integrity sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A== + dependencies: + "@babel/runtime" "^7.5.5" + "@changesets/types" "^4.0.1" + "@manypkg/find-root" "^1.1.0" + fs-extra "^8.1.0" + globby "^11.0.0" + read-yaml-file "^1.1.0" + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" @@ -1702,6 +1943,13 @@ "@types/minimatch" "*" "@types/node" "*" +"@types/is-ci@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/is-ci/-/is-ci-3.0.0.tgz#7e8910af6857601315592436f030aaa3ed9783c3" + integrity sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ== + dependencies: + ci-info "^3.1.0" + "@types/js-yaml@4.0.5": version "4.0.5" resolved "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.5.tgz" @@ -1767,6 +2015,11 @@ resolved "https://registry.npmjs.org/@types/node/-/node-18.11.17.tgz" integrity sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng== +"@types/node@^12.7.1": + version "12.20.55" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240" + integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== + "@types/node@^14.0.0": version "14.18.35" resolved "https://registry.npmjs.org/@types/node/-/node-14.18.35.tgz" @@ -1800,6 +2053,11 @@ resolved "https://registry.npmjs.org/@types/semver/-/semver-7.3.12.tgz" integrity sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A== +"@types/semver@^6.0.0": + version "6.2.3" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.2.3.tgz#5798ecf1bec94eaa64db39ee52808ec0693315aa" + integrity sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A== + "@types/sinon-chai@3.2.5": version "3.2.5" resolved "https://registry.npmjs.org/@types/sinon-chai/-/sinon-chai-3.2.5.tgz" @@ -2304,9 +2562,9 @@ ansi-colors@4.1.1: resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz" integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== -ansi-colors@^4.1.1: +ansi-colors@^4.1.1, ansi-colors@^4.1.3: version "4.1.3" - resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: @@ -2405,6 +2663,16 @@ array-union@^2.1.0: resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== +array.prototype.flat@^1.2.3: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" + integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + arrify@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" @@ -2513,6 +2781,13 @@ before-after-hook@^2.2.0: resolved "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz" integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== +better-path-resolve@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/better-path-resolve/-/better-path-resolve-1.0.0.tgz#13a35a1104cdd48a7b74bf8758f96a1ee613f99d" + integrity sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g== + dependencies: + is-windows "^1.0.0" + big-integer@^1.6.17: version "1.6.51" resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz" @@ -2594,6 +2869,13 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" +breakword@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/breakword/-/breakword-1.0.5.tgz#fd420a417f55016736b5b615161cae1c8f819810" + integrity sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg== + dependencies: + wcwidth "^1.0.1" + browser-stdout@1.3.1: version "1.3.1" resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz" @@ -2767,18 +3049,18 @@ chalk@4.1.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: +chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: version "2.4.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1: +chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" @@ -2863,6 +3145,11 @@ ci-info@^2.0.0: resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== +ci-info@^3.1.0, ci-info@^3.2.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" + integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== + clean-stack@^2.0.0: version "2.2.0" resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" @@ -3361,6 +3648,15 @@ create-require@^1.1.0: resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz" integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== +cross-spawn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A== + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + cross-spawn@^6.0.5: version "6.0.5" resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" @@ -3397,6 +3693,31 @@ css-what@^6.1.0: resolved "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz" integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== +csv-generate@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/csv-generate/-/csv-generate-3.4.3.tgz#bc42d943b45aea52afa896874291da4b9108ffff" + integrity sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw== + +csv-parse@^4.16.3: + version "4.16.3" + resolved "https://registry.yarnpkg.com/csv-parse/-/csv-parse-4.16.3.tgz#7ca624d517212ebc520a36873c3478fa66efbaf7" + integrity sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg== + +csv-stringify@^5.6.5: + version "5.6.5" + resolved "https://registry.yarnpkg.com/csv-stringify/-/csv-stringify-5.6.5.tgz#c6d74badda4b49a79bf4e72f91cce1e33b94de00" + integrity sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A== + +csv@^5.5.0: + version "5.5.3" + resolved "https://registry.yarnpkg.com/csv/-/csv-5.5.3.tgz#cd26c1e45eae00ce6a9b7b27dcb94955ec95207d" + integrity sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g== + dependencies: + csv-generate "^3.4.3" + csv-parse "^4.16.3" + csv-stringify "^5.6.5" + stream-transform "^2.1.3" + cz-conventional-changelog@3.3.0: version "3.3.0" resolved "https://registry.npmjs.org/cz-conventional-changelog/-/cz-conventional-changelog-3.3.0.tgz" @@ -3728,9 +4049,9 @@ enhanced-resolve@^5.10.0: graceful-fs "^4.2.4" tapable "^2.2.0" -enquirer@^2.3.5, enquirer@^2.3.6, enquirer@~2.3.6: +enquirer@^2.3.0, enquirer@^2.3.5, enquirer@^2.3.6, enquirer@~2.3.6: version "2.3.6" - resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== dependencies: ansi-colors "^4.1.1" @@ -3810,6 +4131,13 @@ es-module-lexer@^0.9.0: resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz" integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== +es-shim-unscopables@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" + integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== + dependencies: + has "^1.0.3" + es-to-primitive@^1.2.1: version "1.2.1" resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" @@ -4078,9 +4406,14 @@ extend@~3.0.2: resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== -external-editor@^3.0.3: +extendable-error@^0.1.5: + version "0.1.7" + resolved "https://registry.yarnpkg.com/extendable-error/-/extendable-error-0.1.7.tgz#60b9adf206264ac920058a7395685ae4670c2b96" + integrity sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg== + +external-editor@^3.0.3, external-editor@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== dependencies: chardet "^0.7.0" @@ -4252,6 +4585,14 @@ find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" +find-yarn-workspace-root2@1.2.16: + version "1.2.16" + resolved "https://registry.yarnpkg.com/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz#60287009dd2f324f59646bdb4b7610a6b301c2a9" + integrity sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA== + dependencies: + micromatch "^4.0.2" + pkg-dir "^4.2.0" + findit2@2.2.3: version "2.2.3" resolved "https://registry.npmjs.org/findit2/-/findit2-2.2.3.tgz" @@ -4387,6 +4728,15 @@ fs-extra@9.1.0, fs-extra@^9.0.0, fs-extra@^9.1.0: jsonfile "^6.0.1" universalify "^2.0.0" +fs-extra@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + fs-minipass@^2.0.0, fs-minipass@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz" @@ -4700,9 +5050,9 @@ globals@^12.1.0: dependencies: type-fest "^0.8.1" -globby@11.1.0, globby@^11.0.1, globby@^11.0.2, globby@^11.0.3: +globby@11.1.0, globby@^11.0.0, globby@^11.0.1, globby@^11.0.2, globby@^11.0.3: version "11.1.0" - resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== dependencies: array-union "^2.1.0" @@ -4719,11 +5069,16 @@ gopd@^1.0.1: dependencies: get-intrinsic "^1.1.3" -graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: version "4.2.10" resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== +grapheme-splitter@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + handlebars@^4.7.7: version "4.7.7" resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz" @@ -4901,6 +5256,11 @@ https-proxy-agent@5.0.1, https-proxy-agent@^5.0.0: agent-base "6" debug "4" +human-id@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/human-id/-/human-id-1.0.2.tgz#e654d4b2b0d8b07e45da9f6020d8af17ec0a5df3" + integrity sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw== + human-signals@^1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz" @@ -5138,6 +5498,13 @@ is-ci@^2.0.0: dependencies: ci-info "^2.0.0" +is-ci@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" + integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== + dependencies: + ci-info "^3.2.0" + is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0: version "2.11.0" resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz" @@ -5282,6 +5649,13 @@ is-string@^1.0.5, is-string@^1.0.7: dependencies: has-tostringtag "^1.0.0" +is-subdir@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-subdir/-/is-subdir-1.2.0.tgz#b791cd28fab5202e91a08280d51d9d7254fd20d4" + integrity sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw== + dependencies: + better-path-resolve "1.0.0" + is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.4" resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" @@ -5318,9 +5692,9 @@ is-weakref@^1.0.2: dependencies: call-bind "^1.0.2" -is-windows@^1.0.1, is-windows@^1.0.2: +is-windows@^1.0.0, is-windows@^1.0.1, is-windows@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== is-wsl@^2.2.0: @@ -5451,7 +5825,7 @@ js-yaml@4.1.0, js-yaml@^4.1.0: dependencies: argparse "^2.0.1" -js-yaml@^3.10.0, js-yaml@^3.13.1: +js-yaml@^3.10.0, js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.6.1: version "3.14.1" resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== @@ -5611,6 +5985,11 @@ klaw-sync@6.0.0: dependencies: graceful-fs "^4.1.11" +kleur@^4.1.4: + version "4.1.5" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" + integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== + kuler@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz" @@ -5756,6 +6135,16 @@ load-json-file@^6.2.0: strip-bom "^4.0.0" type-fest "^0.6.0" +load-yaml-file@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/load-yaml-file/-/load-yaml-file-0.2.0.tgz#af854edaf2bea89346c07549122753c07372f64d" + integrity sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw== + dependencies: + graceful-fs "^4.1.5" + js-yaml "^3.13.0" + pify "^4.0.1" + strip-bom "^3.0.0" + loader-runner@^4.2.0: version "4.3.0" resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz" @@ -5832,6 +6221,11 @@ lodash.mergewith@^4.6.2: resolved "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz" integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== +lodash.startcase@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" + integrity sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== + lodash.truncate@^4.4.2: version "4.4.2" resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz" @@ -5896,6 +6290,14 @@ longest@^2.0.1: resolved "https://registry.npmjs.org/longest/-/longest-2.0.1.tgz" integrity sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q== +lru-cache@^4.0.1: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" @@ -6031,6 +6433,23 @@ memorystream@^0.3.1: resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz" integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== +meow@^6.0.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/meow/-/meow-6.1.1.tgz#1ad64c4b76b2a24dfb2f635fddcadf320d251467" + integrity sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg== + dependencies: + "@types/minimist" "^1.2.0" + camelcase-keys "^6.2.2" + decamelize-keys "^1.1.0" + hard-rejection "^2.1.0" + minimist-options "^4.0.2" + normalize-package-data "^2.5.0" + read-pkg-up "^7.0.1" + redent "^3.0.0" + trim-newlines "^3.0.0" + type-fest "^0.13.1" + yargs-parser "^18.1.3" + meow@^8.0.0: version "8.1.2" resolved "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz" @@ -6131,9 +6550,9 @@ minimatch@^5.0.1: dependencies: brace-expansion "^2.0.1" -minimist-options@4.1.0: +minimist-options@4.1.0, minimist-options@^4.0.2: version "4.1.0" - resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== dependencies: arrify "^1.0.1" @@ -6219,6 +6638,11 @@ minizlib@^2.1.1, minizlib@^2.1.2: minipass "^3.0.0" yallist "^4.0.0" +mixme@^0.5.1: + version "0.5.5" + resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.5.5.tgz#bf8f67d8caf10fdb49fd23198fd1fa6d8e406627" + integrity sha512-/6IupbRx32s7jjEwHcycXikJwFD5UujbVNuJFkeKLYje+92OvtuPniF6JhnFm5JCTDUhS+kYK3W/4BWYQYXz7w== + mkdirp-infer-owner@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz" @@ -6773,6 +7197,18 @@ osenv@^0.1.3: os-homedir "^1.0.0" os-tmpdir "^1.0.0" +outdent@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.5.0.tgz#9e10982fdc41492bb473ad13840d22f9655be2ff" + integrity sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q== + +p-filter@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c" + integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw== + dependencies: + p-map "^2.0.0" + p-finally@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" @@ -6825,6 +7261,11 @@ p-map-series@^2.1.0: resolved "https://registry.npmjs.org/p-map-series/-/p-map-series-2.1.0.tgz" integrity sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q== +p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + p-map@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz" @@ -7106,6 +7547,16 @@ please-upgrade-node@^3.2.0: dependencies: semver-compare "^1.0.0" +preferred-pm@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/preferred-pm/-/preferred-pm-3.0.3.tgz#1b6338000371e3edbce52ef2e4f65eb2e73586d6" + integrity sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ== + dependencies: + find-up "^5.0.0" + find-yarn-workspace-root2 "1.2.16" + path-exists "^4.0.0" + which-pm "2.0.0" + prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" @@ -7116,11 +7567,21 @@ prettier@2.2.1: resolved "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz" integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== +prettier@^1.19.1: + version "1.19.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== + prettier@^2.2.0: version "2.8.1" resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz" integrity sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg== +prettier@^2.7.1: + version "2.8.4" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.4.tgz#34dd2595629bfbb79d344ac4a91ff948694463c3" + integrity sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw== + proc-log@^2.0.0, proc-log@^2.0.1: version "2.0.1" resolved "https://registry.npmjs.org/proc-log/-/proc-log-2.0.1.tgz" @@ -7197,6 +7658,11 @@ proxyquire@2.1.3: module-not-found-error "^1.0.1" resolve "^1.11.1" +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== + psl@^1.1.28: version "1.9.0" resolved "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz" @@ -7301,6 +7767,16 @@ read-pkg@^5.2.0: parse-json "^5.0.0" type-fest "^0.6.0" +read-yaml-file@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-yaml-file/-/read-yaml-file-1.1.0.tgz#9362bbcbdc77007cc8ea4519fe1c0b821a7ce0d8" + integrity sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA== + dependencies: + graceful-fs "^4.1.5" + js-yaml "^3.6.1" + pify "^4.0.1" + strip-bom "^3.0.0" + read@1, read@^1.0.7: version "1.0.7" resolved "https://registry.npmjs.org/read/-/read-1.0.7.tgz" @@ -7596,7 +8072,7 @@ semver-compare@^1.0.0: resolved "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz" integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== -"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.5.0, semver@^5.6.0: +"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: version "5.7.1" resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -7777,6 +8253,18 @@ smart-buffer@^4.2.0: resolved "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== +smartwrap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/smartwrap/-/smartwrap-2.0.2.tgz#7e25d3dd58b51c6ca4aba3a9e391650ea62698a4" + integrity sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA== + dependencies: + array.prototype.flat "^1.2.3" + breakword "^1.0.5" + grapheme-splitter "^1.0.4" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + yargs "^15.1.0" + socks-proxy-agent@^7.0.0: version "7.0.0" resolved "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz" @@ -7853,6 +8341,14 @@ spawn-wrap@^2.0.0: signal-exit "^3.0.2" which "^2.0.1" +spawndamnit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/spawndamnit/-/spawndamnit-2.0.0.tgz#9f762ac5c3476abb994b42ad592b5ad22bb4b0ad" + integrity sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA== + dependencies: + cross-spawn "^5.1.0" + signal-exit "^3.0.2" + spdx-correct@^3.0.0: version "3.1.1" resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz" @@ -7959,6 +8455,13 @@ stdin@0.0.1: resolved "https://registry.npmjs.org/stdin/-/stdin-0.0.1.tgz" integrity sha512-2bacd1TXzqOEsqRa+eEWkRdOSznwptrs4gqFcpMq5tOtmJUGPZd10W5Lam6wQ4YQ/+qjQt4e9u35yXCF6mrlfQ== +stream-transform@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-2.1.3.tgz#a1c3ecd72ddbf500aa8d342b0b9df38f5aa598e3" + integrity sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ== + dependencies: + mixme "^0.5.1" + streamroller@2.2.3: version "2.2.3" resolved "https://registry.npmjs.org/streamroller/-/streamroller-2.2.3.tgz" @@ -8188,6 +8691,11 @@ tempfile@^3.0.0: temp-dir "^2.0.0" uuid "^3.3.2" +term-size@^2.1.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" + integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== + terser-webpack-plugin@^5.1.3: version "5.3.6" resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz" @@ -8399,6 +8907,19 @@ tsutils@^3.17.1, tsutils@^3.21.0: dependencies: tslib "^1.8.1" +tty-table@^4.1.5: + version "4.1.6" + resolved "https://registry.yarnpkg.com/tty-table/-/tty-table-4.1.6.tgz#6bd58338f36c94cce478c3337934d8a65ab40a73" + integrity sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw== + dependencies: + chalk "^4.1.2" + csv "^5.5.0" + kleur "^4.1.4" + smartwrap "^2.0.2" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + yargs "^17.1.1" + tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz" @@ -8428,6 +8949,11 @@ type-detect@4.0.8, type-detect@^4.0.0, type-detect@^4.0.5, type-detect@^4.0.8: resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== +type-fest@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" + integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== + type-fest@^0.18.0: version "0.18.1" resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz" @@ -8869,6 +9395,14 @@ which-module@^2.0.0: resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== +which-pm@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-pm/-/which-pm-2.0.0.tgz#8245609ecfe64bf751d0eef2f376d83bf1ddb7ae" + integrity sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w== + dependencies: + load-yaml-file "^0.2.0" + path-exists "^4.0.0" + which@^1.2.14, which@^1.2.9: version "1.3.1" resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" @@ -9047,6 +9581,11 @@ y18n@^5.0.5: resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== + yallist@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" @@ -9072,9 +9611,9 @@ yargs-parser@21.1.1, yargs-parser@^21.1.1: resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== -yargs-parser@^18.1.2: +yargs-parser@^18.1.2, yargs-parser@^18.1.3: version "18.1.3" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== dependencies: camelcase "^5.0.0" @@ -9125,6 +9664,19 @@ yargs@^15.0.2, yargs@^15.1.0: y18n "^4.0.0" yargs-parser "^18.1.2" +yargs@^17.1.1: + version "17.7.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.1.tgz#34a77645201d1a8fc5213ace787c220eabbd0967" + integrity sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + yargs@^17.6.2: version "17.6.2" resolved "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz" From 1f216b4295be70882e12f7cdf64929eaa3fa74e3 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 13:34:10 +0200 Subject: [PATCH 25/75] feat: debug --- .changeset/young-zoos-trade.md | 6 ++++++ .github/workflows/release_manual.yaml | 2 +- packages/fe/api.d.ts | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .changeset/young-zoos-trade.md diff --git a/.changeset/young-zoos-trade.md b/.changeset/young-zoos-trade.md new file mode 100644 index 000000000..bb8187217 --- /dev/null +++ b/.changeset/young-zoos-trade.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +comment for change 2 diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index f4ae75e3e..17b690a8b 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -95,7 +95,7 @@ jobs: git status git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" git log --pretty=oneline | head -n 10 - git tag -a ${{ steps.package-version.outputs.current-version}} -m "${{ steps.package-version.outputs.current-version}} release" + git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" git push # automatic_release_tag: ${{ steps.package-version.outputs.current-version}} diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index 69c42df50..0c4f4ceae 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 1 +// test change 2 From 4a80c98768325ca27b10f4b9f79a178c848f9ac3 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 24 Feb 2023 11:36:15 +0000 Subject: [PATCH 26/75] chore: apply latest changesets --- .changeset/young-zoos-trade.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/young-zoos-trade.md diff --git a/.changeset/young-zoos-trade.md b/.changeset/young-zoos-trade.md deleted file mode 100644 index bb8187217..000000000 --- a/.changeset/young-zoos-trade.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -comment for change 2 diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index 034cca233..208b5d181 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.6 + +### Patch Changes + +- 1f216b4: comment for change 2 + ## 4.0.5 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index 19e53d300..e8e47ccdd 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.5", + "version": "4.0.6", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index d8f9ee4f1..54fd12ad7 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.6 + +### Patch Changes + +- Updated dependencies [1f216b4] + - @ui5-language-assistant/fe@4.0.6 + ## 4.0.5 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 4ab64d526..8628c4347 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.5", + "version": "4.0.6", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.5", + "@ui5-language-assistant/fe": "4.0.6", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index 772d0ff1f..696c0a618 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.5" + "vscode-ui5-language-assistant": "4.0.6" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index f2a4729e7..050435c3b 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.6 + +### Patch Changes + +- 1f216b4: comment for change 2 + - @ui5-language-assistant/language-server@4.0.6 + ## 4.0.5 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index bd066c30e..a9186ae68 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.5", + "version": "4.0.6", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.5", + "@ui5-language-assistant/language-server": "4.0.6", "vscode-languageclient": "8.0.2" }, "devDependencies": { From 5d940c5a0b6f028f6a8c1f74f412d4b86bfc2b4d Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 13:43:48 +0200 Subject: [PATCH 27/75] feat: debug --- .changeset/three-otters-leave.md | 6 ++++++ .github/workflows/release_manual.yaml | 5 ++++- packages/fe/api.d.ts | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 .changeset/three-otters-leave.md diff --git a/.changeset/three-otters-leave.md b/.changeset/three-otters-leave.md new file mode 100644 index 000000000..10d07a95d --- /dev/null +++ b/.changeset/three-otters-leave.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +comment for change 3 diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index 17b690a8b..ee66d7831 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -86,6 +86,7 @@ jobs: - name: Commit and push changes if: steps.changesetVersion.outputs.changes == 'true' + id: commitChangelogs run: | echo ${{ steps.package-version.outputs.current-version}} git config user.name github-actions @@ -95,7 +96,9 @@ jobs: git status git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" git log --pretty=oneline | head -n 10 - git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" + echo ::set-output name=tag::$(git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" 2>&1) git push + - name: Tag Output + run: echo ${{steps.commiChangelogs.outputs.tag}} # automatic_release_tag: ${{ steps.package-version.outputs.current-version}} diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index 0c4f4ceae..3cb0b5b22 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 2 +// test change 3 From 3f5670276ec747a399aad3dc61f88c229c26cb85 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 24 Feb 2023 11:47:49 +0000 Subject: [PATCH 28/75] chore: apply latest changesets --- .changeset/three-otters-leave.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/three-otters-leave.md diff --git a/.changeset/three-otters-leave.md b/.changeset/three-otters-leave.md deleted file mode 100644 index 10d07a95d..000000000 --- a/.changeset/three-otters-leave.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -comment for change 3 diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index 208b5d181..d4d6eb7d2 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.7 + +### Patch Changes + +- 5d940c5: comment for change 3 + ## 4.0.6 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index e8e47ccdd..ca77516c8 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.6", + "version": "4.0.7", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index 54fd12ad7..0fbe8c040 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.7 + +### Patch Changes + +- Updated dependencies [5d940c5] + - @ui5-language-assistant/fe@4.0.7 + ## 4.0.6 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 8628c4347..fbfb1c2c7 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.6", + "version": "4.0.7", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.6", + "@ui5-language-assistant/fe": "4.0.7", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index 696c0a618..03b484ac3 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.6" + "vscode-ui5-language-assistant": "4.0.7" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index 050435c3b..cb14c9685 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.7 + +### Patch Changes + +- 5d940c5: comment for change 3 + - @ui5-language-assistant/language-server@4.0.7 + ## 4.0.6 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index a9186ae68..4e19f32c6 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.6", + "version": "4.0.7", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.6", + "@ui5-language-assistant/language-server": "4.0.7", "vscode-languageclient": "8.0.2" }, "devDependencies": { From 080ae49b815759427c05d1bbc002ef21353734f9 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 13:55:30 +0200 Subject: [PATCH 29/75] feat: debug --- .changeset/grumpy-owls-admire.md | 6 ++++ .github/workflows/release_manual.yaml | 40 +++++++++++++++------------ packages/fe/api.d.ts | 2 +- 3 files changed, 30 insertions(+), 18 deletions(-) create mode 100644 .changeset/grumpy-owls-admire.md diff --git a/.changeset/grumpy-owls-admire.md b/.changeset/grumpy-owls-admire.md new file mode 100644 index 000000000..19c032580 --- /dev/null +++ b/.changeset/grumpy-owls-admire.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +comment for change 4 diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index ee66d7831..3941a22b1 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -49,9 +49,9 @@ jobs: # Run version job only on pushes to the main branch. The job depends on completion of the build job. # if: inputs.job_name == 'version' && github.ref == 'refs/heads/master' runs-on: ubuntu-latest - # needs: - # build - # complience + # needs: + # build + # complience outputs: changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output steps: @@ -87,18 +87,24 @@ jobs: - name: Commit and push changes if: steps.changesetVersion.outputs.changes == 'true' id: commitChangelogs - run: | - echo ${{ steps.package-version.outputs.current-version}} - git config user.name github-actions - git config user.email github-actions@github.com - git status - git add -A - git status - git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" - git log --pretty=oneline | head -n 10 - echo ::set-output name=tag::$(git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" 2>&1) - git push - - name: Tag Output - run: echo ${{steps.commiChangelogs.outputs.tag}} + run: | + echo ${{ steps.package-version.outputs.current-version}} + git config user.name github-actions + git config user.email github-actions@github.com + git status + git add -A + git status + git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" + git log --pretty=oneline | head -n 10 + echo ::set-output name=tag::$(git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" 2>&1) + - uses: rickstaa/action-create-tag@v1 + with: + tag: 'v${{ steps.package-version.outputs.current-version}}' + message: '$v{{ steps.package-version.outputs.current-version}} release' + - name: Push commit and tag + run: git push + - name: Output + run: git status # automatic_release_tag: ${{ steps.package-version.outputs.current-version}} - + +# echo ::set-output name=tag::$(git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" 2>&1) diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index 3cb0b5b22..39292494b 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 3 +// test change 4 From 34c71bf1fe2c2fbc75fba3ab506f36569acd43c8 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 14:02:00 +0200 Subject: [PATCH 30/75] Update release_manual.yaml --- .github/workflows/release_manual.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index 3941a22b1..82293115e 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -96,13 +96,13 @@ jobs: git status git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" git log --pretty=oneline | head -n 10 - echo ::set-output name=tag::$(git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" 2>&1) +# echo ::set-output name=tag::$(git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" 2>&1) - uses: rickstaa/action-create-tag@v1 with: tag: 'v${{ steps.package-version.outputs.current-version}}' message: '$v{{ steps.package-version.outputs.current-version}} release' - name: Push commit and tag - run: git push + run: git push --tags - name: Output run: git status # automatic_release_tag: ${{ steps.package-version.outputs.current-version}} From 03e78a7d5bf25d0600778d2e8acda0cfffbaa1d4 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 14:08:05 +0200 Subject: [PATCH 31/75] feat: debug --- .github/workflows/build.yml | 79 --------------------------- .github/workflows/compliance.yaml | 44 --------------- .github/workflows/release_manual.yaml | 17 +++--- 3 files changed, 10 insertions(+), 130 deletions(-) delete mode 100644 .github/workflows/build.yml delete mode 100644 .github/workflows/compliance.yaml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index beade0347..000000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,79 +0,0 @@ -name: Builds repo - -on: - # Trigger the workflow on push or pull request, - # but only for the main branch - push: - branches: - - master - # - feat/switch-to-github-actions - pull_request: - branches: - - master - -jobs: - build: - strategy: - matrix: - os: [ubuntu-latest] - node-version: [14.x] # TODO: run for all versions - runs-on: ${{ matrix.os }} - - steps: - - name: Checkout code repository - uses: actions/checkout@v3 - with: - fetch-depth: 0 # will fetch all history - - name: Run install - uses: borales/actions-yarn@v4 - with: - cmd: install # will run `yarn install` command - # env: - # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed - - name: Run build - uses: borales/actions-yarn@v4 - with: - cmd: run ci # will run `yarn run ci` command - # - - name: Upload vsix artifact - uses: actions/upload-artifact@v3 - with: - name: vscode-extension-file - path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix - gh-delpoy: - strategy: - matrix: - os: [ubuntu-latest] - node-version: [14.x] # TODO: run for all versions - runs-on: ${{ matrix.os }} - needs: build - steps: - - name: Setup Go 1.18 - uses: actions/setup-go@v3 - with: - go-version: '^1.18' - - name: 'prepare to deploy' - run: go version - #- name: Scripts - # uses: alinz/script.go@main - # with: - # workspace: ${{ github.workspace }} # <- this is important - # paths: .github/workflows/one,.github/workflows/two #<- the path to your go scripts - - name: 'make folder' - run: mkdir ./artifacts - - name: Download artifact - uses: actions/download-artifact@v3 - with: - name: vscode-extension-file - path: ./artifacts - - name: 'check artifacts' - run: ls -la - # - name: "Publish Release on GitHub" -#${{ secrets.GITHUB_TOKEN }} -# How to obtain new version? -# CIRCLE_PROJECT_REPONAME=ui5-language-assistant -# CIRCLE_PROJECT_USERNAME=SAP - # run: echo 'export GOPATH=~/go' >> $BASH_ENV - # go get github.com/tcnksm/ghr - # VERSION=${CIRCLE_TAG} - # ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -replace ${VERSION} ./artifacts/ \ No newline at end of file diff --git a/.github/workflows/compliance.yaml b/.github/workflows/compliance.yaml deleted file mode 100644 index fe9162bfb..000000000 --- a/.github/workflows/compliance.yaml +++ /dev/null @@ -1,44 +0,0 @@ -name: REUSE Compliance Check - -on: - # Trigger the workflow on push or pull request, - # but only for the main branch - push: - branches: - - master - - feat/switch-to-github-actions - pull_request: - branches: - - master - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: REUSE Compliance Check - uses: fsfe/reuse-action@v1 - with: - args: --include-submodules lint - # run-builds: - # strategy: - # matrix: - # os: [ubuntu-latest] - # node-version: [14.x] # TODO: run for all versions - # runs-on: ${{ matrix.os }} - - # steps: - # - name: Checkout code repository - # uses: actions/checkout@v3 - # with: - # fetch-depth: 0 # will fetch all history - # - name: Run install - # uses: borales/actions-yarn@v4 - # with: - # cmd: install # will run `yarn install` command - # # env: - # # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed - # - name: Run build - # uses: borales/actions-yarn@v4 - # with: - # cmd: run ci # will run `yarn run ci` command \ No newline at end of file diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index 3941a22b1..dd8c60f9d 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -96,13 +96,16 @@ jobs: git status git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" git log --pretty=oneline | head -n 10 - echo ::set-output name=tag::$(git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" 2>&1) - - uses: rickstaa/action-create-tag@v1 - with: - tag: 'v${{ steps.package-version.outputs.current-version}}' - message: '$v{{ steps.package-version.outputs.current-version}} release' - - name: Push commit and tag - run: git push + git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" + git log --pretty=oneline | head -n 10 + git push + git push --tags + # - uses: rickstaa/action-create-tag@v1 + # with: + # tag: 'v${{ steps.package-version.outputs.current-version}}' + # message: '$v{{ steps.package-version.outputs.current-version}} release' + # - name: Push commit and tag + # run: git push - name: Output run: git status # automatic_release_tag: ${{ steps.package-version.outputs.current-version}} From e327867f7676984ad6c0568445119daa5504a72b Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 14:24:10 +0200 Subject: [PATCH 32/75] Update release_manual.yaml --- .github/workflows/release_manual.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index dd8c60f9d..92d8284c4 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -96,6 +96,7 @@ jobs: git status git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" git log --pretty=oneline | head -n 10 + git tag -d "v${{ steps.package-version.outputs.current-version}}" git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" git log --pretty=oneline | head -n 10 git push From 6d1bbd392026dce9ae6b746a1942b7d54d1b9554 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 24 Feb 2023 12:25:10 +0000 Subject: [PATCH 33/75] chore: apply latest changesets --- .changeset/grumpy-owls-admire.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/grumpy-owls-admire.md diff --git a/.changeset/grumpy-owls-admire.md b/.changeset/grumpy-owls-admire.md deleted file mode 100644 index 19c032580..000000000 --- a/.changeset/grumpy-owls-admire.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -comment for change 4 diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index d4d6eb7d2..e9ffc9f01 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.8 + +### Patch Changes + +- 080ae49: comment for change 4 + ## 4.0.7 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index ca77516c8..08632af0e 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.7", + "version": "4.0.8", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index 0fbe8c040..8e5e9768b 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.8 + +### Patch Changes + +- Updated dependencies [080ae49] + - @ui5-language-assistant/fe@4.0.8 + ## 4.0.7 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index fbfb1c2c7..e0a1b40c0 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.7", + "version": "4.0.8", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.7", + "@ui5-language-assistant/fe": "4.0.8", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index 03b484ac3..b89deefb9 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.7" + "vscode-ui5-language-assistant": "4.0.8" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index cb14c9685..c9bffc021 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.8 + +### Patch Changes + +- 080ae49: comment for change 4 + - @ui5-language-assistant/language-server@4.0.8 + ## 4.0.7 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index 4e19f32c6..58f87de59 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.7", + "version": "4.0.8", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.7", + "@ui5-language-assistant/language-server": "4.0.8", "vscode-languageclient": "8.0.2" }, "devDependencies": { From a4db98f6132812ce5a86febfbe59ede089d76fbe Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 14:38:58 +0200 Subject: [PATCH 34/75] feat: tag debug --- .changeset/brave-plants-tickle.md | 6 ++++++ packages/fe/api.d.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changeset/brave-plants-tickle.md diff --git a/.changeset/brave-plants-tickle.md b/.changeset/brave-plants-tickle.md new file mode 100644 index 000000000..48e6bd834 --- /dev/null +++ b/.changeset/brave-plants-tickle.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +comment change 5 diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index 39292494b..7e0936875 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 4 +// test change 5 From ab78b00a3c06a8254a11cb8cfb6601845ded9179 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 14:41:23 +0200 Subject: [PATCH 35/75] Update release_manual.yaml tag debug --- .github/workflows/release_manual.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index 92d8284c4..dd8c60f9d 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -96,7 +96,6 @@ jobs: git status git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" git log --pretty=oneline | head -n 10 - git tag -d "v${{ steps.package-version.outputs.current-version}}" git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" git log --pretty=oneline | head -n 10 git push From fca69004375afd89c71974ec22a431cd1c0ee043 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 24 Feb 2023 12:42:30 +0000 Subject: [PATCH 36/75] chore: apply latest changesets --- .changeset/brave-plants-tickle.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/brave-plants-tickle.md diff --git a/.changeset/brave-plants-tickle.md b/.changeset/brave-plants-tickle.md deleted file mode 100644 index 48e6bd834..000000000 --- a/.changeset/brave-plants-tickle.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -comment change 5 diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index e9ffc9f01..c52ad3fc2 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.9 + +### Patch Changes + +- a4db98f: comment change 5 + ## 4.0.8 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index 08632af0e..7de03ae2d 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.8", + "version": "4.0.9", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index 8e5e9768b..7f088ba74 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.9 + +### Patch Changes + +- Updated dependencies [a4db98f] + - @ui5-language-assistant/fe@4.0.9 + ## 4.0.8 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index e0a1b40c0..723ae287c 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.8", + "version": "4.0.9", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.8", + "@ui5-language-assistant/fe": "4.0.9", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index b89deefb9..e0739b22f 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.8" + "vscode-ui5-language-assistant": "4.0.9" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index c9bffc021..73b97cc38 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.9 + +### Patch Changes + +- a4db98f: comment change 5 + - @ui5-language-assistant/language-server@4.0.9 + ## 4.0.8 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index 58f87de59..f75c1a880 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.8", + "version": "4.0.9", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.8", + "@ui5-language-assistant/language-server": "4.0.9", "vscode-languageclient": "8.0.2" }, "devDependencies": { From ceae46e4e73a0e015365c8eaaeb37be9b9b8078d Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 17:10:31 +0200 Subject: [PATCH 37/75] feat: publish script --- .github/workflows/release.yaml | 216 ++++++++++++++------------ .github/workflows/release_manual.yaml | 56 +++---- 2 files changed, 147 insertions(+), 125 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e4c93d7ea..6eeb02b59 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,29 +1,29 @@ name: Release workflow on: - # Trigger the workflow only manually - workflow_dispatch: - # inputs: - # version: - # description: 'Action' - # required: true - # type: choice - # options: - # - version bump - # - release + push: + branches: [feat/switch-to-github-actions] + tags: /^v[0-9]+(\.[0-9]+)*/ +env: + GHR_PROJECT_REPONAME: ui5-language-assistant + GHR_PROJECT_USERNAME: SAP + jobs: build: + if: github.repository == 'vadson71/ui5-language-assistant-vk' && github.ref == 'refs/heads/feat/switch-to-github-actions' strategy: matrix: os: [ubuntu-latest] - node-version: [14.x] # TODO: run for all versions + node-version: [14.x] # TODO: run for all versions runs-on: ${{ matrix.os }} + outputs: + changes: ${{ steps.package-version.outputs.current-version }} # map step output to job output steps: - name: Checkout code repository uses: actions/checkout@v3 with: - fetch-depth: 0 # will fetch all history + fetch-depth: 0 # will fetch all history - name: Run install uses: borales/actions-yarn@v4 with: @@ -33,96 +33,114 @@ jobs: - name: Run build uses: borales/actions-yarn@v4 with: - cmd: run build:quick # will run `yarn run ci` command - # + cmd: build:quick # will run `yarn run ci` command - name: Upload vsix artifact uses: actions/upload-artifact@v3 with: name: vscode-extension-file path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix - # version: - # # Run version job only on pushes to the main branch. The job depends on completion of the build job. - # if: github.repository == 'vadson71/ui5-language-assistant-vk' && github.event_name == 'push' && github.ref == 'refs/heads/main' - # runs-on: ubuntu-latest - # needs: build - # outputs: - # changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output - # steps: - # - name: Checkout code repository - # uses: actions/checkout@v3 - # with: - # fetch-depth: 0 - # token: ${{ secrets.ACCESS_PAT }} - # - name: Setup pnpm - # uses: pnpm/action-setup@v2.2.2 - # with: - # version: 7.1.0 - # run_install: true - # - name: Cache pnpm modules - # uses: actions/cache@v3 - # env: - # cache-name: cache-pnpm-modules - # with: - # path: ~/.pnpm-store - # key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }} - # restore-keys: | - # ${{ runner.os }}-build-${{ env.cache-name }}- - # - name: Use Node.js 14.x - # uses: actions/setup-node@v3 - # with: - # node-version: 14.x - # - name: Install pnpm modules - # run: pnpm install - # - name: Apply changesets - # id: changesetVersion - # run: | - # echo ::set-output name=changes::$(pnpm ci:version 2>&1 | grep -q 'No unreleased changesets found' && echo 'false' || echo 'true') - # git status - # - name: Commit and push changes - # if: steps.changesetVersion.outputs.changes == 'true' - # run: | - # git config user.name github-actions - # git config user.email github-actions@github.com - # git status - # git add -A - # git status - # git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" - # git log --pretty=oneline | head -n 10 - # git push - # gh-delpoy: - # strategy: - # matrix: - # os: [ubuntu-latest] - # node-version: [14.x] # TODO: run for all versions - # runs-on: ${{ matrix.os }} - # needs: build - # steps: - # - name: Setup Go 1.18 - # uses: actions/setup-go@v3 - # with: - # go-version: '^1.18' - # - name: 'prepare to deploy' - # run: go version - # #- name: Scripts - # # uses: alinz/script.go@main - # # with: - # # workspace: ${{ github.workspace }} # <- this is important - # # paths: .github/workflows/one,.github/workflows/two #<- the path to your go scripts - # - name: 'make folder' - # run: mkdir ./artifacts - # - name: Download artifact - # uses: actions/download-artifact@v3 - # with: - # name: vscode-extension-file - # path: ./artifacts - # - name: 'check artifacts' - # run: ls -la - # - name: "Publish Release on GitHub" -#${{ secrets.GITHUB_TOKEN }} -# How to obtain new version? -# CIRCLE_PROJECT_REPONAME=ui5-language-assistant -# CIRCLE_PROJECT_USERNAME=SAP + if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` + + # Get release version number + - name: get-npm-version + id: package-version + uses: martinbeentjes/npm-get-version-action@main + with: + path: ./packages/vscode-ui5-language-assistant + + gh-delpoy: + env: + GOPATH: ~/go + strategy: + matrix: + os: [ubuntu-latest] + node-version: [14.x] # TODO: run for all versions + runs-on: ${{ matrix.os }} + needs: build + steps: + - name: Setup Go 1.18 + uses: actions/setup-go@v3 + with: + go-version: '^1.18' + - name: 'prepare to deploy' + run: + go version + #- name: Scripts + # uses: alinz/script.go@main + # with: + # workspace: ${{ github.workspace }} # <- this is important + # paths: .github/workflows/one,.github/workflows/two #<- the path to your go scripts + + # Download vsix artifact + - name: 'make folder' + run: mkdir ./artifacts + - name: Download artifact + uses: actions/download-artifact@v3 + with: + name: vscode-extension-file + path: ./artifacts + - name: 'check artifacts' + run: ls ./artifacts -la + + # Publish on GitHub + - name: 'Publish Release on GitHub' # run: echo 'export GOPATH=~/go' >> $BASH_ENV - # go get github.com/tcnksm/ghr - # VERSION=${CIRCLE_TAG} - # ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -replace ${VERSION} ./artifacts/ \ No newline at end of file + run: go get github.com/tcnksm/ghr + - name: Check + run: echo ${{ secrets.GITHUB_TOKEN }} -u ${{env.GHR_PROJECT_USERNAME}} -r ${{env.GHR_PROJECT_REPONAME}} -replace ${{ needs.build.outputs.current-version}} ./artifacts/ + # ghr -t ${{ secrets.GITHUB_TOKEN }} -u ${{env.GHR_PROJECT_USERNAME}} -r ${{env.GHR_PROJECT_REPONAME}} -replace ${{ needs.build.outputs.current-version}} ./artifacts/ + + deploy-npm: + strategy: + matrix: + os: [ubuntu-latest] + node-version: [14.x] # TODO: run for all versions + runs-on: ${{ matrix.os }} + needs: build + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + + steps: + - name: Prerequisite + run: sudo apt-get install libxss1 + + - name: Checkout code repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 # will fetch all history + + - name: Pure lockfile + uses: borales/actions-yarn@v4 + with: + cmd: --pure-lockfile + + - name: Run install + uses: borales/actions-yarn@v4 + with: + cmd: install # will run `yarn install` command + + - name: Run build + uses: borales/actions-yarn@v4 + with: + cmd: build:quick # will run `yarn run ci` command + + - name: Copy vsix + uses: borales/actions-yarn@v4 + with: + cmd: ci # will run `yarn run ci` command + dir: './packages\vscode-ui5-language-assistant-bas-ext' + + - name: Check + run: ls ./packages\vscode-ui5-language-assistant-bas-ext -la + + - name: Prepare .npmrc + - run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" + #>> ~/.npmrc + + # To help debug when lerna detects changes to the working tree and fails the publish + - name: Status + - run: git status + + # - name: Publish + # # https://github.com/lerna/lerna/issues/2788 + # - run: yarn run release:publish --no-verify-access diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index 92d8284c4..326c47f7f 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -1,12 +1,26 @@ -name: Release workflow +name: Version bump for release workflow + +# on: + # Trigger the workflow only manually + # workflow_dispatch: + # inputs: + # job_name: + # description: 'Action' + # required: true + # type: choice + # default: 'version' + # options: + # - version + # - release -# For debugging on: push: branches: [feat/switch-to-github-actions] jobs: build: + # if: inputs.job_name == 'release' && github.ref == 'refs/heads/master' + if: github.ref == 'refs/heads/master' strategy: matrix: os: [ubuntu-latest] @@ -28,13 +42,13 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: run build:quick # will run `yarn run ci` command - # - - name: Upload vsix artifact - uses: actions/upload-artifact@v3 - with: - name: vscode-extension-file - path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix - if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` + + # - name: Upload vsix artifact + # uses: actions/upload-artifact@v3 + # with: + # name: vscode-extension-file + # path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix + # if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` complience: runs-on: ubuntu-latest @@ -47,11 +61,10 @@ jobs: version: # Run version job only on pushes to the main branch. The job depends on completion of the build job. - # if: inputs.job_name == 'version' && github.ref == 'refs/heads/master' + #if: inputs.job_name == 'version' + # && github.ref == 'refs/heads/master' runs-on: ubuntu-latest - # needs: - # build - # complience + # needs: build outputs: changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output steps: @@ -75,18 +88,21 @@ jobs: run: | echo ::set-output name=changes::$(npm run ci:version 2>&1 | grep -q 'No unreleased changesets found' && echo 'false' || echo 'true') git status + # TODO: remove - name: Changeset output run: echo ${{steps.changesetVersion.outputs.changes}} + # Get new version number - name: get-npm-version + if: steps.changesetVersion.outputs.changes == 'true' id: package-version uses: martinbeentjes/npm-get-version-action@main with: path: ./packages/vscode-ui5-language-assistant + # Apply changes and create version tag - name: Commit and push changes if: steps.changesetVersion.outputs.changes == 'true' - id: commitChangelogs run: | echo ${{ steps.package-version.outputs.current-version}} git config user.name github-actions @@ -96,19 +112,7 @@ jobs: git status git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" git log --pretty=oneline | head -n 10 - git tag -d "v${{ steps.package-version.outputs.current-version}}" git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" git log --pretty=oneline | head -n 10 git push git push --tags - # - uses: rickstaa/action-create-tag@v1 - # with: - # tag: 'v${{ steps.package-version.outputs.current-version}}' - # message: '$v{{ steps.package-version.outputs.current-version}} release' - # - name: Push commit and tag - # run: git push - - name: Output - run: git status -# automatic_release_tag: ${{ steps.package-version.outputs.current-version}} - -# echo ::set-output name=tag::$(git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" 2>&1) From 75ccd2bbf2291a9e6f9cade016d41d66123ca0b7 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 17:27:05 +0200 Subject: [PATCH 38/75] Update release.yaml --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6eeb02b59..b678d79be 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,7 @@ name: Release workflow on: push: branches: [feat/switch-to-github-actions] - tags: /^v[0-9]+(\.[0-9]+)*/ + #tags: /^v[0-9]+(\.[0-9]+)*/ env: GHR_PROJECT_REPONAME: ui5-language-assistant GHR_PROJECT_USERNAME: SAP From 8848a4588fca5f8ed9f502b5663100b3579ed39a Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 17:34:08 +0200 Subject: [PATCH 39/75] fix: bug fix --- .github/workflows/release.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6eeb02b59..d39036ee7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -4,6 +4,7 @@ on: push: branches: [feat/switch-to-github-actions] tags: /^v[0-9]+(\.[0-9]+)*/ + env: GHR_PROJECT_REPONAME: ui5-language-assistant GHR_PROJECT_USERNAME: SAP @@ -34,8 +35,9 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: build:quick # will run `yarn run ci` command + - name: Upload vsix artifact - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v3 with: name: vscode-extension-file path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix @@ -86,6 +88,7 @@ jobs: - name: 'Publish Release on GitHub' # run: echo 'export GOPATH=~/go' >> $BASH_ENV run: go get github.com/tcnksm/ghr + - name: Check run: echo ${{ secrets.GITHUB_TOKEN }} -u ${{env.GHR_PROJECT_USERNAME}} -r ${{env.GHR_PROJECT_REPONAME}} -replace ${{ needs.build.outputs.current-version}} ./artifacts/ # ghr -t ${{ secrets.GITHUB_TOKEN }} -u ${{env.GHR_PROJECT_USERNAME}} -r ${{env.GHR_PROJECT_REPONAME}} -replace ${{ needs.build.outputs.current-version}} ./artifacts/ @@ -134,12 +137,13 @@ jobs: run: ls ./packages\vscode-ui5-language-assistant-bas-ext -la - name: Prepare .npmrc - - run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" - #>> ~/.npmrc + run: + echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" + #>> ~/.npmrc # To help debug when lerna detects changes to the working tree and fails the publish - name: Status - - run: git status + run: git status # - name: Publish # # https://github.com/lerna/lerna/issues/2788 From 199aefb4fd3385e97563bc64d955b8f94e505303 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 17:34:41 +0200 Subject: [PATCH 40/75] Update release.yaml bug fix --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b678d79be..a4bab2c96 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -134,12 +134,12 @@ jobs: run: ls ./packages\vscode-ui5-language-assistant-bas-ext -la - name: Prepare .npmrc - - run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" + run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" #>> ~/.npmrc # To help debug when lerna detects changes to the working tree and fails the publish - name: Status - - run: git status + run: git status # - name: Publish # # https://github.com/lerna/lerna/issues/2788 From 8942d6ecece36f65218592cbe5994dac7963db72 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 17:44:44 +0200 Subject: [PATCH 41/75] Update release.yaml bug fix --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a4bab2c96..a1d13ab6c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,7 @@ name: Release workflow on: push: branches: [feat/switch-to-github-actions] - #tags: /^v[0-9]+(\.[0-9]+)*/ + tags: /^v[0-9]+(\.[0-9]+)*/ env: GHR_PROJECT_REPONAME: ui5-language-assistant GHR_PROJECT_USERNAME: SAP @@ -128,10 +128,10 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: ci # will run `yarn run ci` command - dir: './packages\vscode-ui5-language-assistant-bas-ext' + dir: './packages/vscode-ui5-language-assistant-bas-ext' - name: Check - run: ls ./packages\vscode-ui5-language-assistant-bas-ext -la + run: ls ./packages/vscode-ui5-language-assistant-bas-ext -la - name: Prepare .npmrc run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" From d97230b6ec1eb2d0807ec011f347f36f6090b068 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 17:48:24 +0200 Subject: [PATCH 42/75] Update release.yaml debug --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a1d13ab6c..92fd32488 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,7 +2,7 @@ name: Release workflow on: push: - branches: [feat/switch-to-github-actions] + #branches: [feat/switch-to-github-actions] tags: /^v[0-9]+(\.[0-9]+)*/ env: GHR_PROJECT_REPONAME: ui5-language-assistant @@ -49,8 +49,8 @@ jobs: path: ./packages/vscode-ui5-language-assistant gh-delpoy: - env: - GOPATH: ~/go + # env: + # GOPATH: ~/go strategy: matrix: os: [ubuntu-latest] From c4ec4da5612f424117216b88d5cc759eeb9d1ffc Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 23:02:23 +0200 Subject: [PATCH 43/75] fix: deploy script fix --- .github/workflows/release.yaml | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d39036ee7..654675d95 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -51,8 +51,8 @@ jobs: path: ./packages/vscode-ui5-language-assistant gh-delpoy: - env: - GOPATH: ~/go + # env: + # GOPATH: ~/go strategy: matrix: os: [ubuntu-latest] @@ -100,9 +100,7 @@ jobs: node-version: [14.x] # TODO: run for all versions runs-on: ${{ matrix.os }} needs: build - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - + steps: - name: Prerequisite run: sudo apt-get install libxss1 @@ -112,16 +110,13 @@ jobs: with: fetch-depth: 0 # will fetch all history - - name: Pure lockfile - uses: borales/actions-yarn@v4 - with: - cmd: --pure-lockfile - + # Pure lockfile simply doesn't write the lockfile if it changed. - name: Run install uses: borales/actions-yarn@v4 with: - cmd: install # will run `yarn install` command + cmd: install --pure-lockfile + # TODO: reuse stored generated vsix - name: Run build uses: borales/actions-yarn@v4 with: @@ -131,14 +126,14 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: ci # will run `yarn run ci` command - dir: './packages\vscode-ui5-language-assistant-bas-ext' + dir: './packages/vscode-ui5-language-assistant-bas-ext' - name: Check - run: ls ./packages\vscode-ui5-language-assistant-bas-ext -la + run: ls ./packages/vscode-ui5-language-assistant-bas-ext -la - name: Prepare .npmrc run: - echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" + echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" #>> ~/.npmrc # To help debug when lerna detects changes to the working tree and fails the publish From c08b0c217edf286ef6031165a92e5c2aeb2382c4 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Fri, 24 Feb 2023 23:16:50 +0200 Subject: [PATCH 44/75] Update release.yaml --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f5beec369..a58a9b0ee 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -38,7 +38,7 @@ jobs: cmd: build:quick # will run `yarn run ci` command - name: Upload vsix artifact - - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v3 with: name: vscode-extension-file path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix From 053f38129115feccdfd7ed742535717c5154e794 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 23:27:00 +0200 Subject: [PATCH 45/75] feat: test --- .changeset/fresh-bottles-bow.md | 6 ++++++ packages/fe/api.d.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changeset/fresh-bottles-bow.md diff --git a/.changeset/fresh-bottles-bow.md b/.changeset/fresh-bottles-bow.md new file mode 100644 index 000000000..682d33d2a --- /dev/null +++ b/.changeset/fresh-bottles-bow.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +ccc diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index 7e0936875..2292ec5df 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 5 +// test change 6 From 8244c46d224aa5c6941766a342f72290c6ec4a0a Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 24 Feb 2023 21:34:24 +0000 Subject: [PATCH 46/75] chore: apply latest changesets --- .changeset/fresh-bottles-bow.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/fresh-bottles-bow.md diff --git a/.changeset/fresh-bottles-bow.md b/.changeset/fresh-bottles-bow.md deleted file mode 100644 index 682d33d2a..000000000 --- a/.changeset/fresh-bottles-bow.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -ccc diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index c52ad3fc2..47a6315f3 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.10 + +### Patch Changes + +- 053f381: ccc + ## 4.0.9 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index 7de03ae2d..dff68aead 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.9", + "version": "4.0.10", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index 7f088ba74..799110fb9 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.10 + +### Patch Changes + +- Updated dependencies [053f381] + - @ui5-language-assistant/fe@4.0.10 + ## 4.0.9 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 723ae287c..7ecf38847 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.9", + "version": "4.0.10", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.9", + "@ui5-language-assistant/fe": "4.0.10", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index e0739b22f..a09cd15da 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.9" + "vscode-ui5-language-assistant": "4.0.10" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index 73b97cc38..56c12ffe6 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.10 + +### Patch Changes + +- 053f381: ccc + - @ui5-language-assistant/language-server@4.0.10 + ## 4.0.9 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index f75c1a880..f78846c20 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.9", + "version": "4.0.10", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.9", + "@ui5-language-assistant/language-server": "4.0.10", "vscode-languageclient": "8.0.2" }, "devDependencies": { From c43485f83a153cc5cca82e4ff3928eaf4f73dbd4 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Fri, 24 Feb 2023 23:43:19 +0200 Subject: [PATCH 47/75] fix: debug --- .changeset/many-starfishes-brush.md | 6 ++++++ .github/workflows/release.yaml | 2 +- .github/workflows/release_manual.yaml | 26 +++++++++++++------------- packages/fe/api.d.ts | 2 +- 4 files changed, 21 insertions(+), 15 deletions(-) create mode 100644 .changeset/many-starfishes-brush.md diff --git a/.changeset/many-starfishes-brush.md b/.changeset/many-starfishes-brush.md new file mode 100644 index 000000000..2763cd22b --- /dev/null +++ b/.changeset/many-starfishes-brush.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +ccccc diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a58a9b0ee..3ad0d52ab 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,7 @@ name: Release workflow on: push: #branches: [feat/switch-to-github-actions] - tags: /^v[0-9]+(\.[0-9]+)*/ + tags: 'v[0-9]+.[0-9]+.[0-9]+' env: GHR_PROJECT_REPONAME: ui5-language-assistant diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index 326c47f7f..cc2d9cebf 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -1,17 +1,17 @@ name: Version bump for release workflow # on: - # Trigger the workflow only manually - # workflow_dispatch: - # inputs: - # job_name: - # description: 'Action' - # required: true - # type: choice - # default: 'version' - # options: - # - version - # - release +# Trigger the workflow only manually +# workflow_dispatch: +# inputs: +# job_name: +# description: 'Action' +# required: true +# type: choice +# default: 'version' +# options: +# - version +# - release on: push: @@ -50,7 +50,7 @@ jobs: # path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix # if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` - complience: + compliance: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -64,7 +64,7 @@ jobs: #if: inputs.job_name == 'version' # && github.ref == 'refs/heads/master' runs-on: ubuntu-latest - # needs: build + # needs: build, compliance outputs: changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output steps: diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index 2292ec5df..5cafa3ecc 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 6 +// test change 7 From 263bfa9891cdb2fde1520793c7f6924d16120ba2 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 24 Feb 2023 21:46:24 +0000 Subject: [PATCH 48/75] chore: apply latest changesets --- .changeset/many-starfishes-brush.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/many-starfishes-brush.md diff --git a/.changeset/many-starfishes-brush.md b/.changeset/many-starfishes-brush.md deleted file mode 100644 index 2763cd22b..000000000 --- a/.changeset/many-starfishes-brush.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -ccccc diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index 47a6315f3..5223e193a 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.11 + +### Patch Changes + +- c43485f: ccccc + ## 4.0.10 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index dff68aead..c250ec814 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.10", + "version": "4.0.11", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index 799110fb9..a0b330ef5 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.11 + +### Patch Changes + +- Updated dependencies [c43485f] + - @ui5-language-assistant/fe@4.0.11 + ## 4.0.10 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 7ecf38847..dc5e2ae0f 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.10", + "version": "4.0.11", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.10", + "@ui5-language-assistant/fe": "4.0.11", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index a09cd15da..3e2116eec 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.10" + "vscode-ui5-language-assistant": "4.0.11" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index 56c12ffe6..803026f07 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.11 + +### Patch Changes + +- c43485f: ccccc + - @ui5-language-assistant/language-server@4.0.11 + ## 4.0.10 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index f78846c20..40188b5eb 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.10", + "version": "4.0.11", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.10", + "@ui5-language-assistant/language-server": "4.0.11", "vscode-languageclient": "8.0.2" }, "devDependencies": { From 213f3c28fc09be6994d5f3b2c64ed1764894a5bc Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Sat, 25 Feb 2023 00:05:00 +0200 Subject: [PATCH 49/75] fix: debug --- .changeset/chilly-shirts-shout.md | 6 ++++++ .github/workflows/release.yaml | 3 ++- packages/fe/api.d.ts | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .changeset/chilly-shirts-shout.md diff --git a/.changeset/chilly-shirts-shout.md b/.changeset/chilly-shirts-shout.md new file mode 100644 index 000000000..9d98d8f32 --- /dev/null +++ b/.changeset/chilly-shirts-shout.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +ddd diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3ad0d52ab..793677eb5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,8 @@ name: Release workflow on: push: #branches: [feat/switch-to-github-actions] - tags: 'v[0-9]+.[0-9]+.[0-9]+' + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' env: GHR_PROJECT_REPONAME: ui5-language-assistant diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index 5cafa3ecc..c81672b6f 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 7 +// test change 8 From f4dc742bba6b4e92213c3c9baa7e5feb4f1ff85d Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 24 Feb 2023 22:08:41 +0000 Subject: [PATCH 50/75] chore: apply latest changesets --- .changeset/chilly-shirts-shout.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/chilly-shirts-shout.md diff --git a/.changeset/chilly-shirts-shout.md b/.changeset/chilly-shirts-shout.md deleted file mode 100644 index 9d98d8f32..000000000 --- a/.changeset/chilly-shirts-shout.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -ddd diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index 5223e193a..805c1b019 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.12 + +### Patch Changes + +- 213f3c2: ddd + ## 4.0.11 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index c250ec814..25a6c7ed4 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.11", + "version": "4.0.12", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index a0b330ef5..ee96c01dd 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.12 + +### Patch Changes + +- Updated dependencies [213f3c2] + - @ui5-language-assistant/fe@4.0.12 + ## 4.0.11 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index dc5e2ae0f..bfd08425e 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.11", + "version": "4.0.12", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.11", + "@ui5-language-assistant/fe": "4.0.12", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index 3e2116eec..ca1504210 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.11" + "vscode-ui5-language-assistant": "4.0.12" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index 803026f07..b9f3a9eb4 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.12 + +### Patch Changes + +- 213f3c2: ddd + - @ui5-language-assistant/language-server@4.0.12 + ## 4.0.11 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index 40188b5eb..dd3146319 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.11", + "version": "4.0.12", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.11", + "@ui5-language-assistant/language-server": "4.0.12", "vscode-languageclient": "8.0.2" }, "devDependencies": { From 1a130cdbbd27b64d1581f86e1a71e4100881aa72 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Sat, 25 Feb 2023 00:13:20 +0200 Subject: [PATCH 51/75] fix: debug --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 793677eb5..307d1df45 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,7 +2,7 @@ name: Release workflow on: push: - #branches: [feat/switch-to-github-actions] + branches: [feat/switch-to-github-actions] tags: - 'v[0-9]+.[0-9]+.[0-9]+' @@ -23,6 +23,7 @@ jobs: steps: - run: echo ${{env.BRANCH_NAME}} + - run: echo ${{github.ref }} - name: Checkout code repository uses: actions/checkout@v3 with: From 5924ed82b4cc7dd1534780ec507273089516f731 Mon Sep 17 00:00:00 2001 From: vadson71 Date: Sat, 25 Feb 2023 00:23:36 +0200 Subject: [PATCH 52/75] Update release.yaml --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 307d1df45..3b9fabc4a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -90,7 +90,7 @@ jobs: # Publish on GitHub - name: 'Publish Release on GitHub' # run: echo 'export GOPATH=~/go' >> $BASH_ENV - run: go get github.com/tcnksm/ghr + run: go install github.com/tcnksm/ghr@latest - name: Check run: echo ${{ secrets.GITHUB_TOKEN }} -u ${{env.GHR_PROJECT_USERNAME}} -r ${{env.GHR_PROJECT_REPONAME}} -replace ${{ needs.build.outputs.current-version}} ./artifacts/ From f032e3073aab927dc9129600884014d4aae3d37d Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Mon, 27 Feb 2023 20:46:42 +0200 Subject: [PATCH 53/75] fix: bug fix --- .changeset/tame-mangos-live.md | 6 ++++++ .github/workflows/release.yaml | 3 ++- .github/workflows/release_manual.yaml | 4 +++- packages/fe/api.d.ts | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 .changeset/tame-mangos-live.md diff --git a/.changeset/tame-mangos-live.md b/.changeset/tame-mangos-live.md new file mode 100644 index 000000000..896555b1c --- /dev/null +++ b/.changeset/tame-mangos-live.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +test diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 307d1df45..14e357a59 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -4,7 +4,8 @@ on: push: branches: [feat/switch-to-github-actions] tags: - - 'v[0-9]+.[0-9]+.[0-9]+' + - 'v*' + # - 'v[0-9]+.[0-9]+.[0-9]+' env: GHR_PROJECT_REPONAME: ui5-language-assistant diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index cc2d9cebf..b2bdc71d0 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -103,6 +103,8 @@ jobs: # Apply changes and create version tag - name: Commit and push changes if: steps.changesetVersion.outputs.changes == 'true' + env: + GITHUB_TOKEN: ${{ secrets.ACCESS_PAT }} run: | echo ${{ steps.package-version.outputs.current-version}} git config user.name github-actions @@ -112,7 +114,7 @@ jobs: git status git commit -m "chore: apply latest changesets" --no-verify || echo "No changesets found" git log --pretty=oneline | head -n 10 - git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "$v{{ steps.package-version.outputs.current-version}} release" + git tag -a "v${{ steps.package-version.outputs.current-version}}" -m "v${{ steps.package-version.outputs.current-version}} release" git log --pretty=oneline | head -n 10 git push git push --tags diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index c81672b6f..35cdf3661 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 8 +// test change 9 From d9adc9145bbb5a16b3ed958ca27a6529bd095674 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 27 Feb 2023 18:52:30 +0000 Subject: [PATCH 54/75] chore: apply latest changesets --- .changeset/tame-mangos-live.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/tame-mangos-live.md diff --git a/.changeset/tame-mangos-live.md b/.changeset/tame-mangos-live.md deleted file mode 100644 index 896555b1c..000000000 --- a/.changeset/tame-mangos-live.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -test diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index 805c1b019..7073bfe56 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.13 + +### Patch Changes + +- f032e30: test + ## 4.0.12 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index 25a6c7ed4..59b96e05d 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.12", + "version": "4.0.13", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index ee96c01dd..d57a23d04 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.13 + +### Patch Changes + +- Updated dependencies [f032e30] + - @ui5-language-assistant/fe@4.0.13 + ## 4.0.12 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index bfd08425e..1aedd54a7 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.12", + "version": "4.0.13", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.12", + "@ui5-language-assistant/fe": "4.0.13", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index ca1504210..6c46d7988 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.12" + "vscode-ui5-language-assistant": "4.0.13" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index b9f3a9eb4..739aa6fa7 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.13 + +### Patch Changes + +- f032e30: test + - @ui5-language-assistant/language-server@4.0.13 + ## 4.0.12 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index dd3146319..3bd255fd2 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.12", + "version": "4.0.13", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.12", + "@ui5-language-assistant/language-server": "4.0.13", "vscode-languageclient": "8.0.2" }, "devDependencies": { From ac51852b6e4d88f4a425a5282a435593ba8addb1 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Mon, 27 Feb 2023 20:58:02 +0200 Subject: [PATCH 55/75] feat: test --- .changeset/tasty-bottles-drop.md | 6 ++++++ .github/workflows/release.yaml | 5 ++--- packages/fe/api.d.ts | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 .changeset/tasty-bottles-drop.md diff --git a/.changeset/tasty-bottles-drop.md b/.changeset/tasty-bottles-drop.md new file mode 100644 index 000000000..cb427681e --- /dev/null +++ b/.changeset/tasty-bottles-drop.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +eeee diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index da0d1bc4e..f61163fd7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,9 +2,8 @@ name: Release workflow on: push: - branches: [feat/switch-to-github-actions] - tags: - - 'v*' + # branches: [feat/switch-to-github-actions] + tags: 'v*' # - 'v[0-9]+.[0-9]+.[0-9]+' env: diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index 35cdf3661..b57efaa85 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 9 +// test change 10 From acfbbe797c871837e45367481afdebf37438d4a1 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 27 Feb 2023 18:59:46 +0000 Subject: [PATCH 56/75] chore: apply latest changesets --- .changeset/tasty-bottles-drop.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/tasty-bottles-drop.md diff --git a/.changeset/tasty-bottles-drop.md b/.changeset/tasty-bottles-drop.md deleted file mode 100644 index cb427681e..000000000 --- a/.changeset/tasty-bottles-drop.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -eeee diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index 7073bfe56..77af12b84 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.14 + +### Patch Changes + +- ac51852: eeee + ## 4.0.13 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index 59b96e05d..b6db24b75 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.13", + "version": "4.0.14", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index d57a23d04..fabaa71fc 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.14 + +### Patch Changes + +- Updated dependencies [ac51852] + - @ui5-language-assistant/fe@4.0.14 + ## 4.0.13 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 1aedd54a7..350190ee7 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.13", + "version": "4.0.14", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.13", + "@ui5-language-assistant/fe": "4.0.14", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index 6c46d7988..bc9bf18f7 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.13" + "vscode-ui5-language-assistant": "4.0.14" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index 739aa6fa7..c9e534630 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.14 + +### Patch Changes + +- ac51852: eeee + - @ui5-language-assistant/language-server@4.0.14 + ## 4.0.13 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index 3bd255fd2..3c002cc52 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.13", + "version": "4.0.14", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.13", + "@ui5-language-assistant/language-server": "4.0.14", "vscode-languageclient": "8.0.2" }, "devDependencies": { From 892d2e292a766c34eaee3e70cecc15b3f117667d Mon Sep 17 00:00:00 2001 From: vadson71 Date: Tue, 28 Feb 2023 09:27:59 +0200 Subject: [PATCH 57/75] Update release_manual.yaml pat usage --- .github/workflows/release_manual.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index b2bdc71d0..9adce49bd 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -72,7 +72,7 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - # token: ${{ secrets.ACCESS_PAT }} ???? doesn't work in fork + token: ${{ secrets.ACCESS_PAT }} - name: Setup node uses: actions/setup-node@v3 with: From c1fd7a1877a0854879c4cfe97415d98eb4dc26ca Mon Sep 17 00:00:00 2001 From: vadson71 Date: Tue, 28 Feb 2023 09:45:23 +0200 Subject: [PATCH 58/75] Update release_manual.yaml pat test --- .github/workflows/release_manual.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index 9adce49bd..bf1fa239b 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -68,6 +68,7 @@ jobs: outputs: changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output steps: + - run: echo ${{ secrets.ACCESS_PAT }} - name: Checkout code repository uses: actions/checkout@v3 with: From c88d913e10b5e24d3e3e106528d4c4cb2ccab377 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Tue, 28 Feb 2023 10:02:10 +0200 Subject: [PATCH 59/75] feat: pat test full cycle --- .changeset/strange-chairs-invite.md | 6 ++++++ packages/fe/api.d.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changeset/strange-chairs-invite.md diff --git a/.changeset/strange-chairs-invite.md b/.changeset/strange-chairs-invite.md new file mode 100644 index 000000000..4c35b5850 --- /dev/null +++ b/.changeset/strange-chairs-invite.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +yyyyy diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index b57efaa85..6587fc479 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 10 +// test change 11 From 745906a2cde53fe6d49714f8a0e1ee50f9150760 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Tue, 28 Feb 2023 10:04:38 +0200 Subject: [PATCH 60/75] fix: cleanup --- .github/workflows/release_manual.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/release_manual.yaml index bf1fa239b..9adce49bd 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/release_manual.yaml @@ -68,7 +68,6 @@ jobs: outputs: changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output steps: - - run: echo ${{ secrets.ACCESS_PAT }} - name: Checkout code repository uses: actions/checkout@v3 with: From 1fa75fe413dd252101991e84ea94b7b5ae8c3ca0 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 28 Feb 2023 08:06:13 +0000 Subject: [PATCH 61/75] chore: apply latest changesets --- .changeset/strange-chairs-invite.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/strange-chairs-invite.md diff --git a/.changeset/strange-chairs-invite.md b/.changeset/strange-chairs-invite.md deleted file mode 100644 index 4c35b5850..000000000 --- a/.changeset/strange-chairs-invite.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -yyyyy diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index 77af12b84..4241ed667 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.15 + +### Patch Changes + +- c88d913: yyyyy + ## 4.0.14 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index b6db24b75..ade406bc9 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.14", + "version": "4.0.15", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index fabaa71fc..d9e084a7d 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.15 + +### Patch Changes + +- Updated dependencies [c88d913] + - @ui5-language-assistant/fe@4.0.15 + ## 4.0.14 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 350190ee7..39312fefc 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.14", + "version": "4.0.15", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.14", + "@ui5-language-assistant/fe": "4.0.15", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index bc9bf18f7..fa8f7d9c9 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.14" + "vscode-ui5-language-assistant": "4.0.15" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index c9e534630..dfc12dd62 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.15 + +### Patch Changes + +- c88d913: yyyyy + - @ui5-language-assistant/language-server@4.0.15 + ## 4.0.14 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index 3c002cc52..1854e4545 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.14", + "version": "4.0.15", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.14", + "@ui5-language-assistant/language-server": "4.0.15", "vscode-languageclient": "8.0.2" }, "devDependencies": { From 3d249aceb6b6974462b0ef05d5dcedc042ab79e0 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Tue, 28 Feb 2023 10:12:54 +0200 Subject: [PATCH 62/75] fix: deploy fix --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f61163fd7..0145b8919 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,8 +3,8 @@ name: Release workflow on: push: # branches: [feat/switch-to-github-actions] - tags: 'v*' - # - 'v[0-9]+.[0-9]+.[0-9]+' + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' env: GHR_PROJECT_REPONAME: ui5-language-assistant @@ -12,7 +12,7 @@ env: jobs: build: - if: github.repository == 'vadson71/ui5-language-assistant-vk' && github.ref == 'refs/heads/feat/switch-to-github-actions' + if: github.repository == 'vadson71/ui5-language-assistant-vk' && contains(github.ref, 'refs/tags/v') strategy: matrix: os: [ubuntu-latest] From 4e07d309c7ee01e7f4d81530609dd5adb3a628e1 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Tue, 28 Feb 2023 10:16:57 +0200 Subject: [PATCH 63/75] feat: test --- .changeset/gentle-maps-peel.md | 6 ++++++ packages/fe/api.d.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changeset/gentle-maps-peel.md diff --git a/.changeset/gentle-maps-peel.md b/.changeset/gentle-maps-peel.md new file mode 100644 index 000000000..893f64236 --- /dev/null +++ b/.changeset/gentle-maps-peel.md @@ -0,0 +1,6 @@ +--- +"@ui5-language-assistant/fe": patch +"vscode-ui5-language-assistant": patch +--- + +xxxxx diff --git a/packages/fe/api.d.ts b/packages/fe/api.d.ts index 6587fc479..341b254eb 100644 --- a/packages/fe/api.d.ts +++ b/packages/fe/api.d.ts @@ -32,4 +32,4 @@ export function isAnnotationIssue( ): issue is AnnotationIssue; export function initI18n(i18nInstance: i18n): void; -// test change 11 +// test change 12 From fd1a1f8fe3d3723014f315ef70933f9226785e76 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 28 Feb 2023 08:19:48 +0000 Subject: [PATCH 64/75] chore: apply latest changesets --- .changeset/gentle-maps-peel.md | 6 ------ packages/fe/CHANGELOG.md | 6 ++++++ packages/fe/package.json | 2 +- packages/language-server/CHANGELOG.md | 7 +++++++ packages/language-server/package.json | 4 ++-- .../vscode-ui5-language-assistant-bas-ext/package.json | 2 +- packages/vscode-ui5-language-assistant/CHANGELOG.md | 7 +++++++ packages/vscode-ui5-language-assistant/package.json | 4 ++-- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 .changeset/gentle-maps-peel.md diff --git a/.changeset/gentle-maps-peel.md b/.changeset/gentle-maps-peel.md deleted file mode 100644 index 893f64236..000000000 --- a/.changeset/gentle-maps-peel.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ui5-language-assistant/fe": patch -"vscode-ui5-language-assistant": patch ---- - -xxxxx diff --git a/packages/fe/CHANGELOG.md b/packages/fe/CHANGELOG.md index 4241ed667..17b56f488 100644 --- a/packages/fe/CHANGELOG.md +++ b/packages/fe/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.0.16 + +### Patch Changes + +- 4e07d30: xxxxx + ## 4.0.15 ### Patch Changes diff --git a/packages/fe/package.json b/packages/fe/package.json index ade406bc9..5a95caacd 100644 --- a/packages/fe/package.json +++ b/packages/fe/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/fe", - "version": "4.0.15", + "version": "4.0.16", "private": true, "description": "UI5 LSP server extension for annotation relevant building blocks", "keywords": [], diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index d9e084a7d..a2792faec 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.16 + +### Patch Changes + +- Updated dependencies [4e07d30] + - @ui5-language-assistant/fe@4.0.16 + ## 4.0.15 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index 39312fefc..625ba3907 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,6 +1,6 @@ { "name": "@ui5-language-assistant/language-server", - "version": "4.0.15", + "version": "4.0.16", "private": true, "description": "UI5 Language Server", "keywords": [ @@ -27,7 +27,7 @@ "dependencies": { "@sap/swa-for-sapbas-vsx": "1.1.9", "@ui5-language-assistant/context": "4.0.4", - "@ui5-language-assistant/fe": "4.0.15", + "@ui5-language-assistant/fe": "4.0.16", "@ui5-language-assistant/semantic-model": "4.0.4", "@ui5-language-assistant/settings": "4.0.4", "@ui5-language-assistant/user-facing-text": "4.0.4", diff --git a/packages/vscode-ui5-language-assistant-bas-ext/package.json b/packages/vscode-ui5-language-assistant-bas-ext/package.json index fa8f7d9c9..9545986d9 100644 --- a/packages/vscode-ui5-language-assistant-bas-ext/package.json +++ b/packages/vscode-ui5-language-assistant-bas-ext/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "fs-extra": "10.1.0", - "vscode-ui5-language-assistant": "4.0.15" + "vscode-ui5-language-assistant": "4.0.16" }, "files": [ "*.vsix", diff --git a/packages/vscode-ui5-language-assistant/CHANGELOG.md b/packages/vscode-ui5-language-assistant/CHANGELOG.md index dfc12dd62..e0707e45b 100644 --- a/packages/vscode-ui5-language-assistant/CHANGELOG.md +++ b/packages/vscode-ui5-language-assistant/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 4.0.16 + +### Patch Changes + +- 4e07d30: xxxxx + - @ui5-language-assistant/language-server@4.0.16 + ## 4.0.15 ### Patch Changes diff --git a/packages/vscode-ui5-language-assistant/package.json b/packages/vscode-ui5-language-assistant/package.json index 1854e4545..172fb6a63 100644 --- a/packages/vscode-ui5-language-assistant/package.json +++ b/packages/vscode-ui5-language-assistant/package.json @@ -3,7 +3,7 @@ "displayName": "UI5 Language Assistant", "private": true, "description": "Language Support For SAPUI5", - "version": "4.0.15", + "version": "4.0.16", "publisher": "SAPOSS", "icon": "resources/ui5-language-assistant.png", "keywords": [ @@ -93,7 +93,7 @@ "package": "node ./scripts/package-vsix" }, "dependencies": { - "@ui5-language-assistant/language-server": "4.0.15", + "@ui5-language-assistant/language-server": "4.0.16", "vscode-languageclient": "8.0.2" }, "devDependencies": { From a2b68bdaaf5151f156db33852d308e193ef8b465 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 8 Mar 2023 14:01:51 +0200 Subject: [PATCH 65/75] fix: beta release --- .github/workflows/release.yaml | 51 +++++++++++-------- ...elease_manual.yaml => version_manual.yaml} | 27 ++++------ 2 files changed, 39 insertions(+), 39 deletions(-) rename .github/workflows/{release_manual.yaml => version_manual.yaml} (78%) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0145b8919..c4349349e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,8 +2,7 @@ name: Release workflow on: push: - # branches: [feat/switch-to-github-actions] - tags: + tags: - 'v[0-9]+.[0-9]+.[0-9]+' env: @@ -16,13 +15,13 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [14.x] # TODO: run for all versions + node-version: [14.x, 16.x, 18.x] runs-on: ${{ matrix.os }} outputs: changes: ${{ steps.package-version.outputs.current-version }} # map step output to job output steps: - - run: echo ${{env.BRANCH_NAME}} + - run: echo ${{env.BRANCH_NAME}} # TODO remove - run: echo ${{github.ref }} - name: Checkout code repository uses: actions/checkout@v3 @@ -37,7 +36,7 @@ jobs: - name: Run build uses: borales/actions-yarn@v4 with: - cmd: build:quick # will run `yarn run ci` command + cmd: build:ck # TODO: will run `yarn run ci` command - name: Upload vsix artifact uses: actions/upload-artifact@v3 @@ -59,7 +58,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [14.x] # TODO: run for all versions + node-version: [14.x] runs-on: ${{ matrix.os }} needs: build steps: @@ -100,10 +99,10 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [14.x] # TODO: run for all versions + node-version: [14.x] runs-on: ${{ matrix.os }} needs: build - + steps: - name: Prerequisite run: sudo apt-get install libxss1 @@ -113,31 +112,37 @@ jobs: with: fetch-depth: 0 # will fetch all history - # Pure lockfile simply doesn't write the lockfile if it changed. + # Pure lockfile simply doesn't write the lockfile if it has changes. - name: Run install uses: borales/actions-yarn@v4 with: cmd: install --pure-lockfile - # TODO: reuse stored generated vsix - - name: Run build - uses: borales/actions-yarn@v4 + # reuse stored generated vsix + - name: Download artifact + uses: actions/download-artifact@v3 with: - cmd: build:quick # will run `yarn run ci` command + name: vscode-extension-file + path: ./packages/vscode-ui5-language-assistant-bas-ext - - name: Copy vsix - uses: borales/actions-yarn@v4 - with: - cmd: ci # will run `yarn run ci` command - dir: './packages/vscode-ui5-language-assistant-bas-ext' + + # - name: Run build + # uses: borales/actions-yarn@v4 + # with: + # cmd: build:quick # will run `yarn run ci` command + + # - name: Copy vsix + # uses: borales/actions-yarn@v4 + # with: + # cmd: ci # will run `yarn run ci` command + # dir: './packages/vscode-ui5-language-assistant-bas-ext' - name: Check run: ls ./packages/vscode-ui5-language-assistant-bas-ext -la - name: Prepare .npmrc run: - echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" - #>> ~/.npmrc + echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc # To help debug when lerna detects changes to the working tree and fails the publish - name: Status @@ -145,4 +150,8 @@ jobs: # - name: Publish # # https://github.com/lerna/lerna/issues/2788 - # - run: yarn run release:publish --no-verify-access + # uses: borales/actions-yarn@v4 + # with: + # cmd: run release:publish --no-verify-access + + \ No newline at end of file diff --git a/.github/workflows/release_manual.yaml b/.github/workflows/version_manual.yaml similarity index 78% rename from .github/workflows/release_manual.yaml rename to .github/workflows/version_manual.yaml index 9adce49bd..24789be93 100644 --- a/.github/workflows/release_manual.yaml +++ b/.github/workflows/version_manual.yaml @@ -5,7 +5,7 @@ name: Version bump for release workflow # workflow_dispatch: # inputs: # job_name: -# description: 'Action' +# description: 'Releases new version ' # required: true # type: choice # default: 'version' @@ -19,12 +19,11 @@ on: jobs: build: - # if: inputs.job_name == 'release' && github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master' strategy: matrix: os: [ubuntu-latest] - node-version: [14.x] # TODO: run for all versions + node-version: [14.x, 16.x, 18.x] runs-on: ${{ matrix.os }} steps: @@ -36,19 +35,10 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: install # will run `yarn install` command - # env: - # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed - name: Run build uses: borales/actions-yarn@v4 with: - cmd: run build:quick # will run `yarn run ci` command - - # - name: Upload vsix artifact - # uses: actions/upload-artifact@v3 - # with: - # name: vscode-extension-file - # path: ./packages/vscode-ui5-language-assistant/vscode-ui5-language-assistant*.vsix - # if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` + cmd: run build:quick # TODO will run `yarn run ci` command compliance: runs-on: ubuntu-latest @@ -61,22 +51,22 @@ jobs: version: # Run version job only on pushes to the main branch. The job depends on completion of the build job. - #if: inputs.job_name == 'version' # && github.ref == 'refs/heads/master' runs-on: ubuntu-latest - # needs: build, compliance - outputs: - changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output + needs: build, compliance + # outputs: TODO remove + # changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output steps: - name: Checkout code repository uses: actions/checkout@v3 with: fetch-depth: 0 - token: ${{ secrets.ACCESS_PAT }} + token: ${{ secrets.ACCESS_PAT }} # needed to auto trigger release job - name: Setup node uses: actions/setup-node@v3 with: node-version: 14 + # TODO: cache node modules - name: Run install uses: borales/actions-yarn@v4 @@ -88,6 +78,7 @@ jobs: run: | echo ::set-output name=changes::$(npm run ci:version 2>&1 | grep -q 'No unreleased changesets found' && echo 'false' || echo 'true') git status + # TODO: remove - name: Changeset output run: echo ${{steps.changesetVersion.outputs.changes}} From 0765934f8b86942d6f1375460f11d03d047721be Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 8 Mar 2023 14:08:39 +0200 Subject: [PATCH 66/75] fix: bug fix --- .github/workflows/version_manual.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version_manual.yaml b/.github/workflows/version_manual.yaml index 24789be93..efb2d9d47 100644 --- a/.github/workflows/version_manual.yaml +++ b/.github/workflows/version_manual.yaml @@ -53,7 +53,7 @@ jobs: # Run version job only on pushes to the main branch. The job depends on completion of the build job. # && github.ref == 'refs/heads/master' runs-on: ubuntu-latest - needs: build, compliance + needs: [build, compliance] # outputs: TODO remove # changes: ${{ steps.changesetVersion.outputs.changes }} # map step output to job output steps: From ab5924f022f2258d6b8a66ea74617e8b58ac468a Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 8 Mar 2023 17:22:21 +0200 Subject: [PATCH 67/75] feat: sonar check step added --- .github/workflows/version_manual.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/version_manual.yaml b/.github/workflows/version_manual.yaml index efb2d9d47..021870fe2 100644 --- a/.github/workflows/version_manual.yaml +++ b/.github/workflows/version_manual.yaml @@ -39,6 +39,12 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: run build:quick # TODO will run `yarn run ci` command + - name: Run SonarCloud scan + if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x' + uses: sonarsource/sonarcloud-github-action@master + env: + GITHUB_TOKEN: ${{ secrets.ACCESS_PAT }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} compliance: runs-on: ubuntu-latest From a307ecadeaea624e09b0a68ef5fed108febb5f92 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 8 Mar 2023 17:27:39 +0200 Subject: [PATCH 68/75] feat: debug --- .github/workflows/version_manual.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version_manual.yaml b/.github/workflows/version_manual.yaml index 021870fe2..6170de013 100644 --- a/.github/workflows/version_manual.yaml +++ b/.github/workflows/version_manual.yaml @@ -19,7 +19,7 @@ on: jobs: build: - if: github.ref == 'refs/heads/master' + #if: github.ref == 'refs/heads/master' strategy: matrix: os: [ubuntu-latest] From 9d09cee2d43d9d890eab85aeb25d1dbe12a182cd Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 8 Mar 2023 18:14:01 +0200 Subject: [PATCH 69/75] feat: sonar config added --- sonar-project.properties | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 sonar-project.properties diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 000000000..d5a4e44ab --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,39 @@ +sonar.organization=sap-1 +sonar.projectKey=SAP_ui5-language-assistant +sonar.sources=. +sonar.inclusions=**/*.ts +sonar.exclusions=**/*.test.ts, **/examples/**/*, **/templates/**/*, **/test/**/*, **/*-spec.ts +sonar.cpd.exclusions=**/i18n.ts +sonar.tests=. +sonar.test.inclusions=**/*.test.ts, **/*-spec.ts +sonar.javascript.lcov.reportPaths=packages/context/coverage/lcov.info, \ + packages/fe/coverage/lcov.info, \ + packages/btp-utils/coverage/lcov.info, \ + packages/language-server/coverage/lcov.info, \ + packages/logic-utils/coverage/lcov.info, \ + packages/semantic-model/coverage/lcov.info, \ + packages/semantic-model-types/coverage/lcov.info, \ + packages/settings/coverage/lcov.info, \ + packages/user-facing-text/coverage/lcov.info, \ + packages/vscode-ui5-language-assistant/coverage/lcov.info, \ + packages/vscode-ui5-language-assistant-bas-ext/coverage/lcov.info, \ + packages/xml-views-completion/coverage/lcov.info, \ + packages/xml-views-quick-fix/coverage/lcov.info, \ + packages/xml-views-tooltip/coverage/lcov.info, \ + packages/xml-views-validation/coverage/lcov.info +sonar.testExecutionReportPaths=packages/context/coverage/sonar-report.xml, \ + packages/fe/coverage/sonar-report.xml, \ + packages/btp-utils/coverage/sonar-report.xml, \ + packages/language-server/coverage/sonar-report.xml, \ + packages/logic-utils/coverage/sonar-report.xml, \ + packages/semantic-model/coverage/sonar-report.xml, \ + packages/semantic-model-types/coverage/sonar-report.xml, \ + packages/settings/coverage/sonar-report.xml, \ + packages/user-facing-text/coverage/sonar-report.xml, \ + packages/vscode-ui5-language-assistant/coverage/sonar-report.xml, \ + packages/vscode-ui5-language-assistant-bas-ext/coverage/sonar-report.xml, \ + packages/xml-views-completion/coverage/sonar-report.xml, \ + packages/xml-views-quick-fix/coverage/sonar-report.xml, \ + packages/xml-views-tooltip/coverage/sonar-report.xml, \ + packages/xml-views-validation/coverage/sonar-report.xml + \ No newline at end of file From bfbe12bdeee7ef851fe4012f6179872107b1904f Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 8 Mar 2023 22:25:40 +0200 Subject: [PATCH 70/75] feat: circle ci deactivated --- .circleci/config.yml => .circleci_/config.yml_ | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .circleci/config.yml => .circleci_/config.yml_ (100%) diff --git a/.circleci/config.yml b/.circleci_/config.yml_ similarity index 100% rename from .circleci/config.yml rename to .circleci_/config.yml_ From a4fed4cce093efe006481350e0e086b31ee1d555 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 8 Mar 2023 22:37:39 +0200 Subject: [PATCH 71/75] fix: sonar config fix --- sonar-project.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-project.properties b/sonar-project.properties index d5a4e44ab..4916c8f6a 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,5 +1,5 @@ sonar.organization=sap-1 -sonar.projectKey=SAP_ui5-language-assistant +sonar.projectKey=vadson71_ui5-language-assistant-vk sonar.sources=. sonar.inclusions=**/*.ts sonar.exclusions=**/*.test.ts, **/examples/**/*, **/templates/**/*, **/test/**/*, **/*-spec.ts From cf6c68915f023e28645bc39039185d28f3bca63f Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 8 Mar 2023 23:06:02 +0200 Subject: [PATCH 72/75] fix: sonar script correction --- sonar-project.properties | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/sonar-project.properties b/sonar-project.properties index 4916c8f6a..79645b926 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -6,8 +6,7 @@ sonar.exclusions=**/*.test.ts, **/examples/**/*, **/templates/**/*, **/test/**/* sonar.cpd.exclusions=**/i18n.ts sonar.tests=. sonar.test.inclusions=**/*.test.ts, **/*-spec.ts -sonar.javascript.lcov.reportPaths=packages/context/coverage/lcov.info, \ - packages/fe/coverage/lcov.info, \ +sonar.javascript.lcov.reportPaths=packages/fe/coverage/lcov.info, \ packages/btp-utils/coverage/lcov.info, \ packages/language-server/coverage/lcov.info, \ packages/logic-utils/coverage/lcov.info, \ @@ -16,13 +15,11 @@ sonar.javascript.lcov.reportPaths=packages/context/coverage/lcov.info, \ packages/settings/coverage/lcov.info, \ packages/user-facing-text/coverage/lcov.info, \ packages/vscode-ui5-language-assistant/coverage/lcov.info, \ - packages/vscode-ui5-language-assistant-bas-ext/coverage/lcov.info, \ packages/xml-views-completion/coverage/lcov.info, \ packages/xml-views-quick-fix/coverage/lcov.info, \ packages/xml-views-tooltip/coverage/lcov.info, \ packages/xml-views-validation/coverage/lcov.info -sonar.testExecutionReportPaths=packages/context/coverage/sonar-report.xml, \ - packages/fe/coverage/sonar-report.xml, \ +sonar.testExecutionReportPaths=packages/fe/coverage/sonar-report.xml, \ packages/btp-utils/coverage/sonar-report.xml, \ packages/language-server/coverage/sonar-report.xml, \ packages/logic-utils/coverage/sonar-report.xml, \ @@ -31,7 +28,6 @@ sonar.testExecutionReportPaths=packages/context/coverage/sonar-report.xml, \ packages/settings/coverage/sonar-report.xml, \ packages/user-facing-text/coverage/sonar-report.xml, \ packages/vscode-ui5-language-assistant/coverage/sonar-report.xml, \ - packages/vscode-ui5-language-assistant-bas-ext/coverage/sonar-report.xml, \ packages/xml-views-completion/coverage/sonar-report.xml, \ packages/xml-views-quick-fix/coverage/sonar-report.xml, \ packages/xml-views-tooltip/coverage/sonar-report.xml, \ From a22be6ae3a60c11753c566e41ae9b14ea95a2443 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 8 Mar 2023 23:25:03 +0200 Subject: [PATCH 73/75] fix: script fix --- .github/workflows/version_manual.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version_manual.yaml b/.github/workflows/version_manual.yaml index 6170de013..5ae0e044a 100644 --- a/.github/workflows/version_manual.yaml +++ b/.github/workflows/version_manual.yaml @@ -38,7 +38,7 @@ jobs: - name: Run build uses: borales/actions-yarn@v4 with: - cmd: run build:quick # TODO will run `yarn run ci` command + cmd: ci # will run `yarn run ci` command - name: Run SonarCloud scan if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x' uses: sonarsource/sonarcloud-github-action@master From dc429a80b441a76bb446746fb7d3f54dfa11b784 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Wed, 8 Mar 2023 23:38:28 +0200 Subject: [PATCH 74/75] fix: sonar reports analysis off --- sonar-project.properties | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/sonar-project.properties b/sonar-project.properties index 79645b926..cdd5442a0 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -19,17 +19,5 @@ sonar.javascript.lcov.reportPaths=packages/fe/coverage/lcov.info, \ packages/xml-views-quick-fix/coverage/lcov.info, \ packages/xml-views-tooltip/coverage/lcov.info, \ packages/xml-views-validation/coverage/lcov.info -sonar.testExecutionReportPaths=packages/fe/coverage/sonar-report.xml, \ - packages/btp-utils/coverage/sonar-report.xml, \ - packages/language-server/coverage/sonar-report.xml, \ - packages/logic-utils/coverage/sonar-report.xml, \ - packages/semantic-model/coverage/sonar-report.xml, \ - packages/semantic-model-types/coverage/sonar-report.xml, \ - packages/settings/coverage/sonar-report.xml, \ - packages/user-facing-text/coverage/sonar-report.xml, \ - packages/vscode-ui5-language-assistant/coverage/sonar-report.xml, \ - packages/xml-views-completion/coverage/sonar-report.xml, \ - packages/xml-views-quick-fix/coverage/sonar-report.xml, \ - packages/xml-views-tooltip/coverage/sonar-report.xml, \ - packages/xml-views-validation/coverage/sonar-report.xml + \ No newline at end of file From 414b1447d05534108e71d0c147f7109a279ca905 Mon Sep 17 00:00:00 2001 From: Vadim Koblov Date: Thu, 9 Mar 2023 00:43:00 +0200 Subject: [PATCH 75/75] feat: sq excluded --- .github/workflows/version_manual.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/version_manual.yaml b/.github/workflows/version_manual.yaml index 5ae0e044a..c123d77ef 100644 --- a/.github/workflows/version_manual.yaml +++ b/.github/workflows/version_manual.yaml @@ -39,12 +39,12 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: ci # will run `yarn run ci` command - - name: Run SonarCloud scan - if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x' - uses: sonarsource/sonarcloud-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.ACCESS_PAT }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + # - name: Run SonarCloud scan + # if: matrix.os == 'ubuntu-latest' && matrix.node-version == '14.x' + # uses: sonarsource/sonarcloud-github-action@master + # env: + # GITHUB_TOKEN: ${{ secrets.ACCESS_PAT }} + # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} compliance: runs-on: ubuntu-latest