repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
mrdoob/three.js | dfab00fb5ee7b1b17c99dbf88b63c616d8edd667 | d9bf05e6ad06aa29a867e50a82de5bb7bd3ee587 | Docs: Fix code blocks occasionally lacking white-space in Firefox (#30036) | [
{
"path": "docs/page.js",
"patch": "@@ -205,6 +205,7 @@ function onDocumentLoad() {\n \t\tfor ( let i = 0; i < elements.length; i ++ ) {\n \n \t\t\tconst e = elements[ i ];\n+\t\t\te.currentStyle = { 'whiteSpace': 'pre-wrap' }; // Workaround for Firefox, see #30008\n \t\t\te.className += ' prettyprint';\n \... | 2024-12-04T13:38:11 |
golang/go | c761b26b56eec36390885e5373aab2fd17dc67ef | 65858a146e585b74d41db63f3821d6a150f36d49 | mime: parse media types that contain braces
This CL fixes a bug introduced by CL 666655: isTokenChar would no longer
(but should) report true for '{' and '}'.
Fixes #76236
Change-Id: Ifc0953c30d7cae7bfba9bc4b6bb6951a83c52576
GitHub-Last-Rev: c91a75c2c8778a9a8343c6bb4fa89eb1f978059f
GitHub-Pull-Request: golang/go#762... | [
{
"path": "src/mime/grammar.go",
"patch": "@@ -62,7 +62,9 @@ func isTokenChar(c byte) bool {\n \t\t1<<'^' |\n \t\t1<<'_' |\n \t\t1<<'`' |\n+\t\t1<<'{' |\n \t\t1<<'|' |\n+\t\t1<<'}' |\n \t\t1<<'~'\n \treturn ((uint64(1)<<c)&(mask&(1<<64-1)) |\n \t\t(uint64(1)<<(c-64))&(mask>>64)) != 0",
"additions": 2,
... | 2025-11-10T21:20:09 |
denoland/deno | 96434a1d390d105514b8bf6f8ac0fc135e8f8f7a | 00f1eeb8b00e854d610e8b8f4c545e2822ff6c3c | fix(ext/web): Event dispatch should continue after reporting exception (#31297)
https://dom.spec.whatwg.org/#concept-event-listener-inner-invoke
---------
Signed-off-by: snek <snek@deno.com> | [
{
"path": "ext/web/02_event.js",
"patch": "@@ -772,16 +772,20 @@ function innerInvokeEventListeners(\n setInPassiveListener(eventImpl, true);\n }\n \n- if (typeof listener.callback === \"object\") {\n- if (typeof listener.callback.handleEvent === \"function\") {\n- listener.callback... | 2025-11-15T17:45:29 |
mrdoob/three.js | ad0ff80ce559e87a2921d1b1b6761f2954c0fe59 | ae2791a85ed47eff59dd3ff83d1adc88950f858e | LineSegments2: Fix `raycast()` . (#30016)
* updated linesegments2 webgpu
* Update LineSegments2.js
FIx codescan issue.
* use of vec4 to transfer viewport to this.resolution
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
Co-authored-by: Renaud Rohlinger <renaud.rohlinger... | [
{
"path": "examples/jsm/lines/webgpu/LineSegments2.js",
"patch": "@@ -9,9 +9,9 @@ import {\n \tSphere,\n \tVector3,\n \tVector4,\n-\tLine2NodeMaterial\n+\tLine2NodeMaterial,\n+\tVector2\n } from 'three/webgpu';\n-\n import { LineSegmentsGeometry } from '../../lines/LineSegmentsGeometry.js';\n \n const _star... | 2024-12-04T06:07:50 |
vuejs/vue | f2bd882073919add805bf359ecdf632faf9abfcd | 5d965d5b3bbe0e76cdb97e41e01a704322253e09 | Fix: nested child elements can not be updated correctly, fix #5618 (#5627)
* fix:nested elements can not be updated correctly
* add tests
* ensure nestedIndex is always passed down | [
{
"path": "src/core/instance/render-helpers/render-list.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { isObject } from 'core/util/index'\n+import { isObject, isDef } from 'core/util/index'\n \n /**\n * Runtime helper for rendering v-for lists.\n@@ -28,5 +28,8 @@ export function renderList (\n ... | 2017-05-09T15:21:49 |
golang/go | 65858a146e585b74d41db63f3821d6a150f36d49 | 4bfc3a9d14c0b3bfcfe4ce987e47cda6720785a2 | os/exec: include Cmd.Start in the list of methods that run Cmd
Fixes #76265
Change-Id: I451271c5662dd3bcdeec07b55761b15f64c00dcd
Reviewed-on: https://go-review.googlesource.com/c/go/+/719860
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit: Keith Randall <khr@gol... | [
{
"path": "src/os/exec/exec.go",
"patch": "@@ -142,8 +142,8 @@ func (w wrappedError) Unwrap() error {\n \n // Cmd represents an external command being prepared or run.\n //\n-// A Cmd cannot be reused after calling its [Cmd.Run], [Cmd.Output] or [Cmd.CombinedOutput]\n-// methods.\n+// A Cmd cannot be reused... | 2025-11-11T21:08:26 |
denoland/deno | b0cfbf53d3984a8e4aa26ca4f24d48f0df54e7c8 | ffe207a859a85b6eb0079b137916ed12c0efbfce | fix(ext/node): Add sqlite `setAllowUnknownNamedParameters` option (#31202)
Adds
[statement.setAllowUnknownNamedParameters(enabled)](https://nodejs.org/api/sqlite.html#statementsetallowunknownnamedparametersenabled)
to `node:sqlite`.
Closes #31196 | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -569,6 +569,7 @@ impl DatabaseSync {\n statements: Rc::clone(&self.statements),\n use_big_ints: Cell::new(false),\n allow_bare_named_params: Cell::new(true),\n+ allow_unknown_named_params: Cell::new(false),\n is_iter_fini... | 2025-11-14T10:30:03 |
mrdoob/three.js | ae2791a85ed47eff59dd3ff83d1adc88950f858e | 93dccc14104083f2e24020ba62e691cb66e32ac4 | WebGPURenderer: Fix filterable depth textures (#30023)
* fix filterable depth textures
* cleanup | [
{
"path": "examples/webgpu_backdrop_water.html",
"patch": "@@ -191,7 +191,7 @@\n \n \t\t\t\t// renderer\n \n-\t\t\t\trenderer = new THREE.WebGPURenderer( /*{ antialias: true }*/ );\n+\t\t\t\trenderer = new THREE.WebGPURenderer( { antialias: true } );\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio... | 2024-12-03T21:25:44 |
vuejs/vue | 1c40e327062452fc9c934e728b70014810653b6a | ca02043194c7f464e65559347bc6ee2539554762 | Fix use mixin API feat continuous operation (#5610)
* Update use.js
fix:use feat continuous operation
* Update mixin.js
fix:mixin feat continuous operation | [
{
"path": "src/core/global-api/mixin.js",
"patch": "@@ -5,5 +5,6 @@ import { mergeOptions } from '../util/index'\n export function initMixin (Vue: GlobalAPI) {\n Vue.mixin = function (mixin: Object) {\n this.options = mergeOptions(this.options, mixin)\n+ return this\n }\n }",
"additions": 1,
... | 2017-05-09T12:23:38 |
denoland/deno | ffe207a859a85b6eb0079b137916ed12c0efbfce | de72003747692fc64628890efe7f22ba4cca58ac | fix(ext/node): FileHandle compatibility (#31164)
Towards #29972
Tries to reland #31094 that got reverted on #31103 due to CI test
failures. This PR differs by fixing the `[kUnref]` method to close
resource ID correctly.
Allows the following tests to pass:
-
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/... | [
{
"path": "ext/node/polyfills/_fs/_fs_fchmod.ts",
"patch": "@@ -10,6 +10,7 @@ import {\n } from \"ext:deno_node/internal/validators.mjs\";\n import { op_fs_fchmod_async, op_fs_fchmod_sync } from \"ext:core/ops\";\n import { primordials } from \"ext:core/mod.js\";\n+import { promisify } from \"ext:deno_node/... | 2025-11-14T05:17:45 |
mrdoob/three.js | 93dccc14104083f2e24020ba62e691cb66e32ac4 | 0c451569e3087add35b4e30f1b2dd1f2ca8fb5a2 | Node: Document more modules. (#30027)
* Node: Document more modules.
* Docs: Minor fixes.
* Docs: More fixes. | [
{
"path": "src/nodes/core/LightingModel.js",
"patch": "@@ -10,6 +10,7 @@ class LightingModel {\n \t * This method is intended for setting up lighting model and context data\n \t * which are later used in the evaluation process.\n \t *\n+\t * @abstract\n \t * @param {ContextNode} input - The current node con... | 2024-12-03T15:00:46 |
golang/go | 4bfc3a9d14c0b3bfcfe4ce987e47cda6720785a2 | 2263d4aabdde8a4a466009ecc356501f87c7efb7 | std,cmd: go fix -any std cmd
This change mechanically replaces all occurrences of interface{}
by 'any' (where deemed safe by the 'any' modernizer) throughout
std and cmd, minus their vendor trees.
Since this fix is relatively numerous, it gets its own CL.
Also, 'go generate go/types'.
Change-Id: I14a6b52856c3291c1d... | [
{
"path": "src/cmd/asm/internal/asm/endtoend_test.go",
"patch": "@@ -38,7 +38,7 @@ func testEndToEnd(t *testing.T, goarch, file string) {\n \tctxt.IsAsm = true\n \tdefer ctxt.Bso.Flush()\n \tfailed := false\n-\tctxt.DiagFunc = func(format string, args ...interface{}) {\n+\tctxt.DiagFunc = func(format string... | 2025-11-11T19:48:22 |
vuejs/vue | d52a4991bd6cd28d57c42c97446d27cbb36416e5 | 9ac4c4188d03fec51337b257a95954f0d3fa30a0 | Prevent unecessary input trigger with v-model (#5589)
* Prevent unecessary input trigger with v-model
Fix #5586
* Add test for compositionend on v-model + @input
* [skip ci] Rename tests for compositionend | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -119,6 +119,8 @@ function onCompositionStart (e) {\n }\n \n function onCompositionEnd (e) {\n+ // prevent triggering an input event for no reason\n+ if (!e.target.composing) return\n e.target.composing = false\n trigger(e.target, ... | 2017-05-07T13:46:33 |
denoland/deno | de72003747692fc64628890efe7f22ba4cca58ac | 67ee2af25011bd14b08476a77e8dc272858407ae | fix(tunnel): misc fixes (#30968) | [
{
"path": "cli/main.rs",
"patch": "@@ -715,19 +715,12 @@ async fn resolve_flags_and_init(\n .map(|files| files.iter().map(PathBuf::from).collect());\n load_env_variables_from_env_files(env_file_paths.as_ref(), flags.log_level);\n \n- if deno_lib::args::has_flag_env_var(\"DENO_CONNECTED\")\n- && ma... | 2025-11-14T05:10:00 |
mrdoob/three.js | 5d6a035e3afa8f6cce47a1ba949cce2b5f363f82 | 360600e856ef5b84e894ab256a0793c9a53808d0 | Docs: fix french typos (#30019)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "docs/api/fr/animation/AnimationAction.html",
"patch": "@@ -13,7 +13,7 @@ <h1>[name]</h1>\n Les AnimationActions programment la performance des animations qui sont stockées dans\n [page:AnimationClip AnimationClips].<br /><br />\n \n- Note: La plupart des méthode... | 2024-12-02T22:27:37 |
golang/go | 951cf0501b57d31e648f2808820f2c7eaca3edc8 | 2750f9529148d21c5e29cb325acccc6240e813cf | internal/trace/testtrace: fix flag name typos
Change-Id: I6a6a636cd82a3e22a482ea2b2ab1004c45e2c304
Reviewed-on: https://go-review.googlesource.com/c/go/+/719400
Auto-Submit: Michael Pratt <mpratt@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco... | [
{
"path": "src/internal/trace/testtrace/helpers.go",
"patch": "@@ -37,7 +37,7 @@ func Dump(t *testing.T, testName string, traceBytes []byte, forceToFile bool) {\n \t\t\tt.Logf(\"text trace too large to dump (%d bytes)\", len(s))\n \t\t} else {\n \t\t\tt.Log(s)\n-\t\t\tt.Log(\"Convert this to a raw trace wit... | 2025-11-10T21:19:36 |
vuejs/vue | 9ac4c4188d03fec51337b257a95954f0d3fa30a0 | 5c0c8c886520133e99d837a7a7161ced233f5120 | fix #5591: keep ssr template interpolation whitespace-insensitive (#5597) | [
{
"path": "src/server/template-renderer/parse-template.js",
"patch": "@@ -2,7 +2,7 @@\n \n const compile = require('lodash.template')\n const compileOptions = {\n- escape: /{{[^{]([\\s\\S]+?)[^}]}}/g,\n+ escape: /{{([^{][\\s\\S]+?[^}])}}/g,\n interpolate: /{{{([\\s\\S]+?)}}}/g\n }\n ",
"additions": ... | 2017-05-07T13:43:02 |
denoland/deno | 67ee2af25011bd14b08476a77e8dc272858407ae | 138b2e0e62d07a8786385cae46ac179afbf9973f | fix(ext/signals): don't run exit hooks at non-exit times (#31269)
when we changed the otel exit handler to call shutdown instead of flush,
it exposed another bug where we are calling exit handlers multiple times
for the 3 signals we have defined. this meant that we would shut down
otel before the program finished runn... | [
{
"path": "ext/net/tunnel.rs",
"patch": "@@ -48,15 +48,15 @@ pub fn disable_before_exit() {\n }\n \n pub fn before_exit() {\n- if let Some(tunnel) = get_tunnel() {\n- log::trace!(\"deno_net::tunnel::before_exit >\");\n+ log::trace!(\"deno_net::tunnel::before_exit >\");\n \n+ if let Some(tunnel) = get_... | 2025-11-13T22:15:37 |
mrdoob/three.js | b2320be805e60f68732ad678b518d6f222d87cd4 | 480c4140232d9d16e191f8666f583ec73e666f2e | Node: Document more modules. (#30012)
* Node: Document more modules.
* Docs: Fix typo. | [
{
"path": "src/nodes/core/Node.js",
"patch": "@@ -98,7 +98,22 @@ class Node extends EventDispatcher {\n \n \t\t// private\n \n+\t\t/**\n+\t\t * The cache key of this node.\n+\t\t *\n+\t\t * @private\n+\t\t * @type {Number?}\n+\t\t * @default null\n+\t\t */\n \t\tthis._cacheKey = null;\n+\n+\t\t/**\n+\t\t * ... | 2024-12-02T17:24:19 |
vuejs/vue | a8da4fb051bfc085e7e3781adbe6346b9db7d674 | b977c77d344cb1fc63a3daa50a4b96ef70e77ec5 | fix #5592: comment vnode should not be merged into text vnode. (#5593)
* comment vnode should not be merged into text vnode.
* add isFalse helper
* delete trailing spaces | [
{
"path": "src/core/vdom/helpers/normalize-children.js",
"patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n import VNode, { createTextVNode } from 'core/vdom/vnode'\n-import { isDef, isUndef, isPrimitive } from 'shared/util'\n+import { isFalse, isDef, isUndef, isPrimitive } from 'shared/util'\n \n // The template... | 2017-05-07T13:39:04 |
golang/go | 426ef30ecf2d2b6eadd962358884ed68220b9cc5 | 5241d114f55cfa69a4bf8f2051f5d83d1f618859 | cmd/go: implement -reuse for Mercurial repos
When we added -reuse in CL 411398, we only handled Git repos.
This was partly because we were focused on Git traffic,
partly because Git is the dominant module VCS, and
partly because I couldn't see how to retrieve the metadata needed
in other version control systems.
This... | [
{
"path": "lib/hg/goreposum.py",
"patch": "@@ -0,0 +1,64 @@\n+# Copyright 2025 The Go Authors. All rights reserved.\n+# Use of this source code is governed by a BSD-style\n+# license that can be found in the LICENSE file.\n+\n+# Mercurial extension to add a 'goreposum' command that\n+# computes a hash of a ... | 2025-08-19T19:27:39 |
mrdoob/three.js | 480c4140232d9d16e191f8666f583ec73e666f2e | 45b953d0d326cede15427ced44610ae61052a9aa | Update Matrix3.tests.js
Fix unit test. | [
{
"path": "test/unit/src/math/Matrix3.tests.js",
"patch": "@@ -2,6 +2,7 @@\n \n import { Matrix3 } from '../../../../src/math/Matrix3.js';\n import { Matrix4 } from '../../../../src/math/Matrix4.js';\n+import { Vector2 } from '../../../../src/math/Vector2.js';\n \n function matrixEquals3( b, a, tolerance ) ... | 2024-12-02T17:23:02 |
denoland/deno | 4e144a8fbf9725def62825da42b8e42110a89606 | 9018c8ccf2b735b1f34c5881a3cfc0646f854bb8 | fix(ext/node): define process.versions.sqlite (#31277)
This will make Node.js compat tests for sqlite run (previously they were
skipped because the version was not defined). | [
{
"path": "ext/node/polyfills/_process/process.ts",
"patch": "@@ -200,6 +200,7 @@ export const versions = {\n unicode: \"14.0\",\n ngtcp2: \"0.8.1\",\n nghttp3: \"0.7.0\",\n+ sqlite: \"3.49.0\",\n // Will be filled when calling \"__bootstrapNodeProcess()\",\n deno: \"\",\n v8: \"\",",
"addi... | 2025-11-13T17:48:06 |
vuejs/vue | cab1b151e25ffbfdd5bd3745e4932746e5cca691 | 2a1f79dfbe9a3a6241f1060ce53616ffeb12fdc6 | avoid swallowing webpack error when entry is not found (fix #5553) | [
{
"path": "src/server/webpack-plugin/server.js",
"patch": "@@ -13,7 +13,14 @@ export default class VueSSRServerPlugin {\n compiler.plugin('emit', (compilation, cb) => {\n const stats = compilation.getStats().toJson()\n const entryName = Object.keys(stats.entrypoints)[0]\n- const entryAs... | 2017-04-30T04:44:23 |
golang/go | 5241d114f55cfa69a4bf8f2051f5d83d1f618859 | cdf64106f621b47987f332d5003afaefd9204b08 | spec: more precise prose for special case of append
As written, the special case for append may be interpreted
such that any first argument that is assignable to []byte
is permissible, including nil. This change makes makes it
clear that a slice argument is required.
Not a language change. The compiler always expecte... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Oct 1, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 9, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -7383,8 +7383,8 @@... | 2025-11-08T03:52:27 |
mrdoob/three.js | 45b953d0d326cede15427ced44610ae61052a9aa | 036e03e72a3eceae842cce4b0cc3b9a56ce2ecd6 | Add 24bit uncompressed RGB support to DDSLoader (#30010)
* Add 24bit uncompressed RGB support to DDSLoader
Adds support for 24bit uncompressed RGB textured to DDSLoader.
The texture data is read from the file in RGB, and returned in RGBA format with a=1.
* Remove typescript types
* Add new example for 24bit ... | [
{
"path": "examples/jsm/loaders/DDSLoader.js",
"patch": "@@ -109,6 +109,33 @@ class DDSLoader extends CompressedTextureLoader {\n \n \t\t}\n \n+\t\tfunction loadRGBMip( buffer, dataOffset, width, height ) {\n+\n+\t\t\tconst dataLength = width * height * 3;\n+\t\t\tconst srcBuffer = new Uint8Array( buffer, d... | 2024-12-02T17:11:02 |
denoland/deno | 06709834066d278a9ecee0cfb569029e325dbe3f | 05bc6360e741d65f9f667782709d1de8e4c17eaa | fix(config): support UTF-16 surrogate pairs in unicode escape sequences in json config (#31264) | [
{
"path": "Cargo.lock",
"patch": "@@ -5554,9 +5554,9 @@ dependencies = [\n \n [[package]]\n name = \"jsonc-parser\"\n-version = \"0.27.0\"\n+version = \"0.27.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7ec4ac49f13c7b00f435f8a5bb55d725705e2cf620df35a5859321595102eb... | 2025-11-13T10:37:39 |
vuejs/vue | 2a1f79dfbe9a3a6241f1060ce53616ffeb12fdc6 | 9478fde8c92d225661dcb4c949d0035284600fff | run bundle in the same global context when runInNewContext is false (fix #5559) | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -22,7 +22,7 @@ function createContext (context) {\n return sandbox\n }\n \n-function compileModule (files, basedir) {\n+function compileModule (files, basedir, runInNewContext) {\n const compiledScripts = {}\n const resolvedM... | 2017-04-30T04:39:00 |
golang/go | cdf64106f621b47987f332d5003afaefd9204b08 | a0eb4548cfcf803da087b7ca461a2d48b9f17a58 | go/types, types2: first argument to append must never be be nil
The current implementation followed the spec faithfully for
the special case for append. Per the spec:
As a special case, append also accepts a first argument assignable to
type []byte with a second argument of string type followed by ... .
As it happen... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -91,6 +91,17 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t// to type []byte with a second argument of string type followed by ... .\n \t\t// This form appends the bytes of the string.\"\n \n+\t... | 2025-11-07T23:50:14 |
mrdoob/three.js | 036e03e72a3eceae842cce4b0cc3b9a56ce2ecd6 | 09add0e8631ab24df10f372430d5b7bd1122a584 | Doc: fix typos (#30013)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "src/nodes/code/ScriptableValueNode.js",
"patch": "@@ -20,7 +20,7 @@ class ScriptableValueNode extends Node {\n \t\tthis._cache = null;\n \n \t\tthis.inputType = null;\n-\t\tthis.outpuType = null;\n+\t\tthis.outputType = null;\n \n \t\tthis.events = new EventDispatcher();\n ",
"additions": 1,
... | 2024-12-02T17:07:26 |
denoland/deno | 05bc6360e741d65f9f667782709d1de8e4c17eaa | e9d6557ea5daf321dbf0f1788f571d3e982ae29b | fix(node:console): ensure that the node:console implementation has an implementation for `emitWarning` in scope (#31263)
Introduces the emitWarning function from the process module to enable
warning capabilities within the console constructor implementation.
This fixes a bug where the `time`, `countReset` and `timeLo... | [
{
"path": "ext/node/polyfills/internal/console/constructor.mjs",
"patch": "@@ -3,6 +3,7 @@\n \n import { op_preview_entries } from \"ext:core/ops\";\n import { primordials } from \"ext:core/mod.js\";\n+import { emitWarning } from \"node:process\";\n const {\n ArrayIsArray,\n ArrayFrom,",
"additions"... | 2025-11-13T09:33:50 |
vuejs/vue | 3b426efe60c30b0fd52144c65b28603b5e4511db | bb7c543fc20c63809da0a7f530b3da1bf8f2f14e | Fix when functional component render method retrun null (fix #5536) (#5539)
* fix:create empty vnode when functional component return null
* add test
* use isDef | [
{
"path": "src/core/vdom/create-element.js",
"patch": "@@ -99,7 +99,7 @@ export function _createElement (\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children)\n }\n- if (vnode !== undefined) {\n+ if (isDef(vnode)) {\n if (ns) applyNS(vnode, ns)\... | 2017-04-29T06:42:35 |
mrdoob/three.js | 9d40e23976288b423aea678379b86aaa8fd56ebd | 241e8752a3cae918aeafdc6dc9ac8aa3141b86f1 | Update AssignNode.js
Fix typo. | [
{
"path": "src/nodes/core/AssignNode.js",
"patch": "@@ -3,7 +3,7 @@ import { addMethodChaining, nodeProxy } from '../tsl/TSLCore.js';\n import { vectorComponents } from '../core/constants.js';\n \n /**\n- * These node represents an assing operation. Meaning a node is assigned\n+ * These node represents an a... | 2024-12-01T22:31:07 |
golang/go | 052c192a4cf853f0a613eacc623beca35f8c0e24 | bc5ffe5c79d45447648a012465e158f29ff5efa2 | runtime: fix lock rank for work.spanSPMCs.lock
Currently this lock is treated like a leaf lock, but it's not one. It
can acquire the globalAlloc lock via fixalloc and persistentalloc.
This means we need to figure out where it can be acquired. In general,
it can be acquired by any write barrier, which is already incre... | [
{
"path": "src/runtime/lockrank.go",
"patch": "@@ -71,6 +71,7 @@ const (\n \t// WB\n \tlockRankWbufSpans\n \tlockRankXRegAlloc\n+\tlockRankSpanSPMCs\n \tlockRankMheap\n \tlockRankMheapSpecial\n \tlockRankGlobalAlloc\n@@ -145,6 +146,7 @@ var lockNames = []string{\n \tlockRankHchanLeaf: \"hchanLeaf\... | 2025-11-03T21:40:33 |
denoland/deno | e9d6557ea5daf321dbf0f1788f571d3e982ae29b | a664ebebad8d08bf3c4220293d85d134d466249f | chore: try to fix promote_to_release workflow (#31215) | [
{
"path": ".github/workflows/promote_to_release.yml",
"patch": "@@ -46,20 +46,8 @@ jobs:\n Expand-Archive -Path \"denort-windows.zip\" -DestinationPath \".\"\n \n - name: Run patchver for Windows\n- shell: pwsh\n run: |\n- deno install -g -A -n patchver https://deno.l... | 2025-11-12T22:12:21 |
vuejs/vue | bb7c543fc20c63809da0a7f530b3da1bf8f2f14e | 1635ca7143381265c0fb1cb197e0dbfa5d8b6365 | fix #5539: improve `isDef` type definition (#5549)
* fix #5539: improve flow type coverage
* skip unnecessary object creation
* use flow internal syntax to enable predicate type | [
{
"path": "flow/component.js",
"patch": "@@ -42,7 +42,7 @@ declare interface Component {\n $once: (event: string, fn: Function) => Component;\n $off: (event?: string | Array<string>, fn?: Function) => Component;\n $emit: (event: string, ...args: Array<mixed>) => Component;\n- $nextTick: (fn: Function... | 2017-04-29T06:24:06 |
denoland/deno | 099f8d60f2502cea7281744e6011e3f704aa3fa8 | 1edd1fb6573507d2ec3fc8d57c634d7f3379b4dd | fix(unstable): don't panic on invalid reported lint range (#31261)
When a lint diagnostic contained an invalid range where the `start`
value was bigger than the `end` value, we'd panic when passing the range
to `dprint`. We should ensure that the range is correct right when we're
creating the lint diagnostic instead.
... | [
{
"path": "cli/js/40_lint.js",
"patch": "@@ -391,6 +391,12 @@ export class Context {\n const start = range[0];\n const end = range[1];\n \n+ if (start > end) {\n+ throw new RangeError(\n+ `Invalid range. Start value is bigger than end value: [${start}, ${end}]`,\n+ );\n+ }\n+\... | 2025-11-12T14:11:40 |
golang/go | 771a1dc216ff02dd23c78ada35a207a363690d11 | 972732b245399097e1e59aa2e35c47ef5efbf394 | [dev.simd] cmd/compile: add peepholes for all masked ops and bug fixes
For 512-bits they are unchanged. This CL adds the optimization rules for
128/256-bits under feature check.
This CL also fixed a bug for masked load variant of instructions and
make them zeroing by default as well.
Change-Id: I6fe395541c0cd509984a... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1993,38 +1993,65 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPABSWMasked256,\n \t\tssa.OpAMD64VPABSWMasked512,\n \t\tssa.OpAMD64VPABSDMasked128,\n+\t\tssa.OpAMD64VPABSDMasked128load,\n \t\tssa.OpAMD64VPA... | 2025-11-04T21:46:06 |
mrdoob/three.js | e0e5370367ec3debc526892b8da681d854754155 | 8ec7166ffefc8915e4d4f7a7de47b60a0922518c | Node: Document more modules. (#30001)
* Node: Document more modules.
* Docs: Fix typo.
* Docs: More clean up. | [
{
"path": "src/nodes/code/CodeNode.js",
"patch": "@@ -1,6 +1,13 @@\n import Node from '../core/Node.js';\n import { nodeProxy } from '../tsl/TSLBase.js';\n \n+/**\n+ * This class represents native code sections. It is the base\n+ * class for modules like {@link FunctionNode} which allows to implement\n+ * f... | 2024-12-01T11:46:21 |
vuejs/vue | d8315c42ef5b6b739100fad5f20e8b0c41f78eef | 3a6fd13bc5c1c900774f759f200e064d60861b96 | do not decode text inside script/style tags (fix #5526) | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -46,7 +46,7 @@ let IS_REGEX_CAPTURING_BROKEN = false\n })\n \n // Special Elements (can contain anything)\n-const isPlainTextElement = makeMap('script,style,textarea', true)\n+export const isPlainTextElement = makeMap('script,style,textarea', true... | 2017-04-27T04:23:48 |
denoland/deno | 1edd1fb6573507d2ec3fc8d57c634d7f3379b4dd | 5ed0646bc4c93f3c3d72d07832760c21269f7276 | fix(ext/node): ensure 'exit' event is fired only once for `worker_threads` (#31231)
Closes #30013
The `'exit'` event in `node:worker_threads` was not consistently fired,
or in some cases emitted multiple times, diverging from Node.js
behavior. | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -99,6 +99,7 @@ class NodeWorker extends EventEmitter {\n #messagePromise = undefined;\n #controlPromise = undefined;\n #workerOnline = false;\n+ #exited = false;\n // \"RUNNING\" | \"CLOSED\" | \"TERMINATED\"\n // \"TERMINATED\" means... | 2025-11-12T13:15:44 |
golang/go | bc5ffe5c79d45447648a012465e158f29ff5efa2 | 32f8d6486f02d5820977180c52889ec72c799d58 | internal/runtime/sys,math/bits: eliminate bounds checks on len8tab
The compiler cannot currently determine that the accesses to len8tab
are within bounds. Cast to uint8 to avoid unnecessary bounds checks.
Fixes #76166
Change-Id: I1fd930bba2b20d3998252c476308642e08ce00b4
Reviewed-on: https://go-review.googlesource.co... | [
{
"path": "src/internal/runtime/sys/intrinsics.go",
"patch": "@@ -109,7 +109,7 @@ func Len64(x uint64) (n int) {\n \t\tx >>= 8\n \t\tn += 8\n \t}\n-\treturn n + int(len8tab[x])\n+\treturn n + int(len8tab[uint8(x)])\n }\n \n // --- OnesCount ---",
"additions": 1,
"deletions": 1,
"language": "Go"
... | 2025-11-05T14:05:29 |
mrdoob/three.js | f81793c461b06e1667f1624a804802c84f0010ec | c9e64a1945e9b5e9b9fe7693e66edebe584eccb2 | Node: Document more modules. (#30000)
* Node: Document more modules.
* Node: More docs.
* Node: More docs.
* Docs: Minor fix.
* Docs: More fixes.
* Docs: Fix TODOs.
* Update AssignNode.js | [
{
"path": "src/nodes/core/AssignNode.js",
"patch": "@@ -2,6 +2,12 @@ import TempNode from '../core/TempNode.js';\n import { addMethodChaining, nodeProxy } from '../tsl/TSLCore.js';\n import { vectorComponents } from '../core/constants.js';\n \n+/**\n+ * These node represents an assing operation. Meaning a n... | 2024-11-30T17:47:47 |
vuejs/vue | c24f49254395f15e9f023202e98e9abe595b636e | 109689082741b3032196ad98779dd0943e8447a8 | fix edge test case | [
{
"path": "test/unit/modules/compiler/parser.spec.js",
"patch": "@@ -1,7 +1,7 @@\n import { parse } from 'compiler/parser/index'\n import { extend } from 'shared/util'\n import { baseOptions } from 'web/compiler/index'\n-import { isIE } from 'core/util/env'\n+import { isIE, isEdge } from 'core/util/env'\n \... | 2017-04-26T10:24:38 |
denoland/deno | 5ed0646bc4c93f3c3d72d07832760c21269f7276 | 30cf1f41623fdfc0bf3df714a723e5f6864299a6 | fix(node/crypto): respect authTagLength in createCipheriv for GCM cip… (#31253)
This PR fixes a bug in `node:crypto.createCipheriv` where the
`authTagLength` option was ignored for AES-GCM ciphers, resulting in a
fixed 16-byte authentication tag regardless of the specified value.
The fix ensures both encryption and d... | [
{
"path": "ext/node/ops/crypto/cipher.rs",
"patch": "@@ -25,8 +25,8 @@ enum Cipher {\n Aes128Ecb(Box<ecb::Encryptor<aes::Aes128>>),\n Aes192Ecb(Box<ecb::Encryptor<aes::Aes192>>),\n Aes256Ecb(Box<ecb::Encryptor<aes::Aes256>>),\n- Aes128Gcm(Box<Aes128Gcm>),\n- Aes256Gcm(Box<Aes256Gcm>),\n+ Aes128Gcm(... | 2025-11-12T12:58:17 |
mrdoob/three.js | a77056b4d067f4f0fdf23a9b44fe628c8f2487de | 20b97a426672146c9d5ead3c81a85e7a8b532fa6 | fix: minor grammar correction (#29999)
Signed-off-by: Saikat Dey <saikatdey2100@gmail.com> | [
{
"path": "docs/api/en/loaders/Loader.html",
"patch": "@@ -63,7 +63,7 @@ <h2>Methods</h2>\n \n \t\t<h3>[method:undefined load]()</h3>\n \t\t<p>\n-\t\t\tThis method needs to be implement by all concrete loaders. It holds the\n+\t\t\tThis method needs to be implemented by all concrete loaders. It holds the\n ... | 2024-11-30T11:50:49 |
golang/go | 32f8d6486f02d5820977180c52889ec72c799d58 | 1c1c1942ba5b596ade56c983e0ab75f0a237ad15 | runtime: document that tracefpunwindoff applies to some profilers
The tracefpunwindoff GODEBUG applies to all the places where we use
frame pointer unwinding. Originally that was just the execution tracer,
but now we also use it for the block and mutex profilers.
Change-Id: I6a6a69641fede668d96335582dba6d43e62f6a51
R... | [
{
"path": "src/runtime/extern.go",
"patch": "@@ -211,10 +211,11 @@ It is a comma-separated list of name=val pairs setting these named variables:\n \treport. This also extends the information returned by runtime.Stack.\n \tSetting N to 0 will report no ancestry information.\n \n-\ttracefpunwindoff: setting t... | 2025-11-06T14:40:21 |
vuejs/vue | 12b7122c161548bfc9865357d9b71302d66d4a9f | 2a247fcadc12c151e0bca7ee03254474cdba30b1 | fix mixin issue (#5514) | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -115,24 +115,27 @@ export function resolveConstructorOptions (Ctor: Class<Component>) {\n function resolveModifiedOptions (Ctor: Class<Component>): ?Object {\n let modified\n const latest = Ctor.options\n+ const extended = Ctor.extendOptions\n const... | 2017-04-26T06:51:25 |
denoland/deno | 30cf1f41623fdfc0bf3df714a723e5f6864299a6 | 56dd527ae03578224cd9e09aedc9c1b9895003c4 | fix(ext/node): implement performance.timerify() (#31238)
Adds the missing implementation for `performance.timerify()` in
`node:perf_hooks`, which previously resulted in a "Not implemented"
error.
Fixes #31115 | [
{
"path": "ext/node/polyfills/perf_hooks.js",
"patch": "@@ -3,7 +3,6 @@\n // TODO(petamoriken): enable prefer-primordials for node polyfills\n // deno-lint-ignore-file prefer-primordials\n \n-import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import { performance, PerformanceEntry } from \"ext:de... | 2025-11-12T12:55:02 |
mrdoob/three.js | ffa7aa79d89ab860c7fc7e3714f369c46272bdbc | 3e54130c1d40595c544ff33308de8c6a9311b130 | Eslint: run fix with new rules (#29997)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "editor/js/Loader.js",
"patch": "@@ -984,4 +984,4 @@ function Loader( editor ) {\n \n }\n \n-export { Loader };\n\\ No newline at end of file\n+export { Loader };",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "editor/js/Sidebar.Material.js",
"patch... | 2024-11-29T22:19:56 |
golang/go | 3b3d6b9e5d9898810ee13e739f3ad759ab104fdb | 5f4b5f1a196774e45bc50de0729973119eb7bf07 | cmd/internal/obj/arm64: shorten constant integer loads
Large integer constants can take up to 4 instructions to encode.
We can encode some large constants with a single instruction, namely
those which are bit patterns (repetitions of certain runs of 0s and 1s).
Often the constants we want to encode are *close* to th... | [
{
"path": "src/cmd/asm/internal/asm/testdata/arm64.s",
"patch": "@@ -400,6 +400,8 @@ TEXT\tfoo(SB), DUPOK|NOSPLIT, $-8\n \tMOVD\t$0x11110000, R1 // MOVD\t$286326784, R1 // 2122a2d2\n \tMOVD\t$0xaaaa0000aaaa1111, R1 // MOVD\t$-6149102338357718767, R1 // 212282d24155b5f24155... | 2025-11-04T23:15:16 |
vuejs/vue | 2a247fcadc12c151e0bca7ee03254474cdba30b1 | 016920ebea8bbd3dc7c5326d6bc6590a6f4cc418 | fix ssr initial context style recording | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -1,4 +1,4 @@\n-import { isObject } from 'shared/util'\n+import { isPlainObject } from 'shared/util'\n \n const vm = require('vm')\n const path = require('path')\n@@ -73,7 +73,7 @@ function compileModule (files, basedir) {\n }\n \n ... | 2017-04-25T08:53:28 |
mrdoob/three.js | d9c9920c285d724249f345c5dba4f06c158de4c4 | 17c59b2c3caa54a991f7b3b6319838da19cf5eb6 | OrbitControls: Add `keyRotateSpeed`. (#29988)
* feat: Add keyRotateSpeed to OrbitControls
This allows for setting a different speed of rotation when using the
keyboard vs when using a mouse. Similar in approach to the existing
keyPanSpeed.
* fix: reduce keyRotateSpeed down to 1 | [
{
"path": "docs/examples/en/controls/OrbitControls.html",
"patch": "@@ -141,6 +141,11 @@ <h3>[property:Float keyPanSpeed]</h3>\n \t\t\tHow fast to pan the camera when the keyboard is used. Default is 7.0 pixels per keypress.\n \t\t</p>\n \n+\t\t<h3>[property:Float keyRotateSpeed]</h3>\n+\t\t<p>\n+\t\t\tHow ... | 2024-11-29T17:11:24 |
denoland/deno | 5545b3b0e4a585e5a878fea3932f78d24f42f900 | 0d838faf17d5174a1e5894d77f533d754f4b05c5 | fix: update JSDoc for Deno.cwd() API (#31256)
This was missed in https://github.com/denoland/deno/pull/27192. | [
{
"path": "cli/tsc/dts/lib.deno.ns.d.ts",
"patch": "@@ -1700,9 +1700,6 @@ declare namespace Deno {\n *\n * Throws {@linkcode Deno.errors.NotFound} if directory not available.\n *\n- * Requires `allow-read` permission.\n- *\n- * @tags allow-read\n * @category Runtime\n */\n export func... | 2025-11-12T09:09:41 |
golang/go | 5f4b5f1a196774e45bc50de0729973119eb7bf07 | 0fe6c8e8c878c44d4466f07ddd0a5b2cd07650c7 | runtime/msan: use different msan routine for copying
__msan_memmove records the fact that we're copying memory, and
actually does the copy. Use instead __msan_copy_shadow, which
records the fact that we're copying memory, but doesn't actually
do the copy itself.
We're doing the copy ourselves, so we don't need msan t... | [
{
"path": "src/runtime/msan/msan.go",
"patch": "@@ -13,8 +13,6 @@ package msan\n #include <stdint.h>\n #include <sanitizer/msan_interface.h>\n \n-extern void __msan_memmove(void*, const void*, uintptr_t);\n-\n void __msan_read_go(void *addr, uintptr_t sz) {\n \t__msan_check_mem_is_initialized(addr, sz);\n }... | 2025-11-08T19:11:10 |
vuejs/vue | 38516b494293a9ee9bae697d559107341dca89dd | 380e98882353d24afe34568b3e06c8a29de82a4a | fix flow | [
{
"path": "src/core/instance/render-helpers/resolve-slots.js",
"patch": "@@ -12,13 +12,13 @@ export function resolveSlots (\n return slots\n }\n const defaultSlot = []\n- let name, child\n for (let i = 0, l = children.length; i < l; i++) {\n- child = children[i]\n+ const child = children[i]... | 2017-04-25T04:28:20 |
mrdoob/three.js | 17c59b2c3caa54a991f7b3b6319838da19cf5eb6 | 2898f5b1ba10b1e94174c0a62d072f5f7b80442c | Update bug_report.yml
Update imports in WebGPU fiddles. | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -36,8 +36,8 @@ body:\n value: |\n * [jsfiddle-latest-release WebGLRenderer](https://jsfiddle.net/3mrkqyea/)\n * [jsfiddle-dev WebGLRenderer](https://jsfiddle.net/gcqx26jv/)\n- * [jsfiddle-latest-release WebGPURender... | 2024-11-29T17:04:42 |
denoland/deno | 0d838faf17d5174a1e5894d77f533d754f4b05c5 | 0c9598d169d238d595882361d06d33bb620f2c57 | fix(ext/napi): suppress deprecated Buffer warnings (#31245) | [
{
"path": "ext/napi/lib.rs",
"patch": "@@ -391,7 +391,7 @@ pub struct Env {\n pub last_error: napi_extended_error_info,\n pub last_exception: Option<v8::Global<v8::Value>>,\n pub global: v8::Global<v8::Object>,\n- pub buffer_constructor: v8::Global<v8::Function>,\n+ pub create_buffer: v8::Global<v8:... | 2025-11-11T06:02:29 |
golang/go | 95a0e5adc1e6c27769591de1bfaf520a3265adda | e8ed85d6c22d9530523315c3048ed0455d205bff | sync: don't call Done when f() panics in WaitGroup.Go
This change is based on
https://github.com/golang/go/issues/76126#issuecomment-3473417226
by adonovan.
Fixes #76126
Fixes #74702
Change-Id: Ie404d8204be8917fa8a7b414bb6d319238267c83
GitHub-Last-Rev: b1beddcd725e9168d4d544a9d0322a5a6d8d65b2
GitHub-Pull-Request: go... | [
{
"path": "src/sync/waitgroup.go",
"patch": "@@ -236,7 +236,25 @@ func (wg *WaitGroup) Wait() {\n func (wg *WaitGroup) Go(f func()) {\n \twg.Add(1)\n \tgo func() {\n-\t\tdefer wg.Done()\n+\t\tdefer func() {\n+\t\t\tif x := recover(); x != nil {\n+\t\t\t\t// f panicked, which will be fatal because\n+\t\t\t\t... | 2025-11-10T09:28:16 |
mrdoob/three.js | 4f3e46246d4a8c3a24527136c7ab948447894c82 | f91fbc3db2d2f8f28882799bd2c340ac1414ea8d | WebGPURenderer: Add Missing Export `NodeAccess` (#29993)
* Examples: Fix webgpu_compute_texture_pingpong
* revert example and fix TSL export instead | [
{
"path": "src/Three.TSL.js",
"patch": "@@ -17,6 +17,7 @@ export const Loop = TSL.Loop;\n export const NodeShaderStage = TSL.NodeShaderStage;\n export const NodeType = TSL.NodeType;\n export const NodeUpdateType = TSL.NodeUpdateType;\n+export const NodeAccess = TSL.NodeAccess;\n export const PCFShadowFilter... | 2024-11-29T05:27:05 |
denoland/deno | 0c9598d169d238d595882361d06d33bb620f2c57 | 19c7f1fc5d6ec4e61273f952761696bad3e478ca | fix(check): ensure `@types/node` is cached when already in resolution (#31235) | [
{
"path": "cli/graph_util.rs",
"patch": "@@ -792,7 +792,9 @@ impl ModuleGraphBuilder {\n && graph.has_node_specifier\n && graph.graph_kind().include_types()\n {\n- npm_installer.inject_synthetic_types_node_package().await?;\n+ npm_installer\n+ .inject_synthetic_types_node_pa... | 2025-11-10T13:10:11 |
golang/go | b76103c08e72ac34db2092d2cf1a3c1ec6adf451 | 47a63a331daa96de55562fbe0fa0201757c7d155 | cmd/go: output missing GoDebug entries
The `go help mod edit` command references the GoDebug struct, but `go
mod edit -json` was not displaying them when appropriate.
Fixes #75105
Change-Id: Iec987882941e01b0cf4d4fe31dda9e7a6e2dde87
Reviewed-on: https://go-review.googlesource.com/c/go/+/706757
LUCI-TryBot-Result: Go... | [
{
"path": "src/cmd/go/internal/modcmd/edit.go",
"patch": "@@ -584,8 +584,9 @@ func flagDropIgnore(arg string) {\n // fileJSON is the -json output data structure.\n type fileJSON struct {\n \tModule editModuleJSON\n-\tGo string `json:\",omitempty\"`\n-\tToolchain string `json:\",omitempty\"`\n+\tGo... | 2025-09-25T15:07:17 |
mrdoob/three.js | f91fbc3db2d2f8f28882799bd2c340ac1414ea8d | e2e04d3e93b9a7548c5361871bd7e088c4b0beef | WebGPURenderer: Shadow fixes (#29991)
* shadow revision
* cleanup
* cleanup
* rev | [
{
"path": "src/nodes/lighting/PointShadowNode.js",
"patch": "@@ -127,8 +127,8 @@ const pointShadowFilter = /*@__PURE__*/ Fn( ( { filterFn, depthTexture, shadowCo\n \tconst lightToPosition = shadowCoord.xyz.toVar();\n \tconst lightToPositionLength = lightToPosition.length();\n \n-\tconst cameraNearLocal = un... | 2024-11-29T04:15:16 |
denoland/deno | 19c7f1fc5d6ec4e61273f952761696bad3e478ca | 58f7435270bd018386ddb8f35ddc2494a0e8695f | fix(ext/node): truncate first non-hex value on Buffer.from (#31227) | [
{
"path": "ext/node/polyfills/internal_binding/_utils.ts",
"patch": "@@ -58,14 +58,35 @@ export function base64UrlToBytes(str: string) {\n return forgivingBase64UrlDecode(str);\n }\n \n+// https://github.com/nodejs/node/blob/591ba692bfe30408e6a67397e7d18bfa1b9c3561/deps/nbytes/src/nbytes.cpp#L144-L158\n+/... | 2025-11-10T11:32:09 |
vuejs/vue | c0da43d22f8f4b9aeb4f49d4e86cd9704daaff3f | af43862969fbe2ef01644eaac2a73a02039d69ad | fix incorrect compiler warning for $delete usage in templates (fix #5464) | [
{
"path": "src/compiler/error-detector.js",
"patch": "@@ -57,8 +57,9 @@ function checkNode (node: ASTNode, errors: Array<string>) {\n }\n \n function checkEvent (exp: string, text: string, errors: Array<string>) {\n- const keywordMatch = exp.replace(stripStringRE, '').match(unaryOperatorsRE)\n- if (keywor... | 2017-04-18T03:40:32 |
golang/go | 7995751d3ae20f82cbd6ef2a893c35bb92f8d2e6 | 66c7ca7fb3f2e51c39b6b29c8ea9ade62cd08ec5 | cmd/go: copy git reuse and support repos to hg
The reuse_hg.txt is reuse_git.txt with a skip at the top
and a global substitute of git->hg and fetch->pull.
The prefixtagtests.txt and tagtests.txt are straight
copies of the git equivalents.
This is to set up a readable diff in the followup CL
that turns it into a reu... | [
{
"path": "src/cmd/go/testdata/script/reuse_hg.txt",
"patch": "@@ -0,0 +1,483 @@\n+skip\n+\n+[short] skip\n+[!hg] skip\n+\n+env GO111MODULE=on\n+env GOPROXY=direct\n+env GOSUMDB=off\n+\n+# go mod download with the pseudo-version should invoke hg but not have a TagSum or Ref.\n+go mod download -x -json vcs-t... | 2025-11-05T23:19:20 |
mrdoob/three.js | 65885027b7d22e03c2035f7af1c09fca5630621d | ada8ab47c79a2a494c69b9d4b33614df3cecc311 | Fix: webgl_renderer_pathtracer requiring lines (#29987)
* Added line material to path example
* Update webgl_renderer_pathtracer.html
Clean up.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/webgl_renderer_pathtracer.html",
"patch": "@@ -60,7 +60,7 @@\n \t\t\timport { RGBELoader } from 'three/addons/loaders/RGBELoader.js';\n \t\t\timport { LDrawLoader } from 'three/addons/loaders/LDrawLoader.js';\n \t\t\timport { LDrawUtils } from 'three/addons/utils/LDrawUtils.js';\n-\n+\t\... | 2024-11-28T14:28:09 |
vuejs/vue | 38810d8fd03b1859854623b2a7dd30506dc3c7bf | 5a617cc404ea902bc1bbd2be9c91596e2df6fffa | Support auto-prefixed style value as array (client/ssr) (#5460)
* support auto-prefixed style value as array (client/ssr)
* adjust test case | [
{
"path": "src/platforms/web/runtime/modules/style.js",
"patch": "@@ -12,7 +12,17 @@ const setProp = (el, name, val) => {\n } else if (importantRE.test(val)) {\n el.style.setProperty(name, val.replace(importantRE, ''), 'important')\n } else {\n- el.style[normalize(name)] = val\n+ const normali... | 2017-04-17T12:49:10 |
golang/go | 5cd1b73772e339e3b460d53ba37630704a323ca7 | 91ca80f970c2a20d1ed6603281c97e7e617b87e8 | runtime: correctly print panics before fatal-ing on defer
Fixes #67792
Change-Id: I93d16580cb31e54cee7c8490212404e4d0dec446
Reviewed-on: https://go-review.googlesource.com/c/go/+/613757
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Michael Pratt <mpratt@google.co... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -1235,10 +1235,12 @@ func throw(s string) {\n //\n //go:nosplit\n func fatal(s string) {\n+\tp := getg()._panic\n \t// Everything fatal does should be recursively nosplit so it\n \t// can be called even when it's unsafe to grow the stack.\n \tprintlock() // Pre... | 2024-09-17T12:10:20 |
vuejs/vue | 9a5dd1bac803ae78e731d445de752ec8797ef2b6 | 3b04547c0c4fc56d786f5d03446c81b2d7501297 | fix test | [
{
"path": "test/ssr/ssr-bundle-render.spec.js",
"patch": "@@ -195,8 +195,7 @@ describe('SSR: bundle renderer', () => {\n expect(cache.set.calls.count()).toBe(3) // no new cache sets\n expect(cache.get.calls.count()).toBe(2) // 1 get for root\n \n- console.log(context1)\n- ... | 2017-04-12T07:36:09 |
golang/go | 91ca80f970c2a20d1ed6603281c97e7e617b87e8 | d36e88f21f56dcf45fed2231fe28f948a31c936b | runtime/cgo: improve error messages after pointer panic
This CL improves the error messages after panics due to the
sharing of an unpinned Go pointer (or a pointer to an unpinned Go
pointer) between Go and C.
This occurs when it is:
1. returned from Go to C (through cgoCheckResult)
2. passed as argument to a C functi... | [
{
"path": "src/cmd/cgo/internal/testerrors/ptr_test.go",
"patch": "@@ -14,6 +14,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"slices\"\n \t\"strings\"\n \t\"sync/atomic\"\n@@ -24,15 +25,16 @@ var tmp = flag.String(\"tmp\", \"\", \"use `dir` for temporary files and do no... | 2025-11-05T21:00:52 |
mrdoob/three.js | 5855564118add18f405d0ca76fc55db4fd918e5f | 269e8920960d8c8974dcac6de892c86b47246748 | WebGPURenderer: Fix viewport/scissor after `copyFramebufferToTexture()` (#29978) | [
{
"path": "src/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -1539,7 +1539,7 @@ class WebGPUBackend extends Backend {\n \t\tencoder.copyTextureToTexture(\n \t\t\t{\n \t\t\t\ttexture: sourceGPU,\n-\t\t\t\torigin: { x: rectangle.x, y: rectangle.y, z: 0 }\n+\t\t\t\torigin: [ rectangle.x, rectangle.y, 0 ],\n... | 2024-11-27T06:12:38 |
denoland/deno | ac62d1dca3541686e53f1c883775cdbea0e1f628 | 9a8cb79986a8fbc9fc016f9c5e81c1bb4de5da16 | ci: add AI PR generation (#31214)
Should also fix the issue triager workflow which was missing the GH
token. | [
{
"path": ".github/workflows/ai_pr_generation.yml",
"patch": "@@ -0,0 +1,85 @@\n+name: AI PR Generation\n+\n+on:\n+ issues:\n+ types: [labeled]\n+\n+jobs:\n+ generate-pr:\n+ if: github.event.label.name == 'ai:generate-pr'\n+ runs-on: ubuntu-latest\n+ permissions:\n+ contents: write\n+ ... | 2025-11-06T18:30:41 |
mrdoob/three.js | 269e8920960d8c8974dcac6de892c86b47246748 | 92e60c28b2a7aa0fd7024f09b74318017837ef2c | NodeMaterial: Fix `getAlphaHashThreshold()` properties conflict (#29977)
* Fix `getAlphaHashThreshold()` properties conflict
* cleanup | [
{
"path": "src/nodes/functions/material/getAlphaHashThreshold.js",
"patch": "@@ -24,41 +24,47 @@ const getAlphaHashThreshold = /*@__PURE__*/ Fn( ( [ position ] ) => {\n \tconst maxDeriv = max(\n \t\tlength( dFdx( position.xyz ) ),\n \t\tlength( dFdy( position.xyz ) )\n-\t).toVar( 'maxDeriv' );\n+\t);\n \n \... | 2024-11-27T06:01:23 |
vuejs/vue | dc21884d38e04fa70a7d933c6e208a924c5bb8f6 | 0494d16a29635f22fc13c217e803d6860bf2323a | Fix 0 download issue with monthly download shield (#5426) | [
{
"path": "README.md",
"patch": "@@ -3,7 +3,7 @@\n <p align=\"center\">\n <a href=\"https://circleci.com/gh/vuejs/vue/tree/dev\"><img src=\"https://img.shields.io/circleci/project/vuejs/vue/dev.svg\" alt=\"Build Status\"></a>\n <a href=\"https://codecov.io/github/vuejs/vue?branch=dev\"><img src=\"https:... | 2017-04-13T05:07:22 |
golang/go | 43b91e7abd1c3b84c919c97bca30480d2610f9ec | 48c7fa13c63761c8b52cbfac1f9eab062d475c0c | iter: fix a tiny doc comment bug
Use the right name for method Pos.Value in a sample doc comment in the package overview.
Fixes #76187.
Change-Id: Id1f5b0ca4ea39493b10140bc304c57c081c805ee
GitHub-Last-Rev: 7bf5d0774749111cd13e40700b31a5a83c288db9
GitHub-Pull-Request: golang/go#76195
Reviewed-on: https://go-review.go... | [
{
"path": "src/iter/iter.go",
"patch": "@@ -188,7 +188,7 @@ For example, a tree implementation might provide:\n \t// It is only valid during the yield call it is passed to.\n \ttype Pos[V any] struct { ... }\n \n-\t// Pos returns the value at the cursor.\n+\t// Value returns the value at the cursor.\n \tfun... | 2025-11-06T05:18:46 |
denoland/deno | 515e261d81ebf3a18af5cfbc297ad55d3899a976 | 004b85703a57b30b13d41a6d1fc44531dae83ddd | chore: fix install python ci step (#31204) | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -299,9 +299,16 @@ function withCondition(\n step: Record<string, unknown>,\n condition: string,\n ): Record<string, unknown> {\n+ function maybeParens(condition: string) {\n+ if (condition.includes(\"&&\") || condition.includes(\"||\")) {\n+... | 2025-11-06T09:27:36 |
mrdoob/three.js | 92e60c28b2a7aa0fd7024f09b74318017837ef2c | 96e51490862588919f17aa2960e929ee1176f6ed | WebGPURenderer: Fix integer uniforms (#29976)
* WebGPU: Fix integer uniforms (#29952)
* Update WebGPU Compute Attractors Particles Demo to use uint uniform for number of attractors | [
{
"path": "examples/webgpu_tsl_compute_attractors_particles.html",
"patch": "@@ -82,7 +82,7 @@\n \t\t\t\t\tnew THREE.Vector3( 0, 1, 0 ),\n \t\t\t\t\tnew THREE.Vector3( 1, 0, - 0.5 ).normalize()\n \t\t\t\t] );\n-\t\t\t\tconst attractorsLength = uniform( attractorsPositions.array.length );\n+\t\t\t\tconst att... | 2024-11-26T15:24:53 |
vuejs/vue | 0494d16a29635f22fc13c217e803d6860bf2323a | 9c3e96f7573a671f085dab8cbd3bdb21dc4a9612 | fixed readme for styling inconsistencies (#5412) | [
{
"path": "README.md",
"patch": "@@ -78,7 +78,7 @@ Vue.js is an MIT-licensed open source project. Its ongoing development is made p\n \n Vue.js is a library for building interactive web interfaces. It provides data-reactive components with a simple and flexible API. Core features include:\n \n-- [Declarativ... | 2017-04-11T02:47:05 |
golang/go | f01a1841fd9aff9229b27e3e1d3b8b4ee349cbc3 | 8cf7a0b4c956aad5a8b98efde8ea6b7cde173902 | cmd/compile: fix error message on loong64
Change-Id: I90428330b17ab9f93ae94a77cefc24464e225df5
Reviewed-on: https://go-review.googlesource.com/c/go/+/717700
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Meidan Li <l... | [
{
"path": "src/cmd/compile/internal/loong64/ssa.go",
"patch": "@@ -692,7 +692,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t\t// vs\n \t\t\t// 16 instructions in the straightline code\n \t\t\t// Might as well use straightline code.\n-\t\t\tv.Fatalf(\"ZeroLoop size too small %d\", n)\n... | 2025-11-04T09:22:24 |
denoland/deno | 982658e8ec0927ef95299725a8eb48d3885ab9f2 | 4d2b56911f94089bc112f87fd9be4b1b16eb0abc | fix(lsp): lint-ignore directives follow leading comments (#31200) | [
{
"path": "cli/lsp/analysis.rs",
"patch": "@@ -1100,51 +1100,59 @@ impl CodeActionCollection {\n .actions\n .push(CodeActionKind::DenoLint(ignore_error_action));\n \n- // Disable a lint error for the entire file.\n- let maybe_ignore_comment = module\n+ let parsed_source = module\n ... | 2025-11-06T07:53:23 |
mrdoob/three.js | de7c7c82a8f195c0d1280a4c4a50bd5845f12ef6 | a0a25ea032029951ba50622be4277af87170feaa | Audio: Override copy and clone methods to include missing properties (#29960)
* fix: override Audio's clone and copy methods to avoid missing listener
Co-Authored-By: Jian-Nam <jeeahn2929@gmail.com>
* fix: include filters property in copy method
---------
Co-authored-by: Jian-Nam <jeeahn2929@gmail.com> | [
{
"path": "src/audio/Audio.js",
"patch": "@@ -396,6 +396,44 @@ class Audio extends Object3D {\n \n \t}\n \n+\tcopy( source, recursive ) {\n+\n+\t\tsuper.copy( source, recursive );\n+\n+\t\tthis.autoplay = source.autoplay;\n+\n+\t\tthis.buffer = source.buffer;\n+\t\tthis.detune = source.detune;\n+\t\tthis.lo... | 2024-11-26T09:08:04 |
vuejs/vue | 9c3e96f7573a671f085dab8cbd3bdb21dc4a9612 | 7497723c6add3945f9a2141da20e4a26945a628d | fix typo in comment (#5411) | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -32,7 +32,7 @@ export default {\n el._vModifiers = binding.modifiers\n if (!binding.modifiers.lazy) {\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n- // siwtching focus before confirming com... | 2017-04-10T20:52:02 |
golang/go | 8cf7a0b4c956aad5a8b98efde8ea6b7cde173902 | 2dd7e94e163f172472273b81846e6e3add412bc6 | cmd/link: support weak binding on darwin
Symbols loaded from host files can have the N_WEAK_REF bit set,
which is used to instruct the loader to not fail if that symbol
can't be resolved.
The Go internal linker should honor this information by setting the
BIND_SYMBOL_FLAGS_WEAK_IMPORT flag in the corresponding bind t... | [
{
"path": "src/cmd/cgo/internal/test/cgo_darwin_test.go",
"patch": "@@ -0,0 +1,11 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build cgo && darwin\n+\n+package cgotest\n+\n+im... | 2025-10-22T14:33:18 |
mrdoob/three.js | a0a25ea032029951ba50622be4277af87170feaa | c19aa1956e4c77d245c79fe54a25a244dd188f3f | WebGPUAttributeUtils: fix updateAttribute() when using range (#29966) (#29967)
* WebGPUAttributeUtils: fix updateAttribute() when using range (#29966)
* WebGPUAttributeUtils: handle ArrayBuffer and DataView
---------
Co-authored-by: Niklas Niehus <nni@demodern.de>
Co-authored-by: Renaud Rohlinger <renaud.roh... | [
{
"path": "src/renderers/webgpu/utils/WebGPUAttributeUtils.js",
"patch": "@@ -108,6 +108,7 @@ class WebGPUAttributeUtils {\n \t\tconst buffer = backend.get( bufferAttribute ).buffer;\n \n \t\tconst array = bufferAttribute.array;\n+\t\tconst isTypedArray = this._isTypedArray( array );\n \t\tconst updateRange... | 2024-11-26T03:30:42 |
denoland/deno | 2eb03415269cdbb8f22551a4769b3cbd14d2dc53 | 42cca89b074c7f4f09dfd8d9d4c6dfb7a580f7e7 | fix(lsp): set lockfile_skip_write unconditionally (#31191) | [
{
"path": "cli/lsp/language_server.rs",
"patch": "@@ -379,7 +379,6 @@ impl LanguageServer {\n specifiers: Vec<ModuleSpecifier>,\n referrer: ModuleSpecifier,\n force_global_cache: bool,\n- lockfile_skip_write: bool,\n ) -> LspResult<Option<Value>> {\n async fn create_graph_for_caching(\n... | 2025-11-05T14:27:29 |
vuejs/vue | 7497723c6add3945f9a2141da20e4a26945a628d | 682141fccc9b3224c3432afcd5befd23fba9b1a1 | disable duplicate attr warning in Edge (fix #5394) | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -5,8 +5,8 @@ import { parseHTML } from './html-parser'\n import { parseText } from './text-parser'\n import { parseFilters } from './filter-parser'\n import { cached, no, camelize } from 'shared/util'\n-import { isIE, isServerRendering } from 'core/util... | 2017-04-10T12:51:50 |
golang/go | 2dd7e94e163f172472273b81846e6e3add412bc6 | 28f1ad5782d80a0a3f95b004c6a822003fd0b1a1 | cmd/go: use go.dev instead of golang.org in flag errors
Also add the URL to the one possible error that didn't have it.
It looks like CL 93836 just missed the third error case when
adding the URL.
Change-Id: I837f8a730b25adb42909c9dfbde0dad2f664fec5
Reviewed-on: https://go-review.googlesource.com/c/go/+/718220
Review... | [
{
"path": "src/cmd/go/internal/work/security.go",
"patch": "@@ -375,13 +375,13 @@ Args:\n \t\t\t\t}\n \n \t\t\t\tif i+1 < len(list) {\n-\t\t\t\t\treturn fmt.Errorf(\"invalid flag in %s: %s %s (see https://golang.org/s/invalidflag)\", source, arg, list[i+1])\n+\t\t\t\t\treturn fmt.Errorf(\"invalid flag in %s... | 2025-11-05T20:02:52 |
mrdoob/three.js | c19aa1956e4c77d245c79fe54a25a244dd188f3f | 4749f998ca6127bd49f98ccfc773b50de02274b5 | WebGPU: Fix `navigator` usage. (#29965) | [
{
"path": "examples/jsm/capabilities/WebGPU.js",
"patch": "@@ -1,5 +1,4 @@\n-let isAvailable = navigator.gpu !== undefined;\n-\n+let isAvailable = ( typeof navigator !== 'undefined' && navigator.gpu !== undefined );\n \n if ( typeof window !== 'undefined' && isAvailable ) {\n ",
"additions": 1,
"de... | 2024-11-25T15:40:23 |
denoland/deno | 88aa2461c1ba0261e2ae9075b2e9a4d2b0a9d121 | 71db104c1f7c855680ae130c1e55a0fcc5144efd | fix(ext/node): implement `process.setgid()` and `process.setuid()` (#31162)
Closes #31145, #31146 | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -459,6 +459,8 @@ deno_core::extension!(deno_node,\n ops::process::op_node_process_kill,\n ops::process::op_node_process_setegid<P>,\n ops::process::op_node_process_seteuid<P>,\n+ ops::process::op_node_process_setgid<P>,\n+ ops::process::op_node_pro... | 2025-11-05T08:15:28 |
vuejs/vue | 4b6913cb46be2f8f932f19adb63bbc6f388a3b76 | 4dff99d6e3b8cdfb7552e284b1aac5742449c531 | handle errors in nextTick (close #5277) | [
{
"path": "src/core/util/env.js",
"patch": "@@ -2,6 +2,7 @@\n /* globals MutationObserver */\n \n import { noop } from 'shared/util'\n+import { handleError } from './error'\n \n // can we use __proto__?\n export const hasProto = '__proto__' in {}\n@@ -123,15 +124,22 @@ export const nextTick = (function () {... | 2017-04-10T07:01:32 |
golang/go | 28f1ad5782d80a0a3f95b004c6a822003fd0b1a1 | daa220a1c952b50a05a3a9411f122689247881b8 | cmd/go: fix TestScript/govcs
On my Mac, TestScript/govcs was failing because hg prints a URL
using 1.0.0.127.in-addr.arpa instead of 127.0.0.1, and my Mac
cannot resolve that name back into an IP address.
% host 127.0.0.1
1.0.0.127.in-addr.arpa domain name pointer localhost.
% host 1.0.0.127.in-addr.arpa
%
Change-Id... | [
{
"path": "src/cmd/go/internal/vcweb/hg.go",
"patch": "@@ -109,6 +109,13 @@ func (h *hgHandler) Handler(dir string, env []string, logger *log.Logger) (http.\n \t\t\twg.Done()\n \t\t}()\n \n+\t\t// On some systems,\n+\t\t// hg serve --address=localhost --print-url prints in-addr.arpa hostnames\n+\t\t// even ... | 2025-11-05T19:46:35 |
mrdoob/three.js | add7f9ba79a7f23732cf6e9e25ebcd4987550d45 | 4cc2eb5f5cde14e844266521e8b3b1daf6767ae9 | Fix: prevent crash when calling BufferGeometry.setFromPoints with too few points (#29956)
* Fix: prevent crash when calling BufferGeometry.setFromPoints with too few points
* lint
* Update BufferGeometry.js
Clean up.
* Update BufferGeometry.js
Clean up.
---------
Co-authored-by: Michael Herzog <mi... | [
{
"path": "src/core/BufferGeometry.js",
"patch": "@@ -304,7 +304,9 @@ class BufferGeometry extends EventDispatcher {\n \n \t\t} else {\n \n-\t\t\tfor ( let i = 0, l = positionAttribute.count; i < l; i ++ ) {\n+\t\t\tconst l = Math.min( points.length, positionAttribute.count ); // make sure data do not excee... | 2024-11-25T09:51:27 |
denoland/deno | cc5a13315ef4588b5c86c7c20a64763ca7b24bbc | 5eccca8717986ea7643638b41d2a78a818078b61 | feat(process): support integer signals in Deno.kill and child.kill (#31153)
Solution for https://github.com/denoland/deno/issues/30910
now this is valid:
```js
function isRunning(pid: number): boolean {
try {
Deno.kill(pid, 0)
return true
} catch (e) {
if (e instanceof Deno.errors.NotFound) {
... | [
{
"path": "cli/tsc/dts/lib.deno.ns.d.ts",
"patch": "@@ -3796,13 +3796,13 @@ declare namespace Deno {\n /** Waits for the child to exit completely, returning all its output and\n * status. */\n output(): Promise<CommandOutput>;\n- /** Kills the process with given {@linkcode Deno.Signal}.\n+ ... | 2025-11-04T15:24:22 |
vuejs/vue | 98326ce878247544914882b581e2cc560c3fe806 | b997af0c012d00b98c84c062326beb650b239e35 | add extra change listener for v-model (fix #5248, #5387) | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -31,6 +31,11 @@ export default {\n } else if (vnode.tag === 'textarea' || el.type === 'text' || el.type === 'password') {\n el._vModifiers = binding.modifiers\n if (!binding.modifiers.lazy) {\n+ // Safari < 10.2 &... | 2017-04-10T05:57:18 |
golang/go | daa220a1c952b50a05a3a9411f122689247881b8 | 3ae9e950021d79134146a751531f151a1f02d9bd | cmd/go: silence TLS handshake errors during test
We don't need to see messages like "TLS handshake error: EOF"
during go test.
Change-Id: If6bf51e655119914f337b9e61448c99485af34f2
Reviewed-on: https://go-review.googlesource.com/c/go/+/718183
Reviewed-by: Michael Matloob <matloob@google.com>
LUCI-TryBot-Result: Go LUC... | [
{
"path": "src/cmd/go/internal/vcweb/vcstest/vcstest.go",
"patch": "@@ -7,6 +7,7 @@\n package vcstest\n \n import (\n+\t\"bytes\"\n \t\"cmd/go/internal/vcs\"\n \t\"cmd/go/internal/vcweb\"\n \t\"cmd/go/internal/web/intercept\"\n@@ -70,7 +71,9 @@ func NewServer() (srv *Server, err error) {\n \t\t}\n \t}()\n \... | 2025-11-05T19:45:36 |
mrdoob/three.js | 4cc2eb5f5cde14e844266521e8b3b1daf6767ae9 | 54ce779ad9c1eb43d2f81510e72926867e1f342d | TSL Transpiler: Fixes (#29958) | [
{
"path": "examples/jsm/transpiler/AST.js",
"patch": "@@ -242,9 +242,9 @@ export class DynamicElement {\n \n export class AccessorElements {\n \n-\tconstructor( property, elements = [] ) {\n+\tconstructor( object, elements = [] ) {\n \n-\t\tthis.property = property;\n+\t\tthis.object = object;\n \t\tthis.el... | 2024-11-25T03:43:29 |
vuejs/vue | b997af0c012d00b98c84c062326beb650b239e35 | a150317324fec0968edd66dc434eaff7a4bc065a | Use genAssignmentCode in chehckbox model web compiler (#5402)
Fix #5398 | [
{
"path": "src/platforms/web/compiler/directives/model.js",
"patch": "@@ -91,7 +91,7 @@ function genCheckboxModel (\n '$$i=_i($$a,$$v);' +\n `if($$c){$$i<0&&(${value}=$$a.concat($$v))}` +\n `else{$$i>-1&&(${value}=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}` +\n- `}else{${value}=$$c... | 2017-04-10T04:24:08 |
mrdoob/three.js | 927c20c396c179c4a82b19acbe66ef9730a5b1d1 | 34ba5129de62d538c17616f50cd00e36fdb98398 | WebGPURenderer: Fix global references in Node.js (#29919)
* Fix compilation in react
* Cleanup fixes
* Fix space
* Fix space
* Update WebGPUBackend.js
Use `null` as fallback when navigator isn't available.
* Update WebGPUUtils.js
Revert.
---------
Co-authored-by: Michael Herzog <michael.herz... | [
{
"path": "src/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -64,7 +64,7 @@ class WebGPUBackend extends Backend {\n \t\t\t\tpowerPreference: parameters.powerPreference\n \t\t\t};\n \n-\t\t\tconst adapter = await navigator.gpu.requestAdapter( adapterOptions );\n+\t\t\tconst adapter = ( typeof navigator !=... | 2024-11-24T09:52:40 |
golang/go | 3ae9e950021d79134146a751531f151a1f02d9bd | a494a26bc2d0ad52e0e265c2a1b9a3a964118699 | cmd/go: fix TestCgoPkgConfig on darwin with pkg-config installed
Most darwin systems don't have pkg-config installed and skip this test.
(And it doesn't run in all.bash because it is skipped during -short.)
But for those systems that have pkg-config and run the non-short tests,
it fails because the code was not writi... | [
{
"path": "src/cmd/go/go_test.go",
"patch": "@@ -1506,15 +1506,17 @@ func main() {\n \ttg.setenv(\"PKG_CONFIG_PATH\", tg.path(\".\"))\n \ttg.run(\"run\", tg.path(\"foo.go\"))\n \n-\tif runtime.GOOS != \"darwin\" { // darwin doesn't like these ldflags\n-\t\t// test for ldflags\n-\t\ttg.tempFile(\"bar.pc\", `... | 2025-11-05T18:42:44 |
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.