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
denoland/deno
415acdd462dcfc1c6fd8098273a9d4d269c15e4d
926bcbc4c22693223d6928bf0ca1de762b86cef3
fix(ext/node): avoid stack overflow in `node:zlib`'s `gunzip` (#30865) Fixes #30829 ## Problem The zlib polyfill had recursive calls between `processCallback` and `handle.write()` that caused stack overflow when decompressing large data. ## Solution Defer `handle.write()` calls with `process.nextTick()` to break t...
[ { "path": "ext/node/polyfills/zlib.js", "patch": "@@ -608,19 +608,7 @@ function processCallback() {\n handle.availInBefore = availInAfter;\n \n if (!streamBufferIsFull) {\n- this.write(\n- handle.flushFlag,\n- this.buffer, // in\n- handle.inOff, // in_off\n- handle.a...
2025-10-03T08:57:23
golang/go
b31dc77ceab962c0f4f5e4a9fc5e1a403fbd2d7c
46cc53290003340877413b8a53511b4f3685d213
os: support deleting read-only files in RemoveAll on older Windows versions The Windows implementation of RemoveAll supports deleting read-only files only on file systems that supports POSIX semantics and on newer Windows versions (Windows 10 RS5 and latter). For all the other cases, the read-only bit was not clearer...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -209,7 +209,7 @@ func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n \tvar h syscall.Handle\n \terr := NtOpenFile(\n \t\t&h,\n-\t\tSYNCHRONIZE|DELETE,\n+\t\tSYNCHRONIZE|FILE_READ_ATTRIBUTES|DELETE,\n \t\tobjAttrs,\n ...
2025-10-21T14:14:03
vuejs/vue
7259aefbe82516c63e9944a4dcc1dce1ac754bff
ebe27295dfee4fee0610563efe3c7fefca0a5d67
filter division expression with parentheses (fix #4838) (#4844) * filter division expression with parentheses (fix #4838) * verify also dot and square brackets * missed a link check sorry for the useless commit * added + - and _ support
[ { "path": "src/compiler/parser/filter-parser.js", "patch": "@@ -55,7 +55,7 @@ export function parseFilters (exp: string): string {\n p = exp.charAt(j)\n if (p !== ' ') break\n }\n- if (!p || !/[\\w$]/.test(p)) {\n+ if (!p || !/[\\w).\\]\\+\\-\\_$]/.test(p)) {\n ...
2017-02-14T18:30:11
denoland/deno
926bcbc4c22693223d6928bf0ca1de762b86cef3
1c3d04cfaf50a4a0db7a1925c0a73af5ea89bc69
fix(ext/node): inspect X509Certificate class (#30882) Fixes #30874
[ { "path": "ext/node/polyfills/internal/crypto/x509.ts", "patch": "@@ -31,6 +31,9 @@ import { isArrayBufferView } from \"ext:deno_node/internal/util/types.ts\";\n import { validateString } from \"ext:deno_node/internal/validators.mjs\";\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import {...
2025-10-03T08:19:56
mrdoob/three.js
0e17a92c657be1603d59306044c5a4849cc6cf47
e6e4398a34e8ce340d64e3b64cdb37bd710df9e5
WebGPURenderer: Fix missing updates to geometry attributes (#29589) * WebGPURenderer: Fix geometry attribute not updated regardless of version * BufferAttributes don't have uuid * small cleanup * more cleanup * improve geometry comparison performance * cleanup previous implementation * attributes hav...
[ { "path": "src/materials/nodes/manager/NodeMaterialObserver.js", "patch": "@@ -85,8 +85,15 @@ class NodeMaterialObserver {\n \n \t\tif ( data === undefined ) {\n \n+\t\t\tconst { geometry, material } = renderObject;\n+\n \t\t\tdata = {\n-\t\t\t\tmaterial: this.getMaterialData( renderObject.material ),\n+\t\...
2024-10-09T19:18:58
vuejs/vue
f763fc23546c8163676abe24781676ac7f2ca569
9df7870b7f25e23384e2053f7bf539f494817096
small improvements on html-parser (#4932) * remove unnecessary code * not need to capture group when decoding attribute value * fix eslint
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -56,8 +56,8 @@ const decodingMap = {\n '&': '&',\n '
': '\\n'\n }\n-const encodedAttr = /&(lt|gt|quot|amp);/g\n-const encodedAttrWithNewLines = /&(lt|gt|quot|amp|#10);/g\n+const encodedAttr = /&(?:lt|gt|quot|amp);/g\n+const encodedAttr...
2017-02-14T14:05:00
golang/go
46cc53290003340877413b8a53511b4f3685d213
2163a5802103ebe84cbf0d77cee7097185bd8e8d
cmd/compile/internal/ssa: fix typo in comment Change-Id: Ic48a756b71a62be1c6c4cfe781c02b89010e2338 GitHub-Last-Rev: 8c0d89b475c204af66d528799713276c57da16f8 GitHub-Pull-Request: golang/go#75985 Reviewed-on: https://go-review.googlesource.com/c/go/+/713041 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Keith ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go", "patch": "@@ -99,7 +99,7 @@ func init() {\n \t\t}\n \t}\n \n-\t// Floating pointer registers.\n+\t// Floating point registers.\n \tfor r := 32; r <= 63; r++ {\n \t\tmask := addreg(r, \"\")\n \t\tfpMask |= mask", "additions": 1, "deletions"...
2025-10-20T16:18:42
denoland/deno
46e2c64b2bef9e5e3b97015a1fc88fa76788b0ea
fb69caf0c74e9e5364d0ea36c919d77985095824
fix(check): do not error for unsupported URL schemes (#30904) Closes https://github.com/denoland/deno/issues/30898
[ { "path": "libs/resolver/file_fetcher.rs", "patch": "@@ -629,6 +629,17 @@ impl<\n }\n }\n \n+ if !matches!(\n+ specifier.scheme(),\n+ \"file\" | \"http\" | \"https\" | \"blob\" | \"data\"\n+ ) {\n+ return Box::pin(std::future::ready(Ok(Some(\n+ deno_graph::source::LoadR...
2025-10-03T01:34:53
mrdoob/three.js
e754fce13603bd7c6d982cb76374722df7e37ce2
aedf298f3374fdaac9f8eb8abb415401ce34fe4c
Editor: Fixed editor not loading on Chrome 129.0.6668.100 due to import maps definitions location.
[ { "path": "editor/index.html", "patch": "@@ -12,6 +12,19 @@\n \t<body>\n \t\t<link rel=\"stylesheet\" href=\"css/main.css\">\n \n+\t\t<script type=\"importmap\">\n+\t\t\t{\n+\t\t\t\t\"imports\": {\n+\t\t\t\t\t\"three\": \"../build/three.module.js\",\n+\t\t\t\t\t\"three/addons/\": \"../examples/jsm/\",\n+\n+...
2024-10-09T06:44:47
vuejs/vue
7e1d07aad240b0d99ce4b62cf26002b39562fbfa
a5a00738b15f24980875709739b45c54d99ee150
Fix JSFiddle links (#4910) Use an inline script tag with unpkg to explicitly show what we're including. It allows to easily test regressions by appending @2.x.x at the end of the of the link. It also allows to directly check if the repro is using the latest version
[ { "path": ".github/CONTRIBUTING.md", "patch": "@@ -26,7 +26,7 @@ Hi! I’m really excited that you are interested in contributing to Vue.js. Befo\n \n - Issues with no clear repro steps will not be triaged. If an issue labeled \"need repro\" receives no further input from the issue author for more than 5 days...
2017-02-12T23:49:47
golang/go
2163a5802103ebe84cbf0d77cee7097185bd8e8d
306eacbc112f2052d82c419fe312153b8b2ab613
crypto/internal/fips140/entropy: increase AllocsPerRun iterations TestNISTECAllocations is flaky (~1% failure rate) on my local Windows machine since CL 710058, which touched TestEntropyRace. These tests are unrelated, but some allocations might be incorrectly accounted to TestNISTECAllocations, affecting the end res...
[ { "path": "src/crypto/internal/fips140test/nistec_test.go", "patch": "@@ -18,7 +18,7 @@ import (\n func TestNISTECAllocations(t *testing.T) {\n \tcryptotest.SkipTestAllocations(t)\n \tt.Run(\"P224\", func(t *testing.T) {\n-\t\tif allocs := testing.AllocsPerRun(10, func() {\n+\t\tif allocs := testing.AllocsP...
2025-10-17T10:40:05
denoland/deno
fb69caf0c74e9e5364d0ea36c919d77985095824
5f308da57a8864b966d44dc16e5269d7c092a479
feat(unstable): permission broker - support custom error messages (#30902) This allows changing the error message displayed in Deno for errors by providing a "reason" property when denying a permission.
[ { "path": "cli/schemas/permission-broker-response.v1.json", "patch": "@@ -15,6 +15,11 @@\n \"grant\",\n \"deny\"\n ]\n+ },\n+ \"reason\": {\n+ \"type\": \"string\",\n+ \"description\": \"Optional message to display to the user on deny. This will override the default err...
2025-10-02T20:27:54
mrdoob/three.js
35f4555fccf70577e29b40acc948302d92266102
322aecea4605985ff5b8a0b925a24c237ab20455
GTAONode: Fix AO with WebGL backend. (#29593) * GTAONode: Fix AO with WebGL backend. * E2E: Update screenshot. * DenoiseNode: Use `getViewPosition()` from core. * DenoiseNode: Clean up.
[ { "path": "examples/jsm/tsl/display/DenoiseNode.js", "patch": "@@ -1,5 +1,5 @@\n import { Vector2, Vector3 } from 'three';\n-import { convertToTexture, TempNode, nodeObject, Fn, float, NodeUpdateType, uv, uniform, Loop, luminance, vec2, vec3, vec4, uniformArray, int, dot, max, pow, abs, If, textureSize, sin...
2024-10-08T15:05:57
vuejs/vue
1f4cf63e8a7b8c04292207a17bf7f536ca2d08f8
af619151c6ea9f39ea551770916c1fb6da7f6e41
tweak template compilation error output
[ { "path": "src/compiler/error-detector.js", "patch": "@@ -55,7 +55,7 @@ function checkFor (node: ASTElement, text: string, errors: Array<string>) {\n \n function checkIdentifier (ident: ?string, type: string, text: string, errors: Array<string>) {\n if (typeof ident === 'string' && !identRE.test(ident)) {...
2017-02-07T00:50:13
golang/go
306eacbc112f2052d82c419fe312153b8b2ab613
a5a249d6a64508376320bc48546a6a43aebecda7
cmd/go/testdata/script: disable list_empty_importpath test on Windows The test is flaking on windows, and I haven't been able to figure out why. For now, to unblock folks, just allow the value that occasionally appears: 'no errors' to avoid having a broken test. This seems like it's probably a race though so we should...
[ { "path": "src/cmd/go/testdata/script/list_empty_importpath.txt", "patch": "@@ -1,6 +1,12 @@\n ! go list all\n ! stderr 'panic'\n-stderr 'invalid import path'\n+[!GOOS:windows] [!GOOS:solaris] stderr 'invalid import path'\n+# #73976: Allow 'no errors' on Windows and Solaris until issue\n+# is resolved to pr...
2025-10-20T17:51:13
mrdoob/three.js
322aecea4605985ff5b8a0b925a24c237ab20455
55cf9495d0ff81e53d5792e291bc6de4d8b69839
Revert "GTAONode: Fix AO with WebGL backend. (#29588)" (#29590) This reverts commit 55cf9495d0ff81e53d5792e291bc6de4d8b69839.
[ { "path": "examples/jsm/tsl/display/DenoiseNode.js", "patch": "@@ -1,5 +1,5 @@\n import { Vector2, Vector3 } from 'three';\n-import { getViewPosition, convertToTexture, TempNode, nodeObject, Fn, float, NodeUpdateType, uv, uniform, Loop, luminance, vec2, vec3, vec4, uniformArray, int, dot, max, pow, abs, If,...
2024-10-08T14:19:10
vuejs/vue
a0a619f6119c4cc6c71934c29fe3e62d3d608da9
bf1f5f18e2c0e5710410ac841583feb6fd99cdec
fix sfc parser hanging on trailing ill-formatted brackets (fix vue-loader/#628)
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -168,8 +168,8 @@ export function parseHTML (html, options) {\n parseEndTag(stackedTag, index - endTagLength, index)\n }\n \n- if (html === last && options.chars) {\n- options.chars(html)\n+ if (html === last) {\n+ options...
2017-02-06T23:24:13
golang/go
f838faffe21afd2d5c177c04df8836c93e273b4b
ee4d2c312de90296a6b6f687f6a7ea8b9916af54
runtime: wrap procyield assembly and check for 0 procyield will currently loop infinitely if passed 0 on several platforms. This change sidesteps this bug by renaming procyield to procyieldAsm, and adding a wrapper named procyield that checks for cycles == 0. The benefit of this structure is that procyield called with...
[ { "path": "src/runtime/asm_386.s", "patch": "@@ -597,7 +597,7 @@ CALLFN(·call268435456, 268435456)\n CALLFN(·call536870912, 536870912)\n CALLFN(·call1073741824, 1073741824)\n \n-TEXT runtime·procyield(SB),NOSPLIT,$0-0\n+TEXT runtime·procyieldAsm(SB),NOSPLIT,$0-0\n \tMOVL\tcycles+0(FP), AX\n again:\n \tPAUSE...
2025-10-17T19:53:36
denoland/deno
a51be5f0fabf06f9e63d3f00c8498bf55cf138ca
379789b2090d76adbeac447e8ce9c0ae7d32d7b0
chore(cli): new error message for missing dependency (#30901)
[ { "path": "Cargo.lock", "patch": "@@ -2034,9 +2034,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_doc\"\n-version = \"0.184.0\"\n+version = \"0.185.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"797807db545563a88096326f0a380dee181b21b7b8184eaac3aed5096cabcc37...
2025-10-02T18:15:55
mrdoob/three.js
55cf9495d0ff81e53d5792e291bc6de4d8b69839
36ae025c7030a0e9f2bc221728014e030e9ef9db
GTAONode: Fix AO with WebGL backend. (#29588) * GTAONode: Fix AO with WebGL backend. * E2E: Update screenshot.
[ { "path": "examples/jsm/tsl/display/DenoiseNode.js", "patch": "@@ -1,5 +1,5 @@\n import { Vector2, Vector3 } from 'three';\n-import { convertToTexture, TempNode, nodeObject, Fn, float, NodeUpdateType, uv, uniform, Loop, luminance, vec2, vec3, vec4, uniformArray, int, dot, max, pow, abs, If, textureSize, sin...
2024-10-08T13:59:39
vuejs/vue
f968e6ba3a1b22cce51a924b055f030d29017f6a
ec7fca8495528bda169c44ac660747bf2a8000a8
fix v-pre end check for unary tags
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -52,13 +52,25 @@ export function parse (\n transforms = pluckModuleFunction(options.modules, 'transformNode')\n postTransforms = pluckModuleFunction(options.modules, 'postTransformNode')\n delimiters = options.delimiters\n+\n const stack = []\n ...
2017-02-06T23:00:43
golang/go
e4251768439bbd0a6fe4c472aa57bb5257f20b56
dc9a3e2a658176fe1884d65d5a0e7516145404eb
cmd/asm: fix typo in comment Change-Id: I1a7933bce70bcae1f93a45c6810da60d269f48f3 Reviewed-on: https://go-review.googlesource.com/c/go/+/713000 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Keith Randall <khr@google...
[ { "path": "src/cmd/asm/main.go", "patch": "@@ -58,7 +58,7 @@ func main() {\n \t\t// nothing\n \tcase \"index\":\n \t\t// known to compiler; ignore here so people can use\n-\t\t// the same list with -gcflags=-spectre=LIST and -asmflags=-spectrre=LIST\n+\t\t// the same list with -gcflags=-spectre=LIST and -as...
2025-10-20T04:33:50
mrdoob/three.js
186d7b47d8fabcb39440f6e3ed6daf85cf409052
0c7cf78a64a724c24fcca51500b8f3d1b9931af5
BatchedMesh: add support for resizing instance count, geometry size (#29577) * Add setInstanceCount function * Add setGeometrySize function * Prefer using earlier ids when reusing ids * Check for size validity * Fix implementation bugs * Add comment * Add docs
[ { "path": "docs/api/en/objects/BatchedMesh.html", "patch": "@@ -301,14 +301,36 @@ <h3>\n \t\t\tCalling this will change all instances that are rendering that geometry.\n \t\t</p>\n \n-\n \t\t<h3>\n \t\t\t[method:this optimize]()\n \t\t</h3>\n \t\t<p>\n \t\t\tRepacks the sub geometries in [name] to remove an...
2024-10-08T06:26:47
denoland/deno
379789b2090d76adbeac447e8ce9c0ae7d32d7b0
589d66f79c2651c47c6cb6b45bb5a01d7d1b61a7
fix(clean): do not panic on failure to get local cache path in clean --except (#30895)
[ { "path": "cli/tools/clean.rs", "patch": "@@ -313,7 +313,10 @@ async fn clean_except(\n \n let jsr_url = crate::args::jsr_url();\n add_jsr_meta_paths(graph, &mut keep_paths_trie, jsr_url, &|url| {\n- http_cache.local_path_for_url(url).map_err(Into::into)\n+ http_cache\n+ .local_path_for_url(u...
2025-10-01T22:41:14
mrdoob/three.js
234489183cc06b67ee40c383787ddfffe27ceb74
b378fbac401afce6a8ceae19c51aacae8ae818e2
Examples: Fix `webgpu_tsl_procedural_terrain` warning (#29574) * ShadowNode: Use `transformedNormalWorld` * getGeometryRoughness: Return 0. if there is no normal buffer * update screenshot
[ { "path": "src/nodes/functions/material/getGeometryRoughness.js", "patch": "@@ -1,7 +1,13 @@\n import { normalView } from '../../accessors/Normal.js';\n-import { Fn } from '../../tsl/TSLBase.js';\n+import { float, Fn } from '../../tsl/TSLBase.js';\n \n-const getGeometryRoughness = /*@__PURE__*/ Fn( () => {\...
2024-10-07T05:49:14
vuejs/vue
ec7fca8495528bda169c44ac660747bf2a8000a8
8bf5af8edf966e6fad8f260234519cf40ab0cde6
Fix multiple attr in select with undefined value (#4859) Fix #4855
[ { "path": "src/platforms/web/runtime/node-ops.js", "patch": "@@ -7,7 +7,8 @@ export function createElement (tagName: string, vnode: VNode): Element {\n if (tagName !== 'select') {\n return elm\n }\n- if (vnode.data && vnode.data.attrs && 'multiple' in vnode.data.attrs) {\n+ // false or null will r...
2017-02-06T16:58:36
golang/go
dc9a3e2a658176fe1884d65d5a0e7516145404eb
df33c170919faca6ea849ee23fb0af6971fddc5b
runtime: fix generation skew with trace reentrancy Currently when performing multiple nested traceAcquires, we re-read trace.gen on subsequent reads. But this is invalid, since a generation transition may happen in between a traceAcquire and a nested traceAcquire. The first one will produce a traceLocker with a gen fr...
[ { "path": "src/runtime/traceruntime.go", "patch": "@@ -29,6 +29,7 @@ type mTraceState struct {\n \tbuf [2][tracev2.NumExperiments]*traceBuf // Per-M traceBuf for writing. Indexed by trace.gen%2.\n \tlink *m // Snapshot of alllink or freelink.\n \treentere...
2025-09-30T23:54:07
denoland/deno
589d66f79c2651c47c6cb6b45bb5a01d7d1b61a7
9c9bfef417b2e028d1e93e7716f1c6024d6acd1d
fix(dts): update some GPU types to not cause errors in upcoming DOM type declarations (#30893) See https://github.com/microsoft/TypeScript/pull/62496#issuecomment-3340761035
[ { "path": "cli/tsc/dts/lib.deno.unstable.d.ts", "patch": "@@ -162,6 +162,8 @@ declare namespace Deno {\n success: boolean;\n outputFiles?: OutputFile[];\n }\n+\n+ export {}; // only export exports\n }\n \n /** **UNSTABLE**: New API, yet to be vetted.", "additions": 2, "deletio...
2025-10-01T20:34:43
mrdoob/three.js
b7712d36952311030f4d3e6e6526d654edc712e1
c32e4c729a66ceef5896ee54a586ebdafe962d7d
Fix Compressed 3D Textures failing on Android and Meta Quest (#29566)
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js", "patch": "@@ -445,8 +445,7 @@ class WebGLTextureUtils {\n \n \t\t\t\t\t\tif ( glFormat !== null ) {\n \n-\t\t\t\t\t\t\tgl.compressedTexSubImage3D( gl.TEXTURE_2D_ARRAY, i, 0, 0, 0, mipmap.width, mipmap.height, image.depth, glFormat, mipmap....
2024-10-06T12:31:26
vuejs/vue
8bf5af8edf966e6fad8f260234519cf40ab0cde6
e853d1994dd87b14fd1577e1fc301c88333944c8
fix `addClass` utlil bug (#4863) * fix addClass util bug `<transition-group move-class=“ value with leading or trailing whitespace ” />` * fix addClass util bug `<transition-group move-class=“ value with leading or trailing whitespace ” />` * fix addClass util bug `<transition-group move-class=“ value w...
[ { "path": "src/platforms/web/runtime/class-util.js", "patch": "@@ -6,7 +6,7 @@\n */\n export function addClass (el: Element, cls: ?string) {\n /* istanbul ignore if */\n- if (!cls || !cls.trim()) {\n+ if (!cls || !(cls = cls.trim())) {\n return\n }\n \n@@ -31,7 +31,7 @@ export function addClass (...
2017-02-06T16:53:04
golang/go
58a8fdb6cf4a905fd3de44bf2dd87d14fbd38dfe
8d0bef7ffe5c471684f6a46f579fc7b87a46adb8
cmd/go: inject State parameter into `bug.runBug` This command modifies the call tree starting at `bug.runBug` to inject a `State` parameter to every function that is currently using the global `modload.LoaderState` variable. By explicilty passing a `State` parameter, we can begin to eliminate the usage of the global ...
[ { "path": "src/cmd/go/internal/bug/bug.go", "patch": "@@ -51,7 +51,7 @@ func runBug(ctx context.Context, cmd *base.Command, args []string) {\n \tbuf.WriteString(bugHeader)\n \tprintGoVersion(&buf)\n \tbuf.WriteString(\"### Does this issue reproduce with the latest release?\\n\\n\\n\")\n-\tprintEnvDetails(&b...
2025-10-02T03:01:55
denoland/deno
9c9bfef417b2e028d1e93e7716f1c6024d6acd1d
0c4479a2ea521e0fa19266e25a5f582df7c1ce4c
fix: add support for passing v8 flags on `deno check` (#30868)
[ { "path": "cli/args/flags.rs", "patch": "@@ -2215,6 +2215,7 @@ Unless --reload is specified, this command will not re-download already cached d\n )\n .arg(allow_import_arg())\n .arg(deny_import_arg())\n+ .arg(v8_flags_arg())\n }\n )\n }\n@@ -5098,6 +5099,7 @@ fn chec...
2025-09-30T21:26:10
mrdoob/three.js
c32e4c729a66ceef5896ee54a586ebdafe962d7d
af3a657147672f523da456d6b95c9eb524b0edbc
Examples: Fix shadows in outline demo. (#29565)
[ { "path": "examples/webgl_postprocessing_outline.html", "patch": "@@ -148,7 +148,7 @@\n \t\t\t\tscene.add( new THREE.AmbientLight( 0xaaaaaa, 0.6 ) );\n \n \t\t\t\tconst light = new THREE.DirectionalLight( 0xddffdd, 2 );\n-\t\t\t\tlight.position.set( 1, 1, 1 );\n+\t\t\t\tlight.position.set( 5, 5, 5 );\n \t\t...
2024-10-06T09:31:36
vuejs/vue
b80f8ba5ab74d46bdebc68589b97d281197e1144
068095579b1349e883f508fd69793886ea415d5a
only map ssr stack trace if error is indeed an Error
[ { "path": "src/server/create-bundle-renderer.js", "patch": "@@ -50,7 +50,9 @@ export function createBundleRendererCreator (createRenderer: () => Renderer) {\n runInVm(entry, files, context).then(app => {\n renderer.renderToString(app, cb)\n }).catch(err => {\n- rewriteErro...
2017-01-30T18:42:18
golang/go
4ad5585c2c2dc3e4387c10c297669c57449156c9
a5f55a441ef497d8e2a12610f4ec2bd32fdc04b2
runtime: fix _rt0_ppc64x_lib on aix CL 706395 refactored the ppc64 library entry point and missed some important aix-specific characteristics: - _rt0_ppc64x_lib should account for the function descriptor when getting the callback pointer. - _rt0_ppc64x_lib should only call _cgo_sys_thread_create when built as a c-ar...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -14,8 +14,14 @@\n // This is called using the host ABI. argc and argv arguments\n // should be in R3 and R4 respectively.\n TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n-\t// Convert to Go ABI, and Allocate argument storage for call to newosproc0.\n-\tSTACK...
2025-10-08T14:21:21
denoland/deno
0c4479a2ea521e0fa19266e25a5f582df7c1ce4c
1ab2268c0bcbf9b0468e0e36963f77f8c31c73ec
fix: do not purge lockfile when linking and the linked package's reqs have not changed (#30877)
[ { "path": "Cargo.lock", "patch": "@@ -1631,7 +1631,7 @@ dependencies = [\n \"deno_lint\",\n \"deno_lockfile\",\n \"deno_media_type\",\n- \"deno_npm 0.39.1\",\n+ \"deno_npm\",\n \"deno_npm_cache\",\n \"deno_npm_installer\",\n \"deno_package_json\",\n@@ -2335,7 +2335,7 @@ dependencies = [\n \"deno_fs\"...
2025-09-30T18:31:48
mrdoob/three.js
af3a657147672f523da456d6b95c9eb524b0edbc
3b49478017ca7f7ad879aca94129e5bf268864ed
WebGPURenderer: Logarithmic Depth Refinement (#29561) * 1. Improved wording on a TODO in AnalyticLightNode.js. 2. Removed unnecessary TODO in NodeMaterial.js. 3. Removed unnecessary ".add( 1 ).div( 2 )" from the log depth calculation and added more detail to the log depth comments in ViewportDepthNode.js. * Made ...
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -240,12 +240,6 @@ class NodeMaterial extends Material {\n \n \t\t\t\tif ( camera.isPerspectiveCamera ) {\n \n-\t\t\t\t\t// Note: normally we could use \"float( camera.near )\" and \"float( camera.far )\" for the near/far arguments, but\n-\t\t\t\t...
2024-10-06T02:55:29
denoland/deno
1ab2268c0bcbf9b0468e0e36963f77f8c31c73ec
992e998dfe436cdc9325232759af8be92f11739b
fix(fs): improve file stat checks (#30876)
[ { "path": "ext/fs/lib.rs", "patch": "@@ -166,8 +166,8 @@ deno_core::extension!(deno_fs,\n op_fs_file_sync_data_async,\n op_fs_file_sync_sync,\n op_fs_file_sync_async,\n- op_fs_file_stat_sync,\n- op_fs_file_stat_async,\n+ op_fs_file_stat_sync<P>,\n+ op_fs_file_stat_async<P>,\n op_...
2025-09-30T00:28:06
mrdoob/three.js
a7a4e22ee19187198ea38721bb0acc99b11ba2cc
25e6fd33e3c3bad7fc2516031802411241a4b665
TSL: Fix exponential float conversion (#29562)
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -55,9 +55,17 @@ const typeFromArray = new Map( [\n \n const toFloat = ( value ) => {\n \n-\tvalue = Number( value );\n+\tif ( /e/g.test( value ) ) {\n \n-\treturn value + ( value % 1 ? '' : '.0' );\n+\t\treturn String( value ).replace( /\\+/g, '' );\n+...
2024-10-05T21:01:55
denoland/deno
992e998dfe436cdc9325232759af8be92f11739b
24295d113e4e65ff4a8a7d0e1cc786b57e74b8fe
fix(fs): improve file utime checks (#30872) Improves the checks on FsFile.prototype.utime
[ { "path": "cli/rt/file_system.rs", "patch": "@@ -1254,6 +1254,12 @@ impl FileBackedVfsFile {\n \n #[async_trait::async_trait(?Send)]\n impl deno_io::fs::File for FileBackedVfsFile {\n+ fn maybe_path(&self) -> Option<&Path> {\n+ // ok because a vfs file will never be written to and this\n+ // method i...
2025-09-29T22:56:38
mrdoob/three.js
f22effae3913d4356dab246a077ac278813f505b
32f8b05fa5f086f1bf866a2cfc04a938ff8f87b3
FXAA: Improve quality. (#29524) * fxaa update * webGPU * FXAANode NDC fix * FXAANode ternary conditionals * FXAANode uniformArray * 10 > 6 samples, cleanup * parity between WebGL and WebGPU * formatting * unflipping WebGPU * move to object struct * cleanup * cleanup * parameter cont...
[ { "path": "examples/jsm/shaders/FXAAShader.js", "patch": "@@ -2,14 +2,6 @@ import {\n \tVector2\n } from 'three';\n \n-/**\n- * NVIDIA FXAA by Timothy Lottes\n- * https://developer.download.nvidia.com/assets/gamedev/files/sdk/11/FXAA_WhitePaper.pdf\n- * - WebGL port by @supereggbert\n- * http://www.glge.org...
2024-10-05T16:51:07
golang/go
a5f55a441ef497d8e2a12610f4ec2bd32fdc04b2
80876f4b42c807e0f90eab20a3e8a98ef95f2cb0
cmd/fix: add modernize and inline analyzers We ran 'go mod vendor' to pull in the newly used packages. Also, add a cmd/go script test that minimally exercises each analyzer, analogous to the cmd/vet test. For #75266 For #75267 For #71859 Change-Id: I334daea048e3d2f614a1788292a3175acf173932 Reviewed-on: https://go-r...
[ { "path": "src/cmd/fix/main.go", "patch": "@@ -22,10 +22,13 @@ package main\n import (\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/telemetry/counter\"\n+\t\"slices\"\n \n \t\"golang.org/x/tools/go/analysis\"\n \t\"golang.org/x/tools/go/analysis/passes/buildtag\"\n \t\"golang.org/x/tools/go/analysis/passe...
2025-10-10T19:49:53
vuejs/vue
d57f9428140993d8b04a13e54ef06e195d31f195
d14bd641430d936867a5d289d513a37917a0deb6
fixed typo on line 15 (#4829)
[ { "path": "src/core/vdom/helpers/normalize-children.js", "patch": "@@ -12,7 +12,7 @@ import VNode, { createTextVNode } from 'core/vdom/vnode'\n \n // 1. When the children contains components - because a functional component\n // may return an Array instead of a single root. In this case, just a simple\n-// ...
2017-02-01T15:10:37
mrdoob/three.js
97fd89d1a69d8b933c7f7fed5f44f43b14f2327c
88349e38abc12e8726716ba6900828e8e71facb4
Examples: Fix `webgpu_particles` example (#29555) * fix `webgpu_particles` example * cleanup * Update webgpu_instance_sprites.jpg
[ { "path": "src/materials/nodes/SpriteNodeMaterial.js", "patch": "@@ -2,7 +2,7 @@ import NodeMaterial from './NodeMaterial.js';\n import { cameraProjectionMatrix } from '../../nodes/accessors/Camera.js';\n import { materialRotation } from '../../nodes/accessors/MaterialNode.js';\n import { modelViewMatrix, m...
2024-10-05T04:55:20
denoland/deno
24295d113e4e65ff4a8a7d0e1cc786b57e74b8fe
ecfd6ae6fa0a069cbbe86f2310667f9ebcd0c113
fix(npm): do not error when packument version contains both bundleDependencies and bundledDependencies (#30875)
[ { "path": "Cargo.lock", "patch": "@@ -1631,7 +1631,7 @@ dependencies = [\n \"deno_lint\",\n \"deno_lockfile\",\n \"deno_media_type\",\n- \"deno_npm 0.39.0\",\n+ \"deno_npm 0.39.1\",\n \"deno_npm_cache\",\n \"deno_npm_installer\",\n \"deno_package_json\",\n@@ -2335,7 +2335,7 @@ dependencies = [\n \"de...
2025-09-29T21:45:42
vuejs/vue
e7083d09f1eec1d8853b65720f1a8c6e0f22836e
6cbee6b286f705a86bf5502c49f764fe2bd2d30e
fix scoped slots with dynamic slot names + force update for child components with scoped slots (fix #4779)
[ { "path": "flow/component.js", "patch": "@@ -104,6 +104,8 @@ declare interface Component {\n _b: (data: any, value: any, asProp?: boolean) => VNodeData;\n // check custom keyCode\n _k: (eventKeyCode: number, key: string, builtInAlias: number | Array<number> | void) => boolean;\n+ // resolve scoped sl...
2017-01-24T16:04:02
mrdoob/three.js
88349e38abc12e8726716ba6900828e8e71facb4
e395c1a1a07a8c7b32bf9d98bc9f4043952157a9
Examples: Fix node imports (#29556)
[ { "path": "examples/webgpu_compute_particles_snow.html", "patch": "@@ -25,7 +25,8 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { Fn, texture, vec3, pass, color, uint, screenUV, positionWorld, positionLocal, timerLocal, vec2, hash, gaussianBlur, instanceIndex, s...
2024-10-05T04:37:30
denoland/deno
3d7e939b072b08d998e0045c70439cadb6a8e76c
7aa22da667ab0aa3f233d33f56ba76b8d1a82941
feat(unstable): add permission broker (#30826) This commit adds "permission broker" functionality to the CLI. Once broker is active (using `DENO_PERMISSION_BROKER_PATH` env var), any time a permission is checked, instead of relying on the `--allow-*` flags, a message is sent to the broker that is responsible for gran...
[ { "path": "cli/main.rs", "patch": "@@ -562,6 +562,22 @@ pub(crate) fn unstable_exit_cb(feature: &str, api_name: &str) {\n deno_runtime::exit(70);\n }\n \n+#[cfg(not(unix))]\n+fn maybe_setup_permission_broker() {}\n+\n+#[cfg(unix)]\n+fn maybe_setup_permission_broker() {\n+ if let Ok(socket_path) = std::en...
2025-09-27T01:09:31
vuejs/vue
90a455c95ceb5d38e5a26b172e958232c25265d2
379695c9126fcc00ab7af1a663bd97f949b03ad1
fix replaced component root nodes losing parent scopeId (fix #4774)
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -260,9 +260,14 @@ export function createPatchFunction (backend) {\n // of going through the normal attribute patching process.\n function setScope (vnode) {\n let i\n- if (isDef(i = vnode.context) && isDef(i = i.$options._scopeId)) {\n- nodeOp...
2017-01-23T16:42:59
mrdoob/three.js
b249dc8ebb01d00276d1e34146e66f43cf06811c
d69e82b4a28a317c94104348825d5f270434a669
WebGLBackend: Fix type conversion in transform feedback (#29554)
[ { "path": "examples/webgpu_compute_geometry.html", "patch": "@@ -25,7 +25,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { vec3, vec4, storage, Fn, If, uniform, instanceIndex, objectWorldMatrix, color, screenUV, attribute } from 'three/tsl';\n+\t\t\timport { ve...
2024-10-05T03:09:49
denoland/deno
7aa22da667ab0aa3f233d33f56ba76b8d1a82941
2ec0768033b8ba082a46f9bb967c725e114332af
fix(cli/util): terminate watch file with sigint (#30635) Fix #30587 . I've implemented 2 tests. The first one checks when a program is terminated while the watcher is waiting for file changes and the user interrupts the process. The second one checks when the code is running: the SIGINT should be intercepted and the ...
[ { "path": "cli/util/file_watcher.rs", "patch": "@@ -15,6 +15,7 @@ use deno_core::futures::FutureExt;\n use deno_core::parking_lot::Mutex;\n use deno_lib::util::result::js_error_downcast_ref;\n use deno_runtime::fmt_errors::format_js_error;\n+use deno_signals;\n use log::info;\n use notify::Error as NotifyEr...
2025-09-27T00:23:32
mrdoob/three.js
d69e82b4a28a317c94104348825d5f270434a669
4c7aac71c5ee3ab9deba3de54e60ea19534f3c87
Examples: Fix shadow map enabled in `webgpu_instancing_morph` (#29553)
[ { "path": "examples/webgpu_instancing_morph.html", "patch": "@@ -140,6 +140,7 @@\n \t\t\t\trenderer.setAnimationLoop( animate );\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio );\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n+\t\t\t\trenderer.shadowMap.enabled = true;\n \t...
2024-10-05T02:09:17
vuejs/vue
769c4dc2032251323c8f61ad8eba2c26c615a618
b1e66b489144ec31ad3d4f3298e3809f00d6c4e6
ensure mutating extended constructor options does not affect parent (fix #4767)
[ { "path": "src/core/instance/state.js", "patch": "@@ -39,12 +39,14 @@ const isReservedProp = { key: 1, ref: 1, slot: 1 }\n \n function initProps (vm: Component, props: Object) {\n const propsData = vm.$options.propsData || {}\n- const keys = vm.$options._propKeys = Object.keys(props)\n+ // cache prop ke...
2017-01-22T18:01:00
golang/go
1099436f1b63560a0587dd4c5814edd13f80e577
41f5659347f9498ce81911032bb46537d923bdd7
go/types, types2: change and enforce lifecycle of Named.fromRHS and Named.underlying fields A type definition or alias declaration consists of a type name (LHS) which is bound to a type expression (RHS) by the declaration. This CL consistently uses the fromRHS fields of Named and Alias types to represent that RHS typ...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -476,7 +476,7 @@ func (check *Checker) isImportedConstraint(typ Type) bool {\n \tif named == nil || named.obj.pkg == check.pkg || named.obj.pkg == nil {\n \t\treturn false\n \t}\n-\tu, _ := named.under().(*Interface)\n+\tu, _ := named.Underly...
2025-08-20T21:30:26
denoland/deno
0d73ac088a9055c1c023cc0c5776159c0aa0ea27
3b037dd00f15b9f3ef0387e242e1927f7db6cd2e
fix(ext/node): setTimeout promisified to handle abort signal (#30855) Fixes #30839
[ { "path": "ext/node/polyfills/internal/validators.mjs", "patch": "@@ -98,15 +98,8 @@ const validateInteger = hideStackFrames(\n },\n );\n \n-/**\n- * @param {unknown} value\n- * @param {string} name\n- * @param {{\n- * allowArray?: boolean,\n- * allowFunction?: boolean,\n- * nullable?: boolean\n- * ...
2025-09-26T15:12:15
mrdoob/three.js
5f96ed4875850cb6b7891b0783503485f8aa5519
ea866888ca59c8138a1ea67a33ff357da7f92d0f
NodeMaterial: Introduce `.geometryNode` and jelly example (#29551) * fix `compute()` during `render()` call * NodeMaterial: Introduce `.geometryNode` * update compute geometry example * rename jellyNode -> jelly * cleanup
[ { "path": "examples/webgpu_compute_geometry.html", "patch": "@@ -25,83 +25,139 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { vec3, cos, sin, mat3, storage, Fn, instanceIndex, timerLocal } from 'three/tsl';\n+\t\t\timport { vec3, vec4, storage, Fn, If, uniform,...
2024-10-05T00:37:22
vuejs/vue
938fa4efcc9bf6232bf5ace5920398dc2e128ac9
9e38abca3e6ababe0b06dfc9838a90e06ff5ea88
fix(sfc): component contains '<' only (#4753) * fix(sfc): component contains '<' only * update based on reviews
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -123,7 +123,7 @@ export function parseHTML (html, options) {\n }\n \n let text, rest, next\n- if (textEnd > 0) {\n+ if (textEnd >= 0) {\n rest = html.slice(textEnd)\n while (\n !endTag.test(rest) &&"...
2017-01-20T03:23:20
golang/go
27f9a6705c700d9075d4651cf9cff9cabbe4a47e
b68cebd809f1335b4504837337f5702406720432
runtime: increase repeat count for alloc test To make sure a single spurious alloc doesn't flake the test. Fixes #75858 Change-Id: I055b37ad5668459bfa7ab1dac97025c997c68f1a Reviewed-on: https://go-review.googlesource.com/c/go/+/712201 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou...
[ { "path": "src/runtime/iface_test.go", "patch": "@@ -60,7 +60,7 @@ func TestCmpIfaceConcreteAlloc(t *testing.T) {\n \t\tt.Skip(\"skipping on non-gc compiler\")\n \t}\n \n-\tn := testing.AllocsPerRun(1, func() {\n+\tn := testing.AllocsPerRun(100, func() {\n \t\t_ = e == ts\n \t\t_ = i1 == ts\n \t\t_ = e == 1...
2025-10-15T20:28:15
denoland/deno
ebcda43eb6f733764229a190270032aa4f5a901f
11fb3b0818bbeda72456cec7a365c621924967c8
fix(tunnel): rename `--connected` to `--tunnel` and better handle `DENO_DEPLOY_TOKEN` env variable (#30786) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/args/flags.rs", "patch": "@@ -755,7 +755,7 @@ pub struct Flags {\n pub eszip: bool,\n pub node_conditions: Vec<String>,\n pub preload: Vec<String>,\n- pub connected: bool,\n+ pub tunnel: bool,\n }\n \n #[derive(Clone, Debug, Eq, PartialEq, Default, Serialize, Deserialize)]\n@@ -3370,7...
2025-09-25T21:30:13
mrdoob/three.js
b13d1b1c34437f2ab4f64ee04c39188fbac620c8
251354316499ca894cbe0bc2315b1b43339f3be4
KTX2Exporter: Fix metadata, add example (#29541)
[ { "path": "examples/files.json", "patch": "@@ -503,6 +503,7 @@\n \t\t\"misc_exporter_stl\",\n \t\t\"misc_exporter_usdz\",\n \t\t\"misc_exporter_exr\",\n+\t\t\"misc_exporter_ktx2\",\n \t\t\"misc_lookat\"\n \t],\n \t\"css2d\": [", "additions": 1, "deletions": 0, "language": "JSON" }, { "pa...
2024-10-03T21:43:38
vuejs/vue
9e38abca3e6ababe0b06dfc9838a90e06ff5ea88
466e849c85e21521c9ede360f44b0b72be2acb22
Support select multiple binding (fix #4755) (#4756) * support select multiple binding * improve select onchange handle * update style
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -163,13 +163,14 @@ function genSelect (\n }\n \n const number = modifiers && modifiers.number\n- const assignment = `Array.prototype.filter` +\n+ const selectedVal = `Array.prototype.filter` +\n `.call($event.target.options,f...
2017-01-19T18:36:19
denoland/deno
11fb3b0818bbeda72456cec7a365c621924967c8
3871c99eaae6a4862d63ce0494a280a3a758f579
fix: show --permission-set help only once (#30844) Closes https://github.com/denoland/deno/issues/30842
[ { "path": "cli/args/flags.rs", "patch": "@@ -3916,7 +3916,8 @@ fn permission_args(app: Command, requires: Option<&'static str>) -> Command {\n .num_args(0..=1)\n .require_equals(true)\n .default_missing_value(\"\")\n- .short('P');\n+ .short('P')\n+ .h...
2025-09-25T13:37:08
golang/go
b68cebd809f1335b4504837337f5702406720432
f1fed742ebbe781611c9f78398d9fa233ad0a8e6
net/http/httptest: record failed ResponseWriter writes CL 709335 changed ResponseWriter.Write to return an error when trying to write to a response with a status code which doesn't permit a body, such as 304. Continue to return an error, but still record the write in ResponseWriter.Body. This maintains the documented...
[ { "path": "src/net/http/httptest/recorder.go", "patch": "@@ -105,28 +105,28 @@ func (rw *ResponseRecorder) writeHeader(b []byte, str string) {\n // Write implements http.ResponseWriter. The data in buf is written to\n // rw.Body, if not nil.\n func (rw *ResponseRecorder) Write(buf []byte) (int, error) {\n-\...
2025-10-14T18:25:29
mrdoob/three.js
47fb8fe0859d570f9734eca4f6a3e4345ecbc3c4
1e67d7ed3eb8429d9860182abe5a20cfd979e098
WebGPURenderer: Fix premultiplied alpha with clear colors. (#29538)
[ { "path": "src/renderers/common/Background.js", "patch": "@@ -111,15 +111,25 @@ class Background extends DataMap {\n \n \t\tif ( renderer.autoClear === true || forceClear === true ) {\n \n-\t\t\t_clearColor.multiplyScalar( _clearColor.a );\n-\n \t\t\tconst clearColorValue = renderContext.clearColorValue;\n ...
2024-10-02T10:22:00
vuejs/vue
458671b732c709999cbd1f0fa37d38215cab839b
d01104e1242c870de12592da88d2c4ffd0c9c0c2
handle include/exclude changing to non-valid types (fix #4749)
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -12,9 +12,10 @@ function getComponentName (opts: ?VNodeComponentOptions): ?string {\n function matches (pattern: string | RegExp, name: string): boolean {\n if (typeof pattern === 'string') {\n return pattern.split(',').indexOf(name) > -1\n- ...
2017-01-19T15:13:55
mrdoob/three.js
1e67d7ed3eb8429d9860182abe5a20cfd979e098
cf28ac50fa5fb816d84bfbbf8515c4abea818899
ColorManagement: Fix rendering to linear spaces (#29543) * ColorManagement: Fix support for linear output configuration * ColorSpaces: Fix support for linear P3 output configuration
[ { "path": "examples/jsm/math/ColorSpaces.js", "patch": "@@ -44,7 +44,8 @@ export const LinearDisplayP3ColorSpaceImpl = {\n \ttoXYZ: LINEAR_DISPLAY_P3_TO_XYZ,\n \tfromXYZ: XYZ_TO_LINEAR_DISPLAY_P3,\n \tluminanceCoefficients: P3_LUMINANCE_COEFFICIENTS,\n-\tworkingColorSpaceConfig: { unpackColorSpace: DisplayP...
2024-10-02T08:17:15
denoland/deno
ade24896b2f7abe001198140a475ac38e9e13bd5
02787156398518fdac51b1f633a8367f92a7d253
fix(ext/node): allow ATTACH DATABASE with `--allow-all` (#30763)
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -275,13 +275,20 @@ fn open_db(\n allow_extension: bool,\n ) -> Result<rusqlite::Connection, SqliteError> {\n let perms = state.borrow::<PermissionsContainer>();\n+ let disable_attach = perms\n+ .check_has_all_permissions(Path::new(location))\...
2025-09-25T09:06:50
golang/go
f1fed742ebbe781611c9f78398d9fa233ad0a8e6
0984dcd7572a90a1bd21bec98bd9c73fdcf983ab
cmd: fix three printf problems reported by newest vet Change-Id: Id70985d217c940eb022dbc95bfaa20373672512c Reviewed-on: https://go-review.googlesource.com/c/go/+/712220 Auto-Submit: Alan Donovan <adonovan@google.com> TryBot-Bypass: Alan Donovan <adonovan@google.com> Commit-Queue: Alan Donovan <adonovan@google.com> Rev...
[ { "path": "src/cmd/go/internal/modload/vendor.go", "patch": "@@ -188,7 +188,7 @@ func checkVendorConsistency(loaderstate *State, indexes []*modFileIndex, modFile\n \t\t\t\t\t// However, we can at least detect a version mismatch if packages were\n \t\t\t\t\t// vendored from a non-matching version.\n \t\t\t\t...
2025-10-15T20:28:03
mrdoob/three.js
cf28ac50fa5fb816d84bfbbf8515c4abea818899
35127e2517c5d0ffe374539abeeabf611d429ad8
Fix `renderer.info.render` data if use `BatchedMesh._multiDraw` (#29532) * Fix multidraw render info * WebGLBufferRender fix
[ { "path": "src/renderers/webgl-fallback/WebGLBufferRenderer.js", "patch": "@@ -120,18 +120,13 @@ class WebGLBufferRenderer {\n \t\t\t}\n \n \t\t\tlet elementCount = 0;\n-\n \t\t\tfor ( let i = 0; i < drawCount; i ++ ) {\n \n-\t\t\t\telementCount += counts[ i ];\n+\t\t\t\telementCount += counts[ i ] * primco...
2024-10-01T11:51:03
denoland/deno
dcc94741759d54fb73d9b6ececfd05f7cff62ab7
e7f179305baad4ee89680ff0ecea3eb6c8628be8
fix(ext/node): `fs.readFile`, `fs.readFileSync` assert encoding (#30830) Towards #29972 - Validates the encoding of `readFile`. - Fixes the handling of `binary` encoding where previously it returns Buffer. On Node.js, Buffer is only returned when the encoding is not specified. - Allows [parallel/test-fs-read-file-ass...
[ { "path": "ext/node/polyfills/_fs/_fs_common.ts", "patch": "@@ -16,6 +16,7 @@ import {\n TextEncodings,\n } from \"ext:deno_node/_utils.ts\";\n import { type Buffer } from \"node:buffer\";\n+import { assertEncoding } from \"ext:deno_node/internal/fs/utils.mjs\";\n \n export type CallbackWithError = (err: ...
2025-09-24T13:32:41
golang/go
0984dcd7572a90a1bd21bec98bd9c73fdcf983ab
31f82877e85a7e6c70b0104e704abfed622e345f
cmd/compile: fix an error in comments Remove the redundant only. Change-Id: I9cf2d84ae080a567ad45a2d0ef002c7c89395479 Reviewed-on: https://go-review.googlesource.com/c/go/+/711960 Auto-Submit: Robert Findley <rfindley@google.com> Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Robert Findley <rfindley@goo...
[ { "path": "src/cmd/compile/internal/types2/instantiate.go", "patch": "@@ -83,7 +83,7 @@ func Instantiate(ctxt *Context, orig Type, targs []Type, validate bool) (Type, e\n //\n // For Named types the resulting instance may be unexpanded.\n //\n-// check may be nil (when not type-checking syntax); pos is used...
2025-10-15T02:27:16
vuejs/vue
55c87aa2c5fbb40f94d8b1cc0f14bf07cf5a1885
1ec501ebbfe7cc51e6f84d3143c6e21eebb34699
fix multi-select test case bug detection in IE9
[ { "path": "test/unit/features/directives/model-select.spec.js", "patch": "@@ -6,10 +6,11 @@ import { looseEqual } from 'shared/util'\n function hasMultiSelectBug () {\n var s = document.createElement('select')\n s.setAttribute('multiple', '')\n- s.innerHTML = '<option>1</option>'\n- s.options[0].selec...
2017-01-16T23:39:06
mrdoob/three.js
fb5406d850eafb14c8f0b5d5b75b0a62a24ba131
7ede9aa9866b654333a4abe23ef3e5bd3731bf64
WebGPURenderer: Ignore diagnostic() method in Deno (#29522) * Ignore `diagnostic()` method in deno * fix deno webgpu diagnostic * Ignore `diagnostic()` method in deno
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -152,7 +152,7 @@ if ( /Windows/g.test( navigator.userAgent ) ) {\n \n let diagnostics = '';\n \n-if ( /Firefox/g.test( navigator.userAgent ) !== true ) {\n+if ( /Firefox|Deno/g.test( navigator.userAgent ) !== true ) {\n \n \tdiagnostics...
2024-09-30T09:26:49
denoland/deno
8a0990ccd37bafd8768176ca64b906ba2da2d822
d82f509c41d5b9a6005dab255eb04cc3d742a383
fix: reject running `.bat` and `.cmd` directly on windows (#30818)
[ { "path": "ext/process/lib.rs", "patch": "@@ -752,6 +752,21 @@ fn compute_run_cmd_and_check_permissions(\n command: arg_cmd.to_string(),\n error: Box::new(e),\n })?;\n+ #[cfg(windows)]\n+ if let Some(ext) = cmd.extension()\n+ && (ext == \"bat\" || ext == \"cmd\")\n+ {\n+ return Err(...
2025-09-24T05:05:37
golang/go
31f82877e85a7e6c70b0104e704abfed622e345f
6346349f5629a5767d2cd132f01092857a570bd2
go/types, types2: fix misleading internal comment See also the discussion in #75885. Change-Id: Ieb964ea6ee51600c0c08ecba0af50a1deb209a4d Reviewed-on: https://go-review.googlesource.com/c/go/+/712141 Reviewed-by: Mark Freeman <markfreeman@google.com> Auto-Submit: Robert Griesemer <gri@google.com> TryBot-Bypass: Rober...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -575,11 +575,8 @@ func (check *Checker) typeDecl(obj *TypeName, tdecl *syntax.TypeDecl, def *TypeN\n \t\tnamed.underlying = Typ[Invalid]\n \t}\n \n-\t// Disallow a lone type parameter as the RHS of a type declaration (go.dev/issue/45639).\n-\...
2025-10-15T18:27:17
vuejs/vue
1ec501ebbfe7cc51e6f84d3143c6e21eebb34699
85d6f115bb9adbc7fbba57d4fbb445daaad79b52
fix raf bind in IE9
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -28,7 +28,10 @@ if (hasTransition) {\n }\n \n // binding to window is necessary to make hot reload work in IE in strict mode\n-const raf = (inBrowser && window.requestAnimationFrame.bind(window)) || setTimeout\n+const raf = inBrowser && ...
2017-01-16T23:10:53
mrdoob/three.js
7ede9aa9866b654333a4abe23ef3e5bd3731bf64
efb7510951afff90c90fd2c969675285e374b0be
BatchedMesh: Add `optimize()`. (#29527) * Add support for "deleteGeometry" * Add docs, fix mistype * BatchedMesh: Add an "optimize" function * Fix index offset * Add docs * Update BatchedMesh.html * Update BatchedMesh.html
[ { "path": "docs/api/en/objects/BatchedMesh.html", "patch": "@@ -301,6 +301,14 @@ <h3>\n \t\t\tCalling this will change all instances that are rendering that geometry.\n \t\t</p>\n \n+\n+\t\t<h3>\n+\t\t\t[method:this optimize]()\n+\t\t</h3>\n+\t\t<p>\n+\t\t\tRepacks the sub geometries in [name] to remove any...
2024-09-30T09:19:43
denoland/deno
e7e1f1c13ac09c415916cb4bce0f13635a484cc6
c7379b7c947ba41712ef3870578efd68bbfdd82c
fix(bundle): reload html entrypoints with --watch (#30790) Fixes #30769.
[ { "path": "cli/tools/bundle/html.rs", "patch": "@@ -135,6 +135,7 @@ fn collect_scripts(doc: &str) -> Result<Vec<Script>, AnyError> {\n #[derive(Debug, Clone)]\n pub struct HtmlEntrypoint {\n pub path: PathBuf,\n+ pub canonical_path: PathBuf,\n pub scripts: Vec<Script>,\n pub temp_module: String,\n ...
2025-09-24T00:27:28
golang/go
6346349f5629a5767d2cd132f01092857a570bd2
284379cdfcbd6971f46616a3c66bf19e467fdf0d
cmd/compile: replace angle brackets with square Caused Markdown rendering error on https://go.dev/src/cmd/compile/README in macOS (15.6.1) Safari (18.6). Change-Id: Id71436d9a7bc7e461e522500d66df5dda7cd9f7f GitHub-Last-Rev: 4e4447e163ac65e6c394807ec4874bc5ca26bb32 GitHub-Pull-Request: golang/go#75549 Reviewed-on: htt...
[ { "path": "src/cmd/compile/README.md", "patch": "@@ -289,9 +289,9 @@ dependencies, so is not suitable for distributed build systems.)\n ```\n After that, your edit/compile/test cycle can be similar to:\n ```\n- <... make edits to cmd/compile source ...>\n+ [... make edits to cmd/compile source ...]\...
2025-09-20T21:36:14
vuejs/vue
85d6f115bb9adbc7fbba57d4fbb445daaad79b52
c66991d961469f70b9649813e8bf5eb2f231fead
ensure instance-unique keys for <transition> child nodes during pending node removal (fix #4702)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -127,9 +127,13 @@ export default {\n return placeholder(h, rawChild)\n }\n \n- const key = child.key = child.key == null || child.isStatic\n- ? `__v${child.tag + this._uid}__`\n- : child.key\n+ // ensure a...
2017-01-16T23:00:34
mrdoob/three.js
ccfcc1e1a3cdde72d6a659b69813f9dc693ae201
01a69ef5bf074b1031e486438574d00d388e8869
BatchedMesh: Add deleteGeometry function (#29523) * Add support for "deleteGeometry" * Add docs, fix mistype
[ { "path": "docs/api/en/objects/BatchedMesh.html", "patch": "@@ -260,7 +260,13 @@ <h3>\n \t\t<p>\n \t\t\tAdds the given geometry to the [name] and returns the associated geometry id referring to it to be used in other functions.\n \t\t</p>\n-\n+\t\t<h3>\n+\t\t\t[method:Integer deleteGeometry]( [param:Integer...
2024-09-29T19:10:39
denoland/deno
c7379b7c947ba41712ef3870578efd68bbfdd82c
34bbc12da9df2d6b57868ffe2950414b01a521cb
fix(cli/bundle): respect --frozen flag deno bundle command (#30825) fixes: https://github.com/denoland/deno/issues/30713
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -104,13 +104,13 @@ pub async fn prepare_inputs(\n }\n \n if html_paths.is_empty() {\n- let _ = plugin_handler\n+ plugin_handler\n .prepare_module_load(&resolved_entrypoints)\n- .await;\n+ .await?;\n \n let roots =\n resolv...
2025-09-23T21:50:04
golang/go
519ae514abace4551e0f99bf7da349a894b399b9
b5a29cca486d26651e249c8395bc2df4a2d92d17
cmd/compile: eliminate bound check for slices of the same length If two slices start out with the same length and decrease in length by the same amount on each round of the loop (or in the if block), then we think their length are always equal. For example: if len(a) != len(b) { return } for len(a) >= 4 { a = a[4:...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -1240,6 +1240,173 @@ func (ft *factsTable) cleanup(f *Func) {\n \tf.Cache.freeBoolSlice(ft.recurseCheck)\n }\n \n+// addSlicesOfSameLen finds the slices that are in the same block and whose Op\n+// is OpPhi and always have the same length, then...
2025-08-26T10:23:31
vuejs/vue
c66991d961469f70b9649813e8bf5eb2f231fead
a23b22e91d9c26552b40939d2396bd2330225412
Fix hot reload in IE in strict mode (#4725) Following a fix for v1 at #4274 for issue #4465
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -27,7 +27,8 @@ if (hasTransition) {\n }\n }\n \n-const raf = (inBrowser && window.requestAnimationFrame) || setTimeout\n+// binding to window is necessary to make hot reload work in IE in strict mode\n+const raf = (inBrowser && window....
2017-01-16T21:45:24
mrdoob/three.js
9af0a09049f81f7b355fd4facb7fb16cd9e35ced
e5f9e0031beb4bc4d61ccdd4cd54d5f1c4e69c33
Examples: Fix shadow map enabled in `webgpu_shadowmap` (#29520)
[ { "path": "examples/webgpu_shadowmap.html", "patch": "@@ -174,6 +174,7 @@\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio );\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n \t\t\t\trenderer.setAnimationLoop( animate );\n+\t\t\t\trenderer.shadowMap.enabled = true;\n \t\t\t\tr...
2024-09-28T14:13:53
denoland/deno
34bbc12da9df2d6b57868ffe2950414b01a521cb
53701b4926f130a3f3f8464e7dfb683d4d6036f8
fix(dts): add `Uint8Array` base64/hex methods (#30686) These are enabled by default in V8 14.0. Closes #25051.
[ { "path": "cli/build.rs", "patch": "@@ -115,11 +115,13 @@ fn compress_decls(out_dir: &Path) {\n \"lib.esnext.d.ts\",\n \"lib.esnext.decorators.d.ts\",\n \"lib.esnext.disposable.d.ts\",\n+ \"lib.esnext.error.d.ts\",\n \"lib.esnext.float16.d.ts\",\n \"lib.esnext.full.d.ts\",\n \"lib...
2025-09-23T17:55:29
golang/go
b5a29cca486d26651e249c8395bc2df4a2d92d17
bb5eb5171535b9080055fee5996bd55398202124
cmd/distpack: add fix tool to inventory (To be consistent with change to build.go in CL 700795.) For #71859 Change-Id: I8caad28b7e5a2657f21b60a72899daecf0b2c324 Reviewed-on: https://go-review.googlesource.com/c/go/+/712180 Auto-Submit: Alan Donovan <adonovan@google.com> Reviewed-by: Michael Matloob <matloob@google.c...
[ { "path": "src/cmd/distpack/pack.go", "patch": "@@ -172,7 +172,7 @@ func main() {\n \t\t\tdefault:\n \t\t\t\treturn false\n \t\t\t// Keep in sync with toolsIncludedInDistpack in cmd/dist/build.go.\n-\t\t\tcase \"asm\", \"cgo\", \"compile\", \"cover\", \"link\", \"preprofile\", \"vet\":\n+\t\t\tcase \"asm\",...
2025-10-15T18:39:53
vuejs/vue
fe6a26bb9c689acba0ee2b5619c17eeb9426a871
ee6ad6af0e7d39f7f7b22bb5931045d748e03ca7
keep-alive: prune cache on include/exclude change, also avoid firing deactivate for already inactive components (fix #4633)
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -5,6 +5,10 @@ import { getFirstComponentChild } from 'core/vdom/helpers/index'\n \n const patternTypes = [String, RegExp]\n \n+function getComponentName (opts: ?VNodeComponentOptions): ?string {\n+ return opts && (opts.Ctor.options.name || opts.ta...
2017-01-13T23:54:35
mrdoob/three.js
a646cbc32b40d2ae63fa7c065d0f9b7e0c4300cb
86b8447f70535ee21d624f5bf3244be5b6880053
WebGPURenderer: Fixed shadows not rendering correctly with `logarithmicDepthBuffer` (#29447) * Fixed shadows not rendering correctly when logarithmicDepthBuffer = true (issue #29200) * Further improvements to the logarithmic depth buffer shadows bugfix: 1) Disabled logarithmic depth buffer for orthographic cameras...
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -10,7 +10,7 @@ import { normalLocal } from '../../nodes/accessors/Normal.js';\n import { instance } from '../../nodes/accessors/InstanceNode.js';\n import { batch } from '../../nodes/accessors/BatchNode.js';\n import { materialReference } from '....
2024-09-28T00:37:30
denoland/deno
53701b4926f130a3f3f8464e7dfb683d4d6036f8
3e9c60a32a028dd8896075d4bf73bf1f2c90b523
fix(dts): update stream type declarations to use `Promise<void>` (#30820) This updates the type declarations for stream-related interfaces to use `Promise<void>` instead of `Promise<undefined>`, aligning with TypeScript's official type declarations.
[ { "path": "cli/tsc/dts/lib.deno_web.d.ts", "patch": "@@ -737,7 +737,7 @@ type ReadableStreamController<T> =\n \n /** @category Streams */\n interface ReadableStreamGenericReader {\n- readonly closed: Promise<undefined>;\n+ readonly closed: Promise<void>;\n cancel(reason?: any): Promise<void>;\n }\n \n@@...
2025-09-23T16:06:28
mrdoob/three.js
ac963e25c6ddf9ea1f5f070e90e78529db96f701
f9480de02c9aba7125d079d0a33b7c3db8033f22
WebGPURenderer: Fix NodeLibrary Logic for Minified Builds (#29501) * WebGPURenderer: Fix NodeLibrary after minification * add warning * fix missing materials * fix depthmaterial, thanks e2e tests * some minifier moves type as property
[ { "path": "examples/jsm/lines/LineMaterial.js", "patch": "@@ -405,12 +405,17 @@ ShaderLib[ 'line' ] = {\n \n class LineMaterial extends ShaderMaterial {\n \n+\n+\tstatic get type() {\n+\n+\t\treturn 'LineMaterial';\n+\n+\t}\n+\n \tconstructor( parameters ) {\n \n \t\tsuper( {\n \n-\t\t\ttype: 'LineMaterial'...
2024-09-27T16:06:37
golang/go
bb5eb5171535b9080055fee5996bd55398202124
5c9a26c7f882dba5bfe10036815bcb239dd9b7e8
runtime/pprof: fix errors in pprof_test I think the original depth-1 argument to allocDeep was correct. Reverted that, and also the change to maxSkip in mprof.go, which was also incorrect. I think before we were usually passing accidentally in the loop over matched stacks when we really should usually have been passin...
[ { "path": "src/runtime/mprof.go", "patch": "@@ -49,7 +49,7 @@ const (\n \t// desired maximum number of frames after expansion.\n \t// This should be at least as large as the largest skip value\n \t// used for profiling; otherwise stacks may be truncated inconsistently\n-\tmaxSkip = 8\n+\tmaxSkip = 6\n \n \t...
2025-10-15T16:52:47
vuejs/vue
ee6ad6af0e7d39f7f7b22bb5931045d748e03ca7
1a1952ba81cf3580660122ff14254c10c3fda191
fix v-on .once on multiple elements (fix #4655)
[ { "path": "src/platforms/web/runtime/modules/events.js", "patch": "@@ -4,11 +4,17 @@ import { updateListeners } from 'core/vdom/helpers/index'\n \n let target: HTMLElement\n \n-function add (event: string, handler: Function, once: boolean, capture: boolean) {\n+function add (\n+ event: string,\n+ handler:...
2017-01-13T17:14:23
mrdoob/three.js
6cff00a99fb915c2934bcdab2201885fff3046bd
5b0e2813654909aa0c6c1e559ca48574480c93b4
TransformControls: Fix `dispose()`. (#29512)
[ { "path": "examples/jsm/controls/TransformControls.js", "patch": "@@ -536,12 +536,7 @@ class TransformControls extends Controls {\n \n \t\tthis.disconnect();\n \n-\t\tthis.traverse( function ( child ) {\n-\n-\t\t\tif ( child.geometry ) child.geometry.dispose();\n-\t\t\tif ( child.material ) child.material.d...
2024-09-27T09:48:30
denoland/deno
2ad17f7c7c53e505914702ec6758f6bef311345e
9c04b88b0a52636239a5da757a409b1ac41d7535
fix(ext/node): crypto `Cipheriv` and `Decipheriv` base64 encoding (#30806) Fixes #30722 The root cause comes from the `.update()` and `.final()` methods of `Cipheriv` and `Decipheriv`, which internally calls `.toString()` method of Buffer. Doing so adds padding to make the output length a multiple of 4, which we don'...
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -52,6 +52,9 @@ import {\n isArrayBufferView,\n } from \"ext:deno_node/internal/util/types.ts\";\n import { ERR_CRYPTO_INVALID_STATE } from \"ext:deno_node/internal/errors.ts\";\n+import { StringDecoder } from \"node:string_decoder\";\n...
2025-09-23T09:38:06
vuejs/vue
1a1952ba81cf3580660122ff14254c10c3fda191
08bd81f8c0bd39816b5b509c5132a12188b412d7
handle single -> array & array -> single event handler patching (fix #4650)
[ { "path": "src/core/vdom/helpers/update-listeners.js", "patch": "@@ -9,10 +9,12 @@ export function updateListeners (\n remove: Function,\n vm: Component\n ) {\n- let name, cur, old, fn, event, capture, once\n+ let name, cur, old, curIsArray, oldIsArray, fn, event, capture, once\n for (name in on) {\...
2017-01-13T16:49:49
golang/go
61d1ff61adb3febdbae21da7721b7cd5389efe4a
5b29875c8eb1002c4509eb9ebd9a4d32cfd7d494
cmd/compile: use block starting position for phi line number Fixes #75615 Change-Id: I2c7f0ea1203e8a97749c9f780c29a66050f0159d Reviewed-on: https://go-review.googlesource.com/c/go/+/710355 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-sco...
[ { "path": "src/cmd/compile/internal/ssa/stmtlines_test.go", "patch": "@@ -137,17 +137,17 @@ func TestStmtLines(t *testing.T) {\n \t\t}\n \t}\n \n-\tvar m int\n+\tvar m float64\n \tif runtime.GOARCH == \"amd64\" {\n-\t\tm = 1 // > 99% obtained on amd64, no backsliding\n+\t\tm = 0.011 // > 98.9% obtained on a...
2025-10-08T22:33:19
mrdoob/three.js
cd250e295ba3f2368677ee5399f9c1a386bd9772
1a1e0a45b2e7b331f04e567821a1b30eb0d032ab
Global: Move some WebGPU modules from core to addons. (#29511) * Global: Move some WebGPU modules from core to addons. * Examples: Fixing some imports. * More fixes. * More clean up. * E2E: Add example to exception list.
[ { "path": "examples/jsm/tsl/display/AfterImageNode.js", "patch": "@@ -1,17 +1,5 @@\n-import TempNode from '../core/TempNode.js';\n-import { nodeObject, Fn, float, vec4 } from '../tsl/TSLBase.js';\n-import { NodeUpdateType } from '../core/constants.js';\n-import { uv } from '../accessors/UV.js';\n-import { t...
2024-09-27T09:42:56
denoland/deno
9c04b88b0a52636239a5da757a409b1ac41d7535
3e01e4ba55c6dfa5f9cfe2f932dc6f8f00b302e9
fix(lint): skip module graph validation (#30815) We should just skip module graph validation here. Someone can verify it via other sub commands and this is only used for `no-slow-types`.
[ { "path": "cli/graph_util.rs", "patch": "@@ -385,6 +385,12 @@ pub struct CreateGraphOptions<'a> {\n pub npm_caching: NpmCachingStrategy,\n }\n \n+pub struct CreatePublishGraphOptions<'a> {\n+ pub packages: &'a [JsrPackageConfig],\n+ pub build_fast_check_graph: bool,\n+ pub validate_graph: bool,\n+}\n+\...
2025-09-23T00:57:54
vuejs/vue
08bd81f8c0bd39816b5b509c5132a12188b412d7
f4f3a015309ce361aa9ccc675ff2bb6ad1f36dd6
fix #4530 with smaller change scope
[ { "path": "flow/compiler.js", "patch": "@@ -6,7 +6,7 @@ declare type CompilerOptions = {\n directives?: { [key: string]: Function }; // platform specific directives\n isUnaryTag?: (tag: string) => ?boolean; // check if a tag is unary for the platform\n isReservedTag?: (tag: string) => ?boolean; // che...
2017-01-13T02:41:23