mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
v1.1.3
This commit is contained in:
parent
2b0dc32718
commit
be07aaed84
6 changed files with 52 additions and 12 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -368,7 +368,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.1.2"
|
||||
version = "1.1.3"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.3",
|
||||
|
@ -422,7 +422,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.48.2"
|
||||
version = "0.48.3"
|
||||
dependencies = [
|
||||
"derive_deref",
|
||||
"downcast-rs",
|
||||
|
@ -453,7 +453,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_typescript"
|
||||
version = "0.48.2"
|
||||
version = "0.48.3"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"serde",
|
||||
|
|
40
Releases.md
40
Releases.md
|
@ -6,6 +6,46 @@ https://github.com/denoland/deno/releases
|
|||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 1.1.3 / 2020.07.03
|
||||
|
||||
Changes in the CLI:
|
||||
|
||||
- fix(cli): Change seek offset type from i32 to i64 (#6518)
|
||||
- fix(cli/body): Maximum call stack size exceeded error (#6537)
|
||||
- fix(cli/doc): Doc printer missing [] around tuple type (#6523)
|
||||
- fix(cli/js): Buffer.bytes() ArrayBuffer size (#6511)
|
||||
- fix(cli/js): Fix conditional types for process sockets (#6275)
|
||||
- fix(cli/upgrade): Upgrade fails on Windows with space in temp path (#6522)
|
||||
- fix: Lock file for dynamic imports (#6569)
|
||||
- fix: Move ImportMeta to deno.ns lib (#6588)
|
||||
- fix: Net permissions didn't account for default ports (#6606)
|
||||
- refactor: Improvements to TsCompiler and its tests (#6576)
|
||||
- upgrade: deno_lint 0.1.15 (#6580, #6614)
|
||||
- upgrade: dprint-plugin-typescript 0.19.5 (#6527, #6614)
|
||||
|
||||
Changes in std version 0.60.0:
|
||||
|
||||
- feat(std/asserts): Allow assert functions to specify type parameter (#6413)
|
||||
- feat(std/datetime): Add is leap and difference functions (#4857)
|
||||
- feat(std/io): Add fromStreamReader, fromStreamWriter (#5789, #6535)
|
||||
- feat(std/node): Add Buffer.allocUnsafe (#6533)
|
||||
- feat(std/node): Add Buffer.isEncoding (#6521)
|
||||
- feat(std/node): Support hex/base64 encoding in fs.readFile/fs.writeFile
|
||||
(#6512)
|
||||
- feat(std/wasi) Implement fd_filestat_get (#6555)
|
||||
- feat(std/wasi) Implement fd_filestat_set_size (#6558)
|
||||
- feat(std/wasi): Implement fd_datasync (#6556)
|
||||
- feat(std/wasi): Implement fd_sync (#6560)
|
||||
- fix(std/http): Catch errors on file_server response.send (#6285)
|
||||
- fix(std/http): Support ipv6 parsing (#5263)
|
||||
- fix(std/log): Print "{msg}" when log an empty line (#6381)
|
||||
- fix(std/node): Add fill & encoding args to Buffer.alloc (#6526)
|
||||
- fix(std/node): Do not use absolute urls (#6562)
|
||||
- fix(std/wasi): path_filestat_get padding (#6509)
|
||||
- fix(std/wasi): Use lookupflags for path_filestat_get (#6530)
|
||||
- refactor(std/http): Cookie types to not require full ServerRequest object
|
||||
(#6577)
|
||||
|
||||
### 1.1.2 / 2020.06.26
|
||||
|
||||
Changes in the CLI:
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.1.2"
|
||||
version = "1.1.3"
|
||||
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.1" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.48.1" }
|
||||
deno_core = { path = "../core", version = "0.48.3" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.48.3" }
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.48.2" }
|
||||
deno_core = { path = "../core", version = "0.48.3" }
|
||||
deno_lint = "0.1.15"
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.48.2" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.48.3" }
|
||||
|
||||
atty = "0.2.14"
|
||||
base64 = "0.12.2"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.48.2"
|
||||
version = "0.48.3"
|
||||
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.2"
|
||||
version = "0.48.3"
|
||||
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.2" }
|
||||
deno_core = { path = "../core", version = "0.48.3" }
|
||||
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.59.0";
|
||||
export const VERSION = "0.60.0";
|
||||
|
|
Loading…
Reference in a new issue