summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--Releases.md15
-rw-r--r--cli/Cargo.toml2
-rw-r--r--cli/compat/esm_resolver.rs2
-rw-r--r--cli/compat/mod.rs2
5 files changed, 19 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 751cd9232..b100dbab3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -624,7 +624,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.15.2"
+version = "1.15.3"
dependencies = [
"atty",
"base64 0.13.0",
diff --git a/Releases.md b/Releases.md
index 7095e40ad..06da4cffa 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,21 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
+### 1.15.3 / 2021.10.25
+
+- feat(serde_v8): StringOrBuffer (#12503)
+- feat(serde_v8): allow all values to deserialize to unit type (#12504)
+- fix(cli/dts): update std links for deprecations (#12496)
+- fix(cli/tests): flaky Deno.watchFs() tests (#12485)
+- fix(core): avoid op_state.borrow_mut() for OpsTracker (#12525)
+- fix(core/bindings): use is_instance_of_error() instead of is_native_error()
+ (#12479)
+- fix(ext/net): fix TLS bugs and add 'op_tls_handshake' (#12501)
+- fix(ext/websocket): prevent 'closed normally' panic (#12437)
+- fix(lsp): formatting should error on certain additional swc diagnostics
+ (#12491)
+- fix: declare web types as global (#12497)
+
### 1.15.2 / 2021.10.18
- feat(unstable): Node CJS and ESM resolvers for compat mode (#12424)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 06eb3ff6b..3c316f9b0 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.15.2"
+version = "1.15.3"
authors = ["the Deno authors"]
default-run = "deno"
edition = "2018"
diff --git a/cli/compat/esm_resolver.rs b/cli/compat/esm_resolver.rs
index 49b0bb9e6..a4ea8cffc 100644
--- a/cli/compat/esm_resolver.rs
+++ b/cli/compat/esm_resolver.rs
@@ -1143,7 +1143,7 @@ mod tests {
let cwd = testdir("basic");
let main = Url::from_file_path(cwd.join("main.js")).unwrap();
let expected =
- Url::parse("https://deno.land/std@0.112.0/node/http.ts").unwrap();
+ Url::parse("https://deno.land/std@0.113.0/node/http.ts").unwrap();
let actual = node_resolve("http", main.as_str(), &cwd).unwrap();
println!("actual {}", actual);
diff --git a/cli/compat/mod.rs b/cli/compat/mod.rs
index ad820c14c..ac0a34c5a 100644
--- a/cli/compat/mod.rs
+++ b/cli/compat/mod.rs
@@ -14,7 +14,7 @@ pub use esm_resolver::NodeEsmResolver;
// each release, a better mechanism is preferable, but it's a quick and dirty
// solution to avoid printing `X-Deno-Warning` headers when the compat layer is
// downloaded
-static STD_URL_STR: &str = "https://deno.land/std@0.112.0/";
+static STD_URL_STR: &str = "https://deno.land/std@0.113.0/";
static SUPPORTED_MODULES: &[&str] = &[
"assert",