Skip to content

Commit 0f988c6

Browse files
dependabot[bot]cluckwork-lockfix[bot]mforcepr
authored
chore(deps): Bump the nuget-minor-patch group with 5 updates (#576)
* chore(deps): Bump the nuget-minor-patch group with 5 updates Bumps Aspire.Hosting.JavaScript from 13.5.0 to 13.5.1 Bumps Aspire.Hosting.PostgreSQL from 13.5.0 to 13.5.1 Bumps Aspire.Hosting.Redis from 13.5.0 to 13.5.1 Bumps Aspire.Hosting.Testing from 13.5.0 to 13.5.1 Bumps Microsoft.OpenApi from 2.12.0 to 2.12.2 --- updated-dependencies: - dependency-name: Aspire.Hosting.JavaScript dependency-version: 13.5.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-minor-patch - dependency-name: Aspire.Hosting.PostgreSQL dependency-version: 13.5.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-minor-patch - dependency-name: Aspire.Hosting.Redis dependency-version: 13.5.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-minor-patch - dependency-name: Aspire.Hosting.Testing dependency-version: 13.5.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-minor-patch - dependency-name: Microsoft.OpenApi dependency-version: 2.12.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deps): regenerate downstream packages.lock.json (#203) * ci: point the --locked-mode drift guard at the new Microsoft.OpenApi pin #576's group bump moved Microsoft.OpenApi 2.12.0 -> 2.12.2, so the drift guard's hard-coded sed source (2.12.0) no longer matched and the guard failed with 'drift-guard perturbation target not found'. Update the perturbation to 2.12.2 -> 2.12.1 and the grep target to 2.12.1. Verified locally: the perturbation lands and the --locked-mode restore fails with NU1004 (stale lock), which is exactly what the guard asserts. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: cluckwork-lockfix[bot] <cluckwork-lockfix[bot]@users.noreply.github.com> Co-authored-by: mforce <mforce@protonmail.com>
1 parent 4f78f74 commit 0f988c6

8 files changed

Lines changed: 49 additions & 49 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,11 +288,11 @@ jobs:
288288
work="$(mktemp -d)"
289289
git archive HEAD | tar -x -C "$work"
290290
cd "$work"
291-
sed -i 's#<PackageReference Include="Microsoft.OpenApi" Version="2.12.0" #<PackageReference Include="Microsoft.OpenApi" Version="2.11.0" #' \
291+
sed -i 's#<PackageReference Include="Microsoft.OpenApi" Version="2.12.2" #<PackageReference Include="Microsoft.OpenApi" Version="2.12.1" #' \
292292
src/Cluckwork.Api/Cluckwork.Api.csproj
293293
# Fail loudly (don't silently pass) if the pin used as the perturbation
294294
# target has since moved — the guard must be kept pointing at a real pin.
295-
grep -q '<PackageReference Include="Microsoft.OpenApi" Version="2.11.0" ' \
295+
grep -q '<PackageReference Include="Microsoft.OpenApi" Version="2.12.1" ' \
296296
src/Cluckwork.Api/Cluckwork.Api.csproj \
297297
|| { echo "::error::drift-guard perturbation target not found; update the Microsoft.OpenApi version it edits"; exit 1; }
298298
if docker build --target build -f src/Cluckwork.Api/Dockerfile -t cluckwork-lockdrift:ci . ; then

src/Cluckwork.Api/Cluckwork.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<ItemGroup>
1414
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.*" />
1515
<!-- Pin patched Microsoft.OpenApi: transitive 2.0.0 has GHSA-v5pm-xwqc-g5wc (NU1903) -->
16-
<PackageReference Include="Microsoft.OpenApi" Version="2.12.0" />
16+
<PackageReference Include="Microsoft.OpenApi" Version="2.12.2" />
1717
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.*" />
1818
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.*">
1919
<PrivateAssets>all</PrivateAssets>

src/Cluckwork.Api/packages.lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Cluckwork.AppHost/Cluckwork.AppHost.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Aspire.Hosting.JavaScript" Version="13.5.0" />
19-
<PackageReference Include="Aspire.Hosting.PostgreSQL" Version="13.5.0" />
20-
<PackageReference Include="Aspire.Hosting.Redis" Version="13.5.0" />
18+
<PackageReference Include="Aspire.Hosting.JavaScript" Version="13.5.1" />
19+
<PackageReference Include="Aspire.Hosting.PostgreSQL" Version="13.5.1" />
20+
<PackageReference Include="Aspire.Hosting.Redis" Version="13.5.1" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

src/Cluckwork.AppHost/packages.lock.json

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Cluckwork.Api.IntegrationTests/packages.lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Cluckwork.AppHost.Tests/Cluckwork.AppHost.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>
17-
<PackageReference Include="Aspire.Hosting.Testing" Version="13.5.0" />
17+
<PackageReference Include="Aspire.Hosting.Testing" Version="13.5.1" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

tests/Cluckwork.AppHost.Tests/packages.lock.json

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)