File tree Expand file tree Collapse file tree 8 files changed +15
-15
lines changed
JavaScriptEngineSwitcher.Sample.AspNetCore.Infrastructure
JavaScriptEngineSwitcher.Sample.Logic
src/JavaScriptEngineSwitcher.Jint Expand file tree Collapse file tree 8 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 8.0.202 "
3
+ "version" : " 8.0.204 "
4
4
}
5
5
}
Original file line number Diff line number Diff line change 32
32
</ItemGroup >
33
33
34
34
<ItemGroup Condition =" '$(TargetFramework)' == 'net6.0' " >
35
- <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 6.0.28 " />
35
+ <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 6.0.29 " />
36
36
</ItemGroup >
37
37
38
38
<ItemGroup Condition =" '$(TargetFramework)' == 'net7.0' " >
39
- <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 7.0.17 " />
39
+ <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 7.0.18 " />
40
40
</ItemGroup >
41
41
42
42
<ItemGroup Condition =" '$(TargetFramework)' == 'net8.0' " >
43
- <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 8.0.3 " />
43
+ <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 8.0.4 " />
44
44
</ItemGroup >
45
45
46
46
</Project >
Original file line number Diff line number Diff line change 44
44
</ItemGroup >
45
45
46
46
<ItemGroup Condition =" '$(TargetFramework)' == 'net6.0' " >
47
- <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 6.0.28 " />
47
+ <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 6.0.29 " />
48
48
</ItemGroup >
49
49
50
50
<ItemGroup Condition =" '$(TargetFramework)' == 'net7.0' " >
51
- <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 7.0.17 " />
51
+ <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 7.0.18 " />
52
52
</ItemGroup >
53
53
54
54
<ItemGroup Condition =" '$(TargetFramework)' == 'net8.0' " >
55
- <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 8.0.3 " />
55
+ <FrameworkReference Include =" Microsoft.AspNetCore.App" Version =" 8.0.4 " />
56
56
</ItemGroup >
57
57
58
58
</Project >
Original file line number Diff line number Diff line change 21
21
<PackageIconFullPath >../../Icons/JavaScriptEngineSwitcher_Jint_Logo128x128.png</PackageIconFullPath >
22
22
<Description >JavaScriptEngineSwitcher.Jint contains a `JintJsEngine` adapter (wrapper for the Jint).</Description >
23
23
<PackageTags >$(PackageCommonTags);Jint</PackageTags >
24
- <PackageReleaseNotes >Jint was updated to version 3.0.2 .</PackageReleaseNotes >
24
+ <PackageReleaseNotes >Jint was updated to version 3.1.0 .</PackageReleaseNotes >
25
25
</PropertyGroup >
26
26
27
27
<ItemGroup >
28
- <PackageReference Include =" Jint" Version =" 3.0.2 " />
28
+ <PackageReference Include =" Jint" Version =" 3.1.0 " />
29
29
30
30
<ProjectReference Include =" ../JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj" />
31
31
</ItemGroup >
Original file line number Diff line number Diff line change 12
12
using OriginalJavaScriptException = Jint . Runtime . JavaScriptException ;
13
13
using OriginalMemoryLimitExceededException = Jint . Runtime . MemoryLimitExceededException ;
14
14
using OriginalObjectInstance = Jint . Native . Object . ObjectInstance ;
15
- using OriginalParsedScript = Esprima . Ast . Script ;
15
+ using OriginalParsedScript = Jint . Prepared < Esprima . Ast . Script > ;
16
16
using OriginalParserException = Esprima . ParserException ;
17
17
using OriginalRecursionDepthOverflowException = Jint . Runtime . RecursionDepthOverflowException ;
18
18
using OriginalRuntimeException = Jint . Runtime . JintException ;
@@ -50,7 +50,7 @@ public sealed class JintJsEngine : JsEngineBase
50
50
/// <summary>
51
51
/// Version of original JS engine
52
52
/// </summary>
53
- private const string EngineVersion = "3.0.2 " ;
53
+ private const string EngineVersion = "3.1.0 " ;
54
54
55
55
/// <summary>
56
56
/// Jint JS engine
Original file line number Diff line number Diff line change 1
- using OriginalParsedScript = Esprima . Ast . Script ;
1
+ using OriginalParsedScript = Jint . Prepared < Esprima . Ast . Script > ;
2
2
3
3
using JavaScriptEngineSwitcher . Core ;
4
4
Original file line number Diff line number Diff line change 1
- JavaScriptEngineSwitcher.Jint contains a ` JintJsEngine ` adapter (wrapper for the [ Jint] ( http://github.com/sebastienros/jint ) version 3.0.2 ).
1
+ JavaScriptEngineSwitcher.Jint contains a ` JintJsEngine ` adapter (wrapper for the [ Jint] ( http://github.com/sebastienros/jint ) version 3.1.0 ).
Original file line number Diff line number Diff line change 12
12
DESCRIPTION
13
13
===========
14
14
JavaScriptEngineSwitcher.Jint contains a `JintJsEngine` adapter (wrapper for the
15
- Jint (http://github.com/sebastienros/jint) version 3.0.2 ).
15
+ Jint (http://github.com/sebastienros/jint) version 3.1.0 ).
16
16
17
17
=============
18
18
RELEASE NOTES
19
19
=============
20
- Jint was updated to version 3.0.2 .
20
+ Jint was updated to version 3.1.0 .
21
21
22
22
=============
23
23
DOCUMENTATION
You can’t perform that action at this time.
0 commit comments