0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

upgrade: rusty_v8 0.26.0 (#11625)

This commit is contained in:
Bartek Iwańczuk 2021-08-10 09:13:02 +02:00 committed by GitHub
parent 3a7de8e40f
commit 162ec192b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 11 deletions

View file

@ -255,7 +255,7 @@ jobs:
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
key: f-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
key: g-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
# In main branch, always creates fresh cache
- name: Cache build output (main)
@ -270,7 +270,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: |
f-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
g-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
# Restore cache from the latest 'main' branch build.
- name: Cache build output (PR)
@ -286,7 +286,7 @@ jobs:
!./target/*/*.tar.gz
key: never_saved
restore-keys: |
f-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
g-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
# Don't save cache after building PRs or branches other than 'main'.
- name: Skip save cache (PR)

8
Cargo.lock generated
View file

@ -3063,9 +3063,9 @@ dependencies = [
[[package]]
name = "rusty_v8"
version = "0.25.3"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b70e9384fa508bb1f337139aa01485a6d2b695072835bf084d635674b3445422"
checksum = "ced8bcb4fdc4820792030377a71cedbde5b49b340c2174ee0ea368ef244bf8f1"
dependencies = [
"bitflags",
"fslock",
@ -3267,9 +3267,9 @@ dependencies = [
[[package]]
name = "serde_v8"
version = "0.8.0"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee08dee77621b7bf7432a560f382f32a53df98e6a4009bca1f4998d5c90d24a"
checksum = "88bf7bf03d60f6c5098d2d1867404ff50695435f638c34e4a95b8b3631cb4900"
dependencies = [
"rusty_v8",
"serde",

View file

@ -1,2 +1,2 @@
error: Uncaught TypeError: Cannot read property 'a' of undefined
error: Uncaught TypeError: Cannot read properties of undefined (reading 'a')
at file:///[WILDCARD]cli/tests/error_018_hide_long_source_js.js:3:206

View file

@ -1,7 +1,7 @@
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD])
error: Uncaught TypeError: Cannot read property 'fn' of undefined
error: Uncaught TypeError: Cannot read properties of undefined (reading 'fn')
Deno.test();
^
at [WILDCARD]

View file

@ -22,10 +22,10 @@ libc = "0.2.98"
log = "0.4.14"
parking_lot = "0.11.1"
pin-project = "1.0.7"
rusty_v8 = "0.25.3"
rusty_v8 = "0.26.0"
serde = { version = "1.0.126", features = ["derive"] }
serde_json = { version = "1.0.64", features = ["preserve_order"] }
serde_v8 = { version = "0.8.0" }
serde_v8 = { version = "0.9.0" }
url = { version = "2.2.2", features = ["serde"] }
[[example]]