1.44.1
OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=184
This commit is contained in:
parent
00009fe283
commit
e7b6b64572
8
_service
8
_service
@ -13,8 +13,8 @@
|
|||||||
<service name="tar_scm" mode="manual">
|
<service name="tar_scm" mode="manual">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://github.com/denoland/deno</param>
|
<param name="url">https://github.com/denoland/deno</param>
|
||||||
<param name="revision">v1.42.1</param>
|
<param name="revision">v1.44.1</param>
|
||||||
<param name="version">1.42.1</param>
|
<param name="version">1.44.1</param>
|
||||||
|
|
||||||
<!-- remove large docs -->
|
<!-- remove large docs -->
|
||||||
<param name="exclude">docs</param>
|
<param name="exclude">docs</param>
|
||||||
@ -37,8 +37,8 @@
|
|||||||
<service name="tar_scm" mode="manual">
|
<service name="tar_scm" mode="manual">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://github.com/denoland/rusty_v8</param>
|
<param name="url">https://github.com/denoland/rusty_v8</param>
|
||||||
<param name="revision">v0.89.0</param>
|
<param name="revision">v0.93.0</param>
|
||||||
<param name="version">0.89.0</param>
|
<param name="version">0.93.0</param>
|
||||||
<param name="exclude">.github</param>
|
<param name="exclude">.github</param>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3ea9beef0d13e2444fe54ede413f16edc07aad18b00627f66f3603456311a076
|
|
||||||
size 81728020
|
|
3
deno-1.44.1.tar.xz
Normal file
3
deno-1.44.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1328328dc4d651d595395873933718d9d01b65228f5673bf25087165e91b9773
|
||||||
|
size 101172880
|
@ -21,13 +21,13 @@ diff --git a/cli/args/flags.rs.1 b/cli/args/flags.rs
|
|||||||
index fa28241..d6e2baa 100644
|
index fa28241..d6e2baa 100644
|
||||||
--- a/cli/args/flags.rs.1
|
--- a/cli/args/flags.rs.1
|
||||||
+++ b/cli/args/flags.rs
|
+++ b/cli/args/flags.rs
|
||||||
@@ -835,9 +835,6 @@ static ENV_VARIABLES_HELP: &str = color_print::cstr!(
|
@@ -1062,9 +1062,6 @@ static ENV_VARIABLES_HELP: &str = color_print::cstr!(
|
||||||
<g>DENO_NO_PROMPT</> Set to disable permission prompts on access
|
<g>DENO_NO_PROMPT</> Set to disable permission prompts on access
|
||||||
(alternative to passing --no-prompt on invocation)
|
(alternative to passing --no-prompt on invocation)
|
||||||
|
|
||||||
- <g>DENO_NO_UPDATE_CHECK</> Set to disable checking if a newer Deno version is
|
- <g>DENO_NO_UPDATE_CHECK</> Set to disable checking if a newer Deno version is
|
||||||
- available
|
- available
|
||||||
-
|
-
|
||||||
<g>DENO_V8_FLAGS</> Set V8 command line options
|
<g>DENO_TLS_CA_STORE</> Comma-separated list of order dependent certificate
|
||||||
|
stores. Possible values: "system", "mozilla".
|
||||||
<g>DENO_WEBGPU_TRACE</> Directory to use for wgpu traces
|
Defaults to "mozilla".
|
||||||
|
@ -244,18 +244,18 @@ diff --git a/cli/lsp/language_server.rs.1 b/cli/lsp/language_server.rs
|
|||||||
index 573fb1e..158c136 100644
|
index 573fb1e..158c136 100644
|
||||||
--- a/cli/lsp/language_server.rs.1
|
--- a/cli/lsp/language_server.rs.1
|
||||||
+++ b/cli/lsp/language_server.rs
|
+++ b/cli/lsp/language_server.rs
|
||||||
@@ -124,8 +124,6 @@ use crate::npm::CliNpmResolverManagedSnapshotOption;
|
@@ -99,8 +99,6 @@ use crate::lsp::tsc::file_text_changes_to_workspace_edit;
|
||||||
use crate::resolver::CliNodeResolver;
|
use crate::lsp::urls::LspUrlKind;
|
||||||
use crate::tools::fmt::format_file;
|
use crate::tools::fmt::format_file;
|
||||||
use crate::tools::fmt::format_parsed_source;
|
use crate::tools::fmt::format_parsed_source;
|
||||||
-use crate::tools::upgrade::check_for_upgrades_for_lsp;
|
-use crate::tools::upgrade::check_for_upgrades_for_lsp;
|
||||||
-use crate::tools::upgrade::upgrade_check_enabled;
|
-use crate::tools::upgrade::upgrade_check_enabled;
|
||||||
use crate::util::fs::remove_dir_all_if_exists;
|
use crate::util::fs::remove_dir_all_if_exists;
|
||||||
use crate::util::path::is_importable_ext;
|
use crate::util::path::is_importable_ext;
|
||||||
use crate::util::path::specifier_to_file_path;
|
use crate::util::path::to_percent_decoded_str;
|
||||||
@@ -3335,28 +3333,6 @@ impl tower_lsp::LanguageServer for LanguageServer {
|
@@ -2982,28 +2980,6 @@ impl tower_lsp::LanguageServer for LanguageServer {
|
||||||
ls.task_queue.start(self.clone());
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
- if upgrade_check_enabled() {
|
- if upgrade_check_enabled() {
|
||||||
- // spawn to avoid lsp send/sync requirement, but also just
|
- // spawn to avoid lsp send/sync requirement, but also just
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jun 9 20:33:44 UTC 2024 - Avindra Goolcharan <avindra@opensuse.org>
|
||||||
|
|
||||||
|
- update to 1.44.1
|
||||||
|
* many changes since April 4, see GitHub releases for info
|
||||||
|
- rebase deno-disable-update-check.patch
|
||||||
|
- rebase deno-rm-upgrade-cmd.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 4 19:01:31 UTC 2024 - Avindra Goolcharan <avindra@opensuse.org>
|
Thu Apr 4 19:01:31 UTC 2024 - Avindra Goolcharan <avindra@opensuse.org>
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: deno
|
Name: deno
|
||||||
Version: 1.42.1
|
Version: 1.44.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A secure JavaScript and TypeScript runtime
|
Summary: A secure JavaScript and TypeScript runtime
|
||||||
License: MIT
|
License: MIT
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:881e2fec5728d60ff3008e28c30ca6b8d944932371b209ae652ff8a9454490fc
|
oid sha256:fc384df98d933f772c8146c41030091e06b091c5e3f9e96f0cf484466a5690ed
|
||||||
size 103333852
|
size 104413752
|
||||||
|
Loading…
Reference in New Issue
Block a user