From cee54f80b24838d82b7af3144c74e741b49be377a483032738f379d1e6178dca Mon Sep 17 00:00:00 2001 From: Avindra Goolcharan Date: Sat, 2 Sep 2023 18:55:09 +0000 Subject: [PATCH 1/3] 1.36.4 OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=153 --- _service | 14 +++++++------- deno-1.36.2.tar.xz | 3 --- deno-1.36.4.tar.xz | 3 +++ deno.changes | 34 ++++++++++++++++++++++++++++++++++ deno.spec | 4 ++-- vendor.tar.xz | 4 ++-- 6 files changed, 48 insertions(+), 14 deletions(-) delete mode 100644 deno-1.36.2.tar.xz create mode 100644 deno-1.36.4.tar.xz diff --git a/_service b/_service index 087e4a5..e43df46 100644 --- a/_service +++ b/_service @@ -13,8 +13,8 @@ git https://github.com/denoland/deno - v1.36.2 - 1.36.2 + v1.36.4 + 1.36.4 docs @@ -37,8 +37,8 @@ git https://github.com/denoland/rusty_v8 - v0.75.0 - 0.75.0 + v0.75.1 + 0.75.1 .github - - + + *.tar xz - + deno diff --git a/deno-1.36.2.tar.xz b/deno-1.36.2.tar.xz deleted file mode 100644 index 7205602..0000000 --- a/deno-1.36.2.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2492fe22baba6542fb3931e4b9965ad60e74feac096958a7c617f5ef71717709 -size 3718688 diff --git a/deno-1.36.4.tar.xz b/deno-1.36.4.tar.xz new file mode 100644 index 0000000..aa5cb3b --- /dev/null +++ b/deno-1.36.4.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d987702267ecbd59c5dce95e03d3230318030945ab7ca0cdc604a2a850a6da2 +size 3718768 diff --git a/deno.changes b/deno.changes index dbdc22e..a2dde19 100644 --- a/deno.changes +++ b/deno.changes @@ -1,3 +1,37 @@ +------------------------------------------------------------------- +Sat Sep 2 18:44:45 UTC 2023 - Avindra Goolcharan + +- update to 1.36.4 + * feat(ext/kv): connect to remote database (#20178) + * feat(node): use i32 for priority_t on MacOS and {Free,Open}BSD (#20286) + * fix(bench): explicit timers don't force high precision measurements (#20272) + * fix(ext/http): don't panic on stream responses in cancelled requests (#20316) + * fix(ext/kv): don't panic if listening on queues and KV is not closed (#20317) + * fix(ext/node): fix argv[1] in Worker (#20305) + * fix(ext/node): shared global buffer unlock correctness fix (#20314) + * fix(ext/tls): upgrade webpki version (#20285) + * fix(fmt/markdown): ignore trailing words in code block info + string for language detection (#20310) + * fix(kv) increase number of allowed mutations in atomic (#20126) + * fix(lsp): delete test modules with all tests deleted (#20321) + * fix(lsp): implement deno.suggest.completeFunctionCalls (#20214) + * fix(lsp): test explorer panic on step result (#20289) + * fix(lsp/testing): don't queue modules without tests (#20277) + * fix(lsp/testing): use full ancestry to compute static id of step (#20297) + * fix(napi): ignore tsfn recv error (#20324) + * fix(network): adjust Listener type params (#18642) + * fix(node): propagate create cipher errors (#20280) + * fix(node/http): don't leak resources on destroyed request (#20040) + * fix: unexpected lsp function arg comma completion (#20311) +- includes 1.36.3 + * fix(build): socket2 compile error + * fix(cli): add timeout on inspector tests (#20225) + * fix(ext/node): simultaneous reads can leak into each other (#20223) + * fix(ext/web): add stream tests to detect v8slice split bug (#20253) + * fix(ext/web): better handling of errors in resourceForReadableStream (#20238) + * fix(lint): erroneous remove await in async (#20235) + * fix: add missing URL.canParse() types (#20244) + ------------------------------------------------------------------- Mon Aug 21 19:23:04 UTC 2023 - Avindra Goolcharan diff --git a/deno.spec b/deno.spec index c8644b6..0e530c4 100644 --- a/deno.spec +++ b/deno.spec @@ -19,7 +19,7 @@ Name: deno -Version: 1.36.2 +Version: 1.36.4 Release: 0 Summary: A secure JavaScript and TypeScript runtime License: MIT @@ -57,7 +57,7 @@ Patch10: deno-disable-lto.patch %endif %description -A JavaSript and TypeScript platform built on V8 +A JavaScript and TypeScript platform built on V8 Deno has standard library and has features such as a linter, a language server protocol, a code formatter and diff --git a/vendor.tar.xz b/vendor.tar.xz index ad62fa0..820afcd 100644 --- a/vendor.tar.xz +++ b/vendor.tar.xz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8abcf73783ef37c203ec1877242a7b27ccf7fdff32b66da2dfacf2fff04bd309 -size 84600856 +oid sha256:17a5a29ba1646fe8fa4c9e74ad1d05dbda9ed0c483e25b539b04a8a12e254e4a +size 84513444 From 515fca06f844b74fe03eb72edc902168aa3d55ce3f2b5519e74b1dfed963eb1e Mon Sep 17 00:00:00 2001 From: Avindra Goolcharan Date: Sat, 2 Sep 2023 19:17:51 +0000 Subject: [PATCH 2/3] add protoc dep OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=154 --- deno.changes | 3 +++ deno.spec | 1 + 2 files changed, 4 insertions(+) diff --git a/deno.changes b/deno.changes index a2dde19..9fe046a 100644 --- a/deno.changes +++ b/deno.changes @@ -31,6 +31,8 @@ Sat Sep 2 18:44:45 UTC 2023 - Avindra Goolcharan * fix(ext/web): better handling of errors in resourceForReadableStream (#20238) * fix(lint): erroneous remove await in async (#20235) * fix: add missing URL.canParse() types (#20244) +- include protoc dependency + * see https://github.com/denoland/deno/pull/20178 ------------------------------------------------------------------- Mon Aug 21 19:23:04 UTC 2023 - Avindra Goolcharan @@ -3106,3 +3108,4 @@ Sat Dec 19 08:57:04 UTC 2020 - Avindra Goolcharan Fri Dec 4 02:20:19 UTC 2020 - Avindra Goolcharan - init pkg at v1.5.4 + diff --git a/deno.spec b/deno.spec index 0e530c4..e416665 100644 --- a/deno.spec +++ b/deno.spec @@ -49,6 +49,7 @@ BuildRequires: pkgconfig(glib-2.0) BuildRequires: pkgconfig(gmodule-2.0) BuildRequires: pkgconfig(gobject-2.0) BuildRequires: pkgconfig(gthread-2.0) +BuildRequires: pkgconfig(protobuf) # deno does not build on 32-bit archs ExclusiveArch: x86_64 aarch64 ppc64 ppc64le s390x # PATCH-FIX-OPENSUSE - Disable LTO (to reduce req memory) From b6edfde313c6462bf8ce62489688c5c7513c86815d861d256509211f86326eb1 Mon Sep 17 00:00:00 2001 From: Avindra Goolcharan Date: Tue, 19 Sep 2023 22:37:45 +0000 Subject: [PATCH 3/3] 1.37.0 OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=155 --- _service | 8 ++--- deno-1.36.4.tar.xz | 3 -- deno-1.37.0.tar.xz | 3 ++ deno-rm-upgrade-cmd.patch | 22 ++++++------ deno.changes | 71 +++++++++++++++++++++++++++++++++++++++ deno.spec | 2 +- vendor.tar.xz | 4 +-- 7 files changed, 92 insertions(+), 21 deletions(-) delete mode 100644 deno-1.36.4.tar.xz create mode 100644 deno-1.37.0.tar.xz diff --git a/_service b/_service index e43df46..19693c9 100644 --- a/_service +++ b/_service @@ -13,8 +13,8 @@ git https://github.com/denoland/deno - v1.36.4 - 1.36.4 + v1.37.0 + 1.37.0 docs @@ -37,8 +37,8 @@ git https://github.com/denoland/rusty_v8 - v0.75.1 - 0.75.1 + v0.76.0 + 0.76.0 .github