From 1c02e8f9ed070789f35726d7d8a0b4b84eee6248 Mon Sep 17 00:00:00 2001 From: weronikakolodziej Date: Thu, 23 Jul 2026 10:58:00 +0200 Subject: [PATCH] Update RavenDB to 7.2.5 and pin the multi-arch Docker tag RavenDB.Client bumped 7.2.3 -> 7.2.5. The AppHost now pins the ravendb/ravendb:7.2.5 tag, which is the first pinned version tag to ship as a multi-arch manifest (linux amd64/arm64/arm-v7 + windows), replacing the floating 7.2-latest tag. --- Directory.Packages.props | 2 +- SamplesHR.AppHost/AppHost.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 8fc72eb..305a519 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -24,7 +24,7 @@ - + \ No newline at end of file diff --git a/SamplesHR.AppHost/AppHost.cs b/SamplesHR.AppHost/AppHost.cs index d5b7d38..3160c95 100644 --- a/SamplesHR.AppHost/AppHost.cs +++ b/SamplesHR.AppHost/AppHost.cs @@ -24,7 +24,7 @@ var ravenServer = builder .AddRavenDB("ravendb", settings) - .WithImage("ravendb/ravendb", "7.2-latest") + .WithImage("ravendb/ravendb", "7.2.5") .WithIconName("Database") .WithEnvironment("RAVEN_License_Eula_Accepted", "true") .WithEnvironment("RAVEN_License", ravenDbLicense);