From f90082001bd9522ceccbf9a3cb36e84a0c505f5d Mon Sep 17 00:00:00 2001 From: Tom J Nowell Date: Tue, 2 Jan 2024 09:39:03 +0000 Subject: [PATCH 1/2] use the bento box for parallels arm64 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index d408b8908..ea506a906 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -447,7 +447,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # this seems to be the most reliable way to detect whether or not we're # running under ARM64. if Etc.uname[:version].include? 'ARM64' - override.vm.box = 'mpasternak/focal64-arm' + override.vm.box = 'bento/ubuntu-20.04-arm64' end end From 89f48bcd047d59460b86b861804d010d2195bbab Mon Sep 17 00:00:00 2001 From: Tom J Nowell Date: Tue, 2 Jan 2024 09:41:20 +0000 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 524d238ba..d258a7b60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ permalink: /docs/en-US/changelog/ # Changelog -## 3.13 ( 2023 December TBA ) +## 3.13 ( 2024 TBA ) ### Enhancements @@ -17,6 +17,10 @@ permalink: /docs/en-US/changelog/ * Opted out of Dotnet package telemetry ( #2689 ) * Replace references to the Squizlab PHPCS with that from the PHPCS Standards org ( #2692 ) +### Maintenance + +* Switch the Parallels Arm64 box from `mpasternak/focal64-arm` to `bento/ubuntu-22.04-arm64` to match x86 boxes ( #2695 ) + ### Bug Fixes * The host file inside the VM was only adding sites with `127.0.0.1` addresses, now it adds the IPVv6 `::1` too ( #2689 )