diff --git a/.github/workflows/alert-open-prs.yml b/.github/workflows/alert-open-prs.yml index c6eb61a4..3cef0ac7 100644 --- a/.github/workflows/alert-open-prs.yml +++ b/.github/workflows/alert-open-prs.yml @@ -24,7 +24,7 @@ jobs: fi - name: Alert Slack on old PRs if: ${{ steps.old_prs.outputs.pr_links }} - uses: slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001 + uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e env: SLACK_WEBHOOK_URL: ${{ secrets.ALERT_PRS_SLACK_WEBHOOK_URL }} with: diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml index 426ee7e5..b9a777ea 100644 --- a/.github/workflows/auto-approve.yml +++ b/.github/workflows/auto-approve.yml @@ -18,7 +18,7 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'auto-approve') && github.event.pull_request.draft == false steps: - name: Checkout PR - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} diff --git a/.github/workflows/auto-close-community-issues.yml b/.github/workflows/auto-close-community-issues.yml index 14a9b165..dd69130d 100644 --- a/.github/workflows/auto-close-community-issues.yml +++ b/.github/workflows/auto-close-community-issues.yml @@ -9,11 +9,12 @@ jobs: autoclose: runs-on: ubuntu-latest permissions: + contents: read issues: write if: github.event.issue.user.login != 'team-tf-cdk' && !contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR", "CONTRIBUTOR"]'), github.event.issue.author_association) steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - name: Auto-close issues by non-collaborators env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/auto-close-community-prs.yml b/.github/workflows/auto-close-community-prs.yml index 0b3d2ea5..397596f2 100644 --- a/.github/workflows/auto-close-community-prs.yml +++ b/.github/workflows/auto-close-community-prs.yml @@ -2,18 +2,19 @@ name: auto-close-community-prs on: - pull_request: + pull_request_target: types: - opened jobs: autoclose: runs-on: ubuntu-latest permissions: + contents: read pull-requests: write if: github.event.pull_request.user.login != 'team-tf-cdk' && !contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR", "CONTRIBUTOR"]'), github.event.pull_request.author_association) steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - name: Auto-close PRs by non-collaborators env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml index 0a4039d9..f2397e1c 100644 --- a/.github/workflows/automerge.yml +++ b/.github/workflows/automerge.yml @@ -18,7 +18,7 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'automerge') && !contains(github.event.pull_request.labels.*.name, 'do-not-merge') && github.event.pull_request.draft == false steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - name: Turn on automerge for this PR by a trusted user or bot if: github.event.pull_request.user.login == 'team-tf-cdk' || contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.pull_request.author_association) || github.actor == 'dependabot[bot]' env: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4ae05e5f..dba5736e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,13 +15,13 @@ jobs: CI: "true" steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - name: Install dependencies @@ -44,7 +44,7 @@ jobs: working-directory: ./ - name: Upload patch if: steps.self_mutation.outputs.self_mutation_happened - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 + uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 with: name: .repo.patch path: .repo.patch @@ -59,7 +59,7 @@ jobs: run: cd dist && getfacl -R . > permissions-backup.acl continue-on-error: true - name: Upload artifact - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 + uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 with: name: build-artifact path: dist @@ -72,13 +72,13 @@ jobs: if: always() && needs.build.outputs.self_mutation_happened && !(github.event.pull_request.head.repo.full_name != github.repository) steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b with: token: ${{ secrets.PROJEN_GITHUB_TOKEN }} ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Download patch - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: .repo.patch path: ${{ runner.temp }} @@ -101,11 +101,11 @@ jobs: permissions: {} if: "! needs.build.outputs.self_mutation_happened" steps: - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist @@ -126,15 +126,15 @@ jobs: permissions: {} if: "! needs.build.outputs.self_mutation_happened" steps: - - uses: actions/setup-java@9704b39bf258b59bc04b50fa2dd55e9ed76b47a8 + - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 with: distribution: temurin java-version: 11.x - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist @@ -155,14 +155,14 @@ jobs: permissions: {} if: "! needs.build.outputs.self_mutation_happened" steps: - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c + - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d with: python-version: 3.x - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist @@ -183,14 +183,14 @@ jobs: permissions: {} if: "! needs.build.outputs.self_mutation_happened" steps: - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 with: dotnet-version: 3.x - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist @@ -211,14 +211,14 @@ jobs: permissions: {} if: "! needs.build.outputs.self_mutation_happened" steps: - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 with: go-version: ^1.16.0 - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist diff --git a/.github/workflows/force-release.yml b/.github/workflows/force-release.yml index d9d9502b..97ce88a7 100644 --- a/.github/workflows/force-release.yml +++ b/.github/workflows/force-release.yml @@ -23,7 +23,7 @@ jobs: CI: "true" steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b with: ref: ${{ inputs.sha }} fetch-depth: 0 @@ -34,7 +34,7 @@ jobs: git config user.name "github-actions" git config user.email "github-actions@github.com" - name: Setup Node.js - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - name: Install dependencies @@ -45,7 +45,7 @@ jobs: run: cd dist && getfacl -R . > permissions-backup.acl continue-on-error: true - name: Upload artifact - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 + uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 with: name: build-artifact path: dist @@ -59,7 +59,7 @@ jobs: CI: "true" steps: - name: Setup Node.js - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - name: Setup Go @@ -67,7 +67,7 @@ jobs: with: go-version: ^1.16.0 - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist diff --git a/.github/workflows/provider-upgrade.yml b/.github/workflows/provider-upgrade.yml index b2e2dfe4..80ae27ab 100644 --- a/.github/workflows/provider-upgrade.yml +++ b/.github/workflows/provider-upgrade.yml @@ -3,7 +3,7 @@ name: provider-upgrade on: schedule: - - cron: 0 3 * * * + - cron: 4 3 * * * workflow_dispatch: {} jobs: upgrade: @@ -17,7 +17,7 @@ jobs: NODE_OPTIONS: --max-old-space-size=6656 steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - run: yarn install - id: check_version run: yarn check-if-new-provider-version @@ -53,7 +53,7 @@ jobs: run: yarn docgen - name: Create Pull Request if: ${{ steps.check_version.outputs.new_version == 'available' }} - uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc + uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e with: branch: auto/provider-upgrade commit-message: "${{ steps.release.outputs.type }}: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`" diff --git a/.github/workflows/pull-request-lint.yml b/.github/workflows/pull-request-lint.yml index e2540b4f..198f451f 100644 --- a/.github/workflows/pull-request-lint.yml +++ b/.github/workflows/pull-request-lint.yml @@ -17,7 +17,7 @@ jobs: permissions: pull-requests: write steps: - - uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f + - uses: amannn/action-semantic-pull-request@cfb60706e18bc85e8aec535e3c577abe8f70378e env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 88f419f3..39c21fb9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: CI: "true" steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b with: fetch-depth: 0 - name: Set git config safe.directory @@ -28,7 +28,7 @@ jobs: git config user.name "github-actions" git config user.email "github-actions@github.com" - name: Setup Node.js - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - name: Install dependencies @@ -51,7 +51,7 @@ jobs: continue-on-error: true - name: Upload artifact if: ${{ steps.git_remote.outputs.latest_commit == github.sha }} - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 + uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 with: name: build-artifact path: dist @@ -66,7 +66,7 @@ jobs: contents: read steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - name: Install run: yarn install - name: Check deprecation status @@ -98,11 +98,11 @@ jobs: issues: write if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist @@ -141,11 +141,11 @@ jobs: issues: write if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist @@ -188,15 +188,15 @@ jobs: issues: write if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-java@9704b39bf258b59bc04b50fa2dd55e9ed76b47a8 + - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 with: distribution: temurin java-version: 11.x - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist @@ -243,14 +243,14 @@ jobs: issues: write if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c + - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d with: python-version: 3.x - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist @@ -292,14 +292,14 @@ jobs: issues: write if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 with: dotnet-version: 3.x - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist @@ -340,14 +340,14 @@ jobs: issues: write if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 with: go-version: ^1.16.0 - name: Download build artifacts - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: build-artifact path: dist diff --git a/.github/workflows/upgrade-main.yml b/.github/workflows/upgrade-main.yml index b9406003..06022372 100644 --- a/.github/workflows/upgrade-main.yml +++ b/.github/workflows/upgrade-main.yml @@ -4,7 +4,7 @@ name: upgrade-main on: workflow_dispatch: {} schedule: - - cron: 0 0 * * 1 + - cron: 4 1 * * 1 jobs: upgrade: name: Upgrade @@ -15,13 +15,13 @@ jobs: patch_created: ${{ steps.create_patch.outputs.patch_created }} steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b with: ref: main - name: Set git config safe.directory run: git config --global --add safe.directory $(pwd) - name: Setup Node.js - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 + uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 with: node-version: 18.12.0 - name: Install dependencies @@ -36,7 +36,7 @@ jobs: working-directory: ./ - name: Upload patch if: steps.create_patch.outputs.patch_created - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 + uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 with: name: .repo.patch path: .repo.patch @@ -50,13 +50,13 @@ jobs: if: ${{ needs.upgrade.outputs.patch_created }} steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b with: ref: main - name: Set git config safe.directory run: git config --global --add safe.directory $(pwd) - name: Download patch - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e with: name: .repo.patch path: ${{ runner.temp }} @@ -68,7 +68,7 @@ jobs: git config user.email "github-team-tf-cdk@hashicorp.com" - name: Create Pull Request id: create-pr - uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc + uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e with: token: ${{ secrets.PROJEN_GITHUB_TOKEN }} commit-message: |- diff --git a/.projen/deps.json b/.projen/deps.json index f79597dd..cafcdf67 100644 --- a/.projen/deps.json +++ b/.projen/deps.json @@ -50,7 +50,7 @@ }, { "name": "jsii-rosetta", - "version": "~5.2.0", + "version": "~5.3.0", "type": "build" }, { diff --git a/package.json b/package.json index 6af61812..17ebe25c 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ "jsii-diff": "^1.97.0", "jsii-docgen": "^10.2.3", "jsii-pacmak": "^1.97.0", - "jsii-rosetta": "~5.2.0", + "jsii-rosetta": "~5.3.0", "projen": "^0.81.4", "semver": "^7.5.3", "standard-version": "^9", diff --git a/yarn.lock b/yarn.lock index bbd6abd9..8149ac76 100644 --- a/yarn.lock +++ b/yarn.lock @@ -209,9 +209,9 @@ jsii-srcmak "0.1.1039" "@cdktf/provider-project@^0.5.0": - version "0.5.35" - resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.5.35.tgz#e3ab40cd353cf34562e01c67e68c9c6af3fcff3b" - integrity sha512-qUt90c7+kf7caI2YRVZLD0YcMB6M1IKTfh6Hb1tpuNqigzi+X4olI2p03bl2QV+MyuDdFyPOWEHcEohzeOEOhQ== + version "0.5.36" + resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.5.36.tgz#716e28be3455f8a661554c25bbea32c506649199" + integrity sha512-E59veBZ++HB69iSGVplcINrIBtutoONTrnBpOyifkJ51mRtfLSPSfqAzPUYkgQDaRoyMYIlEkP/EwMoS9xvoeg== dependencies: change-case "^4.1.2" fs-extra "^10.1.0" @@ -424,14 +424,6 @@ "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" -"@jsii/check-node@1.93.0": - version "1.93.0" - resolved "https://registry.yarnpkg.com/@jsii/check-node/-/check-node-1.93.0.tgz#3adcc6012654bb69fb8dc508e757b83ea9cd1708" - integrity sha512-NLn1Js6wEG2hYjH7gE5Q8s/hPlp3I+KhK/T8ykGdYVod7iODnk/0QVSZsk2iEyuw8NzvvgXUDBWreadUIWSz+g== - dependencies: - chalk "^4.1.2" - semver "^7.5.4" - "@jsii/check-node@1.95.0": version "1.95.0" resolved "https://registry.yarnpkg.com/@jsii/check-node/-/check-node-1.95.0.tgz#7cfc3c3792f199ab205ea9411223ee9ea1c37658" @@ -456,7 +448,7 @@ chalk "^4.1.2" semver "^7.5.4" -"@jsii/spec@1.97.0", "@jsii/spec@^1.93.0", "@jsii/spec@^1.95.0", "@jsii/spec@^1.96.0", "@jsii/spec@^1.97.0": +"@jsii/spec@1.97.0", "@jsii/spec@^1.95.0", "@jsii/spec@^1.96.0", "@jsii/spec@^1.97.0": version "1.97.0" resolved "https://registry.yarnpkg.com/@jsii/spec/-/spec-1.97.0.tgz#951109ad43bdd7c1ea2de96a74e4fa645bd9a413" integrity sha512-5YIq1fgOtToH6eUyTNlqAXuZzUzTD6wBukE7m5DpsxHjQlbR7TVP750FcPqH9qCitCwaePPl5IdCZJ/AS0IwEA== @@ -2904,22 +2896,22 @@ jsii-rosetta@^1.95.0, jsii-rosetta@^1.97.0: workerpool "^6.5.1" yargs "^16.2.0" -jsii-rosetta@~5.2.0: - version "5.2.11" - resolved "https://registry.yarnpkg.com/jsii-rosetta/-/jsii-rosetta-5.2.11.tgz#7b8ccb229332674c3a4fc570850fb903c6fec62c" - integrity sha512-MtzCWfXX835kUc6sNnncXzpc5g88MdS+paWj3n97DnYnJQCl3OMxytkG1jjICJE0oxlrbvC44OiJb28+0jEmAg== +jsii-rosetta@~5.3.0: + version "5.3.36" + resolved "https://registry.yarnpkg.com/jsii-rosetta/-/jsii-rosetta-5.3.36.tgz#7652a42c60da23016c5d273fe459d5aa79ce5105" + integrity sha512-OGDHG4lhKFWrKLYueGcJra6QpRQot4nL6U1QbYo35irVLILP/GomUYkSDPRq8cwFQ4g74TqBvetfMQDffY3AsA== dependencies: - "@jsii/check-node" "1.93.0" - "@jsii/spec" "^1.93.0" + "@jsii/check-node" "1.96.0" + "@jsii/spec" "^1.96.0" "@xmldom/xmldom" "^0.8.10" chalk "^4" - commonmark "^0.30.0" + commonmark "^0.31.0" fast-glob "^3.3.2" - jsii "~5.2.5" - semver "^7.5.4" + jsii "~5.3.0" + semver "^7.6.0" semver-intersect "^1.5.0" stream-json "^1.8.0" - typescript "~5.2.2" + typescript "~5.3" workerpool "^6.5.1" yargs "^17.7.2" @@ -2972,25 +2964,6 @@ jsii@5.3.29: typescript "~5.3" yargs "^17.7.2" -jsii@~5.2.5: - version "5.2.44" - resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.2.44.tgz#7a768412f1a28f5f1ff3e92ab5f5b7e7430c3ae1" - integrity sha512-Z7sTqYzQ5yoJU/ie+svjqSzrOF5rl4pW/bojvCb/7MfJ+SaGqhMUQMxQGTfqmSvauME8JoVYqwMH89x6qreJ8A== - dependencies: - "@jsii/check-node" "1.93.0" - "@jsii/spec" "^1.93.0" - case "^1.6.3" - chalk "^4" - downlevel-dts "^0.11.0" - fast-deep-equal "^3.1.3" - log4js "^6.9.1" - semver "^7.5.4" - semver-intersect "^1.5.0" - sort-json "^2.0.1" - spdx-license-list "^6.8.0" - typescript "~5.2" - yargs "^17.7.2" - jsii@~5.3.0, jsii@~5.3.18: version "5.3.34" resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.3.34.tgz#13033685481feaa91757fcb56144ddc2db6558e4" @@ -4592,11 +4565,6 @@ typescript@~3.9.10: resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== -typescript@~5.2, typescript@~5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78" - integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w== - typescript@~5.3, typescript@~5.3.0: version "5.3.3" resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37"