repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
ab5956909952aa625ab8d51086beca299477e7b0
c4bb9653ba28cba4bcd3a3cbb64285c495a03ba2
go/version: use "custom" as an example of a version suffix The suffix in a non-standard toolchain version can be any string. Show more of a middle ground example of a non-standard version suffix, aligning it with the example used at https://go.dev/doc/toolchain#name. For #75953. Change-Id: I98f9c4de98316aecf76c017eb...
[ { "path": "src/go/version/version.go", "patch": "@@ -4,7 +4,7 @@\n \n // Package version provides operations on [Go versions]\n // in [Go toolchain name syntax]: strings like\n-// \"go1.20\", \"go1.21.0\", \"go1.22rc2\", and \"go1.23.4-bigcorp\".\n+// \"go1.20\", \"go1.21.0\", \"go1.22rc2\", and \"go1.23.4-...
2025-11-14T20:40:43
vuejs/vue
086e6d98f4217542afcc2794717119c62dde89b8
dc1bca1361807596f73340e54d76d16568b3224f
fix: handle arrays in v-on object syntax
[ { "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-07-13T05:41:01
denoland/deno
746f60d2a4eda1b825d7d459de192ee416dbc015
6b78b55a9aad141b397768b5f8dc8b454a962189
fix(tsgo): do not error out on non js/ts imports from npm packages (#31478) Fixes #31423 This already worked for non npm files because the loading for non-npm files uses the module graph, and things like CSS don't appear in the module graph. That meant we weren't prompting tsc to create a source file and parse those...
[ { "path": "cli/tsc/go.rs", "patch": "@@ -662,6 +662,33 @@ fn load_inner(\n let is_cjs = result.is_cjs;\n let media_type = result.media_type;\n \n+ match media_type {\n+ MediaType::JavaScript\n+ | MediaType::Jsx\n+ | MediaType::Mjs\n+ | MediaType::Cjs\n+ | MediaType::TypeScript\n+ | Me...
2025-12-02T22:06:15
mrdoob/three.js
73eddcbc3e5595602144be6f375293496365a87c
ac467cfa71757749682af68000bf7013e619d1a1
WebGPURenderer: Introduced `.toConst()`, `Const()`, `Var()` (#30251) * WebGPURenderer: Introduced variable.toLet() * change API to toConst() * const/let both backends? * const/let handle both backends * cleanup code * more cleanup * cleanup * add NodeBuilder.isDeterministic() and updates * readonly suffix * i...
[ { "path": "src/Three.TSL.js", "patch": "@@ -114,6 +114,7 @@ export const colorSpaceToWorking = TSL.colorSpaceToWorking;\n export const colorToDirection = TSL.colorToDirection;\n export const compute = TSL.compute;\n export const cond = TSL.cond;\n+export const Const = TSL.Const;\n export const context = TSL...
2025-01-08T01:24:02
vuejs/vue
91deb4fd910afd51137820f120d4c26d0a99e629
6bf97721f1e38713353d5ac9906c88dca2cdad9b
fix: multiple merged vnode hooks not invoked properly fix #6076
[ { "path": "src/core/vdom/helpers/update-listeners.js", "patch": "@@ -27,8 +27,9 @@ export function createFnInvoker (fns: Function | Array<Function>): Function {\n function invoker () {\n const fns = invoker.fns\n if (Array.isArray(fns)) {\n- for (let i = 0; i < fns.length; i++) {\n- fn...
2017-07-12T09:56:04
denoland/deno
57be16042c7ba21efa0c37f887f1f4b0923d0db2
0d662fee33071c797f9aa8ef9a095d75cb5733cb
chore: speed up macos compile tests (#31477) Most of the tests for deno compile take >= 20 seconds (each) on macos. This is mostly due to sha2 and libsui taking a long time to process the debug binary. This speeds them up to <1 sec each, which saves multiple minutes when running all the tests
[ { "path": "Cargo.toml", "patch": "@@ -427,6 +427,13 @@ opt-level = 3\n [profile.dev.package.v8]\n opt-level = 1\n \n+# speeds up deno compile tests a lot\n+[profile.dev.package.libsui]\n+opt-level = 3\n+\n+[profile.dev.package.sha2]\n+opt-level = 3\n+\n [profile.release.package.async-compression]\n opt-leve...
2025-12-02T21:35:36
mrdoob/three.js
be84ecf5f9b5636d625f2990bd7e5ce5a93f809e
b7e371075e1b5eaaa7e0893d11749c87d8581a79
Nodes: Fix recursion with environment nodes. (#30277) * NormalMapNode: Fix recursion with environment nodes. * move getUV context to setupNormal. * Revert "NormalMapNode: Fix recursion with environment nodes." This reverts commit c2a293dcdccc8d63b2d840b1ff0e3269b00435ad. --------- Co-authored-by: sunag <sunagbras...
[ { "path": "src/nodes/accessors/MaterialNode.js", "patch": "@@ -540,7 +540,7 @@ export const materialMetalness = /*@__PURE__*/ nodeImmutable( MaterialNode, Mate\n *\n * @type {Node<vec3>}\n */\n-export const materialNormal = /*@__PURE__*/ nodeImmutable( MaterialNode, MaterialNode.NORMAL ).context( { getUV...
2025-01-07T18:04:29
golang/go
4fef9f8b5596d42a2997fd8b74185d53fb7d0e43
33529db142dab098d4687f99e27e6284c31fa039
go/types, types2: fix object path for grouped declaration statements CL 715840 deferred popping from the object path during handling of grouped declaration statements, which leaves extra objects on the path since this executes in a loop. Surprisingly, no test exercised this. This change fixes this small bug and adds ...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -876,8 +876,8 @@ func (check *Checker) declStmt(list []syntax.Decl) {\n \t\t\tscopePos := s.Name.Pos()\n \t\t\tcheck.declare(check.scope, s.Name, obj, scopePos)\n \t\t\tcheck.push(obj) // mark as grey\n-\t\t\tdefer check.pop()\n \t\t\tcheck.t...
2025-11-19T20:10:24
vuejs/vue
606666d5a9008ab72f7cce9803b26310c636eef8
1f9e924971d7894517075f7f0efeeb85994a7ba0
test: fix Object.prototype.watch related warnings
[ { "path": "src/core/instance/state.js", "patch": "@@ -20,6 +20,7 @@ import {\n hasOwn,\n isReserved,\n handleError,\n+ nativeWatch,\n validateProp,\n isPlainObject,\n isReservedAttribute\n@@ -53,7 +54,9 @@ export function initState (vm: Component) {\n observe(vm._data = {}, true /* asRootDa...
2017-07-12T07:50:09
mrdoob/three.js
3212be4f20c5e04ca3987e49ea0c8f6d641874a7
eb84f920edabd47fd9612b63fd586fcc2c579031
WebGPUAttributeUtils: Fix i16a/u16a patch (#30264) * fix * Update WebGPUAttributeUtils.js Add comment. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/renderers/webgpu/utils/WebGPUAttributeUtils.js", "patch": "@@ -69,16 +69,27 @@ class WebGPUAttributeUtils {\n \t\t\tlet array = bufferAttribute.array;\n \n \t\t\t// patch for INT16 and UINT16\n-\t\t\tif ( attribute.normalized === false && ( array.constructor === Int16Array || array.constructo...
2025-01-07T14:58:07
denoland/deno
0d662fee33071c797f9aa8ef9a095d75cb5733cb
cafd7f6c7f646b18f51bf3bc3156efa3d2000d48
fix(test): Remove ANSI Escape Codes for Junit Reports (#30854) * Add an option to the report printer to not use ansi codes. * Made this default fore the junit file output. * Implemented removal of codes in the formatter. It would be preferable for performance to not include them in the first place but that change is ...
[ { "path": "cli/tools/test/fmt.rs", "patch": "@@ -3,6 +3,7 @@\n use std::borrow::Cow;\n use std::ops::AddAssign;\n \n+use console_static_text::ansi::strip_ansi_codes;\n use deno_core::stats::RuntimeActivity;\n use deno_core::stats::RuntimeActivityDiff;\n use deno_core::stats::RuntimeActivityTrace;\n@@ -88,10...
2025-12-02T17:11:44
golang/go
dc42565a202694731945421c1fd58815f12423b5
e64023dcbf40af59a637a982cba58ee8272d61c4
cmd/compile: fix control flow for unsigned divisions proof relations The continue used to make sense since I first wrote this patch with a loop, for testing the commutativity of the add. This was refactored to just try both but I forgot to fix the continue. Change-Id: I91466a052d5d8ee7193084a71faf69bd27e36d2a Review...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2503,15 +2503,13 @@ func addLocalFacts(ft *factsTable, b *Block) {\n \t\t\t\txl := ft.limits[x.ID]\n \t\t\t\ty := add.Args[1]\n \t\t\t\tyl := ft.limits[y.ID]\n-\t\t\t\tif unsignedAddOverflows(xl.umax, yl.umax, add.Type) {\n-\t\t\t\t\tcontinue\...
2025-11-18T00:26:01
mrdoob/three.js
4b2119b8fd0a2d300c280b4708bc64d35d53cb60
549ee80b999164f28560561a20edd806b0b085ea
InteractiveGroup: Add `disconnect()`. (#29975) * fix: add ability to disconnect event listeners in InteractiveGroup so it can be removed from the scene * Update InteractiveGroup.js Refactor code. * Update InteractiveGroup.js Clean up. --------- Co-authored-by: Michael Herzog <michael.herzog@human-int...
[ { "path": "examples/jsm/interactive/InteractiveGroup.js", "patch": "@@ -7,97 +7,154 @@ import {\n const _pointer = new Vector2();\n const _event = { type: '', data: _pointer };\n \n+// TODO: Dispatch pointerevents too\n+\n+/**\n+ * The XR events that are mapped to \"standard\" pointer events\n+ */\n+const _...
2025-01-06T08:54:34
vuejs/vue
0a9aab510bcca85c78ef06487b5dcf25d76d780d
fed602b90be89a43b4ec41b5a2e0a526d3a5f4a2
fix(v-model): fix input change check for type="number" The change should only apply to the .number modifier, not type="number". fix #6069
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -158,7 +158,7 @@ function genDefaultModel (\n \n addProp(el, 'value', `(${value})`)\n addHandler(el, event, code, null, true)\n- if (trim || number || type === 'number') {\n+ if (trim || number) {\n addHandler(el, 'blur', '$f...
2017-07-11T05:04:55
golang/go
489d3dafb791df8297f71ecf4e2c3c84ea11f6f2
8c41a482f9b7a101404cd0b417ac45abd441e598
math: switch s390x math.Pow to generic implementation The s390x assembly implementation of math.Pow incorrectly handles certain subnormal cases. This change switches the function to use the generic implementation instead. Updates #76247 Cq-Include-Trybots: luci.golang.try:gotip-linux-s390x Change-Id: I794339080d5a7a...
[ { "path": "src/math/arith_s390x.go", "patch": "@@ -129,7 +129,7 @@ func archExpm1(x float64) float64\n func expm1TrampolineSetup(x float64) float64\n func expm1Asm(x float64) float64\n \n-const haveArchPow = true\n+const haveArchPow = false\n \n func archPow(x, y float64) float64\n func powTrampolineSetup(x...
2025-11-14T13:21:37
mrdoob/three.js
549ee80b999164f28560561a20edd806b0b085ea
d42aea062b0d2488908fb9cdfa66190202983235
CCDIKSolver: fix algo broken ref (#30266)
[ { "path": "docs/examples/en/animations/CCDIKSolver.html", "patch": "@@ -9,7 +9,7 @@\n \t<body>\n \t\t<h1>[name]</h1>\n \n-\t\t<p class=\"desc\"> A solver for IK with <a href=\"https://sites.google.com/site/auraliusproject/ccd-algorithm\">`CCD Algorithm`</a>. <br /><br />\n+\t\t<p class=\"desc\"> A solver fo...
2025-01-05T22:46:30
vuejs/vue
4d680794a5a345078827a3fee3db8658bd35ec3a
a1d1145c9123f7175f3ac20b503cfa507ad455f4
fix(parser): the first newline following pre and textarea tag should be ignored (#6022) fix #6022
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -59,6 +59,10 @@ const decodingMap = {\n const encodedAttr = /&(?:lt|gt|quot|amp);/g\n const encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#10);/g\n \n+// #5992\n+const isIgnoreNewlineTag = makeMap('pre,textarea', true)\n+const shouldIgnoreFirstNew...
2017-07-10T13:42:00
golang/go
e912618bd2de2121d6c9fed3473b5e0a47da138c
2cf9d4b62f167cbef01469d625dabefdd783c0e8
runtime: add hexdumper Currently, we have a simple hexdumpWords facility for debugging. It's useful but pretty limited. This CL adds a much more configurable and capable "hexdumper". It can be configured for any word size (including bytes), handles unaligned data, includes an ASCII dump, and accepts data in multiple ...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -2029,3 +2029,36 @@ func (head *ListHeadManual) Pop() unsafe.Pointer {\n func (head *ListHeadManual) Remove(p unsafe.Pointer) {\n \thead.l.remove(p)\n }\n+\n+func Hexdumper(base uintptr, wordBytes int, mark func(addr uintptr, start func()), data ...[]byte...
2025-06-10T23:19:08
mrdoob/three.js
37785816188736ce4df3a8deef9d6078c0ffbda5
575cc3a89bdfeb18446c2af16620bc9456437151
Fix glossy material for Teapot example (#30253) * Fix glossy material The glossy material for the teapot (I made this example) looks smooth, due to changes in the defaults for the MeshPhongMaterial. Changed lighting and colors & shininess power for glossy so that it looks glossy again. * update screenshot
[ { "path": "examples/webgl_geometry_teapot.html", "patch": "@@ -63,9 +63,9 @@\n \t\t\t\tcamera.position.set( - 600, 550, 1300 );\n \n \t\t\t\t// LIGHTS\n-\t\t\t\tambientLight = new THREE.AmbientLight( 0x7c7c7c, 3.0 );\n+\t\t\t\tambientLight = new THREE.AmbientLight( 0x7c7c7c, 2.0 );\n \n-\t\t\t\tlight = new ...
2025-01-03T10:33:24
denoland/deno
95e434eb37eccd7a008e230e3f68049ca8eb5db8
55621d9ef0d7e9f581c6b2cfe74067a13c872b3f
fix(ext/node): respect abort signal option on `FileHandle.readFile` (#31462) Towards #29972 Allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-promises-file-handle-readFile.js test to pass.
[ { "path": "ext/node/polyfills/_fs/_fs_readFile.ts", "patch": "@@ -10,16 +10,37 @@ import {\n TextOptionsArgument,\n } from \"ext:deno_node/_fs/_fs_common.ts\";\n import { Buffer } from \"node:buffer\";\n-import { readAll, readAllSync } from \"ext:deno_io/12_io.js\";\n+import { readAllSync } from \"ext:den...
2025-12-02T01:13:11
mrdoob/three.js
575cc3a89bdfeb18446c2af16620bc9456437151
00fa06f2d8c87d244f6045cd7dcad5ee89ee88bc
docs: Offscreen Canvas fix touch pick and 2 fingers interactions (#29983) * docs: Offscreen Canvas fix touch pick and 2 fingers interactions * Update offscreencanvas-w-orbitcontrols.html --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "manual/en/offscreencanvas.html", "patch": "@@ -815,6 +815,7 @@ <h1>OffscreenCanvas</h1>\n 'pointerType',\n 'clientX',\n 'clientY',\n+ 'pointerId',\n 'pageX',\n 'pageY',\n ]);\n@@ -853,13 +854,19 @@ <h1>OffscreenCanvas</h1>\n }\n \n function touchEventHandler(event, sendFn) {\n+ // pre...
2025-01-02T22:51:29
golang/go
4d0658bb0871806a8c5551063d1ef1d205916ceb
ba634ca5c7f19105c853db5752cc0f6d3ca76e45
cmd/compile: prefer fixed registers for values For this code: func f() (int, int) { return 0, 0 } We currently generate on arm64: MOVD ZR, R0 MOVD R0, R1 This CL changes that to MOVD ZR, R0 MOVD ZR, R1 Probably not a big performance difference, but it makes the generated code clearer. A followup-is...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -596,17 +596,18 @@ func (s *regAllocState) allocValToReg(v *Value, mask regMask, nospill bool, pos\n \tvar c *Value\n \tif vi.regs != 0 {\n \t\t// Copy from a register that v is already in.\n-\t\tr2 := pickReg(vi.regs)\n \t\tvar current *Val...
2025-11-17T23:33:01
vuejs/vue
a1d1145c9123f7175f3ac20b503cfa507ad455f4
8d66691ee264969447390822971b8caa029cac3e
fix(v-model): should generate component-specific code for tags with "is" attribute fix #6066
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -483,7 +483,9 @@ function processAttrs (el) {\n )\n }\n }\n- if (isProp || platformMustUseProp(el.tag, el.attrsMap.type, name)) {\n+ if (!el.component && (\n+ isProp || platformMustUseProp(el.tag, el....
2017-07-10T13:34:40
denoland/deno
55621d9ef0d7e9f581c6b2cfe74067a13c872b3f
1d575591075876fa4ec79e3dbc5030078c3a593f
fix: wpt assert expectation correctly even if the filter has a layer (#30574) related: #30501 I fixed to assert properly even if the filter has a layer as follows: ``` ./tests/wpt/wpt.ts run -- WebCryptoAPI/import_export ```
[ { "path": "tests/wpt/wpt.ts", "patch": "@@ -64,6 +64,24 @@ class TestFilter {\n }\n return false;\n }\n+\n+ shouldKeepWalking(path): boolean {\n+ if (this.filter === undefined || this.filter.length == 0) {\n+ return true;\n+ }\n+ for (const filter of this.filter) {\n+ if (filte...
2025-12-02T00:51:45
golang/go
9461db5c5945472b0ba9d3ef75e802bb861f214d
4004ff3523f03a6e42e60e47b41d8954dfa3a001
[dev.simd] simd: fix comment in file generator the comment was accidentally updated in the generated file, and the update was good. So update the generator, too. Change-Id: I6a76aa3bdb7fb78378508b95248939567bff69e4 Reviewed-on: https://go-review.googlesource.com/c/go/+/721341 LUCI-TryBot-Result: Go LUCI <golang-scop...
[ { "path": "src/simd/genfiles.go", "patch": "@@ -912,6 +912,7 @@ type SIMDLogicalOP uint8\n const (\n \t// boolean simd operations, for reducing expression to VPTERNLOG* instructions\n \t// sloInterior is set for non-root nodes in logical-op expression trees.\n+\t// the operations are even-numbered.\n \tsloI...
2025-11-17T20:37:47
vuejs/vue
8d66691ee264969447390822971b8caa029cac3e
5dbca4e3c4641a652163aac8b5c9d4e214ca2597
fix(core): should preserve reactivity-ness of injected objects fix #5913
[ { "path": "src/core/instance/inject.js", "patch": "@@ -3,7 +3,7 @@\n import { warn } from '../util/index'\n import { hasOwn } from 'shared/util'\n import { hasSymbol } from 'core/util/env'\n-import { defineReactive } from '../observer/index'\n+import { defineReactive, observerState } from '../observer/index...
2017-07-10T13:12:43
mrdoob/three.js
4c1941f94391acab665ed73e3c81e80b1e6e3975
9a0137af625b8c2b7e1a19d95532612cf997d432
Renderer: Document more modules. (#30246) * Renderer: Document more modules. * Renderer: Document more modules. * Renderer: Document more modules. * Renderer: Document more modules. * Fix typo.
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -497,6 +497,15 @@ class NodeBuilder {\n \n \t}\n \n+\t/**\n+\t * Returns the output struct name which is required by\n+\t * {@link module:OutputStructNode}.\n+\t *\n+\t * @abstract\n+\t * @return {String} The name of the output struct.\n+\t */\n+\tgetO...
2025-01-01T13:27:58
denoland/deno
ed684124efd8c1b575d40caed05b858d4b8c1d89
b38897382e11e75c6808b7efa22f1112baac975d
fix(types): add [Symbol.iterator]() to NodeListOf (fixes #31382) (#31384) This PR adds missing iterable support to `NodeListOf<TNode>` in the DOM typings. Without this method, TypeScript raises error TS2488: ```ts for (const child of div.childNodes) {} // TS2488: NodeListOf<ChildNode> must have a [Symbol.iterator]() ...
[ { "path": "cli/tsc/dts/lib.dom.d.ts", "patch": "@@ -21993,6 +21993,7 @@ interface NodeListOf<TNode extends Node> extends NodeList {\n item(index: number): TNode;\n forEach(callbackfn: (value: TNode, key: number, parent: NodeListOf<TNode>) => void, thisArg?: any): void;\n [index: number]: TNode;\...
2025-12-02T00:24:36
golang/go
8806d53c106ba9d797a4383b2a49418c509a42c2
c93766007dbb9c975d2f18b7c741f4804ce911c0
cmd/link: align sections, not symbols after DWARF compress After DWARF compression, we recompute the symbol and section addresses. On Windows, we need to align the sections to PEFILEALIGN. But the code actually apply the alignment to every symbol. This works mostly fine as after compression a section usually contains ...
[ { "path": "src/cmd/link/internal/ld/dwarf.go", "patch": "@@ -2507,19 +2507,19 @@ func dwarfcompress(ctxt *Link) {\n \tvar prevSect *sym.Section\n \tfor _, si := range dwarfp {\n \t\tfor _, s := range si.syms {\n-\t\t\tldr.SetSymValue(s, int64(pos))\n \t\t\tsect := ldr.SymSect(s)\n \t\t\tif sect != prevSect ...
2025-11-17T22:27:21
vuejs/vue
0d6ad12a4805473579440d0f817641760c364dcf
306997eaf4ff36f4757c753c8a00ce3851e29cca
refactor(weex): sync recent changes of Weex (#6028) * compile bundle on native side if 'compileBundle()' is available on native side. * refactor sendTasks * reset renderer.compileBundle * v2.2.2-weex.1 * v2.2.2-weex.2 && fixed memory leak * call C++ timer instead of WxTimerModule in weex-vue-framwork ...
[ { "path": "src/platforms/weex/entry-framework.js", "patch": "@@ -22,7 +22,7 @@ export function init (cfg) {\n renderer.Document = cfg.Document\n renderer.Element = cfg.Element\n renderer.Comment = cfg.Comment\n- renderer.sendTasks = cfg.sendTasks\n+ renderer.compileBundle = cfg.compileBundle\n }\n \...
2017-07-07T03:42:47
denoland/deno
b38897382e11e75c6808b7efa22f1112baac975d
42b6c822548af7995426a9bce26707fa87edbcbf
docs(libs): fix some typos in comment (#31250) Signed-off-by: geogrego <geogrego@outlook.com>
[ { "path": "libs/config/testdata/fmt/with_config/subdir/c.md", "patch": "@@ -5,7 +5,7 @@ unless you specifically enable it, a\n program run with Deno has no file,\n network, or environment access. Access\n to security sensitive functionality\n-requires that permisisons have been\n+requires that permissions h...
2025-12-01T23:50:24
mrdoob/three.js
4fe111ff6ed9b558133337e259a1711bcffb0cea
796956099d90326cf636d8927c5ae96c7acc5977
fix typo VertexNodeNode -> VertexNode (#30239)
[ { "path": "docs/examples/en/math/convexhull/ConvexHull.html", "patch": "@@ -86,7 +86,7 @@ <h3>[method:this addNewFaces]( [param:VertexNode eyeVertex], [param:HalfEdge hor\n \n \t\t<h3>[method:this addVertexToFace]( [param:VertexNode vertex], [param:Face face]\t)</h3>\n \t\t<p>\n-\t\t\t[page:VertexNodeNode v...
2024-12-31T09:41:21
golang/go
c93766007dbb9c975d2f18b7c741f4804ce911c0
9859b436430aac382b337964a1b380bc4bfcda70
runtime: do not print recovered when double panic with the same value Show the "[recovered, repanicked]" message only when it is repanicked after recovered. For the duplicated panics that not recovered, do not show this message. Fixes #76099 Change-Id: I87282022ebe44c6f6efbe3239218be4a2a7b1104 Reviewed-on: https://g...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -413,6 +413,15 @@ func TestRepanickedPanicSandwich(t *testing.T) {\n \t}\n }\n \n+func TestDoublePanicWithSameValue(t *testing.T) {\n+\toutput := runTestProg(t, \"testprog\", \"DoublePanicWithSameValue\")\n+\twant := `panic: message\n+`\n+\tif !strings.Has...
2025-10-29T05:11:48
vuejs/vue
306997eaf4ff36f4757c753c8a00ce3851e29cca
254d85cfc42d58bf9e3d0626ba959379bdc32d6f
fix(core): add merge strategy for provide option (#6025) Fix #6008
[ { "path": "src/core/util/options.js", "patch": "@@ -63,7 +63,7 @@ function mergeData (to: Object, from: ?Object): Object {\n /**\n * Data\n */\n-strats.data = function (\n+export function mergeDataOrFn (\n parentVal: any,\n childVal: any,\n vm?: Component\n@@ -73,15 +73,6 @@ strats.data = function (...
2017-07-07T03:39:25
mrdoob/three.js
e8af245aaac4f65d2f1f4df5a302bd19599d899e
b641098c4d182737c617e31a5287180b04b9f424
Update WebGLTextureUtils.js (#30236) (#30238) Fixed a typo in a function name.
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js", "patch": "@@ -731,7 +731,7 @@ class WebGLTextureUtils {\n \n \t\tconst requireDrawFrameBuffer = texture.isDepthTexture === true || ( renderContext.renderTarget && renderContext.renderTarget.samples > 0 );\n \n-\t\tconst srcHeight = renderC...
2024-12-30T20:02:09
golang/go
9859b436430aac382b337964a1b380bc4bfcda70
b9ef0633f6117c74fabcd7247a76b4feb86df086
cmd/asm,cmd/compile,cmd/internal/obj/riscv: use compressed instructions on riscv64 Make use of compressed instructions on riscv64 - add a compress pass to the end of the assembler, which replaces non-compressed instructions with compressed alternatives if possible. Provide a `compressinstructions` compiler and assemb...
[ { "path": "src/cmd/asm/internal/flags/flags.go", "patch": "@@ -29,8 +29,9 @@ var (\n )\n \n var DebugFlags struct {\n-\tMayMoreStack string `help:\"call named function before all stack growth checks\"`\n-\tPCTab string `help:\"print named pc-value table\\nOne of: pctospadj, pctofile, pctoline, pctoin...
2025-09-25T19:05:49
vuejs/vue
254d85cfc42d58bf9e3d0626ba959379bdc32d6f
d8d4ca6763af55e1715bbc1e0fadd10e5be41db3
fix(ref): refactor function registerRef (#6039) fix #5997
[ { "path": ".flowconfig", "patch": "@@ -20,3 +20,4 @@ module.name_mapper='^weex/\\(.*\\)$' -> '<PROJECT_ROOT>/src/platforms/weex/\\1'\n module.name_mapper='^server/\\(.*\\)$' -> '<PROJECT_ROOT>/src/server/\\1'\n module.name_mapper='^entries/\\(.*\\)$' -> '<PROJECT_ROOT>/src/entries/\\1'\n module.name_mapper=...
2017-07-07T03:37:19
denoland/deno
42b6c822548af7995426a9bce26707fa87edbcbf
3680f8b7993bffe83dda983856def1bb8138e9e6
fix(node/process): make `process.stdin.isTTY` writable (#31464) ## Summary In Node.js, `tty.ReadStream` sets `isTTY` as a simple instance property (`this.isTTY = true`), making it naturally writable. Deno's polyfill used a getter-only property definition, preventing assignment. Some npm packages need to override `is...
[ { "path": "ext/node/polyfills/_process/streams.mjs", "patch": "@@ -258,12 +258,18 @@ export const initStdin = (warmup = false) => {\n // so that the process can close down.\n stdin.on(\"pause\", () => nextTick(onpause));\n \n+ // Allow users to overwrite isTTY for test isolation and terminal mocking.\n...
2025-12-01T23:37:23
golang/go
b9ef0633f6117c74fabcd7247a76b4feb86df086
a087dea8692eee879e8226b70eb691dea7758b0b
cmd/internal/sys,internal/goarch,runtime: enable the use of compressed instructions on riscv64 Enable the use of compressed instructions on riscv64 by reducing the PC quantum to two bytes and reducing the minimum instruction length to two bytes. Change gostartcall on riscv64 to land at two times the PC quantum into go...
[ { "path": "src/cmd/internal/obj/riscv/obj.go", "patch": "@@ -4799,10 +4799,17 @@ func assemble(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\tv := pcAlignPadLength(p.Pc, alignedValue)\n \t\t\toffset := p.Pc\n \t\t\tfor ; v >= 4; v -= 4 {\n-\t\t\t\t// NOP\n-\t\t\t\tcursym.WriteBytes(ctxt,...
2023-08-27T09:35:33
vuejs/vue
d8d4ca6763af55e1715bbc1e0fadd10e5be41db3
8ff77a243cae0627a651fe852a6c07f7bcfce2a3
fix: transition group should work with dynamic name (#6006) (#6019) * fix: transition group should work with dynamic name (#6006) * fix: improve remove class
[ { "path": "src/platforms/web/runtime/class-util.js", "patch": "@@ -42,12 +42,20 @@ export function removeClass (el: HTMLElement, cls: ?string) {\n } else {\n el.classList.remove(cls)\n }\n+ if (!el.classList.length) {\n+ el.removeAttribute('class')\n+ }\n } else {\n let cur = ...
2017-07-05T01:17:35
mrdoob/three.js
b78ad4c3c0ba973e4a867034e0c3702f683a7ebc
7f4fc6f68c06dcce4767795c524404735de911c1
Renderer: Document more modules. (#30235) * Renderer: Document more modules. * Fix formatting. * Backend: Fix method name.
[ { "path": "src/renderers/common/Backend.js", "patch": "@@ -75,6 +75,57 @@ class Backend {\n \n \t}\n \n+\t/**\n+\t * The coordinate system of the backend.\n+\t *\n+\t * @abstract\n+\t * @type {Number}\n+\t * @readonly\n+\t */\n+\tget coordinateSystem() {}\n+\n+\t// render context\n+\n+\t/**\n+\t * This meth...
2024-12-30T14:02:46
denoland/deno
3680f8b7993bffe83dda983856def1bb8138e9e6
07c3a8bfcd33330208bc7ff2d6d02ca611a0e0ff
fix: clippy::derivable_impls (#31460) https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls
[ { "path": "cli/args/flags.rs", "patch": "@@ -222,18 +222,13 @@ pub struct CoverageFlags {\n pub r#type: CoverageType,\n }\n \n-#[derive(Clone, Debug, Eq, PartialEq)]\n+#[derive(Clone, Debug, Eq, PartialEq, Default)]\n pub enum DocSourceFileFlag {\n+ #[default]\n Builtin,\n Paths(Vec<String>),\n }\n \...
2025-12-01T23:21:36
golang/go
a087dea8692eee879e8226b70eb691dea7758b0b
e1a12c781f55da85a30fd63471f8adcba908acd2
debug/elf: sync new loong64 relocation types up to LoongArch ELF psABI v20250521 Add several new relocation types defined in newer versions of LoongArch ELF psABI v20250521, part of the v2.40 spec bundle. The new relocations are seeing increased adoption because distributions are moving to newer GNU/LLVM toolchain ver...
[ { "path": "api/next/75562.txt", "patch": "@@ -0,0 +1,38 @@\n+pkg debug/elf, const R_LARCH_TLS_DESC32 = 13 #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC32 R_LARCH #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC64 = 14 #75562\n+pkg debug/elf, const R_LARCH_TLS_DESC64 R_LARCH #75562\n+pkg debug/elf, const R_LA...
2025-09-13T07:57:12
vuejs/vue
8ff77a243cae0627a651fe852a6c07f7bcfce2a3
275d95d0fe79b667dafb353b974812ed9837f1cf
fix typos in src/server/bundle-renderer/create-bundle-runner.js (#6010)
[ { "path": "src/server/bundle-renderer/create-bundle-runner.js", "patch": "@@ -115,7 +115,7 @@ export function createBundleRunner (entry, files, basedir, runInNewContext) {\n // styles injected by vue-style-loader.\n initialContext = sandbox.__VUE_SSR_CONTEXT__ = {}\n runner = evaluat...
2017-07-01T13:36:23
mrdoob/three.js
7f4fc6f68c06dcce4767795c524404735de911c1
7f6e1fdac8fdb02bef94ae487c4f30a53e34f578
Renderer: Document more modules. (#30233) * Renderer: Document more modules. * Fix typos. * Renderer: Document more modules. * Fix typos.
[ { "path": "src/renderers/common/Backend.js", "patch": "@@ -1,144 +1,366 @@\n-let vector2 = null;\n-let vector4 = null;\n-let color4 = null;\n+let _vector2 = null;\n+let _color4 = null;\n \n import Color4 from './Color4.js';\n import { Vector2 } from '../../math/Vector2.js';\n-import { Vector4 } from '../../...
2024-12-30T10:05:47
denoland/deno
07c3a8bfcd33330208bc7ff2d6d02ca611a0e0ff
99a8dbf1f3320cfa73c1adae24fcc247d496ef8e
fix: update deno_error to 0.7.1 (#31450) Fixes https://github.com/denoland/deno/issues/31430
[ { "path": "Cargo.lock", "patch": "@@ -2021,9 +2021,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_error\"\n-version = \"0.7.0\"\n+version = \"0.7.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"dde60bd153886964234c5012d3d9caf788287f28d81fb24a884436904101ef10\"...
2025-12-01T22:45:26
vuejs/vue
eea0920f14d0ea63d1b94c648eeb36ac7dfb4b05
458030ae19a51982d028dcacfc77ab2cfac8ac26
fix: improve Vue.set/Vue.delete API to support multi type of array index (#5973) related #5884
[ { "path": "src/core/observer/index.js", "patch": "@@ -6,6 +6,7 @@ import {\n def,\n isObject,\n isPlainObject,\n+ isValidArrayIndex,\n hasProto,\n hasOwn,\n warn,\n@@ -189,7 +190,7 @@ export function defineReactive (\n * already exist.\n */\n export function set (target: Array<any> | Object, ...
2017-07-01T03:22:25
golang/go
6caab99026a496107e903469d8c906be66a71896
eda2e8c683798e435e725f60f0bb580eb4aa9686
runtime: relax TestMemoryLimit on darwin a bit more Add 8MB more. Covers most of the failures watchflakes has seen. Fixes #73136 Change-Id: I593c599a9519b8b31ed0f401d4157d27ac692587 Reviewed-on: https://go-review.googlesource.com/c/go/+/708617 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/runtime/testdata/testprog/gc.go", "patch": "@@ -396,7 +396,7 @@ func gcMemoryLimit(gcPercent int) {\n \t\t// should do considerably better than this bound.\n \t\tbound := int64(myLimit + 16<<20)\n \t\tif runtime.GOOS == \"darwin\" {\n-\t\t\tbound += 16 << 20 // Be more lax on Darwin, see issu...
2025-10-02T20:09:03
denoland/deno
efa4da8643c1ada18102bd3eeadb28171f7cdad6
84b46ea9a66aad0418436da66af74077b9e4beb1
fix(ext/web): console.dir respects indent level (#31412) It looks more natural if you respect the indentation of `console.group`. `console.dir` on Node.js also respects group indentation, so this improves Node.js compat. Test code: ```ts console.dir("1"); console.group(); console.dir("2"); console.group(); console.d...
[ { "path": "ext/web/01_console.js", "patch": "@@ -3172,6 +3172,7 @@ class Console {\n this.#printFunc(\n inspectArgs([obj], {\n ...getConsoleInspectOptions(noColorStdout()),\n+ indentLevel: this.indentLevel,\n ...options,\n }) + \"\\n\",\n 1,", "additions": 1,...
2025-11-28T23:36:57
mrdoob/three.js
7f6e1fdac8fdb02bef94ae487c4f30a53e34f578
dcb1169f9bbc50b5e5c41fc67aa542b0fee7814e
GaussianBlurNode: Fix custom UV (#30232)
[ { "path": "examples/jsm/tsl/display/GaussianBlurNode.js", "patch": "@@ -267,7 +267,7 @@ class GaussianBlurNode extends TempNode {\n \n \t\t//\n \n-\t\tconst uvNode = textureNode.uvNode || uv();\n+\t\tconst uvNode = uv();\n \t\tconst directionNode = vec2( this.directionNode || 1 );\n \n \t\tlet sampleTexture...
2024-12-30T06:25:14
vuejs/vue
458030ae19a51982d028dcacfc77ab2cfac8ac26
34d8c796ac6a8e47bf23155bad71d07fafd1aa51
fix: v-bind object should not override props on scopedSlots (#5995) * v-bind object should not override props on scopedSlots * Update render-slot.js
[ { "path": "src/core/instance/render-helpers/render-slot.js", "patch": "@@ -15,7 +15,7 @@ export function renderSlot (\n if (scopedSlotFn) { // scoped slot\n props = props || {}\n if (bindObject) {\n- extend(props, bindObject)\n+ props = extend(extend({}, bindObject), props)\n }\n ...
2017-06-30T06:58:07
golang/go
934dbcea1a806c198a7870b1808fb8e41b568984
e4d94842207a7f29fb473ecece2acdc5a2a207f7
[dev.simd] simd: update CPU feature APIs This CL also updates the internal uses of these APIs. This CL also fixed a instable output issue left by previous CLs. Change-Id: Ibc38361d35e2af0c4943a48578f3c610b74ed14d Reviewed-on: https://go-review.googlesource.com/c/go/+/720020 Reviewed-by: Cherry Mui <cherryyz@google.c...
[ { "path": "src/simd/_gen/simdgen/gen_simdTypes.go", "patch": "@@ -146,21 +146,25 @@ type {{.Name}} struct {\n const simdFeaturesTemplate = `\n import \"internal/cpu\"\n \n+type X86Features struct {}\n+\n+var X86 X86Features\n+\n {{range .}}\n {{- if eq .Feature \"AVX512\"}}\n-// Has{{.Feature}} returns whet...
2025-11-12T19:56:09
denoland/deno
84b46ea9a66aad0418436da66af74077b9e4beb1
4c228b455d51162fcb1763422b258202799bc31e
fix(check): move unknown builtin node: module errors to tsc diagnostics (#31449)
[ { "path": "cli/graph_util.rs", "patch": "@@ -297,10 +297,10 @@ pub fn resolution_error_for_tsc_diagnostic(\n | NodeJsErrorCode::ERR_UNSUPPORTED_ESM_URL_SCHEME\n | NodeJsErrorCode::ERR_INVALID_FILE_URL_PATH\n | NodeJsErrorCode::ERR_PACKAGE_IMPORT_NOT_DEFINED\n- | NodeJsErrorCode::ERR_U...
2025-11-28T19:37:08
mrdoob/three.js
1a4f44bb91464f4da7fe4494fe9311ddea77c718
aa370f4ff3e8bd46a6a3e4f52ff16ed53634c640
ConditionalNode: Fix setup process (#30229) * fix conditional setup process * fix nodeType * cleanup * Update ConditionalNode.js
[ { "path": "src/nodes/core/CacheNode.js", "patch": "@@ -56,7 +56,16 @@ class CacheNode extends Node {\n \n \tgetNodeType( builder ) {\n \n-\t\treturn this.node.getNodeType( builder );\n+\t\tconst previousCache = builder.getCache();\n+\t\tconst cache = builder.getCacheFromNode( this, this.parent );\n+\n+\t\tb...
2024-12-30T05:00:23
vuejs/vue
34d8c796ac6a8e47bf23155bad71d07fafd1aa51
049f3171a9d2e97f62c209a4b78a71ec9dae810f
fix: check enterToClass/leaveToClass existence before adding it (#5912) related: #5800
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -69,8 +69,11 @@ export function nextFrame (fn: Function) {\n }\n \n export function addTransitionClass (el: any, cls: string) {\n- (el._transitionClasses || (el._transitionClasses = [])).push(cls)\n- addClass(el, cls)\n+ const transit...
2017-06-30T06:57:16
mrdoob/three.js
9d4c2918ae86c67f079a8c7c2830551171f4a430
d24a6b48deae76f508af2b9870ae45340f68ba36
Renderer: Document more modules. (#30224) * Renderer: Document more modules. * Renderer: Document more modules. * Fix typo.
[ { "path": "src/renderers/common/BindGroup.js", "patch": "@@ -1,14 +1,55 @@\n let _id = 0;\n \n+/**\n+ * Represents a bind group.\n+ *\n+ * @private\n+ */\n class BindGroup {\n \n+\t/**\n+\t * Constructs a new bind group.\n+\t *\n+\t * @param {String} name - The bind group's name.\n+\t * @param {Array<Bindin...
2024-12-28T12:39:40
denoland/deno
4c228b455d51162fcb1763422b258202799bc31e
ef3192d8797d44d7c2a27e869809f587d67832bc
fix(ext/node): reimplement `setImmediate` API (#30328) Closes https://github.com/denoland/deno/issues/28016
[ { "path": "Cargo.lock", "patch": "@@ -1887,9 +1887,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.370.0\"\n+version = \"0.371.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"03593764555f24a3287b321c156304e8d142105631258f1fabdeac07013bb4a...
2025-11-28T10:05:41
vuejs/vue
049f3171a9d2e97f62c209a4b78a71ec9dae810f
27a1b03827d431ef5dc3ad301099b30179551cd7
fix: support plugin with multi version vue (#5985) close #5970
[ { "path": "src/core/global-api/use.js", "patch": "@@ -4,13 +4,11 @@ import { toArray } from '../util/index'\n \n export function initUse (Vue: GlobalAPI) {\n Vue.use = function (plugin: Function | Object) {\n- const cid = this.cid\n- if (!plugin._installed) {\n- plugin._installed = {}\n- }\n...
2017-06-30T03:20:43
mrdoob/three.js
b35ad2adf55e8598c01a7e7c1cc3f9d409e4eed8
6462c8a103d7da348e29cd619eca0edd20e63588
Renderer: Document more modules. (#30221) * Renderer: Document more modules. * Fix typo. * Fix typo.
[ { "path": "src/nodes/accessors/BufferAttributeNode.js", "patch": "@@ -24,7 +24,7 @@ import { StaticDrawUsage, DynamicDrawUsage } from '../../constants.js';\n * material.colorNode = bufferAttribute( new THREE.Float32BufferAttribute( colors, 3 ) );\n * ```\n * This new approach is especially interesting wh...
2024-12-27T14:42:10
golang/go
e4d94842207a7f29fb473ecece2acdc5a2a207f7
d7a0c45642fef106b5443aa16937fd4bffb51d12
[dev.simd] cmd/compile: fix unstable output This CL fixed an error left by CL 718160. Change-Id: I442ea59bc1ff0dda2914d1858dd5ebe93e2818dc Reviewed-on: https://go-review.googlesource.com/c/go/+/720281 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <d...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -42,32 +42,50 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPBROADCASTW512,\n \t\tssa.OpAMD64VPBROADCASTD512,\n \t\tssa.OpAMD64VPBROADCASTQ512,\n-\t\tssa.OpAMD64VPMOVWB128,\n+\t\tssa.OpAMD64VPMOVWB128_128,\...
2025-11-13T17:07:16
denoland/deno
ef3192d8797d44d7c2a27e869809f587d67832bc
4876b41d59d79bbed3cbf11e010d20c62770dac4
fix(node/timers): ensure active timers entry is deleted on `Timeout.prototype.refresh` (#31436) Closes https://github.com/denoland/deno/issues/31435
[ { "path": "ext/node/polyfills/internal/timers.mjs", "patch": "@@ -5,6 +5,7 @@ import { primordials } from \"ext:core/mod.js\";\n const {\n FunctionPrototypeBind,\n MapPrototypeDelete,\n+ MapPrototypeGet,\n MapPrototypeSet,\n NumberIsFinite,\n SafeArrayIterator,\n@@ -33,6 +34,7 @@ export { kTimerI...
2025-11-27T19:03:27
vuejs/vue
de42186d52562a0ce506580484ff64fe86b765bd
e4da249ab8ef32a0b8156c840c9d2b9773090f8a
fix(ssr): fix bundleRenderer mapped async chunks caching check (#5963) _mappedfiles => _mappedFiles
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -217,7 +217,7 @@ export default class TemplateRenderer {\n }\n \n getUsedAsyncFiles (context: Object): ?Array<string> {\n- if (!context._mappedfiles && context._registeredComponents && this.mapFiles) {\n+ if (!context._mappedFiles && ...
2017-06-30T00:58:08
mrdoob/three.js
0eaea73432677f73fe71edfe6e8daf08f4b5412a
688976a5689ef47a2ca4f0786f7f94532e02bd3a
TextureNode: Improve error message (#30215)
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -316,6 +316,16 @@ class TextureNode extends UniformNode {\n \n \t\t//\n \n+\t\tconst texture = this.value;\n+\n+\t\tif ( ! texture || texture.isTexture !== true ) {\n+\n+\t\t\tthrow new Error( 'THREE.TSL: `texture( value )` function expects a vali...
2024-12-26T19:53:54
golang/go
8e734ec954ed25e4c41e7d5a6f59ed1c1072ea83
592775ec7d8bbc99ee0a1ada56c4490c855f9385
go/ast: fix BasicLit.End position for raw strings containing \r This CL causes the parser to record in a new field, BasicLit.EndPos, the actual end position of each literal token, and to use it in BasicLit.End. Previously, the End was computed heuristically as Pos + len(Value). This heuristic is incorrect for a multil...
[ { "path": "api/next/76031.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/ast, type BasicLit struct, ValueEnd token.Pos #76031", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/ast/76031.md", "patch": "@@ -0,0 +1,5 @@\n+The new [BasicLit.Va...
2025-11-12T22:13:40
vuejs/vue
51c595a7cef24e12094f66e0f8934fa41edde07d
e01c09adad84fbcf9821ba7bbfc5e3300b2ba853
feat(keep-alive): support Array for include and exclude (#5956) * allow array index on keep-alive:include/exclude * add Array in patternTypes * fix flow type * add flow type for include/exclude in watch * add test case
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -5,14 +5,16 @@ import { getFirstComponentChild } from 'core/vdom/helpers/index'\n \n type VNodeCache = { [key: string]: ?VNode };\n \n-const patternTypes: Array<Function> = [String, RegExp]\n+const patternTypes: Array<Function> = [String, RegExp, A...
2017-06-30T00:50:30
denoland/deno
4876b41d59d79bbed3cbf11e010d20c62770dac4
24a0209fa1076586a7e76685e3d27e3d41d47246
fix: upgrade to swc_ecma_parser 27 (#31427)
[ { "path": ".dprint.json", "patch": "@@ -83,7 +83,7 @@\n \"tests/specs/run/error_syntax_empty_trailing_line/error_syntax_empty_trailing_line.mjs\"\n ],\n \"plugins\": [\n- \"https://plugins.dprint.dev/typescript-0.95.11.wasm\",\n+ \"https://plugins.dprint.dev/typescript-0.95.13.wasm\",\n \"...
2025-11-27T18:07:50
mrdoob/three.js
688976a5689ef47a2ca4f0786f7f94532e02bd3a
25763c4629bb2a95f03d6348da6b42ae2bc87934
WebGPURenderer: Fix `material.depthTest` in `logarithmicDepthBuffer` (#30214) * fix depthTest in logarithmicDepthBuffer * cleanup
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -439,7 +439,7 @@ class NodeMaterial extends Material {\n \n \t\tconst clippingNode = this.setupClipping( builder );\n \n-\t\tif ( this.depthWrite === true ) {\n+\t\tif ( this.depthWrite === true || this.depthTest === true ) {\n \n \t\t\t// only w...
2024-12-26T18:02:10
golang/go
590cf18dafcad9f39a3bf2ecf9f1b7578471eff8
c12c33709923907348837e8131122ec4c45d2c83
crypto/mlkem/mlkemtest: add derandomized Encapsulate768/1024 Fixes #73627 Change-Id: I6a6a69649927e9b1cdff910832084fdc04ff5bc2 Reviewed-on: https://go-review.googlesource.com/c/go/+/703795 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <filippo@...
[ { "path": "api/next/73627.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/mlkem/mlkemtest, func Encapsulate1024(*mlkem.EncapsulationKey1024, []uint8) ([]uint8, []uint8, error) #73627\n+pkg crypto/mlkem/mlkemtest, func Encapsulate768(*mlkem.EncapsulationKey768, []uint8) ([]uint8, []uint8, error) #73627", "a...
2025-09-05T17:37:45
vuejs/vue
00a3085628e78176fe02a3c5eb58bb0199c6ca91
f6cd44c48b83640e5d3fbbea46d7b1b9cb439543
test: correcting existing test case (#5909) Fix the location of the test case
[ { "path": "test/unit/features/global-api/set-delete.spec.js", "patch": "@@ -52,6 +52,24 @@ describe('Global API: set/delete', () => {\n expect(vm.$el.innerHTML).toBe('')\n }).then(done)\n })\n+\n+ it('be able to use string type index in array', done => {\n+ const vm = new Vue({\n+ ...
2017-06-29T04:39:02
mrdoob/three.js
34c428c2d5507d77261473b483310b593d9805f8
eb8c334628e6ae895fb6c9da4be2d78a2135c38b
Renderer: Document more modules (#30213) * Renderer: Document more modules * Renderer: Fix reference. * RenderObject: Clean up.
[ { "path": "src/renderers/common/Animation.js", "patch": "@@ -9,13 +9,13 @@ class Animation {\n \t/**\n \t * Constructs a new animation loop management component.\n \t *\n-\t * @param {Nodes} nodes - Renderer component for managing nodes relatd logic.\n+\t * @param {Nodes} nodes - Renderer component for mana...
2024-12-26T13:08:16
denoland/deno
faf95058149485560fafc0ba977db331e1874b38
3e22a737edc435d04f7f1233f3f0d75d94ae23a7
fix(node): support advanced serialization in IPC (#31380) Fixes #31354.
[ { "path": "Cargo.lock", "patch": "@@ -2474,6 +2474,7 @@ dependencies = [\n \"k256\",\n \"libc\",\n \"libz-sys\",\n+ \"log\",\n \"md-5\",\n \"md4\",\n \"nix 0.27.1\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "Cargo.toml", "patch": "@@ -201,7 +201,7 @@...
2025-11-26T23:15:32
golang/go
c12c33709923907348837e8131122ec4c45d2c83
bc159638135e751a291fe6753fc8c8c3d61be863
cmd/compile: teach prove about subtract idioms For v = x-y: if y >= 0 then v <= x if y <= x then v >= 0 (With appropriate guards against overflow/underflow.) Fixes #76304 Change-Id: I8f8f1254156c347fa97802bd057a8379676720ae Reviewed-on: https://go-review.googlesource.com/c/go/+/720740 Reviewed-by: Mark Free...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -1945,6 +1945,7 @@ func (ft *factsTable) flowLimit(v *Value) {\n \t\tft.newLimit(v, a.sub(b, uint(v.Type.Size())*8))\n \t\tft.detectMod(v)\n \t\tft.detectSliceLenRelation(v)\n+\t\tft.detectSubRelations(v)\n \tcase OpNeg64, OpNeg32, OpNeg16, OpN...
2025-11-14T23:26:36
mrdoob/three.js
eb8c334628e6ae895fb6c9da4be2d78a2135c38b
574e954b3cc8a407527c794cbab9cca3524c0c92
WebGPURenderer: Improved Shaders Names For Debug (#30209)
[ { "path": "src/nodes/gpgpu/ComputeNode.js", "patch": "@@ -73,6 +73,14 @@ class ComputeNode extends Node {\n \t\t */\n \t\tthis.version = 1;\n \n+\t\t/**\n+\t\t * The name or label of the uniform.\n+\t\t *\n+\t\t * @type {String}\n+\t\t * @default ''\n+\t\t */\n+\t\tthis.name = '';\n+\n \t\t/**\n \t\t * The ...
2024-12-26T11:32:21
vuejs/vue
f6cd44c48b83640e5d3fbbea46d7b1b9cb439543
55816543c46e75aa53481ac95a89ff6f87a2d704
fix: ensure cleanup in watcher.get (#5988) watcher.get should always clean up observee stack in order to prevent memory leak. Also, non-user defined watch should rethrow error. fix #5975
[ { "path": "src/core/observer/watcher.js", "patch": "@@ -94,22 +94,23 @@ export default class Watcher {\n pushTarget(this)\n let value\n const vm = this.vm\n- if (this.user) {\n- try {\n- value = this.getter.call(vm, vm)\n- } catch (e) {\n+ try {\n+ value = this.getter...
2017-06-29T04:38:14
denoland/deno
d704ca228a872a31c82c5de9f852916c8f07a981
109196ca03ff1b02036bac7d7e3886945060d415
fix(bundle): avoid name clash in hack (#31409) One of the issues described in #31407.
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -663,16 +663,16 @@ fn replace_require_shim(contents: &str, minified: bool) -> String {\n );\n re.replace(contents, |c: &regex::Captures<'_>| {\n let var_name = c.get(1).unwrap().as_str();\n- format!(\"import{{createRequire}} from \\\"node:...
2025-11-26T10:30:59
golang/go
1297fae7081a3116d2097ce7cfcc0f89ba2cf0fc
65c09eafdf316ef691f0f8eccbf860d2ef5f7c70
go/token: add (*File).End method Also, use it in a number of places. + test, api, relnote Fixes #75849 Change-Id: I44acf5b8190b964fd3975009aa407d7c82cee19b Reviewed-on: https://go-review.googlesource.com/c/go/+/720061 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed...
[ { "path": "api/next/75849.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*File) End() Pos #75849", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/token/75849.md", "patch": "@@ -0,0 +1 @@\n+The new [File.End] convenience met...
2025-11-12T23:17:35
mrdoob/three.js
c9e5e53a06809f8352c5bd94c130725d93349d11
3e6034a0fe6db50a5c779d5fe4128aec565e60fd
TextureNode: Fix matrix update (#30200)
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -268,7 +268,7 @@ class TextureNode extends UniformNode {\n \tsetUpdateMatrix( value ) {\n \n \t\tthis.updateMatrix = value;\n-\t\tthis.updateType = value ? NodeUpdateType.FRAME : NodeUpdateType.NONE;\n+\t\tthis.updateType = value ? NodeUpdateType....
2024-12-25T04:13:37
vuejs/vue
55816543c46e75aa53481ac95a89ff6f87a2d704
0cd6ef321b3168d6c46c7a870c3d2a53fd9d4bde
fix(ssr): reference error when create $ssrContext for root component (#5981) fix #5941
[ { "path": "src/core/index.js", "patch": "@@ -11,7 +11,7 @@ Object.defineProperty(Vue.prototype, '$isServer', {\n Object.defineProperty(Vue.prototype, '$ssrContext', {\n get () {\n /* istanbul ignore next */\n- return this.$vnode.ssrContext\n+ return this.$vnode && this.$vnode.ssrContext\n }\n ...
2017-06-29T04:37:03
denoland/deno
109196ca03ff1b02036bac7d7e3886945060d415
48546aa4a9f42decaa11471904ab0ece5ce2d644
fix(bundle): do not error on failing to clean up esbuild dir (#31408) Fixes https://github.com/denoland/deno/issues/31406 This is just to save some space on the user's device, no need to hard error if it fails.
[ { "path": "cli/tools/bundle/esbuild.rs", "patch": "@@ -110,9 +110,13 @@ pub async fn ensure_esbuild(\n })?;\n \n if !existed {\n- std::fs::remove_dir_all(&package_folder).with_context(|| {\n- format!(\"failed to remove directory {}\", package_folder.display())\n- })?;\n+ let _ ...
2025-11-26T10:24:25
mrdoob/three.js
05dbc5d9f24d290a80173b218b7b8535015674df
f9c4319e009bd8d642e0746f74814efbe1def71c
WebGPURenderer: Introduce RenderTarget3D and RenderTargetArray (#30155) * WebGPURenderer: Introduce RenderTarget3D and RenderTargetArray * Fix TextureHelperGPU * revert WebGL3DRenderTarget.js * cleanup * simplify example * cleanup * revert screenshot * improve example * update example * refa...
[ { "path": "examples/files.json", "patch": "@@ -408,6 +408,7 @@\n \t\t\"webgpu_procedural_texture\",\n \t\t\"webgpu_reflection\",\n \t\t\"webgpu_refraction\",\n+\t\t\"webgpu_rendertarget_2d-array_3d\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",", "additions": 1, "dele...
2024-12-23T13:51:27
golang/go
65c09eafdf316ef691f0f8eccbf860d2ef5f7c70
594129b80cad4eb291a4185f3ac81699cfb3afd6
runtime: hoist invariant code out of heapBitsSmallForAddrInline The first two instructions in heapBitsSmallForAddrInline are invariant for a given span and object and are called in a loop within ScanObjectsSmall which figures as a hot routine in profiles of some benchmark runs within sweet benchmark suite (x/benchmark...
[ { "path": "src/runtime/mgcmark_greenteagc.go", "patch": "@@ -978,7 +978,9 @@ func spanSetScans(spanBase uintptr, nelems uint16, imb *spanInlineMarkBits, toSc\n }\n \n func scanObjectSmall(spanBase, b, objSize uintptr, gcw *gcWork) {\n-\tptrBits := heapBitsSmallForAddrInline(spanBase, b, objSize)\n+\thbitsBa...
2025-11-07T07:45:02
vuejs/vue
4acc8c8be1971112be45e0feb7fb7eddbfc9d247
4f8f4db5dd529a18753150f1c4f4528fd0dab6b0
fix(v-model): use consistent behavior during IME composition for other text-like input types (fix #5902)
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -3,9 +3,11 @@\n * properties to Elements.\n */\n \n-import { looseEqual, looseIndexOf } from 'shared/util'\n+import { looseEqual, looseIndexOf, makeMap } from 'shared/util'\n import { warn, isAndroid, isIE9, isIE, isEdge } from 'core/...
2017-06-17T08:32:08
denoland/deno
48546aa4a9f42decaa11471904ab0ece5ce2d644
bcb33125650e6a179125730ea4acfe76e2cdd485
fix(bundle): fix import.meta.main transform with jsr entrypoint (#31415) Fixes https://github.com/denoland/deno/issues/31404
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -52,6 +52,7 @@ use esbuild_client::EsbuildService;\n use esbuild_client::protocol;\n use esbuild_client::protocol::BuildResponse;\n use indexmap::IndexMap;\n+use indexmap::IndexSet;\n use node_resolver::NodeResolutionKind;\n use node_resolver::ResolutionMode...
2025-11-26T10:11:14
golang/go
c58d075e9a457fce92bdf60e2d1870c8c4df7dc5
d55ecea9e5a5a4cfba30c6f35d4841ae66e05ccd
crypto/rsa: deprecate PKCS#1 v1.5 encryption Fixes #75302 Change-Id: I6a6a6964c2b3b33bfb34b9677a57610b933bbfab Reviewed-on: https://go-review.googlesource.com/c/go/+/701436 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Mark Freeman <markfreeman@google.com> LUCI-TryBot-Result: Go LUCI <golang-sc...
[ { "path": "api/next/75302.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg crypto/rsa, func DecryptPKCS1v15 //deprecated #75302\n+pkg crypto/rsa, func DecryptPKCS1v15SessionKey //deprecated #75302\n+pkg crypto/rsa, func EncryptPKCS1v15 //deprecated #75302\n+pkg crypto/rsa, type PKCS1v15DecryptOptions //deprecated #753...
2025-09-07T14:07:43
vuejs/vue
213f136a6ebf4e18e65f4da7dce6e7293e585b5a
2f628c3114a3d3c859d46827455f3eae0e4edd08
fix slot resolved incorrect with abstract component (fix #5888) (#5895)
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -169,8 +169,14 @@ export function createComponent (\n \n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n- // other than props & listeners\n+ // other than props & listeners & slot\n+\n+ // work ar...
2017-06-16T18:03:36
denoland/deno
bcb33125650e6a179125730ea4acfe76e2cdd485
50c728d31c1c95f16441e79d0f2cc3f1c67f9439
fix(check): fix nil deref with `--unstable-tsgo` (#31416) Fixes https://github.com/denoland/deno/issues/31413
[ { "path": "cli/tsc/go/tsgo_version.rs", "patch": "@@ -23,15 +23,15 @@ impl Hashes {\n }\n }\n \n-pub const VERSION: &str = \"0.1.8\";\n+pub const VERSION: &str = \"0.1.9\";\n pub const DOWNLOAD_BASE_URL: &str =\n- \"https://github.com/denoland/typescript-go/releases/download/v0.1.8\";\n+ \"https://githu...
2025-11-26T09:36:32
vuejs/vue
d33c1250ee77dd337eb4979851ade331f177b890
8a2c5147ad9ac9444c0f7c30b5f4a3c4e15c033b
fix:when using object syntax in v-bind, special attribute have no effect
[ { "path": "flow/vnode.js", "patch": "@@ -35,6 +35,7 @@ declare interface VNodeData {\n key?: string | number;\n slot?: string;\n ref?: string;\n+ is?: string;\n pre?: boolean;\n tag?: string;\n staticClass?: string;", "additions": 1, "deletions": 0, "language": "JavaScript" }, {...
2017-06-16T12:40:56
denoland/deno
50c728d31c1c95f16441e79d0f2cc3f1c67f9439
26c3f172b58ae5302b294ab4e66dd024af8a500b
fix(bundle): treat bun specifiers as external by default (#31411) Fixes #31397
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -967,6 +967,7 @@ impl esbuild_client::PluginHandler for DenoPluginHandler {\n // to the output file. It will be tricky to figure out which\n // output file this import will end up in. We may have to use the metafile and rewrite at the end\n ...
2025-11-26T08:59:10
golang/go
410ef44f0054a9ab20a901895edb7db5a4d0aad7
50128a21541e3fd712ad717a223aaa109cb86d43
cmd: update x/tools to 59ff18c $ go get golang.org/x/tools@59ff18c $ GOWORK=off go mod tidy $ GOWORK=off go mod vendor This implies golang.org/x/sys@v0.38.0, for which I have also updated src/go.mod for consistency. I also upgraded x/mod@3f03020 to bring in some fixes to code that go vet would otherwise have flag...
[ { "path": "src/cmd/go.mod", "patch": "@@ -6,12 +6,12 @@ require (\n \tgithub.com/google/pprof v0.0.0-20250630185457-6e76a2b096b5\n \tgolang.org/x/arch v0.22.1-0.20251016010524-fea4a9ec4938\n \tgolang.org/x/build v0.0.0-20250806225920-b7c66c047964\n-\tgolang.org/x/mod v0.29.0\n-\tgolang.org/x/sync v0.17.0\n-...
2025-11-11T19:56:59
vuejs/vue
080c387d49cd5cc43726d73ab886650dedd244db
9831b403cf0506a873f03cc008e9debe6ef1f137
Merge inject when extending a component (#5827) * simply fix inject extends * add comments for normalizeInject * normalizeInect should return for non-array * remove isArray branch in resolveInject * add test case for extending injection * Create options.js * type of inject should be object now * R...
[ { "path": "src/core/instance/inject.js", "patch": "@@ -38,18 +38,14 @@ export function initInjections (vm: Component) {\n export function resolveInject (inject: any, vm: Component): ?Object {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n- // isArray her...
2017-06-15T14:15:36
denoland/deno
0bd52c4640208ae025ad3ccd6b6cbbfbe5317b60
1146973cd1035264ebda1300bb8d4028542be066
fix(ext/node): implement `DatabaseSync.function()` and better error details (#31386) Closes #30097 Implementation is based on https://github.com/nodejs/node/blob/v24.2.0/src/node_sqlite.cc Changes in this PR allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-sqlite-custom-functions.js test to pass...
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -8,6 +8,7 @@ use std::ffi::CString;\n use std::ffi::c_char;\n use std::ffi::c_void;\n use std::path::Path;\n+use std::ptr::NonNull;\n use std::ptr::null;\n use std::rc::Rc;\n \n@@ -31,11 +32,13 @@ use super::SqliteError;\n use super::StatementSync;\n...
2025-11-25T14:14:27
mrdoob/three.js
0bdd6d1998624999e717bb5b005031652da7a0c2
8e86f023d0dcf08df11726234e2abd96d482a42f
WebGPURenderer: Fix and improve the dynamic updating of the scene nodes cache (#30180)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -893,10 +893,6 @@ class Renderer {\n \n \t\t//\n \n-\t\tthis._nodes.updateScene( sceneRef );\n-\n-\t\t//\n-\n \t\tthis._background.update( sceneRef, renderList, renderContext );\n \n \t\t// process render lists\n@@ -1337,10 +1333,6 @@ class Renderer...
2024-12-21T15:29:34
golang/go
aea881230dcc640ad730d3759423104074577756
120f1874ef380362cf8b8c4775a327bcd417ff70
std: fix printf("%q", int) mistakes For #72850 Change-Id: I07e64f05c82a34b1dadb9a72e16f5045e68cbd24 Reviewed-on: https://go-review.googlesource.com/c/go/+/720642 Auto-Submit: Alan Donovan <adonovan@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI...
[ { "path": "src/cmd/compile/internal/ir/fmt.go", "patch": "@@ -574,7 +574,7 @@ func exprFmt(n Node, s fmt.State, prec int) {\n \t\t// Special case for rune constants.\n \t\tif typ == types.RuneType || typ == types.UntypedRune {\n \t\t\tif x, ok := constant.Uint64Val(val); ok && x <= utf8.MaxRune {\n-\t\t\t\t...
2025-11-14T19:59:36
vuejs/vue
9831b403cf0506a873f03cc008e9debe6ef1f137
69f946b4372fd74a1f2b1b8460fcd06ec8dd0a91
Add warnHandler to allow users to set a custom warn callback, similar to errorHandler (#5883)
[ { "path": "src/core/config.js", "patch": "@@ -16,6 +16,7 @@ export type Config = {\n performance: boolean;\n devtools: boolean;\n errorHandler: ?(err: Error, vm: Component, info: string) => void;\n+ warnHandler: ?(msg: string, vm: Component, trace: string) => void;\n ignoredElements: Array<string>;...
2017-06-14T13:37:26
denoland/deno
1146973cd1035264ebda1300bb8d4028542be066
7ad8750fe95799ee0e9594f5360fc9da36ae012e
fix(schema): add bundle to unstable field schema (#31395) Fixes https://github.com/denoland/deno/issues/31379
[ { "path": "cli/schemas/config-file.v1.json", "patch": "@@ -900,6 +900,7 @@\n \"type\": \"string\",\n \"examples\": [\n \"bare-node-builtins\",\n+ \"bundle\",\n \"byonm\",\n \"cron\",\n \"detect-cjs\",", "additions": 1, "deletions": 0, ...
2025-11-24T22:32:20
mrdoob/three.js
8e86f023d0dcf08df11726234e2abd96d482a42f
fbd54d51847312ea137cf81d432082c71f2ba460
Renderer: Document more modules. (#30182) * Renderer: Document more modules. * Docs: Finish `Renderer`. * Clean up. * More clean up. * Clean up. * Fix typo. * Remove parameter.
[ { "path": "src/materials/nodes/VolumeNodeMaterial.js", "patch": "@@ -10,6 +10,8 @@ import { Loop, Break } from '../../nodes/utils/LoopNode.js';\n import { texture3D } from '../../nodes/accessors/Texture3DNode.js';\n import { Color } from '../../math/Color.js';\n \n+/** @module VolumeNodeMaterial **/\n+\n /*...
2024-12-21T10:09:23
golang/go
120f1874ef380362cf8b8c4775a327bcd417ff70
fecfcaa4f68a220f47e2c7c8b65d55906dbf8d46
runtime: add more precise test of assist credit handling for runtime.freegc This CL is part of a set of CLs that attempt to reduce how much work the GC must do. See the design in https://go.dev/design/74299-runtime-freegc This CL adds a better test of assist credit handling when heap objects are being reused after a ...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -644,6 +644,25 @@ func Freegc(p unsafe.Pointer, size uintptr, noscan bool) {\n \tfreegc(p, size, noscan)\n }\n \n+// Expose gcAssistBytes for the current g for testing.\n+func AssistCredit() int64 {\n+\tassistG := getg()\n+\tif assistG.m.curg != nil {\n+\...
2025-11-03T21:40:40
vuejs/vue
69f946b4372fd74a1f2b1b8460fcd06ec8dd0a91
f3a15220c5c1d38a509a80b5be795ac89753f4a3
Fix XHTML incompatibility (fix #5852) (#5853)
[ { "path": "src/platforms/web/util/compat.js", "patch": "@@ -5,7 +5,7 @@ import { inBrowser } from 'core/util/index'\n // check whether current browser encodes a char inside attribute values\n function shouldDecode (content: string, encoded: string): boolean {\n const div = document.createElement('div')\n-...
2017-06-13T13:53:38
denoland/deno
578c0909192f9e9e47e4ec500a57374ca6338103
bf5d44b7fa863e76d392301d7917676571f9d4bf
fix: `is_elf` panic in sui (#31388) Fixes https://github.com/denoland/deno/issues/31378
[ { "path": "Cargo.lock", "patch": "@@ -5792,9 +5792,9 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.10.0\"\n+version = \"0.11.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"6744db763b6e19aff65ebac2c85cf71358b3aae385828fcf0d1e02878ab7767b\"\n...
2025-11-24T16:19:04
mrdoob/three.js
fbd54d51847312ea137cf81d432082c71f2ba460
6bbb05ef6aa0401995fd0bfed3ffb12cd41500d5
fix misspelling (#30175)
[ { "path": "src/materials/nodes/LineDashedNodeMaterial.js", "patch": "@@ -112,7 +112,7 @@ class LineDashedNodeMaterial extends NodeMaterial {\n \t */\n \tsetupVariants( /* builder */ ) {\n \n-\t\tconst offsetNode = this.offsetNode ? float( this.offsetNodeNode ) : materialLineDashOffset;\n+\t\tconst offsetNod...
2024-12-20T14:19:22