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 | deae1ff851f19c0644b9cf1554ccf4899e9d52c6 | c994e5cf48a912d98c1a302375bb9964dba98113 | fix type tests | [
{
"path": "types/options.d.ts",
"patch": "@@ -57,10 +57,10 @@ export interface ComponentOptions<V extends Vue> {\n }\n \n export interface FunctionalComponentOptions {\n+ name?: string;\n props?: string[] | { [key: string]: PropOptions | Constructor | Constructor[] };\n functional: boolean;\n- render(... | 2017-06-13T09:49:52 |
golang/go | fecfcaa4f68a220f47e2c7c8b65d55906dbf8d46 | 5a347b775e051060f6f52ce25ec82a024a3a9365 | runtime: add runtime.freegc to reduce GC work
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 runtime.freegc:
func freegc(ptr unsafe.Pointer, uintptr size, noscan bool)
Memory freed via runtime.freegc is ... | [
{
"path": "src/cmd/link/internal/loader/loader.go",
"patch": "@@ -2464,10 +2464,11 @@ var blockedLinknames = map[string][]string{\n \t// Experimental features\n \t\"runtime.goroutineLeakGC\": {\"runtime/pprof\"},\n \t\"runtime.goroutineleakcount\": {\"runtime/pprof\"},\n+\t\"runtime.freegc\": ... | 2025-11-04T14:33:17 |
mrdoob/three.js | d3b07d6e0709ea8f818c57dd9f8e27f16899ff7c | 2acfeafa0adce2490db0df851c4e75a28f8e8140 | ShadowNode: Ensure background does not influence shadow map. (#30170)
* ShadowNode: Ensure background does not influence shadow map.
* PostProcessingUtils: Fix `resetRendererAndSceneState()`.
* E2E: Update screenshot.
* Update webgpu_shadowmap_opacity.jpg
---------
Co-authored-by: sunag <sunagbrasil@gma... | [
{
"path": "src/nodes/lighting/ShadowNode.js",
"patch": "@@ -16,6 +16,7 @@ import { renderGroup } from '../core/UniformGroupNode.js';\n import { viewZToLogarithmicDepth } from '../display/ViewportDepthNode.js';\n import { objectPosition } from '../accessors/Object3DNode.js';\n import { lightShadowMatrix } fr... | 2024-12-19T22:58:01 |
denoland/deno | 5efe6a5f042daceb12e4f65d2955eadb436d4b8c | f881b2f9a710ceedc2805945f08bfcb0ef09aa73 | fix(lsp): store assigned compiler options for cache files (#31377) | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -1033,6 +1033,8 @@ impl WeakDocumentModuleMap {\n }\n }\n \n+type ScopeInfo = (Option<Arc<Url>>, CompilerOptionsKey);\n+\n #[derive(Debug, Default, Clone)]\n pub struct DocumentModules {\n pub documents: Documents,\n@@ -1044,6 +1046,7 @@ pub struct Document... | 2025-11-24T14:00:31 |
vuejs/vue | dfb014e3d7daacc2e3c59d07f1a53ec3c955d91c | a855dd0564a657a73b7249469490d39817f27cf7 | fix uglify upgrade | [
{
"path": "build/build.js",
"patch": "@@ -46,9 +46,7 @@ function buildEntry (config) {\n const code = bundle.generate(config).code\n if (isProd) {\n var minified = (config.banner ? config.banner + '\\n' : '') + uglify.minify(code, {\n- fromString: true,\n output: {\n- s... | 2017-06-13T09:23:59 |
golang/go | 1a03d0db3f36c1a81a184fa15a54f716569a9972 | cb0d9980f5721715ebb73dd2e580eaa11c2ddee2 | runtime: skip tests for GOEXPERIMENT=arenas that do not handle clobberfree=1
When run with GODEBUG=clobberfree=1, three out of seven of the top-level
tests in runtime/arena_test.go fail with a SIGSEGV inside the
clobberfree function where it is overwriting freed memory
with 0xdeadbeef.
This is not a new problem. For ... | [
{
"path": "src/runtime/arena_test.go",
"patch": "@@ -36,6 +36,11 @@ type largeScalar [UserArenaChunkBytes + 1]byte\n type largePointer [UserArenaChunkBytes/unsafe.Sizeof(&smallPointer{}) + 1]*smallPointer\n \n func TestUserArena(t *testing.T) {\n+\tif Clobberfree() {\n+\t\t// This test crashes with SEGV in ... | 2025-11-05T17:18:49 |
mrdoob/three.js | 428eb72ab58f15f42ac06c61a8bc33fc4cc4bf5c | 86018eb716f9fc161dc3982983324206df4ac177 | SkinningNode: Fix `previousBoneMatrices` (#30161)
* fix previousBoneMatrices
* fix no MRT | [
{
"path": "src/nodes/accessors/SkinningNode.js",
"patch": "@@ -218,7 +218,7 @@ class SkinningNode extends Node {\n \n \t\tconst mrt = builder.renderer.getMRT();\n \n-\t\treturn mrt && mrt.has( 'velocity' );\n+\t\treturn ( mrt && mrt.has( 'velocity' ) ) || builder.object.userData.useVelocity === true;\n \n \... | 2024-12-18T22:14:09 |
denoland/deno | f881b2f9a710ceedc2805945f08bfcb0ef09aa73 | 355d8994b2ab3b4979214d6d47ed70e39a37a92c | fix(ext/node): autopadding behavior on `crypto.Cipheriv` (#31389) | [
{
"path": "ext/node/polyfills/internal/crypto/cipher.ts",
"patch": "@@ -223,7 +223,10 @@ export class Cipheriv extends Transform implements Cipher {\n this.#lazyInitDecoder(encoding);\n \n const buf = new FastBuffer(16);\n- if (this.#cache.cache.byteLength == 0) {\n+ const hasNoBufferedData = ... | 2025-11-24T11:33:57 |
vuejs/vue | 07a37264c3b56952435331983adcf4081390b400 | 47334085a14eb1ed9525598d592038bb57e84db7 | remove reference to refElm after initial patch (fix #5851) | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -65,6 +65,9 @@ export function lifecycleMixin (Vue: Class<Component>) {\n vm.$options._parentElm,\n vm.$options._refElm\n )\n+ // no need for the ref nodes after initial patch\n+ // this prevents keeping a detached DOM ... | 2017-06-09T14:01:36 |
mrdoob/three.js | fd53a1f42f15d8229547f50a70b18ba407f18616 | b70db2a328480adb6734686f3382cdb336f8f228 | Nodes: Document more modules. (#30163)
* Nodes: Document more modules.
* Docs: Fix getter. | [
{
"path": "src/materials/nodes/LineBasicNodeMaterial.js",
"patch": "@@ -4,6 +4,11 @@ import { LineBasicMaterial } from '../LineBasicMaterial.js';\n \n const _defaultValues = /*@__PURE__*/ new LineBasicMaterial();\n \n+/**\n+ * Node material version of `LineBasicMaterial`.\n+ *\n+ * @augments NodeMaterial\n+... | 2024-12-18T19:20:08 |
golang/go | 03ed43988ff7f7671094d8c455532de7f2242e70 | 1bb1f2bf0c07bbc583063a21b324407f7041e316 | cmd/compile: allow multi-field structs to be stored directly in interfaces
If the struct is a bunch of 0-sized fields and one pointer field.
Merged revert-of-revert for 4 CLs.
original revert
681937 695016
693415 694996
693615 695015
694195 694995
Fixes #74092
Update #74888
Update #74908
Update #74935
... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/dec.rules",
"patch": "@@ -97,8 +97,10 @@\n // Helpers for expand calls\n // Some of these are copied from generic.rules\n \n-(IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect [0] (IData x)) => (IData x)\n+(IMake _typ (StructMake ___)) => imakeOfSt... | 2025-06-15T03:10:50 |
denoland/deno | 355d8994b2ab3b4979214d6d47ed70e39a37a92c | 2b20d4aa55ae217d378ba0ddb3644e2c26f9741f | fix: fetch fd leak (#31375)
Solution for: https://github.com/denoland/deno/issues/31080
Modern reqwest (0.12+) can safely share clients across tokio runtimes.
Because it uses the current runtime's executor instead of spawning
background threads.
Using a single shared client prevents resource leaks when worker threads... | [
{
"path": "cli/http_util.rs",
"patch": "@@ -1,14 +1,11 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-use std::collections::HashMap;\n use std::sync::Arc;\n-use std::thread::ThreadId;\n \n use boxed_error::Boxed;\n use deno_cache_dir::file_fetcher::RedirectHeaderParseError;\n use deno_core:... | 2025-11-22T02:27:04 |
mrdoob/three.js | 672d77ab93218a00555331db45ffc19055c1fe59 | 3c421745539653f9b7ddf2dfccf8ac4df33d29f9 | Update AnamorphicNode.js
Fix module name. | [
{
"path": "examples/jsm/tsl/display/AnamorphicNode.js",
"patch": "@@ -1,7 +1,7 @@\n import { RenderTarget, Vector2, TempNode, QuadMesh, NodeMaterial, PostProcessingUtils } from 'three/webgpu';\n import { nodeObject, Fn, float, NodeUpdateType, uv, passTexture, uniform, convertToTexture, vec2, vec3, Loop, mix... | 2024-12-18T10:26:55 |
vuejs/vue | 47334085a14eb1ed9525598d592038bb57e84db7 | a18f879bb34270ba4879c5fe7b78426b0e79131e | prevent data.pendingInsert to keep reference to removed nodes (fix #5839) | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -202,6 +202,7 @@ export function createPatchFunction (backend) {\n function initComponent (vnode, insertedVnodeQueue) {\n if (isDef(vnode.data.pendingInsert)) {\n insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert)\n+ ... | 2017-06-08T04:26:55 |
golang/go | 1bb1f2bf0c07bbc583063a21b324407f7041e316 | 9fd2e4443955127ed360338cb19a5aeba6be1a8c | runtime: put AddCleanup cleanup arguments in their own allocation
Currently, AddCleanup just creates a simple closure that calls
`cleanup(arg)` as the actual cleanup function tracked internally.
However, the argument ends up getting its own allocation. If it's tiny,
then it can also end up sharing a tiny allocation sl... | [
{
"path": "src/runtime/mcleanup.go",
"patch": "@@ -72,8 +72,9 @@ import (\n // pass the object to the [KeepAlive] function after the last point\n // where the object must remain reachable.\n func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n-\t// Explicitly force ptr to escape to the heap... | 2025-11-13T18:29:23 |
denoland/deno | e5c65261d843e7704a57c1b66807d5ae6dd45664 | bcdddb4ea3804074e551361586f5bf93a94e8350 | fix: upgrade denokv_* to 0.13 and rusqlite to 0.27 (#31374)
No functional changes | [
{
"path": "Cargo.lock",
"patch": "@@ -570,24 +570,6 @@ dependencies = [\n \"syn 2.0.87\",\n ]\n \n-[[package]]\n-name = \"bindgen\"\n-version = \"0.71.1\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5f58bf3d7db68cfbac37cfc485a8d711e87e064c3d0fe0435b92f7a407f9d6b3\"\n... | 2025-11-21T15:16:30 |
mrdoob/three.js | 9453444ce5c2c047d520346c20c29524ed808a1c | e92ee2d7aad79a05274560dc2e3535a50ddc66bb | WebGLRenderer: Allow for binding and rendering into a 2d render target mipmap (#29844)
* Allow for binding and rendering into a render target mipmap
* Fix MSRT mipmap rendering | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -1272,7 +1272,7 @@ class WebGLRenderer {\n \n \t\t\t//\n \n-\t\t\tif ( _currentRenderTarget !== null ) {\n+\t\t\tif ( _currentRenderTarget !== null && _currentActiveMipmapLevel === 0 ) {\n \n \t\t\t\t// resolve multisample renderbuffers to a single-sa... | 2024-12-18T03:58:07 |
vuejs/vue | 7b069453edbf7fd03363a63d040396d274a79757 | 48c0c1ceb5819aea4f9f3fce38ac2ed606456cf0 | fix Object.prototype.watch test case | [
{
"path": "test/unit/features/options/extends.spec.js",
"patch": "@@ -46,28 +46,22 @@ describe('Options extends', () => {\n expect(vm.b).toBe(2)\n expect(vm.c).toBe(3)\n })\n-})\n \n-describe('Options extends with Object.prototype.watch', () => {\n- beforeAll(function () {\n+ it('should work wit... | 2017-06-06T06:48:05 |
golang/go | 7a8d0b5d53dc7be331016b6903707aa256e22c2a | 710abf74da2a017423e35e416ab3fd05e6053bf3 | runtime: add debug mode to extend _Grunning-without-P windows
This was suggested in CL 646198, and I tested with it, I forgot to push
it so it wasn't merged. I think it might be worth keeping.
Change-Id: Ibf97d969fe7d0eeb365f5f7b1fbeadea3a1076ab
Reviewed-on: https://go-review.googlesource.com/c/go/+/716580
Reviewed-b... | [
{
"path": "src/runtime/proc.go",
"patch": "@@ -4658,6 +4658,11 @@ func reentersyscall(pc, sp, bp uintptr) {\n \tgp.m.locks--\n }\n \n+// debugExtendGrunningNoP is a debug mode that extends the windows in which\n+// we're _Grunning without a P in order to try to shake out bugs with code\n+// assuming this st... | 2025-10-30T17:24:47 |
denoland/deno | e59d37f3bb93eb70d6e2f87d6baa2e026a7de4d0 | 051dadf42984c9311b7dbc666f1a686e76974301 | ci: fix issue triage workflow (#31362) | [
{
"path": ".github/workflows/issue_triage.yml",
"patch": "@@ -15,6 +15,7 @@ jobs:\n if: github.event_name == 'workflow_dispatch' || (github.event.issue.author_association != 'MEMBER' && github.event.issue.author_association != 'OWNER')\n runs-on: ubuntu-latest\n permissions:\n+ contents: re... | 2025-11-20T17:44:00 |
mrdoob/three.js | d7b6a32d75388c7ba6854d25ec9556cf005daa91 | 23d9a4359b230563fe7143399d364f6adb3c4af0 | TiledLightsNode: Fix cache-key performance (#30130)
* fix lights property reference
* fix normal map tiles
* improve cache-key performance
* cleanup
* Update TiledLightsNode.js
* cleanup
* Update TiledLightsNode.js | [
{
"path": "examples/jsm/tsl/lighting/TiledLightsNode.js",
"patch": "@@ -52,30 +52,36 @@ class TiledLightsNode extends LightsNode {\n \t\tthis.maxLights = maxLights;\n \t\tthis.tileSize = tileSize;\n \n-\t\tthis.bufferSize = null;\n-\t\tthis.lightIndexes = null;\n-\t\tthis.screenTileIndex = null;\n-\t\tthis.... | 2024-12-16T18:58:45 |
vuejs/vue | 48c0c1ceb5819aea4f9f3fce38ac2ed606456cf0 | 7561b94eeb75478fc38d391da2851b91b7ebed4f | Added check in merge strat for watches if child is already an array (fix #5652) (#5653)
* Added check for if child is already an array
If the child is already an array it does not need to be wrapped again.
Fixing #5652
* Added unit test for watch merge strat
* Moved test to own describe
* Added test for m... | [
{
"path": "src/core/util/options.js",
"patch": "@@ -172,7 +172,7 @@ strats.watch = function (parentVal: ?Object, childVal: ?Object): ?Object {\n }\n ret[key] = parent\n ? parent.concat(child)\n- : [child]\n+ : Array.isArray(child) ? child : [child]\n }\n return ret\n }",
"add... | 2017-06-06T05:48:31 |
golang/go | a0e738c657d33e2a648838546812fb50cf42e41d | 2cdcc4150bc577e0b40a9cedaaa7c8301f2860cd | cmd/compile/internal: remove incorrect riscv64 SLTI rule
The rule
(SLTI [x] (ORI [y] _)) && y >= 0 && int64(y) >= int64(x) => (MOVDconst [0])
is incorrect as it only generates correct code if the unknown value
being compared is >= 0. If the unknown value is < 0 the rule will
incorrectly produce a constant value of... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/RISCV64.rules",
"patch": "@@ -792,7 +792,6 @@\n // SLTI/SLTIU with known outcomes.\n (SLTI [x] (ANDI [y] _)) && y >= 0 && int64(y) < int64(x) => (MOVDconst [1])\n (SLTIU [x] (ANDI [y] _)) && y >= 0 && uint64(y) < uint64(x) => (MOVDconst [1])\n-(SLTI [x] (ORI [... | 2025-11-13T11:28:29 |
mrdoob/three.js | ec02bf7aaa2dbff91171aeb19eda8eafdd2b0ea3 | 53711ab0c324a1f9c9800f5acfb09c6a45c12ef4 | WebGPURenderer: fix cameraHelper (#30136)
* fix camera helper
* Updated screenshot.
---------
Co-authored-by: Mugen87 <michael.herzog@human-interactive.org> | [
{
"path": "examples/files.json",
"patch": "@@ -299,6 +299,7 @@\n \t\t\"webgpu_backdrop\",\n \t\t\"webgpu_backdrop_area\",\n \t\t\"webgpu_backdrop_water\",\n+\t\t\"webgpu_camera\",\n \t\t\"webgpu_camera_logarithmicdepthbuffer\",\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_clipping\",",
"additions": 1,
... | 2024-12-16T16:15:20 |
vuejs/vue | 68522cfdef34ef49157a66e09b6b7422587e2c04 | 13bb643d6fa6a2dba61b5ee191548cc9086cc602 | fix:the placeholder key in undefined when render async component (#5828) | [
{
"path": "src/platforms/web/runtime/components/transition.js",
"patch": "@@ -140,7 +140,9 @@ export default {\n // during entering.\n const id: string = `__transition-${this._uid}-`\n child.key = child.key == null\n- ? id + child.tag\n+ ? child.isComment\n+ ? id + 'comment'\n+ ... | 2017-06-06T01:37:06 |
golang/go | b57962b7c7de2b70fa943e66cd26b2cce631b7f8 | 0a569528ea355099af864f7612c3fa1973df30e4 | bytes: fix panic in bytes.Buffer.Peek
This change fixed the overlooked offset in bytes.Buffer.Peek.
Otherwise, it will either return wrong result or panic with
"runtime error: slice bounds out of range".
Change-Id: Ic42fd8a27fb9703c51430f298933b91cf0d45451
GitHub-Last-Rev: fb97ebc3b188959835706626f66898d6306c16fb
Git... | [
{
"path": "src/bytes/buffer.go",
"patch": "@@ -86,7 +86,7 @@ func (b *Buffer) Peek(n int) ([]byte, error) {\n \tif b.Len() < n {\n \t\treturn b.buf[b.off:], io.EOF\n \t}\n-\treturn b.buf[b.off:n], nil\n+\treturn b.buf[b.off : b.off+n], nil\n }\n \n // empty reports whether the unread portion of the buffer i... | 2025-11-13T01:43:03 |
denoland/deno | f61f5ffe7bd53bc71acc8ec5aa45b05736407201 | c935fb494a9bdfc3dcf288c4610d6c989f7d694f | fix(ext/node): `StatementSync.iterate()` should reset `is_iter_finished` flag on every call (#31361) | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -576,7 +576,7 @@ impl DatabaseSync {\n use_big_ints: Cell::new(false),\n allow_bare_named_params: Cell::new(true),\n allow_unknown_named_params: Cell::new(false),\n- is_iter_finished: false,\n+ is_iter_finished: Cell::new(... | 2025-11-20T16:22:26 |
mrdoob/three.js | 169825313fc90819ebbb0678e9d765504c4b88bc | b367df14a1c0b35de4dd3670b10f0ce685d6f3c8 | WebGPURenderer: Fix getArrayBufferAsync in WebGPUBackend (#30132) | [
{
"path": "examples/webgpu_compute_audio.html",
"patch": "@@ -35,9 +35,9 @@\n \t\t\timport { GUI } from 'three/addons/libs/lil-gui.module.min.js';\n \n \t\t\tlet camera, scene, renderer;\n-\t\t\tlet computeNode;\n+\t\t\tlet computeNode, computeResetNode;\n \t\t\tlet waveBuffer, sampleRate;\n-\t\t\tlet waveA... | 2024-12-16T16:03:14 |
vuejs/vue | c3cdfcfa68126783307d74fca22b136cd41c474a | b4dd0be4fc20eb51681c9cf50189081fc8117e14 | fix out-in transition for async components (fix #5760) | [
{
"path": "src/platforms/web/runtime/components/transition.js",
"patch": "@@ -72,19 +72,23 @@ function isSameChild (child: VNode, oldChild: VNode): boolean {\n return oldChild.key === child.key && oldChild.tag === child.tag\n }\n \n+function isAsyncPlaceholder (node: VNode): boolean {\n+ return node.isCo... | 2017-06-05T11:01:23 |
denoland/deno | 491274d6edce1993ab0a2d39a16bc79e663abb88 | dbe35b03fbf8732adcd95efecc07af7c8ca141f7 | fix(ext/node): implement `dns.lookupService` (#31310)
Closes #26300
Allows the following node compatibility tests to pass:
-
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-dns-lookupService-promises.js
-
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-dns-lookupService.js
<!-- This is ... | [
{
"path": "Cargo.lock",
"patch": "@@ -2519,6 +2519,7 @@ dependencies = [\n \"sha3\",\n \"signature\",\n \"sm3\",\n+ \"socket2 0.5.5\",\n \"spki\",\n \"sys_traits\",\n \"thiserror 2.0.12\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "ext/node/Cargo.toml",
... | 2025-11-20T11:12:26 |
golang/go | 9daaab305c4d1dede9e4f6efdc5e1268a69327e6 | d50a571ddfb7661d65c8488b0bbfeacc793f964b | cmd/link/internal/ld: make runtime.buildVersion with experiments valid
Specifically if there are experiments but no nonstandard toolchain
suffix such as "-devel", the go version will not be valid according to
go/version.IsValid. To fix that, always put the X: part into the suffix,
resulting in, for example, go1.25.0-X... | [
{
"path": "src/cmd/go/internal/cache/hash.go",
"patch": "@@ -51,6 +51,9 @@ func stripExperiment(version string) string {\n \tif i := strings.Index(version, \" X:\"); i >= 0 {\n \t\treturn version[:i]\n \t}\n+\tif i := strings.Index(version, \"-X:\"); i >= 0 {\n+\t\treturn version[:i]\n+\t}\n \treturn versio... | 2025-11-11T18:54:52 |
vuejs/vue | da1fc3ddc97fb78621f518d03c549ebecc9b1108 | 11b7d5dff276caa54da3ef5b52444c0e2c5bbf41 | improve: add missing html and svg tag (#5688)
* imporve: add missing html and svg tag
* reivew
* fix: review | [
{
"path": "src/platforms/web/util/element.js",
"patch": "@@ -19,7 +19,7 @@ export const isHTMLTag = makeMap(\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n- 'content,element,shadow,temp... | 2017-05-30T05:33:48 |
mrdoob/three.js | b367df14a1c0b35de4dd3670b10f0ce685d6f3c8 | 2376e3ca233339f371b3f3c0b399eea9c14bf854 | Node: Document more modules. (#30135)
* Node: Document more modules.
* Clean up.
* Node: Document more modules.
* Fix E2E. | [
{
"path": "examples/jsm/tsl/display/AfterImageNode.js",
"patch": "@@ -1,11 +1,18 @@\n import { RenderTarget, Vector2, QuadMesh, NodeMaterial, PostProcessingUtils, TempNode, NodeUpdateType } from 'three/webgpu';\n import { nodeObject, Fn, float, vec4, uv, texture, passTexture, uniform, sign, max, convertToTe... | 2024-12-16T11:41:30 |
denoland/deno | dbe35b03fbf8732adcd95efecc07af7c8ca141f7 | 030826f589ba5df03454ad3d3827cafaa29c1635 | fix(node): stub missing process.sourceMapsEnabled (#31358)
See https://nodejs.org/api/process.html#processsourcemapsenabled
This fixes an issue in Fresh with vite's environment API which relies on
this property to check if vite should map stack traces
https://github.com/vitejs/vite/blob/main/packages/vite/src/module-... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -756,6 +756,15 @@ process.setSourceMapsEnabled = (_val: boolean) => {\n // TODO(@satyarohith): support disabling source maps if needed.\n };\n \n+// Source maps are always enabled in Deno.\n+Object.defineProperty(process, \"sourceMapsEnabled\", {\n+ ... | 2025-11-20T09:39:24 |
golang/go | d50a571ddfb7661d65c8488b0bbfeacc793f964b | 704f841eab87462d4eefac07345c96f71fb6e964 | test: fix tests to work with sizespecializedmalloc turned off
Cq-Include-Trybots: luci.golang.try:gotip-linux-386-nosizespecializedmalloc,gotip-linux-amd64-nosizespecializedmalloc,gotip-linux-arm64-nosizespecializedmalloc
Change-Id: I6a6a696465004b939c989afc058c4c3e1fb7134f
Reviewed-on: https://go-review.googlesource.... | [
{
"path": "test/codegen/strings.go",
"patch": "@@ -23,7 +23,7 @@ func CountBytes(s []byte) int {\n \n func ToByteSlice() []byte { // Issue #24698\n \t// amd64:`LEAQ type:\\[3\\]uint8`\n-\t// amd64:`CALL runtime\\.mallocTiny3`\n+\t// amd64:`CALL runtime\\.(newobject|mallocTiny3)`\n \t// amd64:-`.*runtime.str... | 2025-11-13T22:04:54 |
vuejs/vue | 11b7d5dff276caa54da3ef5b52444c0e2c5bbf41 | b182ac40697edbe8253d4bd68b6ac09e93259e1c | Add handleError during event handling (#5709)
* Add handleError during event handling
Currently handleError is used to handle errors during lifecycle hooks.
This commit adds this functionality in to the event handling for
consistency.
* style tweak | [
{
"path": "src/core/instance/events.js",
"patch": "@@ -1,7 +1,13 @@\n /* @flow */\n \n+import {\n+ tip,\n+ toArray,\n+ hyphenate,\n+ handleError,\n+ formatComponentName\n+} from '../util/index'\n import { updateListeners } from '../vdom/helpers/index'\n-import { toArray, tip, hyphenate, formatComponent... | 2017-05-29T06:24:25 |
mrdoob/three.js | 1a822003611efdbd6d2213809af0d276fe5403f0 | 2eff8e9dfe5b4b03aac2c3217905d8969ea2be57 | Manual: Improve post processing guide. (#30098)
* doc: Update post-processing.html
Comparing the relevant example file, I found that there is an error here
It is not clear how the document was generated, I found that other related translation documents also have this error
* Update post-processing.html
* Upd... | [
{
"path": "manual/en/post-processing.html",
"patch": "@@ -154,10 +154,10 @@ <h2 id=\"-rendertoscreen-\"><code class=\"notranslate\" translate=\"no\">renderToScree\n <p>Looking inside\n <a href=\"https://github.com/mrdoob/three.js/blob/master/examples/jsm/postprocessing/BloomPass.js\"><code class=\"notransla... | 2024-12-12T22:50:07 |
denoland/deno | 931a5c75b32a6a0803c8084d3f48c755cb6fe68f | 699056eba590ec803e86da6aadaeefd41b85d1c5 | fix(cli): put tasks first in zsh dynamic completions (#31350)
It's kind of annoying because it requires copying some code from clap,
but it's the only solution I could find | [
{
"path": "Cargo.lock",
"patch": "@@ -1700,6 +1700,7 @@ dependencies = [\n \"serde_repr\",\n \"sha2\",\n \"shell-escape\",\n+ \"shlex\",\n \"spki\",\n \"sqlformat\",\n \"strsim\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "Cargo.toml",
"patch": "@@ -2... | 2025-11-20T08:42:31 |
mrdoob/three.js | 3c2c9303fae36a2289374753e010374477104c4f | a8aaca32f614a0e8662c5588edfed2c61ab81ed7 | Line2NodeMaterial: Fix usage of optional nodes. (#30107)
* Line2NodeMaterial: fix gap
* Update PerspectiveCamera.js
---------
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "src/materials/nodes/Line2NodeMaterial.js",
"patch": "@@ -100,7 +100,7 @@ class Line2NodeMaterial extends NodeMaterial {\n \t\t\tif ( useDash ) {\n \n \t\t\t\tconst dashScaleNode = this.dashScaleNode ? float( this.dashScaleNode ) : materialLineScale;\n-\t\t\t\tconst offsetNode = this.offsetNode ? ... | 2024-12-11T21:20:15 |
vuejs/vue | b182ac40697edbe8253d4bd68b6ac09e93259e1c | e274c96881f8b14486587e93f404be489454d781 | Warn when a inject has been not provided (#5681)
* warn when a inject has been not provided
* typo
* typo
* fix when undefined is provided
* use util hasOwn
* refactor
* test case
* Revert "test case"
This reverts commit 08f0a8b6c3837fc34ddd264712b8c30a05c165e5.
* test case | [
{
"path": "src/core/instance/inject.js",
"patch": "@@ -3,6 +3,7 @@\n import { hasSymbol } from 'core/util/env'\n import { warn } from '../util/index'\n import { defineReactive } from '../observer/index'\n+import { hasOwn } from 'shared/util'\n \n export function initProvide (vm: Component) {\n const provi... | 2017-05-29T05:49:49 |
denoland/deno | 82eba477fbea8a11127bf2a678413be24e0857a0 | 3c0f2890ebfdfc619a3133debb64a2dd68d59920 | feat: add `--ignore-env=...` (#31187)
Adds the ability to ignore certain environment variables and return
`undefined` instead of erroring. | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -814,6 +814,7 @@ pub struct PermissionFlags {\n pub allow_all: bool,\n pub allow_env: Option<Vec<String>>,\n pub deny_env: Option<Vec<String>>,\n+ pub ignore_env: Option<Vec<String>>,\n pub allow_ffi: Option<Vec<String>>,\n pub deny_ffi: Option<Vec<Stri... | 2025-11-19T15:49:06 |
mrdoob/three.js | a8aaca32f614a0e8662c5588edfed2c61ab81ed7 | a93ab32bd3b6e28a0135283a6197ed40c4ceb07f | Node: fix types (#30103)
* Node: fix types
* Improve types
* Fix more types
* Update UniformNode.js
* Update PassNode.js
* Update AnalyticLightNode.js
* Update MathNode.js
* Update MathNode.js
---------
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com>
Co-authored-by: Michael Herzog <m... | [
{
"path": "src/nodes/accessors/ReferenceNode.js",
"patch": "@@ -172,7 +172,7 @@ class ReferenceNode extends Node {\n \t\tthis.group = null;\n \n \t\t/**\n-\t\t * An optinal label of the internal uniform node.\n+\t\t * An optional label of the internal uniform node.\n \t\t *\n \t\t * @type {String?}\n \t\t *... | 2024-12-11T19:44:37 |
vuejs/vue | e6de9a5de28d466b5d4e57e6d5d3baf13d8349b0 | d333a498e93acf2d2844fd396e8544658958a3c6 | Add types for vue-server-renderer (fix #5772) (#5775)
* add types for vue-server-renderer
* add a new line to the end of files
* make RenderCallback's err to be nullable
* fix the server side directive types
* make stricter the types of the server bundle and the client manifest | [
{
"path": "packages/vue-server-renderer/package.json",
"patch": "@@ -3,6 +3,7 @@\n \"version\": \"2.3.3\",\n \"description\": \"server renderer for Vue 2.0\",\n \"main\": \"index.js\",\n+ \"types\": \"types/index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://gith... | 2017-05-28T12:08:58 |
mrdoob/three.js | a93ab32bd3b6e28a0135283a6197ed40c4ceb07f | 80b79914282e58b0217f73b2e0769bc43a620d04 | TSL: Fix `positionWorld` used in `material.positionNode` and `fragment-stage` (#30105)
* fix `positionWorld` used in `positionNode` and fragment-stage
* update merge dev
* revision | [
{
"path": "src/materials/nodes/NodeMaterial.js",
"patch": "@@ -352,7 +352,7 @@ class NodeMaterial extends Material {\n \n \t\tif ( this.positionNode !== null ) {\n \n-\t\t\tpositionLocal.assign( this.positionNode );\n+\t\t\tpositionLocal.assign( this.positionNode.context( { isPositionNodeInput: true } ) );\... | 2024-12-11T17:45:23 |
denoland/deno | 3c0f2890ebfdfc619a3133debb64a2dd68d59920 | 8c6141697e258d6cbdd6e62e0ab680669fe762b9 | fix(ext/node): segfault on calling `StatementSync` methods after connection has closed (#31331)
Previously, running this code causes segfault:
```ts
import { DatabaseSync } from "node:sqlite";
const db = new DatabaseSync(':memory:');
const stmt = db.prepare('SELECT 1 AS value');
db.close();
stmt.get(); // segmentatio... | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -30,6 +30,7 @@ use super::Session;\n use super::SqliteError;\n use super::StatementSync;\n use super::session::SessionOptions;\n+use super::statement::InnerStatementPtr;\n use super::statement::check_error_code2;\n use super::validators;\n \n@@ -230,... | 2025-11-19T01:56:09 |
mrdoob/three.js | 6a4309b6e2a4b7cfb6dffe94f372df632cf35b6d | de859295a214bac0ecb2da1bdccf4383c5104716 | Node: Document more modules. (#30100)
* Node: Document more modules.
* Fix typo. | [
{
"path": "src/nodes/accessors/Camera.js",
"patch": "@@ -2,11 +2,60 @@ import { uniform } from '../core/UniformNode.js';\n import { renderGroup } from '../core/UniformGroupNode.js';\n import { Vector3 } from '../../math/Vector3.js';\n \n+/** @module Camera **/\n+\n+/**\n+ * TSL object that represents the `n... | 2024-12-11T13:26:44 |
denoland/deno | 8c6141697e258d6cbdd6e62e0ab680669fe762b9 | 90ef8527e4cb2b5671524f9f2b6e953eec40bf3b | fix: update permission-broker-response.v1.json (#31328)
It specified "grant" instead of "allow" by mistake. | [
{
"path": "cli/schemas/permission-broker-response.v1.json",
"patch": "@@ -12,7 +12,7 @@\n \"result\": {\n \"description\": \"The result of the check, tells Deno if the request should be granted or rejected\",\n \"enum\": [\n- \"grant\",\n+ \"allow\",\n \"deny\"\n ... | 2025-11-18T14:27:23 |
golang/go | ff61991aed2871301e3f4fafff65fd67d6b170b5 | 129d0cb543e1e15cdea706dd7230ee90c8d54446 | cmd/go: fix flaky TestScript/mod_get_direct
Use our local git server instead of cloud.google.com/go,
which may go down or otherwise reject our traffic.
I built and installed git 2.23.0 and confirmed that this
updated test still fails if CL 196961 is rolled back.
So the test is still accurate at detecting the problem.... | [
{
"path": "src/cmd/go/testdata/script/mod_get_direct.txt",
"patch": "@@ -2,14 +2,14 @@\n # 'GOPROXY=direct go get golang.org/x/tools/gopls@master' did not correctly\n # resolve the pseudo-version for its dependency on golang.org/x/tools.\n \n-[!net:cloud.google.com] skip\n+[short] skip\n [!git] skip\n \n en... | 2025-11-13T19:33:53 |
mrdoob/three.js | c797bc2aba9ccfbd0e78cb857a200d26722a5b40 | 0eae2928693d40c1bde4cc20dde75ada985f8cbf | Eslint: fix more JSDocs (#30093)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "editor/js/commands/AddObjectCommand.js",
"patch": "@@ -1,13 +1,13 @@\n import { Command } from '../Command.js';\n import { ObjectLoader } from 'three';\n \n-/**\n- * @param editor Editor\n- * @param object THREE.Object3D\n- * @constructor\n- */\n class AddObjectCommand extends Command {\n \n+\t/*... | 2024-12-10T20:37:43 |
denoland/deno | 5b53514e8ac2179f7e82b0319d99287c7df0a461 | e935523541a62d455a202cd02f9bf1d009ca3803 | fix(node): ensure process.argv is an array of strings (#31322)
This PR resolves #30964 where process.argv returned getter functions
rather than string values.
---------
Co-authored-by: Daniel Rahmanto <daniel.rahmanto@gmail.com> | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -1015,18 +1015,6 @@ function synchronizeListeners() {\n }\n }\n \n-// Overwrites the 1st and 2nd items with getters.\n-Object.defineProperty(argv, \"0\", { get: () => argv0 });\n-Object.defineProperty(argv, \"1\", {\n- get: () => {\n- if (Deno.ma... | 2025-11-18T09:39:00 |
vuejs/vue | f3757eb37bfe38cb2e8d87983a1f83d31ea9d30a | 05195b862528e7e6c48bc4183cec41114d43b2d6 | feat: Add `defer` to body scripts (#5704)
* fix: prefetch should not have `as` attribute
* feat: Add `async` to body script tags
* Use defer instead of async
* Use defer instead of async | [
{
"path": "src/server/template-renderer/index.js",
"patch": "@@ -209,7 +209,7 @@ export default class TemplateRenderer {\n const async = this.getUsedAsyncFiles(context)\n const needed = [initial[0]].concat(async || [], initial.slice(1))\n return needed.filter(isJS).map(file => {\n- ... | 2017-05-22T09:47:55 |
mrdoob/three.js | 8ac75e92654f546e8f03824bb153a4b83b0b0489 | 0338a819645354bc02b25ad93ae6ee0c9cff0897 | WebGPURenderer: Fix Hardware Clipping issues (#30083)
* WebGPURenderer: Fix Hardware Clipping with vertexNode
* fix compilation missing argument | [
{
"path": "src/materials/nodes/NodeMaterial.js",
"patch": "@@ -110,6 +110,8 @@ class NodeMaterial extends Material {\n \n \t\tbuilder.stack.outputNode = this.vertexNode || this.setupPosition( builder );\n \n+\t\tthis.setupHardwareClipping( builder );\n+\n \t\tif ( this.geometryNode !== null ) {\n \n \t\t\tb... | 2024-12-10T11:34:39 |
golang/go | 129d0cb543e1e15cdea706dd7230ee90c8d54446 | 77c5130100ac1b29bb2e04d0f5f99e200136c0af | net/http/cgi: accept INCLUDED as protocol for server side includes
The existing protocol check for fcgi/cgi requests did not properly
account for Apache SSI (Server-Side Includes) SERVER_PROTOCOL value of
INCLUDED.
Added check for well-known INCLUDED value for proper implementation of
the CGI Spec as specified in RFC... | [
{
"path": "src/net/http/cgi/child.go",
"patch": "@@ -57,8 +57,11 @@ func RequestFromMap(params map[string]string) (*http.Request, error) {\n \n \tr.Proto = params[\"SERVER_PROTOCOL\"]\n \tvar ok bool\n-\tr.ProtoMajor, r.ProtoMinor, ok = http.ParseHTTPVersion(r.Proto)\n-\tif !ok {\n+\tif r.Proto == \"INCLUDE... | 2025-10-28T16:26:26 |
vuejs/vue | f061d802d36a5f88a4b37c598fe4b4c17ab5f238 | 55d8bfd6fdda38f31b17cffa07e5ab743c9f2670 | fix v-if false rendering | [
{
"path": "src/server/optimizing-compiler/codegen.js",
"patch": "@@ -135,7 +135,7 @@ function elementToSegments (el, state): Array<StringSegment> {\n el.ifProcessed = true\n return [{\n type: EXPRESSION,\n- value: genIf(el, state, elementToString, '\"\"')\n+ value: genIf(el, state, e... | 2017-05-18T08:53:35 |
denoland/deno | e935523541a62d455a202cd02f9bf1d009ca3803 | ccc9aba580edcf5058a5f11d1deb3ff94cdb44b1 | fix(bundle): Deno.bundle work in Worker (#31316)
Currently, `Deno.bundle` throws exception in a `Worker`.
```
error: Uncaught (in worker "") (in promise) Error: default BundleProvider does not do anything
```
This PR passes the clone of BundleProvider to workers.
---
minimum reproduction:
```ts
#! /usr/bin/env -S d... | [
{
"path": "cli/lib/worker.rs",
"patch": "@@ -462,6 +462,7 @@ impl<TSys: DenoLibSys> LibWorkerFactorySharedState<TSys> {\n shared.npm_process_state_provider.clone(),\n ),\n permissions: args.permissions,\n+ bundle_provider: shared.bundle_provider.clone(),\n };\n l... | 2025-11-18T02:41:16 |
mrdoob/three.js | 0338a819645354bc02b25ad93ae6ee0c9cff0897 | 8d556641f54b9902037c58d40860d2d000f53953 | WebGPURenderer: Fix support for non-indexed BatchedMesh (#30084)
* WebGPURenderer: Fix support for non-indexed BatchedMesh
* simplify code | [
{
"path": "src/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -976,14 +976,20 @@ class WebGPUBackend extends Backend {\n \t\t\tconst drawCount = object._multiDrawCount;\n \t\t\tconst drawInstances = object._multiDrawInstances;\n \n-\t\t\tconst bytesPerElement = hasIndex ? index.array.BYTES_PER_ELEMENT : 1... | 2024-12-10T11:34:21 |
golang/go | 028375323f39b2d59bae0abfe20ba187c42bcf16 | 4ebf295b0b1740caac6302cc824ebd0f6175c1d5 | cmd/go/internal/modfetch/codehost: fix flaky TestReadZip
In normal use by the go command, ReadZip always happens after Stat,
which makes sure that the relevant revision has been fetched to
local disk. But TestReadZip calls ReadZip directly, and ReadZip was not
ensuring that fetch had happened.
This made 'go test' pas... | [
{
"path": "src/cmd/go/internal/modfetch/codehost/vcs.go",
"patch": "@@ -624,15 +624,20 @@ func (r *vcsRepo) ReadZip(ctx context.Context, rev, subdir string, maxSize int64\n \t\treturn nil, vcsErrorf(\"vcs %s: ReadZip: %w\", r.cmd.vcs, errors.ErrUnsupported)\n \t}\n \n+\tif rev == \"latest\" {\n+\t\trev = r.... | 2025-11-13T16:43:55 |
vuejs/vue | 66387a46398b020eded55c4529a21e1c0f451dfb | 41acdc0ff145653cf3a86a4f108fae3125ad291a | fix enumerated/boolean attr | [
{
"path": "src/server/optimizing-compiler/modules.js",
"patch": "@@ -11,6 +11,11 @@ import {\n isRenderableAttr\n } from 'web/server/util'\n \n+import {\n+ isBooleanAttr,\n+ isEnumeratedAttr\n+} from 'web/util/attrs'\n+\n import type { StringSegment } from './codegen'\n import type { CodegenState } from... | 2017-05-18T08:19:37 |
denoland/deno | ccc9aba580edcf5058a5f11d1deb3ff94cdb44b1 | 5421a29944287ee015edb2461488a64f1eaea412 | fix(node/assert): deepStrictEqual now correctly handles Number objects (#31233)
Fixes #31172
## Description
The `deepStrictEqual` function was using `asserts.equal()` which doesn't
properly handle boxed primitives like Number objects. Changed it to use
`isDeepStrictEqual()` from `comparisons.ts` which correctly hand... | [
{
"path": "ext/node/polyfills/assert.ts",
"patch": "@@ -16,7 +16,10 @@ import {\n ERR_INVALID_RETURN_VALUE,\n ERR_MISSING_ARGS,\n } from \"ext:deno_node/internal/errors.ts\";\n-import { isDeepEqual } from \"ext:deno_node/internal/util/comparisons.ts\";\n+import {\n+ isDeepEqual,\n+ isDeepStrictEqual,\... | 2025-11-18T02:02:21 |
mrdoob/three.js | dc3441263e30eda6b09f320b66108251f0a9d5bc | 047f7d78e88c4118e141350d2ab61e077af374e5 | WebGPURenderer: Fix blending opacity in shadows (#30081)
* fix blending opacity in shadows
* cleanup
* Update webgpu_shadowmap_opacity.jpg
* Update webgpu_shadowmap_opacity.jpg | [
{
"path": "src/nodes/lighting/ShadowNode.js",
"patch": "@@ -11,7 +11,7 @@ import NodeMaterial from '../../materials/nodes/NodeMaterial.js';\n import QuadMesh from '../../renderers/common/QuadMesh.js';\n import { Loop } from '../utils/LoopNode.js';\n import { screenCoordinate } from '../display/ScreenNode.js... | 2024-12-10T00:42:48 |
golang/go | 4ebf295b0b1740caac6302cc824ebd0f6175c1d5 | 625d8e9b9cd7ede188a8856c5ac88791333baa63 | runtime: prefer to restart Ps on the same M after STW
Today, Ps jump around arbitrarily across STW. Instead, try to keep the P
on the previous M it ran on. In the future, we'll likely want to try to
expand this beyond STW to create a more general affinity for specific
Ms.
For this to be useful, the Ps need to have ru... | [
{
"path": "src/internal/trace/testtrace/helpers.go",
"patch": "@@ -16,8 +16,7 @@ import (\n \t\"testing\"\n )\n \n-// MustHaveSyscallEvents skips the current test if the current\n-// platform does not support true system call events.\n+// Dump saves the trace to a file or the test log.\n func Dump(t *testin... | 2025-10-24T19:14:59 |
vuejs/vue | 41acdc0ff145653cf3a86a4f108fae3125ad291a | 2f4ad14d9f010054178e3a02d0044e8ac8f5d5ce | fix v-html/v-text on root element | [
{
"path": "src/server/optimizing-compiler/optimizer.js",
"patch": "@@ -60,8 +60,7 @@ function walk (node: ASTNode, isRoot?: boolean) {\n }\n }\n if (node.ssrOptimizability == null ||\n- node.attrsMap['v-html'] ||\n- node.attrsMap['v-text']\n+ (!isRoot && (node.attrsMap['v-html']... | 2017-05-18T08:07:49 |
denoland/deno | 8b31587bb4df1676a3d4339bd908c7c044f1d6db | 74eff7bcd40c339f79cf47767b2912737e8db013 | ci: fix 'promote_to_release' script for windows (#31321)
Closes https://github.com/denoland/deno/issues/31320 | [
{
"path": ".github/workflows/promote_to_release.yml",
"patch": "@@ -66,7 +66,7 @@ jobs:\n trusted-signing-account-name: deno-cli-code-signing\n certificate-profile-name: deno-cli-code-signing-cert\n files-folder: .\n- files-folder-filter: deno-x86_64-pc-windows-msvc-${... | 2025-11-17T16:38:19 |
mrdoob/three.js | 915b1d6799a2130fc38b29961f0224f0c0a88274 | fa8e6a15d759421faaeed21789be80a23b7aa586 | Nodes: fix type errors (#30079)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "src/nodes/core/NodeCache.js",
"patch": "@@ -24,7 +24,7 @@ class NodeCache {\n \t\t/**\n \t\t * A weak map for managing node data.\n \t\t *\n-\t\t * @type {WeakMap}\n+\t\t * @type {WeakMap<Node, Object>}\n \t\t */\n \t\tthis.nodesData = new WeakMap();\n ",
"additions": 1,
"deletions": 1,
... | 2024-12-09T21:31:42 |
golang/go | 625d8e9b9cd7ede188a8856c5ac88791333baa63 | 4684a26c2606eae5ec3d06d17f66a66374315a47 | runtime/pprof: fix goroutine leak profile tests for noopt
The goroutine leak profile tests currently rely on a function being
inlined, which results in a slightly different representation in the
pprof proto. This function is not inlined on the noopt builder.
Disable inlining of the one function which could be inlined... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -1569,6 +1569,9 @@ func containsCountsLabels(prof *profile.Profile, countLabels map[int64]map[strin\n \treturn true\n }\n \n+// Inlining disabled to make identification simpler.\n+//\n+//go:noinline\n func goroutineLeakExample() {\n \t<-make(chan str... | 2025-11-13T00:09:05 |
vuejs/vue | 24bde02e5b49aea5fb7d854e2df3af15f5e3d783 | bdd3f5d05d851d44f0d4a0a6aaabf48e2481e918 | fix ssrNode children normalization | [
{
"path": "src/server/optimizing-compiler/codegen.js",
"patch": "@@ -57,8 +57,6 @@ function genSSRElement (el: ASTElement, state: CodegenState): string {\n return genSSRChildren(el, state) || 'void 0'\n }\n \n- // TODO optimize merge sibling nodes\n-\n switch (el.ssrOptimizability) {\n case opt... | 2017-05-18T05:44:17 |
denoland/deno | 74eff7bcd40c339f79cf47767b2912737e8db013 | 4bf3510052fd0aadebd94d00819e44563cbff270 | fix(ext/node): sqlite `setAllowUnknownNamedParameters` error message (#31319)
Allows
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-sqlite-named-parameters.js
to pass.
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
* **Bug Fixes**
* Corrected an e... | [
{
"path": "ext/node/ops/sqlite/validators.rs",
"patch": "@@ -110,7 +110,7 @@ pub(super) fn allow_unknown_named_params_bool(\n }\n \n Err(Error::InvalidArgType(\n- \"The \\\"allowUnknownNamedParameters\\\" argument must be a boolean.\",\n+ \"The \\\"enabled\\\" argument must be a boolean.\",\n ))... | 2025-11-17T16:04:13 |
mrdoob/three.js | fe970a4c2c22be04cfa899d1efabfdd30644bb12 | 4f25a3195afaab6e4fdff7b44264587f0098dd71 | Editor: Fix vertex normals helper regression. (#30069) | [
{
"path": "editor/js/Sidebar.Geometry.js",
"patch": "@@ -300,7 +300,7 @@ function SidebarGeometry( editor ) {\n \n \t\t\tconst helper = editor.helpers[ object.id ];\n \n-\t\t\tif ( helper !== undefined ) {\n+\t\t\tif ( helper !== undefined && helper.isVertexNormalsHelper === true ) {\n \n \t\t\t\teditor.rem... | 2024-12-08T22:28:31 |
golang/go | 4684a26c2606eae5ec3d06d17f66a66374315a47 | 0f9c8fb29dfe70f3688bda95cb6cb38dfa7fff9f | spec: remove cycle restriction for type parameters
Fixes #75883.
Change-Id: I708c0594ef3182d3aca37a6358aa0a0ef89809b6
Reviewed-on: https://go-review.googlesource.com/c/go/+/711422
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit: Robert Griesemer <gri@google.c... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Nov 9, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 12, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2686,22 +2686,6 ... | 2025-10-13T23:57:34 |
vuejs/vue | 7cf1e654a6bf903b17fba12025bbf298ce0d2a6b | 9fbca0dc792e94eb775a8f08694a04963dc20e07 | fix root node optimizability | [
{
"path": "src/server/optimizing-compiler/codegen.js",
"patch": "@@ -99,7 +99,7 @@ function genStringElement (el, state, stringifyChildren) {\n const children = genSSRChildren(el, state, true)\n return `_ssrNode(${\n flattenSegments(elementToOpenTagSegments(el, state))\n- }\",\"${el.tag}\"$... | 2017-05-17T08:41:22 |
mrdoob/three.js | 4f25a3195afaab6e4fdff7b44264587f0098dd71 | 19bdc3a10025eca6057c6433bf3e83edb364dbc4 | PMREMGenerator: Fix `fromScene()` back-side materials (#30063)
* Fix `fromScene()` back-side materials
* Update PMREMGenerator.js
* Update PMREMGenerator.js | [
{
"path": "src/nodes/pmrem/PMREMNode.js",
"patch": "@@ -297,6 +297,8 @@ class PMREMNode extends TempNode {\n \n \t\t}\n \n+\t\tuvNode = vec3( uvNode.x, uvNode.y.negate(), uvNode.z );\n+\n \t\t//\n \n \t\tlet levelNode = this.levelNode;",
"additions": 2,
"deletions": 0,
"language": "JavaScript"
... | 2024-12-08T15:48:19 |
denoland/deno | b6f567946baf9e0b7d8ac186ddd4364d24b9dc7a | d4e149e2eed94a1eb2052050383618111da3002d | test: fix `utimeSyncFileSuccess` in `js_unit_test::worker_test` (#31273)
`../testdata/workers/worker_types.ts` didn't even exist, causing the
test to fail.
See #30770
Co-authored-by: David Sherret <dsherret@users.noreply.github.com> | [
{
"path": "tests/unit/worker_test.ts",
"patch": "@@ -15,7 +15,7 @@ Deno.test(\n { permissions: { read: true } },\n function utimeSyncFileSuccess() {\n const w = new Worker(\n- resolveWorker(\"worker_types.ts\"),\n+ resolveWorker(\"test_worker.js\"),\n { type: \"module\" },\n );\n... | 2025-11-17T14:35:27 |
mrdoob/three.js | c43288eeffbde8e291fdff8d040df6fa5df58eeb | c99f1e951e3eae0219eae926de1a278f4aeb3547 | ShadowNode: Fix `updateMatrices` sequence (#30064)
* fix `updateMatrices` sequence
* Update webgpu_lights_spotlight.jpg | [
{
"path": "examples/jsm/csm/CSMShadowNode.js",
"patch": "@@ -75,6 +75,8 @@ class CSMShadowNode extends ShadowBaseNode {\n \t\tfor ( let i = 0; i < this.cascades; i ++ ) {\n \n \t\t\tconst lwLight = new LwLight();\n+\t\t\tlwLight.castShadow = true;\n+\n \t\t\tconst lShadow = light.shadow.clone();\n \t\t\tlSh... | 2024-12-08T05:38:04 |
vuejs/vue | 9fbca0dc792e94eb775a8f08694a04963dc20e07 | 5b58526a525f67ed7a3dffcaf38a51ab2affd357 | remove unused, fix type | [
{
"path": "flow/component.js",
"patch": "@@ -1,6 +1,7 @@\n import type { Config } from '../src/core/config'\n import type VNode from '../src/core/vdom/vnode'\n import type Watcher from '../src/core/observer/watcher'\n+import type StringNode from '../src/server/optimizing-compiler/runtime-helpers'\n \n decla... | 2017-05-17T06:40:06 |
denoland/deno | d4e149e2eed94a1eb2052050383618111da3002d | 05395f375321fd850facfa849a45a1bc32bbe847 | ci: add ability to trigger AI issue triage manually (#31260)
Should fix permission error too.
---------
Co-authored-by: Claude <noreply@anthropic.com> | [
{
"path": ".github/workflows/issue_triage.yml",
"patch": "@@ -3,25 +3,33 @@ name: AI Issue Triage\n on:\n issues:\n types: [opened]\n+ workflow_dispatch:\n+ inputs:\n+ issue_number:\n+ description: 'Issue number to triage'\n+ required: true\n+ type: number\n \n jobs:\n ... | 2025-11-17T14:20:03 |
mrdoob/three.js | f5f25c3e9b814b001c51958effeb37da495f03a3 | d22a8f89d34126a1725aec243ca23488456df496 | ShadowBaseNode: Fix CSM `shadowWorldPosition` (#30060) | [
{
"path": "examples/jsm/csm/CSMShadowNode.js",
"patch": "@@ -6,8 +6,7 @@ import {\n \tBox3,\n \tObject3D,\n \tWebGLCoordinateSystem,\n-\tNodeUpdateType,\n-\tNode\n+\tShadowBaseNode\n } from 'three/webgpu';\n \n import { CSMFrustum } from './CSMFrustum.js';\n@@ -36,13 +35,12 @@ class LwLight extends Object3D... | 2024-12-07T19:25:15 |
vuejs/vue | ebca266d10febb5ab5ca0cfbcd0dfbff2f2c2170 | 34bc14e7679e0d779ff361b7a42e900ad5043798 | fix: prefetch should not have `as` attribute (#5683) | [
{
"path": "src/server/template-renderer/index.js",
"patch": "@@ -181,7 +181,7 @@ export default class TemplateRenderer {\n }\n return this.prefetchFiles.map(file => {\n if (!alreadyRendered(file)) {\n- return `<link rel=\"prefetch\" href=\"${this.publicPath}/${file}\" as=\"scrip... | 2017-05-16T16:18:02 |
denoland/deno | 2f475fce496f675ed89bc6298f5ce32d9b8030cb | e0f04c6aea2972866155f6c99773f1af1cad58f4 | ci: use windows-2022 image for 'promote_to_release' workflow (#31286)
Also changes code-signing step to not cache dependencies, which should
fix the problem with Azure Codesigning returning error because of missing deps. | [
{
"path": ".github/workflows/promote_to_release.yml",
"patch": "@@ -18,7 +18,7 @@ jobs:\n # Handle Windows binary patching and re-signing in a separate job\n promote-to-release-windows:\n name: Promote Windows to Release\n- runs-on: windows-latest\n+ runs-on: windows-2022\n if: github.repo... | 2025-11-17T08:30:46 |
mrdoob/three.js | 1b6a70461e58005a6963a34baf1e845677155cd3 | e4a48bd6bf72c7728a4d01095a61d6ceb16f06cc | UniformArrayNode: Fix `getNodeType()` (#30058)
* fix getNodeType()
* Revert "WebGPURenderer: Shadow fixes (#29991)"
This reverts commit f91fbc3db2d2f8f28882799bd2c340ac1414ea8d.
* Revert "WebGPURenderer: Add `SpotLight.map` support (#29989)"
This reverts commit e2e04d3e93b9a7548c5361871bd7e088c4b0beef.
... | [
{
"path": "src/nodes/accessors/UniformArrayNode.js",
"patch": "@@ -46,13 +46,20 @@ class UniformArrayNode extends BufferNode {\n \n \t\tthis.array = value;\n \t\tthis.elementType = elementType === null ? getValueType( value[ 0 ] ) : elementType;\n+\t\tthis.paddedType = this.getPaddedType();\n \n \t\tthis.up... | 2024-12-07T18:43:58 |
vuejs/vue | 3cda98a541cd2c84847a9c53a7b38fccf1329a11 | 0b2f11036d86f1242370726fec230db77a49d95e | Added picture to isHTMLTag map (#5675)
This change will make sure the below error is not seen while unit testing components using <picture> in their template.
[Vue warn]: Unknown custom element: <picture> - did you register the component correctly? For recursive components, make sure to provide the "name" option. | [
{
"path": "src/platforms/web/util/element.js",
"patch": "@@ -11,7 +11,7 @@ export const namespaceMap = {\n export const isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n- 'div,dd,dl,dt,figcaption,figur... | 2017-05-16T01:21:54 |
golang/go | 0929d2197807c7b70ff0b1a17982259879e9c064 | f03d06ec1a69d77b4c43971cc474c3111a424c3a | cmd/go: keep objects alive while stopping cleanups
There are two places in cmd/go where cleanups are stopped before they
fire, and where the objects the cleanups are attached to may be dead
while we call Stop. This is essentially a race between Stop and the
cleanup being called. This can be fine, but these cleanups ar... | [
{
"path": "src/cmd/go/internal/base/limit.go",
"patch": "@@ -63,6 +63,12 @@ func AcquireNet() (release func(), err error) {\n \t\t\t<-netLimitSem\n \t\t}\n \t\tcleanup.Stop()\n+\n+\t\t// checker may be dead at the moment after we last access\n+\t\t// it in this function, so the cleanup can fire before Stop\... | 2025-11-12T18:22:58 |
denoland/deno | e0f04c6aea2972866155f6c99773f1af1cad58f4 | f48bd0487759c759be48d55e618f3289196caad7 | build(deps): update aws-lc-rs (#31307)
This pulls some build improvements and fixes, including
https://github.com/aws/aws-lc/pull/2381/ | [
{
"path": "Cargo.lock",
"patch": "@@ -373,28 +373,26 @@ checksum = \"0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0\"\n \n [[package]]\n name = \"aws-lc-rs\"\n-version = \"1.12.4\"\n+version = \"1.13.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4c... | 2025-11-17T08:24:38 |
mrdoob/three.js | e4a48bd6bf72c7728a4d01095a61d6ceb16f06cc | 58a9949bd3a66ab06a8fc6d20ce62eeb28e9f4eb | LightsNode: Fix cache key. (#30045)
* LightsNode: Fix cache key.
* Update LightsNode.js
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "src/nodes/lighting/LightsNode.js",
"patch": "@@ -1,5 +1,6 @@\n import Node from '../core/Node.js';\n import { nodeObject, vec3 } from '../tsl/TSLBase.js';\n+import { hashArray } from '../core/NodeUtils.js';\n \n const sortLights = ( lights ) => {\n \n@@ -51,6 +52,29 @@ class LightsNode extends No... | 2024-12-07T16:40:29 |
vuejs/vue | 7694c855642d6765f9ebfe925d9a73ba8198b183 | da1db7af31b397eab1608217d1f6dee26f753a59 | fix static tree optimization for v-else(-if) conditions | [
{
"path": "src/compiler/optimizer.js",
"patch": "@@ -55,6 +55,15 @@ function markStatic (node: ASTNode) {\n node.static = false\n }\n }\n+ if (node.ifConditions) {\n+ for (let i = 1, l = node.ifConditions.length; i < l; i++) {\n+ const block = node.ifConditions[i].block\n+ ... | 2017-05-15T04:05:19 |
golang/go | f03d06ec1a69d77b4c43971cc474c3111a424c3a | 48127f656b53bfb5d73e7281ad525dbc371eb4c6 | runtime: fix list test memory management for mayMoreStack
The NIH tests simply failed to allocate the nodes outside the heap at
all. The Manual tests failed to keep the nodes alive, allowing the GC to
collect them.
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest
Change-Id: I6a6a636c434bb703d6888383d32d... | [
{
"path": "src/runtime/list_manual_test.go",
"patch": "@@ -21,10 +21,19 @@ type listedValManual struct {\n \tbNode runtime.ListNodeManual\n }\n \n+// ListHeadManual is intended to be used with objects where the lifetime of the\n+// object is managed explicitly, so it is OK to store as uintptr.\n+//\n+// Thi... | 2025-11-12T20:20:54 |
denoland/deno | f48bd0487759c759be48d55e618f3289196caad7 | 863abe816e2fac2863ed755321e09311ea61d592 | fix(ext/node): sqlite.DatabaseSync explicit resource management compatibility (#31311)
Allows
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-sqlite-database-sync-dispose.js
to pass | [
{
"path": "ext/node/polyfills/sqlite.ts",
"patch": "@@ -9,8 +9,9 @@ import {\n import { Buffer } from \"node:buffer\";\n \n const {\n- ObjectDefineProperty,\n+ ObjectDefineProperties,\n SymbolFor,\n+ SymbolDispose,\n } = primordials;\n \n interface BackupOptions {\n@@ -103,11 +104,26 @@ export const co... | 2025-11-17T07:58:49 |
mrdoob/three.js | c3a82ac7142abf1a2b83696935d1531d6ffe1f98 | 04d8b8b4eea328616ecc6c6f15e14fa699a0ade4 | PropertyBinding: Fix versioning scheme determination. (#30054) | [
{
"path": "src/animation/PropertyBinding.js",
"patch": "@@ -569,11 +569,11 @@ class PropertyBinding {\n \n \t\tthis.targetObject = targetObject;\n \n-\t\tif ( targetObject.needsUpdate !== undefined ) { // material\n+\t\tif ( targetObject.isMaterial === true ) {\n \n \t\t\tversioning = this.Versioning.NeedsU... | 2024-12-07T11:14:53 |
denoland/deno | 5951cba6e78d47b279b807293ad57b1aa5ac1c2d | e7ef895d21e4ff6df466fb74cd19d84f599bab3d | chore: fix patchver on windows (#31303) | [
{
"path": "tools/release/promote_to_release.ts",
"patch": "@@ -5,7 +5,7 @@\n \n import { $ } from \"jsr:@david/dax@0.41.0\";\n import { gray } from \"jsr:@std/fmt@1/colors\";\n-import { patchver } from \"jsr:@deno/patchver@0.3.0\";\n+import { patchver } from \"jsr:@deno/patchver@0.4.0\";\n \n const SUPPORTE... | 2025-11-17T07:41:20 |
mrdoob/three.js | 04d8b8b4eea328616ecc6c6f15e14fa699a0ade4 | 88aa95a4a7082e7123a31ad7ebe539925621828a | Node: fix small typos (#30049)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "src/nodes/core/Node.js",
"patch": "@@ -469,7 +469,7 @@ class Node extends EventDispatcher {\n \n \t/**\n \t * Represents the analyze stage which is the second step of the build process, see {@link Node#build} method.\n-\t * This stage anaylzes the node hierarchy and ensures descendent nodes are b... | 2024-12-06T15:21:07 |
golang/go | 0c28789bd7dfc55099cac86a3212dda0d6c091f6 | 4e761b9a181a090ca9ec52916c4aef93c4cbc090 | net/url: disallow raw IPv6 addresses in host
RFC 3986 requires square brackets around IPv6 addresses.
Parse's acceptance of raw IPv6 addresses is non compliant,
and complicates splitting out a port.
This is a resubmission of CL 710176 after the revert in CL 711800,
this time with a new urlstrictipv6 godebug to contro... | [
{
"path": "doc/godebug.md",
"patch": "@@ -163,6 +163,11 @@ will fail early. The default value is `httpcookiemaxnum=3000`. Setting\n number of cookies. To avoid denial of service attacks, this setting and default\n was backported to Go 1.25.2 and Go 1.24.8.\n \n+Go 1.26 added a new `urlstrictcolons` setting ... | 2025-10-18T09:31:12 |
vuejs/vue | 0b2f11036d86f1242370726fec230db77a49d95e | d6bd667e1a984378cf27d688f69b02a1f7332482 | fix typo (#5667) | [
{
"path": "packages/vue-server-renderer/README.md",
"patch": "@@ -4,5 +4,5 @@\n \n This package offers Node.js server-side rendering for Vue 2.0.\n \n-- [API Reference](ssr.vuejs.org/en/api.html)\n+- [API Reference](https://ssr.vuejs.org/en/api.html)\n - [Vue.js Server-Side Rendering Guide](https://ssr.vuej... | 2017-05-14T03:53:12 |
mrdoob/three.js | 16cb40ece4574e0237c8e478aff1c0f67e5cbb67 | ae90867ef660be18c8095e22fe9de7d9b1b63efd | Node: Document more modules. (#30041)
* Node: Document more modules.
* Fix typo. | [
{
"path": "src/nodes/core/Node.js",
"patch": "@@ -522,6 +522,7 @@ class Node extends EventDispatcher {\n \t * The {@link Node#updateBeforeType} property defines how often the update is executed.\n \t *\n \t * @param {NodeFrame} frame - A reference to the current node frame.\n+\t * @return {Boolean?} An opti... | 2024-12-05T19:13:22 |
denoland/deno | e7ef895d21e4ff6df466fb74cd19d84f599bab3d | 1404815e100956e6db84dd80f888f4df949bc06c | fix(lsp): `organizeImports` without resolving specifiers (#31230) | [
{
"path": "cli/lsp/language_server.rs",
"patch": "@@ -2347,21 +2347,10 @@ impl Inner {\n })?;\n \n if !organize_imports_edit.is_empty() {\n- let mut changes_with_modules = IndexMap::new();\n- changes_with_modules.extend(\n- fix_ts_import_changes(&organize_imports_edit, &... | 2025-11-17T06:57:54 |
golang/go | 8873e8bea29ac6de5fecee88b8b81239bd2eb179 | b8b84b789e4275aeea491dbdb50536facd1fa7d7 | runtime,runtime/pprof: clean up goroutine leak profile writing
Cleaned up goroutine leak profile extraction:
- removed the acquisition of goroutineProfile semaphore
- inlined the call to saveg when recording stacks instead of using
doRecordGoroutineProfile, which had side-effects over
goroutineProfile fields.
Added r... | [
{
"path": "src/runtime/mprof.go",
"patch": "@@ -1261,7 +1261,7 @@ func goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.P\n \n //go:linkname pprof_goroutineLeakProfileWithLabels\n func pprof_goroutineLeakProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n in... | 2025-11-06T09:53:28 |
vuejs/vue | 38759a695779b74065947f2cc3e0c010d50c2c6c | 8d54aecdd04202d39659a7625eef846673064ab3 | fix test case in IE | [
{
"path": "test/unit/modules/vdom/create-element.spec.js",
"patch": "@@ -170,12 +170,12 @@ describe('create-element', () => {\n return h('div', [[...list, input]])\n }\n }).$mount()\n- expect(vm.$el.innerHTML).toBe('<span>0</span><input value=\"a\" type=\"text\">')\n+ expect(vm.$el.i... | 2017-05-09T16:37:41 |
denoland/deno | 1404815e100956e6db84dd80f888f4df949bc06c | 4bf2ad3be7b40b99094e12eb309a730c7c529cd4 | fix(deps): use windows-sys for all windows targets (#31308)
there are `*-pc-windows-gnullvm` target, which are not covered by the
previous condition. other packages are already using this | [
{
"path": "runtime/subprocess_windows/Cargo.toml",
"patch": "@@ -14,9 +14,7 @@ fastrand = \"2.3.0\"\n futures-channel = \"0.3.31\"\n libc = \"0.2.172\"\n \n-[target.x86_64-pc-windows-gnu.dependencies]\n-windows-sys = { version = \"0.59.0\", features = [\"Win32_Security\", \"Win32_System_JobObjects\", \"Win3... | 2025-11-16T15:37:08 |
golang/go | b8b84b789e4275aeea491dbdb50536facd1fa7d7 | c761b26b56eec36390885e5373aab2fd17dc67ef | cmd/go: clarify the -o testflag is only for copying the binary
Fixes #74769
Change-Id: Iebbaea8fb1a25e30a541a827815def9e269a8135
Reviewed-on: https://go-review.googlesource.com/c/go/+/709255
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Matloob <matloob... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1953,7 +1953,7 @@\n //\t Also emits build output in JSON. See 'go help buildjson'.\n //\n //\t-o file\n-//\t Compile the test binary to the named file.\n+//\t Save a copy of the test binary to the named file.\n //\t The test still runs (unless -c ... | 2025-10-05T18:21:59 |
vuejs/vue | 8d54aecdd04202d39659a7625eef846673064ab3 | 3139605bb10fed0a0219e31a2117c533e31fe773 | async components: timeout should not trigger if already resolved (fix #5635) | [
{
"path": "src/core/vdom/helpers/resolve-async-component.js",
"patch": "@@ -97,11 +97,13 @@ export function resolveAsyncComponent (\n \n if (isDef(res.timeout)) {\n setTimeout(() => {\n- reject(\n- process.env.NODE_ENV !== 'production'\n- ? `timeout (... | 2017-05-09T15:35:09 |
denoland/deno | 4bf2ad3be7b40b99094e12eb309a730c7c529cd4 | 96434a1d390d105514b8bf6f8ac0fc135e8f8f7a | fix: skip doing npm resolution in more cases (#31305)
There was a bug that was causing npm resolution to occur due to:
* https://github.com/denoland/deno_semver/pull/49
Also includes:
* https://github.com/denoland/deno_semver/pull/45 | [
{
"path": "Cargo.lock",
"patch": "@@ -2876,9 +2876,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_semver\"\n-version = \"0.9.0\"\n+version = \"0.9.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2625b7107cc3f61a462886d5fa77c23e063c1fd15b90e3d5ee2646e9f6178d55\... | 2025-11-15T22:50:58 |
vuejs/vue | 0ccefff794c5fe73b80b9faf5ae5bfd8ec1a500f | dc00590bc56fc9b0afd50a11425486fb771402fc | support v-for on scoped slots (fix #5615) | [
{
"path": "flow/component.js",
"patch": "@@ -106,7 +106,7 @@ declare interface Component {\n // check custom keyCode\n _k: (eventKeyCode: number, key: string, builtInAlias: number | Array<number> | void) => boolean;\n // resolve scoped slots\n- _u: (scopedSlots: Array<[string, Function]>) => { [key: ... | 2017-05-09T15:00:15 |
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.