repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
mrdoob/three.js
8d547cdb02b541a0db50a02f5ec53e6d63f80887
585b578fb735485a95b651ff9d9e001601d3090f
Utils: Fix loading of sites without .html extension. (#32970)
[ { "path": "utils/server.js", "patch": "@@ -124,9 +124,17 @@ ${items}\n \n \t\tif ( ! existsSync( filePath ) ) {\n \n-\t\t\tres.writeHead( 404 );\n-\t\t\tres.end( 'File not found' );\n-\t\t\treturn;\n+\t\t\tif ( existsSync( filePath + '.html' ) ) {\n+\n+\t\t\t\tfilePath += '.html';\n+\n+\t\t\t} else {\n+\n+\...
2026-02-08T09:53:01
golang/go
db6661a2fd321d4af14efc48492144f86bb50c93
af4c316c28d2dad63851e7384a7aa198ee729aee
net/http: support passing Server Shutdown context to HTTP/3 implementations Currently, when Server.Shutdown is called with a given context, an HTTP/3 server implementation does not have access to said context. This forces HTTP/3 server implementations to guess a reasonable fixed timeout when attempting to gracefully s...
[ { "path": "src/net/http/server.go", "patch": "@@ -3121,6 +3121,7 @@ type Server struct {\n \tactiveConn map[*conn]struct{}\n \tonShutdown []func()\n \th2 *http2Server\n+\th3 *http3ServerHandler\n \n \tlistenerGroup sync.WaitGroup\n }\n@@ -3188,6 +3189,9 @@ func (s *Server) Shutdown(ctx conte...
2026-03-31T02:24:12
vuejs/vue
005e52d0b6f1a5bf9679789c5c4b90afd442d86b
08fb4a222c016c79af77ab96817d2ed9b7abbd80
fix(types): support Vue interface augmentations in defineComponent fix #12642
[ { "path": "types/test/augmentation-test.ts", "patch": "@@ -1,4 +1,4 @@\n-import Vue from '../index'\n+import Vue, { defineComponent } from '../index'\n \n declare module '../vue' {\n // add instance property and method\n@@ -44,3 +44,10 @@ vm.$instanceMethod()\n \n Vue.staticProperty\n Vue.staticMethod()\n...
2022-07-13T02:44:57
denoland/deno
bf581bc7e3f97e4a78de9ea5c294a9eb1e7656e6
3229f5ff2fc310312c903e8cb71063fdca5623fd
test: add edge case and worker termination tests for Node-API (#32986) ## Summary - Add async cleanup hook tests (`napi_add_async_cleanup_hook` / `napi_remove_async_cleanup_hook`), verifying LIFO ordering on exit and that removed hooks don't fire - Add reference double-free safety test (runs in subprocess to avoid cr...
[ { "path": "tests/napi/cleanup_hook_async_test.js", "patch": "@@ -0,0 +1,68 @@\n+// Copyright 2018-2026 the Deno authors. MIT license.\n+\n+// deno-lint-ignore-file no-console\n+\n+import { assertEquals, loadTestLibrary } from \"./common.js\";\n+\n+const lib = loadTestLibrary();\n+\n+if (Deno.args[0] === \"i...
2026-03-25T16:26:51
golang/go
af4c316c28d2dad63851e7384a7aa198ee729aee
1f8aff4386ca8be6ae9b9553205d113884c4a8ee
image/jpeg: reject RGB and non-standard chroma subsampling This fixes a possible panic introduced a few months ago by "image/jpeg: add support for non-standard chroma subsampling ratios" (CL 738280). Fixes #78368 Change-Id: I1f181582b7dc1e2955e3ec26c3aa24bc0f4159df Reviewed-on: https://go-review.googlesource.com/c/g...
[ { "path": "src/image/jpeg/reader.go", "patch": "@@ -755,7 +755,27 @@ func (d *decoder) isRGB() bool {\n }\n \n func (d *decoder) convertToRGB() (image.Image, error) {\n-\tcScale := d.comp[0].h / d.comp[1].h\n+\t// Historically, we only supported 4:4:4, 4:4:0, 4:2:2, 4:2:0, 4:1:1 or\n+\t// 4:1:0 chroma subsa...
2026-03-31T09:09:53
vuejs/vue
08fb4a222c016c79af77ab96817d2ed9b7abbd80
498dc1d89f14504c5e14b43a77c23039163e93a3
fix: add missing export from `vue.runtime.mjs` (#12648)
[ { "path": "dist/vue.runtime.mjs", "patch": "@@ -49,6 +49,7 @@ export const {\n onMounted,\r\n onBeforeUpdate,\r\n onUpdated,\r\n+ onBeforeUnmount,\r\n onUnmounted,\r\n onErrorCaptured,\r\n onActivated,\r", "additions": 1, "deletions": 0, "language": "Unknown" } ]
2022-07-13T01:47:38
denoland/deno
3229f5ff2fc310312c903e8cb71063fdca5623fd
357759fe0663c7cd9fc6b62d0ef87a88f48bc918
test: mark unsupported Node compat tests as ignored (#32956) ## Summary - Mark disabled node compat tests as ignored with reasons: - `test-debugger-*` (32 tests): require `node inspect` CLI subcommand - `test-node-output-*` (6 tests): snapshot output tests depend on exact Node.js CLI output formatting - `test-node-...
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -473,40 +473,120 @@\n \"parallel/test-crypto-verify-failure.js\": {},\n \"parallel/test-crypto-webcrypto-aes-decrypt-tag-too-small.js\": {},\n \"parallel/test-datetime-change-notify.js\": {},\n- // \"parallel/test-debugger-address.mjs\"...
2026-03-25T16:26:15
golang/go
1f8aff4386ca8be6ae9b9553205d113884c4a8ee
b526b2d49b39a116cf654551f7f65c965144b096
simd/archsimd: mark pa* unsafe helpers as nocheckptr Despite the cast from smaller to bigger slice, the elements after the input slice length are not actually read. Thus they should have nocheckptr annotation to make checkptr happy. Fixes #78413 Change-Id: I3e27eab8a69b37bb11632b130a87e6625e06e8ac Reviewed-on: https...
[ { "path": "src/simd/archsimd/_gen/tmplgen/main.go", "patch": "@@ -794,6 +794,8 @@ var unsafePATemplate = templateOf(\"unsafe PA helper\", `\n // pa{{.VType}} returns a type-unsafe pointer to array that can\n // only be used with partial load/store operations that only\n // access the known-safe portions of ...
2026-03-30T15:21:43
mrdoob/three.js
4f28c50058d28e9d4064e84248955d02cb08a04e
e226c917c1c6bf28f739109a4467df2d9e8d7e4e
WebGPURenderer: Fix wireframe rendering for `BatchedMesh`. (#32955)
[ { "path": "src/renderers/common/Geometries.js", "patch": "@@ -1,6 +1,5 @@\n import DataMap from './DataMap.js';\n import { AttributeType } from './Constants.js';\n-import { arrayNeedsUint32 } from '../../utils.js';\n \n import { Uint16BufferAttribute, Uint32BufferAttribute } from '../../core/BufferAttribute...
2026-02-04T16:01:21
vuejs/vue
498dc1d89f14504c5e14b43a77c23039163e93a3
0198f9f9eea728ceb45af92eb2952fa97c9abfe1
chore(changelog): fix dead link (#12646) [ci skip]
[ { "path": "CHANGELOG.md", "patch": "@@ -7,7 +7,7 @@\n * **compiler-sfc:** use safer deindent default for compatibility with previous behavior ([b70a258](https://github.com/vuejs/vue/commit/b70a2585fcd102def2bb5a3b2b589edf5311122d))\n * pass element creation helper to static render fns for functional compone...
2022-07-13T01:47:20
denoland/deno
357759fe0663c7cd9fc6b62d0ef87a88f48bc918
c394911f8edc7591de8da65c7b6690bcbc78afc1
fix(cli): show clean error instead of panic for invalid --unsafely-ignore-certificate-errors value (#32868) ## Summary - Fixes a panic when a URL (e.g. `https://example.com/`) is passed to `--unsafely-ignore-certificate-errors`, which only accepts domains and IPs. - Changed `unsafely_ignore_certificate_errors_parse` ...
[ { "path": "cli/args/flags.rs", "patch": "@@ -1903,7 +1903,7 @@ pub fn flags_from_vec_with_initial_cwd(\n \"types\" => types_parse(&mut flags, &mut m),\n \"uninstall\" => uninstall_parse(&mut flags, &mut m),\n \"update\" => outdated_parse(&mut flags, &mut m, true)?,\n- \"upgrad...
2026-03-25T16:22:43
golang/go
b526b2d49b39a116cf654551f7f65c965144b096
261d489139b958e3b7b3bf76d1fb23c9bca76142
net/http/internal/http2: don't reuse ClientRequest streams The ClientRequest type (unlike http.Request) is not reusable across RoundTrip attempts because it includes a single-use clientStream. (It's possible for RoundTrip to return while some goroutines are still accessing the clientStream.) Always clone the ClientRe...
[ { "path": "src/net/http/internal/http2/transport.go", "patch": "@@ -644,16 +644,16 @@ var (\n \n // shouldRetryRequest is called by RoundTrip when a request fails to get\n // response headers. It is always called with a non-nil error.\n-// It returns either a request to retry (either the same request, or a\...
2026-03-30T20:55:37
mrdoob/three.js
65f616d29eca9b2328cd294d9df4fe6d464aa1e3
04961bea57be780b1587a57c64d335b854cff0b2
ObjectLoader.loadAsync: wrap JSON.parse in try/catch for consistent error handling (#32947)
[ { "path": "src/loaders/ObjectLoader.js", "patch": "@@ -170,7 +170,17 @@ class ObjectLoader extends Loader {\n \n \t\tconst text = await loader.loadAsync( url, onProgress );\n \n-\t\tconst json = JSON.parse( text );\n+\t\tlet json;\n+\n+\t\ttry {\n+\n+\t\t\tjson = JSON.parse( text );\n+\n+\t\t} catch ( e ) {...
2026-02-04T09:53:15
vuejs/vue
a6e74985cf2eab6f16d03a8eda3bf3fc7950127c
98fb01c79c41c3b9f9134f0abb77d233ce4e5b44
fix: detect property add/deletion on reactive objects from setup when used in templates
[ { "path": "src/v3/reactivity/ref.ts", "patch": "@@ -119,7 +119,16 @@ export function proxyWithRefUnwrap(\n Object.defineProperty(target, key, {\n enumerable: true,\n configurable: true,\n- get: () => unref(source[key]),\n+ get: () => {\n+ const val = source[key]\n+ if (isRef(val)) ...
2022-07-12T10:59:26
denoland/deno
34f7b23923f8846c3e80d20e2cc70c08e6f44737
8ae5320b01bb78696e76e2a9602f7a19e87f5af6
test(napi): add more coverage for advanced features (#32963) ## Summary - **General utilities** (new): `napi_instanceof`, `napi_get_version`, `napi_run_script`, `napi_get_node_version`, `napi_get_last_error_info`, `node_api_get_module_file_name` - **Error extensions**: `node_api_throw_syntax_error`, `node_api_create_...
[ { "path": "tests/integration/napi_tests.rs", "patch": "@@ -135,3 +135,68 @@ fn napi_wrap_leak_pointers_finalizer_on_shutdown() {\n stdout\n );\n }\n+\n+/// Test napi_fatal_error: calling it should abort the process and log the\n+/// error message to stderr.\n+#[test_util::test]\n+fn napi_fatal_error()...
2026-03-25T12:30:40
mrdoob/three.js
1f2fea769315befd9bdb3f46574e2eeb92c5047a
b1430df4bf24e8120adfd14d520c8d7228dac04d
Fix typo in FileLoader JSDoc: hhttps → https (#32946)
[ { "path": "src/loaders/FileLoader.js", "patch": "@@ -43,7 +43,7 @@ class FileLoader extends Loader {\n \n \t\t/**\n \t\t * The expected mime type. Valid values can be found\n-\t\t * [here](hhttps://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString#mimetype)\n+\t\t * [here](https://developer...
2026-02-03T20:53:21
golang/go
ed3ec75df47ab8e7d6e4a30c445a8ef771382584
a4b534f5e42fe58d58c0ff0562d76680cedb0466
go/types, types2: report an error if constant string overflows Set a limit of 10 GiB for strings obtained via constant string addition. Fixes #78346. Change-Id: I35dbdff94f3ed32bf69654f4b3da435dad9f6236 Reviewed-on: https://go-review.googlesource.com/c/go/+/761300 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "src/cmd/compile/internal/types2/const.go", "patch": "@@ -46,6 +46,14 @@ func (check *Checker) overflow(x *operand, opPos syntax.Pos) {\n \t\t}\n \t\tcheck.errorf(atPos(opPos), InvalidConstVal, \"constant %soverflow\", op)\n \t\tx.val = constant.MakeUnknown()\n+\t\treturn\n+\t}\n+\n+\tconst maxLen...
2026-03-30T19:27:31
vuejs/vue
98fb01c79c41c3b9f9134f0abb77d233ce4e5b44
0825d3087f9f39435838329c16adc2a7bfccd51d
fix(reactivity): fix watch behavior inconsistency + deep ref shallow check fix #12643
[ { "path": "src/v3/apiWatch.ts", "patch": "@@ -196,12 +196,10 @@ function doWatch(\n getter = () => source.value\n forceTrigger = isShallow(source)\n } else if (isReactive(source)) {\n- getter = isArray(source)\n- ? () => {\n- ;(source as any).__ob__.dep.depend()\n- return...
2022-07-12T10:50:01
mrdoob/three.js
ef1a43855d78482e98684aeb14f44a4b924ff451
f9e33fa65eabb78b3866ea5275b9d8bd668e7887
Nodes: Fix PMREM cache. (#32941)
[ { "path": "src/nodes/lighting/EnvironmentNode.js", "patch": "@@ -9,7 +9,7 @@ import { bentNormalView } from '../accessors/AccessorsUtils.js';\n import { pmremTexture } from '../pmrem/PMREMNode.js';\n import { materialEnvIntensity } from '../accessors/MaterialProperties.js';\n \n-const _envNodeCache = new We...
2026-02-03T11:31:21
denoland/deno
8ae5320b01bb78696e76e2a9602f7a19e87f5af6
29ce03804be3534e6d42eef892499d8a82ce8681
fix(resolver): fall through to .deno/ when BYONM node_modules version mismatches (#32981) ## Summary - When resolving `npm:pkg@version` in BYONM mode, the resolver would find a matching package.json dep via `intersects` (e.g., dep `^1.3.5` intersects req `1.3.6`) but then resolve the directory by package **name** onl...
[ { "path": "libs/resolver/npm/byonm.rs", "patch": "@@ -160,27 +160,45 @@ impl<TSys: ByonmNpmResolverSys> ByonmNpmResolver<TSys> {\n // now attempt to resolve if it's found in any package.json\n let maybe_pkg_json_and_alias =\n self.resolve_pkg_json_and_alias_for_req(req, referrer)?;\n- match...
2026-03-25T12:29:52
golang/go
a4b534f5e42fe58d58c0ff0562d76680cedb0466
9c88851d456b462ae3aa5fe8b9d66ea953af48f6
all: fix some minor issues in the comments Change-Id: If6c304efac7a46a9718cdc63ded3d98a26a3a831 Reviewed-on: https://go-review.googlesource.com/c/go/+/760700 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by: Neal Patel ...
[ { "path": "src/cmd/compile/internal/ir/dump.go", "patch": "@@ -213,7 +213,7 @@ func DumpNodeHTML(fn *Func, why string, n Node) {\n \tw.WritePhase(why, why)\n }\n \n-// CloseHTMLWriter closes the HTML writer for fn, if one exists.\n+// CloseHTMLWriters closes the HTML writer for fn, if one exists.\n func Clo...
2026-03-28T08:50:11
vuejs/vue
0825d3087f9f39435838329c16adc2a7bfccd51d
04b4703de72b1c1e686a3aa81d5b5b56799dabab
fix: do not set currentInstance in beforeCreate fix #12636
[ { "path": "src/core/instance/init.ts", "patch": "@@ -58,7 +58,7 @@ export function initMixin(Vue: typeof Component) {\n initLifecycle(vm)\n initEvents(vm)\n initRender(vm)\n- callHook(vm, 'beforeCreate')\n+ callHook(vm, 'beforeCreate', undefined, false /* setContext */)\n initInjection...
2022-07-12T10:19:19
mrdoob/three.js
70f24f687d72eca78186cd63c88f97c2b0c22703
ca544b92a994adc14842dd4aa0f9ad15b72cdf1e
NodeMaterialObeserver: Fix detection of replaced attribute/index. (#32933)
[ { "path": "src/materials/nodes/manager/NodeMaterialObserver.js", "patch": "@@ -173,6 +173,7 @@ class NodeMaterialObserver {\n \t\t\t\tgeometry: {\n \t\t\t\t\tid: geometry.id,\n \t\t\t\t\tattributes: this.getAttributesData( geometry.attributes ),\n+\t\t\t\t\tindexId: geometry.index ? geometry.index.id : null...
2026-02-02T09:00:04
denoland/deno
29ce03804be3534e6d42eef892499d8a82ce8681
2186d72c3068f0beaab1cad662cf7c1c9ebef2f5
fix(compile): skip Node-to-Deno arg translation in standalone binaries (#32980) ## Summary - Skip Node.js-to-Deno CLI argument translation in `child_process.spawn` and `child_process.fork` when running inside a standalone (compiled) binary - Fixes an issue where compiled npm CLI tools that relaunch themselves (e.g., ...
[ { "path": "ext/node/polyfills/child_process.ts", "patch": "@@ -146,37 +146,45 @@ export function fork(\n // Combine execArgv (Node CLI flags), modulePath (script), and args (script args)\n const nodeArgs = [...(execArgv || []), modulePath, ...args].map(String);\n \n- // Use the Rust parser to translate...
2026-03-25T12:20:15
golang/go
9c88851d456b462ae3aa5fe8b9d66ea953af48f6
7dbbeea110b8e03afe63f4d6c73e99c29d5030ff
runtime/race: allow TestOutput output in either order We have only seen the wrappersym case reported in the opposite order in practice, but since these are intentionally racy, they could theoretically all occur in the opposite order. It would be nice to have a bit more structure to these tests so the test itself coul...
[ { "path": "src/runtime/race/output_test.go", "patch": "@@ -119,7 +119,9 @@ func racer() {\n \tstore(xptr, 42)\n \tdonechan <- true\n }\n-`, []string{`==================\n+`, []string{\n+\t// Allow the race output in either order.\n+\t`==================\n WARNING: DATA RACE\n Write at 0x[0-9,a-f]+ by gorout...
2026-03-27T20:25:58
mrdoob/three.js
d887959ff0bc372364fd5994bc23f411e66080ba
8780c30b96221aae736aac34d15c5cca6a43e39f
WebGPURenderer: Fix `flipY` and cache key when `generateMipmap` (#32922)
[ { "path": "src/renderers/webgpu/utils/WebGPUTexturePassUtils.js", "patch": "@@ -49,7 +49,7 @@ fn mainVS(\n \n \tlet p = pos[ vertexIndex ];\n \tlet mult = select( vec2f( 0.5, -0.5 ), vec2f( 0.5, 0.5 ), flipY != 0 );\n-\tVarys.vTex = p * vec2f( 0.5, -0.5 ) + vec2f( 0.5 );\n+\tVarys.vTex = p * mult + vec2f( 0...
2026-02-01T16:03:04
vuejs/vue
04b4703de72b1c1e686a3aa81d5b5b56799dabab
018d29af5fa171b2d2f4793c5d471f21bb7cd1e7
fix(sfc): fix sfc name inference type check fix #12637
[ { "path": "src/core/components/keep-alive.ts", "patch": "@@ -3,6 +3,7 @@ import { getFirstComponentChild } from 'core/vdom/helpers/index'\n import type VNode from 'core/vdom/vnode'\n import type { VNodeComponentOptions } from 'types/vnode'\n import type { Component } from 'types/component'\n+import { getCom...
2022-07-12T09:39:45
denoland/deno
2186d72c3068f0beaab1cad662cf7c1c9ebef2f5
6a9d927ee364250839e250827f224d74f71662b6
fix(npm): use box-drawing style for deprecated package warnings (#32979) Matches the box used in "ignored build scripts". Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "libs/npm_installer/local.rs", "patch": "@@ -869,27 +869,25 @@ impl<\n let mut output = String::new();\n let _ = writeln!(\n &mut output,\n- \"{} The following packages are deprecated:\",\n- colors::yellow(\"Warning\")\n+ \"{} {}\",\n+ ...
2026-03-25T10:32:44
golang/go
7dbbeea110b8e03afe63f4d6c73e99c29d5030ff
dadc8a5cd274a7d70542d36fa1dfbeb112197988
cmd/go/internal/doc: document that -all and -short cannot be combined And return an error message. Hopefully we can add support by the end of the cycle, but for now return an error to avoid confusing users. For #77191 Change-Id: I8a673a4bdfe640a04ec67b8bee0b5a056a6a6964 Reviewed-on: https://go-review.googlesource.co...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -457,7 +457,8 @@\n //\t \t-http\n //\t\t\tServe HTML docs over HTTP.\n //\t\t-short\n-//\t\t\tOne-line representation for each symbol.\n+//\t\t\tOne-line representation for each symbol. Cannot be\n+//\t\t\tcombined with -all.\n //\t\t-src\n //\t\t\tShow the f...
2026-03-27T19:18:29
mrdoob/three.js
314a12b55a9cf43ec56ae5f1547641dcb9143c1d
602617422465b6584d908c1006ef1a407c044afa
Refine eslint config: limited exclusion and lint fixes (#32917)
[ { "path": "editor/js/libs/app.js", "patch": "@@ -80,7 +80,7 @@ const APP = {\n \n \t\t\tconst scriptWrapResult = JSON.stringify( scriptWrapResultObj ).replace( /\\\"/g, '' );\n \n-\t\t\tfor ( let uuid in json.scripts ) {\n+\t\t\tfor ( const uuid in json.scripts ) {\n \n \t\t\t\tconst object = scene.getObjec...
2026-02-01T09:48:05
vuejs/vue
f8de4ca9d458a03378e848b1e62d6507f7124871
d3add06e6e18a78a3745240632fecd076eb49d19
fix(types): fix missing instance properties on defineComponent this ref https://github.com/vuejs/vue/issues/12628#issuecomment-1177258223
[ { "path": "types/test/v3/define-component-test.tsx", "patch": "@@ -1139,9 +1139,14 @@ defineComponent({\n }\n })\n \n+// Missing / mismatching Vue 2 properties\n // https://github.com/vuejs/vue/issues/12628#issuecomment-1177258223\n defineComponent({\n render(h) {\n+ this.$listeners\n+ this.$on('f...
2022-07-08T07:39:16
denoland/deno
6a9d927ee364250839e250827f224d74f71662b6
460cca9458ebd26cf599327bea145c5bd7561ab6
fix(ext/node): support http2 createConnection sockets (#32733) Fixes the regression reported in https://github.com/denoland/deno/issues/26907#issuecomment-4039469375 ### Problem The HTTP/2 rewrite (#32418) broke `@grpc/grpc-js` for all plaintext connections. grpc-js uses `http2.connect()` with `createConnection`, wh...
[ { "path": "ext/net/io.rs", "patch": "@@ -122,6 +122,21 @@ impl Resource for TcpStreamResource {\n }\n \n impl TcpStreamResource {\n+ pub fn dup_raw_fd(self: &Rc<Self>) -> Option<i32> {\n+ let wr = RcRef::map(self, |r| &r.wr).try_borrow()?;\n+ let sock = SockRef::from(wr.as_ref().as_ref()).try_clone()...
2026-03-25T10:25:10
mrdoob/three.js
686e56ad37d9b585ccf1fa4b474b98ca2234d2c6
f2beb96f5e75a6d755e4caa1d8770fa53a9d38a4
NodeBuilder: Fix shared group detection. (#32913)
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -584,7 +584,7 @@ class NodeBuilder {\n \n \t\t\tbindingsArray.push( binding );\n \n-\t\t\tsharedGroup = sharedGroup && binding.groupNode.shared !== true;\n+\t\t\tsharedGroup = sharedGroup && binding.groupNode.shared;\n \n \t\t}\n ", "additions": 1,...
2026-01-31T15:25:21
golang/go
4d1f503396fa30da1e7b841de2f464c8bf8940e0
09031d907c720e38cdde6242c763d25c9f985327
cmd/compile/internal/devirtualize: improve debug logs Change-Id: Ie8d74d0968c3dfa6fe3454f1d3fdf13d6a6a6944 Reviewed-on: https://go-review.googlesource.com/c/go/+/760162 Auto-Submit: Mateusz Poliwczak <mpoliwczak34@gmail.com> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com...
[ { "path": "src/cmd/compile/internal/devirtualize/devirtualize.go", "patch": "@@ -182,6 +182,17 @@ const concreteTypeDebug = false\n // Returns nil when the concrete type could not be determined, or when there are multiple\n // (different) types assigned to an interface.\n func concreteType(s *State, n ir.No...
2026-03-27T17:09:23
vuejs/vue
d3add06e6e18a78a3745240632fecd076eb49d19
1d5a411c1e3aa062aa5080432cf3f852f1583ed2
fix(types): fix this.$slots type for defineComponent
[ { "path": "types/test/v3/define-component-test.tsx", "patch": "@@ -1138,3 +1138,10 @@ defineComponent({\n }\n }\n })\n+\n+// https://github.com/vuejs/vue/issues/12628#issuecomment-1177258223\n+defineComponent({\n+ render(h) {\n+ return h('div', {}, [...this.$slots.default!])\n+ }\n+})", "addi...
2022-07-08T07:17:22
denoland/deno
460cca9458ebd26cf599327bea145c5bd7561ab6
b6f73d5b3806d990d98887719eb3dbf74ceb9784
fix: include Temporal types in deno types output (#32952) ## Summary Add `"esnext.temporal"` to the `lib_names` list in `get_types_declaration_file_text()` so that `deno types` emits the Temporal namespace declarations from TypeScript's `lib.esnext.temporal.d.ts`. This was accidentally removed in #32656 (typescript-...
[ { "path": "cli/tsc/mod.rs", "patch": "@@ -73,6 +73,7 @@ pub fn get_types_declaration_file_text() -> String {\n \"deno.net\",\n \"deno.shared_globals\",\n \"deno.cache\",\n+ \"esnext.temporal\",\n \"deno.window\",\n \"deno.unstable\",\n ];", "additions": 1, "deletions": 0, ...
2026-03-25T10:24:14
mrdoob/three.js
3ea832dc534cf7d33582efb861203de359aa059a
792ef3a4d6bfc6988a92d9a006c15473d606d85d
Examples: Various fixes for WebGPU compatibility mode. (#32907)
[ { "path": "examples/webgpu_compute_birds.html", "patch": "@@ -158,7 +158,7 @@\n \n \t\t\t\t//\n \n-\t\t\t\trenderer = new THREE.WebGPURenderer( { antialias: true, forceWebGL: false } );\n+\t\t\t\trenderer = new THREE.WebGPURenderer( { antialias: true, forceWebGL: false, requiredLimits: { maxStorageBuffersIn...
2026-01-31T11:30:10
golang/go
09031d907c720e38cdde6242c763d25c9f985327
acc2ce075982cea15636f018c421f96105049282
cmd/compile/internal/devirtualize: use pointer identity for type comparison Fixes #78404 Change-Id: I6adc1fb42ad6a3acce21333c6819d0796a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/760161 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randa...
[ { "path": "src/cmd/compile/internal/devirtualize/devirtualize.go", "patch": "@@ -293,9 +293,22 @@ func concreteType1(s *State, n ir.Node, seen map[*ir.Name]struct{}) (outT *types\n \t\t\t\tcontinue\n \t\t\t}\n \t\t}\n-\t\tif t == nil || (typ != nil && !types.Identical(typ, t)) {\n-\t\t\treturn nil\n+\t\tif ...
2026-03-27T17:09:23
vuejs/vue
1d5a411c1e3aa062aa5080432cf3f852f1583ed2
dc8a68e8c6c4e8ed4fdde094004fca272d71ef2e
fix(types): fix type inference when using components option
[ { "path": "types/options.d.ts", "patch": "@@ -20,7 +20,7 @@ export type Component<\n | typeof Vue\n | FunctionalComponentOptions<Props>\n | ComponentOptions<never, Data, Methods, Computed, Props, SetupBindings>\n- | DefineComponent<any, any, any, any, any>\n+ | DefineComponent<any, any, any, any, an...
2022-07-08T07:15:22
denoland/deno
b6f73d5b3806d990d98887719eb3dbf74ceb9784
5a97b626ced7988bd5981deb57bd2e2763fde640
fix(resolver): prefer exact version match in BYONM npm resolution (#32977) ## Summary Fixes #32972 When resolving npm packages in BYONM (`nodeModulesDir: "manual"`) mode, the resolver scans `node_modules/.deno/` for matching versions and returns the highest one that satisfies the version requirement. This causes `de...
[ { "path": "libs/resolver/npm/byonm.rs", "patch": "@@ -368,6 +368,16 @@ impl<TSys: ByonmNpmResolverSys> ByonmNpmResolver<TSys> {\n }\n }\n } else if req.version_req.matches(&version) {\n+ // Prefer an exact version match over the highest matching version.\n+ // When a us...
2026-03-25T09:48:06
mrdoob/three.js
f8464f9569b7e545b81ff0bebc99664ec3541f9e
7f71a050c8ae0facbed1312f8bd1f1814740061a
KTX2Loader. Fix typo in `TYPE_MAP`. (#32899)
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -1035,9 +1035,9 @@ const TYPE_MAP = {\n \t[ VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK ]: UnsignedByteType,\n \t[ VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK ]: UnsignedByteType,\n \t[ VK_FORMAT_EAC_R11_UNORM_BLOCK ]: UnsignedByteType,\n-\t[ VK_FORMAT_EAC_R11_UNORM_...
2026-01-30T12:10:54
golang/go
47c0cd9929b82a0d95a8d0dffda47604081565ea
e7e45d770c4d46617dd17b0f5c7dd58bd448f47b
test/codegen: remove noop Ands from test cases Theses test cases search for an AND that gets optimized away after CL 760307. Should help to fix riscv64 (coudn't check as builders don't appear on https://build.golang.org/ ) and loong64 CI on master. Change-Id: I57e4e5ab7d3003f239355137472585e46493d8dc Reviewed-on: ht...
[ { "path": "test/codegen/bits.go", "patch": "@@ -40,8 +40,8 @@ func bitsCheckConstLeftShiftU64(a uint64) (n int) {\n func bitsCheckConstRightShiftU64(a [8]uint64) (n int) {\n \t// amd64:\"BTQ [$]63,\"\n \t// arm64:\"TBNZ [$]63,\" -\"LSR\"\n-\t// loong64:\"SRLV [$]63,\" \"AND [$]1,\" \"BNE\"\n-\t// riscv64:\"...
2026-03-28T01:31:48
vuejs/vue
dc8a68e8c6c4e8ed4fdde094004fca272d71ef2e
8904ca77c2d675707728e6a50decd3ef3370a428
fix: pass element creation helper to static render fns for functional components fix #12625
[ { "path": "src/core/instance/render-helpers/render-static.ts", "patch": "@@ -18,7 +18,7 @@ export function renderStatic(\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n- null,\n+ this._c,\n this // for render f...
2022-07-08T07:03:09
denoland/deno
5a97b626ced7988bd5981deb57bd2e2763fde640
ffbe236845c5451874c3a906ca515a7768a50059
fix(cli): fix arrow keys in interactive picker on Windows (#32978) ## Summary - Arrow keys, Enter, and Ctrl+C didn't work in `deno approve-scripts` and `deno outdated --interactive` on Windows (only j/k worked) - Root cause: Windows Terminal enables `ENABLE_VIRTUAL_TERMINAL_INPUT` by default, which makes Windows deli...
[ { "path": "cli/Cargo.toml", "patch": "@@ -191,7 +191,7 @@ zip = { workspace = true, features = [\"deflate-flate2\"] }\n zstd.workspace = true\n \n [target.'cfg(windows)'.dependencies]\n-winapi = { workspace = true, features = [\"knownfolders\", \"mswsock\", \"objbase\", \"shlobj\", \"tlhelp32\", \"winbase\"...
2026-03-25T09:10:02
mrdoob/three.js
7f71a050c8ae0facbed1312f8bd1f1814740061a
f6185d16f4b5b042e7bb6c5af43b9a942231f4f0
Editor: fix app publishing for project using WebGPURenderer (#32897)
[ { "path": "editor/js/Sidebar.Project.App.js", "patch": "@@ -85,6 +85,8 @@ function SidebarProjectApp( editor ) {\n \n \t\tconst toZip = {};\n \n+\t\tconst rendererType = config.getKey( 'project/renderer/type' );\n+\n \t\t//\n \n \t\tlet output = editor.toJSON();\n@@ -115,6 +117,26 @@ function SidebarProject...
2026-01-30T11:48:34
golang/go
880f126233a377ee656612e68710eefe7964f646
c7238e81ca45af755a2c7770950eb163efa3495f
test/codegen: fix ppc64x rldicl bit test The prove pass removes superfluous bit masking. This was meant to test the edge cases of the ppc64 folding rules which are exactly the cases the prove pass now removes. Fixes #78403 Change-Id: I45eeac58e01b42e19b8a06bb0d7af96c616ccbff Reviewed-on: https://go-review.googlesour...
[ { "path": "test/codegen/bits.go", "patch": "@@ -606,8 +606,8 @@ func bitsRotateAndMask(io64 [8]uint64, io32 [4]uint32, io16 [4]uint16, io8 [4]ui\n \tio64[1] = io64[1] & 0x0000FFFFFFFFFFFF\n \t// ppc64x: -\"SRD\", -\"AND\", \"RLDICL [$]60, R[0-9]*, [$]16, R\"\n \tio64[2] = (io64[2] >> 4) & 0x0000FFFFFFFFFFFF...
2026-03-27T19:56:25
vuejs/vue
8904ca77c2d675707728e6a50decd3ef3370a428
012e10c9ca13fcbc9bf67bf2835883edcd4faace
fix(watch): fix watchers triggered in mounted hook fix #12624
[ { "path": "src/v3/apiWatch.ts", "patch": "@@ -320,8 +320,8 @@ function doWatch(\n } else {\n // pre\n watcher.update = () => {\n- if (instance && instance === currentInstance) {\n- // pre-watcher triggered inside setup()\n+ if (instance && instance === currentInstance && !instance...
2022-07-08T06:47:03
mrdoob/three.js
f6185d16f4b5b042e7bb6c5af43b9a942231f4f0
d167b69e3c0b7157ac96ca9eda3c5a0c351cfa2b
WebGPURenderer: Fix `overrideMaterial` node assignments. (#32896)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -3195,9 +3195,9 @@ class Renderer {\n \t\t\tmaterialOverride = true;\n \n \t\t\t// store original nodes\n-\t\t\tmaterialColorNode = scene.overrideMaterial.colorNode;\n-\t\t\tmaterialDepthNode = scene.overrideMaterial.depthNode;\n-\t\t\tmaterialPosit...
2026-01-30T10:46:17
denoland/deno
ffbe236845c5451874c3a906ca515a7768a50059
4fc7ee2af737a1719931a62af1541be2ccb03730
fix(ext/node): support numeric FDs in child_process stdio array (#32959) ## Summary - Node.js allows passing raw file descriptors as numbers in the `stdio` array for `child_process.spawn()`, e.g. `spawn('cmd', { stdio: ['ignore', 'pipe', 'pipe', fd] })`. This previously failed with `serde_v8 error: invalid type; expe...
[ { "path": "ext/process/lib.rs", "patch": "@@ -7,6 +7,8 @@ use std::collections::HashMap;\n use std::ffi::OsString;\n use std::io::Write;\n #[cfg(unix)]\n+use std::os::fd::FromRawFd;\n+#[cfg(unix)]\n use std::os::unix::prelude::ExitStatusExt;\n #[cfg(unix)]\n use std::os::unix::process::CommandExt;\n@@ -79,1...
2026-03-25T08:59:36
golang/go
5a0e0838232d7aa7c82b5a33d89458c01ccd4ffc
90adad7b2565d456bf5e120a59a07ff31f3ada45
crypto: disallow RegisterHash with hash value 0 We already prevent registering hash values larger than the number of hashes we actually have, but for some reason we don't prevent registering hash value 0, which is the sentinel value we typically use for "no hash". This change adds a check to prevent registering hash v...
[ { "path": "src/crypto/crypto.go", "patch": "@@ -143,7 +143,7 @@ func (h Hash) Available() bool {\n // hash function. This is intended to be called from the init function in\n // packages that implement hash functions.\n func RegisterHash(h Hash, f func() hash.Hash) {\n-\tif h >= maxHash {\n+\tif h == 0 || h...
2026-03-27T15:40:08
mrdoob/three.js
9d40465f25fc2450f19d1eafff11988d5ad0a0fd
167f5f1aa68c391a699d99091ec06477d07e20cd
Fix: WebGL viewport / scissors not working correctly with PostProcessing in WebGPURenderer (#32883)
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -446,9 +446,12 @@ class WebGLBackend extends Backend {\n \n \t\tif ( renderContext.scissor ) {\n \n-\t\t\tconst { x, y, width, height } = renderContext.scissorValue;\n+\t\t\tthis.updateScissor( renderContext );\n \n-\t\t\tstate.scissor( ...
2026-01-29T18:32:41
vuejs/vue
012e10c9ca13fcbc9bf67bf2835883edcd4faace
559600f13d312915c0a1b54ed4edd41327dbedd6
fix(build): fix mjs dual package hazard close #12626
[ { "path": "dist/vue.runtime.mjs", "patch": "@@ -0,0 +1,75 @@\n+import Vue from './vue.runtime.common.js'\r\n+export default Vue\r\n+\r\n+// this should be kept in sync with src/v3/index.ts\r\n+export const {\r\n+ version,\r\n+\r\n+ // refs\r\n+ ref,\r\n+ shallowRef,\r\n+ isRef,\r\n+ toRef,\r\n+ toRef...
2022-07-08T03:42:36
denoland/deno
4fc7ee2af737a1719931a62af1541be2ccb03730
d54097a278462818162cf61111e74e94abd8e4f0
fix(cli): parse --frozen flag for deno update and deno outdated (#32975) ## Summary - `outdated_parse()` was missing a call to `lock_args_parse()`, so `--frozen`, `--lock`, and `--no-lock` flags were never parsed for `deno update` and `deno outdated` - This caused `deno update --frozen=false` to fail with "The lockfi...
[ { "path": "cli/args/flags.rs", "patch": "@@ -6064,6 +6064,7 @@ fn outdated_parse(\n recursive,\n kind,\n });\n+ lock_args_parse(flags, matches);\n min_dep_age_arg_parse(flags, matches);\n Ok(())\n }\n@@ -14668,6 +14669,22 @@ Usage: deno repl [OPTIONS] [-- [ARGS]...]\\n\"\n }\n }\n \n+ ...
2026-03-25T08:07:26
golang/go
90adad7b2565d456bf5e120a59a07ff31f3ada45
eeefb11776b91e4c758306d00094dccddffc8ce8
cmd/go: specify full path to go command when running go tool covdata Otherwise the GOROOT will be a post-1.25 GOROOT, while we try to run "go tool covdata" with a go command that's 1.24 or earlier from the post 1.25 toolchain. The 1.24 go command won't be able to find covdata in the 1.25 goroot because go 1.25 and lat...
[ { "path": "src/cmd/go/internal/work/cover.go", "patch": "@@ -24,7 +24,7 @@ import (\n func (b *Builder) CovData(a *Action, cmdargs ...any) ([]byte, error) {\n \tcmdline := str.StringList(cmdargs...)\n \targs := append([]string{}, cfg.BuildToolexec...)\n-\targs = append(args, \"go\", \"tool\", \"covdata\")\n...
2026-03-17T21:07:02
mrdoob/three.js
b43e7641e2c6583b7e6eb43fe7b9be53d0b9aef6
819cb9b2368aa86c0a29594c8ded29c69a017516
Line3: Fix closest point in `distanceSqToLine3()`. (#32878)
[ { "path": "src/math/Line3.js", "patch": "@@ -284,12 +284,10 @@ class Line3 {\n \n \t\t}\n \n-\t\tc1.copy( p1 ).add( _d1.multiplyScalar( s ) );\n-\t\tc2.copy( p2 ).add( _d2.multiplyScalar( t ) );\n+\t\tc1.copy( p1 ).addScaledVector( _d1, s );\n+\t\tc2.copy( p2 ).addScaledVector( _d2, t );\n \n-\t\tc1.sub( c2...
2026-01-28T19:37:44
vuejs/vue
26ff4bc0ed75d8bf7921523a2e546df24ec81d8f
b70a2585fcd102def2bb5a3b2b589edf5311122d
fix(types): global component registration type compat w/ defineComponent fix #12622
[ { "path": "types/test/v3/define-component-test.tsx", "patch": "@@ -1,3 +1,4 @@\n+import Vue, { VueConstructor } from '../../index'\n import {\n Component,\n defineComponent,\n@@ -8,12 +9,12 @@ import {\n } from '../../index'\n import { describe, test, expectType, expectError, IsUnion } from '../utils'\n...
2022-07-08T02:39:23
denoland/deno
d54097a278462818162cf61111e74e94abd8e4f0
ea9214cbdd7fba78894bf426963aa9278ed82c1f
fix(lockfile): truncate frozen lockfile error diff to 50 lines (#32976) ## Summary - The frozen lockfile error message includes a diff that can be 1000+ lines long, filling the entire console and making the actual error invisible - Truncate the diff to 50 lines with a "... N more lines omitted ..." footer Fixes #329...
[ { "path": "libs/resolver/lockfile.rs", "patch": "@@ -515,8 +515,19 @@ impl<TSys: LockfileSys> LockfileLock<TSys> {\n let diff = crate::display::diff(&contents, &new_contents);\n // has an extra newline at the end\n let diff = diff.trim_end();\n+ const MAX_DIFF_LINES: usize = 50;\n+ ...
2026-03-25T07:56:38
mrdoob/three.js
625541ebbc4514b5ac4d59353d7737840dfd498c
f67c8e4c34d8eb0484f920ee599f711b074d42c4
Editor: Fix canvas reference for video rendering. (#32864)
[ { "path": "editor/js/Menubar.Render.js", "patch": "@@ -497,7 +497,7 @@ class RenderVideoDialog {\n \n \t\t\tconst qualityToBitrate = {\n \t\t\t\t'low': 2e6,\n-\t\t\t\t'medium': 5e6, \n+\t\t\t\t'medium': 5e6,\n \t\t\t\t'high': 10e6,\n \t\t\t\t'ultra': 20e6\n \t\t\t};\n@@ -526,7 +526,7 @@ class RenderVideoDia...
2026-01-27T10:07:50
golang/go
4d6a40923b7b55d48e9e7abfc3514e607d58fe40
703bb60bf19f5410402fed4c736b31f2f8ec9fba
debug/buildinfo: remove macho/elf DataStart fallback code The go version code can't read pre-1.13 go versions, but in 1.13 we always write the go version info to the .go.buildinfo section. Remove the fallback code because it won't be used. See https://github.com/rsc/goversion/blob/v1.2.0/version/read.go for the origi...
[ { "path": "src/debug/buildinfo/buildinfo.go", "patch": "@@ -458,11 +458,6 @@ func (x *elfExe) DataStart() (uint64, uint64) {\n \t\t\treturn s.Addr, s.Size\n \t\t}\n \t}\n-\tfor _, p := range x.f.Progs {\n-\t\tif p.Type == elf.PT_LOAD && p.Flags&(elf.PF_X|elf.PF_W) == elf.PF_W {\n-\t\t\treturn p.Vaddr, p.Mem...
2026-03-18T17:34:44
vuejs/vue
b70a2585fcd102def2bb5a3b2b589edf5311122d
ca7daefaa15a192046d22d060220cd595a6a275f
fix(compiler-sfc): use safer deindent default for compatibility with previous behavior
[ { "path": "packages/compiler-sfc/src/parseComponent.ts", "patch": "@@ -10,7 +10,6 @@ export const DEFAULT_FILENAME = 'anonymous.vue'\n const splitRE = /\\r?\\n/g\n const replaceRE = /./g\n const isSpecialTag = makeMap('script,style,template', true)\n-const isNeedIndentLang = makeMap('pug,jade')\n \n export ...
2022-07-08T01:45:11
denoland/deno
ea9214cbdd7fba78894bf426963aa9278ed82c1f
6fba21692ed5e5a65f1ea77482a292dc1a8ee420
fix: handle inner quotes in double-quoted env values in .env file (#32930) ## Summary - Fix `--env-file` parsing of double-quoted values containing inner (unescaped) quotes, e.g. `KEY="foo'bar"baz`qux"` - Fix `\n` escape expansion in double-quoted values with inner quotes, e.g. `KEY="foo\ni am "on" newline"` **R...
[ { "path": "libs/dotenv/lib.rs", "patch": "@@ -292,7 +292,7 @@ fn parse_env_content_hook_impl(\n // Expand new line if \\n it's inside double quotes\n // Example: EXPAND_NEWLINES = 'expand\\nnew\\nlines'\n if text[0] == CHAR_DQUOTE\n- && let Some(closing) = find_char(text, CHAR_DQUOTE, 1)\n+...
2026-03-25T07:37:39
mrdoob/three.js
f67c8e4c34d8eb0484f920ee599f711b074d42c4
cd9bc6f7bdaba9c182025ea3a63297158fa1a70c
GLSLNodeBuilder: Fix `CubeDepthTexture` sampler. (#32857)
[ { "path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js", "patch": "@@ -752,7 +752,17 @@ ${ flowData.code }\n \n \t\t\t} else if ( uniform.type === 'cubeDepthTexture' ) {\n \n-\t\t\t\tsnippet = `samplerCubeShadow ${ uniform.name };`;\n+\t\t\t\tconst texture = uniform.node.value;\n+\n+\t\t\t\tif ( t...
2026-01-27T08:52:39
golang/go
703bb60bf19f5410402fed4c736b31f2f8ec9fba
2d72c268ea10db520b7dd99802cf2aa40b18c1af
database/sql: don't try to synctest.Wait in benchmarks Benchmarks shouldn't use synctest. Avoid a synctest.Wait in database shutdown when in benchmarks. Fixes #78373 Change-Id: I14755f8eefb3ab5c69cc660b1e884bbf6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/760400 Auto-Submit: Damien Neil <dneil@goog...
[ { "path": "src/database/sql/sql_test.go", "patch": "@@ -184,8 +184,21 @@ func closeDB(t testing.TB, db *DB) {\n \t}\n \n \t// Connections close asynchronously; wait for them to finish doing so.\n-\tsynctest.Wait()\n-\tif numOpen := db.numOpenConns(); numOpen != 0 {\n+\tnumOpenConns := func() int {\n+\t\tdb....
2026-03-27T17:04:29
vuejs/vue
ca7daefaa15a192046d22d060220cd595a6a275f
15e6f1dee47ea38af0ad541014e91df0ad9b062f
fix(ssr/reactivity): fix array setting error at created in ssr [#12632] (#12633) fix #12632
[ { "path": "packages/server-renderer/test/ssr-reactivity.spec.ts", "patch": "@@ -93,6 +93,10 @@ describe('SSR Reactive', () => {\n \n set(state.value, 1, {})\n expect(isReactive(state.value[1])).toBe(true)\n+\n+ const rawArr = []\n+ set(rawArr, 1, {})\n+ expect(isReactive(rawArr[1])).toBe(fa...
2022-07-08T01:44:41
denoland/deno
dd5c9cbee79c4676763251acf635274c0023eeb6
d1e7f67a173f9d622084efe50356a8509b4d26f5
fix(napi): add test coverage and fix escape_handle/throw bugs (#32960) ### Bug fixes **`napi_escape_handle` double-call panic**: The escapable handle scope was a complete no-op with no state tracking. Calling `napi_escape_handle` twice would silently succeed instead of returning `napi_escape_called_twice`. Fixed by t...
[ { "path": "ext/napi/js_native_api.rs", "patch": "@@ -1988,10 +1988,14 @@ fn napi_throw(env: *mut Env, error: napi_value) -> napi_status {\n return napi_pending_exception;\n }\n \n+ // Store in last_exception only. Do NOT call throw_exception() here.\n+ // The NAPI callback wrapper (call_fn) checks l...
2026-03-24T21:20:45
mrdoob/three.js
cd9bc6f7bdaba9c182025ea3a63297158fa1a70c
367d779305281524009371b2d1ad541a1bcfd689
LDrawConditionalLineNodeMaterial: fix import (#32861)
[ { "path": "examples/jsm/materials/LDrawConditionalLineNodeMaterial.js", "patch": "@@ -1,5 +1,5 @@\n-import { Color } from 'three/webgpu';\n-import { attribute, cameraProjectionMatrix, dot, float, Fn, modelViewMatrix, modelViewProjection, NodeMaterial, normalize, positionGeometry, sign, uniform, varyingPrope...
2026-01-27T08:52:28
golang/go
2d72c268ea10db520b7dd99802cf2aa40b18c1af
7f2e2fd71f0b25fde6031b8317f525f1a2739e9b
cmd/fix: change -diff to exit 1 if diffs exist Currently "go fix -diff" and "go vet -fix -diff" always exit with status 0 even when they print diffs, which is inconsistent with "gofmt -d" (#46289) and "go mod tidy -diff" (#27005) that exit non-zero when diffs are present. The root cause is that the default VetHandleS...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -511,7 +511,8 @@\n // It supports these flags:\n //\n //\t -diff\n-//\t\tinstead of applying each fix, print the patch as a unified diff\n+//\t\tinstead of applying each fix, print the patch as a unified diff;\n+//\t\texit with a non-zero status if the diff i...
2026-03-03T06:22:28
vuejs/vue
6d1dbeee7ebd27a87c37393d8cabf2ef8253f3a4
360272bde32e93b1a8d611e4b97af1300c38e7a3
fix: add renderTracked/Triggered merge strategy (#12616)
[ { "path": "src/shared/constants.ts", "patch": "@@ -14,5 +14,7 @@ export const LIFECYCLE_HOOKS = [\n 'activated',\n 'deactivated',\n 'errorCaptured',\n- 'serverPrefetch'\n+ 'serverPrefetch',\n+ 'renderTracked',\n+ 'renderTriggered'\n ] as const", "additions": 3, "deletions": 1, "languag...
2022-07-06T04:59:30
denoland/deno
d1e7f67a173f9d622084efe50356a8509b4d26f5
802a788d7d6c0af94aab355cab9a768875ced5ee
fix(ext/node): close libuv handle on HandleWrap.close() for new-style handles (#32958) ## Summary - Fix file descriptor leak when closing TTY handles (e.g. from node-pty) - `HandleWrap.close()` was only calling the JS-side `_onClose()` callback for new-style `uv_compat` handles, but never calling `uv_compat::uv_close...
[ { "path": "ext/node/ops/handle_wrap.rs", "patch": "@@ -317,6 +317,18 @@ impl HandleWrap {\n }\n };\n \n+ // For new-style handles (uv_compat), call uv_compat::uv_close to\n+ // properly shut down the libuv handle (e.g. close FDs for TTY).\n+ // Without this, the libuv handle cleanup never...
2026-03-24T21:19:23
mrdoob/three.js
08e56bb0cd3b5282b636742df1bf354599bc9674
809a2a2be54c4838be7750309f4c0534a0905e1b
Editor: Fix camera move error (#32843)
[ { "path": "editor/js/Viewport.Controls.js", "patch": "@@ -26,7 +26,7 @@ function ViewportControls( editor ) {\n \n \t\tif ( object.isCamera ) {\n \n-\t\t\tupdate();\n+\t\t\tupdate( false );\n \n \t\t}\n \n@@ -59,7 +59,7 @@ function ViewportControls( editor ) {\n \n \t//\n \n-\tfunction update() {\n+\tfuncti...
2026-01-24T22:45:18
golang/go
7f2e2fd71f0b25fde6031b8317f525f1a2739e9b
31a839621976f968a997fd8578b6c5fd074bbc0c
cmd/go: add example support to go doc output The go doc command now includes a -ex flag to list executable examples. It will also print the code and expected output of an example when passed its name. Fixes #26715 Change-Id: I34b09403cc3cb45655939bd4fe27accec0e141f5 Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -452,6 +452,8 @@\n //\t\t\tTreat a command (package main) like a regular package.\n //\t\t\tOtherwise package main's exported symbols are hidden\n //\t\t\twhen showing the package's top-level documentation.\n+//\t\t-ex\n+//\t\t\tInclude executable examples.\n ...
2026-02-10T08:26:25
vuejs/vue
360272bde32e93b1a8d611e4b97af1300c38e7a3
94ccca207c9c5fc0fc8985e0c103d8a1c9cff412
fix(ssr/reactivity): fix composition api behavior in SSR fix #12615
[ { "path": "packages/server-renderer/test/ssr-reactivity.spec.ts", "patch": "@@ -0,0 +1,192 @@\n+// @vitest-environment node\n+\n+import Vue from 'vue'\n+import {\n+ reactive,\n+ ref,\n+ isReactive,\n+ shallowRef,\n+ isRef,\n+ set,\n+ nextTick,\n+ getCurrentInstance\n+} from 'v3'\n+import { createRen...
2022-07-06T04:49:30
denoland/deno
802a788d7d6c0af94aab355cab9a768875ced5ee
d736de8eee4995f26fb782d263ee6267313285fa
fix(ext/napi): pass valid env to tsfn call_js_cb after close race (#32957) ## Summary - Fix SIGSEGV crash in native addons (e.g. node-pty) caused by a race condition in NAPI threadsafe function teardown - When a tsfn is released while calls are still pending, `TsFn::drop` can run before a queued call is processed. Pr...
[ { "path": "ext/napi/node_api.rs", "patch": "@@ -824,15 +824,24 @@ impl TsFn {\n let data = SendPtr(data);\n let context = SendPtr(self.context);\n let call_js_cb = self.call_js_cb;\n+ // Capture env so we can pass it even after the tsfn is freed. The env\n+ // pointer is always valid here ...
2026-03-24T21:17:51
mrdoob/three.js
c2b9e237663af69fbae09a9da66bb605b60f517b
dcb73dd35b4dd30c4065816df37388c327705068
ShadowFilterNode: Fix TSL warning in `VSMShadowFilter`. (#32836)
[ { "path": "src/nodes/lighting/ShadowFilterNode.js", "patch": "@@ -190,23 +190,23 @@ export const VSMShadowFilter = /*@__PURE__*/ Fn( ( { depthTexture, shadowCoord,\n \n \tconst hardShadow = step( shadowCoord.z, mean );\n \n-\t// Early return if fully lit\n-\tIf( hardShadow.equal( 1.0 ), () => {\n+\tconst ou...
2026-01-23T12:44:26
golang/go
31a839621976f968a997fd8578b6c5fd074bbc0c
faeffecf8666bde8cbb3383c3fdf4a4d92ee421c
all: remove openbsd/mips64 port The openbsd/mips64 port is dead, remove the remaining code specific to that port and clean up build tags. Fixes #61546 Change-Id: I0328b7b76ce1ddacd3a526b3f4ae29eaa1254c3f Reviewed-on: https://go-review.googlesource.com/c/go/+/746480 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1819,7 +1819,6 @@ var cgoEnabled = map[string]bool{\n \t\"openbsd/amd64\": true,\n \t\"openbsd/arm\": true,\n \t\"openbsd/arm64\": true,\n-\t\"openbsd/mips64\": true,\n \t\"openbsd/ppc64\": false,\n \t\"openbsd/riscv64\": true,\n \t\"plan9/386\": ...
2026-03-25T22:45:38
vuejs/vue
94ccca207c9c5fc0fc8985e0c103d8a1c9cff412
e244687135dcd0fd55ad0423d5d5fbf2ba389c4e
fix(types): allow slot attribute close #12617
[ { "path": "types/jsx.d.ts", "patch": "@@ -1303,6 +1303,12 @@ type EventHandlers<E> = {\n type ReservedProps = {\n key?: string | number | symbol\n ref?: VNodeData['ref']\n+ /**\n+ * @deprecated Old named slot syntax has been deprecated, use the new syntax\n+ * instead: `<template v-slot:name>`\n+ ...
2022-07-06T03:17:33
denoland/deno
d736de8eee4995f26fb782d263ee6267313285fa
473900450b19d5cc8659c949f1cc15609deca702
fix(node/http): stop leaking TCP wrappers on HTTPS upgrade with createConnection TLSSocket (#32961) Fixes a Node-compat HTTP/TLS bug where `https.request()` could leak native `TCP` wrappers when `createConnection` returns a pre-created `TLSSocket` and the request upgrades the connection. This is the same pattern used...
[ { "path": "ext/node/polyfills/_tls_wrap.js", "patch": "@@ -226,6 +226,7 @@ export class TLSSocket extends net.Socket {\n \n // Assign the TLS connection to the handle and resume reading.\n this[kStreamBaseField] = conn;\n+ tlssock._tlsUpgraded = true;\n this.upgrading ...
2026-03-24T21:14:56
mrdoob/three.js
e5d3e4e26390936acabf3191f255d1a057c4726f
d89cd73280a16218e9364c0b0ff172fcda81ec5e
WebGLState: Fix polygon offset with reversed depth buffer. (#32832)
[ { "path": "src/renderers/webgl/WebGLState.js", "patch": "@@ -876,11 +876,17 @@ function WebGLState( gl, extensions ) {\n \n \t\t\tif ( currentPolygonOffsetFactor !== factor || currentPolygonOffsetUnits !== units ) {\n \n-\t\t\t\tgl.polygonOffset( factor, units );\n-\n \t\t\t\tcurrentPolygonOffsetFactor = fa...
2026-01-23T09:51:36
golang/go
91d1a883768b8b38fe79eefd820063b2b593f23a
87fae3622dacca9cfa5026c712df40af694a4e6a
cmd/internal/obj/riscv: add assembly support of Zbc extension The Zbc extension adds carry-less multiplication instructions for polynomial arithmetic over GF(2), which is used in cryptographic algorithms and error-correcting codes. The instructions included are: clmul, clmulh, and clmulr. Change-Id: I77a40add1a795c7b...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64.s", "patch": "@@ -509,6 +509,14 @@ start:\n \tORCB\tX5, X6\t\t\t\t\t// 13d37228\n \tREV8\tX7, X8\t\t\t\t\t// 13d4836b\n \n+\t// 28.4.3: Carry-less multiplication (Zbc)\n+\tCLMUL\tX5, X6, X7 \t\t\t\t// b313530a\n+\tCLMUL\tX5, X6\t \t\t\t\t// 3313530a\n+\tC...
2025-11-27T06:37:04
vuejs/vue
1294385300742acbea5f05c166685bd4a1fab35a
fb93c1be77f12ea1375c5e8b47d168e4d5ceb7be
fix(compiler-sfc): preserve old deindent behavior for pug fix #12611
[ { "path": "packages/compiler-sfc/src/parseComponent.ts", "patch": "@@ -10,6 +10,7 @@ export const DEFAULT_FILENAME = 'anonymous.vue'\n const splitRE = /\\r?\\n/g\n const replaceRE = /./g\n const isSpecialTag = makeMap('script,style,template', true)\n+const isNeedIndentLang = makeMap('pug,jade')\n \n export ...
2022-07-05T02:32:56
mrdoob/three.js
d89cd73280a16218e9364c0b0ff172fcda81ec5e
7f6b25e503567e234b3c82f1151bff8e9b5ef427
WGSLNodeBuilder: Fix out-of-bounds access with `textureLoad()`. (#32826)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -518,14 +518,18 @@ class WGSLNodeBuilder extends NodeBuilder {\n \t\tconst textureDimension = this.generateTextureDimension( texture, textureProperty, levelSnippet );\n \n \t\tconst vecType = texture.is3DTexture || texture.isData3DTextu...
2026-01-23T08:20:32
denoland/deno
473900450b19d5cc8659c949f1cc15609deca702
1c5048596ebd8a74c0e490d6ed5f8aaa2a0692d2
feat(ext/telemetry): add console exporter for OpenTelemetry (#32717) - Add a built-in console exporter that writes OTel spans, logs, and metrics to stderr in human-readable text format - Activated via `OTEL_EXPORTER_OTLP_PROTOCOL=console` — no collector stack needed - Generalize `DenoPeriodicReader::new` to accept any...
[ { "path": "Cargo.lock", "patch": "@@ -3318,6 +3318,7 @@ dependencies = [\n \"deno_error\",\n \"deno_net\",\n \"deno_signals\",\n+ \"deno_terminal\",\n \"deno_tls\",\n \"http-body-util\",\n \"hyper 1.6.0\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/te...
2026-03-24T18:39:25
mrdoob/three.js
43c8ff7e8966b1a359b104915290b8d4619e80cc
17529114983185f1266b40e36933d306badfd5f5
USDLoader: Fix material binding lookup for variants. Material bindings stored inside USD variant paths were not being found. Added variant-aware lookup that searches through active variant paths when resolving material:binding relationships. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
[ { "path": "examples/jsm/loaders/usd/USDComposer.js", "patch": "@@ -1202,15 +1202,8 @@ class USDComposer {\n \t\t\tconst indices = attrs[ 'indices' ];\n \t\t\tif ( ! indices || indices.length === 0 ) continue;\n \n-\t\t\t// Get material binding\n-\t\t\tconst bindingPath = p + '.material:binding';\n-\t\t\tcon...
2026-01-23T07:36:02
golang/go
7c1806932fb91c7f8f8d17be7c1a63aa3d6cf175
1cfd0dc9a3416c1077acfcd44ad0084dd508116a
cmd/go: default to Go 1.20 GODEBUGs in GOPATH mode We used MainModules.GoVersion to get the Go version to use for godebugs in GOPATH mode. That returned Go 1.16 which is the default version for modules to use when they don't have a go directive, but is modules specific and doesn't make sense for GOPATH mode. Set the v...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2878,11 +2878,11 @@\n // GOPATH mode import path checking (see 'go help importpath').\n //\n // In GOPATH mode, the default GODEBUG values built into a binary\n-// will be those used in Go 1.20, setting the same GODEBUG values\n-// as when a module specifies ...
2026-03-25T18:05:36
vuejs/vue
caceece8fa9b75c4832a91d3af0bc2958166d3f2
6f0d2e6985a332d75ce93d29dd7031496196c1ac
fix(compiler-sfc): fix template usage check edge case for v-on statements fix #12591
[ { "path": "packages/compiler-sfc/src/compileScript.ts", "patch": "@@ -39,7 +39,7 @@ import { walk } from 'estree-walker'\n import { RawSourceMap } from 'source-map'\n import { warnOnce } from './warn'\n import { isReservedTag } from 'web/util'\n-import { dirRE } from 'compiler/parser'\n+import { bindRE, dir...
2022-07-04T03:38:36
denoland/deno
1c5048596ebd8a74c0e490d6ed5f8aaa2a0692d2
637b7583e48505395663738944ea78f66b8244a0
fix(fmt): delegate component expression formatting to markup_fmt (#29763) Closes #26999 This PR now solves component expression formatting by delegating parsing/formatting to `markup_fmt` instead of using Deno-side regex placeholder preprocessing. ## What changed - upgraded `markup_fmt` and aligned Deno formatter co...
[ { "path": "cli/schemas/config-file.v1.json", "patch": "@@ -772,6 +772,16 @@\n \"default\": true,\n \"type\": \"boolean\"\n },\n+ \"vueComponentCase\": {\n+ \"description\": \"Case style for Vue component tags.\",\n+ \"default\": \"ignore\",\n+ \"...
2026-03-24T18:08:44
mrdoob/three.js
1afb95601680662310716e6baec9cd1320063d2f
abea2ceaeed3545189091f2b49b742a2bb0b56c1
Fix missing iorNode in MeshPhysicalNodeMaterial copy method (#32821)
[ { "path": "src/materials/nodes/MeshPhysicalNodeMaterial.js", "patch": "@@ -502,6 +502,8 @@ class MeshPhysicalNodeMaterial extends MeshStandardNodeMaterial {\n \t\tthis.specularIntensityNode = source.specularIntensityNode;\n \t\tthis.specularColorNode = source.specularColorNode;\n \n+\t\tthis.iorNode = sourc...
2026-01-22T15:17:19
golang/go
1cfd0dc9a3416c1077acfcd44ad0084dd508116a
5e17860e1b177b146c965f4ab1cb7d7ea51b91ed
runtime: truncate trace strings before inserting into trace map traceStringTable.put inserted the full user-supplied string into the trace map, then only truncated it to MaxEventTrailerDataSize (1024 bytes) when writing to the trace buffer. If the string exceeded the traceRegionAlloc block size (~64KB), this caused a ...
[ { "path": "src/runtime/trace/annotation_test.go", "patch": "@@ -8,9 +8,22 @@ import (\n \t\"context\"\n \t\"io\"\n \t. \"runtime/trace\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n+func TestStartRegionLongString(t *testing.T) {\n+\t// Regression test: a region name longer than the trace region\n+\t// allocator...
2026-03-26T07:47:30
vuejs/vue
86fb6bd15174490509236eb85407125217569692
e452e9d4368aaba173e8c942e5fd82f999cf65ae
chore(benchmarks:ssr): createRenderer function path error (#12601)
[ { "path": "benchmarks/ssr/renderToStream.js", "patch": "@@ -5,7 +5,7 @@\n process.env.NODE_ENV = 'production'\n \n const Vue = require('../../dist/vue.runtime.common.js')\n-const createRenderer = require('../../packages/vue-server-renderer').createRenderer\n+const createRenderer = require('../../packages/se...
2022-07-04T02:58:42
denoland/deno
637b7583e48505395663738944ea78f66b8244a0
98ae95fe34e6b16ed674ec1a73b3b7a7ced97fda
fix(ext/node): `fs.cp` across allowed dirs with ignored read permissions (#32927) ## Summary - Fix `node:fs.cp` failing with `ENOENT` when copying between allowed directories while read permissions outside those directories are ignored (`"ignore": true` in deno.json permissions config) - The `check_parent_paths` wa...
[ { "path": "ext/node/ops/fs.rs", "patch": "@@ -1561,7 +1561,17 @@ async fn check_parent_paths_impl(\n \n let current_str = current.to_string_lossy();\n let checked_path =\n- check_cp_path(state, &current_str, OpenAccessKind::Read)?;\n+ match check_cp_path(state, &current_str, OpenAccessKind...
2026-03-24T13:47:20
mrdoob/three.js
2de6f3e018d8a7b52da151e5e16df0f3990983ce
6e4cc1ed26697f4f74e1a346e0394a7a40d58ce5
Revert "WGSLNodeBuilder: Fix out-of-bounds access with `textureLoad()`." (#32820)
[ { "path": "src/math/MathUtils.js", "patch": "@@ -177,7 +177,7 @@ function smoothstep( x, min, max ) {\n \n /**\n * A [variation on smoothstep](https://en.wikipedia.org/wiki/Smoothstep#Variations)\n- * that has zero 1st and 2nd order derivatives at `x=0` and `x=1`.\n+ * that has zero 1st and 2nd order deriv...
2026-01-22T14:51:40
vuejs/vue
e452e9d4368aaba173e8c942e5fd82f999cf65ae
bcb62d1a001125bfac91c1dd4f8bd51ac42b5a0f
fix: export proxyRefs close #12600
[ { "path": "src/v3/apiSetup.ts", "patch": "@@ -12,7 +12,7 @@ import {\n } from '../shared/util'\n import { currentInstance, setCurrentInstance } from './currentInstance'\n import { shallowReactive } from './reactivity/reactive'\n-import { isRef } from './reactivity/ref'\n+import { proxyWithRefUnwrap } from '...
2022-07-04T02:56:33
denoland/deno
98ae95fe34e6b16ed674ec1a73b3b7a7ced97fda
bad6eaeb506718d3ff990ba88821f6c3fcd1f2ab
fix(fmt): update markup_fmt to 0.27.0 and malva to 0.15.2 (#32949) ## Summary - Update `markup_fmt` from 0.22.0 to 0.27.0 (HTML/Vue/Svelte/Astro/Angular formatter) - Update `malva` from 0.12.1 to 0.15.2 (CSS/SCSS/Sass/Less formatter) - Also pulls in `raffia` 0.9.2 -> 0.12.2 (CSS parser used by malva) - Add Jinja/Nunj...
[ { "path": "Cargo.lock", "patch": "@@ -6718,9 +6718,9 @@ dependencies = [\n \n [[package]]\n name = \"malva\"\n-version = \"0.12.1\"\n+version = \"0.15.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"aa8f6005fe3f2348f1fc59d647ee6945d5832fd080178e6d034bab1bf7976348\"\n+...
2026-03-24T13:09:16
mrdoob/three.js
e1c93eecd5b5946e15431a928d932712d9454944
0768730baf6069ae342893f23a7196c98eb7d942
WGSLNodeBuilder: Fix out-of-bounds access with `textureLoad()`. (#32817)
[ { "path": "src/math/MathUtils.js", "patch": "@@ -177,7 +177,7 @@ function smoothstep( x, min, max ) {\n \n /**\n * A [variation on smoothstep](https://en.wikipedia.org/wiki/Smoothstep#Variations)\n- * that has zero 1st and 2nd order derivatives at `x=0` and `x=1`. \n+ * that has zero 1st and 2nd order deri...
2026-01-22T09:06:06
vuejs/vue
ff5acb12cfa64f975f216a55aafa976b07052665
15b9b9b19dd3ae7cce5dcd89739e5cf719523fc5
fix: fix NaN comparison on state change fix #12595
[ { "path": "src/shared/util.ts", "patch": "@@ -361,6 +361,6 @@ export function hasChanged(x: unknown, y: unknown): boolean {\n if (x === y) {\n return x === 0 && 1 / x !== 1 / (y as number)\n } else {\n- return x === x && y === y\n+ return x === x || y === y\n }\n }", "additions": 1, ...
2022-07-04T02:37:05
denoland/deno
bad6eaeb506718d3ff990ba88821f6c3fcd1f2ab
92d7ec6caec4fc0d8b63bc820411c048594eade4
fix(ext/node): drain all ready connections in poll_tcp_handle to prevent accept starvation (#32943) ## Summary - Fix `node:net` accept starvation under high concurrency when mixed with Deno-native APIs (`Deno.listenTls()`, `Deno.connect()`) - `poll_tcp_handle` now drains all ready connections from `poll_accept` in a ...
[ { "path": "libs/core/uv_compat/tcp.rs", "patch": "@@ -606,34 +606,41 @@ pub(crate) unsafe fn poll_tcp_handle(\n }\n \n // 2. Poll listener for new connections.\n- // Match libuv: accept one connection at a time. Only poll when the\n- // backlog is empty. If the user doesn't call uv_accept in the...
2026-03-24T12:12:19
golang/go
b77fdc333aecc4691a0f637bd8a2600c879e342a
5edb5d729d14f0e036669e505548c899592a4d7c
cmd/compile: skip incomplete types in needWrapper A recursive pointer type *T may still be a TFORW when the compiler determines if method wrappers are needed. This leads to an incorrect decision and triggers an internal compiler error. Fix this by skipping incomplete types during the method wrapper generation check. ...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -3827,7 +3827,7 @@ type methodValueWrapper struct {\n // needWrapper records that wrapper methods may be needed at link\n // time.\n func (r *reader) needWrapper(typ *types.Type) {\n-\tif typ.IsPtr() {\n+\tif typ.IsPtr() || typ.IsKind(types....
2026-03-25T09:36:34
vuejs/vue
15b9b9b19dd3ae7cce5dcd89739e5cf719523fc5
8cdd0ac07e2222f344c2f0f4d7d2885b60435f7a
fix(reactivity): shallowReactive should not unwrap refs (#12605) fix #12597
[ { "path": "src/core/observer/index.ts", "patch": "@@ -181,7 +181,7 @@ export function defineReactive(\n }\n }\n }\n- return isRef(value) ? value.value : value\n+ return isRef(value) && !shallow ? value.value : value\n },\n set: function reactiveSetter(newVal) {\n ...
2022-07-04T02:33:44
denoland/deno
c09b7f4511abe8b156839ecfc5941178db8aa5a1
71ac11e15ad5ea5088458e1a0b4a8c6109a18f07
fix(ext/web): handle null options in removeEventListener (#32605) Fixes #20101 `normalizeEventHandlerOptions` (used by `removeEventListener`) throws `TypeError: Cannot read properties of null` when `null` is passed as the options parameter. Per the DOM spec, `null` should flatten to `capture: false`. --------- Co-a...
[ { "path": "ext/web/02_event.js", "patch": "@@ -834,7 +834,10 @@ function invokeEventListeners(tuple, eventImpl) {\n function normalizeEventHandlerOptions(\n options,\n ) {\n- if (typeof options === \"boolean\" || typeof options === \"undefined\") {\n+ if (\n+ typeof options === \"boolean\" || typeof ...
2026-03-24T07:49:59
golang/go
5edb5d729d14f0e036669e505548c899592a4d7c
e4fcdc6c55bfdc90f4f42eefc4e97998de3ef4e7
cmd/compile: do not invert loops that would overflow or underflow On the final iteration we need space below start (which becomes end) such that i-step does not overflow or underflow. In other words the code used to assume that the last time the loop header execute `start < i - step` (or `<=`, `>` `>=` based on the l...
[ { "path": "src/cmd/compile/internal/ssa/downward_counting_loop.go", "patch": "@@ -4,6 +4,8 @@\n \n package ssa\n \n+import \"fmt\"\n+\n // maybeRewriteLoopToDownwardCountingLoop tries to rewrite the loop to a\n // downward counting loop checking against start if the loop body does\n // not depend on ind or ...
2026-03-24T19:42:41