From 604491d333ab92910754b9f3c018f4b5fe879915 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 21 May 2021 12:27:50 -0700 Subject: [PATCH 1/8] fix: use correct command to Open Folder on Welcome page (#3437) * chore: update CHANGELOG * fix: use openFolder in welcomePage In 1.56.2, they modified the WelcomePage use of OpenFileFolder in src/vs/workbench/contrib/debug/browser/welcomeView.ts to only use on macOS + Desktop (i.e. not Web). This caused the "Open Folder" to not work on macOS + macOS-like environments. Instead, we use OpenFolder which is a registered command and works as expected. --- CHANGELOG.md | 1 + .../contrib/welcome/page/browser/vs_code_welcome_page.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 353119cd..422990ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -71,6 +71,7 @@ VS Code v1.56.1 - fix: Check the logged user instead of $USER #3330 @videlanicolas - fix: Fix broken node_modules.asar symlink in npm package #3355 @code-asher - fix: Update cloud agent to fix version issue #3342 @oxy +- fix: use correct command to Open Folder on Welcome page #3437 @jsjoeio ### Documentation diff --git a/lib/vscode/src/vs/workbench/contrib/welcome/page/browser/vs_code_welcome_page.ts b/lib/vscode/src/vs/workbench/contrib/welcome/page/browser/vs_code_welcome_page.ts index b0023873..af4cb687 100644 --- a/lib/vscode/src/vs/workbench/contrib/welcome/page/browser/vs_code_welcome_page.ts +++ b/lib/vscode/src/vs/workbench/contrib/welcome/page/browser/vs_code_welcome_page.ts @@ -20,7 +20,7 @@ export default () => `

${escape(localize('welcomePage.start', "Start"))}

From c0342436ff7a52c7be5c279dc2ef7ac20229ec15 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 21 May 2021 14:44:17 -0700 Subject: [PATCH 2/8] chore: update CHANGELOG --- CHANGELOG.md | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 422990ff..f3f0e42d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,15 +5,18 @@ - [Changelog](#changelog) - [Next Version](#next-version) - [New Features](#new-features) - - [3.10.1](#3101) - [Bug Fixes](#bug-fixes) - [Documentation](#documentation) - [Development](#development) - - [3.10.0](#3100) - - [New Features](#new-features-1) + - [3.10.1](#3101) - [Bug Fixes](#bug-fixes-1) - [Documentation](#documentation-1) - [Development](#development-1) + - [3.10.0](#3100) + - [New Features](#new-features-1) + - [Bug Fixes](#bug-fixes-2) + - [Documentation](#documentation-2) + - [Development](#development-2) - [Previous versions](#previous-versions) @@ -59,8 +62,20 @@ VS Code v1.56.1 ### New Features -- feat: support `extraInitContainers` in helm chart values -- feat: change `extraContainers` to support templating in helm chart +- feat: support `extraInitContainers` in helm chart values #3393 @strowk +- feat: change `extraContainers` to support templating in helm chart #3393 @strowk + +### Bug Fixes + +- fix: use correct command to Open Folder on Welcome page #3437 @jsjoeio + +### Documentation + +- item + +### Development + +- fix(ci): update brew-bump.sh to update remote first #0000 @jsjoeio ## 3.10.1 @@ -71,7 +86,6 @@ VS Code v1.56.1 - fix: Check the logged user instead of $USER #3330 @videlanicolas - fix: Fix broken node_modules.asar symlink in npm package #3355 @code-asher - fix: Update cloud agent to fix version issue #3342 @oxy -- fix: use correct command to Open Folder on Welcome page #3437 @jsjoeio ### Documentation @@ -80,7 +94,6 @@ VS Code v1.56.1 - docs(maintaining): add merge strategies section #3379 @jsjoeio - refactor: move default PR template #3375 @jsjoeio - docs(contributing): add commits section #3377 @jsjoeio -- docs(maintaining): add process for release managers #3360 @jsjoeio ### Development From ed0ddeaf3e1a7b7cafb4a721fa19988cff9611d7 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 21 May 2021 14:56:01 -0700 Subject: [PATCH 3/8] fix: make sure homebrew-core is up to date --- CHANGELOG.md | 2 +- ci/steps/brew-bump.sh | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3f0e42d..746bf472 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -75,7 +75,7 @@ VS Code v1.56.1 ### Development -- fix(ci): update brew-bump.sh to update remote first #0000 @jsjoeio +- fix(ci): update brew-bump.sh to update remote first #3438 @jsjoeio ## 3.10.1 diff --git a/ci/steps/brew-bump.sh b/ci/steps/brew-bump.sh index 0d669f29..4e450025 100755 --- a/ci/steps/brew-bump.sh +++ b/ci/steps/brew-bump.sh @@ -5,9 +5,36 @@ main() { cd "$(dirname "$0")/../.." # Only sourcing this so we get access to $VERSION source ./ci/lib.sh + + # NOTE: we need to make sure cdrci/homebrew-core + # is up-to-date + # otherwise, brew bump-formula-pr will use an + # outdated base + echo "Cloning cdrci/homebrew-core" + git clone https://github.com/cdrci/homebrew-core.git + + echo "Changing into homebrew-core directory" + cd homebrew-core && pwd + + echo "Adding Homebrew/homebrew-core as $(upstream)" + git remote add upstream https://github.com/Homebrew/homebrew-core.git + + echo "Fetching upstream commits..." + git fetch upstream + + echo "Merging in latest changes" + git merge upstream/master + + echo "Pushing changes to cdrci/homebrew-core fork on GitHub" + git push origin master + # Find the docs for bump-formula-pr here # https://github.com/Homebrew/brew/blob/master/Library/Homebrew/dev-cmd/bump-formula-pr.rb#L18 brew bump-formula-pr --force --version="${VERSION}" code-server --no-browse --no-audit + + # Clean up and remove homebrew-core + cd .. + rm -rf homebrew-core } main "$@" From 31aac201bfbae0af59149816ed34653687d150e8 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 21 May 2021 16:04:55 -0700 Subject: [PATCH 4/8] chore(release): bump version to 3.10.2 --- README.md | 2 +- ci/helm-chart/Chart.yaml | 2 +- ci/helm-chart/README.md | 4 ++-- ci/helm-chart/values.yaml | 2 +- install.sh | 2 +- package.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3b8499e7..b9515913 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # code-server · [!["GitHub Discussions"](https://img.shields.io/badge/%20GitHub-%20Discussions-gray.svg?longCache=true&logo=github&colorB=purple)](https://github.com/cdr/code-server/discussions) [!["Join us on Slack"](https://img.shields.io/badge/join-us%20on%20slack-gray.svg?longCache=true&logo=slack&colorB=brightgreen)](https://cdr.co/join-community) [![Twitter Follow](https://img.shields.io/twitter/follow/CoderHQ?label=%40CoderHQ&style=social)](https://twitter.com/coderhq) [![codecov](https://codecov.io/gh/cdr/code-server/branch/main/graph/badge.svg?token=5iM9farjnC)](https://codecov.io/gh/cdr/code-server) -[![See latest docs](https://img.shields.io/static/v1?label=Docs&message=see%20latest%20&color=blue)](https://github.com/cdr/code-server/tree/v3.10.1/docs) +[![See latest docs](https://img.shields.io/static/v1?label=Docs&message=see%20latest%20&color=blue)](https://github.com/cdr/code-server/tree/v3.10.2/docs) Run [VS Code](https://github.com/Microsoft/vscode) on any machine anywhere and access it in the browser. diff --git a/ci/helm-chart/Chart.yaml b/ci/helm-chart/Chart.yaml index f0f2c00d..61fa200f 100644 --- a/ci/helm-chart/Chart.yaml +++ b/ci/helm-chart/Chart.yaml @@ -20,4 +20,4 @@ version: 1.0.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 3.10.1 +appVersion: 3.10.2 diff --git a/ci/helm-chart/README.md b/ci/helm-chart/README.md index 65cb204e..3fd1a0af 100644 --- a/ci/helm-chart/README.md +++ b/ci/helm-chart/README.md @@ -1,6 +1,6 @@ # code-server -![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.10.1](https://img.shields.io/badge/AppVersion-3.10.1-informational?style=flat-square) +![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.10.2](https://img.shields.io/badge/AppVersion-3.10.2-informational?style=flat-square) [code-server](https://github.com/cdr/code-server) code-server is VS Code running on a remote server, accessible through the browser. @@ -73,7 +73,7 @@ and their default values. | hostnameOverride | string | `""` | | | image.pullPolicy | string | `"Always"` | | | image.repository | string | `"codercom/code-server"` | | -| image.tag | string | `"3.10.1"` | | +| image.tag | string | `"3.10.2"` | | | imagePullSecrets | list | `[]` | | | ingress.enabled | bool | `false` | | | nameOverride | string | `""` | | diff --git a/ci/helm-chart/values.yaml b/ci/helm-chart/values.yaml index c3ac330a..647debeb 100644 --- a/ci/helm-chart/values.yaml +++ b/ci/helm-chart/values.yaml @@ -6,7 +6,7 @@ replicaCount: 1 image: repository: codercom/code-server - tag: '3.10.1' + tag: '3.10.2' pullPolicy: Always imagePullSecrets: [] diff --git a/install.sh b/install.sh index 3b2a2f93..c12f23de 100755 --- a/install.sh +++ b/install.sh @@ -419,7 +419,7 @@ install_npm() { echoh echoerr "Please install npm or yarn to install code-server!" echoerr "You will need at least node v12 and a few C dependencies." - echoerr "See the docs https://github.com/cdr/code-server/blob/v3.10.1/docs/install.md#yarn-npm" + echoerr "See the docs https://github.com/cdr/code-server/blob/v3.10.2/docs/install.md#yarn-npm" exit 1 } diff --git a/package.json b/package.json index cbaa1179..70b5940a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "code-server", "license": "MIT", - "version": "3.10.1", + "version": "3.10.2", "description": "Run VS Code on a remote server.", "homepage": "https://github.com/cdr/code-server", "bugs": { From 29292fd33b6f5653a9ac9fa7f763f73b866d47eb Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 21 May 2021 16:08:21 -0700 Subject: [PATCH 5/8] chore: update version in CHANGELOG --- CHANGELOG.md | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 746bf472..9ce697e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,19 +3,18 @@ # Changelog - [Changelog](#changelog) - - [Next Version](#next-version) + - [3.10.2](#3102) - [New Features](#new-features) - [Bug Fixes](#bug-fixes) - - [Documentation](#documentation) - [Development](#development) - [3.10.1](#3101) - [Bug Fixes](#bug-fixes-1) - - [Documentation](#documentation-1) + - [Documentation](#documentation) - [Development](#development-1) - [3.10.0](#3100) - [New Features](#new-features-1) - [Bug Fixes](#bug-fixes-2) - - [Documentation](#documentation-2) + - [Documentation](#documentation-1) - [Development](#development-2) - [Previous versions](#previous-versions) @@ -56,7 +55,7 @@ VS Code v0.00.0 --> -## Next Version +## 3.10.2 VS Code v1.56.1 @@ -69,10 +68,6 @@ VS Code v1.56.1 - fix: use correct command to Open Folder on Welcome page #3437 @jsjoeio -### Documentation - -- item - ### Development - fix(ci): update brew-bump.sh to update remote first #3438 @jsjoeio From 4fc8d9861082eee62e8ee18cf6949f7453b211ae Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 21 May 2021 16:08:46 -0700 Subject: [PATCH 6/8] refactor: remove extra step in release-prep.sh --- ci/build/release-prep.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ci/build/release-prep.sh b/ci/build/release-prep.sh index 0ee20e7c..04ee0e07 100755 --- a/ci/build/release-prep.sh +++ b/ci/build/release-prep.sh @@ -83,10 +83,6 @@ main() { echo -e "Great! We'll prep a PR for updating to $CODE_SERVER_VERSION_TO_UPDATE\n" $CMD rg -g '!yarn.lock' -g '!*.svg' -g '!CHANGELOG.md' --files-with-matches --fixed-strings "${CODE_SERVER_CURRENT_VERSION}" | $CMD xargs sd "$CODE_SERVER_CURRENT_VERSION" "$CODE_SERVER_VERSION_TO_UPDATE" - # Ensure the tests are passing and code coverage is up-to-date - echo -e "Running unit tests and updating code coverage...\n" - $CMD yarn test:unit - $CMD git commit -am "chore(release): bump version to $CODE_SERVER_VERSION_TO_UPDATE" # This runs from the root so that's why we use this path vs. ../../ @@ -94,7 +90,7 @@ main() { echo -e "\nOpening a draft PR on GitHub" # To read about these flags, visit the docs: https://cli.github.com/manual/gh_pr_create - $CMD gh pr create --base main --title "release: $CODE_SERVER_VERSION_TO_UPDATE" --body "$RELEASE_TEMPLATE_STRING" --reviewer @cdr/code-server-reviewers --repo cdr/code-server --draft + $CMD gh pr create --base main --title "release: $CODE_SERVER_VERSION_TO_UPDATE" --body "$RELEASE_TEMPLATE_STRING" --reviewer @cdr/code-server-reviewers --repo cdr/code-server --draft --assignee "@me" # Open PR in browser $CMD gh pr view --web From dc2d769161cda9894fc9f44620686bb82749a026 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 May 2021 11:02:34 +0000 Subject: [PATCH 7/8] chore(deps-dev): bump eslint from 7.26.0 to 7.27.0 Bumps [eslint](https://github.com/eslint/eslint) from 7.26.0 to 7.27.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v7.26.0...v7.27.0) Signed-off-by: dependabot[bot] --- yarn.lock | 38 ++++++++++++++++++++++---------------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/yarn.lock b/yarn.lock index 5727f60d..496aa11a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3166,6 +3166,11 @@ escape-string-regexp@^1.0.5: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + escodegen@^1.11.0, escodegen@^1.11.1, escodegen@^1.8.1: version "1.14.3" resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" @@ -3271,9 +3276,9 @@ eslint-visitor-keys@^2.0.0: integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== eslint@^7.7.0: - version "7.26.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.26.0.tgz#d416fdcdcb3236cd8f282065312813f8c13982f6" - integrity sha512-4R1ieRf52/izcZE7AlLy56uIHHDLT74Yzz2Iv2l6kDaYvEu9x+wMB5dZArVL8SYGXSYV2YAg70FcW5Y5nGGNIg== + version "7.27.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.27.0.tgz#665a1506d8f95655c9274d84bd78f7166b07e9c7" + integrity sha512-JZuR6La2ZF0UD384lcbnd0Cgg6QJjiCwhMD6eU4h/VGPcVGwawNNzKU41tgokGXnfjOOyI6QIffthhJTPzzuRA== dependencies: "@babel/code-frame" "7.12.11" "@eslint/eslintrc" "^0.4.1" @@ -3283,12 +3288,14 @@ eslint@^7.7.0: debug "^4.0.1" doctrine "^3.0.0" enquirer "^2.3.5" + escape-string-regexp "^4.0.0" eslint-scope "^5.1.1" eslint-utils "^2.1.0" eslint-visitor-keys "^2.0.0" espree "^7.3.1" esquery "^1.4.0" esutils "^2.0.2" + fast-deep-equal "^3.1.3" file-entry-cache "^6.0.1" functional-red-black-tree "^1.0.1" glob-parent "^5.0.0" @@ -3300,7 +3307,7 @@ eslint@^7.7.0: js-yaml "^3.13.1" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" - lodash "^4.17.21" + lodash.merge "^4.6.2" minimatch "^3.0.4" natural-compare "^1.4.0" optionator "^0.9.1" @@ -3309,7 +3316,7 @@ eslint@^7.7.0: semver "^7.2.1" strip-ansi "^6.0.0" strip-json-comments "^3.1.0" - table "^6.0.4" + table "^6.0.9" text-table "^0.2.0" v8-compile-cache "^2.0.3" @@ -3508,7 +3515,7 @@ falafel@^2.1.0: isarray "^2.0.1" object-keys "^1.0.6" -fast-deep-equal@^3.1.1: +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== @@ -4860,16 +4867,16 @@ lodash.debounce@^4.0.8: resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= -lodash.flatten@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" - integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8= - lodash.memoize@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" @@ -7800,14 +7807,13 @@ symbol-tree@^3.2.2: resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== -table@^6.0.4, table@^6.6.0: - version "6.6.0" - resolved "https://registry.yarnpkg.com/table/-/table-6.6.0.tgz#905654b79df98d9e9a973de1dd58682532c40e8e" - integrity sha512-iZMtp5tUvcnAdtHpZTWLPF0M7AgiQsURR2DwmxnJwSy8I3+cY+ozzVvYha3BOLG2TB+L0CqjIz+91htuj6yCXg== +table@^6.0.9, table@^6.6.0: + version "6.7.1" + resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" + integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== dependencies: ajv "^8.0.1" lodash.clonedeep "^4.5.0" - lodash.flatten "^4.4.0" lodash.truncate "^4.4.2" slice-ansi "^4.0.0" string-width "^4.2.0" From 2d7bc7f675fd9e6f2fb07327db699da01e4201c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 May 2021 11:02:52 +0000 Subject: [PATCH 8/8] chore(deps-dev): bump eslint-plugin-import from 2.23.2 to 2.23.3 Bumps [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import) from 2.23.2 to 2.23.3. - [Release notes](https://github.com/benmosher/eslint-plugin-import/releases) - [Changelog](https://github.com/benmosher/eslint-plugin-import/blob/master/CHANGELOG.md) - [Commits](https://github.com/benmosher/eslint-plugin-import/compare/v2.23.2...v2.23.3) Signed-off-by: dependabot[bot] --- yarn.lock | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/yarn.lock b/yarn.lock index 5727f60d..a0679b32 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2317,14 +2317,6 @@ constants-browserify@^1.0.0: resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= -contains-path@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-1.0.0.tgz#3458b332185603e8eed18f518d4a10888a3abc91" - integrity sha1-NFizMhhWA+ju0Y9RjUoQiIo6vJE= - dependencies: - normalize-path "^2.1.1" - path-starts-with "^1.0.0" - content-disposition@0.5.3: version "0.5.3" resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" @@ -3217,13 +3209,12 @@ eslint-module-utils@^2.6.1: pkg-dir "^2.0.0" eslint-plugin-import@^2.18.2: - version "2.23.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.23.2.tgz#ee15dd68fc7a1a1ba4c653c734e0d01c100d3484" - integrity sha512-LmNoRptHBxOP+nb0PIKz1y6OSzCJlB+0g0IGS3XV4KaKk2q4szqQ6s6F1utVf5ZRkxk/QOTjdxe7v4VjS99Bsg== + version "2.23.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.23.3.tgz#8a1b073289fff03c4af0f04b6df956b7d463e191" + integrity sha512-wDxdYbSB55F7T5CC7ucDjY641VvKmlRwT0Vxh7PkY1mI4rclVRFWYfsrjDgZvwYYDZ5ee0ZtfFKXowWjqvEoRQ== dependencies: array-includes "^3.1.3" array.prototype.flat "^1.2.4" - contains-path "^1.0.0" debug "^2.6.9" doctrine "^2.1.0" eslint-import-resolver-node "^0.3.4" @@ -5790,13 +5781,6 @@ path-parse@^1.0.6: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== -path-starts-with@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/path-starts-with/-/path-starts-with-1.0.0.tgz#b28243015e8b138de572682ac52da42e646ad84e" - integrity sha1-soJDAV6LE43lcmgqxS2kLmRq2E4= - dependencies: - normalize-path "^2.1.1" - path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"