Skip to content

Commit d60f95c

Browse files
committed
Merge branch '7.2.x' into main
2 parents 7f5b008 + ebaf2aa commit d60f95c

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Extract version from tag
14-
uses: nowsprinting/check-version-format-action@v3
14+
uses: nowsprinting/check-version-format-action@v4
1515
id: version
1616
with:
1717
prefix: 'v'
@@ -23,12 +23,12 @@ jobs:
2323
exit 1
2424
2525
- name: Checkout
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0 # Mandatory to use exact version from tag action
2929

3030
- name: Setup .NET
31-
uses: actions/setup-dotnet@v3
31+
uses: actions/setup-dotnet@v4
3232
with:
3333
global-json-file: global.json
3434

@@ -56,14 +56,14 @@ jobs:
5656
run: dotnet test Remote.Linq.sln -c Release /bl
5757

5858
- name: Upload build log
59-
uses: actions/upload-artifact@v3
59+
uses: actions/upload-artifact@v4
6060
with:
6161
name: msbuild_log
6262
path: msbuild.binlog
6363
if-no-files-found: error
6464

6565
- name: Upload packages
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
with:
6868
name: nuget_packages
6969
path: artifacts

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222

2323
### Security
2424

25+
## [7.2.1][7.2.1] - 2024-07-10
26+
27+
### Security
28+
29+
- Bump _aqua-core_ from 5.4.0 to 5.4.1 ([CVE-2024-30105][CVE-2024-30105])
30+
2531
## [7.2.0][7.2.0] - 2024-06-04
2632

2733
### Added
@@ -108,8 +114,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
108114

109115
- Dropped unused dependency on _System.Runtime.Serialization.Formatters_.
110116

111-
[vnext-unreleased]: https://github.com/6bee/Remote.Linq/compare/7.2.0...main
112-
[7.2.0]: https://github.com/6bee/Remote.Linq/compare/7.1.0...7.2.0
117+
[vnext-unreleased]: https://github.com/6bee/Remote.Linq/compare/v7.2.1...main
118+
[7.2.1]: https://github.com/6bee/Remote.Linq/compare/v7.2.0...v7.2.1
119+
[7.2.0]: https://github.com/6bee/Remote.Linq/compare/7.1.0...v7.2.0
113120
[7.1.0]: https://github.com/6bee/Remote.Linq/compare/7.0.0...7.1.0
114121
[7.0.0]: https://github.com/6bee/Remote.Linq/compare/6.3.1...7.0.0
115122
[6.3.1]: https://github.com/6bee/Remote.Linq/compare/6.3.0...6.3.1
@@ -124,3 +131,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
124131
[nullable-references]: https://docs.microsoft.com/en-us/dotnet/csharp/nullable-references
125132
[protobuf-net-v2]: https://www.nuget.org/packages/protobuf-net/2.4.6
126133
[syslib0050]: https://learn.microsoft.com/en-us/dotnet/fundamentals/syslib-diagnostics/syslib0050
134+
[CVE-2024-30105]: https://github.com/advisories/GHSA-hh2w-p6rv-4g7w

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<MinorVersion>3</MinorVersion>
77
<PatchVersion>0</PatchVersion>
88
<PreReleaseLabel>dev</PreReleaseLabel>
9-
<AquaCoreVersion>5.4.0</AquaCoreVersion>
9+
<AquaCoreVersion>5.4.1</AquaCoreVersion>
1010
</PropertyGroup>
1111

1212
<PropertyGroup>

0 commit comments

Comments
 (0)