Skip to content

Commit 59dcde9

Browse files
authored
V4.1.1/service update (#36)
⬆️ bump dependencies 📦 updated NuGet package definition 💬 updated community health pages
1 parent b3b1867 commit 59dcde9

File tree

38 files changed

+247
-25
lines changed

38 files changed

+247
-25
lines changed

.docfx/Dockerfile.docfx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=$BUILDPLATFORM nginx:1.27.5-alpine AS base
1+
FROM --platform=$BUILDPLATFORM nginx:1.28.0-alpine AS base
22
RUN rm -rf /usr/share/nginx/html/*
33

44
FROM --platform=$BUILDPLATFORM codebeltnet/docfx:2.78.3 AS build
@@ -8,7 +8,7 @@ ADD [".", "docfx"]
88
RUN cd docfx; \
99
docfx build
1010

11-
FROM nginx:1.27.5-alpine AS final
11+
FROM nginx:1.28.0-alpine AS final
1212
WORKDIR /usr/share/nginx/html
1313
COPY --from=build /build/docfx/wwwroot /usr/share/nginx/html
1414

.docfx/docfx.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,15 @@
3737
"Savvyio.Extensions.DependencyInjection.EFCore.Domain/**.csproj",
3838
"Savvyio.Extensions.DependencyInjection.EFCore.Domain.EventSourcing/**.csproj",
3939
"Savvyio.Extensions.DependencyInjection.QueueStorage/**.csproj",
40+
"Savvyio.Extensions.DependencyInjection.RabbitMQ/**.csproj",
4041
"Savvyio.Extensions.DependencyInjection.SimpleQueueService/**.csproj",
4142
"Savvyio.Extensions.Dispatchers/**.csproj",
4243
"Savvyio.Extensions.EFCore/**.csproj",
4344
"Savvyio.Extensions.EFCore.Domain/**.csproj",
4445
"Savvyio.Extensions.EFCore.Domain.EventSourcing/**.csproj",
4546
"Savvyio.Extensions.Newtonsoft.Json/**.csproj",
4647
"Savvyio.Extensions.QueueStorage/**.csproj",
48+
"Savvyio.Extensions.RabbitMQ/**.csproj",
4749
"Savvyio.Extensions.SimpleQueueService/**.csproj",
4850
"Savvyio.Extensions.Text.Json/**.csproj"
4951
],

.github/workflows/pipelines.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Savvyi I/O Pipeline
1+
name: Savvy I/O Pipeline
22
on:
33
pull_request:
44
branches: [main]
@@ -82,6 +82,7 @@ jobs:
8282
configuration: ${{ matrix.configuration }}
8383
projects: ${{ matrix.project }}
8484
build-switches: -p:SkipSignAssembly=true
85+
restore: true
8586

8687
integration_test:
8788
name: ⚗️ Integration Test - Azure and AWS
@@ -109,7 +110,7 @@ jobs:
109110
projects: ${{ matrix.project }}
110111
configuration: ${{ matrix.configuration }}
111112
build-switches: -p:SkipSignAssembly=true
112-
level: normal
113+
build: true
113114
env:
114115
AWS__CALLERIDENTITY: ${{ secrets.AWS_CALLER_IDENTITY }}
115116
AWS__IAM__ACCESSKEY: ${{ secrets.AWS_IAM_ACCESSKEY }}
@@ -149,6 +150,7 @@ jobs:
149150
with:
150151
projects: test/**/Savvyio.Extensions.RabbitMQ.FunctionalTests.csproj
151152
build-switches: -p:SkipSignAssembly=true
153+
build: true
152154

153155
- name: Stop RabbitMQ
154156
run: |

.nuget/Savvyio.App/PackageReleaseNotes.txt

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
Version: 4.1.1
2+
Availability: .NET 9 and .NET 8
3+
 
4+
# References
5+
- Savvyio
6+
- Savvyio.Commands
7+
- Savvyio.Commands.Messaging
8+
- Savvyio.Domain
9+
- Savvyio.Domain.EventSourcing
10+
- Savvyio.EventDriven
11+
- Savvyio.EventDriven.Messaging
12+
- Savvyio.Extensions.Dapper
13+
- Savvyio.Extensions.DependencyInjection
14+
- Savvyio.Extensions.DependencyInjection.Dapper
15+
- Savvyio.Extensions.DependencyInjection.Domain
16+
- Savvyio.Extensions.DependencyInjection.EFCore
17+
- Savvyio.Extensions.DependencyInjection.EFCore.Domain
18+
- Savvyio.Extensions.DependencyInjection.EFCore.Domain.EventSourcing
19+
- Savvyio.Extensions.DependencyInjection.QueueStorage
20+
- Savvyio.Extensions.DependencyInjection.RabbitMQ
21+
- Savvyio.Extensions.DependencyInjection.SimpleQueueService
22+
- Savvyio.Extensions.Dispatchers
23+
- Savvyio.Extensions.EFCore
24+
- Savvyio.Extensions.EFCore.Domain
25+
- Savvyio.Extensions.EFCore.Domain.EventSourcing
26+
- Savvyio.Extensions.QueueStorage
27+
- Savvyio.Extensions.RabbitMQ
28+
- Savvyio.Extensions.SimpleQueueService
29+
- Savvyio.Extensions.Text.Json
30+
- Savvyio.Messaging
31+
- Savvyio.Queries
32+
 
133
Version: 4.1.0
234
Availability: .NET 9 and .NET 8
335

.nuget/Savvyio.Commands.Messaging/PackageReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version: 4.1.1
2+
Availability: .NET 9 and .NET 8
3+
 
4+
# ALM
5+
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
6+
 
17
Version: 4.1.0
28
Availability: .NET 9 and .NET 8
39

.nuget/Savvyio.Commands/PackageReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version: 4.1.1
2+
Availability: .NET 9 and .NET 8
3+
 
4+
# ALM
5+
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
6+
 
17
Version: 4.1.0
28
Availability: .NET 9 and .NET 8
39

.nuget/Savvyio.Core/PackageReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version: 4.1.1
2+
Availability: .NET 9 and .NET 8
3+
 
4+
# ALM
5+
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
6+
 
17
Version: 4.1.0
28
Availability: .NET 9 and .NET 8
39

.nuget/Savvyio.Domain.EventSourcing/PackageReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version: 4.1.1
2+
Availability: .NET 9 and .NET 8
3+
 
4+
# ALM
5+
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
6+
 
17
Version: 4.1.0
28
Availability: .NET 9 and .NET 8
39

.nuget/Savvyio.Domain/PackageReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version: 4.1.1
2+
Availability: .NET 9 and .NET 8
3+
 
4+
# ALM
5+
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
6+
 
17
Version: 4.1.0
28
Availability: .NET 9 and .NET 8
39

.nuget/Savvyio.EventDriven.Messaging/PackageReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version: 4.1.1
2+
Availability: .NET 9 and .NET 8
3+
 
4+
# ALM
5+
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
6+
 
17
Version: 4.1.0
28
Availability: .NET 9 and .NET 8
39

0 commit comments

Comments
 (0)