Skip to content

Commit 7aa6e59

Browse files
committed
Version 2.5.0
1 parent d1b31eb commit 7aa6e59

File tree

39 files changed

+80
-45
lines changed

39 files changed

+80
-45
lines changed

CHANGELOG.md

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

4+
## v2.5.0 - August 13, 2018
5+
* In WebMarkupMin.Core, WebMarkupMin.MsAjax, WebMarkupMin.Yui, WebMarkupMin.NUglify and WebMarkupMin.AspNet.Common modules added support of .NET Standard 2.0
6+
* In WebMarkupMin.Yui:
7+
* YUI Compressor for .NET was updated to version 3.0.0
8+
* Now requires .NET Framework 4.5.2 or greater
9+
* In ASP.NET extensions:
10+
* Now the `NullLogger` class is used as the default logger
11+
* In `IHttpCompressionManager` interface was added one new method - `TryCreateCompressor`
12+
* In `ICompressor` interface was added one new property - `SupportsFlush`
13+
* Now, by default, the GZip algorithm has a higher priority than the Deflate
14+
* Added module based on the [Brotli](https://en.wikipedia.org/wiki/Brotli) compression algorithm
15+
* In ASP.NET 4.X extensions added support of .NET Framework 4.5
16+
417
## v2.4.5 - July 9, 2018
518
* Fixed a DOCTYPE parsing error
619
* React DOM component comments are no longer removed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,20 @@ You can try WebMarkupMin in action and experiment with different minification se
1818
## NuGet Packages
1919

2020
### Core
21-
* [WebMarkupMin: Core](http://nuget.org/packages/WebMarkupMin.Core/) (supports .NET Framework 4.0 Client, .NET Framework 4.5 and .NET Standard 1.3)
21+
* [WebMarkupMin: Core](http://nuget.org/packages/WebMarkupMin.Core/) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
2222

2323
### External JS and CSS minifiers
24-
* [WebMarkupMin: MS Ajax](http://nuget.org/packages/WebMarkupMin.MsAjax/) (supports .NET Framework 4.0 Client and .NET Framework 4.5)
25-
* [WebMarkupMin: YUI](http://nuget.org/packages/WebMarkupMin.Yui/) (supports .NET Framework 4.0 Client and .NET Framework 4.5)
26-
* [WebMarkupMin: NUglify](http://nuget.org/packages/WebMarkupMin.NUglify/) (supports .NET Framework 4.0 Client, .NET Framework 4.5 and .NET Standard 1.3)
24+
* [WebMarkupMin: MS Ajax](http://nuget.org/packages/WebMarkupMin.MsAjax/) (supports .NET Framework 4.0 Client, .NET Framework 4.5 and .NET Standard 2.0)
25+
* [WebMarkupMin: YUI](http://nuget.org/packages/WebMarkupMin.Yui/) (supports .NET Framework 4.5.2 and .NET Standard 2.0)
26+
* [WebMarkupMin: NUglify](http://nuget.org/packages/WebMarkupMin.NUglify/) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
2727

2828
### ASP.NET Extensions
29-
* [WebMarkupMin: ASP.NET 4.X HTTP modules](http://nuget.org/packages/WebMarkupMin.AspNet4.HttpModules/) (supports .NET Framework 4.0)
30-
* [WebMarkupMin: ASP.NET 4.X MVC](http://nuget.org/packages/WebMarkupMin.AspNet4.Mvc/) (supports .NET Framework 4.0)
31-
* [WebMarkupMin: ASP.NET 4.X Web Forms](http://nuget.org/packages/WebMarkupMin.AspNet4.WebForms/) (supports .NET Framework 4.0)
29+
* [WebMarkupMin: ASP.NET 4.X HTTP modules](http://nuget.org/packages/WebMarkupMin.AspNet4.HttpModules/) (supports .NET Framework 4.0 and .NET Framework 4.5)
30+
* [WebMarkupMin: ASP.NET 4.X MVC](http://nuget.org/packages/WebMarkupMin.AspNet4.Mvc/) (supports .NET Framework 4.0 and .NET Framework 4.5)
31+
* [WebMarkupMin: ASP.NET 4.X Web Forms](http://nuget.org/packages/WebMarkupMin.AspNet4.WebForms/) (supports .NET Framework 4.0 and .NET Framework 4.5)
3232
* [WebMarkupMin: ASP.NET Core 1.X](http://nuget.org/packages/WebMarkupMin.AspNetCore1/) (supports .NET Framework 4.5.1 and .NET Standard 1.3)
3333
* [WebMarkupMin: ASP.NET Core 2.X](http://nuget.org/packages/WebMarkupMin.AspNetCore2/) (supports .NET Standard 2.0)
34+
* [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 and .NET Standard 2.0)
3435

3536
### Unofficial modules
3637
* [Syku.WebMarkupMin.Config](https://www.nuget.org/packages/Syku.WebMarkupMin.Config/) (supports .NET Standard 2.0) by Michał Sykutera

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

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

3+
<h3>2.5.0 - August 13, 2018</h3>
4+
<ul>
5+
<li>In WebMarkupMin.Core, WebMarkupMin.MsAjax, WebMarkupMin.Yui, WebMarkupMin.NUglify and WebMarkupMin.AspNet.Common modules added support of .NET Standard 2.0</li>
6+
<li>In WebMarkupMin.Yui:
7+
<ul>
8+
<li>YUI Compressor for .NET was updated to version 3.0.0</li>
9+
<li>Now requires .NET Framework 4.5.2 or greater</li>
10+
</ul>
11+
</li>
12+
<li>In ASP.NET extensions:
13+
<ul>
14+
<li>Now the <code>NullLogger</code> class is used as the default logger</li>
15+
<li>In <code>IHttpCompressionManager</code> interface was added one new method - <code>TryCreateCompressor</code></li>
16+
<li>In <code>ICompressor</code> interface was added one new property - <code>SupportsFlush</code></li>
17+
<li>Now, by default, the GZip algorithm has a higher priority than the Deflate</li>
18+
<li>Added module based on the <a href="https://en.wikipedia.org/wiki/Brotli" target="_blank">Brotli</a> compression algorithm</li>
19+
</ul>
20+
</li>
21+
<li>In ASP.NET 4.X extensions added support of .NET Framework 4.5</li>
22+
</ul>
23+
324
<h3>2.4.5 - July 9, 2018</h3>
425
<ul>
526
<li>Fixed a DOCTYPE parsing error</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.4.5.0")]
17-
[assembly: AssemblyFileVersion("2.4.5.0")]
16+
[assembly: AssemblyVersion("2.5.0.0")]
17+
[assembly: AssemblyFileVersion("2.5.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.4.1",
4+
"version": "2.5.0",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.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.4.5.0")]
17-
[assembly: AssemblyFileVersion("2.4.5.0")]
16+
[assembly: AssemblyVersion("2.5.0.0")]
17+
[assembly: AssemblyFileVersion("2.5.0.0")]

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.4.5</VersionPrefix>
5+
<VersionPrefix>2.5.0</VersionPrefix>
66
<TargetFramework>netcoreapp1.0</TargetFramework>
77
<RuntimeFrameworkVersion>1.0.9</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.4.1",
4+
"version": "2.5.0",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.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.4.5</VersionPrefix>
5+
<VersionPrefix>2.5.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.4.1",
4+
"version": "2.5.0",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.0",

0 commit comments

Comments
 (0)