mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.2.0
This commit is contained in:
parent
d619e3c7ac
commit
6af5149ea3
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -377,7 +377,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.1.3"
|
||||
version = "1.2.0"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.3",
|
||||
@ -430,7 +430,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.48.3"
|
||||
version = "0.49.0"
|
||||
dependencies = [
|
||||
"derive_deref",
|
||||
"downcast-rs",
|
||||
@ -460,7 +460,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_typescript"
|
||||
version = "0.48.3"
|
||||
version = "0.49.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"serde",
|
||||
|
55
Releases.md
55
Releases.md
@ -6,6 +6,61 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 1.2.0 / 2020.07.13
|
||||
|
||||
Changes in the CLI:
|
||||
|
||||
- feat(cli): Add --cert option to "deno upgrade" (#6609)
|
||||
- feat(cli): Add --config flag to "deno install" (#6204)
|
||||
- feat(cli): Add --json option to "deno info" (#6372)
|
||||
- feat(cli): Add --no-check option (#6456)
|
||||
- feat(cli): Add --output option to "deno upgrade" (#6352)
|
||||
- feat(cli): Add DENO_CERT environment variable (#6370)
|
||||
- feat(cli): Add lockfile support to bundle (#6624)
|
||||
- feat(cli/js): Add WriteFileOptions to writeTextFile & writeTextFileSync
|
||||
(#6280)
|
||||
- feat(cli/js): Add copy argument to Buffer.bytes (#6697)
|
||||
- feat(cli/js): Add performance user timing APIs (#6421)
|
||||
- feat(cli/js): Add sorted, trailingComma, compact and iterableLimit to
|
||||
InspectOptions (#6591)
|
||||
- feat(cli/js): Deno.chown() make uid, gid args optional (#4612)
|
||||
- feat(doc): Improve terminal printer (#6594)
|
||||
- feat(test): Add support for regex in filter flag (#6343)
|
||||
- feat(unstable): Add Deno.consoleSize() (#6520)
|
||||
- feat(unstable): Add Deno.ppid (#6539, #6717)
|
||||
- fix(cli): Don't panic when no "HOME" env var is set (#6728)
|
||||
- fix(cli): Harden pragma and reference parsing in module analysis (#6702)
|
||||
- fix(cli): Panic when stdio is null on windows (#6528)
|
||||
- fix(cli): Parsing of --allow-net flag (#6698)
|
||||
- fix(cli/js): Allow Buffer to store MAX_SIZE bytes (#6570)
|
||||
- fix(cli/js): Definition of URL constructor (#6653)
|
||||
- fix(cli/js): Deno.setRaw shouldn't panic on ENOTTY (#6630)
|
||||
- fix(cli/js): Fix process socket types (#6676)
|
||||
- fix(cli/js): Fix relative redirect in fetch API (#6715)
|
||||
- fix(cli/js): Implement IPv4 hostname parsing in URL (#6707)
|
||||
- fix(cli/js): Implement spec-compliant host parsing for URL (#6689)
|
||||
- fix(cli/js): Response constructor default properties in fetch API (#6650)
|
||||
- fix(cli/js): Update timers to ignore Date Override (#6552)
|
||||
- perf(cli): Improve .arrayBuffer() speed in fetch API (#6669)
|
||||
- refactor(core): Remove control slice from ops (#6048)
|
||||
|
||||
Changes in std version 0.61.0:
|
||||
|
||||
- BREAKING(std/encoding/hex): Simplify API (#6690)
|
||||
- feat(std/datetime): Add weekOfYear (#6659)
|
||||
- feat(std/log): Expose Logger type and improve public interface for get & set
|
||||
log levels (#6617)
|
||||
- feat(std/node): Add buf.equals() (#6640)
|
||||
- feat(std/wasi): Implement fd_readdir (#6631)
|
||||
- fix(std): base64 in workers (#6681)
|
||||
- fix(std): md5 in workers (#6662)
|
||||
- fix(std/http): Properly return port 80 in \_parseAddrFromStr (#6635)
|
||||
- fix(std/mime): Boundary random hex values (#6646)
|
||||
- fix(std/node): Add encoding argument to Buffer.byteLength (#6639)
|
||||
- fix(std/tesing/asserts): AssertEquals/NotEquals should use milliseconds in
|
||||
Date (#6644)
|
||||
- fix(std/wasi): Return errno::success from fd_tell (#6636)
|
||||
|
||||
### 1.1.3 / 2020.07.03
|
||||
|
||||
Changes in the CLI:
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.1.3"
|
||||
version = "1.2.0"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
@ -15,13 +15,13 @@ name = "deno"
|
||||
path = "main.rs"
|
||||
|
||||
[build-dependencies]
|
||||
deno_core = { path = "../core", version = "0.48.3" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.48.3" }
|
||||
deno_core = { path = "../core", version = "0.49.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.49.0" }
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.48.3" }
|
||||
deno_core = { path = "../core", version = "0.49.0" }
|
||||
deno_lint = "0.1.16"
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.48.3" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.49.0" }
|
||||
|
||||
atty = "0.2.14"
|
||||
base64 = "0.12.2"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.48.3"
|
||||
version = "0.49.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.48.3"
|
||||
version = "0.49.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.48.3" }
|
||||
deno_core = { path = "../core", version = "0.49.0" }
|
||||
serde_json = "1.0.55"
|
||||
serde = { version = "1.0.112", features = ["derive"] }
|
||||
|
@ -4,4 +4,4 @@
|
||||
* the cli's API is stable. In the future when std becomes stable, likely we
|
||||
* will match versions with cli as we have in the past.
|
||||
*/
|
||||
export const VERSION = "0.60.0";
|
||||
export const VERSION = "0.61.0";
|
||||
|
Loading…
Reference in New Issue
Block a user