1.41.1
OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=178
This commit is contained in:
parent
559fd3d1c5
commit
1caa3bc933
4
_service
4
_service
@ -13,8 +13,8 @@
|
||||
<service name="tar_scm" mode="manual">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://github.com/denoland/deno</param>
|
||||
<param name="revision">v1.41.0</param>
|
||||
<param name="version">1.41.0</param>
|
||||
<param name="revision">v1.41.1</param>
|
||||
<param name="version">1.41.1</param>
|
||||
|
||||
<!-- remove large docs -->
|
||||
<param name="exclude">docs</param>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a1edfa729c4371c7b026a302beeec544af1e729377abdf7f44e5497101bbdedd
|
||||
size 78750336
|
3
deno-1.41.1.tar.xz
Normal file
3
deno-1.41.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ada3a876f28fb1f5b0f90bd107b3f2df1cc727bacd461361cc0ec47ee640dd1f
|
||||
size 79678512
|
@ -2,7 +2,7 @@ diff --git a/cli/main.rs.1 b/cli/main.rs
|
||||
index 031ab07..4f3b05c 100644
|
||||
--- a/cli/main.rs.1
|
||||
+++ b/cli/main.rs
|
||||
@@ -202,15 +202,6 @@ async fn run_subcommand(flags: Flags) -> Result<i32, AnyError> {
|
||||
@@ -204,15 +204,6 @@ async fn run_subcommand(flags: Flags) -> Result<i32, AnyError> {
|
||||
let types = tsc::get_types_declaration_file_text();
|
||||
display::write_to_stdout_ignore_sigpipe(types.as_bytes())
|
||||
}),
|
||||
@ -46,15 +46,15 @@ index 72841df..1c93da1 100644
|
||||
Vendor(VendorFlags),
|
||||
Publish(PublishFlags),
|
||||
}
|
||||
@@ -760,7 +750,7 @@ impl Flags {
|
||||
std::env::current_dir().ok()
|
||||
@@ -768,7 +768,7 @@ impl Flags {
|
||||
}
|
||||
Bundle(_) | Completions(_) | Doc(_) | Fmt(_) | Init(_) | Install(_)
|
||||
- | Uninstall(_) | Jupyter(_) | Lsp | Lint(_) | Types | Upgrade(_)
|
||||
+ | Uninstall(_) | Jupyter(_) | Lsp | Lint(_) | Types
|
||||
| Vendor(_) | Publish(_) => None,
|
||||
Add(_) | Bundle(_) | Completions(_) | Doc(_) | Fmt(_) | Init(_)
|
||||
| Install(_) | Uninstall(_) | Jupyter(_) | Lsp | Lint(_) | Types
|
||||
- | Upgrade(_) | Vendor(_) => None,
|
||||
+ | Vendor(_) => None,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -944,7 +934,6 @@ pub fn flags_from_vec(args: Vec<String>) -> clap::error::Result<Flags> {
|
||||
"test" => test_parse(&mut flags, &mut m),
|
||||
"types" => types_parse(&mut flags, &mut m),
|
||||
|
40
deno.changes
40
deno.changes
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 4 21:20:52 UTC 2024 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
- update to 1.41.1:
|
||||
* feat(unstable): deno add subcommand (#22520)
|
||||
* feat(unstable/lsp): jsr specifier completions (#22612)
|
||||
* feat(unstable/publish): discover jsr.json and jsr.jsonc files (#22587)
|
||||
* feat(unstable/publish): enable package provenance by default
|
||||
on github actions (#22635)
|
||||
* feat(unstable/publish): infer dependencies from package.json (#22563)
|
||||
* feat(unstable/publish): provenance attestation (#22573)
|
||||
* feat(unstable/publish): respect .gitignore during deno publish (#22514)
|
||||
* feat(unstable/publish): support sloppy imports and bare node
|
||||
built-ins (#22588)
|
||||
* fix(compile): add aarch64 linux to CliOptions::npm_system_info (#22567)
|
||||
* fix(compile): allow to compile for ARM linux (#22542)
|
||||
* fix(ext/crypto): align the return type of crypto.randomUUID to
|
||||
* cli/tsc/dts/lib.dom.d.ts (#22465)
|
||||
* fix(ext/node) add node http methods (#22630)
|
||||
* fix(ext/node): init arch, pid, platform at startup (#22561)
|
||||
* fix(ext/node): set correct process.argv0 (#22555)
|
||||
* fix(io): create_named_pipe parallelism (#22597)
|
||||
* fix(jsr): do not allow importing a non-JSR url via
|
||||
unanalyzable dynamic import from JSR (#22623)
|
||||
* fix(jsr): relative dynamic imports in jsr packages (#22624)
|
||||
* fix(lsp): import map expansion (#22553)
|
||||
* fix(publish): disable provenance if not in GHA (#22638)
|
||||
* fix(publish): make the already published message look like a
|
||||
warning (#22620)
|
||||
* fix(publish): print a warning when .jsx or .tsx is imported (#22631)
|
||||
* fix(publish): reduce warnings about dynamic imports (#22636)
|
||||
* fix(test): ensure that pre- and post-test output is flushed
|
||||
at the appropriate times (#22611)
|
||||
* fix(unstable): add Date#toTemporalInstant type (#22637)
|
||||
* fix(unstable): sloppy imports should resolve .d.ts files
|
||||
during types resolution (#22602)
|
||||
* perf(cli): reduce overhead in test registration (#22552)
|
||||
* perf(fmt): reduce memory usage and improve performance (#22570)
|
||||
- rebase deno-rm-upgrade-cmd.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 22 21:07:56 UTC 2024 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
Name: deno
|
||||
Version: 1.41.0
|
||||
Version: 1.41.1
|
||||
Release: 0
|
||||
Summary: A secure JavaScript and TypeScript runtime
|
||||
License: MIT
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f564bf5045207f6dcb4ef9ea5f6c65726651434bff6eb7805a6905c27276754d
|
||||
size 102927532
|
||||
oid sha256:2ec903f77e322e938ef90ba37e00e4b967ed25ae89fcb3eae5fc10af0f935c96
|
||||
size 103208308
|
||||
|
Loading…
x
Reference in New Issue
Block a user