Skip to content

Commit

Permalink
upgrade: rusty_v8 0.26.0 (denoland#11625)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Aug 10, 2021
1 parent 3a7de8e commit 162ec19
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/tests/error_018_hide_long_source_js.js.out
Original file line number Diff line number Diff line change
@@ -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:https:///[WILDCARD]cli/tests/error_018_hide_long_source_js.js:3:206
2 changes: 1 addition & 1 deletion cli/tests/test/no_check.out
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down

0 comments on commit 162ec19

Please sign in to comment.