Skip to content

Commit 08af9eb

Browse files
rypiscisaureus
authored andcommitted
Upgrade V8 to 8.7.25 (#443)
1 parent 3c8d2d4 commit 08af9eb

File tree

10 files changed

+12
-11
lines changed

10 files changed

+12
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Rusty V8 Binding
22

3-
V8 Version: 8.6.334
3+
V8 Version: 8.7.25
44

55
[![ci](https://github.com/denoland/rusty_v8/workflows/ci/badge.svg?branch=master)](https://github.com/denoland/rusty_v8/actions)
66
[![crates](https://img.shields.io/crates/v/rusty_v8.svg)](https://crates.io/crates/rusty_v8)

build

Submodule build updated 115 files

buildtools

Submodule buildtools updated 1 file

tests/test_api.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3400,7 +3400,8 @@ fn heap_statistics() {
34003400
assert!(s.total_global_handles_size() >= s.used_global_handles_size());
34013401
assert!(s.used_heap_size() > 0);
34023402
assert!(s.heap_size_limit() >= s.used_heap_size());
3403-
assert!(s.peak_malloced_memory() >= s.malloced_memory());
3403+
assert!(s.peak_malloced_memory() > 0);
3404+
assert!(s.malloced_memory() > 0);
34043405
assert_eq!(s.number_of_native_contexts(), 0);
34053406

34063407
let scope = &mut v8::HandleScope::new(isolate);

third_party/jinja2

Submodule jinja2 updated from 3f90fa0 to 61cfe2a

third_party/markupsafe

Submodule markupsafe updated from 8f45f5c to f2fb0f2

third_party/zlib

Submodule zlib updated from 7492de9 to d53accf

tools/clang

Submodule clang updated from 8a232eb to 708cbfd

tools/upgrade_v8.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# WARNING: This is not an automated tool! This is just some commands to copy and
22
# paste manually to upgrade V8.
33

4-
export BRANCH=20200806_rusty_v8
5-
export COMMITDATE=2020-08-05T17:03:41.000Z
4+
export BRANCH=20200827_rusty_v8
5+
export COMMITDATE=2020-08-26T18:48:51.000Z
66

77
git submodule update -f
88
git submodule foreach 'git remote rm upstream; true' &&

v8

Submodule v8 updated from ce4c306 to 1f2195b

0 commit comments

Comments
 (0)