bicep: 0.36.177 -> 0.39.26 (#469509)

This commit is contained in:
Ulrik Strid
2026-06-02 15:53:40 +00:00
committed by GitHub
4 changed files with 401 additions and 558 deletions
@@ -0,0 +1,13 @@
diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props
index 97dddded5..4c9e3e35c 100644
--- a/src/Directory.Packages.props
+++ b/src/Directory.Packages.props
@@ -34,7 +34,7 @@
<PackageVersion Include="Grpc.AspNetCore.Server.Reflection" Version="2.71.0" />
<PackageVersion Include="Grpc.Core.Testing" Version="2.46.6" />
<PackageVersion Include="Grpc.Net.Client" Version="2.71.0" />
- <PackageVersion Include="Grpc.Tools" Version="2.72.0" />
+ <PackageVersion Include="Grpc.Tools" Version="2.68.1" />
<PackageVersion Include="JetBrains.Annotations" Version="2025.2.2" />
<PackageVersion Include="JsonDiffPatch.Net" Version="2.3.0" />
<PackageVersion Include="JsonPatch.Net" Version="3.3.0" />
@@ -1,33 +0,0 @@
diff --git a/src/Bicep.Local.Extension/Bicep.Local.Extension.csproj b/src/Bicep.Local.Extension/Bicep.Local.Extension.csproj
index e02412540..7e0fb5e90 100644
--- a/src/Bicep.Local.Extension/Bicep.Local.Extension.csproj
+++ b/src/Bicep.Local.Extension/Bicep.Local.Extension.csproj
@@ -17,7 +17,7 @@
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Google.Protobuf" Version="3.29.2" />
- <PackageReference Include="Grpc.Tools" Version="2.69.0">
+ <PackageReference Include="Grpc.Tools" Version="2.68.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
diff --git a/src/Bicep.Local.Extension/packages.lock.json b/src/Bicep.Local.Extension/packages.lock.json
index e7297d0af..c262f0849 100644
--- a/src/Bicep.Local.Extension/packages.lock.json
+++ b/src/Bicep.Local.Extension/packages.lock.json
@@ -32,9 +32,9 @@
},
"Grpc.Tools": {
"type": "Direct",
- "requested": "[2.69.0, )",
- "resolved": "2.69.0",
- "contentHash": "W5hW4R1h19FCzKb8ToqIJMI5YxnQqGmREEpV8E5XkfCtLPIK5MSHztwQ8gZUfG8qu9fg5MhItjzyPRqQBjnrbA=="
+ "requested": "[2.68.1, )",
+ "resolved": "2.68.1",
+ "contentHash": "BZ96s7ijKAhJoRpIK+pqCeLaGaSwyc5/CAZFwgCcBuAnkU2naYvH0P6qnYCkl0pWDY/JBOnE2RvX9IvRX1Yc5Q=="
},
"Microsoft.CodeAnalysis.BannedApiAnalyzers": {
"type": "Direct",
--
2.47.2
+383 -518
View File
File diff suppressed because it is too large Load Diff
+5 -7
View File
@@ -1,26 +1,24 @@
{
lib,
stdenv,
buildDotnetModule,
fetchFromGitHub,
dotnetCorePackages,
mono,
jq,
}:
buildDotnetModule rec {
pname = "bicep";
version = "0.36.177";
version = "0.39.26";
src = fetchFromGitHub {
owner = "Azure";
repo = "bicep";
rev = "v${version}";
hash = "sha256-ah8g1mU2etQ/zoXcGbS+xRkTb4DjPmofe2ubZSNRhNU=";
hash = "sha256-CfoC9/Qe2OdPNnAa7e0BFgbPEbVrDfl9u3hM6y8msGQ=";
};
patches = [
./0001-Revert-Bump-Grpc.Tools-from-2.68.1-to-2.69.0-16097.patch
./0001-Pin-Grpc.Tools-To-2.68.1.patch
];
postPatch = ''
@@ -43,9 +41,9 @@ buildDotnetModule rec {
nativeBuildInputs = [ jq ];
doCheck = !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64); # mono is not available on aarch64-darwin
doCheck = true;
nativeCheckInputs = [ mono ];
dotnetTestFlags = "-p:UseAppHost=false";
testProjectFile = "src/Bicep.Cli.UnitTests/Bicep.Cli.UnitTests.csproj";