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
bf8288baa50d084580ee003b08f7b2421773ba94
97ae158610f8b2421929fe360bf5c334a70d7c55
fix(ext/fetch): mark unix and vsock proxy conns as proxy (#30699) This means that requests will have an absolute path specified.
[ { "path": "ext/fetch/proxy.rs", "patch": "@@ -925,13 +925,13 @@ where\n }\n }\n #[cfg(not(windows))]\n- Proxied::Unix(_) => Connected::new(),\n+ Proxied::Unix(_) => Connected::new().proxy(true),\n #[cfg(any(\n target_os = \"android\",\n target_os = \"linux...
2025-09-12T13:53:34
golang/go
d945600d060e7a0b7c5e72ac606a017d105a17f3
d4830c61301a32ad9373bc30c5fd6196c3567f61
cmd/gofmt: change -d to exit 1 if diffs exist When using the -d flag, set the exit code to 1 if there is a diff. Fixes #46289 Change-Id: I802e8ccd1798ed7f4448696bec4bc82835ec71a2 GitHub-Last-Rev: db2207fba9a8f7a2f50138ec1f086ac6a74e1b10 GitHub-Pull-Request: golang/go#75649 Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/gofmt/gofmt.go", "patch": "@@ -41,6 +41,9 @@ var (\n \n \t// debugging\n \tcpuprofile = flag.String(\"cpuprofile\", \"\", \"write cpu profile to this file\")\n+\n+\t// errors\n+\terrFormattingDiffers = fmt.Errorf(\"formatting differs from gofmt's\")\n )\n \n // Keep these in sync with go/...
2025-10-06T12:47:34
mrdoob/three.js
b5209aa70b1e6346e9f91647f2da139cf8cd1adb
e20e8ae115e94aabdc17574072ffd940441fbdf9
WebGPURenderer: Add support for VSM. (#29225) * WebGPURenderer: Add support for VSM. * AnalyticLightNode: Clean up. * AnalyticLightNode: Clean up. * fix `viewportCoordinate` in WebGLBackend * Create webgpu_shadowmap_vsm.jpg --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/files.json", "patch": "@@ -399,6 +399,7 @@\n \t\t\"webgpu_shadertoy\",\n \t\t\"webgpu_shadowmap\",\n \t\t\"webgpu_shadowmap_opacity\",\n+\t\t\"webgpu_shadowmap_vsm\",\n \t\t\"webgpu_skinning\",\n \t\t\"webgpu_skinning_instancing\",\n \t\t\"webgpu_skinning_points\",", "additions": 1, ...
2024-09-05T09:00:07
vuejs/vue
0eb8cdc7f7cff484ebe0b12a781a4ab020f82b4a
bc140de48b986b5079bb69bef276420749b93119
support v-bind object on scoped slots (fix #4529)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -343,13 +343,19 @@ function genText (text: ASTText | ASTExpression): string {\n function genSlot (el: ASTElement): string {\n const slotName = el.slotName || '\"default\"'\n const children = genChildren(el)\n- return `_t(${slotName}${\n- childr...
2016-12-22T04:27:21
denoland/deno
8244cd8e214551faadea0902cc40f10fb4244670
4c0ae84d94abacc9a71ee1a81488b96c5dbfe3ca
fix(ext/node): validate readlink arguments (#30691) Also accepts `Buffer` typed path. Allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-readlink-type-check.js test to pass. Towards #29972
[ { "path": "ext/node/polyfills/_fs/_fs_readlink.ts", "patch": "@@ -5,9 +5,11 @@\n \n import { TextEncoder } from \"ext:deno_web/08_text_encoding.js\";\n import { MaybeEmpty, notImplemented } from \"ext:deno_node/_utils.ts\";\n-import { pathFromURL } from \"ext:deno_web/00_infra.js\";\n import { promisify } f...
2025-09-11T16:43:48
mrdoob/three.js
e20e8ae115e94aabdc17574072ffd940441fbdf9
b19cd6aa44eb1f053a6a2d9ab9cdc296215dfba1
Fix incorrect joint orientation for FBX models exported from Maya using Joint Orient (#29307)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -30,6 +30,8 @@ import {\n \tQuaternion,\n \tQuaternionKeyframeTrack,\n \tRepeatWrapping,\n+\tSRGBColorSpace,\n+\tShapeUtils,\n \tSkeleton,\n \tSkinnedMesh,\n \tSpotLight,\n@@ -39,10 +41,9 @@ import {\n \tVector2,\n \tVector3,\n \tVector4,\n-\tVecto...
2024-09-05T05:11:18
golang/go
d4830c61301a32ad9373bc30c5fd6196c3567f61
e1ca1de1234aa0f6be85c97db5492a94b099a305
cmd/internal/obj: fix Link.Diag printf errors go1.26's vet printf checker can associate the printf-wrapper property with local vars and struct fields if they are assigned from a printf-like func literal (CL 706635). This leads to better detection of mistakes. Change-Id: I604be1e200aa1aba75e09d4f36ab68c1dba3b8a3 Revie...
[ { "path": "src/cmd/internal/obj/arm/asm5.go", "patch": "@@ -579,7 +579,7 @@ func span5(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t}\n \n \t\tif int64(pc) > p.Pc {\n-\t\t\tctxt.Diag(\"PC padding invalid: want %#d, has %#d: %v\", p.Pc, pc, p)\n+\t\t\tctxt.Diag(\"PC padding invalid: want ...
2025-10-08T16:19:14
vuejs/vue
36193183e124f0f1a054170d2cefd335d45135b8
92ad0bd378d38f84691120b1caa654ad195ea724
avoid checked state being overwritten before change event trigger (fix #4521)
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -2,9 +2,6 @@\n \n import { extend, toNumber } from 'shared/util'\n \n-// check platforms/web/util/attrs.js acceptValue\n-declare type acceptValueElm = HTMLInputElement | HTMLSelectElement | HTMLOptionElement\n-\n function updateDOMProp...
2016-12-22T03:35:21
denoland/deno
4c0ae84d94abacc9a71ee1a81488b96c5dbfe3ca
a2bcd84c6cab7164e0dcc2b4f4aca2a9e1e36fdd
fix(ffi): check that fast calls are taken (#30658)
[ { "path": "ext/ffi/00_ffi.js", "patch": "@@ -1,6 +1,6 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-import { core, primordials } from \"ext:core/mod.js\";\n+import { core, internals, primordials } from \"ext:core/mod.js\";\n const {\n isArrayBuffer,\n isDataView,\n@@ -14,6 +14,7 @@ imp...
2025-09-11T10:02:57
mrdoob/three.js
429d6ff54f7c850d8966e7a5a4f7be530cfdf02c
85cbb66532578e9ebd549bfc87caac5b84190936
WebGPURenderer: Fix `viewportCoordinate` in WebGLBackend (#29326)
[ { "path": "src/nodes/display/ViewportNode.js", "patch": "@@ -57,7 +57,18 @@ class ViewportNode extends Node {\n \n \t\t} else {\n \n-\t\t\trenderer.getDrawingBufferSize( resolution );\n+\t\t\tconst renderTarget = renderer.getRenderTarget();\n+\n+\t\t\tif ( renderTarget !== null ) {\n+\n+\t\t\t\tresolution.w...
2024-09-05T01:37:22
golang/go
bb1ca7ae81ea8ca49a2773ace8ccff8fbc7f4dfd
162392773085d4cc12072200853a0424117983c0
cmd/go, testing: add TB.ArtifactDir and -artifacts flag Add TB.ArtifactDir, which returns a directory for a test to store output files in. Add a -artifacts testflag which enables persistent storage of artifacts in the output directory (-outputdir, or the current directory by default). Fixes #71287 Change-Id: I5f6515...
[ { "path": "api/next/71287.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg testing, method (*B) ArtifactDir() string #71287\n+pkg testing, method (*F) ArtifactDir() string #71287\n+pkg testing, method (*T) ArtifactDir() string #71287\n+pkg testing, type TB interface, ArtifactDir() string #71287", "additions": 4, ...
2025-08-15T22:24:05
vuejs/vue
92ad0bd378d38f84691120b1caa654ad195ea724
dacd0cf58241c66c1946cef21475903aa18cad0e
ensure leave transitions and enter transitions are triggered in the same frame (fix #4510)
[ { "path": "examples/move-animations/index.html", "patch": "@@ -15,17 +15,19 @@\n border: 1px solid #666;\n box-sizing: border-box;\n }\n+ /* 1. define transition property, duration and easing */\n .fade-move, .fade-enter-active, .fade-leave-active {\n transition: all...
2016-12-22T03:03:50
mrdoob/three.js
ce180c97303bb0606f3e314bd0d803ae5eb358fe
428bab44252c6e30234717e7f6f1cefcb092256b
Fix misleading comment in How-to-update-things.html (#29318)
[ { "path": "docs/manual/en/introduction/How-to-update-things.html", "patch": "@@ -62,7 +62,7 @@ <h2>BufferGeometry</h2>\n const geometry = new THREE.BufferGeometry();\n \n // attributes\n-const positions = new Float32Array( MAX_POINTS * 3 ); // 3 vertices per point\n+const positions = new Float32Array( MAX_P...
2024-09-04T12:51:35
vuejs/vue
451ea37c7b75e18a663f978b3d30fec214eb68b6
56bfa1d291e7cf8c3e70386ce936ab1965b545ed
don`t cast empty string to Boolean if prop types include String and Boolean (fix #4538) (#4539)
[ { "path": "src/core/util/props.js", "patch": "@@ -21,10 +21,10 @@ export function validateProp (\n const absent = !hasOwn(propsData, key)\n let value = propsData[key]\n // handle boolean props\n- if (isBooleanType(prop.type)) {\n+ if (isType(Boolean, prop.type)) {\n if (absent && !hasOwn(prop, '...
2016-12-21T21:41:52
golang/go
a1661e776f57602b4d4470389a0246f9784fd722
cb81270113968408d7cc41c0b1530adb51dd8496
Revert "crypto/internal/fips140/subtle: add assembly implementation of xorBytes for mips64x" This reverts commit 49d6777d87a0abb3eda032da95eff024156835f7. Reason for revert: doesn't handle unaligned accesses correctly Fixes #74998 Change-Id: Ia272245a6a2a91b305d411207430bad660ee355b Reviewed-on: https://go-review.g...
[ { "path": "src/crypto/internal/fips140/subtle/xor_asm.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build (amd64 || arm64 || mips64 || mips64le || ppc64 || ppc64le || riscv64) && !purego\n+//go:build (amd6...
2025-10-07T17:15:43
mrdoob/three.js
428bab44252c6e30234717e7f6f1cefcb092256b
3b84981a3dfa81fc5462d0e61ad9a1e3848225be
WebGLRenderer: Fix feedback loop with RTT read pixels async (#29320) * Fix feedback loop with RTT read async * Update comments, error * Update KTX2 exporter to use read pixels async
[ { "path": "examples/jsm/exporters/EXRExporter.js", "patch": "@@ -205,7 +205,7 @@ async function getPixelData( renderer, rtt, info ) {\n \n \t\t}\n \n-\t\trenderer.readRenderTargetPixels( rtt, 0, 0, info.width, info.height, dataBuffer );\n+\t\tawait renderer.readRenderTargetPixelsAsync( rtt, 0, 0, info.width...
2024-09-04T12:46:00
vuejs/vue
be9210fc78339ba1fb543160a4b18e8fc444ca68
a977642fac385b2d16455a5eaebf70f2fc949377
update dom prop for option.value (fix #4494) (#4505) * update dom prop for option.value * refactor value update logic
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -2,6 +2,9 @@\n \n import { extend, toNumber } from 'shared/util'\n \n+// check platforms/web/util/attrs.js acceptValue\n+declare type acceptValueElm = HTMLInputElement | HTMLSelectElement | HTMLOptionElement\n+\n function updateDOMProp...
2016-12-21T21:19:04
golang/go
f7a68d3804efabd271f0338391858bc1e7e57422
463165699d874ef0ac7965fc5788fe1693eaae9a
archive/tar: set a limit on the size of GNU sparse file 1.0 regions Sparse files in tar archives contain only the non-zero components of the file. There are several different encodings for sparse files. When reading GNU tar pax 1.0 sparse files, archive/tar did not set a limit on the size of the sparse region data. A ...
[ { "path": "src/archive/tar/common.go", "patch": "@@ -39,6 +39,7 @@ var (\n \terrMissData = errors.New(\"archive/tar: sparse file references non-existent data\")\n \terrUnrefData = errors.New(\"archive/tar: sparse file contains unreferenced data\")\n \terrWriteHole = errors.New(\"archive/t...
2025-09-11T20:32:10
mrdoob/three.js
7ff45b06b02d43e3b15de2d891866f569505247a
151a1f25eca15a82df67f0d686cac8aa903b3b2f
JoltPhysics/RapierPhysics: Fix some warning messages (#29315)
[ { "path": "examples/jsm/physics/JoltPhysics.js", "patch": "@@ -61,7 +61,7 @@ async function JoltPhysics() {\n \n \tif ( Jolt === null ) {\n \n-\t\tconst { default: initJolt } = await import( JOLT_PATH );\n+\t\tconst { default: initJolt } = await import( `${JOLT_PATH}` );\n \t\tJolt = await initJolt();\n \n ...
2024-09-04T07:40:08
golang/go
463165699d874ef0ac7965fc5788fe1693eaae9a
5ede095649db7783726c28390812bca9ce2c684a
net/mail: avoid quadratic behavior in mail address parsing RFC 5322 domain-literal parsing built the dtext value one character at a time with string concatenation, resulting in excessive resource consumption when parsing very large domain-literal values. Replace with a subslice. Benchmark not included in this CL bec...
[ { "path": "src/net/mail/message.go", "patch": "@@ -724,7 +724,8 @@ func (p *addrParser) consumeDomainLiteral() (string, error) {\n \t}\n \n \t// Parse the dtext\n-\tvar dtext string\n+\tdtext := p.s\n+\tdtextLen := 0\n \tfor {\n \t\tif p.empty() {\n \t\t\treturn \"\", errors.New(\"mail: unclosed domain-lite...
2025-09-25T21:41:53
vuejs/vue
a977642fac385b2d16455a5eaebf70f2fc949377
5c34b1ba731ffc53aa10c95bbf5d943f0415372f
unbind v-show if no longer present during patch (fix #4484)
[ { "path": "src/core/vdom/modules/directives.js", "patch": "@@ -20,6 +20,7 @@ function updateDirectives (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n \n function _update (oldVnode, vnode) {\n const isCreate = oldVnode === emptyNode\n+ const isDestroy = vnode === emptyNode\n const oldDirs = normali...
2016-12-21T21:08:34
denoland/deno
c169af0431aeb0b07a1f7ee0da527d48761cba6e
bfcf106bf6f0894fc0114617200e03c80323ed26
fix: Add info/hint for unstable Deno.bundle API (#30682)
[ { "path": "runtime/fmt_errors.rs", "patch": "@@ -358,6 +358,13 @@ fn get_suggestions_for_terminal_errors(e: &JsError) -> Vec<FixSuggestion<'_>> {\n \"Run again with `--unstable-kv` flag to enable this API.\",\n ),\n ];\n+ } else if msg.contains(\"bundle is not a function\") {\n+ ...
2025-09-10T18:29:21
mrdoob/three.js
e45334a3dbeefbe0aab1ee104ea25b20b9f6cc22
9bff1d409e45de5b316b251dd96c160eee459e27
Fix fr manual (#29305) * Add Giro3D to libraries and plugins Mention Giro3D as a Geospatial framework based on Three ( giro3d.org ) * Add link to Giro3D to all manuals * Fix untranslated items in French manual, and fix some translations
[ { "path": "docs/manual/fr/introduction/How-to-update-things.html", "patch": "@@ -95,33 +95,34 @@ <h2>BufferGeometry</h2>\n }\n \t\t\t</code>\n \t\t\t<p>\n-\t\t\t\tIf you want to change the <em>number of points</em> rendered after the first render, do this:\n+\t\t\t\tSi vous voulez changer le <em>nombre de p...
2024-09-03T15:12:28
golang/go
5ede095649db7783726c28390812bca9ce2c684a
5ce8cd16f3859ec5ac4106ad8ec15d6236f4501b
net/textproto: avoid quadratic complexity in Reader.ReadResponse Reader.ReadResponse constructed a response string from repeated string concatenation, permitting a malicious sender to cause excessive memory allocation and CPU consumption by sending a response consisting of many short lines. Use a strings.Builder to c...
[ { "path": "src/net/textproto/reader.go", "patch": "@@ -285,8 +285,10 @@ func (r *Reader) ReadCodeLine(expectCode int) (code int, message string, err err\n //\n // An expectCode <= 0 disables the check of the status code.\n func (r *Reader) ReadResponse(expectCode int) (code int, message string, err error) {...
2025-09-30T22:11:16
vuejs/vue
5c34b1ba731ffc53aa10c95bbf5d943f0415372f
d212a109b0d588ea67a3707d92ee997dccd1e828
fix type definition links (#4517) * fix type definition links NOTE: Everytime, we tried not to change links. * update flow links
[ { "path": "packages/vue-template-compiler/README.md", "patch": "@@ -38,7 +38,7 @@ The optional `options` object can contain the following:\n \n - `modules`\n \n- An array of compiler modules. For details on compiler modules, refer to its [type definition](https://github.com/vuejs/vue/blob/dev/flow/compiler...
2016-12-21T03:30:54
denoland/deno
bfcf106bf6f0894fc0114617200e03c80323ed26
9c871d0a57e94ee353cbfe0c06d55c78bf90cb8c
fix(http): duplicate listener should inherit onError and signal (#30680)
[ { "path": "ext/http/00_serve.ts", "patch": "@@ -779,7 +779,9 @@ function serve(arg1, arg2) {\n 3: duplicateListener,\n } = op_http_serve_address_override();\n if (overrideKind) {\n- let envOptions = duplicateListener ? { __proto__: null } : options;\n+ let envOptions = duplicateListener\n+ ...
2025-09-10T15:41:13
mrdoob/three.js
b4ce623a7621021130369a15a8100d64fd26b2ff
6b2b4796f7dc5e956cba350815e7fbc8a9372e99
LightProbeHelperGPU: Fix uniform update. (#29303) * LightProbeHelperGPU: Clean up. * LightProbeHelperGPU: Fix uniform update. * Clean up.
[ { "path": "examples/jsm/helpers/LightProbeHelperGPU.js", "patch": "@@ -36,6 +36,7 @@ class LightProbeHelper extends Mesh {\n \t\tthis.type = 'LightProbeHelper';\n \n \t\tthis._intensity = intensity;\n+\t\tthis._sh = sh;\n \n \t\tthis.onBeforeRender();\n \n@@ -54,6 +55,9 @@ class LightProbeHelper extends Mes...
2024-09-03T10:04:41
golang/go
5ce8cd16f3859ec5ac4106ad8ec15d6236f4501b
f6f4e8b3ef21299db1ea3a343c3e55e91365a7fd
encoding/pem: make Decode complexity linear Because Decode scanned the input first for the first BEGIN line, and then the first END line, the complexity of Decode is quadratic. If the input contained a large number of BEGINs and then a single END right at the end of the input, we would find the first BEGIN, and then s...
[ { "path": "src/encoding/pem/pem.go", "patch": "@@ -37,7 +37,7 @@ type Block struct {\n // line bytes. The remainder of the byte array (also not including the new line\n // bytes) is also returned and this will always be smaller than the original\n // argument.\n-func getLine(data []byte) (line, rest []byte)...
2025-09-30T18:16:56
vuejs/vue
974247fd8e6b57840c9b7686964ddb38bc6affc8
34333caa8cb54a4eacc723fb46c18334ca8a7c11
Add missing string handler in v-for (#4499) Fix #4497
[ { "path": "src/core/instance/render.js", "patch": "@@ -178,7 +178,7 @@ export function renderMixin (Vue: Class<Component>) {\n render: () => VNode\n ): ?Array<VNode> {\n let ret: ?Array<VNode>, i, l, keys, key\n- if (Array.isArray(val)) {\n+ if (Array.isArray(val) || typeof val === 'string')...
2016-12-16T16:50:53
mrdoob/three.js
b26848e58d9b801a7a6f836a21a3ba55448c9cb8
6b74981b67da7a33a78a1f8817b90eacd4b05d1f
PMREMGenerator: Fix compile methods and background usage. (#29297) * PMREMGenerator: Fix compile methods and background usage. * PMREMGenerator: Make compile*() methods async.
[ { "path": "src/renderers/common/extras/PMREMGenerator.js", "patch": "@@ -176,12 +176,12 @@ class PMREMGenerator {\n \t * Pre-compiles the cubemap shader. You can get faster start-up by invoking this method during\n \t * your texture's network fetch for increased concurrency.\n \t */\n-\tcompileCubemapShader...
2024-09-02T13:04:23
denoland/deno
9c871d0a57e94ee353cbfe0c06d55c78bf90cb8c
c6adba122836aeddd92800c45282897e1f508bd3
fix(ext/node): validate `fs.close` callback function (#30679) Towards #29972 Allows the [parallel/test-fs-close-errors.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-close-errors.js) test to pass, and also addresses the `prefer-primordials` lint rule #24236
[ { "path": "ext/node/polyfills/_fs/_fs_close.ts", "patch": "@@ -1,22 +1,31 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n-import type { CallbackWithError } from \"ext:deno_no...
2025-09-10T14:29:22
mrdoob/three.js
6e11310fd72274140dc49d97f54ff4f2f8aa4a26
4650fd775e5f18b9ce0d06899035ff7133a20863
WebGPURenderer: Fix race condition and ensure unbinding buffers (#29293)
[ { "path": "src/renderers/webgl-fallback/utils/WebGLAttributeUtils.js", "patch": "@@ -233,10 +233,16 @@ class WebGLAttributeUtils {\n \n \t\tconst dstBuffer = new attribute.array.constructor( array.length );\n \n+\t\t// Ensure the buffer is bound before reading\n+\t\tgl.bindBuffer( gl.COPY_WRITE_BUFFER, writ...
2024-09-02T09:05:35
vuejs/vue
bf8aac0053d049a54cd72e01a85b032a58039ac6
7f260e1185284f6b1fea35bfacbc06f705ea2f06
fix weex test case
[ { "path": "test/weex/compiler/compile.spec.js", "patch": "@@ -38,7 +38,7 @@ describe('compile basic', () => {\n <text style=\"margin-left:36px;color:#eee;\">Load more...</text>\n </refresh>\n `)\n- expect(render).toEqual(`with(this){return _c('refresh',{staticClass:[\"refresh\"],staticS...
2016-12-14T17:29:30
denoland/deno
aed2f922f6b804f6250cc04417487ede10400408
4e4bbf2fccd37c80a2d01c99ea82222eda348d87
fix(lsp): auto-import dep entries from workspace member import maps (#30667)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -322,7 +322,7 @@ impl<'a> TsResponseImportMapper<'a> {\n self.resolver.get_scoped_resolver(self.scope.as_deref());\n \n if let Some(dep_name) =\n- scoped_resolver.resource_url_to_configured_dep_key(specifier)\n+ scoped_resolver.resource_url_t...
2025-09-09T19:31:39
golang/go
f6f4e8b3ef21299db1ea3a343c3e55e91365a7fd
7dd54e1fd7f3a25fccbb5c6ab7066e2baad23e66
net/url: enforce stricter parsing of bracketed IPv6 hostnames - Previously, url.Parse did not enforce validation of hostnames within square brackets. - RFC 3986 stipulates that only IPv6 hostnames can be embedded within square brackets in a URL. - Now, the parsing logic should strictly enforce that only IPv6 hos...
[ { "path": "src/go/build/deps_test.go", "patch": "@@ -237,7 +237,6 @@ var depsRules = `\n \t internal/types/errors,\n \t mime/quotedprintable,\n \t net/internal/socktest,\n-\t net/url,\n \t runtime/trace,\n \t text/scanner,\n \t text/tabwriter;\n@@ -300,6 +299,12 @@ var depsRules = `\n \tFMT\n \t< tex...
2025-08-29T17:35:55
mrdoob/three.js
677f3880ebe2efe910449b5edeecc84706bc5ca6
1e91229b6e93a374ad5bc5f8d7119b05b02c9d26
Examples: Fix `webgpu_materials` example using NodeMaterials lib (#29291) * add nodematerials to lib * added count limit
[ { "path": "examples/webgpu_instance_mesh.html", "patch": "@@ -69,7 +69,7 @@\n \t\t\t\t\t//\n \n \t\t\t\t\tconst gui = new GUI();\n-\t\t\t\t\tgui.add( mesh, 'count', 0, count );\n+\t\t\t\t\tgui.add( mesh, 'count', 1, count );\n \n \t\t\t\t} );\n ", "additions": 1, "deletions": 1, "language": "HTM...
2024-09-02T02:15:22
vuejs/vue
f1c38674f28116e1e335873ecbc6716fb70448a3
6116bbf13a8d4827d28874636489b02399f53858
use simple normalization for components, fix functional component multi-root node (fix #4472)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -3,13 +3,14 @@\n import { genHandlers } from './events'\n import { baseWarn, pluckModuleFunction } from '../helpers'\n import baseDirectives from '../directives/index'\n-import { camelize } from 'shared/util'\n+import { camelize, no } from 'shared/util...
2016-12-14T17:22:54
denoland/deno
41ff38ae652d2228f85d47c1842bee420dc7d894
cb1e9037921d8dc537f3f73bc237fd570a67829a
fix(publish): unfurl import.meta.resolve calls (#30663) Closes #30659
[ { "path": "cli/tools/publish/module_content.rs", "patch": "@@ -22,6 +22,7 @@ use sys_traits::FsRead;\n \n use super::diagnostics::PublishDiagnostic;\n use super::diagnostics::PublishDiagnosticsCollector;\n+use super::unfurl::PositionOrSourceRangeRef;\n use super::unfurl::SpecifierUnfurler;\n use super::unfu...
2025-09-09T18:14:12
golang/go
3ee761739b0cbb074f5a6e8b28b491664ec1414a
8709a41d5ef7321f486a1857f189c3fee20e8edd
runtime: free spanQueue on P destroy Span queues must be empty when destroying a P since we are outside of the mark phase. But we don't actually free them, so they simply sit around using memory. More importantly, they are still in work.spanSPMCs.all, so freeDeadSpanSPMCs must continue traversing past them until the e...
[ { "path": "src/runtime/mgcmark_greenteagc.go", "patch": "@@ -618,6 +618,40 @@ func (q *spanQueue) refill(r *spanSPMC) objptr {\n \treturn q.tryGetFast()\n }\n \n+// destroy frees all chains in an empty spanQueue.\n+//\n+// Preconditions:\n+// - World is stopped.\n+// - GC is outside of the mark phase.\n+// ...
2025-10-06T21:28:37
mrdoob/three.js
ea434377a78c839fbdaa1f049f0f27ffd0328034
8ca1d4dff992d45598e4280d86683dd3cce133d7
TSL: Fix `normalView` normalize() applied at vertex stage (#29280)
[ { "path": "src/nodes/accessors/Normal.js", "patch": "@@ -36,15 +36,15 @@ export const normalView = /*@__PURE__*/ ( Fn( ( builder ) => {\n \n \t} else {\n \n-\t\tnode = normalViewVarying || ( normalViewVarying = varying( modelNormalMatrix.mul( normalLocal ), 'v_normalView' ).normalize() );\n+\t\tnode = norma...
2024-08-31T21:39:06
denoland/deno
cb1e9037921d8dc537f3f73bc237fd570a67829a
692f30b214748b43668d754b622922a9862121a0
fix(dts): align crypto.getRandomValues in lib.deno_crypto.d.ts with lib.dom.d.ts and lib.webworker.d.ts (#30647)
[ { "path": "cli/tsc/dts/lib.deno_crypto.d.ts", "patch": "@@ -651,20 +651,7 @@ interface Crypto {\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/Crypto/getRandomValues\n */\n- getRandomValues<\n- T extends\n- | Int8Array<ArrayBuffer>\n- | Int16Array<ArrayBuffer>\n- |...
2025-09-09T15:37:40
golang/go
8709a41d5ef7321f486a1857f189c3fee20e8edd
9b9d02c5a015910ce57024788de2ff254c6cfca6
encoding/asn1: prevent memory exhaustion when parsing using internal/saferio Within parseSequenceOf, reflect.MakeSlice is being used to pre-allocate a slice that is needed in order to fully validate the given DER payload. The size of the slice allocated are also multiple times larger than the input DER: - When using ...
[ { "path": "src/encoding/asn1/asn1.go", "patch": "@@ -22,6 +22,7 @@ package asn1\n import (\n \t\"errors\"\n \t\"fmt\"\n+\t\"internal/saferio\"\n \t\"math\"\n \t\"math/big\"\n \t\"reflect\"\n@@ -666,10 +667,17 @@ func parseSequenceOf(bytes []byte, sliceType reflect.Type, elemType reflect.Type\n \t\toffset +=...
2025-09-03T13:30:56
mrdoob/three.js
8ca1d4dff992d45598e4280d86683dd3cce133d7
701c101243bcfce04bd629054a978fedee0a2284
WebGPURenderer: Fix Material Arrays and Geometry Groups (#29278) * WebGPURenderer: Fix Material Arrays and Geometry Groups * rename to materials * update screenshot name too
[ { "path": "examples/files.json", "patch": "@@ -345,6 +345,7 @@\n \t\t\"webgpu_loader_gltf_transmission\",\n \t\t\"webgpu_loader_materialx\",\n \t\t\"webgpu_materials\",\n+\t\t\"webgpu_materials_arrays\",\n \t\t\"webgpu_materials_basic\",\n \t\t\"webgpu_materials_displacementmap\",\n \t\t\"webgpu_materials_e...
2024-08-31T14:44:29
vuejs/vue
6116bbf13a8d4827d28874636489b02399f53858
0fe431b490b90a412ade6e8c4b8065b1f4189b3b
fix svg foreignObject regression (fix #4478)
[ { "path": "src/core/vdom/create-element.js", "patch": "@@ -71,7 +71,6 @@ export function _createElement (\n // unknown or unlisted namespaced elements\n // check at runtime because it may get assigned a namespace when its\n // parent normalizes children\n- ns = tag === 'foreignObject'...
2016-12-14T16:24:53
mrdoob/three.js
138a1fb8237c35edd3824f08148b9135a64b8c90
9a0ae535965dfabfff7f30eef5c3c16a7cc1ec5d
Examples: Fixed alphabetical list sorting.
[ { "path": "examples/files.json", "patch": "@@ -368,6 +368,7 @@\n \t\t\"webgpu_ocean\",\n \t\t\"webgpu_parallax_uv\",\n \t\t\"webgpu_particles\",\n+\t\t\"webgpu_performance\",\n \t\t\"webgpu_performance_renderbundle\",\n \t\t\"webgpu_pmrem_cubemap\",\n \t\t\"webgpu_pmrem_equirectangular\",\n@@ -396,7 +397,6 ...
2024-08-30T06:34:12
denoland/deno
94f66317773802fa5b11d800d01a5a2ae09772b7
7e093a09204b0c5d9e3e9fd91c175d66e082688c
test: de-flake specs tests in `deno install` (#30645) Fixing a regression from https://github.com/denoland/deno/pull/30615 by using a more permissive wildcard match.
[ { "path": "tests/specs/install/entrypoint_only_used_packages/install-entrypoint.out", "patch": "@@ -4,7 +4,7 @@ Download http://localhost:4260/@denotest%2fsay-hello\n Download http://localhost:4260/@denotest/add/1.0.0.tgz\n [UNORDERED_END]\n Initialize @denotest/add@1.0.0\n-Installed 1 package in [WILDCARD]...
2025-09-09T08:57:35
golang/go
9b9d02c5a015910ce57024788de2ff254c6cfca6
3fc4c79fdbb17b9b29ea9f8c29dd780df075d4c4
net/http: add httpcookiemaxnum GODEBUG option to limit number of cookies parsed When handling HTTP headers, net/http does not currently limit the number of cookies that can be parsed. The only limitation that exists is for the size of the entire HTTP header, which is controlled by MaxHeaderBytes (defaults to 1 MB). U...
[ { "path": "doc/godebug.md", "patch": "@@ -153,6 +153,16 @@ for example,\n see the [runtime documentation](/pkg/runtime#hdr-Environment_Variables)\n and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n+### Go 1.26\n+\n+Go 1.26 added a new `httpcookiemaxnum` setting that controls the m...
2025-09-30T18:02:38
vuejs/vue
4cca50725a5a204f7bb5cd4c7591dccf25894414
6918436bf85ec49823d2517f933fea96391f9200
fix v-for on v-else branch regression (fix #4464)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -298,14 +298,18 @@ function genChildren (el: ASTElement, checkSkip?: boolean): string | void {\n function canSkipNormalization (children): boolean {\n for (let i = 0; i < children.length; i++) {\n const el: any = children[i]\n- if (el.for || e...
2016-12-13T17:02:37
mrdoob/three.js
9a0ae535965dfabfff7f30eef5c3c16a7cc1ec5d
480092d86aaa67cb0042e81bdfe6fbc29556bd70
Examples: Fixed webgpu_tsl_vfx_flames smoothstep usage.
[ { "path": "examples/webgpu_tsl_vfx_flames.html", "patch": "@@ -27,7 +27,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { PI2, spherizeUV, sin, step, texture, timerLocal, Fn, uv, vec2, vec3, vec4, mix, billboarding } from 'three/tsl';\n+\t\t\timport { PI2, oneMi...
2024-08-30T06:31:13
denoland/deno
3e58caa8f48ee462e2834638a7032a9e6ec62dfd
c537681065415617f4433e0b9d0c358ef1091f29
ci: disable symcache generation on Windows (#30646) Due to V8 upgrade in https://github.com/denoland/deno/pull/30629, we are not generating debug symbols on Windows and because of that symcache generation is not available.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -916,7 +916,9 @@ const ci = {\n \"Get-FileHash target/release/deno-${{ matrix.arch }}-pc-windows-msvc.zip -Algorithm SHA256 | Format-List > target/release/deno-${{ matrix.arch }}-pc-windows-msvc.zip.sha256sum\",\n \"Compress-...
2025-09-08T22:39:54
golang/go
3fc4c79fdbb17b9b29ea9f8c29dd780df075d4c4
6e4007e8cffbb870e6b606307ab7308236ecefb9
crypto/x509: improve domain name verification Don't use domainToReverseLabels to check if domain names are valid, since it is not particularly performant, and can contribute to DoS vectors. Instead just iterate over the name and enforce the properties we care about. This also enforces that DNS names, both in SANs and...
[ { "path": "src/crypto/x509/name_constraints_test.go", "patch": "@@ -1456,63 +1456,7 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\texpectedError: \"incompatible key usage\",\n \t},\n \n-\t// An invalid DNS SAN should be detected only at validation time so\n-\t// that we can process CA certificat...
2025-09-15T20:31:22
vuejs/vue
6918436bf85ec49823d2517f933fea96391f9200
5300e717fa52480bf301453beabbd863eeff0d8c
Update normalize children (fix 4466) (#4468) * omit boolean node * add test case * update boolean type * update test case * update test case
[ { "path": "src/core/vdom/helpers/normalize-children.js", "patch": "@@ -16,7 +16,7 @@ function normalizeArrayChildren (children: any, nestedIndex?: string): Array<VNo\n let i, c, last\n for (i = 0; i < children.length; i++) {\n c = children[i]\n- if (c == null) continue\n+ if (c == null || type...
2016-12-13T16:52:25
mrdoob/three.js
480092d86aaa67cb0042e81bdfe6fbc29556bd70
7b62fdd64e2a66a0a4ab80325d64b1760ee56f59
Fixed smoothstep usage failing to compile in Chrome Beta. (#29265)
[ { "path": "examples/webgpu_tsl_coffee_smoke.html", "patch": "@@ -29,7 +29,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { mix, mul, positionLocal, smoothstep, texture, timerLocal, rotateUV, Fn, uv, vec2, vec3, vec4 } from 'three/tsl';\n+\t\t\timport { mix, mul...
2024-08-30T06:21:07
denoland/deno
6ee7d60ce183a9a39422b5a59cc6beae0d95840c
928f26db78615283f661c955b15f4ee126bf5963
fix(ext/node): set socket.authorized to true for https request (#30641) This PR sets true to `req.socket.authorized` when making https request from `node:https` module. This makes yarn classic's https client working (e.g. `yarn add cowsay`). --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -538,6 +538,10 @@ class ClientRequest extends OutgoingMessage {\n caCerts: caCerts,\n alpnProtocols: [\"http/1.0\", \"http/1.1\"],\n }, keyPair);\n+\n+ // Simulates \"secure\" event on TLSSocket\n+ // Th...
2025-09-08T20:29:41
golang/go
6e4007e8cffbb870e6b606307ab7308236ecefb9
6f7926589d03180863aa05cbb55a9d9c63e76b99
crypto/x509: mitigate DoS vector when intermediate certificate contains DSA public key An attacker could craft an intermediate X.509 certificate containing a DSA public key and can crash a remote host with an unauthenticated call to any endpoint that verifies the certificate chain. Thank you to Jakub Ciolek for repor...
[ { "path": "src/crypto/x509/verify.go", "patch": "@@ -927,7 +927,10 @@ func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {\n \t\tif !bytes.Equal(candidate.RawSubject, cert.RawSubject) {\n \t\t\tcontinue\n \t\t}\n-\t\tif !candidate.PublicKey.(pubKeyEqual).Equal(cert.PublicKey) {\n+\t\t// ...
2025-09-11T20:27:04
vuejs/vue
5300e717fa52480bf301453beabbd863eeff0d8c
68abdc3c3c86e01089c32b434e662dc15a3a9eda
Fix unkpg.com -> unpkg.com (#4460)
[ { "path": "dist/README.md", "patch": "@@ -7,7 +7,7 @@\n The full (compiler-included) browser build. This is the build you can just include with a script tag:\n \n ```\n- <script src=\"https://unkpg.com/vue/dist/vue.js\"><script>\n+ <script src=\"https://unpkg.com/vue/dist/vue.js\"></script>\n ```\n ...
2016-12-13T05:00:20
mrdoob/three.js
db2025100e5e87b4dc2cb0cad5f054f25984f680
3cbd97721ea7ced123049cde7d70a9d78d82d9dc
Fixed report-size.yml
[ { "path": ".github/workflows/report-size.yml", "patch": "@@ -205,7 +205,7 @@ jobs:\n || Filesize `${{ github.ref_name }}` | Filesize PR | Diff |\n |---|:-:|:-:|:-:|\n | three.module | ${{ steps.format.outputs.WEBGL_FILESIZE_BASE }} <br> **${{ steps.format.outputs.WEBGL_FI...
2024-08-30T00:11:52
denoland/deno
ea419a6e390e9f70ca29a0c932d204a5f8d5f349
a3a904da1450849b51c34a972db4fd9b9a572d29
feat(BREAKING/fmt): prompt or require `deno fmt .` when providing no files and no config files discovered (#30623) When running `deno fmt` with no input paths with no deno.json or package.json: * In tty environments, prompts for confirmation. * In non-tty environments, errors without providing the current directory (...
[ { "path": "cli/tools/fmt.rs", "patch": "@@ -48,6 +48,7 @@ use crate::cache::IncrementalCache;\n use crate::colors;\n use crate::factory::CliFactory;\n use crate::sys::CliSys;\n+use crate::util;\n use crate::util::file_watcher;\n use crate::util::fs::canonicalize_path;\n use crate::util::path::get_extension;...
2025-09-08T18:28:47
vuejs/vue
850fb9fbcb8990a66d15176085601f75cdb2e371
2d87b950c90adf9aec7564aeb3fe3f5e64fe1ef1
fix number update spec in ie9
[ { "path": "test/unit/features/directives/model-text.spec.js", "patch": "@@ -72,8 +72,8 @@ describe('Directive v-model text', () => {\n },\n template:\n '<div>' +\n- '<input ref=\"input\" v-model=\"test\" type=\"number\">{{ update }}' +\n- '<input ref=\"blur\"/>' +\n+ ...
2016-12-13T02:59:07
mrdoob/three.js
3cbd97721ea7ced123049cde7d70a9d78d82d9dc
577ec00acea525d9ff8a93d3ed28fdf64b401340
Fixed report-size.yml
[ { "path": ".github/workflows/report-size.yml", "patch": "@@ -161,6 +161,8 @@ jobs:\n echo \"WEBGL_FILESIZE_BASE=$WEBGL_FILESIZE_BASE_FORM\" >> $GITHUB_OUTPUT\n echo \"WEBGL_FILESIZE_BASE_GZIP=$WEBGL_FILESIZE_BASE_GZIP_FORM\" >> $GITHUB_OUTPUT\n echo \"WEBGL_FILESIZE_DIFF=$WEBGL...
2024-08-30T00:10:55
denoland/deno
a3a904da1450849b51c34a972db4fd9b9a572d29
e02e4c2042d4cc87206683dfe2e8d0abab350f54
fix(dts): specify the underlying buffer type in more places (#30640)
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -3835,7 +3835,7 @@ declare namespace Deno {\n * Reads the stream to completion. It returns a promise that resolves with\n * a `Uint8Array`.\n */\n- bytes(): Promise<Uint8Array>;\n+ bytes(): Promise<Uint8Array<ArrayBuffer>>;\n /*...
2025-09-08T13:05:09
mrdoob/three.js
54e591c3fd0a066e10e2bb4c7bc1ddeec065d132
2118a4056abd79c855811992322a9a591c767f7d
WebGPURenderer: fix cache textureViews (#29261)
[ { "path": "src/renderers/webgpu/utils/WebGPUBindingUtils.js", "patch": "@@ -243,7 +243,7 @@ class WebGPUBindingUtils {\n \t\t\t\t} else {\n \n \t\t\t\t\tconst mipLevelCount = binding.store ? 1 : textureData.texture.mipLevelCount;\n-\t\t\t\t\tconst propertyName = `view-${ mipLevelCount }`;\n+\t\t\t\t\tconst ...
2024-08-29T23:11:52
vuejs/vue
2afa2601e05b51569d8d517624ffe0aa5e53a26a
6cfd6c7fe9c35528802d2e775833fb3eeebab0e8
ensure local assets is prioritized regardless of naming convention (fix #4434)
[ { "path": "src/core/util/options.js", "patch": "@@ -319,11 +319,14 @@ export function resolveAsset (\n return\n }\n const assets = options[type]\n- const res = assets[id] ||\n- // camelCase ID\n- assets[camelize(id)] ||\n- // Pascal Case ID\n- assets[capitalize(camelize(id))]\n+ // che...
2016-12-13T02:30:36
denoland/deno
d471a80f7d8b2adb6225dad923bfdbc56eaf25fe
54bda9febcb10c19082a7a85944766d24435ee9e
fix(tests): Switch from --nocapture to --no-capture (#30638) `--no-capture` was added in 1.88, with `--nocapture` being soft-deprecated. https://releases.rs/docs/1.88.0/#libraries
[ { "path": "tests/specs/README.md", "patch": "@@ -26,11 +26,11 @@ Or just the following, though it might run other tests:\n cargo test test_name\n ```\n \n-To run showing the output of every test use `-- --nocapture` (note: this will\n+To run showing the output of every test use `-- --no-capture` (note: this...
2025-09-08T08:40:56
mrdoob/three.js
2118a4056abd79c855811992322a9a591c767f7d
8eb3ef239eb80d56bce1d2ce67773e257487ddd7
WebGPURenderer: cache textureViews for reuse in bindGroup (#29257) * text cache wip tex cache * reorder * use correct mipLevelCount * remove debug code --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "src/renderers/webgpu/utils/WebGPUBindingUtils.js", "patch": "@@ -234,37 +234,46 @@ class WebGPUBindingUtils {\n \n \t\t\t\tconst textureData = backend.get( binding.texture );\n \n-\t\t\t\tlet dimensionViewGPU;\n+\t\t\t\tlet resourceGPU;\n \n-\t\t\t\tif ( binding.isSampledCubeTexture ) {\n+\t\t\t\...
2024-08-29T22:34:15
vuejs/vue
92473853dd70b6d38d88686c15c338f262da40e3
183bd43c3ee276aac9052a5eaae8b782cd99a095
avoid error when asserting mismatched nodes during hydration
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -534,7 +534,7 @@ export function createPatchFunction (backend) {\n if (vnode.tag) {\n return (\n vnode.tag.indexOf('vue-component') === 0 ||\n- vnode.tag.toLowerCase() === node.tagName.toLowerCase()\n+ vnode.tag.toLowerCase() =...
2016-12-12T19:22:12
golang/go
11d5484190f80823c9b6312fd40f6491e864111b
2e52060084ff170097347457525f0debde91aea9
runtime: fix self-deadlock on sbrk platforms The sbrk mem.go implementation doesn't enforce being called on the systemstack, but it can call back into itself if there's a stack growth. Because the sbrk implementation requires acquiring memlock, it can self-deadlock. For the most part the mem.go API is called on the s...
[ { "path": "src/runtime/mem_sbrk.go", "patch": "@@ -48,13 +48,32 @@ type memHdrPtr uintptr\n func (p memHdrPtr) ptr() *memHdr { return (*memHdr)(unsafe.Pointer(p)) }\n func (p *memHdrPtr) set(x *memHdr) { *p = memHdrPtr(unsafe.Pointer(x)) }\n \n+// memAlloc allocates n bytes from the brk reservation, or if...
2025-10-07T16:10:19
mrdoob/three.js
2b74466d5429c1587ebfc83a9c8a4b659e5bd44a
50cb9b4479015f8a3044e1edf9fda014d4a94220
WebGPURenderer: Video fix wrong colorSpace in WebGL Backend (#29254)
[ { "path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js", "patch": "@@ -5,7 +5,7 @@ import NodeUniformsGroup from '../../common/nodes/NodeUniformsGroup.js';\n \n import { NodeSampledTexture, NodeSampledCubeTexture, NodeSampledTexture3D } from '../../common/nodes/NodeSampledTexture.js';\n \n-import ...
2024-08-29T11:22:43
denoland/deno
54bda9febcb10c19082a7a85944766d24435ee9e
e60f5d2c528227df60b4d8c3b1fdb4e85beefa47
fix(ext/node): readline line separators (#30630)
[ { "path": "ext/node/polyfills/internal/readline/interface.mjs", "patch": "@@ -89,11 +89,29 @@ import {\n kWordRight,\n kWriteToOutput,\n } from \"ext:deno_node/internal/readline/symbols.mjs\";\n+import { primordials } from \"ext:core/mod.js\";\n+\n+const {\n+ ArrayPrototypePush,\n+ DateNow,\n+ RegExp...
2025-09-06T15:48:54
vuejs/vue
183bd43c3ee276aac9052a5eaae8b782cd99a095
962b778e109807c2da34025c9ca8f6ba08c48bbe
fix v-bind.prop parse (fix #4432) (#4435) * reset isProp value * add test case * update test case * fix typo
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -414,6 +414,7 @@ function processAttrs (el) {\n if (bindRE.test(name)) { // v-bind\n name = name.replace(bindRE, '')\n value = parseFilters(value)\n+ isProp = false\n if (modifiers) {\n if (modifiers.prop) ...
2016-12-11T15:16:23
golang/go
f86ddb54b5b8e4cb30b8fe2f9f3a2c0c172e7c37
c938051dd0b80a5c60572d6807270d06ca685d2e
cmd/go: refactor usage of `ForceUseModules` This commit refactors usage of the global variable `ForceUseModules` to the global LoaderState field of the same name. This commit is part of the overall effort to eliminate global modloader state. [git-generate] cd src/cmd/go/internal/modload rf 'mv State.forceUseModules ...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -3348,7 +3348,7 @@ func GoFilesPackage(ctx context.Context, opts PackageOpts, gofiles []string) *Pa\n // would cause it to be interpreted differently if it were the main module\n // (replace, exclude).\n func PackagesAndErrorsOutsideModule(ctx contex...
2025-08-20T23:21:56
mrdoob/three.js
7506a353d60767f738ca1abeceb6fa11c77122eb
3f2956c35e1bd1fc8cbe35f1430e475fd848e6a2
Nodes: `InstancedPointsNodeMaterial` - Add `pointWidthNode` (#29236) * init * adjustment * adjust * set instancePosition.xyz to fix warning when instancePosition is accessed as a StorageBufferNode in a compute shader * cleanup and screenshot * add instance points example to exception * reduce instanc...
[ { "path": "examples/webgpu_instance_points.html", "patch": "@@ -26,7 +26,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { color } from 'three/tsl';\n+\t\t\timport { color, storage, Fn, instanceIndex, sin, timerLocal, float, uniform, attribute, mix, vec3 } from ...
2024-08-29T04:19:41
denoland/deno
e60f5d2c528227df60b4d8c3b1fdb4e85beefa47
71a74cb1c6a69ee39b090ce6d435c182a5731849
fix(ext/node): `fs.mkdtemp` and `fs.mkdtempSync` compatibility (#30602) `fs.mkdtemp` and `fs.mkdtempSync` now accept `Buffer` and `Uint8Array` path. The implementation has been moved to Rust, including directory suffix generation and directory creation.
[ { "path": "ext/node/lib.rs", "patch": "@@ -357,6 +357,8 @@ deno_core::extension!(deno_node,\n ops::fs::op_node_lchown<P>,\n ops::fs::op_node_lutimes_sync<P>,\n ops::fs::op_node_lutimes<P>,\n+ ops::fs::op_node_mkdtemp_sync<P>,\n+ ops::fs::op_node_mkdtemp<P>,\n ops::fs::op_node_open_sync...
2025-09-05T20:12:42
vuejs/vue
962b778e109807c2da34025c9ca8f6ba08c48bbe
29d6e33b33a6199f15f574d6d9192176713718b6
More informative warning message for comp name (#4429) This commit adds a more informative warning message for invalid component names. Also fixes a typo. Closes #4428.
[ { "path": "src/core/global-api/extend.js", "patch": "@@ -28,7 +28,8 @@ export function initExtend (Vue: GlobalAPI) {\n if (!/^[a-zA-Z][\\w-]*$/.test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n- 'can only contain alphanumeric characater...
2016-12-09T17:51:13
mrdoob/three.js
3f2956c35e1bd1fc8cbe35f1430e475fd848e6a2
8ce2bc47eb8075427dc70ead22cbe22d58eb9c1a
TSL: Color Space revision (#29248) * Rev `currentColorSpace` and added `currentToneMapping` * fix imports * Update ColorSpaceNode.js * cleanup * improve tsl colorspace names
[ { "path": "examples/webgpu_sandbox.html", "patch": "@@ -14,8 +14,8 @@\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n-\t\t\t\t\t\"three\": \"../src/Three.WebGPU.js\",\n-\t\t\t\t\t\"three/tsl\": \"../src/Three.WebGPU.js\",\n+\t\t\t\t\t\"three\": \"../build/three.webgpu.js\",\n+\t\t\t\t...
2024-08-28T22:58:28
golang/go
c938051dd0b80a5c60572d6807270d06ca685d2e
64699542031b994ec4fdb6de887a94b69a372f9b
Revert "cmd/compile: redo arm64 LR/FP save and restore" This reverts commit 719dfcf8a8478d70360bf3c34c0e920be7b32994. Reason for revert: Causing crashes. Change-Id: I0b8526dd03d82fa074ce4f97f1789eeac702b3eb Reviewed-on: https://go-review.googlesource.com/c/go/+/709755 Reviewed-by: Keith Randall <khr@google.com> Revi...
[ { "path": "src/cmd/compile/abi-internal.md", "patch": "@@ -576,19 +576,19 @@ A function's stack frame, after the frame is created, is laid out as\n follows:\n \n +------------------------------+\n- | return PC |\n- | frame pointer on entry | ← R29 points to\n | ... loc...
2025-10-07T14:58:50
denoland/deno
71a74cb1c6a69ee39b090ce6d435c182a5731849
baf185014d50df3d765922f84c51281c7326d87e
fix(lsp): import rewrites in moved file (#30628)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -547,6 +547,7 @@ impl<'a> TsResponseImportMapper<'a> {\n specifier: &str,\n referrer: &ModuleSpecifier,\n resolution_mode: ResolutionMode,\n+ new_file_hints: &[Url],\n ) -> Option<String> {\n let specifier_stem = specifier.strip_suffix(\".js...
2025-09-05T19:58:46
vuejs/vue
612d32105a4ba1d636e8b617cbcb0a3e59919a9e
0163a6fe53cc17a69450f5c0ef0ac16308c1f5b6
fix transition v-show display toggle timing for enter hooks (fix #4418)
[ { "path": "src/platforms/web/runtime/directives/show.js", "patch": "@@ -14,22 +14,28 @@ export default {\n bind (el: any, { value }: VNodeDirective, vnode: VNodeWithData) {\n vnode = locateNode(vnode)\n const transition = vnode.data && vnode.data.transition\n+ const originalDisplay = el.__vOrig...
2016-12-08T21:54:09
mrdoob/three.js
d02a234bf50c25600a85ed8613a4a77c22c5880f
89407fb32c7767f1361bfa51e217a92747a80e7b
Fix loop bounds in BatchedMesh#computeBoundingBox to properly cover all instances (#29243)
[ { "path": "src/objects/BatchedMesh.js", "patch": "@@ -300,12 +300,11 @@ class BatchedMesh extends Mesh {\n \n \t\t}\n \n-\t\tconst geometryCount = this._geometryCount;\n \t\tconst boundingBox = this.boundingBox;\n \t\tconst drawInfo = this._drawInfo;\n \n \t\tboundingBox.makeEmpty();\n-\t\tfor ( let i = 0; ...
2024-08-28T00:13:10
golang/go
c1e6e49d5d3f3fb927f1bfd1b453d8e7c906c6ac
7fbf54bfebf9243550177bc6871d80e58bedf1a6
fmt: reduce Errorf("x") allocations to match errors.New("x") For unformatted strings, it comes up periodically that there are more allocations using fmt.Errorf("x") compared to errors.New("x"). People cite it as a reason to switch code using fmt.Errorf to use errors.New instead. Three examples from the last few weeks...
[ { "path": "src/fmt/errors.go", "patch": "@@ -6,6 +6,7 @@ package fmt\n \n import (\n \t\"errors\"\n+\t\"internal/stringslite\"\n \t\"slices\"\n )\n \n@@ -19,7 +20,22 @@ import (\n // order they appear in the arguments.\n // It is invalid to supply the %w verb with an operand that does not implement\n // the...
2025-10-03T14:59:54
denoland/deno
baf185014d50df3d765922f84c51281c7326d87e
287c0854a3e16bace6e3a2100ccf3a796c65e515
fix(bundle): avoid cloning parsed source, restore owned transpile assertion (#30624)
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -1252,7 +1252,7 @@ impl DenoPluginHandler {\n source: &Arc<str>,\n is_known_script: Option<bool>,\n ) -> Result<Arc<str>, BundleLoadError> {\n- let parsed_source = self.parsed_source_cache.get_matching_parsed_source(\n+ let parsed_source = se...
2025-09-05T18:15:04
vuejs/vue
0163a6fe53cc17a69450f5c0ef0ac16308c1f5b6
8567e7dcedfdf0d8fb21e2c2f7ee935229b6a9e9
proper fix for #4392 (via #4402)
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { extend } from 'shared/util'\n+import { extend, toNumber } from 'shared/util'\n \n function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n if (!oldVnode.data.domProps && !vn...
2016-12-08T21:02:26
golang/go
1d62e92567a858b18f4e7e0c24e071c039dd3edf
4fca79833fcdd0dc19bb0feba8715a0def3d07be
test/codegen: make sure assignment results are used. Some tests make assignments to an argument without reading it. With CL 708865, they are treated as dead stores and are removed. Make sure the results are used. Fixes #75745. Fixes #75746. Change-Id: I05580beb1006505ec1550e5fa245b54dcefd10b9 Reviewed-on: https://go...
[ { "path": "test/codegen/constants.go", "patch": "@@ -7,7 +7,7 @@\n package codegen\n \n // A uint16 or sint16 constant shifted left.\n-func shifted16BitConstants(out [64]uint64) {\n+func shifted16BitConstants() (out [64]uint64) {\n \t// ppc64x: \"MOVD\\t[$]8193,\", \"SLD\\t[$]27,\"\n \tout[0] = 0x0000010008...
2025-10-04T15:32:33
denoland/deno
287c0854a3e16bace6e3a2100ccf3a796c65e515
70793737f290f9e93449692b62293faa095283e4
fix(unstable): make QuicListener yield QuicIncoming (#30150)
[ { "path": "cli/tsc/dts/lib.deno_net.d.ts", "patch": "@@ -787,7 +787,7 @@ declare namespace Deno {\n * @experimental\n * @category Network\n */\n- export interface QuicListener extends AsyncIterable<QuicConn> {\n+ export interface QuicListener extends AsyncIterable<QuicIncoming> {\n /** Waits ...
2025-09-05T17:44:44
mrdoob/three.js
e13d012265ebac01ceec9895e4aa7a356b69eff2
cde3cd25a17d141ea4f63e766a44b812e643a5cf
WebGPURenderer: Tree-shaking 1/2 - WIP (#29187) * tree shaking - WIP * use TSLBase instead of ShaderNode * cleanup * PackingNode: Move to TSL approach * update webgpu_mrt * DiscardNode: Move to TSL approach * HashNode: Move to TSL approach * no references to discard() without chaining * cleanup...
[ { "path": "examples/misc_controls_fly.html", "patch": "@@ -1,7 +1,7 @@\n <!DOCTYPE html>\n <html lang=\"en\">\n \t<head>\n-\t\t<title>three.js webgl - fly controls - earth</title>\n+\t\t<title>three.js webgpu - fly controls - earth</title>\n \t\t<meta charset=\"utf-8\">\n \t\t<meta name=\"viewport\" content...
2024-08-27T02:12:24
vuejs/vue
b141c6930d20eaec0f94a4fc7b2ebecab4651ac8
58949bd1c5c481570eb7b6dd4c6864866a301fdf
fix filter parsing for divisions (fix #4415)
[ { "path": "src/compiler/parser/filter-parser.js", "patch": "@@ -40,14 +40,25 @@ export function parseFilters (exp: string): string {\n case 0x22: inDouble = true; break // \"\n case 0x27: inSingle = true; break // '\n case 0x60: inTemplateString = true; break // `\n- ...
2016-12-08T18:15:33
denoland/deno
70793737f290f9e93449692b62293faa095283e4
6d0692e00ad1761872d4400bcbfc3d531dafd238
fix(ext/node): fix hang induced by maxSockets bounds (#30622)
[ { "path": "ext/node/polyfills/_http_agent.mjs", "patch": "@@ -267,7 +267,8 @@ Agent.prototype.addRequest = function addRequest(\n setRequestSocket(this, req, socket);\n this.sockets[name].push(socket);\n } else if (\n- sockLen < this.maxSockets &&\n+ // TODO(littledivy): enable maxSockets ag...
2025-09-05T16:13:51
golang/go
719dfcf8a8478d70360bf3c34c0e920be7b32994
f3312124c2370c2f64a7f9ad29732ec30209647a
cmd/compile: redo arm64 LR/FP save and restore Instead of storing LR (the return address) at 0(SP) and the FP (parent's frame pointer) at -8(SP), store them at framesize-8(SP) and framesize-16(SP), respectively. We push and pop data onto the stack such that we're never accessing anything below SP. The prolog/epilog ...
[ { "path": "src/cmd/compile/abi-internal.md", "patch": "@@ -576,19 +576,19 @@ A function's stack frame, after the frame is created, is laid out as\n follows:\n \n +------------------------------+\n+ | return PC |\n+ | frame pointer on entry | ← R29 points to\n | ... loc...
2025-05-17T22:05:56
mrdoob/three.js
78f2ffb922600f1116538f04a347e285bc3dab5f
d7f2d9ac3af4228f0940d3b2410b1ad6f0dda529
WebGPURenderer: Improve clippingContext cachekey (#29232) * fix clipping cache key and simplify versions * lint fix --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "src/renderers/common/ClippingContext.js", "patch": "@@ -4,13 +4,11 @@ import { Vector4 } from '../../math/Vector4.js';\n \n const _plane = /*@__PURE__*/ new Plane();\n \n-let _clippingContextVersion = 0;\n-\n class ClippingContext {\n \n \tconstructor() {\n \n-\t\tthis.version = ++ _clippingConte...
2024-08-27T01:24:28
vuejs/vue
58949bd1c5c481570eb7b6dd4c6864866a301fdf
b48c45eb7ea8d6bdf1ec805fb4ade0576670e59a
use sameVnode check when pacthing keyed children (fix #4393)
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -386,15 +386,15 @@ export function createPatchFunction (backend) {\n 'Make sure each v-for item has a unique key.'\n )\n }\n- if (elmToMove.tag !== newStartVnode.tag) {\n- // same key but different eleme...
2016-12-08T17:26:22
mrdoob/three.js
206ab2b7e03caf9e18c7d1c8abd1ced8f7b7cc95
896e436c8c638f52a0892e8fb85920aff6bd72a5
WebGPURenderer: Fix sync `NodeFrame` state if render call tree are used (#29230)
[ { "path": "src/renderers/common/nodes/Nodes.js", "patch": "@@ -448,25 +448,27 @@ class Nodes extends DataMap {\n \n \tupdateBefore( renderObject ) {\n \n-\t\tconst nodeFrame = this.getNodeFrameForRender( renderObject );\n \t\tconst nodeBuilder = renderObject.getNodeBuilderState();\n \n \t\tfor ( const node ...
2024-08-26T09:35:46
denoland/deno
6d0692e00ad1761872d4400bcbfc3d531dafd238
db263a14d4370a4d0942f78912857a53d23c956c
fix(bundle): properly display error on invalid config in watch mode (#30621) Fixes https://github.com/denoland/deno/issues/30617
[ { "path": "Cargo.lock", "patch": "@@ -3792,9 +3792,9 @@ checksum = \"31ae425815400e5ed474178a7a22e275a9687086a12ca63ec793ff292d8fdae8\"\n \n [[package]]\n name = \"esbuild_client\"\n-version = \"0.5.0\"\n+version = \"0.6.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \...
2025-09-05T02:21:59
golang/go
f3312124c2370c2f64a7f9ad29732ec30209647a
24416458c21a48d83f34d3c2242d892e002bcd6c
runtime: remove batching from spanSPMC free Added in CL 700496, freeSomeSpanSPMCs attempts to bound tail latency by processing at most 64 entries at a time, as well as returning early if it notices a preemption request. Both of those are attempts to reduce tail latency, as we cannot preempt the function while it holds...
[ { "path": "src/runtime/mgc.go", "patch": "@@ -2046,8 +2046,7 @@ func gcSweep(mode gcMode) bool {\n \t\tprepareFreeWorkbufs()\n \t\tfor freeSomeWbufs(false) {\n \t\t}\n-\t\tfor freeSomeSpanSPMCs(false) {\n-\t\t}\n+\t\tfreeDeadSpanSPMCs()\n \t\t// All \"free\" events for this mark/sweep cycle have\n \t\t// no...
2025-10-06T18:38:47
vuejs/vue
b48c45eb7ea8d6bdf1ec805fb4ade0576670e59a
4c3abdda92bd36b7b6026ae30b3b9960e486705f
ensure set value last in IE9 (fix #4391)
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -1,6 +1,7 @@\n /* @flow */\n \n import { extend } from 'shared/util'\n+import { isIE9 } from 'core/util/env'\n import {\n isBooleanAttr,\n isEnumeratedAttr,\n@@ -17,7 +18,7 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNode...
2016-12-08T17:12:11
denoland/deno
db263a14d4370a4d0942f78912857a53d23c956c
eea93eb08a7c059fd72fecceaa2d50a831f8c75a
fix(node): improve directory import error suggestion (#30619)
[ { "path": "libs/node_resolver/errors.rs", "patch": "@@ -892,13 +892,13 @@ impl NodeJsErrorCoded for ModuleNotFoundError {\n self.code(),\n dir_url,\n maybe_referrer.as_ref().map(|referrer| format!(\" imported from '{}'\", referrer)).unwrap_or_default(),\n- suggested_file_name.map(|file_name| format!(...
2025-09-05T01:48:19
golang/go
c2fb15164bdb9d44a302771be613fbef5faa4a8e
ac2ec82172799b88c057bb9ded6fe24e7909e860
testing/synctest: remove Run Run (experimental) is replaced by Test. Fixes #74012 Change-Id: I1721e1edfbcb4f1fe2159dc0430a13685b2d08c4 Reviewed-on: https://go-review.googlesource.com/c/go/+/709355 Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com> Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Damien Neil...
[ { "path": "src/testing/synctest/run.go", "patch": "@@ -1,16 +0,0 @@\n-// Copyright 2025 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-//go:build goexperiment.synctest\n-\n-package synctest\n-\n-import \"i...
2025-10-05T22:17:40
vuejs/vue
8a7b02a159dea19ff76c2308bceb9f1ef4738998
b9376eb5ff42e7c5e4a0862465c0fd8d0eee4ece
avoid v-model with .trim/.number updating value when in focus (fix #4392)
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -127,10 +127,12 @@ function genDefaultModel (\n valueExpression = number || type === 'number'\n ? `_n(${valueExpression})`\n : valueExpression\n+\n let code = genAssignmentCode(value, valueExpression)\n if (isNative && ne...
2016-12-08T15:56:30
denoland/deno
eea93eb08a7c059fd72fecceaa2d50a831f8c75a
c76c3f7c138e05227931ab82665a8c5b35da3153
fix(cache): cache and uninstall are package manager subcommands (#30613)
[ { "path": "cli/factory.rs", "patch": "@@ -1264,6 +1264,8 @@ fn new_workspace_factory_options(\n is_package_manager_subcommand: matches!(\n flags.subcommand,\n DenoSubcommand::Install(_)\n+ | DenoSubcommand::Uninstall(_)\n+ | DenoSubcommand::Cache(_)\n | DenoSubcommand::...
2025-09-04T18:11:37
golang/go
ac2ec82172799b88c057bb9ded6fe24e7909e860
e74b224b7c7b7511fe37686d81a6e33d40fdeb17
runtime: bump thread count slack for TestReadMetricsSched This test is *still* flaky, but it appears to be just mayMoreStackPreempt and the thread count *occasionally* exceeds the original (and arbitrary) thread count slack by exactly 1. Bump the thread count slack by one. We can investigate further and bump it again...
[ { "path": "src/runtime/testdata/testprog/schedmetrics.go", "patch": "@@ -84,7 +84,12 @@ func SchedMetrics() {\n \n \t// threadsSlack is the maximum number of threads left over\n \t// from the runtime (sysmon, the template thread, etc.)\n-\tconst threadsSlack = 4\n+\t// Certain build modes may also cause the...
2025-10-03T16:23:10
vuejs/vue
9cfd63a7d08c1eba029c8bd7463b3047c3347826
28ec3c7709b9d3cf18bfd1b2cbf6f1f2192d2ba4
fix weex tests
[ { "path": "test/weex/compiler/compile.spec.js", "patch": "@@ -3,28 +3,28 @@ import { compile } from '../../../packages/weex-template-compiler'\n describe('compile basic', () => {\n it('should be compiled', () => {\n const { render, staticRenderFns, errors } = compile(`<div>{{hi}}</div>`)\n- expect(...
2016-12-07T21:48:29