diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-29 18:48:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-29 18:48:48 +0200 |
commit | 106b00173806e088472e123d04fdc8d260c3820d (patch) | |
tree | 1935ca0e2986a000a36cb1225a24b8522c7d36d8 | |
parent | 8e39275429c36ff5dfa5d62a80713c5b288fe26a (diff) |
v1.0.3
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | Releases.md | 42 | ||||
-rw-r--r-- | cli/Cargo.toml | 10 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | deno_typescript/Cargo.toml | 4 | ||||
-rw-r--r-- | std/version.ts | 2 |
6 files changed, 54 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock index 9f27a9e06..c58e3e924 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -460,7 +460,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.0.2" +version = "1.0.3" dependencies = [ "atty", "base64 0.12.0", @@ -513,7 +513,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.45.2" +version = "0.46.0" dependencies = [ "derive_deref", "downcast-rs", @@ -529,7 +529,7 @@ dependencies = [ [[package]] name = "deno_typescript" -version = "0.45.2" +version = "0.46.0" dependencies = [ "deno_core", "serde", diff --git a/Releases.md b/Releases.md index 466790ca7..d5402afa4 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,48 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### 1.0.3 / 2020.05.29 + +Changes in the CLI: + +- fix: Add unstable checks for Deno.dir and Diagnostics (#5750) +- fix: Add unstable checks for unix transport (#5818) +- fix: Create HTTP cache lazily (#5795) +- fix: Dependency analysis in TS compiler (#5817, #5785, #5870) +- fix: Expose Error.captureStackTrace (#5254) +- fix: Improved typechecking error for unstable props (#5503) +- fix: REPL evaluates in strict mode (#5565) +- fix: Write lock file before running any code (#5794) +- fix(debugger): BorrowMutError when evaluating expression in inspector console + (#5822) +- fix(doc): Handle comments at the top of the file (#5891) +- fix(fmt): Handle formatting UTF-8 w/ BOM files (#5881) +- fix(permissions): Fix CWD and exec path leaks (#5642) +- fix(web/blob): DenoBlob name (#5879) +- fix(web/console): Hide `values` for console.table if display not necessary + (#5914) +- fix(web/console): Improve indentation when displaying objects with console.log + (#5909) +- fix(web/encoding): atob should throw dom exception (#5730) +- fix(web/fetch): Make Response constructor standard (#5787) +- fix(web/fetch): Allow ArrayBuffer as Fetch request body (#5831) +- fix(web/formData): Set default filename for Blob to <blob> (#5907) +- upgrade: dprint to 0.19.0 (#5899) + +Changes in std version 0.54.0: + +- feat(std/encoding): Add base64 (#5811) +- feat(std/http): Handle .wasm files in file_server (#5896) +- feat(std/node): Add link/linkSync polyfill (#5930) +- feat(std/node): fs.writeFile/sync path can now be an URL (#5652) +- feat(std/testing): Return results in benchmark promise (#5842) +- fix(std/http): readTrailer evaluates header names by case-insensitive (#4902) +- fix(std/log): Improve the calculation of byte length (#5819) +- fix(std/log): Fix FileHandler test with mode 'x' on non-English systems + (#5757) +- fix(std/log): Use writeAllSync instead of writeSync (#5868) +- fix(std/testing/asserts): Support browsers (#5847) + ### 1.0.2 / 2020.05.22 Changes in the CLI: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ad3f59ad8..47b77e848 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.0.2" +version = "1.0.3" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -15,12 +15,12 @@ name = "deno" path = "main.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.45.0" } -deno_typescript = { path = "../deno_typescript", version = "0.45.0" } +deno_core = { path = "../core", version = "0.46.0" } +deno_typescript = { path = "../deno_typescript", version = "0.46.0" } [dependencies] -deno_core = { path = "../core", version = "0.45.0" } -deno_typescript = { path = "../deno_typescript", version = "0.45.0" } +deno_core = { path = "../core", version = "0.46.0" } +deno_typescript = { path = "../deno_typescript", version = "0.46.0" } atty = "0.2.14" base64 = "0.12.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index ebd10838b..aa4820ee8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_core" -version = "0.45.2" +version = "0.46.0" 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 66a278576..5910da424 100644 --- a/deno_typescript/Cargo.toml +++ b/deno_typescript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deno_typescript" -version = "0.45.2" +version = "0.46.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.45.0" } +deno_core = { path = "../core", version = "0.46.0" } serde_json = "1.0.52" serde = { version = "1.0.106", features = ["derive"] } diff --git a/std/version.ts b/std/version.ts index e05359510..dca20431b 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.53.0"; +export const VERSION = "0.54.0"; |