Skip to content

Commit b21a14e

Browse files
committed
Version 2.18.0 RC 1
1 parent 1200690 commit b21a14e

File tree

43 files changed

+96
-43
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+96
-43
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Change log
22
==========
33

4+
## v2.18.0 RC 1 - November 11, 2024
5+
* In ASP.NET Core extensions:
6+
* Services required by WebMarkupMin are now conditionally registered using the `TryAdd` methods
7+
* Added a `AspNetCoreLogger` class, which is a wrapper around the standard ASP.NET Core logger
8+
* 3 packages have been deprecated:
9+
* WebMarkupMin.AspNetCore5 package replaced by the WebMarkupMin.AspNetCore3 package
10+
* WebMarkupMin.AspNetCore7 package replaced by the WebMarkupMin.AspNetCore6 package
11+
* WebMarkupMin.AspNetCore8 package replaced by the WebMarkupMin.AspNetCoreLatest package
12+
* In GZip, Deflate and Brotli compression settings for .NET 9.0 was added one new property - `AlternativeLevel`
13+
* In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.35
14+
* In WebMarkupMin.AspNetCoreLatest added support for the ASP.NET Core 9.0 RC 2
15+
* In WebMarkupMin.AspNet.Brotli:
16+
* Added support for .NET 9.0 RC 2
17+
* Removed a .NET 6 and .NET 7 targets
18+
* In compression settings was changed a default value of the `Level` property from `5` to `4`
19+
420
## v2.17.0 - August 6, 2024
521
* In HTML and XHTML minification settings was added one new property - `PreservableHtmlCommentList` (default is empty)
622
* In WebMarkupMin.NUglify added support for the NUglify version 1.21.9

samples/SharedData/text-content/change-log.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
<p>An overview of new features and fixes:</p>
22

3+
<h3>2.18.0 RC 1 - November 11, 2024</h3>
4+
<ul>
5+
<li>In ASP.NET Core extensions:
6+
<ul>
7+
<li>Services required by WebMarkupMin are now conditionally registered using the <code>TryAdd</code> methods</li>
8+
<li>Added a <code>AspNetCoreLogger</code> class, which is a wrapper around the standard ASP.NET Core logger</li>
9+
<li>3 packages have been deprecated:
10+
<ul>
11+
<li>WebMarkupMin.AspNetCore5 package replaced by the WebMarkupMin.AspNetCore3 package</li>
12+
<li>WebMarkupMin.AspNetCore7 package replaced by the WebMarkupMin.AspNetCore6 package</li>
13+
<li>WebMarkupMin.AspNetCore8 package replaced by the WebMarkupMin.AspNetCoreLatest package</li>
14+
</ul>
15+
</li>
16+
<li>In GZip, Deflate and Brotli compression settings for .NET 9.0 was added one new property - <code>AlternativeLevel</code></li>
17+
</ul>
18+
</li>
19+
<li>In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.35</li>
20+
<li>In WebMarkupMin.AspNetCoreLatest added support for the ASP.NET Core 9.0 RC 2</li>
21+
<li>In WebMarkupMin.AspNet.Brotli:
22+
<ul>
23+
<li>Added support for .NET 9.0 RC 2</li>
24+
<li>Removed a .NET 6 and .NET 7 targets</li>
25+
<li>In compression settings was changed a default value of the <code>Level</code> property from <code>5</code> to <code>4</code></li>
26+
</ul>
27+
</li>
28+
</ul>
29+
330
<h3>2.17.0 - August 6, 2024</h3>
431
<ul>
532
<li>In HTML and XHTML minification settings was added one new property - <code>PreservableHtmlCommentList</code> (default is empty)</li>

samples/WebMarkupMin.Sample.AspNet4.Mvc4/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("d94caf32-2855-453e-a282-60f6b5cc7955")]
1515

16-
[assembly: AssemblyVersion("2.17.0.0")]
17-
[assembly: AssemblyFileVersion("2.17.0.0")]
16+
[assembly: AssemblyVersion("2.18.0.0")]
17+
[assembly: AssemblyFileVersion("2.18.0.0")]

samples/WebMarkupMin.Sample.AspNet4.Mvc4/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "webmarkupmin.sample.aspnet4.mvc4",
33
"private": true,
4-
"version": "2.17.0",
4+
"version": "2.18.0",
55
"devDependencies": {
66
"gulp": "4.0.2",
77
"del": "5.1.0",

samples/WebMarkupMin.Sample.AspNet45.WebForms/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("ead85e04-c167-496e-ad08-476c85e44289")]
1515

16-
[assembly: AssemblyVersion("2.17.0.0")]
17-
[assembly: AssemblyFileVersion("2.17.0.0")]
16+
[assembly: AssemblyVersion("2.18.0.0")]
17+
[assembly: AssemblyFileVersion("2.18.0.0")]

samples/WebMarkupMin.Sample.AspNetCore.Infrastructure/WebMarkupMin.Sample.AspNetCore.Infrastructure.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Product>Web Markup Minifier: Infrastructure for ASP.NET Core Samples</Product>
5-
<VersionPrefix>2.17.0</VersionPrefix>
5+
<VersionPrefix>2.18.0</VersionPrefix>
66
<TargetFrameworks>net452;netstandard1.6;netstandard2.0;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
77
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.1</NetStandardImplicitPackageVersion>
88
<OutputType>Library</OutputType>

samples/WebMarkupMin.Sample.AspNetCore1.Mvc1/WebMarkupMin.Sample.AspNetCore1.Mvc1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Product>Web Markup Minifier: Sample ASP.NET Core 1.0 MVC 1 Site</Product>
5-
<VersionPrefix>2.17.0</VersionPrefix>
5+
<VersionPrefix>2.18.0</VersionPrefix>
66
<TargetFramework>netcoreapp1.0</TargetFramework>
77
<RuntimeFrameworkVersion>1.0.16</RuntimeFrameworkVersion>
88
<OutputType>Exe</OutputType>

samples/WebMarkupMin.Sample.AspNetCore1.Mvc1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "webmarkupmin.sample.aspnetcore1.mvc1",
33
"private": true,
4-
"version": "2.17.0",
4+
"version": "2.18.0",
55
"devDependencies": {
66
"gulp": "4.0.2",
77
"del": "5.1.0",

samples/WebMarkupMin.Sample.AspNetCore1Full.Mvc1/WebMarkupMin.Sample.AspNetCore1Full.Mvc1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Product>Web Markup Minifier: Sample ASP.NET Core 1.0 Full MVC 1 Site</Product>
5-
<VersionPrefix>2.17.0</VersionPrefix>
5+
<VersionPrefix>2.18.0</VersionPrefix>
66
<TargetFramework>net452</TargetFramework>
77
<OutputType>Exe</OutputType>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/WebMarkupMin.Sample.AspNetCore1Full.Mvc1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "webmarkupmin.sample.aspnetcore1full.mvc1",
33
"private": true,
4-
"version": "2.17.0",
4+
"version": "2.18.0",
55
"devDependencies": {
66
"gulp": "4.0.2",
77
"del": "5.1.0",

0 commit comments

Comments
 (0)