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
0e92f1a312a401058520bc07e8dbf9e7eed2e444
f408a502e04c2aa465a8eadeedbaddabc05563fd
fix(ext/node): make Buffer work with resizable ABs (#29578)
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -993,9 +993,7 @@ function fromArrayBuffer(obj, byteOffset, length) {\n throw new codes.ERR_BUFFER_OUT_OF_BOUNDS(\"offset\");\n }\n \n- if (length === undefined) {\n- length = maxLength;\n- } else {\n+ if (length !== undefined) {\n ...
2025-06-03T09:45:39
mrdoob/three.js
534737d242a82239d7e89457ba6005810a361153
0b91656c4f7c89ad9333279fc9ff1659a9841793
Nodes: Fix `viewportCoordinate` build (#27566)
[ { "path": "examples/jsm/nodes/display/ViewportNode.js", "patch": "@@ -59,8 +59,6 @@ class ViewportNode extends Node {\n \n \t\tconst scope = this.scope;\n \n-\t\tif ( scope === ViewportNode.COORDINATE ) return;\n-\n \t\tlet output = null;\n \n \t\tif ( scope === ViewportNode.RESOLUTION ) {", "additions"...
2024-01-15T15:12:40
golang/go
e81eac19d30f373496cd1d08ce2f89c0469a21fd
6fbad4be75e7746512bbe55794694ed788ea5c5b
hash/crc32: fix incorrect checksums with avx512+race CRC value loaded from incorrect register, which happened to line up with actual register on default compile. Therefore failures would only show up with -race. Add regression test with longer payloads. Fix regression from CL 689435. Fixes #74767. Change-Id: Ib63d...
[ { "path": "src/hash/crc32/crc32_amd64.s", "patch": "@@ -173,11 +173,11 @@ TEXT ·ieeeCLMUL(SB),NOSPLIT,$0\n \tCMPQ CX, $1024\n \tJL useSSE42\n \n-\t// Use AVX512\n-\tVPXORQ Z0, Z0, Z0\n-\tVMOVQ AX, X0\n+\t// Use AVX512. Zero upper and Z10 and load initial CRC into lower part of Z10.\n+\tVPXORQ Z1...
2025-07-28T15:26:52
vuejs/vue
f86a47d02ee695fae7c7a14e5d66e2b5914769dc
7a3261115fa181871b7ddf8fcac758fb189ecff0
fix transition-mode on keyed normal elements
[ { "path": "src/platforms/web/runtime/components/transition-control.js", "patch": "@@ -17,7 +17,10 @@ export default {\n render () {\n const oldChild = this._vnode\n const newChild = this.$slots.default[0]\n- if (oldChild && oldChild.data && oldChild.tag !== newChild.tag) {\n+ if (oldChild &&...
2016-06-03T23:46:35
mrdoob/three.js
0b91656c4f7c89ad9333279fc9ff1659a9841793
7a47f0e691969dbc8bc3149228cb230bf270df9d
WebGPURenderer: Fix `BachedMesh` coordinate system in case of `WebGLBackend` (#27567)
[ { "path": "examples/jsm/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -2,6 +2,8 @@\n import 'https://greggman.github.io/webgpu-avoid-redundant-state-setting/webgpu-check-redundant-state-setting.js';\n //*/\n \n+import { WebGPUCoordinateSystem } from 'three';\n+\n import { GPUFeatureName, GPUTextureFormat...
2024-01-15T15:11:41
denoland/deno
fc02cf6a1bc1537eca669bb0f5ad4561fde1793b
cb1e8a87a5acd939d35e0408b24597f8947c8a55
fix(ext/node): various `node:sqlite` fixes (#29404)
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -9,45 +9,149 @@ use std::ffi::CString;\n use std::ptr::null;\n use std::rc::Rc;\n \n+use deno_core::convert::OptionUndefined;\n+use deno_core::cppgc;\n use deno_core::op2;\n-use deno_core::serde_v8;\n use deno_core::v8;\n+use deno_core::v8_static_str...
2025-06-02T17:44:52
golang/go
6fbad4be75e7746512bbe55794694ed788ea5c5b
5045fdd8ff8769c34e837fbfb0894a72dfa73b4d
cmd/compile: remove no-longer-necessary call to calculateDepths We now calculate depths by default, no need to ask. All calls were removed in CL 680775 when that CL was written, but an additional call appeared between then and submitting the CL. Oops. Another case for which a presubmit check would help. Fixes #74762...
[ { "path": "src/cmd/compile/internal/ssa/likelyadjust.go", "patch": "@@ -15,7 +15,7 @@ type loop struct {\n \t// Next three fields used by regalloc and/or\n \t// aid in computation of inner-ness and list of blocks.\n \tnBlocks int32 // Number of blocks in this loop but not within inner loops\n-\tdepth int1...
2025-07-25T21:15:50
mrdoob/three.js
2ba547da88f9b875b4f85db6074b25d8d39d8779
329f9f0fb7c60822a04cf1c91dd5232dcd9aaa2c
WebGLProgram: Improve formatting of error log. (#27565)
[ { "path": "src/renderers/webgl/WebGLProgram.js", "patch": "@@ -966,7 +966,8 @@ function WebGLProgram( renderer, cacheKey, parameters, bindingStates ) {\n \t\t\t\t\tconsole.error(\n \t\t\t\t\t\t'THREE.WebGLProgram: Shader Error ' + gl.getError() + ' - ' +\n \t\t\t\t\t\t'VALIDATE_STATUS ' + gl.getProgramParam...
2024-01-15T10:13:50
vuejs/vue
d3547f323ce3d9bbfae103f7df7447918e17a98e
d237aabc263110ab1eb89c5f9b4a64f8633620d3
more proper fix for same-key different-tag children handling
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -105,13 +105,13 @@ function prepatch (\n oldVnode: MountedComponentVNode,\n vnode: MountedComponentVNode\n ) {\n- const { listeners, propsData, children } = vnode.componentOptions\n+ const options = vnode.componentOptions\n vnode.child = ol...
2016-06-02T19:21:22
denoland/deno
cb1e8a87a5acd939d35e0408b24597f8947c8a55
4d47fcac554b7b79b985439b3f610f7d14ed1a28
fix(ext/node): return `undefined` instead of `null` in sqlite (#29567) <!-- Before submitting a PR, please read https://docs.deno.com/runtime/manual/references/contributing 1. Give the PR a descriptive title. Examples of good title: - fix(std/http): Fix race condition in server - docs(console): Update docs...
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -238,6 +238,7 @@ impl DatabaseSync {\n // via the constructor. An exception is thrown if the database is\n // already opened.\n #[fast]\n+ #[undefined]\n fn open(&self, state: &mut OpState) -> Result<(), SqliteError> {\n if self.conn.bor...
2025-06-02T15:00:23
golang/go
5045fdd8ff8769c34e837fbfb0894a72dfa73b4d
d28b27cd8e612f3e3e6ffcfb7444a4e8829dbb48
cmd/compile: fix containsUnavoidableCall computation The previous algorithm was incorrect, as it reused the dominatedByCall slice without resetting it. It also used the depth fields even though they were not yet calculated. Also, clean up a lot of the loop detector code that we never use. Always compute depths. It i...
[ { "path": "src/cmd/compile/internal/ssa/likelyadjust.go", "patch": "@@ -12,18 +12,15 @@ type loop struct {\n \theader *Block // The header node of this (reducible) loop\n \touter *loop // loop containing this loop\n \n-\t// By default, children, exits, and depth are not initialized.\n-\tchildren []*loop ...
2025-06-10T21:37:47
mrdoob/three.js
329f9f0fb7c60822a04cf1c91dd5232dcd9aaa2c
a1be53d671b7161ad8479ab47c72de97e34faa68
show which shader caused compilation error (#27553)
[ { "path": "src/renderers/webgl/WebGLProgram.js", "patch": "@@ -966,6 +966,7 @@ function WebGLProgram( renderer, cacheKey, parameters, bindingStates ) {\n \t\t\t\t\tconsole.error(\n \t\t\t\t\t\t'THREE.WebGLProgram: Shader Error ' + gl.getError() + ' - ' +\n \t\t\t\t\t\t'VALIDATE_STATUS ' + gl.getProgramParam...
2024-01-15T10:12:22
denoland/deno
7b7aa8846b6fbc602af40167590e1120a11ac482
02404333f1ae1524054672de2af402be583cdc8c
fix(ext/node): make DatabaseSync `readOnly` optional (#29564) Extracted from https://github.com/denoland/deno/pull/29404
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -36,6 +36,7 @@ struct DatabaseSyncOptions {\n open: bool,\n #[serde(default = \"true_fn\")]\n enable_foreign_key_constraints: bool,\n+ #[serde(default = \"false_fn\")]\n read_only: bool,\n #[serde(default = \"false_fn\")]\n allow_extensi...
2025-06-02T13:10:29
golang/go
d28b27cd8e612f3e3e6ffcfb7444a4e8829dbb48
7b53d8d06ec432b1434b675b96a11526de6e6abe
go/types, types2: use nil to represent incomplete explicit aliases Using Invalid to represent an incomplete alias is problematic since it implies that an error has been reported somewhere. This causes confusion for observers of invalid aliases trying not to emit follow-on errors. This change uses nil instead to repre...
[ { "path": "src/cmd/compile/internal/types2/alias.go", "patch": "@@ -6,7 +6,6 @@ package types2\n \n import (\n \t\"cmd/compile/internal/syntax\"\n-\t\"fmt\"\n )\n \n // An Alias represents an alias type.\n@@ -50,7 +49,7 @@ type Alias struct {\n }\n \n // NewAlias creates a new Alias type with the given type...
2025-06-24T21:16:24
mrdoob/three.js
caff384aa96447c252050f1ca72150771e6a136a
28a7aba17f64ae18be624ef2d46d37ed690bd0a2
WebGPURenderer: PostProcessing fix tone mapping on display nodes (#27557) * disable tone mapping on postprocess quadmesh * typo
[ { "path": "examples/jsm/nodes/display/AfterImageNode.js", "patch": "@@ -109,6 +109,7 @@ class AfterImageNode extends TempNode {\n \t\t//\n \n \t\tconst materialComposed = this._materialComposed || ( this._materialComposed = builder.createNodeMaterial( 'MeshBasicNodeMaterial' ) );\n+\t\tmaterialComposed.tone...
2024-01-13T20:04:27
denoland/deno
02404333f1ae1524054672de2af402be583cdc8c
fb723098a5b9e7a75d66316ab75a1fb147f26f25
fix(ext/node): add back perf_hooks.markResourceTiming (#29562) Adding back a sham for "perf_hooks.markResourceTiming" that was removed by accident in https://github.com/denoland/deno/pull/29323; a test was added too, to ensure it doesn't regress in the future. Closes https://github.com/denoland/deno/issues/29539
[ { "path": "ext/node/polyfills/perf_hooks.js", "patch": "@@ -31,7 +31,7 @@ performance.nodeTiming = {};\n performance.timerify = () => notImplemented(\"timerify from performance\");\n \n // TODO(bartlomieju):\n-performance.timerify = () => {};\n+performance.markResourceTiming = () => {};\n \n function monito...
2025-06-02T12:23:38
mrdoob/three.js
28a7aba17f64ae18be624ef2d46d37ed690bd0a2
1a30c17473b937606a54888b392383f57506cccc
Docs: fix typo :P (#27554)
[ { "path": "docs/api/ar/objects/LOD.html", "patch": "@@ -27,7 +27,7 @@ <h2>مثال للكود</h2>\n \t\t\t\n \t\t// إنشاء كرات مع 3 مستويات من التفاصيل وإنشاء مستويات LOD جديدة لهم\n \t\tfor( let i = 0; i < 3; i++ ) {\n-\t\t\tconst geometry = new THREE.IcosahedronGeometry( 10, 3 - i )\n+\t\t\tconst geometry = new T...
2024-01-13T09:49:47
golang/go
7b53d8d06ec432b1434b675b96a11526de6e6abe
374e3be2eb9b546ef1340f750e343c15a8f87dde
cmd/compile/internal/types2: add loaded state between loader calls and constraint expansion There is a deadlock issue when calling SetConstraint from a lazy loader because the loader is called from resolve(), which is holding a lock on the loaded type. If the loaded type has a generic constraint which refers back to ...
[ { "path": "src/cmd/compile/internal/importer/gcimporter_test.go", "patch": "@@ -673,3 +673,50 @@ type S struct {\n \t}\n \twg.Wait()\n }\n+\n+func TestIssue63285(t *testing.T) {\n+\ttestenv.MustHaveGoBuild(t)\n+\n+\t// This package only handles gc export data.\n+\tif runtime.Compiler != \"gc\" {\n+\t\tt.Ski...
2025-06-13T15:47:57
vuejs/vue
4290cdb6f11b18325fa7807b3ff9f4be10ab2aa7
d40ab0ca8760b9d8ec8be630e2360e6927ba8b3e
fix hydration warning test in phantomjs
[ { "path": "test/unit/modules/vdom/patch/hydration.spec.js", "patch": "@@ -131,7 +131,7 @@ describe('hydration', () => {\n dom.innerHTML = '<div><span>foo</span></div>'\n \n const vm = new Vue({\n- template: '<div><test :msg=\"msg\"></test></div>',\n+ template: '<div><test></test></div>',\n...
2016-06-01T22:52:33
denoland/deno
fb723098a5b9e7a75d66316ab75a1fb147f26f25
656bec86526c932984a41bd06e1fb2c46533921e
fix(ext/node): export StatementSync from `node:sqlite` (#29563) Extracted from https://github.com/denoland/deno/pull/29404 Upgrades deno_core to 0.350.0
[ { "path": "Cargo.lock", "patch": "@@ -1754,9 +1754,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.349.0\"\n+version = \"0.350.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"0feddac570b59ff66ce64e17a84814b6629eb6159e87ba730811a530605dc76...
2025-06-02T11:34:41
mrdoob/three.js
6c7cf52790b5d5089b4939ae56c826d0c30773ef
01f09f81fdcfd09dd7fe9408dc6c43a183545ee0
fix: Update the token pattern for Identifier to load VRMLs from Kicad (#27543) * fix: Update the token pattern for Identifier to load VRML files from Kicad char '-' is allowded to be used inside the identifiers for footprints in Kicad , e.g. 'PIN-01' , 'IC-LABEL-01' * style: Replace '-' with '0x2d' in the patt...
[ { "path": "examples/jsm/loaders/VRMLLoader.js", "patch": "@@ -126,7 +126,7 @@ class VRMLLoader extends Loader {\n \t\t\t// from http://gun.teipir.gr/VRML-amgem/spec/part1/concepts.html#SyntaxBasics\n \n \t\t\tconst RouteIdentifier = createToken( { name: 'RouteIdentifier', pattern: /[^\\x30-\\x39\\0-\\x20\\x...
2024-01-12T10:18:16
golang/go
374e3be2eb9b546ef1340f750e343c15a8f87dde
1aa154621d414c0d9886e581ae058187f5277e60
os/user: user random name for the test user account TestImpersonated and TestGroupIdsTestUser are flaky due to sporadic failures when creating the test user account when running the tests from different processes at the same time. This flakiness can be fixed by using a random name for the test user account. Fixes #7...
[ { "path": "src/os/user/user_windows_test.go", "patch": "@@ -7,6 +7,7 @@ package user\n import (\n \t\"crypto/rand\"\n \t\"encoding/base64\"\n+\t\"encoding/binary\"\n \t\"errors\"\n \t\"fmt\"\n \t\"internal/syscall/windows\"\n@@ -16,11 +17,92 @@ import (\n \t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n+\t\"s...
2025-07-24T13:38:35
vuejs/vue
d40ab0ca8760b9d8ec8be630e2360e6927ba8b3e
2ce08d63cc527968af6fcbb2d5df7f752f27a73b
fix component client-side hydration
[ { "path": "flow/component.js", "patch": "@@ -26,7 +26,7 @@ declare interface Component {\n $isServer: boolean;\n \n // public methods\n- $mount: (el?: Element | string) => Component;\n+ $mount: (el?: Element | string, hydrating?: boolean) => Component;\n $forceUpdate: () => void;\n $destroy: () =>...
2016-06-01T22:20:13
denoland/deno
90528fa9c941562d01ad33d8c0382e7589171a46
1d72dcac252ec567e868c5683601b0ce34d55e9a
fix(ext/node): use primordials in `ext/node/polyfills/_fs/_fs_symlink.ts` (#29547) Towards #24236.
[ { "path": "ext/node/polyfills/_fs/_fs_symlink.ts", "patch": "@@ -1,12 +1,17 @@\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+import { primordials } from \"ext:core/mod.js\";\n \n...
2025-06-02T09:15:21
mrdoob/three.js
5953d4232d5db31c06f370052dfad61016079f2f
66aa8ff136c969246585449eccc3198e752297d3
Editor:Fix determine if colorSpace needs to be modified (#27548)
[ { "path": "editor/js/Sidebar.Material.MapProperty.js", "patch": "@@ -114,7 +114,7 @@ function SidebarMaterialMapProperty( editor, property, name ) {\n \n \t\tif ( texture !== null ) {\n \n-\t\t\tif ( colorMaps[ property ] !== undefined && texture.isDataTexture !== true && texture.colorSpace !== THREE.SRGBCo...
2024-01-12T09:47:22
golang/go
aeb256e98ac479e2b590d79f6237174343934d10
08376e1a9c57d4b07a77d156810d3fec46caba79
cmd/compile: remove unused arg from gorecover We don't need this argument anymore to match up a recover with its corresponding panic. Change-Id: I5d3646cdd766259ee9d3d995a2f215f02e17abc6 Reviewed-on: https://go-review.googlesource.com/c/go/+/685555 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result...
[ { "path": "src/cmd/compile/internal/escape/call.go", "patch": "@@ -192,7 +192,7 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\te.discard(call.X)\n \t\te.discard(call.Y)\n \n-\tcase ir.ODELETE, ir.OPRINT, ir.OPRINTLN, ir.ORECOVERFP:\n+\tcase ir.ODELETE, ir.OPRINT, ir.OPRINTLN, ir.ORECOVER:\n \t\tc...
2025-07-02T17:00:42
vuejs/vue
bb5c102c35cab1bf23cd10aa8cab233a3824447a
068f6270d5ea6359c971955aee8b074b8496faac
fix errorHandler tests
[ { "path": "test/unit/features/global-api/config.spec.js", "patch": "@@ -35,12 +35,15 @@ describe('Global config', () => {\n })\n \n describe('errorHandler', () => {\n- Vue.config.errorHandler = spy\n- const err = new Error()\n- const vm = new Vue({\n- render () { throw err }\n- }).$moun...
2016-06-01T21:14:02
mrdoob/three.js
66aa8ff136c969246585449eccc3198e752297d3
9fb80cf753f75743ccc909ac5dda27d33856ef92
Water2: Fix the error when flowSpeed and other parameters are 0. (#27536)
[ { "path": "examples/jsm/objects/Water2.js", "patch": "@@ -34,14 +34,14 @@ class Water extends Mesh {\n \t\tconst scope = this;\n \n \t\tconst color = ( options.color !== undefined ) ? new Color( options.color ) : new Color( 0xFFFFFF );\n-\t\tconst textureWidth = options.textureWidth || 512;\n-\t\tconst text...
2024-01-10T09:05:46
denoland/deno
1d72dcac252ec567e868c5683601b0ce34d55e9a
01a6379505712be34ebf2cdc874fa7f54a6e9408
fix(ext/node): use primordials in `ext/node/polyfills/internal/process/per_thread.mjs` (#29550) Towards #24236. Replaces JS builtins with equivalent primordial versions.
[ { "path": "ext/node/polyfills/internal/process/per_thread.mjs", "patch": "@@ -1,14 +1,28 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\...
2025-06-02T09:14:44
golang/go
08376e1a9c57d4b07a77d156810d3fec46caba79
c76c3abc5426ab3d183514c834bcd7d6a653ae89
runtime: iterate through inlinings when processing recover() We care about the wrapper-ness of logical frames, not physical frames. Fixes #73916 Fixes #73917 Fixex #73920 Change-Id: Ia17c8390e71e6c0e13e23dcbb7bc7273ef25da90 Reviewed-on: https://go-review.googlesource.com/c/go/+/685375 Reviewed-by: Keith Randall <khr...
[ { "path": "src/runtime/panic.go", "patch": "@@ -1142,18 +1142,21 @@ func gorecover(_ uintptr) any {\n \t\tnonWrapperFrames := 0\n \tloop:\n \t\tfor ; u.valid(); u.next() {\n-\t\t\tswitch u.frame.fn.funcID {\n-\t\t\tcase abi.FuncIDWrapper:\n-\t\t\t\tcontinue\n-\t\t\tcase abi.FuncID_gopanic:\n-\t\t\t\tif u.fr...
2025-07-01T22:29:12
vuejs/vue
068f6270d5ea6359c971955aee8b074b8496faac
eca4ad82031a4f48bc1f14224371e1f3aba9ba5b
test for errorHandler config
[ { "path": "test/unit/features/global-api/config.spec.js", "patch": "@@ -33,4 +33,14 @@ describe('Global config', () => {\n Vue.config.silent = false\n })\n })\n+\n+ describe('errorHandler', () => {\n+ Vue.config.errorHandler = spy\n+ const err = new Error()\n+ const vm = new Vue({\n+ ...
2016-06-01T21:10:24
mrdoob/three.js
9fb80cf753f75743ccc909ac5dda27d33856ef92
2e5df1c6b2c6cd9bdb603a09433e1a742758d0de
WebGPURenderer: partial compute() shader support for WebGL backend (#27367) * compute support * code bot fixes * add StorageBufferAttribute * adapt to storagetBufferAttribute * dynamically realign the size of storage buffer based on backend * compute examples takes too much time to init for puppeteer ...
[ { "path": "examples/jsm/nodes/accessors/BufferAttributeNode.js", "patch": "@@ -67,12 +67,14 @@ class BufferAttributeNode extends InputNode {\n \n \t\tconst nodeType = this.getNodeType( builder );\n \n-\t\tconst nodeUniform = builder.getBufferAttributeFromNode( this, nodeType );\n-\t\tconst propertyName = bu...
2024-01-09T16:20:55
denoland/deno
01a6379505712be34ebf2cdc874fa7f54a6e9408
0a5bf5efd0555a010ec47c22188aa6bf31de1975
fix(ext/node): print warnings to stderr (#29527)
[ { "path": "ext/node/lib.rs", "patch": "@@ -648,6 +648,7 @@ deno_core::extension!(deno_node,\n \"internal/primordials.mjs\",\n \"internal/process/per_thread.mjs\",\n \"internal/process/report.ts\",\n+ \"internal/process/warning.ts\",\n \"internal/querystring.ts\",\n \"internal/readline...
2025-06-02T02:36:47
golang/go
c76c3abc5426ab3d183514c834bcd7d6a653ae89
ebdbfccd989b07a8aef75af5fbe7448f035ee239
encoding/json: fix truncated Token error regression in goexperiment.jsonv2 The jsontext.Decoder.ReadToken method reports a non-EOF error, if the token stream is truncated and does not form a valid JSON value. In contrast, the v1 json.Decoder.Token method would report EOF so long as the input was a prefix of some valid...
[ { "path": "src/encoding/json/stream_test.go", "patch": "@@ -522,3 +522,38 @@ func TestHTTPDecoding(t *testing.T) {\n \t\tt.Errorf(\"Decode error:\\n\\tgot: %v\\n\\twant: io.EOF\", err)\n \t}\n }\n+\n+func TestTokenTruncation(t *testing.T) {\n+\ttests := []struct {\n+\t\tin string\n+\t\terr error\n+\t}{\n+...
2025-07-25T00:10:54
mrdoob/three.js
c46ef180d7424d988ae1ae78ab0a122517dae659
7fa81b3655fbc9f1d2cdfd501198678ed83fea35
GroundedSkybox: Fix UVs being flipped (#27500) * GroundedSkybox: Fix UVs being flipped * fix deepscan issue
[ { "path": "examples/jsm/objects/GroundedSkybox.js", "patch": "@@ -1,4 +1,4 @@\n-import { BackSide, Mesh, MeshBasicMaterial, SphereGeometry, Vector3 } from 'three';\n+import { Mesh, MeshBasicMaterial, SphereGeometry, Vector3 } from 'three';\n \n /**\n * A ground-projected skybox. The height is how far the c...
2024-01-09T09:05:18
vuejs/vue
eca4ad82031a4f48bc1f14224371e1f3aba9ba5b
76b4b8d281289928913bbf9ddd0164dea61b2788
more tests/fixes
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -14,11 +14,11 @@ const emptyNode = new VNode('', {}, [])\n const hooks = ['create', 'update', 'postpatch', 'remove', 'destroy']\n \n function isUndef (s) {\n- return s === undefined\n+ return s == null\n }\n \n function isDef (s) {\n- return s !== undefine...
2016-06-01T20:56:27
denoland/deno
0a5bf5efd0555a010ec47c22188aa6bf31de1975
2cab60f90d7136fde238cab5d407d5edf162e1bc
fix(ext/node): improve getaddrinfo compatibility (#29501) This commit improves the compatibility of `cares_wrap` internal binding and `getaddrinfo` function. `cares_wrap.getaddrinfo` needs to be mocked in test case. This commit enables it, and also fixes the 5th argument of `getaddrinfo`.
[ { "path": "ext/node/polyfills/dns.ts", "patch": "@@ -86,9 +86,8 @@ import {\n AI_ALL as ALL,\n AI_V4MAPPED as V4MAPPED,\n } from \"ext:deno_node/internal_binding/ares.ts\";\n-import {\n- ChannelWrapQuery,\n- getaddrinfo,\n+import cares, {\n+ type ChannelWrapQuery,\n GetAddrInfoReqWrap,\n QueryReq...
2025-06-02T02:34:36
golang/go
91c4f0ccd542a505f72ad0db952f55688851e49e
3636ced112d89da03739fa7d5468c0270addaa28
reflect: avoid a bounds check in stack-constrained code Since CL 682496 we need more stack space to handle bounds checks. The code modified here normally has no bounds checks, but in -N builds it still does and thus uses too much stack. Use unsafe arithmetic to avoid the bounds check. This will hopefully fix some of...
[ { "path": "src/reflect/makefunc.go", "patch": "@@ -8,6 +8,7 @@ package reflect\n \n import (\n \t\"internal/abi\"\n+\t\"internal/goarch\"\n \t\"unsafe\"\n )\n \n@@ -164,13 +165,18 @@ func moveMakeFuncArgPtrs(ctxt *makeFuncCtxt, args *abi.RegArgs) {\n \tfor i, arg := range args.Ints {\n \t\t// Avoid write ba...
2025-07-24T23:41:23
mrdoob/three.js
d75bb9b9c4662c270f58855b547e2b5f312ea400
aea18212096f7a93c8ddc694ea05fb4f15c5ebd9
OrbitControls: Fix offscreen and cleanup (#27522) * fix offscreen canvas and lint * feedbacks * added comment and removed if condition based on feedback
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -1228,7 +1228,7 @@ class OrbitControls extends EventDispatcher {\n \t\t\t\tclientX: event.clientX,\n \t\t\t\tclientY: event.clientY,\n \t\t\t\tdeltaY: event.deltaY,\n-\t\t\t}\n+\t\t\t};\n \n \t\t\tswitch ( mode ) {\n \n@@ -1243,7 +1243,7 @@ cl...
2024-01-09T01:10:39
vuejs/vue
76b4b8d281289928913bbf9ddd0164dea61b2788
fd6a31febfd549ce99d6d4a39cd2c2126933174e
log error stack instead of throwing in watcher
[ { "path": "src/core/observer/watcher.js", "patch": "@@ -8,16 +8,12 @@ import {\n remove,\n isObject,\n parsePath,\n- nextTick,\n _Set as Set\n } from '../util/index'\n \n let uid = 0\n let prevTarget\n \n-/* istanbul ignore next */\n-const defaultErrorHandler = e => nextTick(() => { throw e })\n-\n...
2016-06-01T19:56:53
denoland/deno
e2e4919347808884406491e08acfcf06366daafe
173f26f391cdb43fb3c46a74365619dd77928623
fix(zlib): don't return a smi from crc32 (#29546) Fixes https://github.com/denoland/deno/issues/29545.
[ { "path": "ext/node/ops/zlib/mod.rs", "patch": "@@ -421,7 +421,6 @@ pub fn op_zlib_close_if_pending(\n }\n \n #[op2(fast)]\n-#[smi]\n pub fn op_zlib_crc32(#[buffer] data: &[u8], #[smi] value: u32) -> u32 {\n // SAFETY: `data` is a valid buffer.\n unsafe {", "additions": 0, "deletions": 1, "l...
2025-05-31T00:27:58
mrdoob/three.js
d4e13e525ba7241ed2d788fa549ad969cf611526
f017aa9080b463fc81cf257833302a0e909721f8
WebGPURenderer: Add Offscreen Support (#27520) * add offscreen support * refactor statics webgpu * navigator.gpu should be enough for initial check * fix webgl context ktx2loader * use isAvailable in webgpurenderer * cleanup and should fix pupeeter * return promise * feedbacks * remove unecessa...
[ { "path": "examples/jsm/capabilities/WebGPU.js", "patch": "@@ -1,27 +1,30 @@\n-if ( window.GPUShaderStage === undefined ) {\n+if ( self.GPUShaderStage === undefined ) {\n \n-\twindow.GPUShaderStage = { VERTEX: 1, FRAGMENT: 2, COMPUTE: 4 };\n+\tself.GPUShaderStage = { VERTEX: 1, FRAGMENT: 2, COMPUTE: 4 };\n ...
2024-01-08T23:47:47
golang/go
3636ced112d89da03739fa7d5468c0270addaa28
a6eec8bdc79a89f6001d7788d280b8910c5f1b13
encoding/json: fix extra data regression under goexperiment.jsonv2 When operating under v1 semantics in the v2 implementation, a extra data error should take precedence over any semantic error that could theoretically occur within the value itself. This change only affects code compiled under goexperiment.jsonv2. Fi...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -776,7 +776,8 @@ func (d *decoderState) ReadValue(flags *jsonwire.ValueFlags) (Value, error) {\n \n // CheckNextValue checks whether the next value is syntactically valid,\n // but does not advance the read offset.\n-func (d *decoderState) Check...
2025-07-24T19:16:35
vuejs/vue
1fc251cfa46ef2fe1d63fb2ea9b2dd6d0c01bfca
366188fbdee0340963e790ac3d0475a675e91286
rename errorHandler config
[ { "path": "src/core/config.js", "patch": "@@ -36,7 +36,7 @@ const config: Config = {\n /**\n * Error handler for watcher errors\n */\n- watcherErrorHandler: null,\n+ errorHandler: null,\n \n /**\n * Check if a tag is reserved so that it cannot be registered as a", "additions": 1, "del...
2016-06-01T15:19:16
denoland/deno
173f26f391cdb43fb3c46a74365619dd77928623
5b0da886197e98748ccfccdd2ed96ac149ef3384
chore: fix deno_lib version bump for release and verify Deno binary version outputs expected version (#29540)
[ { "path": "tools/release/01_bump_crate_versions.ts", "patch": "@@ -22,10 +22,12 @@ if (Deno.args.some((a) => a === \"--rc\")) {\n \n await cliCrate.setVersion(version);\n await denoRtCrate.setVersion(version);\n- await denoLibCrate.setVersion(version);\n+ denoLibCrate.folderPath.join(\"version.txt\")....
2025-05-30T17:11:26
mrdoob/three.js
dc9f4c3d78b3447c2cc079c0c8d0299bae14dd0b
1845374cfdc98f9a5fa9daf8a1723fd3cd2ff31e
WebGPURenderer: Remove from Puppeteer exceptionList some examples (#27514) * test pupeeter new webgl support * webgpu_postprocessing_afterimage seems to still get issue * update puppeteer
[ { "path": "test/e2e/puppeteer.js", "patch": "@@ -103,6 +103,7 @@ const exceptionList = [\n \t'webgl2_volume_instancing',\n \t'webgl2_multisampled_renderbuffers',\n \t'webgl_points_dynamic',\n+\t'webgpu_multisampled_renderbuffers',\n \n \t// TODO: implement determinism for setTimeout and setInterval\n \t// c...
2024-01-06T09:14:50
golang/go
a6eec8bdc79a89f6001d7788d280b8910c5f1b13
0fa88dec1e23ceeef9f5719e0f9ccb94766e53e7
encoding/json: reduce error text regressions under goexperiment.jsonv2 There were minor and unnecessary error text changes when v1 was implemented using v2. Reduce divergences if possible. Of the cases reported in #74713, there are no more differences for: v1: json: cannot unmarshal number into Go value of type cha...
[ { "path": "src/encoding/json/decode_test.go", "patch": "@@ -416,6 +416,8 @@ type DoublePtr struct {\n \tJ **int\n }\n \n+type NestedUnamed struct{ F struct{ V int } }\n+\n var unmarshalTests = []struct {\n \tCaseName\n \tin string\n@@ -1213,6 +1215,28 @@ var unmarshalTests = []struct {\n ...
2025-07-24T18:34:18
vuejs/vue
ff9c6b09bba368ecd1f1a0ef8e7b1df843439f84
2e678b87a502a77e3f7cf89aef865d9e85892009
fix svg parsing in IE
[ { "path": "flow/compiler.js", "patch": "@@ -1,5 +1,6 @@\n declare type CompilerOptions = {\n warn?: Function,\n+ isIE?: boolean,\n expectHTML?: boolean,\n preserveWhitespace?: boolean,\n modules?: Array<ModuleOptions>,", "additions": 1, "deletions": 0, "language": "JavaScript" }, { ...
2016-06-01T02:41:56
mrdoob/three.js
a4fbc07b38ec3730346f38a0c7a0059d6c18f69e
589eeb192d972c9b96e802e8a777a6ef9635713e
display offersession promise failure instead of showing console errors (#27492) * display offersession promise failure instead of showing console errors * change log() to warn() for offersession handler
[ { "path": "examples/jsm/webxr/ARButton.js", "patch": "@@ -107,7 +107,12 @@ class ARButton {\n \t\t\t\t\tif ( navigator.xr.offerSession !== undefined ) {\n \n \t\t\t\t\t\tnavigator.xr.offerSession( 'immersive-ar', sessionInit )\n-\t\t\t\t\t\t\t.then( onSessionStarted );\n+\t\t\t\t\t\t\t.then( onSessionStarte...
2024-01-05T15:03:00
denoland/deno
ebccb8a6bac5d893c46be3101c5412470e708849
75762194ffcdd2adb24cd347db0ed3e31ca61e49
fix(ext/http): handle vsock streams in `extract_network_stream` (#29518) Fixes https://github.com/denoland/deno/issues/29517
[ { "path": "Cargo.lock", "patch": "@@ -2072,6 +2072,7 @@ dependencies = [\n \"thiserror 2.0.12\",\n \"tokio\",\n \"tokio-util\",\n+ \"tokio-vsock\",\n ]\n \n [[package]]", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/http/Cargo.toml", "patch": "@@ -57,6 +...
2025-05-30T14:38:15
vuejs/vue
3db3ca5623416318e323cea0a4c9981af0df3087
4179ba0b1c47daff3508b723d7c0c2c0c9f4fb9d
fix ssr tests
[ { "path": "src/core/instance/state.js", "patch": "@@ -63,7 +63,7 @@ function initData (vm: Component) {\n }\n // observe data\n observe(data)\n- data.__ob__.vmCount++\n+ data.__ob__ && data.__ob__.vmCount++\n }\n \n const computedSharedDefinition = {\n@@ -206,8 +206,8 @@ function setData (vm: Compon...
2016-05-31T17:55:42
denoland/deno
ba9c80eda8b1b4b10f19fcdde541915acbf45e7d
342ea09135c314cae53c9467b859f4e6f70ead4c
fix(ext/node): fix function error message in `invalidArgTypeHelper` (#29526) Fixes `parallel/test-buffer-from.js` in daily Node compat tests runs. The test was already enabled in CI but that used a different helper than the daily Node compat tests runners - updated now. ``` divy@divy-macbook deno % deno -A ./tools/no...
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -735,7 +735,7 @@ function invalidArgTypeHelper(input: any) {\n if (input == null) {\n return ` Received ${input}`;\n }\n- if (typeof input === \"function\" && input.name) {\n+ if (typeof input === \"function\") {\n return ` Receiv...
2025-05-30T06:43:22
vuejs/vue
7913a96ccbdeeb2bba7dd5ed073e98935da47088
2a09188e016cb7bbc10c8e09079cd66024a448c0
fix test in phantomjs
[ { "path": "test/unit/features/options/directives.spec.js", "patch": "@@ -92,7 +92,7 @@ describe('Options directives', () => {\n \n it('warn non-existent', () => {\n new Vue({\n- template: '<div v-test=\"a\"></div>'\n+ template: '<div v-test></div>'\n }).$mount()\n expect('Failed to r...
2016-05-29T18:39:48
denoland/deno
342ea09135c314cae53c9467b859f4e6f70ead4c
b2f668550d8034c0fc36193f69e6a898a46a8385
fix(ext/node): stub `getFipsCrypto` to `false` (#29485) This makes Deno act as a non-FIPS compliant build of Node.js to node modules.
[ { "path": "ext/node/polyfills/internal_binding/crypto.ts", "patch": "@@ -1,14 +1,15 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.\n \n-import { notImplemented } from \"ext:deno_node/_utils.ts\";\n-\n export ...
2025-05-30T06:15:03
golang/go
7b5002433026cd1b0d99859bb76af12ec7ced54b
7b9de668bd68f366d87ba50e9aeb1ba1d0bdb8e5
runtime: detect successful recovers differently Use stack unwinding instead of keeping incremental track of the argp of defers that are allowed to recover. It's much simpler, and it lets us get rid of the incremental tracking by wrapper code. (Ripped out in a subsequent CL.) We only need to stack unwind a few frames...
[ { "path": "src/runtime/panic.go", "patch": "@@ -864,6 +864,7 @@ func gopanic(e any) {\n \n \tvar p _panic\n \tp.arg = e\n+\tp.gopanicFP = unsafe.Pointer(sys.GetCallerSP())\n \n \trunningPanicDefers.Add(1)\n \n@@ -1086,27 +1087,86 @@ func (p *_panic) initOpenCodedDefers(fn funcInfo, varp unsafe.Pointer) bool...
2025-07-01T21:45:45
vuejs/vue
d91eda8556f8148c12505a662fab0d4bf39e4b97
05235942a7368e9f34ced9e9eb5001df83682c40
add options el tests (#2967) * add options el tests ref: #2872 * fix error at phantomjs env
[ { "path": "test/unit/features/options/el.spec.js", "patch": "@@ -0,0 +1,65 @@\n+import Vue from 'vue'\n+\n+describe('Options el', () => {\n+ it('basic usage', () => {\n+ const el = document.createElement('div')\n+ el.innerHTML = '<span>{{message}}</span>'\n+ const vm = new Vue({\n+ el,\n+ ...
2016-05-27T23:17:57
denoland/deno
b2f668550d8034c0fc36193f69e6a898a46a8385
2831e5c5104761970198b9a32d11af09a427d022
fix(ext/node): Buffer write OOB checks (#29524) Enables `parallel/test-buffer-write.js` test
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -794,6 +794,15 @@ Buffer.prototype.asciiSlice = function asciiSlice(offset, length) {\n };\n \n Buffer.prototype.asciiWrite = function asciiWrite(string, offset, length) {\n+ // deno-lint-ignore prefer-primordials\n+ if (offset < 0 || offset...
2025-05-30T05:58:22
mrdoob/three.js
8286a475fd8ee00ef07d1049db9bb1965960057b
cb6c6bc7a666f6379fbfd4c7ba7afbd911a8b79d
typo fixes for installation (#27499) * typo fixes for installation * typo add missing word
[ { "path": "docs/manual/en/introduction/Installation.html", "patch": "@@ -87,7 +87,7 @@ <h3>Development</h3>\n \t\t\t\t\t\t\tnpm uses <i>package.json</i> to describe which versions of each dependency you've installed. If you have other people working on the project with you, they can install the original ver...
2024-01-04T09:41:13
golang/go
3024785b929cd8a740da87e1c24aef2c9b30e019
741a19ab4197fb528f8d7f7d8a73d3db3ef99355
cmd/compile,runtime: remember idx+len for bounds check failure with less code Currently we must put the index and length into specific registers so we can call into the runtime to report a bounds check failure. So a typical bounds check call is something like: MOVD R3, R0 MOVD R7, R1 CALL runtime.panicIndex or, ...
[ { "path": "src/cmd/compile/internal/ir/symtab.go", "patch": "@@ -37,6 +37,8 @@ type symsStruct struct {\n \tMsanmove *obj.LSym\n \tNewobject *obj.LSym\n \tNewproc *obj.LSym\n+\tPanicBounds *obj.LSym\n+\tPanicExtend *obj.LSym\n \tPanicdivide *obj.LSym\n \tPanicshi...
2025-06-18T21:50:23
vuejs/vue
05235942a7368e9f34ced9e9eb5001df83682c40
c6d749b268fbaa988216803d76967157fba8404e
add options template tests (#2968) * add options template tests ref: #2872 * fix runtime error and warning optimaize * update invalid template
[ { "path": "src/entries/web-runtime-with-compiler.js", "patch": "@@ -26,7 +26,10 @@ Vue.prototype.$mount = function (el: string | Element): Component {\n } else if (template.nodeType) {\n template = template.innerHTML\n } else {\n- warn('invalid template option:' + template, this)\...
2016-05-27T23:17:03
mrdoob/three.js
67dfcd8b35bd0b6365945a316c1838f682125328
de6dd45d7e5aa58fed0fbc1dbe53def3402b39cc
WebGPURenderer: fix renderContext tracking in WebGLBackend (#27490) Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/renderers/webgl/WebGLBackend.js", "patch": "@@ -172,9 +172,6 @@ class WebGLBackend extends Backend {\n \n \t\t}\n \n-\n-\t\tthis._currentContext = renderContext;\n-\n \t\tconst occlusionQueryCount = renderContext.occlusionQueryCount;\n \n \t\tif ( occlusionQueryCount > 0 ) {\n@@ -355...
2024-01-04T03:09:44
golang/go
c641900f72a595ff2e826367b64e3e418c265409
d71d8aeafd7aa5c2ff3da6a782acdd573a0409af
cmd/compile: prefer base.Fatalf to panic in dwarfgen Updates a few spots which call `panic` to instead call `base.Fatalf`. Change-Id: I30b73c7994caa647245b0e253f20e0b88185e644 GitHub-Last-Rev: b3839bbe424294f92a1f9448e5e0ac074e722e4d GitHub-Pull-Request: golang/go#74616 Reviewed-on: https://go-review.googlesource.com...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -203,7 +203,7 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t\t\t\tcontinue\n \t\t\t}\n \t\t\tif n.Class != ir.PPARAMOUT || !n.IsOutputParamInRegisters() {\n-\t\t\t\tpanic(\"invalid ir.Name on debug...
2025-07-14T22:28:59
vuejs/vue
c6d749b268fbaa988216803d76967157fba8404e
efd589e92fc6e6de3cbeb8a85e61a6a14abfc829
bump dependencies and fix toEqual matcher in Safari
[ { "path": "package.json", "patch": "@@ -41,44 +41,45 @@\n },\n \"homepage\": \"https://github.com/vuejs/vue#readme\",\n \"devDependencies\": {\n- \"babel-core\": \"6.8.x\",\n- \"babel-eslint\": \"6.0.x\",\n- \"babel-loader\": \"6.2.x\",\n- \"babel-plugin-coverage\": \"1.0.x\",\n- \"babe...
2016-05-27T23:16:14
denoland/deno
2831e5c5104761970198b9a32d11af09a427d022
3930dc112c21106e38009d88717b0dddd1f44341
fix(vendor): store remote version metadata checksum in vendor folder to ensure lockfile uses that (#29433)
[ { "path": "Cargo.lock", "patch": "@@ -1678,9 +1678,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_cache_dir\"\n-version = \"0.22.0\"\n+version = \"0.22.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"904c3100bb8dff129430cf603f7846db02cfa2d22dce6b73ed80d34814cc...
2025-05-30T03:46:15
mrdoob/three.js
de6dd45d7e5aa58fed0fbc1dbe53def3402b39cc
aeb40de3859505ee249fd573830a1bbb99b5d685
Examples: Fix `webgpu_morphtargets_face` (#27489)
[ { "path": "examples/webgpu_morphtargets_face.html", "patch": "@@ -75,6 +75,7 @@\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio );\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n \t\t\t\trenderer.toneMapping = THREE.ACESFilmicToneMapping;\n+\t\t\t\trenderer.setAnimationLoop(...
2024-01-03T08:06:31
golang/go
bd04f65511791860276f2f3f982133f7be007448
5c8624a396d1c0aa4f436d17044330bc931d5fbd
internal/runtime/exithook: fix a typo That is the say -> That is to say Change-Id: I4a19d4c500103e16e6ae55f41a9fbdddd4bb84a8 GitHub-Last-Rev: 571d49ab8e6d81ac9db8b47d89118fb74bd3f2f6 GitHub-Pull-Request: golang/go#74741 Reviewed-on: https://go-review.googlesource.com/c/go/+/690195 Reviewed-by: Michael Knyszek <mknysz...
[ { "path": "src/internal/runtime/exithook/hooks.go", "patch": "@@ -8,7 +8,7 @@\n // from a safe context (e.g. not an error/panic path or signal\n // handler, preemption enabled, allocation allowed, write barriers\n // allowed, etc), and that the exit function F will be invoked under\n-// similar circumstance...
2025-07-24T13:58:50
vuejs/vue
b370eacfce0ddf4ee8f4eef9e1a840a701985780
cc06868882409410f63a4b2985d4245d44c58dc8
fix unit tests in IE9
[ { "path": "package.json", "patch": "@@ -49,6 +49,7 @@\n \"babel-preset-es2015-rollup-vue\": \"1.1.x\",\n \"babel-preset-flow-vue\": \"1.0.x\",\n \"chromedriver\": \"2.21.x\",\n+ \"classlist-polyfill\": \"1.0.x\",\n \"codecov.io\": \"0.1.x\",\n \"cross-spawn\": \"2.2.x\",\n \"entit...
2016-05-26T23:07:44
denoland/deno
4a80e1d29ba332595051bbb92b93ba02dcd8042c
b27f88239d33e2bf0b3de44d7740360cff8685da
fix(ext/node): correct `kMaxLength` value of `node:buffer` (#29504)
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -113,7 +113,7 @@ float32Array[0] = -1; // 0xBF800000\n // check this with `os.endianness()` because that is determined at compile time.\n export const bigEndian = uInt8Float32Array[3] === 0;\n \n-export const kMaxLength = 2147483647;\n+export ...
2025-05-30T02:37:34
mrdoob/three.js
aeb40de3859505ee249fd573830a1bbb99b5d685
d28e94e2088800fb169acc914eea8542ce78ab1a
WebGPURenderer: MSAA, Postprocessing and Wireframe support in the WebGL Backend (#27473) * support material.wireframe in webgl backend * fix reattach framebuffer, support msaa and wireframe demo * fix depth samples === 0 * cleanup * more cleanup * more cleanup to the webgl pipeline * postprocessing s...
[ { "path": "examples/files.json", "patch": "@@ -367,7 +367,8 @@\n \t\t\"webgpu_tsl_editor\",\n \t\t\"webgpu_tsl_transpiler\",\n \t\t\"webgpu_video_panorama\",\n-\t\t\"webgpu_postprocessing_afterimage\"\n+\t\t\"webgpu_postprocessing_afterimage\",\n+\t\t\"webgpu_multisampled_renderbuffers\"\n \t],\n \t\"webaud...
2024-01-03T08:00:34
golang/go
5c8624a396d1c0aa4f436d17044330bc931d5fbd
44d73dfb4e5f80998dc0276e239e3e860c8d9e91
cmd/internal/goobj: make error output clear Change-Id: Ic8510037e5d745f3c9f1b9c203439d3fe2e2d5a5 GitHub-Last-Rev: 4101a1595bd542bec8c20e4332c884125ee57aff GitHub-Pull-Request: golang/go#74703 Reviewed-on: https://go-review.googlesource.com/c/go/+/689515 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: K...
[ { "path": "src/cmd/internal/goobj/mkbuiltin.go", "patch": "@@ -78,7 +78,7 @@ func mkbuiltin(w io.Writer) {\n \t\t\t\tcontinue\n \t\t\t}\n \t\t\tif decl.Tok != token.VAR {\n-\t\t\t\tlog.Fatal(\"unhandled declaration kind\", decl.Tok)\n+\t\t\t\tlog.Fatal(\"unhandled declaration kind: \", decl.Tok)\n \t\t\t}\n...
2025-07-22T15:12:58
vuejs/vue
2421265f61eab9a50fc1b35f4727e7bd5bb32aa4
1c6325367e291b358113cfb24f3567d3840212b1
tests for parent, name and mixins (#2959) * tests for parent, name and mixins * split mixin test case into to, prefixed test suites
[ { "path": "test/unit/features/options/mixins.spec.js", "patch": "@@ -0,0 +1,90 @@\n+import Vue from 'vue'\n+const mergeOptions = Vue.util.mergeOptions\n+\n+describe('Options mixins', () => {\n+ it('vm should have options from mixin', () => {\n+ const mixin = {\n+ directives: {\n+ c: {}\n+ ...
2016-05-26T22:11:56
denoland/deno
248d038ef65cca43e2728246fbca15db8c3dc9a9
dacfd23b8747a1d14a146086826d90fb0448ca5b
fix(otel): flush data when terminating signal is received (#29515) This commit adds signal handlers that flush telemetry data before the process is terminated.
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -770,9 +770,87 @@ pub fn init(\n })\n .map_err(|_| deno_core::anyhow::anyhow!(\"failed to set otel globals\"))?;\n \n+ setup_signal_handlers();\n Ok(())\n }\n \n+#[cfg(unix)]\n+fn setup_signal_handlers() {\n+ use tokio::signal::unix::SignalKind;\n+\...
2025-05-29T23:42:33
mrdoob/three.js
d28e94e2088800fb169acc914eea8542ce78ab1a
28f610df9d9fac02c84895dfc054ab2612241f0a
WebGPURenderer: MeshSSSPhysicalNodeMaterial (#27488) * Add MeshSSSPhysicalNodeMaterial * add `webgpu_materials_sss` example * update title * fix from scanning * fix old property name * update default values
[ { "path": "examples/files.json", "patch": "@@ -346,6 +346,7 @@\n \t\t\"webgpu_loader_gltf_sheen\",\n \t\t\"webgpu_loader_materialx\",\n \t\t\"webgpu_materials\",\n+\t\t\"webgpu_materials_sss\",\n \t\t\"webgpu_materials_video\",\n \t\t\"webgpu_materialx_noise\",\n \t\t\"webgpu_multiple_rendertargets\",", ...
2024-01-03T07:23:04
golang/go
da8b50c83087897e2a8abef2d8909253f1fb4f23
6669aa3b14d98d90929ca860421e5308374b0f46
cmd/doc: delete Users should not invoke "go tool doc" directly, but should instead run "go doc". Remove "cmd/doc" because it no longer invokes the "doc" tool but incorporates its logic directly. Fixes #74667 Change-Id: I357a3d7e0ca075f028df66e34951a41354c08941 Reviewed-on: https://go-review.googlesource.com/c/go/+/6...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -2,5 +2,10 @@\n \n ### Go command {#go-command}\n \n+<!-- go.dev/issue/74667 -->\n+`cmd/doc`, and `go tool doc` have been deleted. `go doc` can be used as\n+a replacement for `go tool doc`: it takes the same flags and arguments and\n+has the same behavior.\n+\n ...
2025-07-23T15:25:14
vuejs/vue
dc76830b7b42eb214a82e6e925ee3118848987b0
056cb7f295502407694b8b22c09a6e38fff0e61e
fix test error in phantomjs
[ { "path": "test/unit/features/directives/model-text.spec.js", "patch": "@@ -129,6 +129,9 @@ describe('Directive v-model text', () => {\n \n it('warn invalid tag', () => {\n new Vue({\n+ data: {\n+ test: 'foo'\n+ },\n template: '<div v-model=\"test\"></div>'\n }).$mount()\n ...
2016-05-26T17:58:10
mrdoob/three.js
564e673db91bbf4cbaad426bbe2232fb20b32cea
17d8eee2ae861732657e15451c5ac7953316bc2f
Examples: SVGLoader - fix triangle segment uv coordinates (#27485)
[ { "path": "examples/jsm/loaders/SVGLoader.js", "patch": "@@ -2924,8 +2924,8 @@ class SVGLoader extends Loader {\n \t\t\taddVertex( currentPointL, u1, 0 );\n \n \t\t\taddVertex( lastPointR, u0, 1 );\n-\t\t\taddVertex( currentPointL, u1, 1 );\n-\t\t\taddVertex( currentPointR, u1, 0 );\n+\t\t\taddVertex( curre...
2024-01-02T14:06:29
denoland/deno
f146e2799309eefe71d86bd6286ac219847ad1d7
833fbfd3adca8ca8deb72f8b1265b7ad78e6154c
ci: fix features for sys_traits in deno_npm_installer (#29514) See https://github.com/denoland/deno/actions/runs/15332901764/job/43143698992. --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "Cargo.lock", "patch": "@@ -2131,7 +2131,7 @@ dependencies = [\n \n [[package]]\n name = \"deno_lib\"\n-version = \"2.4.0\"\n+version = \"0.23.0\"\n dependencies = [\n \"capacity_builder\",\n \"deno_error\",", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path":...
2025-05-29T21:17:15
golang/go
6669aa3b14d98d90929ca860421e5308374b0f46
26338a7f691b45017168b6523c95d4578a2cfd4d
runtime: randomize heap base address During initialization, allow randomizing the heap base address by generating a random uint64 and using its bits to randomize various portions of the heap base address. We use the following method to randomize the base address: * We first generate a random heapArenaBytes aligned a...
[ { "path": "src/internal/goexperiment/exp_randomizedheapbase64_off.go", "patch": "@@ -0,0 +1,8 @@\n+// Code generated by mkconsts.go. DO NOT EDIT.\n+\n+//go:build !goexperiment.randomizedheapbase64\n+\n+package goexperiment\n+\n+const RandomizedHeapBase64 = false\n+const RandomizedHeapBase64Int = 0", "ad...
2025-05-21T02:03:44
vuejs/vue
6b4a617e6da44c0194355414117fbd9e303b960a
34b37a62ec07bc65c995a0e80b9baaabf76358b4
Fix render codegen bug (#2954)
[ { "path": "src/compiler/codegen.js", "patch": "@@ -225,6 +225,9 @@ function genText (text: ASTText | ASTExpression): string {\n }\n \n function genRender (el: ASTElement): string {\n+ if (!el.renderMethod) {\n+ return 'void 0'\n+ }\n const children = genChildren(el)\n return `${el.renderMethod}(${\...
2016-05-26T14:31:49
mrdoob/three.js
17d8eee2ae861732657e15451c5ac7953316bc2f
3c1a47a4cb526dc6195dae63130b4107cb2cbf54
Fix delete geometry causing the model to disappear (#27484)
[ { "path": "src/objects/BatchedMesh.js", "patch": "@@ -600,7 +600,7 @@ class BatchedMesh extends Mesh {\n \t\tconst active = this._active;\n \t\tif ( active[ id ] === false ) {\n \n-\t\t\treturn this;\n+\t\t\treturn null;\n \n \t\t}\n \n@@ -643,7 +643,7 @@ class BatchedMesh extends Mesh {\n \t\tconst active ...
2024-01-02T09:44:16
denoland/deno
833fbfd3adca8ca8deb72f8b1265b7ad78e6154c
644efa157e80e9e278f145a1e8863762e9ad7280
ci: fix features for nix in permissions/Cargo.toml (#29511)
[ { "path": "runtime/permissions/Cargo.toml", "patch": "@@ -37,7 +37,7 @@ winapi = { workspace = true, features = [\"commapi\", \"knownfolders\", \"mswsock\", \"\n windows-sys = { workspace = true, features = [\"Win32_Storage_FileSystem\"] }\n \n [target.'cfg(unix)'.dependencies]\n-nix = { workspace = true }\...
2025-05-29T20:26:37
golang/go
26338a7f691b45017168b6523c95d4578a2cfd4d
8587ba272ede9b6607ec06822e743db71f3ba563
cmd/compile: use better fatal message for staticValue1 So the position of the wrong assignment statement will be reported, instead of using incorrect base.Pos one. Notice while fixing issue #73823. Change-Id: I53f240bf99d11b5f5082ee4ca0903d9f099881b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/675495 LUCI...
[ { "path": "src/cmd/compile/internal/ir/expr.go", "patch": "@@ -912,12 +912,12 @@ FindRHS:\n \t\t\t\tbreak FindRHS\n \t\t\t}\n \t\t}\n-\t\tbase.Fatalf(\"%v missing from LHS of %v\", n, defn)\n+\t\tbase.FatalfAt(defn.Pos(), \"%v missing from LHS of %v\", n, defn)\n \tdefault:\n \t\treturn nil\n \t}\n \tif rhs...
2025-05-22T13:57:33
vuejs/vue
cb915d012074e79b9f81a758ed0253ba4d98ebc4
5594a7cd3d2da61f06f89e888c6d6c810bbf4684
fix linting issues
[ { "path": "src/core/instance/render.js", "patch": "@@ -4,7 +4,7 @@ import config from '../config'\n import VNode, { emptyVNode } from '../vdom/vnode'\n import { normalizeChildren } from '../vdom/helpers'\n import {\n- warn, bind, remove, extend, isObject, toObject,\n+ warn, bind, remove, isObject, toObjec...
2016-05-25T00:52:59
mrdoob/three.js
3f19a059c875a7f8621ff5b3cb64efab42971459
1d3895dcff6cb8c6241d8c608578eff5e84598a7
WebGPURenderer: Support KTX Compressed texture in the WebGL Backend (#27463) * wip * cleanup webgl backend * cleanup and add silentError * cleanup WebGLTextureUtils * move textures to textureutils * remove handling error in hasFeatre
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -126,11 +126,11 @@ class KTX2Loader extends Loader {\n \n \t\t\tthis.workerConfig = {\n \t\t\t\tastcSupported: renderer.hasFeature( 'texture-compression-astc' ),\n-\t\t\t\tetc1Supported: false,\n+\t\t\t\tetc1Supported: renderer.hasFeature( 'textur...
2023-12-31T18:25:43
denoland/deno
6f831d10353fa723c2024cc3d0c5a645cba607d1
17a628379d1b87953a5e848ee4b2c4f97f83681d
fix: `--frozen` flag missing from several subcommands (#29508) Closes https://github.com/denoland/deno/issues/29498
[ { "path": "cli/args/flags.rs", "patch": "@@ -1748,6 +1748,7 @@ Or multiple dependencies at once:\n )\n .arg(add_dev_arg())\n .arg(allow_scripts_arg())\n+ .args(lock_args())\n .args(default_registry_args())\n })\n }\n@@ -1781,13 +1782,15 @@ You can remove multiple dependencies ...
2025-05-29T15:26:24
golang/go
8587ba272ede9b6607ec06822e743db71f3ba563
cae45167b79ec3838f0cabb19394bcd99810f79a
cmd/cgo: compare malloc return value to NULL instead of literal 0 Follow the pattern used in the other _cgoPREFIX_Cfunc* functions. This also avoids a -Wzero-as-null-pointer-constant warning when compiling with g++. Change-Id: I95ac8842df048105f4c738f3603136d9cfa2dfdc Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/cmd/cgo/out.go", "patch": "@@ -1812,7 +1812,7 @@ void _cgoPREFIX_Cfunc__Cmalloc(void *v) {\n \tvoid *ret;\n \t_cgo_tsan_acquire();\n \tret = malloc(a->p0);\n-\tif (ret == 0 && a->p0 == 0) {\n+\tif (ret == NULL && a->p0 == 0) {\n \t\tret = malloc(1);\n \t}\n \ta->r1 = ret;", "additions": 1...
2025-05-28T09:26:17
vuejs/vue
6195742c2b23b33bb768e50caaf3dce8ca4b6a08
8c8eaea0fb0c68fe2fc594ce41d7295681245a8c
fix v-show transition on appear
[ { "path": "src/platforms/web/runtime/directives/show.js", "patch": "@@ -6,7 +6,7 @@ import { enter, leave } from '../modules/transition'\n export default {\n bind (el: HTMLElement, { value }: VNodeDirective, vnode: VNodeWithData) {\n const transition = getTransition(vnode)\n- if (value && transitio...
2016-05-24T22:12:10
mrdoob/three.js
eda87b223e41dd4a6d5d1cc96c576d15953372af
4326c9fab90d7893b4f8dd6601c69853629d7bbb
WebGPURenderer: Fix Renderer `dispose()` (#27471) * fix dispose * temporary remove _properties
[ { "path": "examples/jsm/renderers/common/DataMap.js", "patch": "@@ -45,7 +45,7 @@ class DataMap {\n \n \tdispose() {\n \n-\t\tthis.data.clear();\n+\t\tthis.data = new WeakMap();\n \n \t}\n ", "additions": 1, "deletions": 1, "language": "JavaScript" }, { "path": "examples/jsm/renderers/co...
2023-12-30T15:20:21
denoland/deno
17a628379d1b87953a5e848ee4b2c4f97f83681d
0f7d15dc8688bbe32224756578c42953eff7bb89
fix(ext/console): console.group indents two spaces (#29486) Since `DEFAULT_INDENT` is already two spaces, incrementing `indentLevel` by 2 was causing each group to indent by **four** spaces. Indenting by two spaces matches the behavior Node and Bun.
[ { "path": "ext/console/01_console.js", "patch": "@@ -3401,14 +3401,14 @@ class Console {\n if (label.length > 0) {\n this.log(...new SafeArrayIterator(label));\n }\n- this.indentLevel += 2;\n+ this.indentLevel++;\n };\n \n groupCollapsed = this.group;\n \n groupEnd = () => {\n ...
2025-05-29T14:20:43
mrdoob/three.js
dfbee3c483d9eb39529161a35650e369c5e77a35
2f731051b896a5ac438d35e797f48d3b611de8e3
OrbitControls: fix pinch zoom behaviour (#27446) Signed-off-by: Guilherme Avila <3927951+sciecode@users.noreply.github.com>
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -483,6 +483,8 @@ class OrbitControls extends EventDispatcher {\n \t\tconst pointers = [];\n \t\tconst pointerPositions = {};\n \n+\t\tlet controlActive = false;\n+\n \t\tfunction getAutoRotationAngle( deltaTime ) {\n \n \t\t\tif ( deltaTime !=...
2023-12-28T02:58:01
golang/go
cae45167b79ec3838f0cabb19394bcd99810f79a
2ddf542e4c30b2d4886482c44b57259f5b461158
go/types, types2: better error messages for certain type mismatches When an untyped operand of a (typically binary) operation does not match the type of the operand and an implicit conversion is not possible, the error message should report a "type mismatch". The type-checkers mostly did so, but not for untyped numer...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -895,6 +895,10 @@ func (check *Checker) matchTypes(x, y *operand) {\n \t\tif isTyped(x.typ) && isTyped(y.typ) {\n \t\t\treturn false\n \t\t}\n+\t\t// A numeric type can only convert to another numeric type.\n+\t\tif allNumeric(x.typ) != allNu...
2025-06-18T00:09:27
vuejs/vue
48f22c9b17a9def00dcfa4899fee9e60c8933dbc
0a15d9ee27a9314c0192c6174509a230279ed344
fix flow error
[ { "path": "src/core/vdom/vnode.js", "patch": "@@ -11,6 +11,7 @@ export default class VNode {\n key: string | number | void;\n componentOptions: VNodeComponentOptions | void;\n child: Component | void;\n+ parent: VNode | void;\n \n constructor (\n tag?: string,\n@@ -32,6 +33,7 @@ export default ...
2016-05-24T04:27:18
denoland/deno
8ec14ae133f72d66658a40934c961fd14ae216fa
f9bb8241ca6057b76881479208d52944ecf16dd5
fix: support numerical properties for deno_errors (#29489)
[ { "path": "Cargo.lock", "patch": "@@ -1584,9 +1584,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_ast\"\n-version = \"0.47.0\"\n+version = \"0.48.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"59d2c5dcead329b1382472f0ca026839f33a86d897b47cf6d9cfa21c520b69c6\"...
2025-05-29T09:40:46
mrdoob/three.js
cd614f62e9a07e769161668c55afb40873910732
a3ef45934030cb2e9dd6af24d2e1f69652139026
Addons: auto-fix linting problems (#27457) Brings 93 problems (60 errors, 33 warnings) down to 37 problems (4 errors, 33 warnings).
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -373,14 +373,14 @@ class OrbitControls extends EventDispatcher {\n \t\t\t\t\t}\n \n \t\t\t\t} else if ( scope.object.isOrthographicCamera ) {\n-\t\t\t\t\t\n+\n \t\t\t\t\tzoomChanged = scale !== 1;\n \n \t\t\t\t\tif ( zoomChanged ) {\n \n \t\t\...
2023-12-27T21:56:39
vuejs/vue
c972b80cd8a418ab9de560f484632a31d8dd91eb
30c82195d1b4dbe1af4827dcb422e331b5e3cc54
fix delimiters caching (fix #2940)
[ { "path": "src/entries/web-compiler.js", "patch": "@@ -60,8 +60,11 @@ export function compileToFunctions (\n options?: CompilerOptions\n ): CompiledFunctions {\n const cache = options && options.preserveWhitespace === false ? cache1 : cache2\n- if (cache[template]) {\n- return cache[template]\n+ co...
2016-05-23T22:09:34
golang/go
52b6d7f67af28a4df6665a595e3f35b9875be2b5
1ebebf1cc1c91faa6e7c32bc987dd42f4f3da2e5
runtime: drop NetBSD kernel bug sysmon workaround fixed in NetBSD 9.2 The NetBSD releases supported by the NetBSD project as off today are 9.4 and 10.1. The Go project's NetBSD builders are on 9.3. Thus, it is fine to drop the workaround which was only needed for NetBSD before 9.2. Fixes #46495 Cq-Include-Trybots: l...
[ { "path": "src/runtime/os_netbsd.go", "patch": "@@ -101,9 +101,6 @@ var sigset_all = sigset{[4]uint32{^uint32(0), ^uint32(0), ^uint32(0), ^uint32(0)\n \n // From NetBSD's <sys/sysctl.h>\n const (\n-\t_CTL_KERN = 1\n-\t_KERN_OSREV = 3\n-\n \t_CTL_HW = 6\n \t_HW_NCPU = 3\n \t_HW_PAGESIZE = 7\...
2025-07-11T20:59:10
mrdoob/three.js
00f29b8f281c2b987bef8eb593efa8aad68d9e68
e852478997ce767788817244d5340a8e31ac2f5e
WebGPURenderer: Fix Geometry does not have the Attribute requested by the Material (#27454) * WebGPURenderer: Fix Geometry does not have the Attribute * cleanup
[ { "path": "examples/jsm/renderers/common/RenderObject.js", "patch": "@@ -82,6 +82,8 @@ export default class RenderObject {\n \n \t\t\tconst attribute = nodeAttribute.node && nodeAttribute.node.attribute ? nodeAttribute.node.attribute : geometry.getAttribute( nodeAttribute.name );\n \n+\t\t\tif ( attribute =...
2023-12-27T19:11:25
denoland/deno
f9bb8241ca6057b76881479208d52944ecf16dd5
ab9673dcc172e2c0b7a521b3527eb5ce2cf3858c
fix(coverage): HTML validation errors in coverage explorer (#29497) Closes #29493
[ { "path": "cli/tools/coverage/reporter.rs", "patch": "@@ -505,7 +505,7 @@ impl HtmlCoverageReporter {\n let footer = self.create_html_footer(timestamp);\n format!(\n \"<!doctype html>\n- <html>\n+ <html lang='en-US'>\n {head}\n <body>\n <div class='wrapper'>...
2025-05-29T07:48:11
golang/go
1ebebf1cc1c91faa6e7c32bc987dd42f4f3da2e5
6536a9354728523f7ac3627f558ba3f51163e72c
cmd/go: clean should respect workspaces The existing implementation doesn't invoke modload.InitWorkfile during runClean which in turn causes go clean to ignore workspaces and consequentially workspace vendoring. Fixes #74337 Change-Id: I295a1fcc5e81d096971c8cee9c9baa840c7725e7 Reviewed-on: https://go-review.googleso...
[ { "path": "src/cmd/go/internal/clean/clean.go", "patch": "@@ -120,6 +120,7 @@ func init() {\n }\n \n func runClean(ctx context.Context, cmd *base.Command, args []string) {\n+\tmodload.InitWorkfile()\n \tif len(args) > 0 {\n \t\tcacheFlag := \"\"\n \t\tswitch {", "additions": 1, "deletions": 0, "...
2025-06-23T10:39:20
vuejs/vue
f5297358afe667a913e27e922b3ae029e412cbb7
9d3479a76cb4032cdc9b00cca8cd74b8903c5f1f
fix linting problems
[ { "path": "test/unit/features/component/component-async.spec.js", "patch": "@@ -41,7 +41,7 @@ describe('Component async', () => {\n }\n }).$mount()\n expect(vm.$el.nodeType).toBe(3)\n- expect(vm.$children.length).toBe(0)\n+ expect(vm.$children.length).toBe(0)\n function next () {\n ...
2016-05-20T15:42:58