Skip to content

Commit

Permalink
Merge branch 'feat/expect-addSnapshotSerializer' of github.com:eryue0…
Browse files Browse the repository at this point in the history
…220/deno_std into feat/expect-addSnapshotSerializer

* 'feat/expect-addSnapshotSerializer' of github.com:eryue0220/deno_std:
  deprecation(crypto): rename an export to match style guide, deprecating original and two other obsolete imports (denoland#4525)
  chore: add `--allow-dirty` flag to publish dry run (denoland#4535)
  [unstable] BREAKING(semver): remove comparator.semver field (denoland#4533)
  chore(crypto): upgrade dependencies (denoland#4530)
  0.221.0 (denoland#4531)
  docs(fs): polish documentation (denoland#4526)
  fix(fs): `SubdirectoryMoveError` extends `Error` correctly (denoland#4528)
  chore(fs): remove `test.ts` (denoland#4527)
  • Loading branch information
eryue0220 committed Mar 30, 2024
2 parents 32ca1c9 + b85bfec commit 5ef840f
Show file tree
Hide file tree
Showing 36 changed files with 2,892 additions and 2,568 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
if: success() && steps.source.outputs.modified == 'true'
with:
# This must match the version in _wasm/rust-toolchain.toml of the module folder
rust-version: 1.76.0
rust-version: 1.77.0
targets: wasm32-unknown-unknown
components: rustfmt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workspace_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Publish (dry run)
if: github.event_name == 'push'
run: deno publish --dry-run
run: deno publish --allow-dirty --dry-run

- name: Publish (real)
if: github.event_name == 'release'
Expand Down
12 changes: 12 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
### 0.221.0 / 2024.03.27

- feat(expect): add `expect.{closeTo, stringContaining, stringMatching}` (#4508)
- fix(_tools): update `check_deprecation` path exclusion to recognize Windows
directory separators (#4519)
- fix(crypto): move FNV hashes from TypeScript to Rust/Wasm and implement
iteration functionality (#4515)
- fix(expect/assert): missing constructor equality check (#4512)
- fix(fs): `SubdirectoryMoveError` extends `Error` correctly (#4528)
- fix(yaml): speciously restrictive type for `stringify()` (#4507)
- fix: use hyphens for JSR package exports (#4424)

### 0.220.1 / 2024.03.15

- fix(tar): leak in `Tar() checks directory entry type` test (#4490)
Expand Down
5 changes: 1 addition & 4 deletions crypto/_benches/bench.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#!/usr/bin/env -S deno bench
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import {
crypto as stdCrypto,
wasmDigestAlgorithms as DIGEST_ALGORITHM_NAMES,
} from "../mod.ts";
import { crypto as stdCrypto, DIGEST_ALGORITHM_NAMES } from "../mod.ts";

import nodeCrypto from "node:crypto";

Expand Down
28 changes: 14 additions & 14 deletions crypto/_wasm/Cargo.lock

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

6 changes: 3 additions & 3 deletions crypto/_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ opt-level = 3

[dependencies]
blake2 = "0.10.6"
blake3 = { version = "1.5.0", features = ["traits-preview"] }
blake3 = { version = "1.5.1", features = ["traits-preview"] }
derive_more = "0.99.17"
digest = { version = "0.10.7", features = ["core-api", "std"] }
generic-array = "1.0.0"
js-sys = "0.3.68"
js-sys = "0.3.69"
md4 = "0.10.2"
md-5 = "0.10.6"
ripemd = "0.1.3"
Expand All @@ -31,4 +31,4 @@ sha2 = "0.10.8"
sha3 = "0.10.8"
tiger = "0.2.1"
typenum = "1.17.0"
wasm-bindgen = "=0.2.91"
wasm-bindgen = "=0.2.92"
Loading

0 comments on commit 5ef840f

Please sign in to comment.