summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-02-24 15:29:36 -0500
committerDavid Sherret <dsherret@users.noreply.github.com>2022-02-24 17:45:39 -0500
commit5f280662042054e8272225ef81f2be3445a6b057 (patch)
tree71eee7da01d05241bb7a778e2ec81d4f0fadab68
parent4deefafdd1b16126351447ba63fb269b19234767 (diff)
1.19.1 (#13762)
-rw-r--r--Cargo.lock2
-rw-r--r--Releases.md8
-rw-r--r--cli/Cargo.toml2
-rw-r--r--cli/compat/esm_resolver.rs2
-rw-r--r--cli/compat/mod.rs2
5 files changed, 12 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 386020dcb..a4e461dee 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -728,7 +728,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.19.0"
+version = "1.19.1"
dependencies = [
"atty",
"base64 0.13.0",
diff --git a/Releases.md b/Releases.md
index 2f3d3e528..f532d305a 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,14 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
+### 1.19.1 / 2022.02.24
+
+- feat(ext/ffi): Support read only global statics (#13662)
+- fix(compile): Support import maps (#13756)
+- fix(upgrade): move the file permission check to the beginning of the upgrade
+ process (#13726)
+- fix(vendor): do not add absolute specifiers to scopes (#13710)
+
### 1.19.0 / 2022.02.17
- feat: Add Deno.FsFile, deprecate Deno.File (#13660)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 0b2b666ed..36a03c964 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.19.0"
+version = "1.19.1"
authors = ["the Deno authors"]
default-run = "deno"
edition = "2021"
diff --git a/cli/compat/esm_resolver.rs b/cli/compat/esm_resolver.rs
index d2b45ba0f..68824ab11 100644
--- a/cli/compat/esm_resolver.rs
+++ b/cli/compat/esm_resolver.rs
@@ -1234,7 +1234,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.126.0/node/http.ts").unwrap();
+ Url::parse("https://deno.land/std@0.127.0/node/http.ts").unwrap();
let actual = node_resolve("http", main.as_str(), &cwd).unwrap();
assert!(matches!(actual, ResolveResponse::Esm(_)));
diff --git a/cli/compat/mod.rs b/cli/compat/mod.rs
index 375edc9a7..feeca2f4a 100644
--- a/cli/compat/mod.rs
+++ b/cli/compat/mod.rs
@@ -16,7 +16,7 @@ pub(crate) 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.126.0/";
+static STD_URL_STR: &str = "https://deno.land/std@0.127.0/";
static SUPPORTED_MODULES: &[&str] = &[
"assert",