Skip to content

Commit dab93da

Browse files
committed
Version 3.11.2
1 parent 643149b commit dab93da

File tree

32 files changed

+43
-31
lines changed

32 files changed

+43
-31
lines changed

CHANGELOG.md

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

4+
## v3.11.2 - March 5, 2021
5+
* In JavaScriptEngineSwitcher.NiL added support of NiL.JS version 2.5.1475
6+
* In JavaScriptEngineSwitcher.V8:
7+
* Microsoft ClearScript.V8 was updated to version 7.1.1 (support of V8 version 8.9.255.20)
8+
* Added support of .NET Standard 2.1
9+
* Added support of Linux (ARM)
10+
* In configuration settings of the V8 JS engine was added one new property - `HeapExpansionMultiplier` (default `0`)
11+
412
## v3.11.1 - February 1, 2021
513
* In JavaScriptEngineSwitcher.Jint:
614
* Runtime exceptions now contain a stack trace

JavaScriptEngineSwitcher.NoSamples.sln

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "licenses", "licenses", "{4A
3030
Licenses\chakra-core-license.txt = Licenses\chakra-core-license.txt
3131
Licenses\chakra-samples-license.txt = Licenses\chakra-samples-license.txt
3232
Licenses\clearscript-license.txt = Licenses\clearscript-license.txt
33+
Licenses\jering-javascript-nodejs-license.txt = Licenses\jering-javascript-nodejs-license.txt
3334
Licenses\jint-license.txt = Licenses\jint-license.txt
3435
Licenses\jsrt-dotnet-license.txt = Licenses\jsrt-dotnet-license.txt
3536
Licenses\jurassic-license.txt = Licenses\jurassic-license.txt
37+
Licenses\microsoft-dotnet-arcade-sdk-license.txt = Licenses\microsoft-dotnet-arcade-sdk-license.txt
3638
Licenses\msie-javascript-engine-license.txt = Licenses\msie-javascript-engine-license.txt
3739
Licenses\nil-license.txt = Licenses\nil-license.txt
40+
Licenses\nodejs-license.txt = Licenses\nodejs-license.txt
3841
Licenses\polyfills-for-old-dot-net-license.txt = Licenses\polyfills-for-old-dot-net-license.txt
3942
Licenses\v8-license.txt = Licenses\v8-license.txt
4043
Licenses\vroomjs-core-license.txt = Licenses\vroomjs-core-license.txt

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,12 @@ This library can be installed through NuGet:
3232
* [JS Engine Switcher: MSIE](http://nuget.org/packages/JavaScriptEngineSwitcher.Msie) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
3333
* [JS Engine Switcher: NiL](http://nuget.org/packages/JavaScriptEngineSwitcher.NiL) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Framework 4.6.1, .NET Standard 1.3, .NET Standard 1.6 and .NET Standard 2.0)
3434
* [JS Engine Switcher: Node](http://nuget.org/packages/JavaScriptEngineSwitcher.Node) (supports .NET Framework 4.6.1 and .NET Standard 2.0)
35-
* [JS Engine Switcher: V8](http://nuget.org/packages/JavaScriptEngineSwitcher.V8) (supports .NET Framework 4.5, .NET Framework 4.7.1, .NET Core App 3.1 and .NET 5.0)
35+
* [JS Engine Switcher: V8](http://nuget.org/packages/JavaScriptEngineSwitcher.V8) (supports .NET Framework 4.5, .NET Framework 4.7.1, .NET Standard 2.1, .NET Core App 3.1 and .NET 5.0)
3636
* [Microsoft ClearScript.V8 for Windows (x86)](https://www.nuget.org/packages/Microsoft.ClearScript.V8.Native.win-x86)
3737
* [Microsoft ClearScript.V8 for Windows (x64)](https://www.nuget.org/packages/Microsoft.ClearScript.V8.Native.win-x64)
3838
* [Microsoft ClearScript.V8 for Windows (ARM64)](https://www.nuget.org/packages/Microsoft.ClearScript.V8.Native.win-arm64)
3939
* [Microsoft ClearScript.V8 for Linux (x64)](https://www.nuget.org/packages/Microsoft.ClearScript.V8.Native.linux-x64)
40+
* [Microsoft ClearScript.V8 for Linux (ARM)](https://www.nuget.org/packages/Microsoft.ClearScript.V8.Native.linux-arm)
4041
* [Microsoft ClearScript.V8 for Linux (ARM64)](https://www.nuget.org/packages/Microsoft.ClearScript.V8.Native.linux-arm64)
4142
* [Microsoft ClearScript.V8 for OS X (x64)](https://www.nuget.org/packages/Microsoft.ClearScript.V8.Native.osx-x64)
4243
* [JS Engine Switcher: Vroom](http://nuget.org/packages/JavaScriptEngineSwitcher.Vroom) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Framework 4.7.1, .NET Standard 1.6 and .NET Standard 2.0)

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "5.0.103"
3+
"version": "5.0.200"
44
}
55
}

samples/JavaScriptEngineSwitcher.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("39487053-b459-4433-ae93-e00affc653c6")]
1515

16-
[assembly: AssemblyVersion("3.11.1.0")]
17-
[assembly: AssemblyFileVersion("3.11.1.0")]
16+
[assembly: AssemblyVersion("3.11.2.0")]
17+
[assembly: AssemblyFileVersion("3.11.2.0")]

samples/JavaScriptEngineSwitcher.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": "jsengineswitcher.sample.aspnet4.mvc4",
33
"private": true,
4-
"version": "3.11.1",
4+
"version": "3.11.2",
55
"devDependencies": {
66
"gulp": "4.0.2",
77
"del": "5.1.0",

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1/JavaScriptEngineSwitcher.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>JS Engine Switcher: Sample ASP.NET Core 1.0 MVC 1 Site</Product>
5-
<VersionPrefix>3.11.1</VersionPrefix>
5+
<VersionPrefix>3.11.2</VersionPrefix>
66
<TargetFramework>netcoreapp1.0</TargetFramework>
77
<RuntimeFrameworkVersion>1.0.16</RuntimeFrameworkVersion>
88
<OutputType>Exe</OutputType>

samples/JavaScriptEngineSwitcher.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": "jsengineswitcher.sample.aspnetcore1.mvc1",
33
"private": true,
4-
"version": "3.11.1",
4+
"version": "3.11.2",
55
"devDependencies": {
66
"gulp": "4.0.2",
77
"del": "5.1.0",

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1/JavaScriptEngineSwitcher.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>JS Engine Switcher: Sample ASP.NET Core 1.0 Full MVC 1 Site</Product>
5-
<VersionPrefix>3.11.1</VersionPrefix>
5+
<VersionPrefix>3.11.2</VersionPrefix>
66
<TargetFramework>net451</TargetFramework>
77
<OutputType>Exe</OutputType>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/JavaScriptEngineSwitcher.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": "jsengineswitcher.sample.aspnetcore1full.mvc1",
33
"private": true,
4-
"version": "3.11.1",
4+
"version": "3.11.2",
55
"devDependencies": {
66
"gulp": "4.0.2",
77
"del": "5.1.0",

0 commit comments

Comments
 (0)