Skip to content

Commit

Permalink
Version 3.24.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Mar 25, 2024
1 parent 9ad5881 commit 92c7bea
Show file tree
Hide file tree
Showing 35 changed files with 49 additions and 43 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change log
==========

## v3.24.2 - March 25, 2024
* In JavaScriptEngineSwitcher.V8:
* Microsoft ClearScript.V8 was updated to version 7.4.5 (support of the V8 version 12.3.219.12)
* In configuration settings of the V8 JS engine was added two new properties: `AddPerformanceObject` (default `false`) and `SetTimerResolution` (default `false`)

## v3.24.1 - March 7, 2024
* Minor improvements in metadata of NuGet packages
* In JavaScriptEngineSwitcher.Jint added support for the Jint version 3.0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
[assembly: ComVisible(false)]
[assembly: Guid("39487053-b459-4433-ae93-e00affc653c6")]

[assembly: AssemblyVersion("3.24.1.0")]
[assembly: AssemblyFileVersion("3.24.1.0")]
[assembly: AssemblyVersion("3.24.2.0")]
[assembly: AssemblyFileVersion("3.24.2.0")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jsengineswitcher.sample.aspnet4.mvc4",
"private": true,
"version": "3.24.1",
"version": "3.24.2",
"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>JS Engine Switcher: Infrastructure for ASP.NET Core Samples</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFrameworks>net451;netstandard1.6;netstandard2.0;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.0</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand Down Expand Up @@ -32,15 +32,15 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="6.0.27" />
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="6.0.28" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="7.0.16" />
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="7.0.17" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="8.0.2" />
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="8.0.3" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>JS Engine Switcher: Sample ASP.NET Core 1.0 MVC 1 Site</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>netcoreapp1.0</TargetFramework>
<RuntimeFrameworkVersion>1.0.16</RuntimeFrameworkVersion>
<OutputType>Exe</OutputType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jsengineswitcher.sample.aspnetcore1.mvc1",
"private": true,
"version": "3.24.1",
"version": "3.24.2",
"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>JS Engine Switcher: Sample ASP.NET Core 1.0 Full MVC 1 Site</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>net451</TargetFramework>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jsengineswitcher.sample.aspnetcore1full.mvc1",
"private": true,
"version": "3.24.1",
"version": "3.24.2",
"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>JS Engine Switcher: Sample ASP.NET Core 2.1 MVC 2.1 Site</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</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": "jsengineswitcher.sample.aspnetcore21.mvc21",
"private": true,
"version": "3.24.1",
"version": "3.24.2",
"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>JS Engine Switcher: Sample ASP.NET Core 3.1 MVC 3.1 Site</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>netcoreapp3.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": "jsengineswitcher.sample.aspnetcore31.mvc31",
"private": true,
"version": "3.24.1",
"version": "3.24.2",
"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>JS Engine Switcher: Sample ASP.NET Core 5.0 MVC 5 Site</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>net5.0</TargetFramework>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "javascriptengineswitcher.sample.aspnetcore5.mvc5",
"private": true,
"version": "3.24.1",
"version": "3.24.2",
"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>JS Engine Switcher: Sample ASP.NET Core 6.0 MVC 6 Site</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Exe</OutputType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "javascriptengineswitcher.sample.aspnetcore6.mvc6",
"private": true,
"version": "3.24.1",
"version": "3.24.2",
"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>JS Engine Switcher: Sample ASP.NET Core 7.0 MVC 7 Site</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Exe</OutputType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "javascriptengineswitcher.sample.aspnetcore7.mvc7",
"private": true,
"version": "3.24.1",
"version": "3.24.2",
"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>JS Engine Switcher: Sample ASP.NET Core 8.0 MVC 8 Site</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Exe</OutputType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "javascriptengineswitcher.sample.aspnetcore8.mvc8",
"private": true,
"version": "3.24.1",
"version": "3.24.2",
"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>JS Engine Switcher: Logic for Samples</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFrameworks>net40;net451;net471;netstandard1.6;netstandard2.0;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.0</NetStandardImplicitPackageVersion>
<OutputType>Library</OutputType>
Expand Down Expand Up @@ -44,15 +44,15 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="6.0.27" />
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="6.0.28" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="7.0.16" />
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="7.0.17" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="8.0.2" />
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="8.0.3" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>JS Engine Switcher: Resources for Samples</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFrameworks>net40-client;net45;net471;netstandard1.3;netstandard2.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">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>JS Engine Switcher: V8 for Linux (x64)</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

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


--------------------------------------------------------------------------------
README file for JS Engine Switcher: V8 for Linux x64 v3.24.1
README file for JS Engine Switcher: V8 for Linux x64 v3.24.2

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

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

<PropertyGroup>
<Product>JS Engine Switcher: V8 for OS X (x64)</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/JavaScriptEngineSwitcher.V8.Native.osx-x64/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for JS Engine Switcher: V8 for OS X x64 v3.24.1
README file for JS Engine Switcher: V8 for OS X x64 v3.24.2

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

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

<PropertyGroup>
<Product>JS Engine Switcher: V8 for Windows (x64)</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/JavaScriptEngineSwitcher.V8.Native.win-x64/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for JS Engine Switcher: V8 for Windows x64 v3.24.1
README file for JS Engine Switcher: V8 for Windows x64 v3.24.2

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

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

<PropertyGroup>
<Product>JS Engine Switcher: V8 for Windows (x86)</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/JavaScriptEngineSwitcher.V8.Native.win-x86/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for JS Engine Switcher: V8 for Windows x86 v3.24.1
README file for JS Engine Switcher: V8 for Windows x86 v3.24.2

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

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

<PropertyGroup>
<Product>JS Engine Switcher: V8</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFrameworks>net45;net471;netstandard2.1;netcoreapp3.1;net5.0</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
7 changes: 4 additions & 3 deletions src/JavaScriptEngineSwitcher.V8/V8Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,10 @@ public UIntPtr MaxStackUsage
/// while the current script engine's instance is active
/// </summary>
/// <remarks>
/// This property is ignored if <c><see cref="AddPerformanceObject"/></c> property is <c>false</c>.
/// It is only a hint and may be ignored on some systems. On platforms that support it, this
/// property can degrade overall system performance or power efficiency, so caution is recommended.
/// This property is ignored if value of the <c><see cref="AddPerformanceObject"/></c> property
/// is <c>false</c>. It is only a hint and may be ignored on some systems. On platforms that
/// support it, this property can degrade overall system performance or power efficiency, so
/// caution is recommended.
/// </remarks>
public bool SetTimerResolution
{
Expand Down
2 changes: 1 addition & 1 deletion src/JavaScriptEngineSwitcher.V8/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for JS Engine Switcher: V8 v3.24.1
README file for JS Engine Switcher: V8 v3.24.2

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

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

<PropertyGroup>
<Product>JS Engine Switcher: Benchmarks</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>JS Engine Switcher: Tests</Product>
<VersionPrefix>3.24.1</VersionPrefix>
<VersionPrefix>3.24.2</VersionPrefix>
<TargetFrameworks>net462;net471;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<LangVersion>latest</LangVersion>
Expand Down

0 comments on commit 92c7bea

Please sign in to comment.