diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-08-10 09:13:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 09:13:02 +0200 |
commit | 162ec192b7094b59ff0f5abc73cc089ac031ff3d (patch) | |
tree | 90d81bebafcf5003d0422366d6a8d4bf449f39b4 | |
parent | 3a7de8e40ffe3b93cd6db9158946832917bc0e48 (diff) |
upgrade: rusty_v8 0.26.0 (#11625)
-rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
-rw-r--r-- | Cargo.lock | 8 | ||||
-rw-r--r-- | cli/tests/error_018_hide_long_source_js.js.out | 2 | ||||
-rw-r--r-- | cli/tests/test/no_check.out | 2 | ||||
-rw-r--r-- | core/Cargo.toml | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85ca0c1d7..178d955b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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) diff --git a/Cargo.lock b/Cargo.lock index a7be6a419..8e9200d61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/cli/tests/error_018_hide_long_source_js.js.out b/cli/tests/error_018_hide_long_source_js.js.out index 750ddec4e..c83778dc0 100644 --- a/cli/tests/error_018_hide_long_source_js.js.out +++ b/cli/tests/error_018_hide_long_source_js.js.out @@ -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 diff --git a/cli/tests/test/no_check.out b/cli/tests/test/no_check.out index eed308672..9daab7ac4 100644 --- a/cli/tests/test/no_check.out +++ b/cli/tests/test/no_check.out @@ -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] diff --git a/core/Cargo.toml b/core/Cargo.toml index e068cbc46..dc704b4e8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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]] |