Skip to content

Commit

Permalink
Release 3.0.10 (and few other versions) to fix support for future Mic…
Browse files Browse the repository at this point in the history
…rosoft.CodeAnalysis and resolve security audits
  • Loading branch information
ashmind committed Nov 18, 2024
1 parent 733bc71 commit 2f4aeaa
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 12 deletions.
9 changes: 5 additions & 4 deletions Common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Changelog

## [Unreleased]
## [3.0.10] - 2024-11-19

### Fixed
- Updated dependencies to resolve security warnings
- Fixed support for Microsoft.CodeAnalysis 4.12.0 (preview)
- Fixed support for Microsoft.CodeAnalysis 4.11.0 (final)
- Fixed support for Microsoft.CodeAnalysis 4.10.0 (final)
- Fixed support for Microsoft.CodeAnalysis 4.11.0 (final) with help from @Sicos1977
- Fixed support for Microsoft.CodeAnalysis 4.10.0 (final) with help from @Sicos1977
- Added explicit dependency on safe version of System.Net.Http to resolve security audit warnings
- Added explicit dependency on safe version of System.Text.RegularExpressions to resolve security audit warnings

## [3.0.9] - 2024-06-01

Expand Down
3 changes: 2 additions & 1 deletion Common/Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyName>MirrorSharp.Common</AssemblyName>
<RootNamespace>MirrorSharp</RootNamespace>
<TargetFrameworks>netstandard2.0; netcoreapp3.1</TargetFrameworks>
<VersionPrefix>3.0.9</VersionPrefix>
<VersionPrefix>3.0.10</VersionPrefix>
<Description>MirrorSharp shared server library. $(DescriptionSuffix)</Description>
<PackageTags>Roslyn;CodeMirror</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -19,6 +19,7 @@
<PackageReference Include="System.Memory" Version="4.5.5" />
<!-- Avoids vulnerability in version referenced by other dependencies -->
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<!-- Avoids vulnerability in version referenced by other dependencies -->
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions FSharp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changelog

## [Unreleased]
## [3.0.0] - 2024-11-19

### Added
- Added IFSharpSession.CompileAsync

### Fixed
- Updated dependencies to resolve security warnings
- Updated dependency on Microsoft.Build.Utilities.Core to safe version to resolve security audit warnings

## Changed
- Changed required .NET Framework version to 4.6.2 as required by dependent packages
Expand Down
2 changes: 1 addition & 1 deletion FSharp/FSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyName>MirrorSharp.FSharp</AssemblyName>
<RootNamespace>MirrorSharp.FSharp</RootNamespace>
<TargetFrameworks>netstandard2.0; net462</TargetFrameworks>
<VersionPrefix>2.0.1</VersionPrefix>
<VersionPrefix>3.0.0</VersionPrefix>
<Description>MirrorSharp F# support library. $(DescriptionSuffix)</Description>
<PackageTags>F#;CodeMirror</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
5 changes: 5 additions & 0 deletions IL/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.3] - 2024-11-19

### Fixed
- Added explicit dependency on safe version of System.Drawing.Common to resolve security audit warnings

## [0.2] - 2022-04-04
## [0.2-test-2021-04-02-1] - 2021-04-02
## [0.2-test-2021-04-01-1] - 2021-04-01
Expand Down
2 changes: 1 addition & 1 deletion IL/IL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyName>MirrorSharp.IL</AssemblyName>
<RootNamespace>MirrorSharp.IL</RootNamespace>
<TargetFramework>netstandard2.0</TargetFramework>
<VersionPrefix>0.2</VersionPrefix>
<VersionPrefix>0.3</VersionPrefix>
<Description>MirrorSharp IL support library. $(DescriptionSuffix)</Description>
<PackageTags>IL;CodeMirror</PackageTags>
</PropertyGroup>
Expand Down
5 changes: 3 additions & 2 deletions Php/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog

## [Unreleased]
## [0.17] - 2024-11-19

### Fixed
- Updated dependencies to resolve security warnings
- Added explicit dependency on safe version of Newtonsoft.Json to resolve security audit warnings
- Added explicit dependency on safe version of System.Data.SqlClient to resolve security audit warnings

## [0.16] - 2022-04-04
## [0.16-test-2021-04-02-1] - 2021-04-02
Expand Down
2 changes: 1 addition & 1 deletion Php/Php.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyName>MirrorSharp.Php</AssemblyName>
<RootNamespace>MirrorSharp.Php</RootNamespace>
<TargetFrameworks>netstandard2</TargetFrameworks>
<VersionPrefix>0.16</VersionPrefix>
<VersionPrefix>0.17</VersionPrefix>
<Description>MirrorSharp PHP support library, implemented using Peachpie. $(DescriptionSuffix)</Description>
<PackageTags>PHP;Peachpie;CodeMirror</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down

0 comments on commit 2f4aeaa

Please sign in to comment.