Accepting request 1122961 from devel:languages:javascript
- update to 1.38.0: * feat(cron) implement Deno.cron() (#21019) * feat(doc): display non-exported types referenced in exported types (#20990) * feat(doc): improve non-exported diagnostic (#21033) * feat(doc): support multiple file entry (#21018) * feat(ext/kv): support key expiration in remote backend (#20688) * feat(ext/web): EventSource (#14730) * feat(ext/websocket): split websocket read/write halves (#20579) * feat(ext/websocket): use rustls-tokio-stream instead of tokio-rustls (#20518) * feat(ext/websocket): websockets over http2 (#21040) * feat(lsp): respect "typescript.preferences.quoteStyle" when deno.json is absent (#20891) * feat(task): add head command (#20998) * feat(unstable): deno run --env (#20300) * feat(unstable): ability to npm install then deno run main.ts (#20967) * feat(unstable): allow bare specifier for builtin node module (#20728) * feat: deno doc --lint (#21032) * feat: deno doc --html (#21015) * feat: deno run --unstable-hmr (#20876) * feat: disposable Deno resources (#20845) * feat: enable Array.fromAsync (#21048) * feat: granular --unstable-* flags (#20968) * feat: precompile JSX (#20962) * feat: rename Deno.Server to Deno.HttpServer (#20842) * fix(ext/ffi): use anybuffer for op_ffi_buf_copy_into (#21006) * fix(ext/http): patch regression in variadic args to serve handler (#20796) * fix(ext/node): adapt dynamic type checking to Node.js behavior (#21014) * fix(ext/node): process.argv0 (#20925) * fix(ext/node): tty streams extends net socket (#21026) * fix(lsp): don't commit registry completions on "/" (#20902) * fix(lsp): include mtime in tsc script version (#20911) * fix(lsp): show diagnostics for untitled files (#20916) * fix(node): resolve file.d specifiers in npm packages (#20918) * fix(polyfill): correctly handle flag when its equal 0 (#20953) * fix(repl): jsxImportSource was not working (#21049) * fix(repl): support transforming JSX/TSX (#20695) * fix(test): --junit-path should handle when the dir doesn't exist (#21044) * fix(unstable/byonm): improve error messages (#20987) * fix: add 'unstable' property to config json schema (#20984) * fix: add missing Object.groupBy() and Map.groupBy() types (#21050) * fix: implement node:tty (#20892) * fix: improved using declaration support (#20959) * perf(ext/streams): optimize streams (#20649) * perf(lsp): cleanup workspace settings scopes (#20937) * perf(lsp): fix redundant walk when collecting tsc code lenses (#20974) * perf: use deno_native_certs crate (#18072) - rebase deno-disable-update-check.patch OBS-URL: https://build.opensuse.org/request/show/1122961 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deno?expand=0&rev=34
This commit is contained in:
commit
ef01d3f038
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.37.2</param>
|
<param name="revision">v1.38.0</param>
|
||||||
<param name="version">1.37.2</param>
|
<param name="version">1.38.0</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.79.2</param>
|
<param name="revision">v0.81.0</param>
|
||||||
<param name="version">0.79.2</param>
|
<param name="version">0.81.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:cc4b5131f31aea843f7b63fdaca1410c663659bfcfabba59c81fce675cae7576
|
|
||||||
size 3797232
|
|
3
deno-1.38.0.tar.xz
Normal file
3
deno-1.38.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6820351f5f885d56b3a3bbdbbb2d5c845dff4c54011ec5ede469ca7b3b5169ac
|
||||||
|
size 3806432
|
@ -1,7 +1,7 @@
|
|||||||
diff --git a/cli/tools/run.rs.1 b/cli/tools/run.rs
|
diff --git a/cli/tools/run/mod.rs.1 b/cli/tools/run/mod.rs
|
||||||
index 4805ea7..57bb752 100644
|
index 4805ea7..57bb752 100644
|
||||||
--- a/cli/tools/run.rs.1
|
--- a/cli/tools/run/mod.rs.1
|
||||||
+++ b/cli/tools/run.rs
|
+++ b/cli/tools/run/mod.rs
|
||||||
@@ -38,13 +38,6 @@ To grant permissions, set them before the script argument. For example:
|
@@ -38,13 +38,6 @@ To grant permissions, set them before the script argument. For example:
|
||||||
let http_client = factory.http_client();
|
let http_client = factory.http_client();
|
||||||
let cli_options = factory.cli_options();
|
let cli_options = factory.cli_options();
|
||||||
|
53
deno.changes
53
deno.changes
@ -1,3 +1,56 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 2 21:21:42 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
|
||||||
|
|
||||||
|
- update to 1.38.0:
|
||||||
|
* feat(cron) implement Deno.cron() (#21019)
|
||||||
|
* feat(doc): display non-exported types referenced in
|
||||||
|
exported types (#20990)
|
||||||
|
* feat(doc): improve non-exported diagnostic (#21033)
|
||||||
|
* feat(doc): support multiple file entry (#21018)
|
||||||
|
* feat(ext/kv): support key expiration in remote backend (#20688)
|
||||||
|
* feat(ext/web): EventSource (#14730)
|
||||||
|
* feat(ext/websocket): split websocket read/write halves (#20579)
|
||||||
|
* feat(ext/websocket): use rustls-tokio-stream instead of
|
||||||
|
tokio-rustls (#20518)
|
||||||
|
* feat(ext/websocket): websockets over http2 (#21040)
|
||||||
|
* feat(lsp): respect "typescript.preferences.quoteStyle" when
|
||||||
|
deno.json is absent (#20891)
|
||||||
|
* feat(task): add head command (#20998)
|
||||||
|
* feat(unstable): deno run --env (#20300)
|
||||||
|
* feat(unstable): ability to npm install then deno run main.ts (#20967)
|
||||||
|
* feat(unstable): allow bare specifier for builtin node module (#20728)
|
||||||
|
* feat: deno doc --lint (#21032)
|
||||||
|
* feat: deno doc --html (#21015)
|
||||||
|
* feat: deno run --unstable-hmr (#20876)
|
||||||
|
* feat: disposable Deno resources (#20845)
|
||||||
|
* feat: enable Array.fromAsync (#21048)
|
||||||
|
* feat: granular --unstable-* flags (#20968)
|
||||||
|
* feat: precompile JSX (#20962)
|
||||||
|
* feat: rename Deno.Server to Deno.HttpServer (#20842)
|
||||||
|
* fix(ext/ffi): use anybuffer for op_ffi_buf_copy_into (#21006)
|
||||||
|
* fix(ext/http): patch regression in variadic args to serve handler (#20796)
|
||||||
|
* fix(ext/node): adapt dynamic type checking to Node.js behavior (#21014)
|
||||||
|
* fix(ext/node): process.argv0 (#20925)
|
||||||
|
* fix(ext/node): tty streams extends net socket (#21026)
|
||||||
|
* fix(lsp): don't commit registry completions on "/" (#20902)
|
||||||
|
* fix(lsp): include mtime in tsc script version (#20911)
|
||||||
|
* fix(lsp): show diagnostics for untitled files (#20916)
|
||||||
|
* fix(node): resolve file.d specifiers in npm packages (#20918)
|
||||||
|
* fix(polyfill): correctly handle flag when its equal 0 (#20953)
|
||||||
|
* fix(repl): jsxImportSource was not working (#21049)
|
||||||
|
* fix(repl): support transforming JSX/TSX (#20695)
|
||||||
|
* fix(test): --junit-path should handle when the dir doesn't exist (#21044)
|
||||||
|
* fix(unstable/byonm): improve error messages (#20987)
|
||||||
|
* fix: add 'unstable' property to config json schema (#20984)
|
||||||
|
* fix: add missing Object.groupBy() and Map.groupBy() types (#21050)
|
||||||
|
* fix: implement node:tty (#20892)
|
||||||
|
* fix: improved using declaration support (#20959)
|
||||||
|
* perf(ext/streams): optimize streams (#20649)
|
||||||
|
* perf(lsp): cleanup workspace settings scopes (#20937)
|
||||||
|
* perf(lsp): fix redundant walk when collecting tsc code lenses (#20974)
|
||||||
|
* perf: use deno_native_certs crate (#18072)
|
||||||
|
- rebase deno-disable-update-check.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Oct 14 21:13:35 UTC 2023 - avindra <avindra@opensuse.org>
|
Sat Oct 14 21:13:35 UTC 2023 - avindra <avindra@opensuse.org>
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: deno
|
Name: deno
|
||||||
Version: 1.37.2
|
Version: 1.38.0
|
||||||
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:650f3e712eb04625a2055ebc52e403ab0770b881fde1fcbed0345bdbd28a437c
|
oid sha256:7a7b99d1c4356fc46be1942d2b0be55c4db3bd79cba6692c7c9baf7cfcccb86f
|
||||||
size 87000632
|
size 79453124
|
||||||
|
Loading…
Reference in New Issue
Block a user