mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v0.41.0
This commit is contained in:
parent
0c48470b35
commit
00fa4858b0
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -459,7 +459,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "0.40.0"
|
||||
version = "0.41.0"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.0",
|
||||
@ -511,7 +511,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.40.0"
|
||||
version = "0.41.0"
|
||||
dependencies = [
|
||||
"derive_deref",
|
||||
"downcast-rs",
|
||||
@ -527,7 +527,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_typescript"
|
||||
version = "0.40.0"
|
||||
version = "0.41.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"serde",
|
||||
|
33
Releases.md
33
Releases.md
@ -6,6 +6,39 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### v0.41.0 / 2020.04.16
|
||||
|
||||
- BREAKING: Improve readdir() and FileInfo interfaces (#4763)
|
||||
- BREAKING: Remove depracated APIs for mkdir and mkdirSync (#4615)
|
||||
- BREAKING: Make fetch API more web compatible (#4687)
|
||||
- BREAKING: Remove std/testing/format.ts (#4749)
|
||||
- BREAKING: Migrate std/types to deno.land/x/types/ (#4713, #4771)
|
||||
- feat(doc): support for runtime built-ins (#4635)
|
||||
- feat(std/log): rotating handler, docs improvements (#4674)
|
||||
- feat(std/node): Add isPrimitive method (#4673)
|
||||
- feat(std/node/fs): Add copyFile and copyFileSync methods (#4726)
|
||||
- feat(std/signal): Add onSignal method (#4696)
|
||||
- feat(std/testing): Change output of diff (#4697)
|
||||
- feat(std/http): Verify cookie name (#4685)
|
||||
- feat(std/multipart): Make readForm() type safe (#4710)
|
||||
- feat(std/uuid): Add UUID v1 (#4758)
|
||||
- feat(install): Honor log level arg (#4714)
|
||||
- feat(workers): Make Worker API more web compatible (#4684, #4734, #4391,
|
||||
#4737, #4746)
|
||||
- feat: Add AbortController and AbortSignal API (#4757)
|
||||
- fix(install): Clean up output on Windows (#4764)
|
||||
- fix(core): Handle SyntaxError during script compilation (#4770)
|
||||
- fix(cli): Async stack traces and stack formatting (#4690, #4706, #4715)
|
||||
- fix(cli): Remove unnecessary namespaces in "deno types" (#4683, #4698, #4718,
|
||||
#4719, #4736, #4741)
|
||||
- fix(cli): Panic on invalid UTF-8 string (#4704)
|
||||
- fix(cli/js/net): Make generator return types iterable (#4661)
|
||||
- fix(doc): Handle optional and extends fields (#4738, #4739)
|
||||
- refactor: Event and EventTarget implementation (#4707)
|
||||
- refactor: Use synchronous syscalls where applicable (#4762)
|
||||
- refactor: Remove calls to futures::executor::block_on (#4760, #4775)
|
||||
- upgrade: Rust crates (#4742)
|
||||
|
||||
### v0.40.0 / 2020.04.08
|
||||
|
||||
- BREAKING: Rename 'deno fetch' subcommand to 'deno cache' (#4656)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "0.40.0"
|
||||
version = "0.41.0"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
@ -19,12 +19,12 @@ name = "deno"
|
||||
path = "main.rs"
|
||||
|
||||
[build-dependencies]
|
||||
deno_core = { path = "../core", version = "0.40.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.40.0" }
|
||||
deno_core = { path = "../core", version = "0.41.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.41.0" }
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.40.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.40.0" }
|
||||
deno_core = { path = "../core", version = "0.41.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.41.0" }
|
||||
|
||||
atty = "0.2.14"
|
||||
base64 = "0.12.0"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.40.0"
|
||||
version = "0.41.0"
|
||||
edition = "2018"
|
||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||
authors = ["the Deno authors"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deno_typescript"
|
||||
version = "0.40.0"
|
||||
version = "0.41.0"
|
||||
license = "MIT"
|
||||
description = "To compile TypeScript to a snapshot during build.rs"
|
||||
repository = "https://github.com/denoland/deno"
|
||||
@ -19,6 +19,6 @@ exclude = [
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.40.0" }
|
||||
deno_core = { path = "../core", version = "0.41.0" }
|
||||
serde_json = "1.0.51"
|
||||
serde = { version = "1.0.106", features = ["derive"] }
|
||||
|
Loading…
Reference in New Issue
Block a user