diff --git a/Cargo.lock b/Cargo.lock index 4f98ed2289539..608d25c1cccfd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Releases.md b/Releases.md index 4d7bfddd6adb2..519e527f2626e 100644 --- a/Releases.md +++ b/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: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6c91f3aa32fe2..69eb6fa8614b0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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" diff --git a/core/Cargo.toml b/core/Cargo.toml index d2ac26482b5b7..a0d4660f71c2c 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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"] diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml index 16870998d0e0e..844d1ada9a817 100644 --- a/deno_typescript/Cargo.toml +++ b/deno_typescript/Cargo.toml @@ -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"] } diff --git a/std/version.ts b/std/version.ts index 304464190135b..b6fac837f2537 100644 --- a/std/version.ts +++ b/std/version.ts @@ -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";