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 |
|---|---|---|---|---|---|
golang/go | 4b6cbc377f9b3d2598b0d30a37c9cf3797ba6e12 | b2960e35804aafbbb0df9973f99b034bea8c150a | cmd/cgo/internal/test: use (syntactic) constant for C array bound
A test in C has an array bound defined as a "const int", which is
technically a variable. The new version of C compiler in Xcode 26
beta emits a warning "variable length array folded to constant
array as an extension" for this (as an error since we buil... | [
{
"path": "src/cmd/cgo/internal/test/test.go",
"patch": "@@ -245,7 +245,7 @@ static void *thread(void *p) {\n \treturn NULL;\n }\n void testSendSIG() {\n-\tconst int N = 20;\n+\tenum { N = 20 };\n \tint i;\n \tpthread_t tid[N];\n \tfor (i = 0; i < N; i++) {",
"additions": 1,
"deletions": 1,
"lan... | 2025-08-02T22:13:19 |
mrdoob/three.js | bd885e92f3fe8f71fc1160492e9a81ea9d8d94fe | 68264263bc2b2b301fd763e80e6b11b05c97b069 | Nodes: Fix `tangentView` and move `TBNViewMatrix` to AccessorsUtils (#27696)
* Fix tangentView
* Move TBN to AccessorsUtils
* Update webgpu_loader_gltf_compressed.jpg | [
{
"path": "examples/jsm/nodes/Nodes.js",
"patch": "@@ -77,6 +77,7 @@ export { default as ReflectorNode, reflector } from './utils/ReflectorNode.js';\n export * from './shadernode/ShaderNode.js';\n \n // accessors\n+export { TBNViewMatrix } from './accessors/AccessorsUtils.js';\n export { default as Bitangen... | 2024-02-07T03:02:14 |
vuejs/vue | 76d7809a113faa29053568b54727565550658ac0 | 194b20a9dcb8417432cf7c2234000fa8b40388c4 | config.errorHandler should capture user wathcer errors too (ref #3142) | [
{
"path": "src/core/observer/watcher.js",
"patch": "@@ -188,7 +188,24 @@ export default class Watcher {\n // set new value\n const oldValue = this.value\n this.value = value\n- this.cb.call(this.vm, value, oldValue)\n+ if (this.user) {\n+ try {\n+ th... | 2016-06-23T02:43:58 |
denoland/deno | 635e3744bde6194d571654c5037fa6e16f852555 | 7a837f9fdbeca808aa39aa6a46dcb190cdc8672b | fix(ext/node): add events `getMaxListeners` (#29636)
Enables `parallel/test-events-getmaxlisteners.js`
Towards #29595 | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -76,6 +76,7 @@ EventEmitter.on = on;\n EventEmitter.once = once;\n EventEmitter.getEventListeners = getEventListeners;\n EventEmitter.setMaxListeners = setMaxListeners;\n+EventEmitter.getMaxListeners = getMaxListeners;\n EventEmitter.listenerCount = l... | 2025-06-08T04:07:03 |
golang/go | abeeef1c08a589c2341f0d4e19ae49ec0892e797 | d44749b65b47f42e7a5bae2e0e9b0ab6bb3d5f80 | cmd/compile/internal/test: fix typo in comments
Change-Id: Iba6bb7f8252120f56d7e6ae49c9edc9382e8c7e0
Reviewed-on: https://go-review.googlesource.com/c/go/+/679855
Reviewed-by: abner chenc <chenguoqi@loongson.cn>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Mark... | [
{
"path": "src/cmd/compile/internal/test/mulconst_test.go",
"patch": "@@ -143,7 +143,7 @@ func BenchmarkMulconstI32(b *testing.B) {\n \t\t}\n \t\tmulSinkI32 = x\n \t})\n-\t// -120x = 8x - 120x\n+\t// -120x = 8x - 128x\n \tb.Run(\"-120\", func(b *testing.B) {\n \t\tx := int32(1)\n \t\tfor i := 0; i < b.N; i+... | 2025-06-07T02:27:43 |
mrdoob/three.js | 68264263bc2b2b301fd763e80e6b11b05c97b069 | ca69555211ff6847b2577df08d7ddc36bf89ef82 | fix: check `WEBGL_draw_buffers` before call `drawBuffersWEBGL` (#27693) | [
{
"path": "src/renderers/webgl/WebGLState.js",
"patch": "@@ -541,10 +541,14 @@ function WebGLState( gl, extensions, capabilities ) {\n \n \t\t\t\tgl.drawBuffers( drawBuffers );\n \n-\t\t\t} else {\n+\t\t\t} else if ( extensions.has( 'WEBGL_draw_buffers' ) === true ) {\n \n \t\t\t\textensions.get( 'WEBGL_dra... | 2024-02-06T15:31:07 |
vuejs/vue | 194b20a9dcb8417432cf7c2234000fa8b40388c4 | ebd8d5fd59c24ae666b08665305aded935f39713 | fix transition spec typo (#3141) | [
{
"path": "test/unit/features/transition/transition-mode.spec.js",
"patch": "@@ -236,7 +236,7 @@ if (!isIE9) {\n :key=\"view\"\n class=\"test\"\n transition=\"test\"\n- transition-mode=\"in-out\">{{view}}</component>\n+ transition-mode=\"in-out\">{{v... | 2016-06-23T02:01:42 |
denoland/deno | 1323aca15e1a588327f400f7da782d9becd533df | 74b73b3c9f7233d8afcd21281ace30c709dfb817 | refactor(npm_cache): fix Wasm build to not use tokio code (#29641) | [
{
"path": "Cargo.lock",
"patch": "@@ -8400,9 +8400,9 @@ dependencies = [\n \n [[package]]\n name = \"sys_traits\"\n-version = \"0.1.15\"\n+version = \"0.1.16\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"110a9308163844c6ce51149737dbcea372f101bffbc0ef05d5de06acb4a4128f... | 2025-06-07T03:17:03 |
golang/go | d6beda863e3a8825c8cfe656744cc8f99f47d048 | 4ab1aec00799f91e96182cbbffd1de405cd52e93 | runtime: add reference to debugPinnerV1
This is intended to be used by debuggers, to keep heap memory reachable
even if it isn't referenced from anywhere else.
Change-Id: I1e900e02b4fe3a188f8173cec70f8de32122489b
Reviewed-on: https://go-review.googlesource.com/c/go/+/682875
Reviewed-by: abner chenc <chenguoqi@loongso... | [
{
"path": "src/runtime/asm_loong64.s",
"patch": "@@ -70,8 +70,9 @@ nocgo:\n \t// start this M\n \tJAL\truntime·mstart(SB)\n \n-\t// Prevent dead-code elimination of debugCallV2, which is\n+\t// Prevent dead-code elimination of debugCallV2 and debugPinnerV1, which are\n \t// intended to be called by debugger... | 2025-06-19T11:55:28 |
mrdoob/three.js | ca69555211ff6847b2577df08d7ddc36bf89ef82 | a2bf250301187940fd97f60d5c020691ad3b8c11 | ProgressiveLightMap: Fix uv regression. (#27692) | [
{
"path": "examples/jsm/misc/ProgressiveLightMap.js",
"patch": "@@ -45,6 +45,7 @@ class ProgressiveLightMap {\n \n \t\t\t// Vertex Shader: Set Vertex Positions to the Unwrapped UV Positions\n \t\t\tshader.vertexShader =\n+\t\t\t\t'attribute vec2 uv1;\\n' +\n \t\t\t\t'#define USE_LIGHTMAP\\n' +\n \t\t\t\t'#d... | 2024-02-06T11:06:18 |
vuejs/vue | ebd8d5fd59c24ae666b08665305aded935f39713 | 3fe127b05a0e12b5d05d4ddd0d2e5f85f223d475 | fix transition active class application timing to avoid initial flash | [
{
"path": "src/platforms/web/runtime/modules/transition.js",
"patch": "@@ -94,13 +94,11 @@ export function enter (vnode: VNodeWithData) {\n beforeEnterHook && beforeEnterHook(el)\n if (expectsCSS) {\n addTransitionClass(el, startClass)\n+ addTransitionClass(el, activeClass)\n nextFrame(() => ... | 2016-06-23T02:01:11 |
denoland/deno | dff5d73cd9b65a20288d9c8ed8dcc1dd1cb9fb69 | fb0241388ebda7d4faff8db882f2e0d071cf15c0 | fix: revert back to prefering highest previously resolved version for a req (#29642)
This is a revert
* https://github.com/denoland/deno_graph/pull/589 | [
{
"path": "Cargo.lock",
"patch": "@@ -1999,9 +1999,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_graph\"\n-version = \"0.95.0\"\n+version = \"0.95.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"af557eab0d8abf2c6e7c890d510eccaebe52388924ae4a3e15c8a818c1bbbb90... | 2025-06-06T20:09:50 |
mrdoob/three.js | a2bf250301187940fd97f60d5c020691ad3b8c11 | 85e5ddaa02376cbe158efa71bbda63615d6b0f1f | WebGPURenderer: `StorageBufferNode` Support reading external elements in the WebGL Backend (#27661)
* init pbo
* remove flag
* regenerate live example
* single buffer and alternate for example
* cleanup, no idea about circ dep
* test fix circular
* cleanup
* moved pbo management to GLSLNodeBuilder... | [
{
"path": "examples/files.json",
"patch": "@@ -374,7 +374,8 @@\n \t\t\"webgpu_postprocessing_anamorphic\",\n \t\t\"webgpu_mirror\",\n \t\t\"webgpu_multisampled_renderbuffers\",\n-\t\t\"webgpu_materials_texture_anisotropy\"\n+\t\t\"webgpu_materials_texture_anisotropy\",\n+\t\t\"webgpu_storage_buffer\"\n \t],... | 2024-02-06T05:56:53 |
golang/go | 08bec02907cf59c3fd60e5c5e31b2d6c30b462b7 | 09ff25e3508287970940645b97e4d88e92bb5407 | [dev.simd] cmd/compile: add register-to-mask moves, other simd glue
This includes code generated by simdgen CL 689955,
here because of git-facilitated pilot error
(the generated file should have been in the next CL
but that is related to this one, so, oh well).
Change-Id: Ibfea3f1cd93ca9cd12970edf15a013471677a6ba
Rev... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -1530,6 +1530,14 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = v.Reg()\n \n+\tcase ssa.OpAMD64KMOVQ, ssa.OpAMD64KMOVD, ssa.OpAMD64KMOVW, ssa.OpAMD64KMOVB:\n+\t\t// See also ssa.OpAMD64KMOVQ... | 2025-07-23T17:47:08 |
vuejs/vue | 3fe127b05a0e12b5d05d4ddd0d2e5f85f223d475 | dcd82c2429ad5bceddd2e8a8e692a56ff3f12619 | fix v-model number conversion (fix #3140) | [
{
"path": "flow/component.js",
"patch": "@@ -94,6 +94,8 @@ declare interface Component {\n ) => Object | void;\n // toString\n _s: (value: any) => string;\n+ // toNumber\n+ _n: (value: string) => number | string;\n // resolveFilter\n _f: (id: string) => Function;\n // renderList",
"additio... | 2016-06-23T01:43:52 |
denoland/deno | fb0241388ebda7d4faff8db882f2e0d071cf15c0 | d0910c463d02a11a0c8a0a3ac720f265eb774f57 | fix(install): clean-up lock poll file for a more deterministic `node_modules` folder output (#29623)
Closes https://github.com/denoland/deno/issues/29619 | [
{
"path": "resolvers/npm_installer/flag.rs",
"patch": "@@ -9,7 +9,7 @@ mod inner {\n use std::sync::Arc;\n use std::time::Duration;\n \n- use deno_unsync::sync::AtomicFlag;\n+ use parking_lot::Mutex;\n use sys_traits::FsFileLock;\n use sys_traits::FsMetadataValue;\n \n@@ -19,6 +19,7 @@ mod inner {... | 2025-06-06T16:58:10 |
mrdoob/three.js | 86a94fd75b176a8414d4b0dc2bd23126c7850ec3 | c0764e9c0407cfffabd0debf5f8b4759cb099a68 | WebGLRenderer: Remove unnecessary `__hasExternalTextures` check. (#27684)
* fix: remove unnecessasy if statement
* lint: fix lint
* lint: fix lint
* fix: revert `vaoAvailable` | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -2171,20 +2171,16 @@ class WebGLRenderer {\n \t\t\tconst renderTargetProperties = properties.get( renderTarget );\n \t\t\trenderTargetProperties.__hasExternalTextures = true;\n \n-\t\t\tif ( renderTargetProperties.__hasExternalTextures ) {\n+\t\t\tren... | 2024-02-05T11:19:31 |
vuejs/vue | 563672e5fe93971726668843b43b201eed7b37c1 | f0efa9aad2f33c45ea8dfc5098cef86900b9ef98 | fix flow def | [
{
"path": "flow/component.js",
"patch": "@@ -57,7 +57,6 @@ declare interface Component {\n _isBeingDestroyed: boolean;\n _vnode: ?VNode;\n _staticTrees: ?Array<VNode>;\n- _keyCode: (key: string) => ?number;\n \n // private methods\n // lifecycle\n@@ -104,6 +103,8 @@ declare interface Component {\... | 2016-06-22T15:41:30 |
mrdoob/three.js | dee7c4e4319c469901a73240d233b9bee89ccb2a | ab3be077a8062d8f1699fbae5f87baa3ef9c8cf8 | Fix missing footnote (#27676)
It looks like the previous footnote for the KHR_lights_punctual extension was to mention that useLegacyLights needed to be disabled. The footnote itself was removed in a previous commit, but the reference to it remained despite there being no "footnote 1" any longer.
Removed the footno... | [
{
"path": "docs/examples/en/loaders/GLTFLoader.html",
"patch": "@@ -53,7 +53,7 @@ <h2>Extensions</h2>\n \t\t\t<li>KHR_materials_unlit</li>\n \t\t\t<li>KHR_materials_volume</li>\n \t\t\t<li>KHR_mesh_quantization</li>\n-\t\t\t<li>KHR_lights_punctual<sup>1</sup></li>\n+\t\t\t<li>KHR_lights_punctual</li>\n \t\t... | 2024-02-04T09:41:47 |
golang/go | 88568519b416190d264f5e5f02c41b5a139498b2 | 6f7a1164e797f694c535ebf5f2c9722845a732cd | [dev.simd] simd: move test generation into Go repo
This pairs with CL 689275 which removes test generation from simdgen
This uses generics and attempts to encode the tests as compactly as
possible.
Some files, *_helpers_test.go, are generated.
Use t.Helper() to get the line number right for a failure.
Adds helper ... | [
{
"path": "src/simd/binary_helpers_test.go",
"patch": "@@ -0,0 +1,464 @@\n+// Code generated by 'go run genfiles.go'; DO NOT EDIT.\n+\n+//go:build goexperiment.simd\n+\n+// This file contains functions testing binary simd methods.\n+// Each function in this file is specialized for a\n+// particular simd typ... | 2025-07-07T21:48:24 |
denoland/deno | a2faf237b5c95375f071dd2ba65234f4fe1e99a4 | 2f5dbe1c87516a81e26aad2658ea9356a49d315c | fix(ext/node): fix addAbortListener (#29634) | [
{
"path": "ext/node/polyfills/internal/events/abort_listener.mjs",
"patch": "@@ -1,7 +1,7 @@\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 { primordials } from \"ext:deno_node/internal/test/binding.... | 2025-06-06T12:31:41 |
vuejs/vue | 63da54ddee7194dd073ea9354cfeb4a42b7ae604 | 59dca1208b14309663dc3d26bee05d866286b1a4 | fix v-on number keyCode support | [
{
"path": "src/compiler/events.js",
"patch": "@@ -53,10 +53,10 @@ function genHandler (\n }\n \n function genKeyFilter (key: string): string {\n- const code = keyCodes[key]\n+ const code = keyCodes[key] || JSON.stringify(key)\n if (Array.isArray(code)) {\n- return `if(${code.map(c => `$event.keyCode!... | 2016-06-22T15:10:36 |
mrdoob/three.js | ab3be077a8062d8f1699fbae5f87baa3ef9c8cf8 | f3721a5a5a2457aec28a5555d7e0c0fecb87b4c3 | ShaderChunk: link issue and fix typo in inline video decode. (#27671) | [
{
"path": "src/renderers/shaders/ShaderChunk/map_fragment.glsl.js",
"patch": "@@ -5,7 +5,7 @@ export default /* glsl */`\n \n \t#ifdef DECODE_VIDEO_TEXTURE\n \n-\t\t// use inline sRGB decode until browsers properly support SRGB8_APLHA8 with video textures\n+\t\t// use inline sRGB decode until browsers prope... | 2024-02-04T09:40:17 |
golang/go | eef5f8d93016147718afba8a05282d2ba7332c51 | e071617222e373f59db8995ce171bae708e0dcef | cmd/compile: enforce that locals are always accessed with SP base register
After CL 678937, we could have a situation where the value of the
stack pointer is in both SP and another register. We need to make sure
that regalloc picks SP when issuing a reference to local variables;
the assembler expects that.
Fixes #748... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -1583,6 +1583,12 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t\t\tmask &^= desired.avoid\n \t\t\t\t\t}\n \t\t\t\t}\n+\t\t\t\tif mask&s.values[v.Args[i.idx].ID].regs&(1<<s.SPReg) != 0 {\n+\t\t\t\t\t// Prefer SP register. This ensu... | 2025-08-01T14:38:55 |
denoland/deno | 2f5dbe1c87516a81e26aad2658ea9356a49d315c | 8e69075889c0569c0736cd856d182c7c26bcecac | fix(ext/node): fix validation of input in setMaxListeners (#29630) | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -42,6 +42,7 @@ import {\n validateAbortSignal,\n validateBoolean,\n validateFunction,\n+ validateNumber,\n validateString,\n } from \"ext:deno_node/internal/validators.mjs\";\n import { spliceOne } from \"ext:deno_node/_utils.ts\";\n@@ -123,1... | 2025-06-06T05:39:03 |
mrdoob/three.js | edb39714e318ca3af3cc6d4d05925dede86cebe9 | 877424bc26adee2a33777de8c3ac9f3d0c68f4dd | SkeletonUtils: fix retargetClip duration and last frame (#27653)
* SkeletonUtils: fix retargetClip duration and last frame
* SkeletonUtils: set retargetClip default fps to source clip fps
* SkeletonUtils: Update retargetClip to set default fps based on the longest track | [
{
"path": "examples/jsm/utils/SkeletonUtils.js",
"patch": "@@ -200,7 +200,8 @@ function retarget( target, source, options = {} ) {\n function retargetClip( target, source, clip, options = {} ) {\n \n \toptions.useFirstFramePosition = options.useFirstFramePosition !== undefined ? options.useFirstFramePositio... | 2024-02-01T10:09:05 |
golang/go | c0ee2fd4e309ef0b8f4ab6f4860e2626c8e00802 | a4d99770c0e5f340d6d11d6353110413dc109138 | cmd/go: explicitly reject module paths "go" and "toolchain"
The module paths "go" and "toolchain" are reserved for the dependency on
the go and toolchain versions. Check for those paths in go mod init to
create modules, go mod edit, and in the module loader and return an
error when attempting to use those paths for a ... | [
{
"path": "src/cmd/go/internal/modcmd/edit.go",
"patch": "@@ -234,7 +234,11 @@ func runEdit(ctx context.Context, cmd *base.Command, args []string) {\n \t}\n \n \tif *editModule != \"\" {\n-\t\tif err := module.CheckImportPath(*editModule); err != nil {\n+\t\terr := module.CheckImportPath(*editModule)\n+\t\t... | 2025-07-29T18:17:33 |
vuejs/vue | 2c63e94f692430d3ff48cec31457a27684b085a2 | de0b4b87bcf019adf91e5e9e08688c5df78cd2c3 | fix watcher prevTarget state when evaluating computed lazy watcher (fix #3133) | [
{
"path": "src/core/observer/watcher.js",
"patch": "@@ -12,7 +12,7 @@ import {\n } from '../util/index'\n \n let uid = 0\n-let prevTarget\n+const targetStack = []\n \n /**\n * A watcher parses an expression, collects dependencies,\n@@ -83,7 +83,7 @@ export default class Watcher {\n * Evaluate the getter... | 2016-06-22T14:29:29 |
denoland/deno | 8e69075889c0569c0736cd856d182c7c26bcecac | 15beca3f6663dcb7ab1697b6327076df127585f8 | fix(ext/node): handle -p flag in spawn, fix "from dependency" check in windows (#29611)
This PR updates `op_node_call_is_from_dependency` op, which now detects
node_modules path on windows correctly.
This PR also updates the handling of
`child_process.spawn(process.execPath, ["-p", souceCode])`. It runs the
given str... | [
{
"path": "ext/node/ops/util.rs",
"patch": "@@ -119,7 +119,10 @@ pub fn op_node_call_is_from_dependency<\n let name = script.to_rust_string_lossy(scope);\n if name.starts_with(\"node:\") || name.starts_with(\"ext:\") {\n continue;\n- } else if name.starts_with(\"https:\") || name.contains(\... | 2025-06-06T02:53:04 |
mrdoob/three.js | 877424bc26adee2a33777de8c3ac9f3d0c68f4dd | 841d2e791d3e8a2463322c5ca31b16956828b91c | [Doc/zh]: fix some incorrect links (#27657)
* Update CCDIKSolver.html
* Update MMDAnimationHelper.html
* Update MMDPhysics.html
* Update ArcballControls.html
* Update MapControls.html
* Update DRACOExporter.html
* Update EXRExporter.html
* Update GLTFExporter.html
* Update OBJExporter.html
*... | [
{
"path": "docs/examples/zh/animations/CCDIKSolver.html",
"patch": "@@ -180,9 +180,8 @@ <h3>[method:this updateOne]( [param:Object ikParam] )</h3>\n \t<h2>源代码</h2>\n \n \t<p>\n-\t\t[link:https://github.com/mrdoob/three.js/blob/master/examples/jsm/animation/CCDIKSolver.js\n-\t\texamples/jsm/animation/CCDIKSo... | 2024-01-31T18:03:12 |
golang/go | a4d99770c0e5f340d6d11d6353110413dc109138 | 70a2ff76485477211397ae6399bee06101bc5935 | runtime/metrics: add cleanup and finalizer queue metrics
These metrics are useful for identifying finalizer and cleanup problems,
namely slow finalizers and/or cleanups holding up the queue, which can
lead to a memory leak.
Fixes #72948.
Change-Id: I1bb64a9ca751fcb462c96d986d0346e0c2894c95
Reviewed-on: https://go-re... | [
{
"path": "src/runtime/metrics.go",
"patch": "@@ -169,6 +169,20 @@ func initMetrics() {\n \t\t\t\tout.scalar = float64bits(nsToSec(in.cpuStats.UserTime))\n \t\t\t},\n \t\t},\n+\t\t\"/gc/cleanups/executed:cleanups\": {\n+\t\t\tdeps: makeStatDepSet(finalStatsDep),\n+\t\t\tcompute: func(in *statAggregate, out ... | 2025-07-23T03:09:27 |
vuejs/vue | de0b4b87bcf019adf91e5e9e08688c5df78cd2c3 | 634a0734c429850a4679b2f220b14a896536a7fb | fix error detection on string interpolations (fix #3137) | [
{
"path": "src/compiler/error-detector.js",
"patch": "@@ -10,6 +10,8 @@ const prohibitedKeywordRE = new RegExp('\\\\b' + (\n ).split(',').join('\\\\b|\\\\b') + '\\\\b')\n // check valid identifier for v-for\n const identRE = /[A-Za-z_$][\\w$]*/\n+// strip strings in expressions\n+const stripStringRE = /'(?:... | 2016-06-22T13:50:35 |
mrdoob/three.js | 1e771e13cb3de863afec27fbcbda5eb1f19b41b0 | 2b6dfe9b581036c8d2360bc23e5800febed930f4 | Editor: Fixed pathtracer render when environment is null. | [
{
"path": "editor/js/Viewport.Pathtracer.js",
"patch": "@@ -6,6 +6,16 @@ import {\n \tPhysicalPathTracingMaterial\n } from 'three-gpu-pathtracer';\n \n+function buildColorTexture( color ) {\n+\n+\tconst data = new Uint8Array( [ color.r * 255, color.g * 255, color.b * 255, 255 ] );\n+\tconst texture = new TH... | 2024-01-30T13:37:00 |
denoland/deno | 15beca3f6663dcb7ab1697b6327076df127585f8 | 512a0072b187ff9af4fa68d65364391db4bfbbdf | fix(ext/node): update message for `MaxListenersExceededWarning` (#29613) | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -469,8 +469,8 @@ function _addListener(target, type, listener, prepend) {\n const w = new Error(\n \"Possible EventEmitter memory leak detected. \" +\n `${existing.length} ${String(type)} listeners ` +\n- `added to ${i... | 2025-06-06T00:38:26 |
golang/go | 69338a335ada5882b888fb7eabe0ad6f0e12c986 | cedf63616a00c8a6a69f6bbe4bc93b6865cec842 | cmd/go/internal/gover: fix ModIsPrerelease for toolchain versions
We forgot to call the IsPrerelease function on FromToolchain(vers)
rather than on vers itself. IsPrerelase expects a version without the
"go" prefix. See the corresponding code in ModIsValid and ModIsPrefix
that call FromToolchain before passing the ver... | [
{
"path": "src/cmd/go/internal/gover/mod.go",
"patch": "@@ -109,6 +109,9 @@ func ModIsPrefix(path, vers string) bool {\n // The caller is assumed to have checked that ModIsValid(path, vers) is true.\n func ModIsPrerelease(path, vers string) bool {\n \tif IsToolchain(path) {\n+\t\tif path == \"toolchain\" {\... | 2025-07-29T21:12:24 |
mrdoob/three.js | 635a04ab70bc975668815f9bd905502bb7dc7b6d | 6daf30036735ba78a1a05b31481fca1f4e0d3d15 | Update cameras.html (#27640)
SphereBufferGeometry is wrong,
SphereGeometry should be used | [
{
"path": "manual/zh/cameras.html",
"patch": "@@ -251,7 +251,7 @@ <h1>摄像机</h1>\n const sphereRadius = 3;\n const sphereWidthDivisions = 32;\n const sphereHeightDivisions = 16;\n- const sphereGeo = new THREE.SphereBufferGeometry(sphereRadius, sphereWidthDivisions, sphereHeightDivisions);\n+ const sph... | 2024-01-29T11:57:35 |
vuejs/vue | cf1a697710e032e4f8fa6327fcca825c6f59df13 | 439ca63f9f5d6865dede65216562e41f0170af1f | fix v-model warning on component (#3102) | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -6,6 +6,8 @@\n import { warn } from 'core/util/index'\n import { isAndroid, isIE9 } from 'web/util/index'\n \n+const modelableTagRE = /^input|select|textarea|vue-component-[0-9]+(-[0-9a-zA-Z_\\-]*)?$/\n+\n /* istanbul ignore if */\n if ... | 2016-06-18T15:08:44 |
denoland/deno | 22a615c7eb3dc2410783bb4991431102f7f5e15a | cc6baf4446acaaf64cf62422252376e655616055 | fix(ext/node): ignore `parallel/test-eventsource-disabled.js` test (#29618)
EventSource web API is always available in Deno
Towards https://github.com/denoland/deno/issues/29595 | [
{
"path": "tests/node_compat/run_all_test_unmodified.ts",
"patch": "@@ -71,6 +71,7 @@ const NODE_IGNORED_TEST_DIRS = [\n const NODE_IGNORED_TEST_CASES = new Set([\n \"parallel/test-benchmark-cli.js\", // testing private benchmark utility\n \"parallel/test-buffer-backing-arraybuffer.js\", // Deno does no... | 2025-06-05T12:06:59 |
vuejs/vue | 439ca63f9f5d6865dede65216562e41f0170af1f | 27252928d37e2067173a232c15e8af3a3fc1e129 | fix sfc-parser unary tags handling | [
{
"path": "src/compiler/parser/sfc-parser.js",
"patch": "@@ -52,7 +52,9 @@ export function parseComponent (\n sfc[tag] = currentBlock\n }\n }\n- depth++\n+ if (!unary) {\n+ depth++\n+ }\n }\n \n function checkAttrs (block: SFCBlock, attrs: Array<Attribute>) {",
"addit... | 2016-06-17T19:35:59 |
golang/go | cedf63616a00c8a6a69f6bbe4bc93b6865cec842 | 82a1921c3b6b493c4ff358f063c2ffffabba9fd5 | cmd/compile: add floating point min/max intrinsics on s390x
Add the VECTOR FP (MINIMUM|MAXIMUM) instructions to the assembler and
use them in the compiler to implement min and max.
Note: I've allowed floating point registers to be used with the single
element instructions (those with the W instead of V prefix) to all... | [
{
"path": "src/cmd/asm/internal/asm/testdata/s390x.s",
"patch": "@@ -540,6 +540,18 @@ TEXT main·foo(SB),DUPOK|NOSPLIT,$16-0 // TEXT main.foo(SB), DUPOK|NOSPLIT, $16-\n \tVSTRCZBS V18, V20, V22, V24\t// e78240306f8a\n \tVSTRCZHS V18, V20, V22, V24\t// e78241306f8a\n \tVSTRCZFS V18, V20, V22, V24\t// e7824230... | 2025-06-27T20:05:38 |
denoland/deno | cc6baf4446acaaf64cf62422252376e655616055 | ea4506c6576c01c1a17942a6249a80076764b485 | fix(lsp): use canonicalized fallback filesystem root (#29566) | [
{
"path": "cli/lsp/config.rs",
"patch": "@@ -2026,11 +2026,14 @@ impl ConfigTree {\n let pkg_json_cache = PackageJsonMemCache::default();\n let workspace_cache = WorkspaceMemCache::default();\n let mut scopes = BTreeMap::new();\n- for (folder_url, ws_settings) in\n- settings.by_workspace... | 2025-06-05T10:41:26 |
denoland/deno | 5039ce8e3272bc681ca43ebc5dffa2c2e7fa7509 | eb97f51dada4872db6885ad01b1fa64b3cc21362 | fix(ext/node): fix `Buffer.inspect` compatiblity (#29617)
Enables `parallel/test-buffer-inspect.js`
Towards #29589 | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -15,6 +15,7 @@ const {\n ArrayBufferPrototypeGetDetached,\n ArrayIsArray,\n ArrayPrototypeSlice,\n+ ArrayPrototypeForEach,\n BigInt,\n DataViewPrototypeGetByteLength,\n Float32Array,\n@@ -36,6 +37,7 @@ const {\n String,\n Stri... | 2025-06-05T09:14:06 |
golang/go | 82a1921c3b6b493c4ff358f063c2ffffabba9fd5 | 2ae059ccaf982c3304fae0b48c1d78ad7192cbdd | all: remove redundant Swiss prefixes
Now that there is only one map implementation we can simplify names.
For #54766.
Change-Id: I6a6a636cc6a8fc5e7712c27782fc0ced7467b939
Reviewed-on: https://go-review.googlesource.com/c/go/+/691596
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Michael Pratt <mpratt@googl... | [
{
"path": "src/cmd/compile/internal/reflectdata/map.go",
"patch": "@@ -15,10 +15,10 @@ import (\n \t\"internal/abi\"\n )\n \n-// SwissMapGroupType makes the map slot group type given the type of the map.\n-func SwissMapGroupType(t *types.Type) *types.Type {\n-\tif t.MapType().SwissGroup != nil {\n-\t\tretur... | 2025-07-29T17:58:35 |
denoland/deno | 426e3e72281e56b8969045200db46a7496a2d3ff | 104084876c49136ab41e70187f503539dd4d55f3 | fix(ext/node): Buffer.fill compatibility fixes (#29525)
Enables `parallel/test-buffer-fill.js`
Towards https://github.com/denoland/deno/issues/29589 | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -85,7 +85,10 @@ import {\n validateBuffer,\n validateInteger,\n } from \"ext:deno_node/internal/validators.mjs\";\n-import { isUint8Array } from \"ext:deno_node/internal/util/types.ts\";\n+import {\n+ isArrayBufferView,\n+ isUint8Array,\... | 2025-06-05T07:59:44 |
mrdoob/three.js | 6050a4caf46f17abe1ebf1398f873f7ecc4556eb | a222a673eede515c1983b0932c07c9da6127a772 | 3DMLoader: Fix typos and reorder imports alphabetically (#27631)
* 3DMLoader: Fix typos and reorder imports alphabetically
- Also modify the default MeshStandardMaterial params:
- change metalness value from 0.8 to 0.1
- add roughness value at 0.6
* Update 3DMLoader.js
Revert arbitrary changes | [
{
"path": "examples/jsm/loaders/3DMLoader.js",
"patch": "@@ -1,29 +1,29 @@\n import {\n \tBufferGeometryLoader,\n-\tFileLoader,\n-\tLoader,\n-\tObject3D,\n-\tMeshStandardMaterial,\n-\tMeshPhysicalMaterial,\n-\tMesh,\n+\tCanvasTexture,\n+\tClampToEdgeWrapping,\n \tColor,\n-\tPoints,\n-\tPointsMaterial,\n+\tD... | 2024-01-29T09:19:30 |
golang/go | cc571dab91e73413cf2ba1546a4ba485038cf2d1 | 2174a7936c9e6109e2786369072f5b9dc5d631f5 | cmd/compile: deduplicate instructions when rewrite func results
After CL 628075, do not rely on the memory arg of an OpLocalAddr.
Fixes #74788
Change-Id: I4e893241e3949bb8f2d93c8b88cc102e155b725d
Reviewed-on: https://go-review.googlesource.com/c/go/+/691275
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc... | [
{
"path": "src/cmd/compile/internal/ssa/expand_calls.go",
"patch": "@@ -243,11 +243,8 @@ func (x *expandState) rewriteFuncResults(v *Value, b *Block, aux *AuxCall) {\n \t\tif len(aRegs) > 0 {\n \t\t\tresult = &allResults\n \t\t} else {\n-\t\t\tif a.Op == OpLoad && a.Args[0].Op == OpLocalAddr {\n-\t\t\t\tadd... | 2025-07-29T10:53:29 |
vuejs/vue | f058a21b70b88197d9faa51ede8de7d19735526d | 5c3e208cf8a94a9c7e04e3d33b7ad7db6e7377e5 | fix identifier re | [
{
"path": "src/compiler/error-detector.js",
"patch": "@@ -9,7 +9,7 @@ const prohibitedKeywordRE = new RegExp('\\\\b' + (\n 'extends,finally,continue,debugger,function,arguments'\n ).split(',').join('\\\\b|\\\\b') + '\\\\b')\n // check valid identifier for v-for\n-const identRE = /[^\\w$\\.](?:[A-Za-z_$][\... | 2016-06-16T16:41:11 |
mrdoob/three.js | bd33e679a5b634842bb39a377b9a37eb68bc0e2a | 4445abd3577296e347b5c14164cd17cd364acf5e | WebGPURenderer: Fix ambiguous field in WebGL Backend (#27619)
* fix ambious field in webgl backend
* fix job
* cleanup
--------- | [
{
"path": "examples/jsm/nodes/accessors/CameraNode.js",
"patch": "@@ -1,6 +1,5 @@\n import Object3DNode from './Object3DNode.js';\n import { addNodeClass } from '../core/Node.js';\n-import { label } from '../core/ContextNode.js';\n import { NodeUpdateType } from '../core/constants.js';\n //import { sharedUn... | 2024-01-25T06:24:19 |
denoland/deno | 104084876c49136ab41e70187f503539dd4d55f3 | 97a38fa584891d8a9f913e59a591708be7de21a9 | fix(ext/node): mark pool `ArrayBuffer` as untransferable (#29612)
Enables `parallel/test-buffer-pool-untransferable.js`
Towards https://github.com/denoland/deno/issues/29589 | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -99,6 +99,7 @@ import {\n } from \"ext:deno_web/00_infra.js\";\n import { atob, btoa } from \"ext:deno_web/05_base64.js\";\n import { Blob } from \"ext:deno_web/09_file.js\";\n+import { untransferableSymbol } from \"ext:deno_node/internal_bind... | 2025-06-05T06:14:48 |
golang/go | 2174a7936c9e6109e2786369072f5b9dc5d631f5 | 8330fb48a645a29a79dd5c58ad3d9c54d7e6537c | crypto/tls: use standard chacha20-poly1305 cipher suite names
The different chacha20-poly1305 cipher suites were renamed to
include the _SHA256 suffix, which is the canonical naming convention.
The occurrences of the old names were still not updated, which can lead
to confusion when searching for the canonical names ... | [
{
"path": "src/crypto/tls/cipher_suites.go",
"patch": "@@ -149,8 +149,8 @@ type cipherSuite struct {\n }\n \n var cipherSuites = []*cipherSuite{ // TODO: replace with a map, since the order doesn't matter.\n-\t{TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305, 32, 0, 12, ecdheRSAKA, suiteECDHE | suiteTLS12, nil, nil, a... | 2025-07-21T07:34:13 |
mrdoob/three.js | 51d582b86350f785e8d4797b19cdbdd077f40767 | 7e226d00e27a98fe4e126766ff6cb2c2ba6dec4f | WebGPURenderer: Fix names(2) | [
{
"path": "examples/jsm/renderers/common/Renderer.js",
"patch": "@@ -1188,13 +1188,13 @@ class Renderer {\n \n \tget compute() {\n \n-\t\tconsole.warn( 'THREE.Renderer: compile() is deprecated and will be removed in r170, use compileAsync instead.' ); // @deprecated, r170\n \t\treturn this.computeAsync;\n \... | 2024-01-23T22:32:06 |
vuejs/vue | d76bf8cac82e9415e1134d4804be18593759b158 | a5ccee30799366af8099e712bcd9a80ac6dc78f0 | improve template error detector | [
{
"path": "flow/compiler.js",
"patch": "@@ -88,11 +88,13 @@ declare type ASTElement = {\n renderMethod?: ?string,\n renderArgs?: ?string,\n \n- if?: string | null,\n+ if?: string,\n+ ifProcessed?: boolean,\n else?: true,\n elseBlock?: ASTElement,\n \n- for?: string | null,\n+ for?: string,\n+ ... | 2016-06-15T15:31:43 |
denoland/deno | 97a38fa584891d8a9f913e59a591708be7de21a9 | 8b81644b59d78cb655b07eb09d6355eb69d1b04b | fix(coverage): `deno test --coverage` fails when importing modules from `data:` urls (#29607) | [
{
"path": "cli/tools/coverage/mod.rs",
"patch": "@@ -576,6 +576,7 @@ fn filter_coverages(\n .into_iter()\n .filter(|e| {\n let is_internal = e.url.starts_with(\"ext:\")\n+ || e.url.starts_with(\"data:\")\n || e.url.ends_with(\"__anonymous__\")\n || e.url.ends_with(\"$den... | 2025-06-05T04:42:10 |
golang/go | 89a0af86b819ceb8095c686fc5109b40082bc8c5 | 5e94d72158077411547287fc36f24b3121cca645 | cmd/compile: allow ops to specify clobbering input registers
Same as clobbering fixed registers, but which register is clobbered
depends on which register was assigned to the input.
Add code similar to resultInArg0 processing that makes a register
copy before allowing the op to clobber the last available copy of a va... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/main.go",
"patch": "@@ -87,6 +87,10 @@ type regInfo struct {\n \t// clobbers encodes the set of registers that are overwritten by\n \t// the instruction (other than the output registers).\n \tclobbers regMask\n+\t// Instruction clobbers the register containing in... | 2025-06-09T23:44:46 |
mrdoob/three.js | 7e226d00e27a98fe4e126766ff6cb2c2ba6dec4f | c3fedd4e9d1634946190a301dc1fdbf422e359dd | WebGPURenderer: ReflectorNode (#27611)
* Add first prevent update
* GaussianBlurNode: Fix type
* Rename lightNodes -> lightsNode
* Add ReflectorNode
* add reflector examples
* cleanup
* rev
* revision
* rev
* update reflection resolution
* Add prevent update | [
{
"path": "examples/files.json",
"patch": "@@ -356,6 +356,7 @@\n \t\t\"webgpu_occlusion\",\n \t\t\"webgpu_particles\",\n \t\t\"webgpu_portal\",\n+\t\t\"webgpu_reflection\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",\n@@ -369,6 +370,7 @@\n \t\t\"webgpu_tsl_transpiler\",\n \t\... | 2024-01-23T22:20:45 |
vuejs/vue | b0ad94fc876826a8ee3226320aacd40b8967f8dd | 67da70d5bc192065a930048481b2b394e672d0b7 | properly encode HTML in server-side rendering (fix #3078) | [
{
"path": ".flowconfig",
"patch": "@@ -17,4 +17,3 @@ module.name_mapper='^shared/\\(.*\\)$' -> '<PROJECT_ROOT>/src/shared/\\1'\n module.name_mapper='^web/\\(.*\\)$' -> '<PROJECT_ROOT>/src/platforms/web/\\1'\n module.name_mapper='^server/\\(.*\\)$' -> '<PROJECT_ROOT>/src/server/\\1'\n module.name_mapper='^en... | 2016-06-14T18:15:41 |
denoland/deno | 8b81644b59d78cb655b07eb09d6355eb69d1b04b | 1e6aca57e8e596dc62571607761885ab2fc356ee | fix(ext/node): enable `Buffer` pool for strings (#29592)
Part 1 towards enabling `parallel/test-buffer-pool-untransferable.js` | [
{
"path": "ext/node/polyfills/_http_outgoing.ts",
"patch": "@@ -550,7 +550,7 @@ Object.defineProperties(\n if (data instanceof Buffer) {\n data = new Uint8Array(data.buffer, data.byteOffset, data.byteLength);\n }\n- if (data.buffer.byteLength > 0) {\n+ if (data.byteLength > 0) ... | 2025-06-05T03:04:32 |
mrdoob/three.js | c3fedd4e9d1634946190a301dc1fdbf422e359dd | 3449f17e1e18ce8047f5a158545acf318216b15d | WebGPURenderer: Fix names | [
{
"path": "examples/jsm/renderers/common/Renderer.js",
"patch": "@@ -1189,6 +1189,12 @@ class Renderer {\n \tget compute() {\n \n \t\tconsole.warn( 'THREE.Renderer: compile() is deprecated and will be removed in r170, use compileAsync instead.' ); // @deprecated, r170\n+\t\treturn this.computeAsync;\n+\n+\t... | 2024-01-23T22:21:34 |
golang/go | 8cd85e602a90cb97051fe95d5243557b566630e6 | cefaed0de0b86ea67588546d2e18f850e7b7d41d | cmd/compile: check domination of loop return in both controls
Fixes #74473
Change-Id: I72ff6b95955ae9407271508aa80f230dcf1b6c74
Reviewed-on: https://go-review.googlesource.com/c/go/+/685816
Reviewed-by: Mark Freeman <mark@golang.org>
Auto-Submit: Jorropo <jorropo.pgm@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-sco... | [
{
"path": "src/cmd/compile/internal/ssa/loopbce.go",
"patch": "@@ -37,19 +37,20 @@ type indVar struct {\n // - the minimum bound\n // - the increment value\n // - the \"next\" value (SSA value that is Phi'd into the induction variable every loop)\n+// - the header's edge returning from the body\n //... | 2025-07-04T06:54:14 |
vuejs/vue | 94c7527d3cafc5154e8efb1c5f57d578eafe8a2d | d1a52983724867d078254df64e0ad4e63963c137 | Nextrefactor: `.test` is faster than `.match` for regex bools (#3074)
* refactor: `.test` is faster than `.match` for regex bools
* chore: whoops.. wasnt suppose to commit these files
* fix: mixxup from the iOS version match | [
{
"path": "src/core/util/env.js",
"patch": "@@ -83,7 +83,7 @@ export const nextTick = (function () {\n \n let _Set\n /* istanbul ignore if */\n-if (typeof Set !== 'undefined' && Set.toString().match(/native code/)) {\n+if (typeof Set !== 'undefined' && /native code/.test(Set.toString())) {\n // use native... | 2016-06-13T23:16:07 |
denoland/deno | 1e6aca57e8e596dc62571607761885ab2fc356ee | 5bd9a337c1da8c7cad22c7760c02f80314021eea | fix(ext/node): pass node.js specific flags via NODE_OPTIONS env var in spawn (#29600)
This commit changes the interpretation of command line args when
`child_process.spawn` is called with `Deno.execPath()` executable.
We modify cli args for `spawn(process.execPath, ...)` call to simulate
Node.js cli. This commit adds... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -259,6 +259,7 @@ export class ChildProcess extends EventEmitter {\n command,\n args || [],\n shell,\n+ env,\n );\n this.spawnfile = cmd;\n this.spawnargs = [cmd, ...cmdArgs];\n@@ -881,10 +882,22 @@ func... | 2025-06-05T01:38:34 |
mrdoob/three.js | 3449f17e1e18ce8047f5a158545acf318216b15d | d963e6b307b99370db9209206240cece590a4caf | WebGPURenderer: implement compileAsync() (#27098)
* compileAsync
* fix typo
* take account of targetScene
* add getter
* cleanup
* minor fixes
---------
Co-authored-by: aardgoose <angus.sawyer@email.com> | [
{
"path": "examples/jsm/renderers/common/Pipelines.js",
"patch": "@@ -89,7 +89,7 @@ class Pipelines extends DataMap {\n \n \t}\n \n-\tgetForRender( renderObject ) {\n+\tgetForRender( renderObject, promises = null ) {\n \n \t\tconst { backend } = this;\n \n@@ -149,7 +149,7 @@ class Pipelines extends DataMap ... | 2024-01-23T22:15:36 |
golang/go | cefaed0de0b86ea67588546d2e18f850e7b7d41d | 3aa1b0008169cea3ed79a4a19b66f64479be4402 | reflect: fix noswiss builder
Missed this change in CL 681936
Fixes #74808
Change-Id: I30f6402177c5f8efe9bd11d50fad1770a22762c5
Reviewed-on: https://go-review.googlesource.com/c/go/+/691675
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser... | [
{
"path": "src/reflect/map_noswiss.go",
"patch": "@@ -69,7 +69,7 @@ func MapOf(key, elem Type) Type {\n \tvar imap any = (map[unsafe.Pointer]unsafe.Pointer)(nil)\n \tmt := **(**mapType)(unsafe.Pointer(&imap))\n \tmt.Str = resolveReflectName(newName(s, \"\", false, false))\n-\tmt.TFlag = 0\n+\tmt.TFlag = abi... | 2025-07-29T22:31:09 |
vuejs/vue | 22a4d771977c03d36af03a102e32ac2f648ed368 | 9d57879de15f3def008e67771d8cab9d34fe74bc | fix select2 e2e test in phantomjs | [
{
"path": "test/e2e/specs/select2.js",
"patch": "@@ -8,7 +8,7 @@ module.exports = {\n .assert.containsText('p', 'Selected: 0')\n .assert.containsText('span.select2', 'Select one')\n \n- .click('span.select2')\n+ .moveToElement('span.select2', 5, 5).mouseButtonClick()\n .assert.co... | 2016-06-13T22:14:44 |
mrdoob/three.js | d963e6b307b99370db9209206240cece590a4caf | 59ceca26a0b0b2e39a223a5beb7f9087015f458e | WebGPUBackend: Fix occlusion query result | [
{
"path": "examples/jsm/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -551,7 +551,7 @@ class WebGPUBackend extends Backend {\n \n \t\t\tfor ( let i = 0; i < currentOcclusionQueryObjects.length; i ++ ) {\n \n-\t\t\t\tif ( results[ i ] !== 0 ) {\n+\t\t\t\tif ( results[ i ] !== 0n ) {\n \n \t\t\t\t\tocclude... | 2024-01-23T21:18:34 |
denoland/deno | 5bd9a337c1da8c7cad22c7760c02f80314021eea | cdd09fff20991283fb848c07a76791e0af45f1d4 | fix(ext/node): use primordials in `ext/node/polyfills/internal/console/constructor.mjs` (#29605)
Towards #24236. Replaces JS builtins with equivalent primordials. | [
{
"path": "ext/node/polyfills/internal/console/constructor.mjs",
"patch": "@@ -1,10 +1,53 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// den... | 2025-06-04T23:12:58 |
golang/go | 3aa1b0008169cea3ed79a4a19b66f64479be4402 | b1e933d95518a7978efb29772bd6129acf0af452 | regexp: fix compiling alternate patterns of different fold case literals
Fixing Equal method in regexp/syntax package fixes compilation of
some alternate patterns like "0A|0[aA]".
Fixes #59007
Change-Id: Idd519c6841167f932899b0ada347fb90a38a765e
GitHub-Last-Rev: 6f43cbca6361c0d084a12abeec65d7c659a4fe61
GitHub-Pull-R... | [
{
"path": "src/regexp/find_test.go",
"patch": "@@ -98,6 +98,8 @@ var findTests = []FindTest{\n \t{`\\B`, \"x y\", nil},\n \t{`\\B`, \"xx yy\", build(2, 1, 1, 4, 4)},\n \t{`(|a)*`, \"aa\", build(3, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2)},\n+\t{`0A|0[aA]`, \"0a\", build(1, 0, 2)},\n+\t{`0[aA]|0A`, \"0a\", build(... | 2025-07-04T22:59:25 |
vuejs/vue | 5d582df55633014c9fd08df3885121241b8a7dde | 687dcee0e3d53c62d9825669cb9b8c771193640b | Fix options for inline-template instances (#3063) | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -57,6 +57,6 @@ function initInternalComponent (vm: Component, options: InternalComponentOptions\n opts._componentTag = options._componentTag\n if (options.render) {\n opts.render = options.render\n- opts.staticRenderFns = opts.staticRenderFns\n+... | 2016-06-12T16:25:54 |
mrdoob/three.js | b8df03024ada15ff501bf725032d156404c5a8b1 | ce36e0d1406b99eda5a85003e7d846456db57887 | WebGPURenderer: Fix Video Textures in WebGL Backend (#27610)
* fix video webgl backend
* fix webgl video texture | [
{
"path": "examples/jsm/renderers/webgl/utils/WebGLTextureUtils.js",
"patch": "@@ -189,7 +189,7 @@ class WebGLTextureUtils {\n \n \n \t\t// follow WebGPU backend mapping for texture filtering\n-\t\tconst minFilter = texture.minFilter === LinearFilter ? LinearMipmapLinearFilter : texture.minFilter;\n+\t\tcon... | 2024-01-23T10:01:24 |
denoland/deno | d39343373c2410e6d0e7e576d825429eb438e590 | 0f6d515c91a486cc30acd34d1237f7fdaf95df8c | fix(ext/node): fix buffer.indexOf for ucs2 encoding (#29593) | [
{
"path": "ext/node/polyfills/internal_binding/buffer.ts",
"patch": "@@ -9,6 +9,7 @@ export function indexOfNeedle(\n source: Uint8Array,\n needle: Uint8Array,\n start = 0,\n+ step = 1,\n ): number {\n if (start >= source.length) {\n return -1;\n@@ -17,7 +18,7 @@ export function indexOfNeedle(\... | 2025-06-04T12:34:10 |
mrdoob/three.js | ce36e0d1406b99eda5a85003e7d846456db57887 | 4194940f9145164d8eebf2358f53c72780de44ab | WebGPURenderer: Add Anisotropy Support & Resolve Scissor Issues in WebGL Backend (#27609)
* fix anisotropy and stencil
* puppeteer doesnt like webgpu | [
{
"path": "examples/files.json",
"patch": "@@ -369,7 +369,8 @@\n \t\t\"webgpu_tsl_transpiler\",\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_postprocessing_afterimage\",\n-\t\t\"webgpu_multisampled_renderbuffers\"\n+\t\t\"webgpu_multisampled_renderbuffers\",\n+\t\t\"webgpu_materials_texture_anisotropy\"\... | 2024-01-23T09:33:24 |
golang/go | f3582fc80e19050d915ac9621bbeecef78c0548e | f7d167fe710501f687fad006125f4ec60be42c35 | cmd/compile: add unsigned power-of-two detector
Fixes #74485
Change-Id: Ia22a58ac43bdc36c8414d555672a3a3eafc749ca
Reviewed-on: https://go-review.googlesource.com/c/go/+/689815
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1014,11 +1014,10 @@\n // See ../magic.go for a detailed description of these algorithms.\n \n // Unsigned divide by power of 2. Strength reduce to a shift.\n-(Div8u n (Const8 [c])) && isPowerOfTwo(c) => (Rsh8Ux64 n (Const64 <typ.... | 2025-07-23T11:48:18 |
vuejs/vue | 9438408210325c3d94295241c8e0dce4307fb259 | 13d64d203977537d40a2a41e1ac0fe0fb18d0768 | fix SSR tests after preserveWhitespace removal | [
{
"path": "test/ssr/ssr-stream.spec.js",
"patch": "@@ -53,12 +53,12 @@ describe('SSR: renderToStream', () => {\n stream.on('end', () => {\n expect(res).toContain(\n '<div server-rendered=\"true\">' +\n- '<p class=\"hi\">yoyo</p>' +\n- '<div id=\"ho\" class=\"a red\"></div>' +... | 2016-06-10T22:26:48 |
mrdoob/three.js | 02d41f89d5a58bee0fbcfcab169409e5337de403 | 74aa7bd1403b8b384ed90f8518129e7fa5fe2d23 | Volumetric NURBS (#27601)
* Update Addons.js
* Update NURBSUtils.js
Fixed inconsistent naming of parameters in comment
* Update NURBSUtils.js
* Create NURBSVolume.js
* Update webgl_geometry_nurbs.html
Expanded NURBS example to NURBSVolume objects.
* Update webgl_geometry_nurbs.html
Added missin... | [
{
"path": "examples/jsm/Addons.js",
"patch": "@@ -25,6 +25,7 @@ export * from './csm/CSMShader.js';\n export * as Curves from './curves/CurveExtras.js';\n export * from './curves/NURBSCurve.js';\n export * from './curves/NURBSSurface.js';\n+export * from './curves/NURBSVolume.js';\n export * as NURBSUtils f... | 2024-01-23T09:14:34 |
vuejs/vue | d813c5942012ae2793da3093758cf2eb09a0b928 | a5cd31ab6dbb3151b4443e43ce87d6e468b35427 | change default error behavior to throw | [
{
"path": "src/core/observer/watcher.js",
"patch": "@@ -102,10 +102,11 @@ export default class Watcher {\n if (config.errorHandler) {\n config.errorHandler.call(null, e, this.vm)\n } else {\n- warn(e.stack)\n+ throw e\n }\n }\n // return old va... | 2016-06-10T21:13:57 |
golang/go | e0b07dc22eaab1b003d98ad6d63cdfacc76c5c70 | 25816d401c459a9dfedded3b42315a8bd2d32802 | os/exec: fix incorrect expansion of "", "." and ".." in LookPath
Fix incorrect expansion of "" and "." when $PATH contains an executable
file or, on Windows, a parent directory of a %PATH% element contains an
file with the same name as the %PATH% element but with one of the
%PATHEXT% extension (ex: C:\utils\bin is in ... | [
{
"path": "src/os/exec/dot_test.go",
"patch": "@@ -177,4 +177,48 @@ func TestLookPath(t *testing.T) {\n \t\t\t}\n \t\t}\n \t})\n+\n+\tchecker := func(test string) func(t *testing.T) {\n+\t\treturn func(t *testing.T) {\n+\t\t\tt.Helper()\n+\t\t\tt.Logf(\"PATH=%s\", os.Getenv(\"PATH\"))\n+\t\t\tp, err := Look... | 2025-06-30T14:58:59 |
mrdoob/three.js | e43ed970eaf1b1bf835878c815d5691d87ab3216 | 13a5874eabfe45fb8459e268e9786a20054bb6a2 | WebGPURenderer: Add timestamp queries support in WebGPU (#27597)
* add timestamp queries support
* add live example
* improve example
* honor async render and move to renderer await functions
* rename to trackTimestamp and cleanupg
* new async standard
* fix tabs
--------- | [
{
"path": "examples/jsm/objects/QuadMesh.js",
"patch": "@@ -37,9 +37,9 @@ class QuadMesh {\n \n \t}\n \n-\trender( renderer ) {\n+\tasync renderAsync( renderer ) {\n \n-\t\trenderer.render( this._mesh, _camera );\n+\t\tawait renderer.renderAsync( this._mesh, _camera );\n \n \t}\n \n@@ -55,6 +55,12 @@ class ... | 2024-01-21T15:47:50 |
vuejs/vue | a53d54aa8a169e52e895ff1a888ddea0cc8d7ac6 | be51320ca81ea1096049f313945e1490b4993c9a | fix whitespace vnode identity breaking patch (fix #3043) | [
{
"path": "examples/tree/index.html",
"patch": "@@ -40,7 +40,7 @@\n v-for=\"model in model.children\"\n :model=\"model\">\n </item>\n- <li @click=\"addChild\">+</li>\n+ <li class=\"add\" @click=\"addChild\">+</li>\n </ul>\n </li>\n </scri... | 2016-06-08T17:28:55 |
golang/go | aa95ab8215760dfd6e1b8bb02aa2211021108512 | 4c854b7a3e5fc3e84a06511bce71ce01cbb4bb33 | image: fix formatting of godoc link
Change-Id: I8fa8741e0db174f0c32af0a393ee1b037d5b7e51
Reviewed-on: https://go-review.googlesource.com/c/go/+/680455
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Mark Freeman <mark@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser... | [
{
"path": "src/image/image.go",
"patch": "@@ -34,7 +34,9 @@\n // regardless of whether the image is itself malformed or not. A call to\n // [DecodeConfig] which returns a header which does not match the image returned\n // by [Decode] may be considered a security issue, and should be reported per the\n-// [... | 2025-06-10T14:56:45 |
mrdoob/three.js | 13a5874eabfe45fb8459e268e9786a20054bb6a2 | 6c1e2c0a2d6f694548a74f208df47569040f8100 | WebGPURenderer: Custom fog example, TriNoise3D and fixes (#27599)
* LoopNode: Fix float values in GLSL
* Added TriNoise3D TSL
* Fix non-TSL class extended
* add webgpu_custom_fog example
* revision
* cleanup
* update screenshot
* Update puppeteer.js
* auto rotate
* update builds
* update | [
{
"path": "examples/files.json",
"patch": "@@ -330,6 +330,7 @@\n \t\t\"webgpu_cubemap_adjustments\",\n \t\t\"webgpu_cubemap_dynamic\",\n \t\t\"webgpu_cubemap_mix\",\n+\t\t\"webgpu_custom_fog\",\n \t\t\"webgpu_depth_texture\",\n \t\t\"webgpu_equirectangular\",\n \t\t\"webgpu_instance_mesh\",",
"additions... | 2024-01-21T15:25:53 |
denoland/deno | 0f6d515c91a486cc30acd34d1237f7fdaf95df8c | ff8160b594dbce3680f8139bad3783f52a08ce85 | fix(ext/node): fix buffer.includes edge cases (#29591) | [
{
"path": "ext/node/polyfills/internal_binding/buffer.ts",
"patch": "@@ -36,18 +36,6 @@ export function indexOfNeedle(\n return -1;\n }\n \n-export function numberToBytes(n: number): Uint8Array {\n- if (n === 0) return new Uint8Array([0]);\n-\n- const bytes = [];\n- bytes.unshift(n & 255);\n- while (n... | 2025-06-04T05:39:27 |
golang/go | f8eae7a3c33fcf9d31117b1a1a49a47b0343f811 | 098426447182a216991923d5bf95cdd3ae836e2c | os/user: fix tests to pass on non-english Windows
Tests on Windows are dependent on the english names of system accounts
and groups.
But on a french install of Windows the system accounts are:
- AUTORITE NT\Système
- AUTORITE NT\SERVICE LOCAL
- AUTORITE NT\SERVICE RÉSEAU
To allow the tests to pass on non-english Win... | [
{
"path": "src/os/user/user_windows_test.go",
"patch": "@@ -18,6 +18,7 @@ import (\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync\"\n \t\"syscall\"\n \t\"testing\"\n \t\"unicode\"\n@@ -261,9 +262,21 @@ func TestGroupIdsTestUser(t *testing.T) {\n \t}\n }\n \n+var isSystemDefaultLCIDEnglish = sync.... | 2025-07-18T10:36:00 |
vuejs/vue | d9ce1306e182fff35dbd2efa82385d3312042235 | 56ebb003a462da02c4aac50a4e1f6f2a5a51e9f3 | fix tests for global name override | [
{
"path": "test/unit/features/options/name.spec.js",
"patch": "@@ -39,13 +39,12 @@ describe('Options name', () => {\n expect(vm.options.components['Hyper*Vue']).toBeUndefined()\n })\n \n- it('id should override given name when using Vue.component', () => {\n+ it('id should not override given name wh... | 2016-06-08T16:53:28 |
mrdoob/three.js | 6c1e2c0a2d6f694548a74f208df47569040f8100 | edcd30520f23fbf8fd03454303820f7a0a9a316b | WebGPURenderer: Fix `copyFramebufferToTexture` wrong framebuffer binding in WebGLBackend (#27593)
* fix framebuffer binding
* fix stencil
* fix webgl warning with unecessary READ_FRAMEBUFFER null binding | [
{
"path": "examples/jsm/renderers/webgl/utils/WebGLTextureUtils.js",
"patch": "@@ -486,21 +486,25 @@ class WebGLTextureUtils {\n \t\tconst width = texture.image.width;\n \t\tconst height = texture.image.height;\n \n-\t\tstate.bindFramebuffer( gl.READ_FRAMEBUFFER, null );\n-\n \t\tif ( texture.isDepthTexture... | 2024-01-20T19:42:32 |
denoland/deno | ff8160b594dbce3680f8139bad3783f52a08ce85 | 6bb3f6fad6157dedefb350565494d3c66ddb74b7 | fix(ext/node): support DEP0005 deprecation warning (#29530)
This commit adds support of `DEP0005` warning which is emitted when the user
calls `Buffer` as constructor. | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -478,6 +478,7 @@ deno_core::extension!(deno_node,\n ops::require::op_require_break_on_next_statement,\n ops::util::op_node_guess_handle_type,\n ops::util::op_node_view_has_buffer,\n+ ops::util::op_node_call_is_from_dependency<TInNpmPackageChecker, TNp... | 2025-06-04T03:25:32 |
golang/go | cd3655a8243b5f52b6a274a0aba5e01d998906c0 | d5dc36af455ebd3e613780136766fba0cef7b0c4 | internal/runtime/maps: fix spelling errors in comments
Change-Id: I289d26f75bb556b46699159f06ce7eb03d34656d
GitHub-Last-Rev: 10ce76df1d4951e021d460808c9d477cfbcf7c5c
GitHub-Pull-Request: golang/go#74733
Reviewed-on: https://go-review.googlesource.com/c/go/+/690095
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBo... | [
{
"path": "src/internal/runtime/maps/group.go",
"patch": "@@ -39,7 +39,7 @@ const (\n // On other architectures, bitset uses one byte per slot, where each byte is\n // either 0x80 if the slot is part of the set or 0x00 otherwise. This makes it\n // convenient to calculate for an entire group at once using s... | 2025-07-24T02:36:26 |
vuejs/vue | 56ebb003a462da02c4aac50a4e1f6f2a5a51e9f3 | be9264fbdcc0999ec84902ccc35dffa0a9c76d9c | fix global component name | [
{
"path": "src/core/global-api/assets.js",
"patch": "@@ -25,7 +25,7 @@ export function initAssetRegisters (Vue: GlobalAPI) {\n }\n }\n if (type === 'component' && isPlainObject(definition)) {\n- definition.name = id\n+ definition.name = definition.name || id\n ... | 2016-06-08T16:19:29 |
mrdoob/three.js | 668968e67c416b925abc5c68e1d3273651a5ac6d | 687df5c3c2936828060db734334a2f9d4c6c8e5a | 🎥 : PerspectiveCamera: New helper methods `getFrustumBounds()`, `getFrustumSize()`. (#27574)
* 🎥 : WIP : New PerspectiveCamera helper method - getMarginAt()
* 🐛 : FIX : Various small fixes
* 🎥 : UPGRADE : Account for camera's matrix world
* 🎥 : REFACTOR : getMarginsAt() => frustumHeight(), frustumWidth()... | [
{
"path": "docs/api/en/cameras/PerspectiveCamera.html",
"patch": "@@ -118,6 +118,19 @@ <h2>Methods</h2>\n \t\t<h3>[method:undefined clearViewOffset]()</h3>\n \t\t<p>Removes any offset set by the [page:PerspectiveCamera.setViewOffset .setViewOffset] method.</p>\n \n+\t\t<h3>[method:Vector2 getFrustumSize]( [... | 2024-01-19T20:23:36 |
denoland/deno | 6bb3f6fad6157dedefb350565494d3c66ddb74b7 | 34ed9bab2ba9084d80f03bb3255bb02fbec7ba8a | fix(node/assert): throw on deepStrictEqual({}, Object.create(null)) (#29428) | [
{
"path": "ext/node/polyfills/_util/std_asserts.ts",
"patch": "@@ -198,9 +198,14 @@ export function equal(c: unknown, d: unknown): boolean {\n }\n \n function constructorsEqual(a: object, b: object) {\n- return a.constructor === b.constructor ||\n- a.constructor === Object && !b.constructor ||\n- !a.... | 2025-06-04T02:00:54 |
golang/go | 64ba72474d9a637fc8152c3bbd8cdec3ffde2940 | e151db3e065eea8a13fd2bc83aafb6959edd6fca | errors: omit redundant nil check in type assertion for Join
When ok is true, err can't be nil.
Make it behave more like the Unwrap function.
Change-Id: Ieba5de57d60f5ff4d6a3468d703e6f72be02a97d
GitHub-Last-Rev: 6df9365a1d586bba64df57be11f9ca7b772cc773
GitHub-Pull-Request: golang/go#74764
Reviewed-on: https://go-revi... | [
{
"path": "src/errors/join.go",
"patch": "@@ -28,12 +28,10 @@ func Join(errs ...error) error {\n \t}\n \tif n == 1 {\n \t\tfor _, err := range errs {\n-\t\t\tif err != nil {\n-\t\t\t\tif _, ok := err.(interface {\n-\t\t\t\t\tUnwrap() []error\n-\t\t\t\t}); ok {\n-\t\t\t\t\treturn err\n-\t\t\t\t}\n+\t\t\tif _... | 2025-07-26T02:49:42 |
vuejs/vue | b02b1e5ba4909385d7f1ed08fc1300170fdfc44f | 2091c8525f5e0dca47c9672323f91449832688b7 | better template compilation error warnings | [
{
"path": "flow/compiler.js",
"patch": "@@ -100,6 +100,7 @@ declare type ASTElement = {\n declare type ASTExpression = {\n type: 2,\n expression: string,\n+ text: string,\n static?: boolean\n }\n ",
"additions": 1,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "src/compile... | 2016-06-06T18:15:21 |
mrdoob/three.js | 687df5c3c2936828060db734334a2f9d4c6c8e5a | 597b839e1790c1a4551602c9d8fdae1de3dbab82 | BufferGeometryUtils.mergeAttributes: Add support for interleaved buffers (#27591)
* Add support for interleaved attributes to mergeAttributes
* Fix use of offset | [
{
"path": "examples/jsm/utils/BufferGeometryUtils.js",
"patch": "@@ -311,13 +311,6 @@ function mergeAttributes( attributes ) {\n \n \t\tconst attribute = attributes[ i ];\n \n-\t\tif ( attribute.isInterleavedBufferAttribute ) {\n-\n-\t\t\tconsole.error( 'THREE.BufferGeometryUtils: .mergeAttributes() failed.... | 2024-01-19T15:03:02 |
denoland/deno | a3395ba97218b91f3d743b0af1a8086d108eb5f0 | b42d5906cd57aec2178258332ace4e2463388ff6 | fix(otel): set timestamp on opentelemetry log records (#28625)
Co-authored-by: David Sherret <dsherret@users.noreply.github.com> | [
{
"path": "ext/telemetry/lib.rs",
"patch": "@@ -882,7 +882,9 @@ pub fn handle_log(record: &log::Record) {\n \n let mut log_record = LogRecord::default();\n \n- log_record.set_observed_timestamp(SystemTime::now());\n+ let now = SystemTime::now();\n+ log_record.set_timestamp(now);\n+ log_record.set_obse... | 2025-06-03T17:56:32 |
golang/go | 10c5cf68d40e2b26336e4b4e59d4c2f3fc3f03b9 | 46b5839231381e8b36eab10ba9b2c37ba579a75d | net/http: add proper panic message
Change-Id: Ibfb330eaf24e004ddec60a5ca08cdc780235ad8c
Reviewed-on: https://go-review.googlesource.com/c/go/+/688315
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit: Damien Neil <dneil@google.com>
Reviewed-by: Mark Freeman <mark@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-s... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -1614,7 +1614,7 @@ func writeStatusLine(bw *bufio.Writer, is11 bool, code int, scratch []byte) {\n // It's illegal to call this before the header has been flushed.\n func (w *response) bodyAllowed() bool {\n \tif !w.wroteHeader {\n-\t\tpanic(\"\")\n+\t\tpanic... | 2025-07-16T08:12:54 |
mrdoob/three.js | 6b31f885a946180a0b9d512634c62906fb5c5dc1 | 6fe0b840ecdd4509370bff655cf0f085c256cb00 | Material: Add alpha to coverage define, add clipping & alpha test anti aliasing (#22172)
* add alpha-to-coverage define
* update clipping plane material to support alpha to coverage
* update cliping examples
* add early discard
* make standard material work
* update stencil example
* fix alphaToCover... | [
{
"path": "docs/api/en/materials/Material.html",
"patch": "@@ -45,8 +45,9 @@ <h3>[property:Float alphaTest]</h3>\n \t\t<h3>[property:Boolean alphaToCoverage]</h3>\n \t\t<p>\n \t\t\tEnables alpha to coverage. Can only be used with MSAA-enabled contexts\n-\t\t\t(meaning when the renderer was created with `ant... | 2024-01-19T09:38:51 |
vuejs/vue | 942ba3a8f08b3fc1e3a82008d0c48d6f0e745bbe | a5a9dc9b694da007a13bd5adfd64b0ab0750ad57 | cherry-pick #3027 iOS 9.3 MutationObserver fix | [
{
"path": "src/core/util/env.js",
"patch": "@@ -15,7 +15,17 @@ export const devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__\n // UA sniffing for working around browser-specific quirks\n const UA = inBrowser && window.navigator.userAgent.toLowerCase()\n const isIos = UA && /(iphone|ipad|ipod|ios)... | 2016-06-04T22:43:21 |
denoland/deno | a756a7bf8e943299d1da8497f81419d7683c0119 | 0e92f1a312a401058520bc07e8dbf9e7eed2e444 | fix(ext/node): fix prototype of asymmetricKeyDetails of AsymmetricKeyObject (#29576) | [
{
"path": "ext/node/polyfills/internal/crypto/keys.ts",
"patch": "@@ -781,7 +781,7 @@ class AsymmetricKeyObject extends KeyObject {\n }\n \n get asymmetricKeyDetails() {\n- return op_node_get_asymmetric_key_details(this[kHandle]);\n+ return { ...op_node_get_asymmetric_key_details(this[kHandle]) };... | 2025-06-03T12:45:28 |
mrdoob/three.js | a7b2f19aefaab83462d22e3ae9a537445cef2f1d | 9eefe186dea772510e36baf189824b66d0c419fc | Examples: Update external library dependencies (#27584)
* Update external lib version
* Fix import | [
{
"path": "examples/webgl_geometry_csg.html",
"patch": "@@ -29,8 +29,8 @@\n \t\t\t\t\"imports\": {\n \t\t\t\t\t\"three\": \"../build/three.module.js\",\n \t\t\t\t\t\"three/addons/\": \"./jsm/\",\n-\t\t\t\t\t\"three-mesh-bvh\": \"https://unpkg.com/three-mesh-bvh@0.6.0/build/index.module.js\",\n-\t\t\t\t\t\"t... | 2024-01-18T12:33:27 |
golang/go | 46b5839231381e8b36eab10ba9b2c37ba579a75d | 98f301cf687b7a3aaab62c9d28999136117f9589 | test/codegen: fix failing condmove wasm tests
These recently added tests failed when using the -all_codgen flag.
Fixes #74770
Change-Id: Idea1ea02af2bd9f45c7d0a28d633c7442328e6df
Reviewed-on: https://go-review.googlesource.com/c/go/+/690715
Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
Run-TryBot: Michael Munday <mik... | [
{
"path": "test/codegen/condmove.go",
"patch": "@@ -459,7 +459,7 @@ func cmovmathadd(a uint, b bool) uint {\n \t// amd64:\"ADDQ\", -\"CMOV\"\n \t// arm64:\"CSINC\", -\"CSEL\"\n \t// ppc64x:\"ADD\", -\"ISEL\"\n-\t// wasm:\"Add\", \"-Select\"\n+\t// wasm:\"I64Add\", -\"Select\"\n \treturn a\n }\n \n@@ -470,7 ... | 2025-07-26T23:17:49 |
vuejs/vue | 170acc4f69b16283ff16d91b56339998dc973937 | f86a47d02ee695fae7c7a14e5d66e2b5914769dc | Fix typo in util/debug (#3032) | [
{
"path": "src/core/util/debug.js",
"patch": "@@ -15,7 +15,7 @@ if (process.env.NODE_ENV !== 'production') {\n \n formatComponentName = vm => {\n if (vm.$root === vm) {\n- return ' (found in root instnace)'\n+ return ' (found in root instance)'\n }\n const name = vm._isVue\n ? ... | 2016-06-04T14:21:00 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.