From a0679fdc2a3e78544deadab20a022cd34883339b Mon Sep 17 00:00:00 2001 From: team-tf-cdk Date: Mon, 3 Oct 2022 00:18:00 +0000 Subject: [PATCH] chore(deps): upgrade dependencies Upgrades project dependencies. See details in [workflow run]. [Workflow Run]: https://github.com/cdktf/cdktf-provider-acme/actions/runs/3170640323 ------ *Automatically created by projen via the "upgrade-main" workflow* Signed-off-by: team-tf-cdk --- .github/workflows/build.yml | 26 ++++++- .github/workflows/next-cdktf-version-pr.yml | 4 +- .github/workflows/provider-upgrade.yml | 4 +- .github/workflows/release.yml | 70 +++++++++++------ .github/workflows/upgrade-main.yml | 8 +- .npmignore | 1 + package.json | 2 +- yarn.lock | 85 ++++++++++++--------- 8 files changed, 125 insertions(+), 75 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a2b22f26..5ad6da69 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,13 +27,13 @@ jobs: run: yarn install --check-files - name: build run: npx projen build - - id: self_mutation - name: Find mutations + - name: Find mutations + id: self_mutation run: |- git add . git diff --staged --patch --exit-code > .repo.patch || echo "::set-output name=self_mutation_happened::true" - - if: steps.self_mutation.outputs.self_mutation_happened - name: Upload patch + - name: Upload patch + if: steps.self_mutation.outputs.self_mutation_happened uses: actions/upload-artifact@v2 with: name: .repo.patch @@ -44,6 +44,9 @@ jobs: echo "::error::Files were changed during build (see build log). If this was triggered from a fork, you will need to update your branch." cat .repo.patch exit 1 + - name: Backup artifact permissions + run: cd dist && getfacl -R . > permissions-backup.acl + continue-on-error: true - name: Upload artifact uses: actions/upload-artifact@v2.1.1 with: @@ -94,6 +97,9 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Install Dependencies @@ -120,6 +126,9 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Install Dependencies @@ -145,6 +154,9 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Install Dependencies @@ -170,6 +182,9 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Install Dependencies @@ -195,6 +210,9 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Install Dependencies diff --git a/.github/workflows/next-cdktf-version-pr.yml b/.github/workflows/next-cdktf-version-pr.yml index ea8047ef..182ea61e 100644 --- a/.github/workflows/next-cdktf-version-pr.yml +++ b/.github/workflows/next-cdktf-version-pr.yml @@ -19,6 +19,8 @@ jobs: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Remove old PR + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: |- PR_NUMBER_TO_CLOSE=$(gh pr list | grep "cdktf-next-pr" | awk '{ print $1 }') if [ -z "$PR_NUMBER_TO_CLOSE" ]; then @@ -26,8 +28,6 @@ jobs: else gh pr close $PR_NUMBER_TO_CLOSE fi - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Install run: yarn install - name: Upgrade CDKTF diff --git a/.github/workflows/provider-upgrade.yml b/.github/workflows/provider-upgrade.yml index 92aa587b..d8903210 100644 --- a/.github/workflows/provider-upgrade.yml +++ b/.github/workflows/provider-upgrade.yml @@ -17,10 +17,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - run: yarn install - - run: yarn fetch - env: + - env: CHECKPOINT_DISABLE: "1" GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: yarn fetch - run: yarn compile - run: yarn docgen - name: Create Pull Request diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 931a80eb..c35f69ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,6 +35,10 @@ jobs: - name: Check for new commits id: git_remote run: echo ::set-output name=latest_commit::"$(git ls-remote origin -h ${{ github.ref }} | cut -f1)" + - name: Backup artifact permissions + if: ${{ steps.git_remote.outputs.latest_commit == github.sha }} + run: cd dist && getfacl -R . > permissions-backup.acl + continue-on-error: true - name: Upload artifact if: ${{ steps.git_remote.outputs.latest_commit == github.sha }} uses: actions/upload-artifact@v2.1.1 @@ -60,29 +64,32 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Collect GitHub Metadata run: mv .repo/dist dist - name: Release - run: errout=$(mktemp); gh release create $(cat dist/releasetag.txt) -R $GITHUB_REPOSITORY -F dist/changelog.md -t $(cat dist/releasetag.txt) --target $GITHUB_REF 2> $errout && true; exitcode=$?; if [ $exitcode -ne 0 ] && ! grep -q "Release.tag_name already exists" $errout; then cat $errout; exit $exitcode; fi env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_REPOSITORY: ${{ github.repository }} GITHUB_REF: ${{ github.ref }} + run: errout=$(mktemp); gh release create $(cat dist/releasetag.txt) -R $GITHUB_REPOSITORY -F dist/changelog.md -t $(cat dist/releasetag.txt) --target $GITHUB_REF 2> $errout && true; exitcode=$?; if [ $exitcode -ne 0 ] && ! grep -q "Release.tag_name already exists" $errout; then cat $errout; exit $exitcode; fi - name: Extract Version - if: ${{ failure() }} id: extract-version + if: ${{ failure() }} run: echo "::set-output name=VERSION::$(cat dist/version.txt)" - name: Create Issue if: ${{ failure() }} uses: imjohnbo/issue-bot@v3 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: labels: failed-release title: Publishing v${{ steps.extract-version.outputs.VERSION }} to GitHub Releases failed body: See https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} release_npm: name: Publish to npm needs: release @@ -100,6 +107,9 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Install Dependencies @@ -109,24 +119,24 @@ jobs: - name: Collect js Artifact run: mv .repo/dist dist - name: Release - run: npx -p publib@latest publib-npm env: NPM_DIST_TAG: latest NPM_REGISTRY: registry.npmjs.org NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run: npx -p publib@latest publib-npm - name: Extract Version - if: ${{ failure() }} id: extract-version + if: ${{ failure() }} run: echo "::set-output name=VERSION::$(cat dist/version.txt)" - name: Create Issue if: ${{ failure() }} uses: imjohnbo/issue-bot@v3 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: labels: failed-release title: Publishing v${{ steps.extract-version.outputs.VERSION }} to npm failed body: See https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} release_maven: name: Publish to Maven Central needs: release @@ -148,6 +158,9 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Install Dependencies @@ -157,7 +170,6 @@ jobs: - name: Collect java Artifact run: mv .repo/dist dist - name: Release - run: npx -p publib@latest publib-maven env: MAVEN_ENDPOINT: https://hashicorp.oss.sonatype.org MAVEN_GPG_PRIVATE_KEY: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} @@ -165,19 +177,20 @@ jobs: MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} MAVEN_STAGING_PROFILE_ID: ${{ secrets.MAVEN_STAGING_PROFILE_ID }} + run: npx -p publib@latest publib-maven - name: Extract Version - if: ${{ failure() }} id: extract-version + if: ${{ failure() }} run: echo "::set-output name=VERSION::$(cat dist/version.txt)" - name: Create Issue if: ${{ failure() }} uses: imjohnbo/issue-bot@v3 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: labels: failed-release title: Publishing v${{ steps.extract-version.outputs.VERSION }} to Maven Central failed body: See https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} release_pypi: name: Publish to PyPI needs: release @@ -198,6 +211,9 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Install Dependencies @@ -207,23 +223,23 @@ jobs: - name: Collect python Artifact run: mv .repo/dist dist - name: Release - run: npx -p publib@latest publib-pypi env: TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} + run: npx -p publib@latest publib-pypi - name: Extract Version - if: ${{ failure() }} id: extract-version + if: ${{ failure() }} run: echo "::set-output name=VERSION::$(cat dist/version.txt)" - name: Create Issue if: ${{ failure() }} uses: imjohnbo/issue-bot@v3 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: labels: failed-release title: Publishing v${{ steps.extract-version.outputs.VERSION }} to PyPI failed body: See https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} release_nuget: name: Publish to NuGet Gallery needs: release @@ -244,6 +260,9 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Install Dependencies @@ -253,22 +272,22 @@ jobs: - name: Collect dotnet Artifact run: mv .repo/dist dist - name: Release - run: npx -p publib@latest publib-nuget env: NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} + run: npx -p publib@latest publib-nuget - name: Extract Version - if: ${{ failure() }} id: extract-version + if: ${{ failure() }} run: echo "::set-output name=VERSION::$(cat dist/version.txt)" - name: Create Issue if: ${{ failure() }} uses: imjohnbo/issue-bot@v3 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: labels: failed-release title: Publishing v${{ steps.extract-version.outputs.VERSION }} to NuGet Gallery failed body: See https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} release_golang: name: Publish to GitHub Go Module Repository needs: release @@ -289,6 +308,9 @@ jobs: with: name: build-artifact path: dist + - name: Restore build artifact permissions + run: cd dist && setfacl --restore=permissions-backup.acl + continue-on-error: true - name: Prepare Repository run: mv dist .repo - name: Install Dependencies @@ -298,21 +320,21 @@ jobs: - name: Collect go Artifact run: mv .repo/dist dist - name: Release - run: npx -p publib@latest publib-golang env: GIT_USER_NAME: CDK for Terraform Team GIT_USER_EMAIL: github-team-tf-cdk@hashicorp.com GITHUB_TOKEN: ${{ secrets.GO_GITHUB_TOKEN }} + run: npx -p publib@latest publib-golang - name: Extract Version - if: ${{ failure() }} id: extract-version + if: ${{ failure() }} run: echo "::set-output name=VERSION::$(cat dist/version.txt)" - name: Create Issue if: ${{ failure() }} uses: imjohnbo/issue-bot@v3 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: labels: failed-release title: Publishing v${{ steps.extract-version.outputs.VERSION }} to GitHub Go Module Repository failed body: See https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/upgrade-main.yml b/.github/workflows/upgrade-main.yml index eebdbd7d..c40f02b1 100644 --- a/.github/workflows/upgrade-main.yml +++ b/.github/workflows/upgrade-main.yml @@ -26,13 +26,13 @@ jobs: run: yarn install --check-files --frozen-lockfile - name: Upgrade dependencies run: npx projen upgrade - - id: create_patch - name: Find mutations + - name: Find mutations + id: create_patch run: |- git add . git diff --staged --patch --exit-code > .repo.patch || echo "::set-output name=patch_created::true" - - if: steps.create_patch.outputs.patch_created - name: Upload patch + - name: Upload patch + if: steps.create_patch.outputs.patch_created uses: actions/upload-artifact@v2 with: name: .repo.patch diff --git a/.npmignore b/.npmignore index 03d50f1c..d91779a6 100644 --- a/.npmignore +++ b/.npmignore @@ -1,5 +1,6 @@ # ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". /.projen/ +permissions-backup.acl /dist/changelog.md /dist/version.txt /test/ diff --git a/package.json b/package.json index a56527dc..8a5e2b7b 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ "jsii-docgen": "^4.2.44", "jsii-pacmak": "^1.69.0", "npm-check-updates": "^15", - "projen": "^0.62.25", + "projen": "^0.63.3", "standard-version": "^9", "typescript": "^4.8.4" }, diff --git a/yarn.lock b/yarn.lock index c6010680..a906d2fa 100644 --- a/yarn.lock +++ b/yarn.lock @@ -101,9 +101,9 @@ jsii-srcmak "^0.1.686" "@cdktf/provider-project@^0.2.8": - version "0.2.60" - resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.2.60.tgz#939f868314edce95c6111d7848643cad0bd90e50" - integrity sha512-OZj4MKLPHc4osUfsX1lfnOWfQUO04vEpcs7NCp0YZoZCTnl+bpsGDzrI6N51MhZYliX72fUjXSlx+E8RBx4a6g== + version "0.2.61" + resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.2.61.tgz#9c01929f4d7e4b09d8eb3c25319b82efa0a44db8" + integrity sha512-qWN89Ojw4Uhgr7Yp6YE3p5WCm09+UrHO2REDZubSb/mOyrW5cr1ShA9zV3XVEdDZZFq+ATmDW+j+IrHK6pY3Hw== dependencies: change-case "^4.1.2" fs-extra "^10.1.0" @@ -419,9 +419,9 @@ form-data "^3.0.0" "@types/node@*": - version "18.7.23" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.23.tgz#75c580983846181ebe5f4abc40fe9dfb2d65665f" - integrity sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg== + version "18.8.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.8.0.tgz#b8ee8d83a99470c0661bd899417fcd77060682fe" + integrity sha512-u+h43R6U8xXDt2vzUaVP3VwjjLyOJk6uEciZS8OSyziUQGOwmk+l+4drxcsDboHXwyTaqS1INebghmWMRxq3LA== "@types/node@^14": version "14.18.31" @@ -931,6 +931,15 @@ cliui@^7.0.2: strip-ansi "^6.0.0" wrap-ansi "^7.0.0" +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + clone-response@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" @@ -994,9 +1003,9 @@ combined-stream@^1.0.8: delayed-stream "~1.0.0" commander@^9.3.0: - version "9.4.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-9.4.0.tgz#bc4a40918fefe52e22450c111ecd6b7acce6f11c" - integrity sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw== + version "9.4.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.4.1.tgz#d1dd8f2ce6faf93147295c0df13c7c21141cfbdd" + integrity sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw== commonmark@^0.30.0: version "0.30.0" @@ -1075,9 +1084,9 @@ constant-case@^3.0.4: upper-case "^2.0.2" constructs@^10.0.0, constructs@^10.0.25: - version "10.1.117" - resolved "https://registry.yarnpkg.com/constructs/-/constructs-10.1.117.tgz#89032da53dfbd57d22836b5933d2f0f190adeab4" - integrity sha512-6Y1Po8yr1M/WAtamLL4kKXIWygky2rYPD4cpea9fKoI6fqtSSOy5TWmYoWXtLMS9hpi/v3XnLY+MjPsa6bMooQ== + version "10.1.120" + resolved "https://registry.yarnpkg.com/constructs/-/constructs-10.1.120.tgz#1a5cda4a68962ed7c617cc5241f90750ea85fd9e" + integrity sha512-joHfWQubSbemOgVz+VeiN6t07oS1rG3Tg9c0AxQ0MJRuxbUkDM3PoUB9uWBKxWnMlWI523lYTTuNqA25b3gWcQ== conventional-changelog-angular@^5.0.12: version "5.0.13" @@ -1286,7 +1295,7 @@ dargs@^7.0.0: resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== -date-format@^4.0.13, date-format@^4.0.14: +date-format@^4.0.14: version "4.0.14" resolved "https://registry.yarnpkg.com/date-format/-/date-format-4.0.14.tgz#7a8e584434fb169a521c8b7aa481f355810d9400" integrity sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg== @@ -1573,7 +1582,7 @@ find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" -flatted@^3.2.6: +flatted@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== @@ -2228,9 +2237,9 @@ jsii-rosetta@^1.52.1, jsii-rosetta@^1.68.0, jsii-rosetta@^1.69.0: yargs "^16.2.0" jsii-srcmak@^0.1.686: - version "0.1.690" - resolved "https://registry.yarnpkg.com/jsii-srcmak/-/jsii-srcmak-0.1.690.tgz#fb44f258c33e3b5fda7a17fb97ed3fdd493cf450" - integrity sha512-Wr/4VkZtALPplodMfu7EmRwdyLOtLHg23Akjjl65W+WPHRUX/owhNDL0WLFPjdFjV9jz1LsY3J6n1NAJZX0Bgw== + version "0.1.691" + resolved "https://registry.yarnpkg.com/jsii-srcmak/-/jsii-srcmak-0.1.691.tgz#09141d05508566240536005247c6c321b713fb78" + integrity sha512-3pKg2nDXdh4Lgy+lYjGqppsu4G0YpmYrs9AnRCk/ptsTKvSDekTPYUYW04VHU0nJCdIB71+KVeOOjuTUzIxY6Q== dependencies: fs-extra "^9.1.0" jsii "^1.69.0" @@ -2449,15 +2458,15 @@ lodash@^4.17.15, lodash@^4.17.21: integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== log4js@^6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/log4js/-/log4js-6.6.1.tgz#48f23de8a87d2f5ffd3d913f24ca9ce77895272f" - integrity sha512-J8VYFH2UQq/xucdNu71io4Fo+purYYudyErgBbswWKO0MC6QVOERRomt5su/z6d3RJSmLyTGmXl3Q/XjKCf+/A== + version "6.7.0" + resolved "https://registry.yarnpkg.com/log4js/-/log4js-6.7.0.tgz#fff671a74b2f6e956d135c3c756c79072809a23b" + integrity sha512-KA0W9ffgNBLDj6fZCq/lRbgR6ABAodRIDHrZnS48vOtfKa4PzWImb0Md1lmGCdO3n3sbCm/n1/WmrNlZ8kCI3Q== dependencies: - date-format "^4.0.13" + date-format "^4.0.14" debug "^4.3.4" - flatted "^3.2.6" + flatted "^3.2.7" rfdc "^1.3.0" - streamroller "^3.1.2" + streamroller "^3.1.3" lower-case@^2.0.2: version "2.0.2" @@ -3156,10 +3165,10 @@ progress@^2.0.3: resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -projen@^0.62.25: - version "0.62.25" - resolved "https://registry.yarnpkg.com/projen/-/projen-0.62.25.tgz#a6fdfa11c327970a8c3bd9f5c47638cd82336205" - integrity sha512-DVsHw6TmNHRam78t5MdNTBc61zQ4ECHQuqzBL1U+4hsDxhhDj+Y5Y2UVcki4hW/gYzSsDxQ3yP7LlCU2Sbw56Q== +projen@^0.63.3: + version "0.63.3" + resolved "https://registry.yarnpkg.com/projen/-/projen-0.63.3.tgz#1fbf2de3960737325846be75b46e7581b406c463" + integrity sha512-/L7gz+U+SzaCfj2nNUmg/SPxQZBNOZivPc1ZZEtZThwoNIWj64YfauEgMlHPqS1R9mzbPB0MrrmAE8n24VYuBQ== dependencies: "@iarna/toml" "^2.2.5" case "^1.6.3" @@ -3586,9 +3595,9 @@ socks-proxy-agent@^7.0.0: socks "^2.6.2" socks@^2.6.2: - version "2.7.0" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.0.tgz#f9225acdb841e874dca25f870e9130990f3913d0" - integrity sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA== + version "2.7.1" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" + integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== dependencies: ip "^2.0.0" smart-buffer "^4.2.0" @@ -3697,7 +3706,7 @@ standard-version@^9: stringify-package "^1.0.1" yargs "^16.0.0" -streamroller@^3.1.2: +streamroller@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-3.1.3.tgz#d95689a8c29b30d093525d0baffe6616fd62ca7e" integrity sha512-CphIJyFx2SALGHeINanjFRKQ4l7x2c+rXYJ4BMq0gd+ZK0gi4VT8b+eHe2wi58x4UayBAKx4xtHpXT/ea1cz8w== @@ -4174,9 +4183,9 @@ yaml@2.0.0: integrity sha512-JbfdlHKGP2Ik9IHylzWlGd4pPK++EU46/IxMykphS2ZKw7a7h+dHNmcXObLgpRDriBY+rpWslldikckX8oruWQ== yaml@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.1.tgz#1e06fb4ca46e60d9da07e4f786ea370ed3c3cfec" - integrity sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw== + version "2.1.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.2.tgz#eb0f535eb309811b60276a9cc8c02af4355db420" + integrity sha512-VSdf2/K3FqAetooKQv45Hcu6sA00aDgWZeGcG6V9IYJnVLTnb6988Tie79K5nx2vK7cEpf+yW8Oy+7iPAbdiHA== yargs-parser@^18.1.2: version "18.1.3" @@ -4227,11 +4236,11 @@ yargs@^16.0.0, yargs@^16.2.0: yargs-parser "^20.2.2" yargs@^17.5: - version "17.5.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" - integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== + version "17.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c" + integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g== dependencies: - cliui "^7.0.2" + cliui "^8.0.1" escalade "^3.1.1" get-caller-file "^2.0.5" require-directory "^2.1.1"