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 |
|---|---|---|---|---|---|
vuejs/vue | c24f3e4208cd045832002ee9916559f6fe0dc2b5 | f2e00f756fb540fb09ce3414289c652ce172d85c | fix(events): properly $off array of events (#6949) | [
{
"path": "src/core/instance/events.js",
"patch": "@@ -92,7 +92,7 @@ export function eventsMixin (Vue: Class<Component>) {\n if (!cbs) {\n return vm\n }\n- if (arguments.length === 1) {\n+ if (!fn) {\n vm._events[event] = null\n return vm\n }",
"additions": 1,
"de... | 2017-11-02T20:58:21 |
denoland/deno | 02272d9573a7dbab6d0a3578dfda4f3d91f7e70d | bd6bce3e5fab4aa555ee811d7e7211a54b57865e | fix(io): ignore `BrokenPipe` error in `op_print` (#31844) | [
{
"path": "ext/io/lib.rs",
"patch": "@@ -1199,9 +1199,11 @@ pub fn op_print(\n ) -> Result<(), JsErrorBox> {\n let rid = if is_err { 2 } else { 1 };\n FileResource::with_file(state, rid, move |file| {\n- file\n- .write_all_sync(msg.as_bytes())\n- .map_err(JsErrorBox::from_err)\n+ match f... | 2026-01-14T20:43:27 |
golang/go | c079dd13c0b0e977d607cf2775bc2f16dd3d106e | 2947cb0469aa89aac70cc6e3968f00f4c625671a | runtime/secret: reorganize tests to fix -buildmode=shared
The testing assembly methods had a linkname that was implicitly
satisfied during the regular build but not there during the shared
build. Fix by moving the testing routine into the package itself.
For good measure, section off the assembly files from the non-e... | [
{
"path": "src/runtime/secret/asm_amd64.s",
"patch": "@@ -2,6 +2,8 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+//go:build goexperiment.runtimesecret\n+\n // Note: this assembly file is used for testing only.\n // We need to access regis... | 2025-11-27T06:45:20 |
mrdoob/three.js | 58d5c519b0b0870fd00b950471127ef521c5eea0 | e6b3f2dabb8661754bec1a403c487a7d707bca23 | Material: Add `allowOverride`. (#30753)
* Material: Add `allowOverride`.
* Scene: Fix typo. | [
{
"path": "src/materials/Material.js",
"patch": "@@ -427,6 +427,14 @@ class Material extends EventDispatcher {\n \t\t */\n \t\tthis.forceSinglePass = false;\n \n+\t\t/**\n+\t\t * Whether it's possible to override the material with {@link Scene#overrideMaterial} or not.\n+\t\t *\n+\t\t * @type {boolean}\n+\t... | 2025-03-19T09:20:29 |
vuejs/vue | f2e00f756fb540fb09ce3414289c652ce172d85c | 350f5788d39741d690d49aea91c084f2db764992 | fix: special case for static muted attribute in firefox
fix #6887 | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -556,6 +556,13 @@ function processAttrs (el) {\n }\n }\n addAttr(el, name, JSON.stringify(value))\n+ // #6887 firefox doesn't update muted state if set via attribute\n+ // even immediately after element creation\n+ if ... | 2017-11-02T20:55:05 |
denoland/deno | dc8e397b09055f3b0986da51276a6d6117f12067 | 79a4ddb127436e87f65a1012cc96d6ba460d7991 | fix(node/child_process): ChildProcess constructor without args (#31838)
Refactors ChildProcess class to match Node.js behavior where the
constructor can be called without arguments, and spawn() is called
separately with options.
Fix `test-child-process-constructor.js` | [
{
"path": "ext/node/polyfills/child_process.ts",
"patch": "@@ -236,7 +236,10 @@ export function spawn(\n options = normalizeSpawnArguments(command, args, options);\n \n validateAbortSignal(options?.signal, \"options.signal\");\n- return new ChildProcess(command, args, options);\n+\n+ const child = new... | 2026-01-14T18:09:30 |
mrdoob/three.js | 6283ccab7fb3be8fc86086db96710c2c0df3a969 | c47f61a3b3aa239d69171c6810647ca2d1e7d6f7 | OperatorNode: Fix `notEqual()` redundant bool convertion (#30740) | [
{
"path": "src/nodes/math/OperatorNode.js",
"patch": "@@ -104,7 +104,7 @@ class OperatorNode extends TempNode {\n \n \t\t\treturn builder.getIntegerType( typeA );\n \n-\t\t} else if ( op === '!' || op === '==' || op === '&&' || op === '||' || op === '^^' ) {\n+\t\t} else if ( op === '!' || op === '==' || op... | 2025-03-16T02:59:01 |
golang/go | 2947cb0469aa89aac70cc6e3968f00f4c625671a | cead111a772c2852c870fb140029d89152da4d14 | runtime/_mkmalloc: fix log.Fatal formatting directive
Change-Id: I9b9b9dbde440c3a24599efd55ef6f85a6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/724281
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj... | [
{
"path": "src/runtime/_mkmalloc/mkmalloc.go",
"patch": "@@ -288,7 +288,7 @@ func inline(config generatorConfig) []byte {\n \t\t\tcase foldCondition:\n \t\t\t\tstamped = foldIfCondition(stamped, repl.from, repl.to)\n \t\t\tdefault:\n-\t\t\t\tlog.Fatal(\"unknown op kind %v\", repl.kind)\n+\t\t\t\tlog.Fatalf(... | 2025-11-27T10:42:27 |
vuejs/vue | 8a784d8d2333f0a05569f6c11c5a0fb0ab3a164e | 6f6e5c88af95d4b50ba70e4d983e1add7f8fd254 | fix(weex): stop trim css units in richtext component (#6927)
+ Remove the `trimCSSUnit` method.
+ Modify the test cases to support css units.
+ Add flow type annotations. | [
{
"path": "src/platforms/weex/runtime/components/richtext.js",
"patch": "@@ -1,55 +1,44 @@\n-function getVNodeType (vnode) {\n+/* @flow */\n+\n+function getVNodeType (vnode: VNode): string {\n if (!vnode.tag) {\n return ''\n }\n return vnode.tag.replace(/vue\\-component\\-(\\d+\\-)?/, '')\n }\n \n... | 2017-10-31T00:28:54 |
denoland/deno | d8a3f1bb90b4ab66ecdd571a471bf5e661119839 | 0b4cbe3bc8491787e3aab78db35cee2ab2590bba | fix(node/child_process): use correct syscall name in spawn error (#31836)
The error object from spawn() was incorrectly setting syscall to
"spawnSync <file>" instead of "spawn <file>". | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -420,7 +420,7 @@ export class ChildProcess extends EventEmitter {\n } catch (err) {\n let e = err;\n if (e instanceof Deno.errors.NotFound) {\n- e = _createSpawnSyncError(\"ENOENT\", command, args);\n+ e = _... | 2026-01-13T19:26:19 |
vuejs/vue | e9c8e12397f1e89382f91b1557cc7f7d4139e651 | d1d8b58ab6a0b0698a86aff716c0fd94b7cdd654 | chore: fix sponsors from open collective (#6958)
* Fix sponsors from open collective
Also added Silver and Bronze sponsors.
Fixes https://github.com/opencollective/opencollective/issues/579
* Update README.md
only gold and above are listed here. | [
{
"path": "README.md",
"patch": "@@ -16,7 +16,7 @@\n Vue.js is an MIT-licensed open source project. It's an independent project with its ongoing development made possible entirely thanks to the support by these awesome [backers](https://github.com/vuejs/vue/blob/dev/BACKERS.md). If you'd like to join them, ... | 2017-10-30T14:37:28 |
golang/go | c2af9f14b429741cfd4fed11a67a52427dec3931 | 6be5de4bc4e30ac0e2843c781393235d78e384a8 | internal/runtime/cgroup: fix path on non-root mount point
We should trim the mount root (4th field in /proc/self/mountinfo) from
cgroup path read from /proc/self/cgroup before appending it to the mount
point. Non-root mount points are very common in containers with cgroup
v1.
parseCPURelativePath is renamed to parse... | [
{
"path": "src/internal/cgrouptest/cgrouptest_linux.go",
"patch": "@@ -50,9 +50,8 @@ func (c *CgroupV2) SetCPUMax(quota, period int64) error {\n //\n // This must not be used in parallel tests, as it affects the entire process.\n func InCgroupV2(t *testing.T, fn func(*CgroupV2)) {\n-\tmount, rel := findCurr... | 2025-11-21T17:44:14 |
denoland/deno | 0b4cbe3bc8491787e3aab78db35cee2ab2590bba | 323f43a05d5d0146260a38c0beb71755ed66d422 | fix(node/child_process): reject null bytes in arguments (#31828)
Add validation to reject null bytes (\0) in child_process arguments,
matching Node.js behavior. Null bytes in command arguments can cause
security issues as they may truncate strings at the OS level.
Validates null bytes in:
- file/command argument
... | [
{
"path": "ext/node/polyfills/child_process.ts",
"patch": "@@ -22,6 +22,7 @@ import {\n type SpawnSyncOptions,\n type SpawnSyncResult,\n stdioStringToArray,\n+ validateNullByteNotInArg,\n } from \"ext:deno_node/internal/child_process.ts\";\n import {\n validateAbortSignal,\n@@ -73,6 +74,7 @@ export... | 2026-01-13T17:17:49 |
vuejs/vue | c3553196b8b15a71f982bd5e04c61be52e87c828 | 4ad9a56b229b156e633f3d575cd0e99ba5e474d9 | fix: clean up target variables to avoid memory leaks (#6932)
fix #6931 | [
{
"path": "src/core/instance/events.js",
"patch": "@@ -19,7 +19,7 @@ export function initEvents (vm: Component) {\n }\n }\n \n-let target: Component\n+let target: any\n \n function add (event, fn, once) {\n if (once) {\n@@ -40,6 +40,7 @@ export function updateComponentListeners (\n ) {\n target = vm\n... | 2017-10-27T01:08:10 |
golang/go | 481c6df7b9006e59febbb24689ab8bf686695e9d | cec4d4303f6475475d1a632cca506e8a82072d25 | io: reduce intermediate allocations in ReadAll and have a smaller final result
Currently, io.ReadAll allocates a significant amount of intermediate
memory as it grows its result slice to the size of the input data.
This CL aims to reduce the allocated memory. Geomean benchstat results
comparing existing io.ReadAll to... | [
{
"path": "src/io/io.go",
"patch": "@@ -707,20 +707,44 @@ func (c nopCloserWriterTo) WriteTo(w Writer) (n int64, err error) {\n // defined to read from src until EOF, it does not treat an EOF from Read\n // as an error to be reported.\n func ReadAll(r Reader) ([]byte, error) {\n+\t// Build slices of exponen... | 2025-11-20T19:43:50 |
mrdoob/three.js | 0c6ff67cb69fb04468a498992ba82377b1427b84 | d630eb8c0bba5674406686ad205326ba7fbd870d | fix up AA for WebXR and use multisample extension only when needed (#30724) | [
{
"path": "src/renderers/common/XRManager.js",
"patch": "@@ -551,6 +551,7 @@ class XRManager extends EventDispatcher {\n \t\tconst backend = renderer.backend;\n \n \t\tconst gl = renderer.getContext();\n+\t\tconst attributes = gl.getContextAttributes();\n \n \t\tthis._session = session;\n \n@@ -620,6 +621,7... | 2025-03-12T09:10:49 |
denoland/deno | 7be740f03525f2153fdebdb16b5bd0ecb884506e | 41dca90e29442b7cbb93e139d166059f158e133a | fix(node/child_process): improve arg type validation for execFile and fork (#31829)
- Improves argument type validation in `execFile()` and `fork()` to
match Node.js behavior
- Fixes error code from `ERR_INVALID_ARG_VALUE` to
`ERR_INVALID_ARG_TYPE` in fork argument validation
- Adds explicit array rejection in options... | [
{
"path": "ext/node/polyfills/child_process.ts",
"patch": "@@ -33,7 +33,6 @@ import {\n ERR_CHILD_PROCESS_IPC_REQUIRED,\n ERR_CHILD_PROCESS_STDIO_MAXBUFFER,\n ERR_INVALID_ARG_TYPE,\n- ERR_INVALID_ARG_VALUE,\n ERR_OUT_OF_RANGE,\n genericNodeError,\n } from \"ext:deno_node/internal/errors.ts\";\n@@... | 2026-01-13T16:02:24 |
vuejs/vue | 4ad9a56b229b156e633f3d575cd0e99ba5e474d9 | 1cf02efda206185cb72bbaafb00037fa6269e3f3 | fix(ssr): should not optimize root if conditions
fix #6907 | [
{
"path": "src/server/optimizing-compiler/optimizer.js",
"patch": "@@ -55,7 +55,7 @@ function walk (node: ASTNode, isRoot?: boolean) {\n if (node.ifConditions) {\n for (let i = 1, l = node.ifConditions.length; i < l; i++) {\n const block = node.ifConditions[i].block\n- walk(block)\n... | 2017-10-26T16:43:57 |
golang/go | cec4d4303f6475475d1a632cca506e8a82072d25 | f1bbc66a10a545811a21dcf9f9431e783aafcb42 | os: allow direntries to have zero inodes on Linux
Some Linux filesystems have been known to return valid enties with
zero inodes. This new behavior also puts Go in agreement with recent
glibc.
Fixes #76428
Change-Id: Ieaf50739a294915a3ea2ef8c5a3bb2a91a186881
GitHub-Last-Rev: 8f83d009ef0320fd3fe7cf03e55d5d24df57f015
... | [
{
"path": "src/os/dir_unix.go",
"patch": "@@ -112,7 +112,8 @@ func (f *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEn\n \t\t// or might expose a remote file system which does not have the concept\n \t\t// of inodes. Therefore, we cannot make the assumption that it is safe\n \t\t// t... | 2025-11-25T03:55:45 |
mrdoob/three.js | d630eb8c0bba5674406686ad205326ba7fbd870d | c423179854ea8b4bc13b1690f022be76848f476f | Docs: fix typos (#30721)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -72,7 +72,7 @@ import { toTrianglesDrawMode } from '../utils/BufferGeometryUtils.js';\n *\n * [glTF]{@link https://www.khronos.org/gltf/} (GL Transmission Format) is an [open format specification]{@link https://github.com/KhronosGroup/glTF/tree/... | 2025-03-11T21:09:35 |
denoland/deno | 41dca90e29442b7cbb93e139d166059f158e133a | db55e48fa39e982bf0b7829e02b22f2661efa090 | tests: remake inspector tests handling out of order (#31788)
This PR rewrite the inspector tests from Rust to TypeScript, and also
uses a better strategy for out of order communication, fixing flaky
tests. | [
{
"path": "tests/integration/inspector_tests.rs",
"patch": "@@ -1,1905 +0,0 @@\n-// Copyright 2018-2026 the Deno authors. MIT license.\n-\n-use std::io::BufRead;\n-use std::process::ChildStderr;\n-use std::time::Duration;\n-\n-use anyhow::Error as AnyError;\n-use anyhow::anyhow;\n-use bytes::Bytes;\n-use fa... | 2026-01-13T15:59:04 |
vuejs/vue | 1cf02efda206185cb72bbaafb00037fa6269e3f3 | cfd73c2386623341fdbb3ac636c4baf84ea89c2c | fix: also clone component slot children during deepClone
fix #6891, fix #6915 | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -673,9 +673,12 @@ export function createPatchFunction (backend) {\n // create an empty node and replace it\n oldVnode = emptyNodeAt(oldVnode)\n }\n+\n // replacing existing element\n const oldElm = oldVnode.elm\n ... | 2017-10-26T16:00:19 |
golang/go | 43cfd785e72ccd04fe638395aa80029aae23fef6 | 312b2034a4e16583fac00070e698c3d464eca1c8 | cmd/link, runtime, debug/gosym: move pclntab magic to internal/abi
Change-Id: I2d3c41b0e61b994d7b04bd16a791fd226dc45269
Reviewed-on: https://go-review.googlesource.com/c/go/+/720302
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Cherry Mui <cherryyz@google... | [
{
"path": "src/cmd/link/internal/ld/pcln.go",
"patch": "@@ -261,7 +261,7 @@ func (state *pclntab) generatePCHeader(ctxt *Link) {\n \n \t\t// Write header.\n \t\t// Keep in sync with runtime/symtab.go:pcHeader and package debug/gosym.\n-\t\theader.SetUint32(ctxt.Arch, 0, 0xfffffff1)\n+\t\theader.SetUint32(ct... | 2025-11-13T21:01:14 |
mrdoob/three.js | c423179854ea8b4bc13b1690f022be76848f476f | aac0cb59fd48d20c77aa1d75c46f5b4c1ed5b61a | Docs: fix some types (#30723)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/helpers/ViewHelper.js",
"patch": "@@ -181,7 +181,7 @@ class ViewHelper extends Object3D {\n \t\t * This method should be called when a click or pointer event\n \t\t * has happened in the app.\n \t\t *\n-\t\t * @param {Event} event - The event to process.\n+\t\t * @param {PointerEvent... | 2025-03-11T21:08:40 |
denoland/deno | 06e4a27450d8c5e5f6a3b1a44ce676aff88122f6 | 651a868d9adaeae8314a4e34f44f80aadba25a00 | fix: allow multiple --allow-all args (#31833)
Currently passing multiple `--allow-all` (or `-A`) flags causes a crash,
but due to historic reasons some tools like VSCode, unconditionally added
`--allow-all` argument when running a debugger. This commit changes flag parsing so that `deno`
accepts `--allow-all` multiple... | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -4840,8 +4840,11 @@ fn allow_all_arg() -> Arg {\n .conflicts_with(\"allow-ffi\")\n .conflicts_with(\"allow-import\")\n .conflicts_with(\"permission-set\")\n- .action(ArgAction::SetTrue)\n .help(\"Allow all permissions\")\n+ // So situations l... | 2026-01-13T14:52:54 |
vuejs/vue | cfd73c2386623341fdbb3ac636c4baf84ea89c2c | 83ed92608d81349e1cac2e481ed079e51a490b2b | fix: handle encoded tabs and newlines in attributes for Chrome a[href] and IE/Edge
fix #6828, fix #6916 | [
{
"path": "flow/compiler.js",
"patch": "@@ -14,7 +14,8 @@ declare type CompilerOptions = {\n preserveWhitespace?: boolean;\n isFromDOM?: boolean;\n shouldDecodeTags?: boolean;\n- shouldDecodeNewlines?: boolean;\n+ shouldDecodeNewlines?: boolean;\n+ shouldDecodeNewlinesForHref?: boolean;\n \n // ... | 2017-10-26T14:01:12 |
mrdoob/three.js | a1358b4fa0822fe99498c11c1c24ff4a6e89f634 | 91213ea614b3e9824cf8fd50f9a23bb615fb3f04 | LUTImageLoader: Harmonize ctor. (#30720)
* LUTImageLoader: Harmonize ctor.
* Update LUTImageLoader.js
Fix typos. | [
{
"path": "examples/jsm/loaders/LUTImageLoader.js",
"patch": "@@ -23,22 +23,23 @@ export class LUTImageLoader extends Loader {\n \t/**\n \t * Constructs a new LUT loader.\n \t *\n-\t * @param {boolean} [flipVertical=false] - Whether to vertically flip the LUT or not.\n+\t * @param {LoadingManager} [manager]... | 2025-03-11T13:00:10 |
golang/go | d8269ab0d59212fed0f5975f7083f6bbbfc00ec4 | c6d64f85565e6a934110c4928ca95fea0045ebaa | cmd/link, cmd/internal/obj: fix a remote call failure issue
When a function call exceeds the immediate value range of the instruction,
a trampoline is required to assist in the jump. Trampoline is only omitted
when plt is needed; otherwise, a check is required.
Change-Id: I7fe2e08d75f6f574475837b560e650bbd4215858
Rev... | [
{
"path": "src/cmd/internal/obj/loong64/asm.go",
"patch": "@@ -2437,6 +2437,9 @@ func (c *ctxt0) asmout(p *obj.Prog, o *Optab, out []uint32) {\n \t\tv := int32(0)\n \t\tif p.To.Target() != nil {\n \t\t\tv = int32(p.To.Target().Pc-p.Pc) >> 2\n+\t\t\tif v < -1<<25 || v >= 1<<25 {\n+\t\t\t\tc.ctxt.Diag(\"branc... | 2025-11-24T09:28:42 |
denoland/deno | 210b309d2537ea0690755648ba132f58118fcc0c | 67ab6beddb674f01773f75837411befce49b8918 | fix(ext/web): handle empty TextDecoder input when stream is true (#31691)
for:
https://github.com/denoland/deno/issues/31605#issuecomment-3677640653
fixes the issue where TextDecoder with stream: true and an empty chunk
would return incorrect results.
It resolves the chunking problem for legacy encodings like big5,
... | [
{
"path": "ext/web/08_text_encoding.js",
"patch": "@@ -119,6 +119,10 @@ class TextDecoder {\n stream = options.stream;\n }\n \n+ if (stream && input.length === 0) {\n+ return \"\";\n+ }\n+\n try {\n /** @type {ArrayBufferLike} */\n let buffer = input;",
"additions": ... | 2026-01-12T10:15:52 |
mrdoob/three.js | a94801e04ef5f95f3ac94bd06c9d0d531f06d1ca | 8cae4d830f0223258cd827f9841d17174c150f80 | WebGPUConstants: Fix name of RG11B10UFloat (#30717)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "src/renderers/webgpu/utils/WebGPUConstants.js",
"patch": "@@ -113,7 +113,7 @@ export const GPUTextureFormat = {\n \t// Packed 32-bit formats\n \tRGB9E5UFloat: 'rgb9e5ufloat',\n \tRGB10A2Unorm: 'rgb10a2unorm',\n-\tRG11B10uFloat: 'rgb10a2unorm',\n+\tRG11B10UFloat: 'rgb10a2unorm',\n \n \t// 64-bit f... | 2025-03-10T21:59:37 |
vuejs/vue | 83ed92608d81349e1cac2e481ed079e51a490b2b | ee0e8b5ce1d64120b2b8d6426d783f6f0a683395 | fix: $set should respect properties on prototype chain
fix #6845 | [
{
"path": "src/core/observer/index.js",
"patch": "@@ -196,7 +196,7 @@ export function set (target: Array<any> | Object, key: any, val: any): any {\n target.splice(key, 1, val)\n return val\n }\n- if (hasOwn(target, key)) {\n+ if (key in target && !(key in Object.prototype)) {\n target[key] =... | 2017-10-26T11:52:36 |
golang/go | c6d64f85565e6a934110c4928ca95fea0045ebaa | c048a9a11f21e879a76e328b7a92f3a47f298b37 | cmd/internal/obj/loong64: remove the incorrect unsigned instructions
The loong64 ISA does not support the 32-bit unsigned arithmetic
instructions ADDU, SUBU and MULU.
Change-Id: Ifa67de9c59aa12d08844189ed23e6daad0cc11ea
Reviewed-on: https://go-review.googlesource.com/c/go/+/722760
Reviewed-by: abner chenc <chenguoqi@... | [
{
"path": "src/cmd/asm/internal/asm/testdata/loong64enc1.s",
"patch": "@@ -199,8 +199,6 @@ lable2:\n \tMOVHU\tR4, 1(R5)\t\t// a4044029\n \tMOVHU\ty+8(FP), R4\t\t// 6440402a\n \tMOVHU\t1(R5), R4\t\t// a404402a\n-\tMULU\tR4, R5\t \t\t// a5101c00\n-\tMULU\tR4, R5, R6\t\t// a6101c00\n \tMULH\tR4, R5\t \t\t/... | 2025-11-21T09:22:05 |
mrdoob/three.js | 3e13e53360a1a59faf0211a0dabe4ca6771cc5fd | 43acb6e31a42ffc38dae889b23e068e7a36bfa5c | EXRLoader: Fix string comparison (#30709)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/loaders/EXRLoader.js",
"patch": "@@ -2229,7 +2229,7 @@ class EXRLoader extends DataTextureLoader {\n \n \t\t\t\tconst attributeName = parseNullTerminatedString( buffer, offset );\n \n-\t\t\t\tif ( attributeName == 0 ) {\n+\t\t\t\tif ( attributeName === '' ) {\n \n \t\t\t\t\tkeepReadi... | 2025-03-10T17:24:05 |
denoland/deno | 67ab6beddb674f01773f75837411befce49b8918 | 466ab1212c7b838bea154d23b2ed8711669770f9 | fix(ext/fetch): read file urls via vfs (#31814) | [
{
"path": "Cargo.lock",
"patch": "@@ -2060,6 +2060,7 @@ dependencies = [\n \"deno_core\",\n \"deno_error\",\n \"deno_fs\",\n+ \"deno_io\",\n \"deno_path_util\",\n \"deno_permissions\",\n \"deno_tls\",\n@@ -2083,7 +2084,6 @@ dependencies = [\n \"tokio\",\n \"tokio-rustls\",\n \"tokio-socks\",\n- \"t... | 2026-01-12T01:16:12 |
vuejs/vue | 98ea0a3b48e37719f278c10a8ee5fb94d7d5db4e | 604230fe953f864be5dc70bd7d34f64ae43e4f7e | fix(types): improve typing for better completion (#6886) | [
{
"path": "types/vue.d.ts",
"patch": "@@ -61,7 +61,7 @@ export interface Vue {\n $createElement: CreateElement;\n }\n \n-export type CombinedVueInstance<Instance extends Vue, Data, Methods, Computed, Props> = Instance & Data & Methods & Computed & Props;\n+export type CombinedVueInstance<Instance extends ... | 2017-10-25T04:45:15 |
golang/go | ff2fd6327ecb343d96074dff3ccee359b5f1d629 | 3531ac23d4aac6bdd914f14f65ee5fdc5e6e98fa | go/types, types2: remove setDefType and most def plumbing
CL 722161 replaced the setDefType mechanism with boundaries on composite
literals, removing the need to pass the def argument in all but 1 case.
The exception is interface types, which use def to populate the receiver
type for better error messages.
Change-Id... | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -669,7 +669,7 @@ var cgoPrefixes = [...]string{\n \t\"_Cmacro_\", // function to evaluate the expanded expression\n }\n \n-func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName, wantType bool) {\n+func (check *Check... | 2025-11-24T19:34:39 |
mrdoob/three.js | 4c5d1b5657605cfb334728f345389b2e66d28df1 | ea8a13c3afea2b0d67dc39a7cc305af9c7300c48 | SceneOptimizer: Fix wrong reference to _logDebugInfo (#30711)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/utils/SceneOptimizer.js",
"patch": "@@ -346,7 +346,7 @@ class SceneOptimizer {\n \t/**\n \t * Removes the given array of meshes from the scene.\n \t *\n-\t * @param {Array<Mesh>} meshesToRemove - The meshes to remove.\n+\t * @param {Set<Mesh>} meshesToRemove - The meshes to remove.\n... | 2025-03-10T17:21:17 |
denoland/deno | 466ab1212c7b838bea154d23b2ed8711669770f9 | ac0aa340f17438884acd50477a415ceb7937dd72 | fix(ext/node): `DatabaseSync` garbage collection invalidating associated resources (#31737) | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -745,7 +745,7 @@ impl DatabaseSync {\n \n Ok(StatementSync {\n inner: stmt_cell,\n- db: Rc::downgrade(&self.conn),\n+ db: self.conn.clone(),\n statements: Rc::clone(&self.statements),\n ignore_next_sqlite_error: Rc::cl... | 2026-01-10T04:53:49 |
vuejs/vue | 604230fe953f864be5dc70bd7d34f64ae43e4f7e | 048e9407795ec7420d4b2962cbd50f769d3432fb | fix(keep-alive): higher priority for exclude than include (#6905) | [
{
"path": "src/core/components/keep-alive.js",
"patch": "@@ -87,8 +87,8 @@ export default {\n // check pattern\n const name: ?string = getComponentName(componentOptions)\n if (name && (\n- (this.include && !matches(this.include, name)) ||\n- (this.exclude && matches(this.excl... | 2017-10-25T04:44:54 |
golang/go | 3531ac23d4aac6bdd914f14f65ee5fdc5e6e98fa | 2b8dbb35b0d6a5601ae9b6f1d1de106774251214 | go/types, types2: replace setDefType with pending type check
Given a type definition of the form:
type T RHS
The setDefType function would set T.fromRHS as soon as we knew its
top-level type. For instance, in:
type S struct { ... }
S.fromRHS is set to a struct type before type-checking anything inside
the stru... | [
{
"path": "src/cmd/compile/internal/types2/expr.go",
"patch": "@@ -993,6 +993,13 @@ func (check *Checker) rawExpr(T *target, x *operand, e syntax.Expr, hint Type, a\n \t\tcheck.nonGeneric(T, x)\n \t}\n \n+\t// Here, x is a value, meaning it has a type. If that type is pending, then we have\n+\t// a cycle. A... | 2025-11-24T22:04:49 |
mrdoob/three.js | a2b8200f20c4b59f40bf42e2b50391f9297bd87c | 984b00dd86cf7948c629864dce654cf6bd9df235 | AnalyticLightNode: fix call to setupShadowNode (#30713)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "src/nodes/lighting/AnalyticLightNode.js",
"patch": "@@ -180,7 +180,7 @@ class AnalyticLightNode extends LightingNode {\n \n \t\t\t} else {\n \n-\t\t\t\tshadowNode = this.setupShadowNode( builder );\n+\t\t\t\tshadowNode = this.setupShadowNode();\n \n \t\t\t}\n ",
"additions": 1,
"deletions... | 2025-03-10T17:16:27 |
denoland/deno | b6594a790986aa4518558f8d50667bddb4801378 | d63261e57aff4686d0e977af76b30435ec122b2e | fix(ext/node): emit deprecation warning for SlowBuffer (#31772)
Adds the DEP0030 deprecation warning when SlowBuffer() is called,
matching Node.js behavior.
This fixes the node_compat test parallel/test-buffer-slow.js. | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -153,10 +153,13 @@ export const constants = {\n };\n \n let bufferWarningAlreadyEmitted = false;\n+let slowBufferWarningAlreadyEmitted = false;\n let nodeModulesCheckCounter = 0;\n const bufferWarning = \"Buffer() is deprecated due to security... | 2026-01-10T02:14:56 |
vuejs/vue | b6c384dd78b56bd247e6a34d5aea0d3903f5b7fd | 9caed00d20f37c750e39db4ec86d278b453f0e5d | fix(core): static trees should be cached on options (#6826) (#6837)
* test(once): failing test for #6826
* fix(core): static trees should be cached on options (#6826) | [
{
"path": "src/core/instance/render-helpers/render-static.js",
"patch": "@@ -11,8 +11,8 @@ export function renderStatic (\n ): VNode | Array<VNode> {\n // static trees can be rendered once and cached on the contructor options\n // so every instance shares the same cached trees\n- const renderFns = this... | 2017-10-18T04:26:55 |
mrdoob/three.js | 04a61dc234877ab4f68b4b0b75d869c90c77f1ab | c6465e399c777452093dc356c1c9b92682d99848 | AsciiEffect: fix types (#30710)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/effects/AsciiEffect.js",
"patch": "@@ -101,8 +101,8 @@ class AsciiEffect {\n \n \t\t\t}\n \n-\t\t\toAscii.cellSpacing = 0;\n-\t\t\toAscii.cellPadding = 0;\n+\t\t\toAscii.cellSpacing = '0';\n+\t\t\toAscii.cellPadding = '0';\n \n \t\t\tconst oStyle = oAscii.style;\n \t\t\toStyle.whiteS... | 2025-03-10T17:14:36 |
golang/go | 2b8dbb35b0d6a5601ae9b6f1d1de106774251214 | 21ebed0ac0a3f733811bea2355ed85d3b1bf6fbd | crypto,testing/cryptotest: ignore random io.Reader params, add SetGlobalRandom
First, we centralize all random bytes generation through drbg.Read. The
rest of the FIPS 140-3 module can't use external functions anyway, so
drbg.Read needs to have all the logic.
Then, make sure that the crypto/... tree uses drbg.Read (o... | [
{
"path": "api/next/70942.txt",
"patch": "@@ -0,0 +1 @@\n+pkg testing/cryptotest, func SetGlobalRandom(*testing.T, uint64) #70942",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/godebug.md",
"patch": "@@ -178,6 +178,11 @@ includes these key/value pairs in... | 2025-09-15T16:58:04 |
denoland/deno | d63261e57aff4686d0e977af76b30435ec122b2e | cb0f39271a081e5426f1909d8eee9499db2fe56b | fix: add more details when panicking getting dir path from deno.json (#31805) | [
{
"path": "libs/config/deno_json/mod.rs",
"patch": "@@ -1433,11 +1433,15 @@ impl ConfigFile {\n }\n \n pub fn dir_path(&self) -> PathBuf {\n- url_to_file_path(&self.specifier)\n- .unwrap()\n- .parent()\n- .unwrap()\n- .to_path_buf()\n+ let path = url_to_file_path(&self.specifie... | 2026-01-09T21:09:36 |
vuejs/vue | 9caed00d20f37c750e39db4ec86d278b453f0e5d | 471de4a31d229e681cc9dce18632b5bcab944c77 | fix(typing): relax $options type for TS2.6+ (#6819) | [
{
"path": "types/vue.d.ts",
"patch": "@@ -22,7 +22,7 @@ export interface CreateElement {\n \n export interface Vue {\n readonly $el: HTMLElement;\n- readonly $options: ComponentOptions<this>;\n+ readonly $options: ComponentOptions<Vue>;\n readonly $parent: Vue;\n readonly $root: Vue;\n readonly $c... | 2017-10-15T18:26:08 |
mrdoob/three.js | c6465e399c777452093dc356c1c9b92682d99848 | 84029a1dfe21e0d7e947fcbd9ddcc3b7a3c5d8cf | WebGLRenderer: Fix reference to drawingBufferColorSpace (#30707)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -3391,7 +3391,7 @@ class WebGLRenderer {\n \t\tthis._outputColorSpace = colorSpace;\n \n \t\tconst gl = this.getContext();\n-\t\tgl.drawingBufferColorspace = ColorManagement._getDrawingBufferColorSpace( colorSpace );\n+\t\tgl.drawingBufferColorSpace =... | 2025-03-10T17:13:55 |
golang/go | a3fb92a7100f3f2824d483ee0cbcf1264584b3e4 | 0c747b7aa757da0a0a0ac7b2b5834dca84c7c019 | runtime/secret: implement new secret package
Implement secret.Do.
- When secret.Do returns:
- Clear stack that is used by the argument function.
- Clear all the registers that might contain secrets.
- On stack growth in secret mode, clear the old stack.
- When objects are allocated in secret mode, mark them and t... | [
{
"path": "doc/next/6-stdlib/1-secret.md",
"patch": "@@ -0,0 +1,20 @@\n+### New secret package\n+\n+<!-- https://go.dev/issue/21865 --->\n+\n+The new [secret](/pkg/runtime/secret) package is available as an experiment.\n+It provides a facility for securely erasing temporaries used in\n+code that manipulates... | 2025-09-25T16:26:03 |
denoland/deno | 024c73e1209aadf6c170af2be31d88dbb2f94da1 | 3865cd86d4e740249fad0391cddbac4e87ae242e | chore: fix node_compat_test workflow (#31798) | [
{
"path": ".github/workflows/node_compat_test.yml",
"patch": "@@ -22,6 +22,8 @@ jobs:\n uses: actions/checkout@v4\n with:\n submodules: true\n+ - name: Setup Rust\n+ uses: dsherret/rust-toolchain-file@v1\n - name: Setup Deno\n uses: denoland/setup-deno@v2\... | 2026-01-09T19:12:40 |
mrdoob/three.js | 84029a1dfe21e0d7e947fcbd9ddcc3b7a3c5d8cf | ee28be26284c3371c3cf2d54fdaceb06e9301dec | USDZLoader: Fix Blob options (#30708)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/loaders/USDZLoader.js",
"patch": "@@ -173,7 +173,7 @@ class USDZLoader extends Loader {\n \n \t\t\t\tif ( filename.endsWith( 'png' ) ) {\n \n-\t\t\t\t\tconst blob = new Blob( [ zip[ filename ] ], { type: { type: 'image/png' } } );\n+\t\t\t\t\tconst blob = new Blob( [ zip[ filename ] ... | 2025-03-10T17:12:57 |
vuejs/vue | a11d6f37c2cededd2b3ec4c74942815bf16e34e0 | 4e0c48511d49f331fde31fc87b6ca428330f32d1 | chore: fix flow | [
{
"path": "src/core/util/next-tick.js",
"patch": "@@ -86,7 +86,7 @@ export function withMacroTask (fn: Function): Function {\n })\n }\n \n-export function nextTick (cb?: Function, ctx?: Object): ?Promise {\n+export function nextTick (cb?: Function, ctx?: Object) {\n let _resolve\n callbacks.push(() =>... | 2017-10-13T19:56:01 |
mrdoob/three.js | f760c50d0b1486690f0d7ea5244be91ea8b5d33c | 54f8b109ee8048adde6d8e54315c356206d1fad9 | Attributes: Fix `null` check. (#30694) | [
{
"path": "src/renderers/common/Attributes.js",
"patch": "@@ -39,7 +39,7 @@ class Attributes extends DataMap {\n \n \t\tconst attributeData = super.delete( attribute );\n \n-\t\tif ( attributeData !== undefined ) {\n+\t\tif ( attributeData !== null ) {\n \n \t\t\tthis.backend.destroyAttribute( attribute );\... | 2025-03-09T14:40:44 |
golang/go | 0c747b7aa757da0a0a0ac7b2b5834dca84c7c019 | 0f6397384b583a18bae90421a71b6abad39a437f | go/build/constraint: use strings.Builder instead of for { str+=str }
(This works around a bug in the stringsbuilder modernizer.)
For #76476
Change-Id: I1cb8715fd79c0363cb9c159686eaeb3482c93228
Reviewed-on: https://go-review.googlesource.com/c/go/+/724721
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
TryBot-Byp... | [
{
"path": "src/go/build/constraint/expr.go",
"patch": "@@ -515,18 +515,18 @@ func PlusBuildLines(x Expr) ([]string, error) {\n \t// Prepare the +build lines.\n \tvar lines []string\n \tfor _, or := range split {\n-\t\tline := \"// +build\"\n+\t\tvar line strings.Builder\n+\t\tline.WriteString(\"// +build\")... | 2025-11-26T22:53:04 |
denoland/deno | 5c9b552a5b921c02f862b59335242223307bbfc9 | be13de0a0677913afc4e8523ff9f76bf177e6fbe | fix(runtime): handle `options` parameter in `Deno.errors.*` constructors (#31510)
`Deno.errors.*` are just errors. However, before, a `Deno.errors.*`
constructor wouldn't use the `options` parameter in the call to the
constructor call to the parent class (`super()`). Now it does.
In other words, the following code us... | [
{
"path": "runtime/js/01_errors.js",
"patch": "@@ -5,155 +5,155 @@ const { BadResource, Interrupted, NotCapable } = core;\n const { Error } = primordials;\n \n class NotFound extends Error {\n- constructor(msg) {\n- super(msg);\n+ constructor(msg, opts) {\n+ super(msg, opts);\n this.name = \"Not... | 2026-01-09T16:48:37 |
vuejs/vue | 4e0c48511d49f331fde31fc87b6ca428330f32d1 | 6658b81a3b9e9d1d4285b4b985cddcdee930dae8 | fix: further adjust nextTick strategy
fix #6813 | [
{
"path": "src/core/util/env.js",
"patch": "@@ -1,7 +1,4 @@\n /* @flow */\n-/* globals MessageChannel */\n-\n-import { handleError } from './error'\n \n // can we use __proto__?\n export const hasProto = '__proto__' in {}\n@@ -62,88 +59,6 @@ export const hasSymbol =\n typeof Symbol !== 'undefined' && isNa... | 2017-10-13T19:37:52 |
mrdoob/three.js | 78a0f7eabd75d4cd90dd86a8201ce91e60c70b67 | 88c358bf5944d43ba3812c44abd2cd8f5cf8b4cc | PointerLockControls: Add `unadjustedMovement`option to `lock()`. (#30687)
* Add unadjustedMovement option to PointerLockControls
* Update PointerLockControls.js
Clean up.
* Update PointerLockControls.js
Fix docs.
* Update PointerLockControls.js
Improve description.
---------
Co-authored-by: Michael Herzog <mic... | [
{
"path": "examples/jsm/controls/PointerLockControls.js",
"patch": "@@ -198,10 +198,15 @@ class PointerLockControls extends Controls {\n \n \t/**\n \t * Activates the pointer lock.\n+\t * \n+\t * @param {boolean} [unadjustedMovement=false] - Disables OS-level adjustment for mouse acceleration, and accesses ... | 2025-03-09T09:17:41 |
golang/go | 0f6397384b583a18bae90421a71b6abad39a437f | 992ad55e3dcea4bd017d618d759cb9cd3529f288 | go/types: relax NewSignatureType for append(slice, str...)
CL 688815 contained a partial fix for the reported bug, but
NewSignatureType continued to panic. This change relaxes it
to permit construction of the type "func([]byte, B) []byte"
where "type B []byte". We must do so because a client
may instantiate the type "... | [
{
"path": "src/cmd/compile/internal/types2/signature.go",
"patch": "@@ -28,17 +28,28 @@ type Signature struct {\n \trecv *Var // nil if not a method\n \tparams *Tuple // (incoming) parameters from left to right; or nil\n \tresults *Tuple // (outgoing) results from left to ri... | 2025-07-21T18:35:08 |
denoland/deno | be13de0a0677913afc4e8523ff9f76bf177e6fbe | 23da05af3744773ec26cc0975b4c9ef228d2c2f0 | fix(ext/node): add tls.setDefaultCACertificates support (#31522)
Closes #31208
The `tls.setDefaultCACertificates` API was missing in `node:tls`,
causing `TypeError` in applications that rely on programmatically
overriding the global CA store (e.g., for custom root CAs or testing
environments). | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -390,6 +390,7 @@ deno_core::extension!(deno_node,\n ops::process::op_node_process_setuid,\n ops::process::op_process_abort,\n ops::tls::op_get_root_certificates,\n+ ops::tls::op_set_default_ca_certificates,\n ops::tls::op_tls_peer_certificate,\n ... | 2026-01-09T15:35:52 |
mrdoob/three.js | 88c358bf5944d43ba3812c44abd2cd8f5cf8b4cc | aec32f75f839d1a40fb662e07e250e31762dbc7b | Editor: Fix publish. (#30690) | [
{
"path": "editor/js/Sidebar.Project.App.js",
"patch": "@@ -139,6 +139,11 @@ function SidebarProjectApp( editor ) {\n \n \t\t\ttoZip[ 'js/app.js' ] = strToU8( content );\n \n+\t\t} );\n+\t\tloader.load( '../build/three.core.js', function ( content ) {\n+\n+\t\t\ttoZip[ 'js/three.core.js' ] = strToU8( conten... | 2025-03-09T08:59:41 |
denoland/deno | 23da05af3744773ec26cc0975b4c9ef228d2c2f0 | 8cd2dd38235ffb14e4c12043477e88c649721cc2 | fix(ext/fetch): support ipv6 destination host with http and socks proxy (#31683)
Alternative to #31514 with proper SOCKS support and tests. Closes
#31504. | [
{
"path": "ext/fetch/proxy.rs",
"patch": "@@ -603,12 +603,14 @@ where\n \n if is_https {\n tunnel(&mut io, &orig_dst, user_agent, auth).await?;\n+ let host = orig_dst.host().unwrap();\n+ let host = host\n+ .strip_prefix('[')\n+ ... | 2026-01-09T15:29:10 |
mrdoob/three.js | ddfa74b9e4135a19682d998fcd322bd7d4b78f2b | ce5f72a0f91d76bee9321ce5ebcfa5b75ff1675d | Docs: fix types (#30677)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/libs/motion-controllers.module.js",
"patch": "@@ -338,7 +338,7 @@ class MotionController {\n /**\n * @param {Object} xrInputSource - The XRInputSource to build the MotionController around\n * @param {Object} profile - The best matched profile description for the supplied xrIn... | 2025-03-07T21:32:33 |
golang/go | 992ad55e3dcea4bd017d618d759cb9cd3529f288 | 3fd9cb1895d37682096cde4229e45bea1428dfbe | crypto/tls: support crypto.MessageSigner private keys
Fixes #75656
Change-Id: I6bc71c80973765ef995d17b1450ea2026a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/724820
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Nicholas Husin <husin@google.com>
Reviewed-by: Roland Shoemaker <roland@... | [
{
"path": "doc/next/6-stdlib/99-minor/crypto/tls/75656.md",
"patch": "@@ -0,0 +1,2 @@\n+If [Certificate.PrivateKey] implements [crypto.MessageSigner], its SignMessage\n+method is used instead of Sign in TLS 1.2 and later.",
"additions": 2,
"deletions": 0,
"language": "Markdown"
},
{
"pat... | 2025-11-26T20:11:35 |
vuejs/vue | 08a7fb539f9d3ab5b08a3c6cec9a6628929be3be | 5665eaf985a56cfd183ce8ce93c4d813edbd2cf8 | fix: v-on="object" listeners should fire after high-priority ones
fix #6805 | [
{
"path": "src/core/instance/render-helpers/bind-object-listeners.js",
"patch": "@@ -14,7 +14,7 @@ export function bindObjectListeners (data: any, value: any): VNodeData {\n for (const key in value) {\n const existing = on[key]\n const ours = value[key]\n- on[key] = existing ? [... | 2017-10-13T13:59:23 |
denoland/deno | 8d47d7e24402c2ba1f50696e1293f8c7c056984c | 7558cafe636c14d31adc5d3de2ecae4bdc6577ae | fix(ext/node): fix use-after-free in StatementSync JS iterator (#31770)
Keep a reference of StatementSync alive to prevent GC from destroying
statement handle while iterator is being used.
Fixes https://github.com/denoland/deno/issues/31744 | [
{
"path": "ext/node/ops/sqlite/statement.rs",
"patch": "@@ -692,6 +692,7 @@ impl StatementSync {\n RETURN = \"return\",\n DONE = \"done\",\n VALUE = \"value\",\n+ __STATEMENT_REF = \"__statement_ref\",\n }\n \n self.reset()?;\n@@ -797,8 +798,19 @@ impl StatementSync {\n le... | 2026-01-08T10:29:58 |
mrdoob/three.js | ce5f72a0f91d76bee9321ce5ebcfa5b75ff1675d | 16b58119d159e78fda0ead73bf5a1939462e5003 | WebGPUTextureUtils: fix reference for BC4RSnorm (#30678)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -877,7 +877,7 @@ class WebGPUTextureUtils {\n \t\tif ( format === GPUTextureFormat.BC1RGBAUnorm || format === GPUTextureFormat.BC1RGBAUnormSRGB ) return { byteLength: 8, width: 4, height: 4 }; // DXT1\n \t\tif ( format === GPUTexture... | 2025-03-07T18:38:40 |
golang/go | 3fd9cb1895d37682096cde4229e45bea1428dfbe | 3353c100bb97954edc11c1bc07fd07db9d4bc567 | cmd/compile: fix bloop get name logic
This CL change getNameFrom impl to pattern match addressible patterns.
Change-Id: If1faa22a3a012d501e911d8468a5702b348abf16
Reviewed-on: https://go-review.googlesource.com/c/go/+/724180
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Revi... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -42,40 +42,42 @@ import (\n \t\"cmd/compile/internal/reflectdata\"\n \t\"cmd/compile/internal/typecheck\"\n \t\"cmd/compile/internal/types\"\n-\t\"fmt\"\n+\t\"cmd/internal/src\"\n )\n \n // getNameFromNode tries to iteratively peel down the n... | 2025-11-25T01:37:13 |
vuejs/vue | 5665eaf985a56cfd183ce8ce93c4d813edbd2cf8 | 60b1af9e02b93d9223d2ed1f23e0a618537a4c96 | fix: backwards compat with checkbox code generated in < 2.5
fix #6803 | [
{
"path": "src/platforms/web/compiler/directives/model.js",
"patch": "@@ -9,6 +9,7 @@ let warn\n // in some cases, the event used has to be determined at runtime\n // so we used some reserved tokens during compile.\n export const RANGE_TOKEN = '__r'\n+export const CHECKBOX_RADIO_TOKEN = '__c'\n \n export de... | 2017-10-13T13:41:52 |
denoland/deno | 7558cafe636c14d31adc5d3de2ecae4bdc6577ae | 6dea9ab9dcde9742374defb182a6ff664a963a0f | fix: update config schema for read permission to include ignore property (#31785) | [
{
"path": "cli/schemas/config-file.v1.json",
"patch": "@@ -66,7 +66,7 @@\n \"type\": \"boolean\",\n \"description\": \"Allow all permissions for the program to run unrestricted.\"\n },\n- \"read\": { \"$ref\": \"#/$defs/allowDenyPermissionConfigValue\" },\n+ \"read\... | 2026-01-07T23:02:10 |
mrdoob/three.js | 16b58119d159e78fda0ead73bf5a1939462e5003 | b91fd11291c48f82160b2b15b7731a07236d6f25 | OculusHandModel: fix reference to path attribute (#30679)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/webxr/OculusHandModel.js",
"patch": "@@ -15,6 +15,7 @@ class OculusHandModel extends Object3D {\n \t\tthis.envMap = null;\n \t\tthis.loader = loader;\n \t\tthis.onLoad = onLoad;\n+\t\tthis.path = null;\n \n \t\tthis.mesh = null;\n ",
"additions": 1,
"deletions": 0,
"langu... | 2025-03-07T18:37:54 |
golang/go | 3353c100bb97954edc11c1bc07fd07db9d4bc567 | 301d9f9b52b9b5dbc57151f680a64d1bf85e6d43 | cmd/go: remove experiment checks for compile -c
There's a comment that we should test that compile -c is compatible with
the fieldtrack and preemptibleloops experiments and then remove the
check disabling -c when those experiments are enabled.
I tested this and the tests pass with fieldtrack (with the exception of on... | [
{
"path": "src/cmd/go/internal/work/build.go",
"patch": "@@ -238,8 +238,6 @@ See also: go install, go get, go clean.\n \t`,\n }\n \n-const concurrentGCBackendCompilationEnabledByDefault = true\n-\n func init() {\n \t// break init cycle\n \tCmdBuild.Run = runBuild",
"additions": 0,
"deletions": 2,
... | 2025-11-26T15:30:34 |
vuejs/vue | 60b1af9e02b93d9223d2ed1f23e0a618537a4c96 | 15031b85427df5409f0bc4c10589cc6259f8a5b2 | fix(transition-group): work around rollup tree shaking (#6796)
fix #6792 | [
{
"path": "src/platforms/web/runtime/components/transition-group.js",
"patch": "@@ -101,8 +101,9 @@ export default {\n children.forEach(applyTranslation)\n \n // force reflow to put everything in position\n- const body: any = document.body\n- const f: number = body.offsetHeight // eslint-disab... | 2017-10-13T13:05:53 |
denoland/deno | 6dea9ab9dcde9742374defb182a6ff664a963a0f | 39d71bef19e7d29d071d272d483c4e3e6c4ca10c | fix(task): preserve signal-based exit codes for child processes (#31789) | [
{
"path": "Cargo.lock",
"patch": "@@ -2918,17 +2918,16 @@ dependencies = [\n \n [[package]]\n name = \"deno_task_shell\"\n-version = \"0.26.0\"\n+version = \"0.26.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8ec9c589f733da0f5dfdf475d44cd01e2087425839a55162538d9898e... | 2026-01-07T21:35:06 |
mrdoob/three.js | b91fd11291c48f82160b2b15b7731a07236d6f25 | 66ecaab3f35c8031b77d48315304effcc0049206 | BufferGeometry: fix clone index data copy (#30680)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "src/core/BufferGeometry.js",
"patch": "@@ -1352,7 +1352,7 @@ class BufferGeometry extends EventDispatcher {\n \n \t\tif ( index !== null ) {\n \n-\t\t\tthis.setIndex( index.clone( data ) );\n+\t\t\tthis.setIndex( index.clone() );\n \n \t\t}\n ",
"additions": 1,
"deletions": 1,
"langua... | 2025-03-07T18:37:23 |
golang/go | 86bbea0cfa72041fb4315eb22099b0bc83caa314 | e2cae9ecdf944a1cc5d8803ff8932180858b8ce6 | crypto/fips140: add WithoutEnforcement
WithoutEnforcement lets programs running under GODEBUG=fips140=only
selectively opt out of strict enforcement. This is especially helpful
for non-critical uses of cryptography routines like SHA-1 for content
addressable storage backends (E.g. git).
Fixes #74630
Change-Id: Iabba... | [
{
"path": "api/next/74630.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg crypto/fips140, func Enforced() bool #74630\n+pkg crypto/fips140, func WithoutEnforcement(func()) #74630",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/crypto/fips140/7463... | 2025-11-24T13:08:10 |
vuejs/vue | 15031b85427df5409f0bc4c10589cc6259f8a5b2 | 8645e5f04aff8b0eacd617bbcf2395615c25d68b | fix(v-model): allow arbitrary naems for type binding (#6802)
Fix #6800 | [
{
"path": "src/platforms/web/compiler/modules/model.js",
"patch": "@@ -36,7 +36,7 @@ function preTransformNode (el: ASTElement, options: CompilerOptions) {\n addRawAttr(branch0, 'type', 'checkbox')\n processElement(branch0, options)\n branch0.processed = true // prevent it from double-proc... | 2017-10-13T12:55:02 |
mrdoob/three.js | 2e7fadcf7c6286731c688781441d391117c8d3ff | 537d3965a9cbc9163892d24c699a79768866885e | WebGLRenderer: Fixed readRenderTargetPixelsAsync checking readability against incorrect render target (#30672)
* WebGLRenderer: Fixed readRenderTargetPixelsAsync checking readability against incorrect render target
readRenderTargetPixelsAsync was checking if the render target was readable before binding the render ta... | [
{
"path": "examples/webgl_interactive_cubes_gpu.html",
"patch": "@@ -254,6 +254,9 @@\n \t\t\t\trenderer.setClearColor( clearColor );\n \t\t\t\trenderer.render( pickingScene, camera );\n \n+\t\t\t\t// Restore active render target to canvas\n+\t\t\t\trenderer.setRenderTarget( null );\n+\n \t\t\t\t// clear the... | 2025-03-07T09:00:20 |
denoland/deno | 39d71bef19e7d29d071d272d483c4e3e6c4ca10c | 162e9e483f2fe4e26ff3ab7ec8cb6ac0c773a061 | fix(npm): deduplication pass for initially partially resolved graphs (#31787)
* https://github.com/denoland/deno_npm/pull/130 | [
{
"path": "Cargo.lock",
"patch": "@@ -2530,9 +2530,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.42.2\"\n+version = \"0.42.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7daa908c280b25d68ea59765144df488714716cc14a2dcafaa1ec3906d4abbbe\"... | 2026-01-07T21:29:21 |
vuejs/vue | 5a15a8d2089bb833b892123c31a2ca04a511c4c8 | 1f84dd1c2488d12ef144d4b548b0e80647f9403c | fix(ssr): add semicolon before self-removal script (#6794) | [
{
"path": "src/server/template-renderer/index.js",
"patch": "@@ -192,7 +192,7 @@ export default class TemplateRenderer {\n windowKey = '__INITIAL_STATE__'\n } = options || {}\n const autoRemove = process.env.NODE_ENV === 'production'\n- ? '(function(){var s;(s=document.currentScript||docu... | 2017-10-13T12:52:34 |
golang/go | e2cae9ecdf944a1cc5d8803ff8932180858b8ce6 | 623ef2813579c9b52ba4a0335722df4d93566b74 | crypto/x509: add ExtKeyUsage.OID method
And OIDFromASN1OID for converting between asn1.ObjectIdentifier and OID.
Fixes #75325
Change-Id: I3b84dce54346d88aab731ffe30d0fef07b014f04
Reviewed-on: https://go-review.googlesource.com/c/go/+/724761
Reviewed-by: Neal Patel <nealpatel@google.com>
Auto-Submit: Roland Shoemaker... | [
{
"path": "api/next/75325.txt",
"patch": "@@ -0,0 +1,2 @@\n+pkg crypto/x509, func OIDFromASN1OID(asn1.ObjectIdentifier) (OID, error) #75325\n+pkg crypto/x509, method (ExtKeyUsage) OID() OID #75325",
"additions": 2,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/... | 2025-11-26T17:21:13 |
mrdoob/three.js | 537d3965a9cbc9163892d24c699a79768866885e | 4e441e8f7622fc0162b3b2a97ce38985ec25a997 | GLTFLoader: fix bad reference to PATH_PROPERTIES (#30669)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -2295,7 +2295,7 @@ function addUnknownExtensionsToUserData( knownExtensions, object, objectDef ) {\n }\n \n /**\n- * @param {Object3D|Material|BufferGeometry} object\n+ * @param {Object3D|Material|BufferGeometry|Object} object\n * @param {GLTF.de... | 2025-03-06T22:43:44 |
denoland/deno | 162e9e483f2fe4e26ff3ab7ec8cb6ac0c773a061 | 014ba7950152d64c151064f5533e75c1a182622c | fix(webgpu): correctly expose `GPUCompilationInfo` & `GPUCompilationMessage` (#31780)
Closes #28649 | [
{
"path": "cli/tsc/dts/lib.deno_webgpu.d.ts",
"patch": "@@ -747,15 +747,17 @@ interface GPUPipelineLayoutDescriptor extends GPUObjectDescriptorBase {\n type GPUCompilationMessageType = \"error\" | \"warning\" | \"info\";\n \n /** @category GPU */\n-interface GPUCompilationMessage {\n+declare class GPUCompil... | 2026-01-07T20:54:00 |
vuejs/vue | 1f84dd1c2488d12ef144d4b548b0e80647f9403c | f38d44e23bc9f3eda950a9436205f42be006abfc | fix: fix empty array edge case in normalizeChildren
fix #6790 | [
{
"path": "src/core/vdom/helpers/normalize-children.js",
"patch": "@@ -49,14 +49,16 @@ function normalizeArrayChildren (children: any, nestedIndex?: string): Array<VNo\n lastIndex = res.length - 1\n last = res[lastIndex]\n // nested\n- if (Array.isArray(c) && c.length > 0) {\n- c = norm... | 2017-10-13T05:09:25 |
mrdoob/three.js | 4e441e8f7622fc0162b3b2a97ce38985ec25a997 | 0040bd2bad650d4d28c7c7316202f7cdd91464aa | LDrawLoader: wrong call to parseModel (#30670)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/loaders/LDrawLoader.js",
"patch": "@@ -1839,7 +1839,7 @@ class LDrawLoader extends Loader {\n \t\t\tthis.setMaterials( [] );\n \n \t\t\tthis.partsCache\n-\t\t\t\t.parseModel( text, this.materialLibrary )\n+\t\t\t\t.parseModel( text )\n \t\t\t\t.then( group => {\n \n \t\t\t\t\tthis.ap... | 2025-03-06T22:40:56 |
golang/go | efe9ad501d94743d87e500a7ba0b1732a89e9afd | ac3369242d3a6d6219fdf1d592effc5e51ddfeb8 | go/types, types2: improve printing of []*operand lists (debugging support)
Special-case an sprintf argument of []*operand type, similar to what
we do for other lists. As a result a list of operands is printed as
[a, b, c] rather than [a b c] (default formatting for slices).
(We could factor out this code into a gener... | [
{
"path": "src/cmd/compile/internal/types2/format.go",
"patch": "@@ -23,6 +23,17 @@ func sprintf(qf Qualifier, tpSubscripts bool, format string, args ...any) string\n \t\t\tpanic(\"got operand instead of *operand\")\n \t\tcase *operand:\n \t\t\targ = operandString(a, qf)\n+\t\tcase []*operand:\n+\t\t\tvar b... | 2025-11-26T00:26:25 |
denoland/deno | 014ba7950152d64c151064f5533e75c1a182622c | dfb4e701bbe7e313c756628553c692f214cff41e | fix(cli/test): close Node HTTP connections before sanitizer check (#31782)
Closes https://github.com/denoland/deno/issues/31777
Fixes false positive "leaking resources" errors when running tests that
use Node.js HTTP/HTTPS client with connection pooling.
- Add `closeIdleConnections()` to close HTTP Agent pooled conn... | [
{
"path": "cli/tools/test/mod.rs",
"patch": "@@ -1126,6 +1126,14 @@ async fn run_tests_for_worker_inner(\n continue;\n }\n \n+ // Close idle Node.js HTTP Agent connections to prevent cross-test\n+ // pollution and false positive resource leak detection from pooled\n+ // keepAlive connecti... | 2026-01-07T20:45:11 |
mrdoob/three.js | d95b2e2ada9ab039520a569cd136444881652b21 | eca7998460a0af1d4c64a05efd1d004f11ba5317 | AMFLoader: fix materialId reference (#30668)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/loaders/AMFLoader.js",
"patch": "@@ -236,7 +236,7 @@ class AMFLoader extends Loader {\n \n \t\tfunction loadMeshVolume( node ) {\n \n-\t\t\tconst volume = { name: '', triangles: [], materialid: null };\n+\t\t\tconst volume = { name: '', triangles: [], materialId: null };\n \n \t\t\tl... | 2025-03-06T22:34:43 |
vuejs/vue | e38d0067521eee85febedc5f3ed3c24b5454c3a9 | b7105ae8c9093e36ec89a470caa3b78bda3ef467 | feat: improve template expression error message
close #6771 | [
{
"path": "src/compiler/error-detector.js",
"patch": "@@ -89,10 +89,14 @@ function checkExpression (exp: string, text: string, errors: Array<string>) {\n if (keywordMatch) {\n errors.push(\n `avoid using JavaScript keyword as property name: ` +\n- `\"${keywordMatch[0]}\" in expressi... | 2017-10-12T15:15:23 |
golang/go | fb5156a0981c2b89a118695138194e1af162ac8e | b194f5d24a71e34f147c90e4351d80ac75be55de | testing: fix bloop doc
This CL deletes the compiler detail part from bloop documentation.
Change-Id: I73933707a593d4958e2300416d15e7213f001c3a
Reviewed-on: https://go-review.googlesource.com/c/go/+/724800
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chas... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -483,14 +483,12 @@ func (b *B) loopSlowPath() bool {\n // the timer so cleanup code is not measured.\n //\n // Within the body of a \"for b.Loop() { ... }\" loop, arguments to and\n-// results from function calls and assignment receivers within the loop are... | 2025-11-26T19:15:51 |
denoland/deno | dfb4e701bbe7e313c756628553c692f214cff41e | df6daeeaa9528fbd619ec162c7e3081551e596f0 | fix(tsgo): nil deref for exported symbols (#31786) | [
{
"path": "cli/tsc/go/tsgo_version.rs",
"patch": "@@ -23,15 +23,15 @@ impl Hashes {\n }\n }\n \n-pub const VERSION: &str = \"0.1.13\";\n+pub const VERSION: &str = \"0.1.14\";\n pub const DOWNLOAD_BASE_URL: &str =\n- \"https://github.com/denoland/typescript-go/releases/download/v0.1.13\";\n+ \"https://gi... | 2026-01-07T19:50:23 |
mrdoob/three.js | 222a903ee0361b3331274d8fa73a6386d58e8864 | b948e1f23b4ee59fd270ce7987d1d7fb9899fca6 | Types: fix errors (#30665)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/csm/CSMFrustum.js",
"patch": "@@ -10,7 +10,7 @@ class CSMFrustum {\n \t/**\n \t * Constructs a new CSM frustum.\n \t *\n-\t * @param {CSMFrustum~Data} data - The CSM data.\n+\t * @param {CSMFrustum~Data} [data] - The CSM data.\n \t */\n \tconstructor( data ) {\n ",
"additions": 1... | 2025-03-06T22:33:14 |
vuejs/vue | ea3a70b2d59b9d4ecae2bd2438f89dc16e1e1394 | bb1d888d44ddc39f06de5232883c8e3766a47be0 | chore: fix sponsor link typo | [
{
"path": "README.md",
"patch": "@@ -141,7 +141,7 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n <h4 align=\"center\">Gold</h4>\n \n <a href=\"https://opencollective.com/vuejs/goldsponsor/0/website\" target=\"_blank\"><img src=\"https://opencollective.com/vuejs/goldspon... | 2017-10-11T17:16:02 |
golang/go | 437d2362ce8ad3e10631aaf90cb4d8c8126d1bac | 71f8f031b27502e057c569fef8cd4f2cb9187504 | os,internal/poll: don't call IsNonblock for consoles and Stdin
windows.IsNonblock can block for synchronous handles that have an
outstanding I/O operation. Console handles are always synchronous, so
we should not call IsNonblock for them. Stdin is often a pipe, and
almost always a synchronous handle, so we should not ... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -451,6 +451,10 @@ func (fd *FD) Init(net string, pollable bool) error {\n \tfd.isFile = fd.kind != kindNet\n \tfd.isBlocking = !pollable\n \n+\tif !pollable {\n+\t\treturn nil\n+\t}\n+\n \t// It is safe to add overlapped handles that also perform I/O... | 2025-11-26T09:25:16 |
denoland/deno | cfceaa82d069dd152de3b2e46fc4a9c4b9e9c10e | ad4d0649b66c3871199890192e9b85499c657662 | fix: queue dynamic imports for modules with pending TLA (#31670)
When a module with Top-Level Await (TLA) is dynamically imported
multiple times before the TLA resolves, subsequent imports would fail
with "Cannot access 'default' before initialization".
This happened because V8 sets module status to `Evaluated` immed... | [
{
"path": "Cargo.lock",
"patch": "@@ -1883,9 +1883,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.376.0\"\n+version = \"0.377.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"829ee94e76838e99951cc7b3ccd31f68a220687f52229c0d6e135ff29b22f6d... | 2026-01-07T15:16:30 |
mrdoob/three.js | b948e1f23b4ee59fd270ce7987d1d7fb9899fca6 | fe2a12c88c7f9a6ddff378d3c9c0b1243cb6467b | Docs: fix some typos (#30664)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/animation/AnimationClipCreator.js",
"patch": "@@ -15,7 +15,7 @@ import {\n class AnimationClipCreator {\n \n \t/**\n-\t * Creates an animation clip that rotates a 3D object 360 degress\n+\t * Creates an animation clip that rotates a 3D object 360 degrees\n \t * in the given period of... | 2025-03-06T16:43:55 |
vuejs/vue | 53431c63a9033bb9a73c915bca8525f0d7988c26 | 421658884f7ca786747abf9b89e00925fdfdfba8 | types: fix flow typing | [
{
"path": "src/core/vdom/vnode.js",
"patch": "@@ -46,7 +46,7 @@ export default class VNode {\n this.ns = undefined\n this.context = context\n this.functionalContext = undefined\n- this.functioanlOptions = undefined\n+ this.functionalOptions = undefined\n this.functionalScopeId = undefi... | 2017-10-11T15:24:39 |
golang/go | eb63ef9d6676dc0edb112cd297820306a327017a | 06412288cfd31ab365fe8ee6368742dffa759803 | runtime: panic if cleanup function closes over cleanup pointer
This would catch problems like https://go.dev/cl/696295.
Benchmark effect with this CL plus CL 697535:
goos: linux
goarch: amd64
pkg: runtime
cpu: 12th Gen Intel(R) Core(TM) i7-1260P
│ /tmp/foo.1 │ /tmp/foo.2 ... | [
{
"path": "src/runtime/mcleanup.go",
"patch": "@@ -71,7 +71,14 @@ import (\n // mentions it. To ensure a cleanup does not get called prematurely,\n // pass the object to the [KeepAlive] function after the last point\n // where the object must remain reachable.\n+//\n+//go:nocheckptr\n func AddCleanup[T, S a... | 2025-08-22T20:47:42 |
denoland/deno | ad4d0649b66c3871199890192e9b85499c657662 | 5a5d63915cf8e78cd9abb757c849597010328931 | chore: Enable windows-sys features in specific members (#31679)
This change enables additional `windows-sys` features (beyond those
declared in the workspace Cargo.toml) needed by each member.
Fixes #31678 | [
{
"path": "ext/node/Cargo.toml",
"patch": "@@ -108,6 +108,6 @@ errno = \"0.3.10\"\n nix = { workspace = true, features = [\"user\"] }\n \n [target.'cfg(windows)'.dependencies]\n-windows-sys.workspace = true\n+windows-sys = { workspace = true, features = [\"Win32_Networking_WinSock\"] }\n winapi = { workspac... | 2026-01-07T15:13:58 |
mrdoob/three.js | fe2a12c88c7f9a6ddff378d3c9c0b1243cb6467b | 4ab13b4acfc5c14ffdb69ec7aff316481fe1474e | Update Capsule.js
Fix typo. | [
{
"path": "examples/jsm/math/Capsule.js",
"patch": "@@ -61,7 +61,7 @@ class Capsule {\n \t * @param {Vector3} start - The start vector.\n \t * @param {Vector3} end - The end vector\n \t * @param {number} radius - The capsule's radius.\n-\t * @return {Box2} A reference to this bounding box.\n+\t * @return {C... | 2025-03-06T13:28:38 |
vuejs/vue | 421658884f7ca786747abf9b89e00925fdfdfba8 | 050bb33f9b02589357c037623ea8cbf8ff13555b | fix: fix scoped CSS for nested nodes in functional components | [
{
"path": "src/core/vdom/create-functional-component.js",
"patch": "@@ -51,7 +51,8 @@ function FunctionalRenderContext (\n this._c = (a, b, c, d) => {\n const vnode: ?VNode = createElement(contextVm, a, b, c, d, needNormalization)\n if (vnode) {\n- vnode.fnScopeId = options._scopeId\n... | 2017-10-11T15:17:46 |
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.