From cb310fa8b0eff4a26700be327bc38cdb589b8bc4 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Fri, 26 Jan 2024 10:27:25 -0800 Subject: [PATCH 1/2] Lock package manager version (#175495) I believe the intention was to restrict the `yarn` version to `1.22.19`, but the current `package.json` setup does not enforce it. This config change should do it. None. None. - [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) --------- Co-authored-by: Jon Co-authored-by: Jon --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ca6c9c2b0ea31..a71a88fe712d4 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,7 @@ }, "engines": { "node": "18.18.2", - "yarn": "^1.22.19" + "yarn": "^1.22.21" }, "resolutions": { "**/@hello-pangea/dnd": "16.2.0", @@ -1655,5 +1655,6 @@ "xmlbuilder": "13.0.2", "yargs": "^15.4.1", "yarn-deduplicate": "^6.0.2" - } + }, + "packageManager": "yarn@1.22.21" } \ No newline at end of file From 613b55ce5d753fd1046718d25cb7dc9ef1475ae3 Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Mon, 29 Jan 2024 14:15:14 -0600 Subject: [PATCH 2/2] ^1.22.19 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 95e945637aaef..d7e138d5422a3 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,7 @@ }, "engines": { "node": "18.18.2", - "yarn": "^1.22.21" + "yarn": "^1.22.19" }, "resolutions": { "**/@hello-pangea/dnd": "16.2.0",