Skip to content

Commit f637e50

Browse files
denobotdevsnek
andauthored
0.307.0 (#887)
Bumped versions for 0.307.0 Please ensure: - [ ] Crate versions are bumped correctly To make edits to this PR: ```shell git fetch upstream release_0_307.0 && git checkout -b release_0_307.0 upstream/release_0_307.0 ``` cc @devsnek Co-authored-by: devsnek <devsnek@users.noreply.github.com>
1 parent 3f15885 commit f637e50

File tree

6 files changed

+25
-9
lines changed

6 files changed

+25
-9
lines changed

.github/workflows/ci-test-valgrind/suppressions.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,19 @@
4343
fun:Builtins_CEntry_Return1_ArgvOnStack_NoBuiltinExit
4444
fun:Builtins_CompileLazy
4545
}
46+
{
47+
<insert_a_suppression_name_here>
48+
Memcheck:Value8
49+
fun:_ZN2v88internal18MacroAssemblerBase12BuiltinEntryENS0_7BuiltinE
50+
fun:_ZN2v88internal14MacroAssembler11CallBuiltinENS0_7BuiltinE
51+
fun:_ZZN2v88internal6maglev15MaglevAssembler32CheckAndEmitDeferredWriteBarrierILNS2_9StoreModeE1EEEvNS0_8RegisterENSt4__Cr11conditionalIXeqT_LS4_0EEiS5_E4typeES5_NS1_16RegisterSnapshotENS2_17ValueIsCompressedENS2_13ValueCanBeSmiEENKUlPS2_NS1_12ZoneLabelRefES5_S5_S5_SA_SB_E_clESD_SE_S5_S5_S5_SA_SB_
52+
fun:_ZZN2v88internal6maglev15MaglevAssembler32CheckAndEmitDeferredWriteBarrierILNS2_9StoreModeE1EEEvNS0_8RegisterENSt4__Cr11conditionalIXeqT_LS4_0EEiS5_E4typeES5_NS1_16RegisterSnapshotENS2_17ValueIsCompressedENS2_13ValueCanBeSmiEENUlPS2_NS1_12ZoneLabelRefES5_S5_S5_SA_SB_E_8__invokeESD_SE_S5_S5_S5_SA_SB_
53+
fun:_ZN2v88internal6maglev6detail20DeferredCodeInfoImplIZNS1_15MaglevAssembler32CheckAndEmitDeferredWriteBarrierILNS4_9StoreModeE1EEEvNS0_8RegisterENSt4__Cr11conditionalIXeqT_LS6_0EEiS7_E4typeES7_NS1_16RegisterSnapshotENS4_17ValueIsCompressedENS4_13ValueCanBeSmiEEUlPS4_NS1_12ZoneLabelRefES7_S7_S7_SC_SD_E_E8GenerateESF_
54+
fun:_ZN2v88internal6maglev19MaglevCodeGenerator8EmitCodeEv
55+
fun:_ZN2v88internal6maglev19MaglevCodeGenerator8AssembleEv
56+
fun:_ZN2v88internal6maglev14MaglevCompiler7CompileEPNS0_12LocalIsolateEPNS1_21MaglevCompilationInfoE
57+
fun:_ZN2v88internal6maglev20MaglevCompilationJob14ExecuteJobImplEPNS0_16RuntimeCallStatsEPNS0_12LocalIsolateE
58+
fun:_ZN2v88internal12_GLOBAL__N_113CompileMaglevEPNS0_7IsolateENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_14BytecodeOffsetENS1_21CompileResultBehaviorE
59+
fun:_ZN2v88internal12_GLOBAL__N_121GetOrCompileOptimizedEPNS0_7IsolateENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_8CodeKindENS0_14BytecodeOffsetENS1_21CompileResultBehaviorE
60+
fun:_ZN2v88internal8Compiler16CompileOptimizedEPNS0_7IsolateENS0_6HandleINS0_10JSFunctionEEENS0_15ConcurrencyModeENS0_8CodeKindE
61+
}

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ repository = "https://github.com/denoland/deno_core"
1919

2020
[workspace.dependencies]
2121
# Local dependencies
22-
deno_core = { version = "0.306.0", path = "./core" }
23-
deno_ops = { version = "0.182.0", path = "./ops" }
24-
serde_v8 = { version = "0.215.0", path = "./serde_v8" }
22+
deno_core = { version = "0.307.0", path = "./core" }
23+
deno_ops = { version = "0.183.0", path = "./ops" }
24+
serde_v8 = { version = "0.216.0", path = "./serde_v8" }
2525
deno_core_testing = { path = "./testing" }
2626

2727
v8 = { version = "0.105.0", default-features = false }

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_core"
5-
version = "0.306.0"
5+
version = "0.307.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

ops/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_ops"
5-
version = "0.182.0"
5+
version = "0.183.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

serde_v8/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "serde_v8"
5-
version = "0.215.0"
5+
version = "0.216.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

0 commit comments

Comments
 (0)