Skip to content

Commit 73c4661

Browse files
tmarkleyalchemist51
authored andcommitted
Removes minimatch manual resolution (opensearch-project#3019)
* The minimatch resolution was no longer necessary after the upstream library that depended on v3.0.4 was removed in opensearch-project#2711. Signed-off-by: Tommy Markley <5437176+tmarkley@users.noreply.github.com> Signed-off-by: Tommy Markley <5437176+tmarkley@users.noreply.github.com> Signed-off-by: Arpit Bandejiya <abandeji@amazon.com>
1 parent 736d770 commit 73c4661

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
9797
### 🛠 Maintenance
9898

9999
- Adding @zhongnansu as maintainer. ([#2590](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2590))
100+
- Removes `minimatch` manual resolution ([#3019](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3019))
100101

101102
### 🪛 Refactoring
102103

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@
9292
"**/qs": "^6.10.3",
9393
"**/trim": "^0.0.3",
9494
"**/typescript": "4.0.2",
95-
"**/unset-value": "^2.0.1",
96-
"**/minimatch": "^3.0.5"
95+
"**/unset-value": "^2.0.1"
9796
},
9897
"workspaces": {
9998
"packages": [

yarn.lock

+22-1
Original file line numberDiff line numberDiff line change
@@ -5241,6 +5241,13 @@ brace-expansion@^1.1.7:
52415241
balanced-match "^1.0.0"
52425242
concat-map "0.0.1"
52435243

5244+
brace-expansion@^2.0.1:
5245+
version "2.0.1"
5246+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
5247+
integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
5248+
dependencies:
5249+
balanced-match "^1.0.0"
5250+
52445251
brace@0.11.1, brace@^0.11.1:
52455252
version "0.11.1"
52465253
resolved "https://registry.yarnpkg.com/brace/-/brace-0.11.1.tgz#4896fcc9d544eef45f4bb7660db320d3b379fe58"
@@ -12696,13 +12703,27 @@ minimalistic-crypto-utils@^1.0.1:
1269612703
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
1269712704
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
1269812705

12699-
"minimatch@2 || 3", minimatch@5.0.1, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.2, minimatch@~3.0.4:
12706+
"minimatch@2 || 3", minimatch@^3.0.4, minimatch@^3.1.2:
1270012707
version "3.1.2"
1270112708
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1270212709
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1270312710
dependencies:
1270412711
brace-expansion "^1.1.7"
1270512712

12713+
minimatch@5.0.1:
12714+
version "5.0.1"
12715+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz#fb9022f7528125187c92bd9e9b6366be1cf3415b"
12716+
integrity sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==
12717+
dependencies:
12718+
brace-expansion "^2.0.1"
12719+
12720+
minimatch@~3.0.4:
12721+
version "3.0.8"
12722+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.8.tgz#5e6a59bd11e2ab0de1cfb843eb2d82e546c321c1"
12723+
integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==
12724+
dependencies:
12725+
brace-expansion "^1.1.7"
12726+
1270612727
minimist-options@4.1.0, minimist-options@^4.0.2:
1270712728
version "4.1.0"
1270812729
resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"

0 commit comments

Comments
 (0)