Skip to content

Commit

Permalink
Version 2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Oct 6, 2023
1 parent bb3ade8 commit 362e077
Show file tree
Hide file tree
Showing 36 changed files with 50 additions and 35 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change log
==========

## v2.15.0 - October 6, 2023
* In ASP.NET Core extensions was improved a message text of the “Unable to find the required services” error
* In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.22
* In WebMarkupMin.AspNetCore7 added support for the ASP.NET Core 7.0.11
* Created the WebMarkupMin.AspNetCore8 module, that contains middleware for the ASP.NET Core 8 RC1

## v2.14.1 - June 27, 2023
* Fixed a [error #147](https://github.com/Taritsyn/WebMarkupMin/issues/147)[WebMarkupMin.AspNetCore5] Sometimes a blank page is returned as the request has no response data available”
* In WebMarkupMin.AspNetCore6 added support of ASP.NET Core 6.0.18
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ You can try WebMarkupMin in action and experiment with different minification se
* [WebMarkupMin: ASP.NET Core 5.X](http://nuget.org/packages/WebMarkupMin.AspNetCore5/) (supports .NET 5.0)
* [WebMarkupMin: ASP.NET Core 6](http://nuget.org/packages/WebMarkupMin.AspNetCore6/) (supports .NET 6)
* [WebMarkupMin: ASP.NET Core 7](http://nuget.org/packages/WebMarkupMin.AspNetCore7/) (supports .NET 7)
* [WebMarkupMin: ASP.NET Core 8](http://nuget.org/packages/WebMarkupMin.AspNetCore8/) (supports .NET 8)
* [WebMarkupMin: Brotli for ASP.NET](http://nuget.org/packages/WebMarkupMin.AspNet.Brotli/) (supports .NET Framework 4.0, .NET Framework 4.5, .NET Standard 1.3, .NET Standard 2.0, .NET Standard 2.1, .NET 6 and .NET 7)

### Unofficial modules
Expand Down
8 changes: 8 additions & 0 deletions samples/SharedData/text-content/change-log.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
<p>An overview of new features and fixes:</p>

<h3>2.15.0 - October 6, 2023</h3>
<ul>
<li>In ASP.NET Core extensions was improved a message text of the “Unable to find the required services” error</li>
<li>In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.22</li>
<li>In WebMarkupMin.AspNetCore7 added support for the ASP.NET Core 7.0.11</li>
<li>Created the WebMarkupMin.AspNetCore8 module, that contains middleware for the ASP.NET Core 8 RC1</li>
</ul>

<h3>2.14.1 - June 27, 2023</h3>
<ul>
<li>Fixed a <a href="https://github.com/Taritsyn/WebMarkupMin/issues/147" target="_blank">error #147</a> “[WebMarkupMin.AspNetCore5] Sometimes a blank page is returned as the request has no response data available”</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
[assembly: ComVisible(false)]
[assembly: Guid("d94caf32-2855-453e-a282-60f6b5cc7955")]

[assembly: AssemblyVersion("2.14.1.0")]
[assembly: AssemblyFileVersion("2.14.1.0")]
[assembly: AssemblyVersion("2.15.0.0")]
[assembly: AssemblyFileVersion("2.15.0.0")]
2 changes: 1 addition & 1 deletion samples/WebMarkupMin.Sample.AspNet4.Mvc4/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webmarkupmin.sample.aspnet4.mvc4",
"private": true,
"version": "2.14.1",
"version": "2.15.0",
"devDependencies": {
"gulp": "4.0.2",
"del": "5.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
[assembly: ComVisible(false)]
[assembly: Guid("ead85e04-c167-496e-ad08-476c85e44289")]

[assembly: AssemblyVersion("2.14.1.0")]
[assembly: AssemblyFileVersion("2.14.1.0")]
[assembly: AssemblyVersion("2.15.0.0")]
[assembly: AssemblyFileVersion("2.15.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Infrastructure for ASP.NET Core Samples</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFrameworks>net452;netstandard1.6;netcoreapp2.1;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.1</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Sample ASP.NET Core 1.0 MVC 1 Site</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>netcoreapp1.0</TargetFramework>
<RuntimeFrameworkVersion>1.0.16</RuntimeFrameworkVersion>
<OutputType>Exe</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion samples/WebMarkupMin.Sample.AspNetCore1.Mvc1/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webmarkupmin.sample.aspnetcore1.mvc1",
"private": true,
"version": "2.14.1",
"version": "2.15.0",
"devDependencies": {
"gulp": "4.0.2",
"del": "5.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Sample ASP.NET Core 1.0 Full MVC 1 Site</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>net452</TargetFramework>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webmarkupmin.sample.aspnetcore1full.mvc1",
"private": true,
"version": "2.14.1",
"version": "2.15.0",
"devDependencies": {
"gulp": "4.0.2",
"del": "5.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Sample ASP.NET Core 2.1 MVC 2.1 Site</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>netcoreapp2.1</TargetFramework>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webmarkupmin.sample.aspnetcore21.mvc21",
"private": true,
"version": "2.14.1",
"version": "2.15.0",
"devDependencies": {
"gulp": "4.0.2",
"del": "5.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Sample ASP.NET Core 3.1 MVC 3.1 Site</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>netcoreapp3.1</TargetFramework>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Sample ASP.NET Core 5 MVC 5 Site</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>net5.0</TargetFramework>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Sample ASP.NET Core 6 MVC 6 Site</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Sample ASP.NET Core 7 MVC 7 Site</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Sample ASP.NET Core 8 MVC 8 Site</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Logic for Samples</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFrameworks>net40;net452;netstandard1.6;netcoreapp2.1;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.1</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Resources for Samples</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFrameworks>net40;net452;netstandard1.6;netstandard2.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.0</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 1.X</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFrameworks>net451;netstandard1.3</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore1/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 1.X v2.14.1
README file for Web Markup Minifier: ASP.NET Core 1.X v2.15.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 2.X</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputType>Library</OutputType>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore2/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 2.X v2.14.1
README file for Web Markup Minifier: ASP.NET Core 2.X v2.15.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 3.1+</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>netcoreapp3.1</TargetFramework>
<OutputType>Library</OutputType>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore3/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 3.1+ v2.14.1
README file for Web Markup Minifier: ASP.NET Core 3.1+ v2.15.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 5.X</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>net5.0</TargetFramework>
<OutputType>Library</OutputType>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore5/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 5.X v2.14.1
README file for Web Markup Minifier: ASP.NET Core 5.X v2.15.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 6</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Library</OutputType>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore6/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 6 v2.14.1
README file for Web Markup Minifier: ASP.NET Core 6 v2.15.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 7</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFramework>net7.0</TargetFramework>
<OutputType>Library</OutputType>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore7/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 7 v2.14.1
README file for Web Markup Minifier: ASP.NET Core 7 v2.15.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: ASP.NET Core 8</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion src/WebMarkupMin.AspNetCore8/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Web Markup Minifier: ASP.NET Core 8 v2.14.1
README file for Web Markup Minifier: ASP.NET Core 8 v2.15.0

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Core Benchmarks</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFrameworks>net461;netcoreapp2.1;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion test/WebMarkupMin.Tests/WebMarkupMin.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Web Markup Minifier: Core Tests</Product>
<VersionPrefix>2.14.1</VersionPrefix>
<VersionPrefix>2.15.0</VersionPrefix>
<TargetFrameworks>net452;net462;netcoreapp2.1;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down

0 comments on commit 362e077

Please sign in to comment.