repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
mrdoob/three.js | d8a9927b16e16deede1628d1e01ec98181d4869a | 83e0d44edbd3c3619c410f1b54b34e78ac5913d3 | XRManager: Fix typo in getBinding jsdoc (#31656) | [
{
"path": "src/renderers/common/XRManager.js",
"patch": "@@ -592,12 +592,12 @@ class XRManager extends EventDispatcher {\n \n \n \t/**\n-\t * Return the current XR binding.\n+\t * Returns the current XR binding.\n \t *\n \t * Creates a new binding if needed and the browser is\n \t * capable of doing so.\n \... | 2025-08-15T10:21:25 |
golang/go | 38ed6147485232f9562e87970c56f4491c082998 | ae842f71461ad178eff7283bc36e150fe284b9aa | cmd/compile: fix SIMD type parameter instantiation
When a SIMD type is used to instantiate a type parameter, the SIMD's
underlying type is its shape. This shape type must be marked as a SIMD
type, otherwise, the backend will confuse and does not know how to put
this SIMD type to proper registers.
Fixing this by marki... | [
{
"path": "src/cmd/compile/internal/types/type.go",
"patch": "@@ -1683,6 +1683,9 @@ func (t *Type) SetUnderlying(underlying *Type) {\n \tif underlying.HasShape() {\n \t\tt.SetHasShape(true)\n \t}\n+\tif underlying.isSIMD {\n+\t\tsimdify(t, underlying.isSIMDTag)\n+\t}\n \n \t// spec: \"The declared type does... | 2026-02-05T14:16:55 |
vuejs/vue | b7f7f2756928f409950186c5d641034f362b392a | 080dd971f77f7c631650c4e3027d1802f4e804d8 | feat: use event delegation when possible
This also fixes async edge case #6566 where events propagate too slow
and incorrectly trigger handlers post-patch. | [
{
"path": "src/core/util/env.js",
"patch": "@@ -14,6 +14,7 @@ export const isEdge = UA && UA.indexOf('edge/') > 0\n export const isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android')\n export const isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios')\n export c... | 2018-12-20T00:26:58 |
mrdoob/three.js | 380bc389f3ed63dd532176354e121c4d726d641b | 4203d2b3038651557be00b831735f014995cadea | WebGPURenderer: Fix rendering into mips. (#31645) | [
{
"path": "src/renderers/common/RenderContext.js",
"patch": "@@ -248,9 +248,9 @@ class RenderContext {\n */\n export function getCacheKey( renderContext ) {\n \n-\tconst { textures, activeCubeFace } = renderContext;\n+\tconst { textures, activeCubeFace, activeMipmapLevel } = renderContext;\n \n-\tconst val... | 2025-08-14T12:52:48 |
denoland/deno | 9cf58520ee80dd88777d3a97e59800163697d1d2 | 0d2ef7c3b608350bda07279e845d8cabdedfac9e | fix(node): implement `resolveObjectURL` for `node:buffer` (#32382)
## Summary
- Implement missing `resolveObjectURL` export from `node:buffer`
(#30950)
- Fix `blobFromObjectUrl` to use `new Blob()` instead of
`webidl.createBranded(Blob)` so that returned blobs can call
`arrayBuffer()`/`text()`/`bytes()` without hittin... | [
{
"path": "ext/node/polyfills/buffer.ts",
"patch": "@@ -13,6 +13,7 @@ export {\n isUtf8,\n kMaxLength,\n kStringMaxLength,\n+ resolveObjectURL,\n SlowBuffer,\n transcode,\n } from \"ext:deno_node/internal/buffer.mjs\";",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
... | 2026-03-02T08:12:03 |
golang/go | ae842f71461ad178eff7283bc36e150fe284b9aa | 824befbca0e862571dc1a449b1c8df1218e6c4b6 | log/slog: correct method names in MultiHandler docs
Fixes #77428
Change-Id: I02d76ac9220fb2e0df404e4a446953bc0b56475f
Reviewed-on: https://go-review.googlesource.com/c/go/+/741560
Auto-Submit: Rhys Hiltner <rhys.hiltner@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.co... | [
{
"path": "src/log/slog/multi_handler.go",
"patch": "@@ -17,8 +17,8 @@ func NewMultiHandler(handlers ...Handler) *MultiHandler {\n }\n \n // MultiHandler is a [Handler] that invokes all the given Handlers.\n-// Its Enable method reports whether any of the handlers' Enabled methods return true.\n-// Its Hand... | 2026-02-03T17:23:33 |
vuejs/vue | 080dd971f77f7c631650c4e3027d1802f4e804d8 | 850555d1faa9be7d8306adffd95c7dee5e58717f | fix(next-tick): revert 60da366
the condition is no longer necessary after reverting back to microtask
only nextTick implementation, and fix #8436 | [
{
"path": "src/platforms/web/runtime/modules/dom-props.js",
"patch": "@@ -86,10 +86,6 @@ function isDirtyWithModifiers (elm: any, newVal: string): boolean {\n const value = elm.value\n const modifiers = elm._vModifiers // injected by v-model runtime\n if (isDef(modifiers)) {\n- if (modifiers.lazy) ... | 2018-12-19T19:00:15 |
mrdoob/three.js | 2a99ef3270888e39d50a97cb1b01492a2882c21a | 661a4cbd9ff0dae0c1419c6959fa12a1148c0b16 | Add GLTF progressive example page (#31625)
* start gltf progressive example
* add multiple meshes to the scene
* Update gltf-progressive version + fix mesh zfighting
* move stats into one line, add no-break-space html
* Rename RGBELoader to HDRLoader
* Move description into source
* Update description
* add tag... | [
{
"path": "examples/files.json",
"patch": "@@ -82,6 +82,7 @@\n \t\t\"webgl_loader_fbx_nurbs\",\n \t\t\"webgl_loader_gcode\",\n \t\t\"webgl_loader_gltf\",\n+\t\t\"webgl_loader_gltf_progressive_lod\",\n \t\t\"webgl_loader_gltf_avif\",\n \t\t\"webgl_loader_gltf_compressed\",\n \t\t\"webgl_loader_gltf_dispersio... | 2025-08-13T19:47:10 |
denoland/deno | 9cab294be758e81037b128a05a13c4fd4fd35b30 | 6adddf9f89f1279bff7a7e9e588adbac6302f876 | fix(cli): load multiple env files in the correct order (#32354)
Closes #32350
Previously we reverse the env file orders because we're using `dotenvy`
that as stated by their
[docs](https://docs.rs/dotenvy/latest/dotenvy/fn.from_filename.html):
> Where multiple declarations for the same environment variable exist in
y... | [
{
"path": "cli/util/watch_env_tracker.rs",
"patch": "@@ -241,7 +241,7 @@ pub fn load_env_variables_from_env_files(\n return;\n };\n \n- for env_file_name in env_file_names.iter().rev() {\n+ for env_file_name in env_file_names.iter() {\n match deno_dotenv::from_path(env_file_name) {\n Ok(_)... | 2026-03-01T15:50:03 |
golang/go | 824befbca0e862571dc1a449b1c8df1218e6c4b6 | b8be5de81ee78f51fbd600498093b542e75a710e | bufio: fix doc link to Reset method
On https://pkg.go.dev/bufio#Reader, the reference to the Reset
method is rendered as [Reset]. Fix it by referring to the method
via its type.
Change-Id: I4256ca80ebef7b850e6a97b96503dd7178cb361b
Reviewed-on: https://go-review.googlesource.com/c/go/+/736320
LUCI-TryBot-Result: Go LU... | [
{
"path": "src/bufio/bufio.go",
"patch": "@@ -30,7 +30,7 @@ var (\n \n // Reader implements buffering for an io.Reader object.\n // A new Reader is created by calling [NewReader] or [NewReaderSize];\n-// alternatively the zero value of a Reader may be used after calling [Reset]\n+// alternatively the zero v... | 2026-01-14T11:54:22 |
vuejs/vue | 850555d1faa9be7d8306adffd95c7dee5e58717f | ced774be6ddbc53884d7a5d395514a9f62e32336 | fix: always use microtasks for nextTick (#8450)
fix #7109, #7546, #7707, #7834, #8109
reopen #6566 | [
{
"path": "src/core/util/next-tick.js",
"patch": "@@ -1,9 +1,9 @@\n /* @flow */\n-/* globals MessageChannel */\n+/* globals MutationObserver */\n \n import { noop } from 'shared/util'\n import { handleError } from './error'\n-import { isIOS, isNative } from './env'\n+import { isIE, isIOS, isNative } from '.... | 2018-12-19T18:29:00 |
mrdoob/three.js | 63b49831e0be50779f9bbeccd24f4f93f7fa7c24 | fa4c2a9482feb11023d21988a56926f0f477d629 | Examples/TSL: Add SubgroupFunctionNode with Compute Reduction Demonstration (#31378)
* init branch
* add example meta data
* remove logs, simplify comments, use more appropriate syntax (instancedArray instead of storage)
* new screenshot
* remove unused function
* add screenshot to puppeteer exceptions
* work
*... | [
{
"path": "examples/files.json",
"patch": "@@ -312,6 +312,7 @@\n \t\t\"webgpu_compute_particles_rain\",\n \t\t\"webgpu_compute_particles_snow\",\n \t\t\"webgpu_compute_points\",\n+\t\t\"webgpu_compute_reduce\",\n \t\t\"webgpu_compute_sort_bitonic\",\n \t\t\"webgpu_compute_texture\",\n \t\t\"webgpu_compute_t... | 2025-08-13T15:05:37 |
golang/go | b8be5de81ee78f51fbd600498093b542e75a710e | d4febb45179fa99ee1d5783bcb693ed7ba14115c | runtime: clarify g object vs stack memory lifetime in HACKING.md
The documentation states that g objects are "never freed" but does not
clarify that goroutine stack memory is managed separately. This can be
confusing as it might imply that all goroutine memory (including stacks)
is retained indefinitely.
Add a paragr... | [
{
"path": "src/runtime/HACKING.md",
"patch": "@@ -60,6 +60,14 @@ Every non-dead G has a *user stack* associated with it, which is what\n user Go code executes on. User stacks start small (e.g., 2K) and grow\n or shrink dynamically.\n \n+When a goroutine exits, its stack memory may be freed immediately or\n+... | 2026-02-03T15:07:55 |
denoland/deno | 2a04a3cdf54a5e8f04e0c8b11de937b6db671d79 | 8e5efb0509958ab5513b59c87cb83a98f1e897e6 | fix(lsp): cross-scope requests (#32366) | [
{
"path": "Cargo.lock",
"patch": "@@ -10066,6 +10066,7 @@ dependencies = [\n \"anyhow\",\n \"console_static_text\",\n \"crossterm\",\n+ \"deno_path_util\",\n \"file_test_runner\",\n \"fluent-uri\",\n \"indexmap 2.9.0\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"... | 2026-02-28T16:46:33 |
vuejs/vue | b06c784b81a244e1bc2d028216fcd2ab873730b9 | 70754084ec2d84e44effeb8f82efda3397a08b0d | fix(ssr): support rendering comment (#9128) | [
{
"path": "src/server/optimizing-compiler/codegen.js",
"patch": "@@ -225,7 +225,11 @@ function nodesToSegments (\n } else if (c.type === 2) {\n segments.push({ type: INTERPOLATION, value: c.expression })\n } else if (c.type === 3) {\n- segments.push({ type: RAW, value: escape(c.text) })\n... | 2018-12-12T16:41:08 |
mrdoob/three.js | 0188ec227ede40e2cf1f0643f4310b52ac185c1c | 7105716d1eb80c0fe747eba2edb8002160c3a01c | PointsNodeMaterial: Fix scaling bugs (#31627)
* Fix scaling bugs
* Clean up
* Update screenshot | [
{
"path": "src/materials/nodes/PointsNodeMaterial.js",
"patch": "@@ -1,5 +1,5 @@\n import SpriteNodeMaterial from './SpriteNodeMaterial.js';\n-import { viewport } from '../../nodes/display/ScreenNode.js';\n+import { viewportSize, screenSize } from '../../nodes/display/ScreenNode.js';\n import { positionGeom... | 2025-08-12T08:03:01 |
golang/go | d4febb45179fa99ee1d5783bcb693ed7ba14115c | e2a34c7e9b04564ddad50bd7ec7b52fabde74192 | crypto/tls: avoid data race when canceling a QUICConn's Context
Methods on QUICConn are synchronous:
The connection state is expected to change only in reaction
to a user calling a QUICConn method, and the state change
should finish completely before the method returns.
The connection context provided to QUICConn.Sta... | [
{
"path": "src/crypto/tls/conn.go",
"patch": "@@ -1531,7 +1531,7 @@ func (c *Conn) handshakeContext(ctx context.Context) (ret error) {\n \tdefer cancel()\n \n \tif c.quic != nil {\n-\t\tc.quic.cancelc = handshakeCtx.Done()\n+\t\tc.quic.ctx = handshakeCtx\n \t\tc.quic.cancel = cancel\n \t} else if ctx.Done()... | 2026-02-05T23:56:13 |
denoland/deno | 8e5efb0509958ab5513b59c87cb83a98f1e897e6 | b0a58f307e52957ac9fce373d4e9a7b658a28633 | fix(core): store Global<Context> ptr for libuv-compat callbacks (#32361)
## Summary
- Store a `v8::Global<Context>` via `Global::into_raw()` once during
`register_uv_loop` instead of storing a `v8::Local<Context>` pointer at
the start of each event loop tick
- V8 keeps the persistent-handle slot updated across GC cyc... | [
{
"path": "libs/core/runtime/jsrealm.rs",
"patch": "@@ -115,9 +115,9 @@ pub struct ContextState {\n /// `UvLoopInner` and `ContextState` are `!Send` -- all access is on the\n /// event loop thread.\n pub(crate) uv_loop_inner: Cell<Option<*const UvLoopInner>>,\n- /// Raw pointer to the `uv_loop_t` han... | 2026-02-28T09:47:49 |
vuejs/vue | 847e493768371cec4718969e02bdb7f8463f4e03 | 4e975485a4d90fef62bf73a32a2b72e249919130 | fix: fix single v-for child optimization | [
{
"path": "src/core/instance/render-helpers/render-list.js",
"patch": "@@ -32,8 +32,9 @@ export function renderList (\n ret[i] = render(val[key], key, i)\n }\n }\n- if (isDef(ret)) {\n- (ret: any)._isVList = true\n+ if (!isDef(ret)) {\n+ ret = []\n }\n+ (ret: any)._isVList = true\n ... | 2018-12-11T22:47:59 |
mrdoob/three.js | 75b9d9092f369d18b743de9e9ee8c0b7f28086d4 | eb7609c062744e304fb8a33da8888d172b07e1ae | WebGLRenderer, KTX2Loader: Support R11G11B10 (#31613)
* KTX2Loader: Support R11G11B10
* lint fix | [
{
"path": "examples/jsm/loaders/KTX2Loader.js",
"patch": "@@ -31,7 +31,8 @@ import {\n \tRedFormat,\n \tSRGBColorSpace,\n \tUnsignedByteType,\n-\tUnsignedInt5999Type\n+\tUnsignedInt5999Type,\n+\tUnsignedInt101111Type\n } from 'three';\n import { WorkerPool } from '../utils/WorkerPool.js';\n import {\n@@ -73... | 2025-08-10T08:33:20 |
denoland/deno | b0a58f307e52957ac9fce373d4e9a7b658a28633 | ad52a9f35f427cb9a930c1a071f74784ad6cf417 | fix: Update libffi and libffi-sys to fix build (#32301)
Bumps libffi and libffi-sys to latest versions.
Fixes: #32281 | [
{
"path": "Cargo.lock",
"patch": "@@ -6254,19 +6254,19 @@ dependencies = [\n \n [[package]]\n name = \"libffi\"\n-version = \"4.1.2\"\n+version = \"5.1.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"b0feebbe0ccd382a2790f78d380540500d7b78ed7a3498b68fcfbc1593749a94\"\n... | 2026-02-28T09:39:54 |
golang/go | 99d7121934a9cfa7963d3a9bfd840779fd2869f6 | b8bccb97982a7dc340f64d0ad522843418db8810 | cmd/link: add more clang driver flags when testing flag
This changes does 2 things:
- Move `-L` to `prefixesToKeep` since it allows providing a custom
default libs search path.
- Allow various flags that impact the behaviour of the clang driver.
The latter allows for LLVM only toolchains to be compatible with
linke... | [
{
"path": "src/cmd/link/internal/ld/lib.go",
"patch": "@@ -2208,20 +2208,30 @@ func trimLinkerArgv(argv []string) []string {\n \tflagsWithNextArgSkip := []string{\n \t\t\"-F\",\n \t\t\"-l\",\n-\t\t\"-L\",\n \t\t\"-framework\",\n \t\t\"-Wl,-framework\",\n \t\t\"-Wl,-rpath\",\n \t\t\"-Wl,-undefined\",\n \t}\n... | 2025-12-16T23:53:01 |
mrdoob/three.js | eb7609c062744e304fb8a33da8888d172b07e1ae | 07987ea5f0614b247acbe2ecb848a456b6a34bd7 | TSL: Fix instance buffer size in `instance()`. (#31608)
Co-authored-by: user <merowinger> | [
{
"path": "src/nodes/accessors/InstanceNode.js",
"patch": "@@ -109,7 +109,9 @@ class InstanceNode extends Node {\n \t */\n \tsetup( builder ) {\n \n-\t\tconst { count, instanceMatrix, instanceColor } = this;\n+\t\tconst { instanceMatrix, instanceColor } = this;\n+\n+\t\tconst { count } = instanceMatrix;\n \... | 2025-08-09T22:31:18 |
vuejs/vue | 47487607fbb99339038cf84990ba341c25b5e20d | 984393fed981c58ad79ed50424f023dcfa6829d0 | fix: fix v-for component with undefined value
fix #9181 | [
{
"path": "src/core/vdom/helpers/normalize-children.js",
"patch": "@@ -16,6 +16,9 @@ import { isFalse, isTrue, isDef, isUndef, isPrimitive } from 'shared/util'\n // thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n // because functional components already normalize their own chil... | 2018-12-11T21:51:03 |
mrdoob/three.js | 07987ea5f0614b247acbe2ecb848a456b6a34bd7 | e9b314560e58c627feba169fdcd9801b8d8f6d48 | fix DragControls events when buttons are disabled (#31612)
Co-authored-by: user <merowinger> | [
{
"path": "examples/jsm/controls/DragControls.js",
"patch": "@@ -305,6 +305,7 @@ function onPointerMove( event ) {\n \t\t\tif ( raycaster.ray.intersectPlane( _plane, _intersection ) ) {\n \n \t\t\t\t_selected.position.copy( _intersection.sub( _offset ).applyMatrix4( _inverseMatrix ) );\n+\t\t\t\tthis.dispat... | 2025-08-09T21:17:09 |
denoland/deno | 81e50edbd793c3e775ac4d1e66ade137bfd7efdf | 54db4e6fe745617eeb45775b106cc45a2c805098 | fix(lsp): tsgo request cancellation (#32356) | [
{
"path": "cli/lsp/tsgo.rs",
"patch": "@@ -2,8 +2,6 @@\n \n use std::collections::BTreeMap;\n use std::collections::HashMap;\n-use std::io::BufRead;\n-use std::io::Write;\n use std::path::Path;\n use std::path::PathBuf;\n use std::process::Child;\n@@ -23,6 +21,7 @@ use deno_core::serde_json;\n use deno_grap... | 2026-02-27T17:55:08 |
golang/go | b8bccb97982a7dc340f64d0ad522843418db8810 | 513bb875bc77b2a516ac56f7710d8fbcd6ba6359 | cmd/compile: don't double-walk the map argument of clear
mkcallstmt1 already walks the map argument of clear. mapClear then
walks it again, which can cause problems if it is some syntax that is
non-idempotent under walk. That is the case for the new way map
lookups are being lowered in CL 736020.
Fixes #77435
Chang... | [
{
"path": "src/cmd/compile/internal/walk/range.go",
"patch": "@@ -477,7 +477,7 @@ func mapClear(m, rtyp ir.Node) ir.Node {\n \t// instantiate mapclear(typ *type, hmap map[any]any)\n \tfn := typecheck.LookupRuntime(\"mapclear\", t.Key(), t.Elem())\n \tn := mkcallstmt1(fn, rtyp, m)\n-\treturn walkStmt(typeche... | 2026-02-04T23:29:40 |
vuejs/vue | 87bad80f0cb9a30b95d9410120ff6e3e2022a723 | d8285c57a613c42eddf2d4f2b75c1cea6aa4703a | fix(lifecycle): beforeUpdated should not be called if component is destroyed (#9171)
fix #8076 | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -196,7 +196,7 @@ export function mountComponent (\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, {\n before () {\n- if (vm._isMounted) {\n+ if (vm._isMounted... | 2018-12-11T16:31:27 |
mrdoob/three.js | 67b90935577b63e4acff4b528f6e82745b2a07fb | 334022348e666a7cd61c1a44d904f3600fb09d73 | TSL: Fix member type in function layout (#31609) | [
{
"path": "src/nodes/code/FunctionCallNode.js",
"patch": "@@ -69,12 +69,31 @@ class FunctionCallNode extends TempNode {\n \n \t}\n \n+\t/**\n+\t * Returns the type of this function call node.\n+\t *\n+\t * @param {NodeBuilder} builder - The current node builder.\n+\t * @returns {string} The type of this nod... | 2025-08-09T04:31:21 |
golang/go | 997215446134152d8c3c53b3d052032475ef7cfa | f2e7fa6d31143b2d9fbb94df7aa05b3a0919d112 | go/build: don't invoke go command when setting UseAllFiles
Fixes #68556
Change-Id: I36b08577243a6b3a13b3adef116411d73a2d3428
Reviewed-on: https://go-review.googlesource.com/c/go/+/700337
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Emmanuel Odeke <emmanuel@... | [
{
"path": "src/go/build/build.go",
"patch": "@@ -1139,7 +1139,7 @@ func (ctxt *Context) importGo(p *Package, path, srcDir string, mode ImportMode)\n \t// we must not being doing special things like AllowBinary or IgnoreVendor,\n \t// and all the file system callbacks must be nil (we're meant to use the loca... | 2025-09-01T14:00:45 |
denoland/deno | 54db4e6fe745617eeb45775b106cc45a2c805098 | 9747a26f59074363a9c45ffab5ab5f272f6baf30 | fix(ext/node): support process.stdout resize events (#32343)
## Summary
- Add Windows support for `Deno.addSignalListener("SIGWINCH", ...)` by
polling console size changes every 250ms using
`GetConsoleScreenBufferInfo`
- Wire `process.stdout.on("resize")` / `process.stderr.on("resize")` to
emit on SIGWINCH, matching ... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -518,6 +518,7 @@ deno_core::extension!(deno_node,\n \"internal/streams/utils.js\",\n \"internal/test/binding.ts\",\n \"internal/timers.mjs\",\n+ \"internal/tty.js\",\n \"internal/url.ts\",\n \"internal/util.mjs\",\n \"internal/util/colors.... | 2026-02-27T15:41:14 |
vuejs/vue | d8285c57a613c42eddf2d4f2b75c1cea6aa4703a | 8fccd8256902b6199ac124017f70d75abb45ed27 | fix(weex): support data class type that is string (#9139)
close #9124 | [
{
"path": "src/platforms/weex/runtime/modules/class.js",
"patch": "@@ -44,6 +44,8 @@ function makeClassList (data: VNodeData): Array<string> {\n classList.push.apply(classList, dataClass)\n } else if (isObject(dataClass)) {\n classList.push.apply(classList, Object.keys(dataClass).filter(className ... | 2018-12-11T16:29:49 |
mrdoob/three.js | 334022348e666a7cd61c1a44d904f3600fb09d73 | f396dcb2edec54e2fd8c5ced1578854560daf330 | TSL: Fix missing `getMemberType()` in `context()` (#31601) | [
{
"path": "src/nodes/core/ContextNode.js",
"patch": "@@ -78,6 +78,19 @@ class ContextNode extends Node {\n \n \t}\n \n+\t/**\n+\t * This method is overwritten to ensure it returns the member type of {@link ContextNode#node}.\n+\t *\n+\t * @param {NodeBuilder} builder - The current node builder.\n+\t * @para... | 2025-08-09T02:57:59 |
golang/go | 044fe174d7a45ab0c7872500de63e6c61b01bf27 | f766b8da6c6e78bfbd549931ad44e0a2386a32ba | internal/stringslite: remove duplicate code in Index
Merge two nearly identical loops into one by selecting the fallback
method (IndexString vs IndexRabinKarp) inside the loop based on
whether n <= bytealg.MaxLen.
Fixes #77364#
Change-Id: Iefbef60922ca24e4dda3016127f54290096bcfed
Reviewed-on: https://go-review.googl... | [
{
"path": "src/internal/stringslite/strings.go",
"patch": "@@ -28,52 +28,15 @@ func IndexByte(s string, c byte) int {\n func Index(s, substr string) int {\n \tn := len(substr)\n \tswitch {\n-\tcase n == 0:\n+\tcase n == 0 || substr == s:\n \t\treturn 0\n \tcase n == 1:\n \t\treturn IndexByte(s, substr[0])\n... | 2026-02-03T08:02:27 |
vuejs/vue | 8fccd8256902b6199ac124017f70d75abb45ed27 | 3d449376d557c4533a9664f95df3a168ecee9bfa | chore: fix tag name in compiler/parser/index.js (#9165) | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -340,7 +340,7 @@ function processKey (el) {\n const parent = el.parent\n if (iterator && iterator === exp && parent && parent.tag === 'transition-group') {\n warn(\n- `Do not use v-for index as key on <transtion-grou... | 2018-12-11T16:28:40 |
denoland/deno | 9747a26f59074363a9c45ffab5ab5f272f6baf30 | 3c9cbfa847f3c4547a2ef763b9f0c43ec8c9fdfc | feat: v8 14.6, fix require(esm), libuv compat (#32347) | [
{
"path": "Cargo.lock",
"patch": "@@ -1929,9 +1929,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.386.0\"\n+version = \"0.387.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"f5cdb60d25f7e87f7f3bb5b1fcbd8d059ab908d614c0ad67dafce7f6c1514f0... | 2026-02-27T11:20:34 |
mrdoob/three.js | f396dcb2edec54e2fd8c5ced1578854560daf330 | 875d092837c39d091ee28a2f448dbf37ce95740f | WebGPURenderer: Fix broken worker support. (#31607) | [
{
"path": "src/renderers/common/Textures.js",
"patch": "@@ -376,7 +376,7 @@ class Textures extends DataMap {\n \n \t\t\tif ( image.image !== undefined ) image = image.image;\n \n-\t\t\tif ( image instanceof HTMLVideoElement ) {\n+\t\t\tif ( ( typeof HTMLVideoElement !== 'undefined' ) && ( image instanceof H... | 2025-08-08T17:56:33 |
golang/go | 28fbdf7acb4146b5bc3d88128e407d1344691839 | 045d1270a7c299c6e40cccf3776860749abfe18e | cmd/go: fix pkg-config flag sanitization
Implement a new pkg-config safe flag list (containing everything except
for --log-file) and use that when checking flags passed to pkg-config,
instead of using checkCompilerFlags.
Fixes #77387
Change-Id: Id6141d0a2934053aa43e3aa8ce402bd499c4c028
Reviewed-on: https://go-review... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -1797,10 +1797,7 @@ func (b *Builder) getPkgConfigFlags(a *Action, p *load.Package) (cflags, ldflags\n \t\t\t}\n \t\t}\n \n-\t\t// Running 'pkg-config' can cause execution of\n-\t\t// arbitrary code using flags that are not in\n-\t\t// the safelist.... | 2026-02-03T02:29:51 |
vuejs/vue | 3d449376d557c4533a9664f95df3a168ecee9bfa | d780dd2e2adcf71f40c086055a659a9a2b4a8282 | fix(v-model): properly handle multiline v-model expressions (#9184)
fix #9183 | [
{
"path": "src/compiler/directives/model.js",
"patch": "@@ -25,7 +25,7 @@ export function genComponentModel (\n \n el.model = {\n value: `(${value})`,\n- expression: `\"${value}\"`,\n+ expression: JSON.stringify(value),\n callback: `function (${baseValueExpression}) {${assignment}}`\n }\n ... | 2018-12-11T15:27:43 |
denoland/deno | 3c9cbfa847f3c4547a2ef763b9f0c43ec8c9fdfc | f12a8b6803668ede2c910c5f01ead8bdee3d8149 | refactor(ext/node): `assert` get error source using V8 API (#32339) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -173,6 +173,7 @@ deno_core::extension!(deno_node,\n deps = [ deno_io, deno_fs ],\n parameters = [TInNpmPackageChecker: InNpmPackageChecker, TNpmPackageFolderResolver: NpmPackageFolderResolver, TSys: ExtNodeSys],\n ops = [\n+ ops::assert::op_node_get_error_s... | 2026-02-27T11:11:22 |
mrdoob/three.js | 875d092837c39d091ee28a2f448dbf37ce95740f | fda27bb22a5cda8519f47c4f45dd391ce66fc58d | FirstPersonControls: Fix dispose not release listener (#31606) | [
{
"path": "examples/jsm/controls/FirstPersonControls.js",
"patch": "@@ -194,8 +194,8 @@ class FirstPersonControls extends Controls {\n \t\twindow.removeEventListener( 'keydown', this._onKeyDown );\n \t\twindow.removeEventListener( 'keyup', this._onKeyUp );\n \n-\t\tthis.domElement.removeEventListener( 'poin... | 2025-08-08T17:50:15 |
golang/go | bd1b41eb8131a503a1a8d2fc41d3e79bce159468 | 01299a31c26b730785ac497da2ef7c593947d5d7 | reflect, runtime: adjust user-created GCData on AIX
On AIX the runtime adjusts the GCData field in getGCMaskOnDemand
to account for the AIX dynamic loader moving the data section.
That works fine for statically generated types,
but it breaks user generated types. The user generated type
will have a normal, correct, po... | [
{
"path": "src/reflect/type.go",
"patch": "@@ -2580,6 +2580,9 @@ func StructOf(fields []StructField) Type {\n \t\t// space to store it.\n \t\ttyp.TFlag |= abi.TFlagGCMaskOnDemand\n \t\ttyp.GCData = (*byte)(unsafe.Pointer(new(uintptr)))\n+\t\tif runtime.GOOS == \"aix\" {\n+\t\t\ttyp.GCData = adjustAIXGCData(... | 2026-01-31T02:42:27 |
vuejs/vue | d780dd2e2adcf71f40c086055a659a9a2b4a8282 | 77d406b2a49b286fe6587305fabcf0796db19ab1 | fix(types): accept primatives and falsy values in createElement children (#9154)
fixes #8498 | [
{
"path": "types/test/options-test.ts",
"patch": "@@ -281,6 +281,12 @@ Vue.component('provide-function', {\n })\n })\n \n+Vue.component('component-with-slot', {\n+ render (h): VNode {\n+ return h('div', this.$slots.default)\n+ }\n+})\n+\n Vue.component('component-with-scoped-slot', {\n render (h) {... | 2018-12-10T23:36:41 |
denoland/deno | f12a8b6803668ede2c910c5f01ead8bdee3d8149 | 2f42a460913eba2210a2d48e833d1e0e55423ed8 | fix(ext/node): provide CJS globals in worker_threads eval mode (#32266)
## Summary
- When using `new Worker(code, { eval: true })` in
`node:worker_threads`, Node.js evaluates the code as CommonJS, making
`require()` available. Deno was wrapping the code in a
`data:text/javascript` URL (ESM), causing `require is not de... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -364,10 +364,22 @@ class NodeWorker extends EventEmitter {\n \n if (options?.eval) {\n const code = typeof specifier === \"string\"\n- ? encodeURIComponent(specifier)\n+ ? specifier\n // deno-lint-ignore prefer-pr... | 2026-02-27T08:20:35 |
mrdoob/three.js | 01b8d301003f707e87746d4c792da4ff877e1882 | 730c742e12c7a62963a99687b25e9ae98db81976 | GLTFExporter: Make `getToBlobPromise()` more robust. (#31598)
* - fixed for Firefox 141.0.2+ not resolving promise with Offscreencanvas when exporting GLTF/GLB images
* Update package.json
* - updates based on PR comments
* Update GLTFExporter.js
* Update GLTFExporter.js
Rewrite `getToBlobPromise()`.
---------
... | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -543,32 +543,36 @@ function getCanvas() {\n \n function getToBlobPromise( canvas, mimeType ) {\n \n-\tif ( canvas.toBlob !== undefined ) {\n+\tif ( typeof OffscreenCanvas !== 'undefined' && canvas instanceof OffscreenCanvas ) {\n \n-\t\treturn... | 2025-08-07T15:28:32 |
golang/go | 01299a31c26b730785ac497da2ef7c593947d5d7 | 1bbb78e7772e7530338e9f154936dc2479adafac | cmd/cgo: use objdir consistently, create it as needed
Previously we added a slash to the end of objdir only after
processing input files. The effect was that the temporary gcc
output files were placed in /tmp, using objdir as a prefix.
Those output files were not removed by anything.
Now we consistently use objdir as... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -24,6 +24,7 @@ import (\n \t\"math\"\n \t\"os\"\n \t\"os/exec\"\n+\t\"path/filepath\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -1795,7 +1796,7 @@ var n atomic.Int64\n \n func gccTmp() string {\n \tc := strconv.Itoa(int(n.Add(1)))\n-\treturn *objDir + \"... | 2026-01-30T23:33:49 |
mrdoob/three.js | 62623db5dde71cf8a9a590af901da6727bbcd790 | 8722ea5455a6a6623f194b9a60ef5887ac16a4b0 | TSL: Fix performance of `viewportTexture()` (#31591)
* fix cache and reference
* fix shared frame buffer
* TexturesNode: Introduce `getBase()`
* Update ViewportTextureNode.js | [
{
"path": "src/nodes/accessors/TextureNode.js",
"patch": "@@ -548,7 +548,7 @@ class TextureNode extends UniformNode {\n \n \t\tconst textureNode = this.clone();\n \t\ttextureNode.uvNode = nodeObject( uvNode );\n-\t\ttextureNode.referenceNode = this.getSelf();\n+\t\ttextureNode.referenceNode = this.getBase()... | 2025-08-07T08:26:24 |
vuejs/vue | e06d2af276fc8d626a3b048f4d138a243aa690a4 | 628c1b7f5b298e13975d880c73e8fc2893628c2e | fix(types): avoid `this` in VueConstructor signature (#9173)
https://github.com/vuejs/vue-class-component/issues/294#issuecomment-445526936 | [
{
"path": "types/test/tsconfig.json",
"patch": "@@ -1,6 +1,7 @@\n {\n \"compilerOptions\": {\n \"target\": \"es5\",\n+ \"experimentalDecorators\": true,\n \"lib\": [\n \"dom\",\n \"es2015\"",
"additions": 1,
"deletions": 0,
"language": "JSON"
},
{
"path": "types/... | 2018-12-10T16:53:57 |
denoland/deno | 2f42a460913eba2210a2d48e833d1e0e55423ed8 | 7545be7ce2977fb13f75ecd81c24aa57597d0ebe | fix(node/vm): support vm.constants.DONT_CONTEXTIFY in createContext (#32337)
Closes https://github.com/denoland/deno/issues/31192
Adds support for creating vanilla (non-contextified) V8 contexts via
vm.createContext(vm.constants.DONT_CONTEXTIFY). This creates a context
without property interceptors, where globalThis ... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -234,6 +234,7 @@ deno_core::extension!(deno_node,\n ops::v8::op_v8_write_value,\n ops::vm::op_vm_create_script,\n ops::vm::op_vm_create_context,\n+ ops::vm::op_vm_create_context_without_contextify,\n ops::vm::op_vm_script_run_in_context,\n ops... | 2026-02-27T01:53:18 |
mrdoob/three.js | 7d8b148cd3b44ac72f0be5fd6d8528d2764e1bb5 | eda8be6f4411ed13d9e7283973dde6305a908e56 | TSL: Improve error message for operators with `void` values (#31593) | [
{
"path": "src/nodes/math/OperatorNode.js",
"patch": "@@ -103,9 +103,10 @@ class OperatorNode extends TempNode {\n \t * and the input node types.\n \t *\n \t * @param {NodeBuilder} builder - The current node builder.\n+\t * @param {?string} [output=null] - The output type.\n \t * @return {string} The node t... | 2025-08-07T01:54:52 |
vuejs/vue | 0d4b35f55975946cb0eb4f7f5f35efe3d078473e | 5d721a42b140865e50a78445fe21c5f270bde703 | fix(vdom): remove unnecessary sameVnode condition
fix #9168 | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -32,20 +32,13 @@ export const emptyNode = new VNode('', {}, [])\n \n const hooks = ['create', 'activate', 'update', 'remove', 'destroy']\n \n-function childrenIgnored (vnode) {\n- return vnode && vnode.data && vnode.data.domProps && (\n- vnode.data.domPro... | 2018-12-09T21:21:22 |
denoland/deno | 7545be7ce2977fb13f75ecd81c24aa57597d0ebe | c76ab60e5b8068bd5457da5033145792e13a6154 | fix: deflake run_watch_env_file_with_multiline_values (#32346) | [
{
"path": "tests/integration/watcher_tests.rs",
"patch": "@@ -2563,13 +2563,18 @@ console.log(\"---\");\n .arg(\"--watch\")\n .arg(\"--allow-env\")\n .arg(\"--env-file=.env\")\n+ .arg(\"-L\")\n+ .arg(\"debug\")\n .arg(&main_script)\n .env(\"NO_COLOR\", \"1\")\n .piped_output()\... | 2026-02-26T21:54:24 |
mrdoob/three.js | eda8be6f4411ed13d9e7283973dde6305a908e56 | 4bc8511b97e16257270ca75aa885e53fb1bba503 | TSL Transpiler: Fix addition of `Before` for non `++` or `--` (#31579) | [
{
"path": "examples/jsm/transpiler/TSLEncoder.js",
"patch": "@@ -340,7 +340,7 @@ class TSLEncoder {\n \n \t\t\tif ( node.hasAssignment ) {\n \n-\t\t\t\tif ( node.after === false ) {\n+\t\t\t\tif ( node.after === false && ( node.type === '++' || node.type === '--' ) ) {\n \n \t\t\t\t\ttype += 'Before';\n ",
... | 2025-08-07T01:11:09 |
golang/go | 1bbb78e7772e7530338e9f154936dc2479adafac | a3688ab13e76762a168f43e91ca9422c847ee896 | cmd/go: rewrite cgo names to "C." in compiler error messages
We used to do this but it broke in Go 1.10. This restores the rewrite,
but only applied to compiler output for packages that use cgo.
That is all that the original rewrite applied to anyhow.
Fixes #76339
Change-Id: Ife8ee858ddd0ff7bcc7423455b2eabf8381b7bde... | [
{
"path": "src/cmd/cgo/internal/testerrors/errors_test.go",
"patch": "@@ -72,7 +72,7 @@ func expect(t *testing.T, errors []*regexp.Regexp, files ...string) {\n \tdefer os.RemoveAll(dir)\n \n \tdst := filepath.Join(dir, strings.TrimSuffix(files[0], \".go\"))\n-\targs := []string{\"build\", \"-gcflags=-L -e\"... | 2025-11-19T00:24:04 |
vuejs/vue | 5d721a42b140865e50a78445fe21c5f270bde703 | 780dac561b9cd6c3cec28f154f76e7d28352ebf3 | revert: fix(sfc): avoid deindent when pad option is specified (#7647)
This reverts commit 9d2f9a034f9c40d5ba6d8b1e131b1bfb675dc1cf. | [
{
"path": "src/sfc/parser.js",
"patch": "@@ -83,15 +83,11 @@ export function parseComponent (\n function end (tag: string, start: number) {\n if (depth === 1 && currentBlock) {\n currentBlock.end = start\n- let text = content.slice(currentBlock.start, currentBlock.end)\n+ let text = de... | 2018-12-09T20:52:17 |
denoland/deno | c76ab60e5b8068bd5457da5033145792e13a6154 | 124de8b54f2675732346da76a577fbb061ba8d65 | chore: upgrade rustyline to 17.0 and nix to 0.30 (#32344)
Upgrade rustyline to v17.0.0 (with custom-bindings feature)
and rustyline-derive to v0.11.1. Upgrade nix to v0.30.1 to align
with rustyline 17's dependency.
API changes:
- highlight_char: bool → CmdKind parameter
- set_keyseq_timeout: i32 → Option<i32>
- Readl... | [
{
"path": "Cargo.lock",
"patch": "@@ -1708,7 +1708,7 @@ dependencies = [\n \"malva\",\n \"markup_fmt\",\n \"memchr\",\n- \"nix 0.27.1\",\n+ \"nix 0.30.1\",\n \"node_resolver\",\n \"node_shim\",\n \"notify\",\n@@ -2184,7 +2184,7 @@ dependencies = [\n \"filetime\",\n \"junction\",\n \"libc\",\n- \"ni... | 2026-02-26T21:22:57 |
mrdoob/three.js | 128c0547353fdea12dbaa0e05f80ce9337f9af9a | bc1c2bbced815b4995524645672122814f8fa122 | WebGLBackend:Hhonor layerUpdates for array textures. (#31582)
* webgl-fallback: honor layerUpdates for array textures
* fix linting
---------
Co-authored-by: user <merowinger> | [
{
"path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js",
"patch": "@@ -1,5 +1,6 @@\n import { LinearFilter, LinearMipmapLinearFilter, LinearMipmapNearestFilter, NearestFilter, NearestMipmapLinearFilter, NearestMipmapNearestFilter, FloatType, MirroredRepeatWrapping, ClampToEdgeWrapping, RepeatWra... | 2025-08-06T08:03:40 |
vuejs/vue | 780dac561b9cd6c3cec28f154f76e7d28352ebf3 | a89384c8d93a3e5a382f60a84d60f0675408ed75 | fix(ssr): should not warn for custom directives that do not have ssr implementation
fix #9167 | [
{
"path": "src/server/render.js",
"patch": "@@ -326,7 +326,7 @@ function renderStartingTag (node: VNode, context) {\n for (let i = 0; i < dirs.length; i++) {\n const name = dirs[i].name\n if (name !== 'show') {\n- const dirRenderer = resolveAsset(context, 'directives', name, t... | 2018-12-09T20:47:43 |
golang/go | ae7b257f24736ec13100870c4dee59c5eb57f062 | 835d6d42c478a711708968cf0916d734940f88ee | cmd/compile: enhance astdump flag to also generate HTML
AI-generated code, 3 merged commits, plus a LOT of hand
cleanups and tweaks, including removing cargo-culted dead
code from the SSA example, reorganizing CSS and JS out of a
single giant comment, using defer appropriately to ensure
balanced open/close tags, runni... | [
{
"path": "src/cmd/compile/internal/gc/main.go",
"patch": "@@ -47,6 +47,7 @@ import (\n // already been some compiler errors). It may also be invoked from the explicit panic in\n // hcrash(), in which case, we pass the panic on through.\n func handlePanic() {\n+\tir.CloseHTMLWriters()\n \tif err := recover(... | 2026-01-30T06:46:05 |
denoland/deno | 124de8b54f2675732346da76a577fbb061ba8d65 | e224b7e166c2edd26b7b4d2c47480fb3e2c5868b | fix(lsp): tsgo typings for bytes/text imports (#32333) | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -42,6 +42,7 @@ use node_resolver::NodeResolutionKind;\n use node_resolver::ResolutionMode;\n use node_resolver::cache::NodeResolutionThreadLocalCache;\n use once_cell::sync::Lazy;\n+use percent_encoding::percent_decode_str;\n use serde::Serialize;\n use tower_l... | 2026-02-26T20:42:01 |
mrdoob/three.js | bc1c2bbced815b4995524645672122814f8fa122 | 09eafbef66650276cad937ebc869374d0efb1ae2 | Warns for VideoTexture with non-srgb color spaces (#31569)
* warn
* fix
* Update Textures.js
Refine warning.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "src/renderers/common/Textures.js",
"patch": "@@ -2,7 +2,8 @@ import DataMap from './DataMap.js';\n \n import { Vector3 } from '../../math/Vector3.js';\n import { DepthTexture } from '../../textures/DepthTexture.js';\n-import { DepthStencilFormat, DepthFormat, UnsignedIntType, UnsignedInt248Type, ... | 2025-08-06T07:59:47 |
vuejs/vue | dfaf9e24361e10ae68ce3951eaf48262cf90f0ec | 8a2dbf50105ea729125a42fecfe2c2f0371d7836 | fix(types): type support for advanced async components (#8438) | [
{
"path": "types/options.d.ts",
"patch": "@@ -15,12 +15,24 @@ export type Component<Data=DefaultData<never>, Methods=DefaultMethods<never>, Co\n interface EsModuleComponent {\n default: Component\n }\n+ \n+export type AsyncComponent<Data=DefaultData<never>, Methods=DefaultMethods<neve... | 2018-12-05T23:00:56 |
golang/go | 835d6d42c478a711708968cf0916d734940f88ee | 1179cfc9b490ce5a8c3adaccea84c79e69f711d7 | cmd/compile: add astdump debug flag
This was extraordinarily useful for inlining work.
I have cleaned it up somewhat, and did some additional tweaks
after working on changes to bloop.
-gcflags=-d=astdump=SomeFunc
-gcflags=-d=astdump=SomeSubPkg.SomeFunc
-gcflags=-d=astdump=Some/Pkg.SomeFunc
-gcflags=-d=astdump=~YourRe... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -18,6 +18,7 @@ var Debug DebugFlags\n type DebugFlags struct {\n \tAlignHot int `help:\"enable hot block alignment (currently requires -pgo)\" concurrent:\"ok\"`\n \tAppend int `help:\"print information about ... | 2024-11-19T18:57:23 |
denoland/deno | e224b7e166c2edd26b7b4d2c47480fb3e2c5868b | f6cedf7dcc2e1bec8640c44a122abfa8bfc6b8c5 | fix(install): do not panic if lockfile incorrectly says package has a bin (#32345)
Confirmed added test panics before this PR, passes after | [
{
"path": "libs/npm_installer/bin_entries.rs",
"patch": "@@ -81,10 +81,14 @@ impl<'a, TSys: SetupBinEntrySys> BinEntries<'a, TSys> {\n extra: &'b NpmPackageExtraInfo,\n package_path: PathBuf,\n ) {\n+ let Some(bin) = extra.bin.as_ref() else {\n+ // likely lockfile incorrectly said that the... | 2026-02-26T20:15:10 |
mrdoob/three.js | 93b9620c1b2ee4c6127eb79deacfe683122f6212 | 84aa697932c3bf4eda1a0570b7279830c69283ef | TSL: Align API of blur filters and deprecated `premultipliedGaussianBlur()` (#31559)
* remove redundant nodeObject()
* add sample interface for option.mask
* introduce options to gaussianBlur
* add `option.resolution`
* add`uv` to `sample()` node
* fix check
* remove `mask`
* Update webgpu_reflection_blurred.ht... | [
{
"path": "examples/jsm/tsl/display/GaussianBlurNode.js",
"patch": "@@ -25,8 +25,11 @@ class GaussianBlurNode extends TempNode {\n \t * @param {TextureNode} textureNode - The texture node that represents the input of the effect.\n \t * @param {Node<vec2|float>} directionNode - Defines the direction and radi... | 2025-08-06T04:49:17 |
vuejs/vue | 8a2dbf50105ea729125a42fecfe2c2f0371d7836 | 0ed0aad77228b95e9a61a87386736938837527f8 | fix(transition-group): fix activeInstance regression
fix #9151 | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -21,6 +21,14 @@ import {\n export let activeInstance: any = null\n export let isUpdatingChildComponent: boolean = false\n \n+export function setActiveInstance(vm: Component) {\n+ const prevActiveInstance = activeInstance\n+ activeInstance = vm\n+ r... | 2018-12-05T22:33:39 |
golang/go | 8572b1cfea49b6108b9fb8ea650c4999ba70d381 | e0414d74fe2d38a6de1cadbbc135d578b11a27af | internal/runtime: fix assembly for spectre retpoline instrumentation
In the last year we added two CALLs whose targets are loaded from
memory. Change them to call from a register so that the instrumentation
for spectre mitigations works.
This change also adds a smoke test for the spectre build flags.
For #77420.
Ch... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -789,22 +789,38 @@ func (t *tester) registerTests() {\n \tif !t.compileOnly && !t.short {\n \t\tt.registerTest(\"GODEBUG=gcstoptheworld=2 archive/zip\",\n \t\t\t&goTest{\n-\t\t\t\tvariant: \"runtime:gcstoptheworld2\",\n+\t\t\t\tvariant: \"gcstoptheworld2\",\n \... | 2026-02-03T15:45:21 |
denoland/deno | f6cedf7dcc2e1bec8640c44a122abfa8bfc6b8c5 | dca6b1a9ed2561ff5300aaa47437b4910646e44b | fix(install): global install should not warn about using node_modules dir for npm specifiers (#32341) | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -1184,6 +1184,9 @@ impl CliOptions {\n .first()\n .and_then(|url| file_to_url(url))\n .map(|url| vec![url]),\n+ DenoSubcommand::Install(InstallFlags::Local(\n+ InstallFlagsLocal::Entrypoints(flags),\n+ )) => Some(... | 2026-02-26T17:01:30 |
mrdoob/three.js | 84aa697932c3bf4eda1a0570b7279830c69283ef | 4aa10f4939129bf47f4bc30db369000e085d10e9 | WebGPURenderer: Add HDR Support (#29573)
* WebGPURenderer: Add HDR Support
* cleanup
* Add support for HDR via colorSpace, include Postprocessing support
* cleanup
* Fix, revert ExtendedLinear and use outputType instead
* cleanupg
* feedback | [
{
"path": "examples/jsm/math/ColorSpaces.js",
"patch": "@@ -1,4 +1,4 @@\n-import { LinearTransfer, Matrix3, SRGBTransfer } from 'three';\n+import { LinearTransfer, Matrix3, SRGBTransfer, SRGBColorSpace, ColorManagement } from 'three';\n \n /** @module ColorSpaces */\n \n@@ -114,6 +114,24 @@ export const Lin... | 2025-08-06T01:43:08 |
vuejs/vue | 0ed0aad77228b95e9a61a87386736938837527f8 | f077ed17af14bb2675db64b2aa2d023769219624 | fix: fix keyName checking for space and delete in IE11 (#9150)
fix #9112 | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -22,13 +22,15 @@ const keyNames: { [key: string]: string | Array<string> } = {\n esc: ['Esc', 'Escape'],\n tab: 'Tab',\n enter: 'Enter',\n- space: ' ',\n+ // #9112: IE11 uses `Spacebar` for Space key name.\n+ space: [' ', 'Spacebar'],\n // ... | 2018-12-05T20:26:58 |
golang/go | b691a2edc7f5863f61a07c4a4f087eef1a15a704 | 31c9bcb1037a332fd547808693cd1899090b5854 | crypto/tls: revalidate whole chain on resumption on Windows and macOS
TestHandshakeChangeRootCAsResumption and TestHandshakeGetConfigForClientDifferentClientCAs
changed because previously rootA and rootB shared Subject and SPKI,
which made the new full-chain revalidation check succeed, as the
same leaf would verify a... | [
{
"path": "src/crypto/tls/common.go",
"patch": "@@ -22,6 +22,7 @@ import (\n \t\"internal/godebug\"\n \t\"io\"\n \t\"net\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strings\"\n \t\"sync\"\n@@ -1873,15 +1874,27 @@ func anyValidVerifiedChain(verifiedChains [][]*x509.Certificate, opts x509.Verif\n \t\t}) {\n \t\t\t... | 2026-01-30T17:07:23 |
denoland/deno | dca6b1a9ed2561ff5300aaa47437b4910646e44b | 126b6fb5da78621cdbbd9465a805f415e9fdb794 | Revert "fix(ext/node): implement `after`, `afterEach`, `before`, and … (#32340)
…`beforeEach` of `node:test` (#32320)"
This reverts commit 9612761ee60df178b418ca756c181ff0757483dd.
The tests from this commit are flaky and failing on `main`. | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -21,8 +21,6 @@ const {\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import assert from \"node:assert\";\n \n-type HookFn = () => void | Promise<void>;\n-\n const methodsToCopy = [\n \"deepEqual\",\n \"deepStrictEqual\",\n@@ -63,3... | 2026-02-26T16:35:15 |
mrdoob/three.js | b52a72e2b9d4835a98763733c00edc6323103cdb | 7a1f975aca878c0c5c50bc74b051c1e6bb6269d3 | Update TRAANode.js
Fix JSDoc. | [
{
"path": "examples/jsm/tsl/display/TRAANode.js",
"patch": "@@ -79,7 +79,7 @@ class TRAANode extends TempNode {\n \t\t/**\n \t\t * The camera the scene is rendered with.\n \t\t *\n-\t\t * @type {TextureNode}\n+\t\t * @type {Camera}\n \t\t */\n \t\tthis.camera = camera;\n ",
"additions": 1,
"deletio... | 2025-08-05T17:49:12 |
vuejs/vue | f077ed17af14bb2675db64b2aa2d023769219624 | 93850f49e31559c78dc91f5df9e756f424ba910a | fix(ssr): fix ssr template publicPath generation
fix #9145 | [
{
"path": "src/server/template-renderer/index.js",
"patch": "@@ -60,7 +60,10 @@ export default class TemplateRenderer {\n // extra functionality with client manifest\n if (options.clientManifest) {\n const clientManifest = this.clientManifest = options.clientManifest\n- this.publicPath = ... | 2018-12-05T15:54:42 |
golang/go | 31c9bcb1037a332fd547808693cd1899090b5854 | 18d31e3e8bf47538c8a570268cd714d47bf01aef | internal/poll: readWriteUnlock should destroy fd when no remaining references
Fixes #77404
Change-Id: I0402becb94855baf942d6ba3815cc2a3c1526d6e
Reviewed-on: https://go-review.googlesource.com/c/go/+/740921
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Sh... | [
{
"path": "src/internal/poll/fd_mutex.go",
"patch": "@@ -265,7 +265,9 @@ func (fd *FD) readWriteLock() error {\n // is no remaining reference.\n func (fd *FD) readWriteUnlock() {\n \tfd.fdmu.rwunlock(true)\n-\tfd.fdmu.rwunlock(false)\n+\tif fd.fdmu.rwunlock(false) {\n+\t\tfd.destroy()\n+\t}\n }\n \n // clos... | 2026-02-02T11:06:22 |
denoland/deno | d7208c94811c07b17e8113fd964a9d7b58baca56 | 8209f3d4198325289192743d4881b2b334e84b7e | chore: fix duplicate words in source comments (#32314) | [
{
"path": "libs/lockfile/graphs.rs",
"patch": "@@ -276,7 +276,7 @@ impl LockfilePackageGraph {\n \n fn remove_root_pkg_by_id(&mut self, id: &LockfilePkgId) {\n // The ideal goal here is to only disassociate the package\n- // from the root so that the the current dependencies can be\n+ // from th... | 2026-02-26T14:40:57 |
mrdoob/three.js | 610c12677a5a45a180b58dd04c26a40f89df8e2a | 60d89545b82f4c13541ac7d6e271ca0da80019dc | Examples: Fix `webgpu_compute_particles_fluid` GUI (#31570) | [
{
"path": "examples/webgpu_compute_particles_fluid.html",
"patch": "@@ -104,9 +104,6 @@\n \t\t\t\t\tp2g1Kernel.count = value;\n \t\t\t\t\tp2g2Kernel.count = value;\n \t\t\t\t\tg2pKernel.count = value;\n-\t\t\t\t\tp2g1Kernel.updateDispatchCount();\n-\t\t\t\t\tp2g2Kernel.updateDispatchCount();\n-\t\t\t\t\tg2p... | 2025-08-04T20:43:45 |
vuejs/vue | 93850f49e31559c78dc91f5df9e756f424ba910a | 1b4a8a0c1edaf9c7eb129ba61bca94ba607bbf56 | chore: fix sponsor link | [
{
"path": "BACKERS.md",
"patch": "@@ -195,8 +195,8 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n </a>\n </td>\n <td align=\"center\" valign=\"middle\">\n- <a href=\"https://www.inkloop.in/\" target=\"_blank\">\n- <img width=\"148px\... | 2018-12-04T16:00:09 |
golang/go | 7fd116f86451d7262f7683629b90c8adc0137f53 | 8ac41b52c4b7a6ab9c41d008abbe254270200b8e | go/types, types2: add missing Named.unpack call in Checker.hasVarSize
CL 734980 swapped use of Type.Underlying() in Checker.hasVarSize for
traversal of Named.fromRHS. It forgot to call Named.unpack() before
inspecting Named.fromRHS, allowing access of unexpanded instantiated
types.
These unexpanded instantiated types... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -1009,7 +1009,8 @@ func sliceElem(x *operand) (Type, *typeError) {\n // yet been checked.\n func (check *Checker) hasVarSize(t Type) bool {\n \t// Note: We could use Underlying here, but passing through the RHS may yield\n-\t// better err... | 2026-01-30T19:23:02 |
denoland/deno | defb168115d29be50d40d8f61aa2b854bfaacdd9 | 9612761ee60df178b418ca756c181ff0757483dd | fix(ext/node): rename conflict callback field typo (#32306)
Co-authored-by: Rohan Santhosh <181558744+Rohan5commit@users.noreply.github.com> | [
{
"path": "ext/node_sqlite/database.rs",
"patch": "@@ -1084,7 +1084,7 @@ impl DatabaseSync {\n \n struct HandlerCtx<'a, 'b, 'c> {\n scope: &'a mut v8::PinScope<'b, 'c>,\n- confict: Option<v8::Local<'b, v8::Function>>,\n+ conflict: Option<v8::Local<'b, v8::Function>>,\n filter: Opti... | 2026-02-26T09:30:21 |
mrdoob/three.js | 60d89545b82f4c13541ac7d6e271ca0da80019dc | 13be9fb16b119aadd3c4d734838b6a63c92e55e5 | TSL: Introduce `uniformFlow()` (#31531)
* init branch
* fixes
* move to new approach, adjust existing conditional node flow to take advantage of more existing flow code functionality
* remove forceWebGL checks
* cleanup
* revert requested examples
* fix typo
* try build again
* fix spacing in select statement
... | [
{
"path": "examples/webgpu_compute_cloth.html",
"patch": "@@ -561,4 +561,4 @@\n \n \t\t</script>\n \t</body>\n-</html>\n+</html>\n\\ No newline at end of file",
"additions": 1,
"deletions": 1,
"language": "HTML"
},
{
"path": "examples/webgpu_compute_points.html",
"patch": "@@ -30,7 +... | 2025-08-04T20:38:56 |
vuejs/vue | 1b4a8a0c1edaf9c7eb129ba61bca94ba607bbf56 | 448ba65d2b139b29f1e6891add9925ac22ffe10b | fix(compiler): fix codegen for v-for component inside template
fix #9142 | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -406,9 +406,7 @@ export function genChildren (\n el.tag !== 'template' &&\n el.tag !== 'slot'\n ) {\n- // because el may be a functional component and return an Array instead of a single root.\n- // In this case, just a simple... | 2018-12-04T15:51:29 |
golang/go | 8ac41b52c4b7a6ab9c41d008abbe254270200b8e | 62d08234b797806796af0d51051f2e13caa42e2a | testing/synctest: add Sleep
Add a convenience function which combines time.Sleep and synctest.Wait.
Fixes #77169
Change-Id: I2ff105105e95cfd8e5b4f72ccacf7afa59efb6bd
Reviewed-on: https://go-review.googlesource.com/c/go/+/740066
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit: Damien Neil <dneil@google.co... | [
{
"path": "api/next/77169.txt",
"patch": "@@ -0,0 +1 @@\n+pkg testing/synctest, func Sleep(time.Duration) #77169",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/testing/synctest/77169.md",
"patch": "@@ -0,0 +1 @@\n+The new [Sleep] h... | 2026-01-28T23:04:46 |
mrdoob/three.js | 13be9fb16b119aadd3c4d734838b6a63c92e55e5 | 5472220ce670a50ab8e95b59bc32e5e5e75630cd | Update BloomNode.js
Fix code style. | [
{
"path": "examples/jsm/tsl/display/BloomNode.js",
"patch": "@@ -366,7 +366,7 @@ class BloomNode extends TempNode {\n \n \t\t// These sizes have been changed to account for the altered coefficents-calculation to avoid blockiness,\n \t\t// while retaining the same blur-strength. For details see https://githu... | 2025-08-04T08:22:05 |
denoland/deno | 9612761ee60df178b418ca756c181ff0757483dd | 7a2fdf504f94ef695c6498f4591068e1145fdd63 | fix(ext/node): implement `after`, `afterEach`, `before`, and `beforeEach` of `node:test` (#32320) | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -21,6 +21,8 @@ const {\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import assert from \"node:assert\";\n \n+type HookFn = () => void | Promise<void>;\n+\n const methodsToCopy = [\n \"deepEqual\",\n \"deepStrictEqual\",\n@@ -61,1... | 2026-02-26T09:19:43 |
mrdoob/three.js | ff9b259010be1709ec3194e749c8ecc596040970 | c50e2574d652630bfb428aa594067d5e503e05b8 | TSL: Add `boxBlur()`. (#31556)
* TSL: Add `boxBlur()`.
* TSL: Use `convertToTexture()` in `boxBlur()`.
* Update boxBlur.js
Fix typos. | [
{
"path": "examples/jsm/tsl/display/boxBlur.js",
"patch": "@@ -0,0 +1,62 @@\n+import { Fn, vec2, uv, Loop, vec4, premultiplyAlpha, unpremultiplyAlpha, max, int, textureSize, nodeObject, convertToTexture } from 'three/tsl';\n+\n+/**\n+ * Applies a box blur effect to the given texture node.\n+ *\n+ * Compared... | 2025-08-02T16:15:27 |
vuejs/vue | 448ba65d2b139b29f1e6891add9925ac22ffe10b | 0d7fb739257cc3d3fc1ea6127eb1089a762b220c | fix(types): correct scopedSlot types (#9131)
see #8946 | [
{
"path": "types/test/options-test.ts",
"patch": "@@ -1,5 +1,5 @@\n import Vue, { VNode } from \"../index\";\n-import { AsyncComponent, ComponentOptions, FunctionalComponentOptions, Component } from \"../index\";\n+import { ComponentOptions, Component } from \"../index\";\n import { CreateElement } from \".... | 2018-12-04T01:31:39 |
golang/go | 62d08234b797806796af0d51051f2e13caa42e2a | 35abaf75c35adc9b22038885781b8be70a8476e0 | internal/maps,cmd/compile/internal/walk: replace calls to mapaccess1* with mapaccess2*
mapaccess1* and mapaccess2* functions share the same implementation and differ only in whether the boolean "found" is returned.
This change replaces mapaccess1* calls with mapaccess2*.
We can do this transparently, since the call s... | [
{
"path": "src/cmd/compile/internal/walk/assign.go",
"patch": "@@ -154,12 +154,14 @@ func walkAssignMapRead(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {\n \n \tr := n.Rhs[0].(*ir.IndexExpr)\n \twalkExprListSafe(n.Lhs, init)\n+\n \tr.X = walkExpr(r.X, init)\n \tr.Index = walkExpr(r.Index, init)\n+\tmap_ :... | 2026-01-13T10:06:28 |
denoland/deno | 7a2fdf504f94ef695c6498f4591068e1145fdd63 | 1df618d969894353731981a17784816167ad82fb | fix(node/buffer): fix base64 decoding for strings with hyphens (#32298)
## Summary
- Fix `Buffer.from(str, "base64")` throwing on strings containing `-`
characters (e.g. `"base64-encoded-bytes-from-browser"`)
- Two bugs in `base64ToBytes` / `base64clean`:
1. Base64url character replacements (`-`→`+`, `_`→`/`) were app... | [
{
"path": "ext/node/polyfills/internal_binding/_utils.ts",
"patch": "@@ -21,8 +21,10 @@ export function base64ToBytes(str: string) {\n try {\n return forgivingBase64Decode(str);\n } catch {\n- str = base64clean(str);\n+ // Convert base64url characters to standard base64 before cleaning,\n+ ... | 2026-02-26T08:14:16 |
mrdoob/three.js | 3dd226d4a272c195611046b98ec8a97ff2e4db8c | 64df03dfd6bacaade3930fb0314a178ff596841f | WebGPURenderer: Fix MSAA using mipmap levels (#31544)
* WebGPU: Fix MSAA using mipmap levels
* Change comment to link to official specification | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -266,6 +266,7 @@ class WebGPUTextureUtils {\n \n \t\t\tmsaaTextureDescriptorGPU.label = msaaTextureDescriptorGPU.label + '-msaa';\n \t\t\tmsaaTextureDescriptorGPU.sampleCount = samples;\n+\t\t\tmsaaTextureDescriptorGPU.mipLevelCount ... | 2025-08-02T12:06:05 |
vuejs/vue | 307835284a326569ea12c4a22c7dcb8f36d2d8ca | aca17b4064bf5017506d77e9f5bf286cfe926ae1 | fix(ssr): resolve server directives the same as on client (#9129)
fix #8961 | [
{
"path": "src/server/render.js",
"patch": "@@ -3,6 +3,7 @@\n import { escape } from 'web/server/util'\n import { SSR_ATTR } from 'shared/constants'\n import { RenderContext } from './render-context'\n+import { resolveAsset } from 'core/util/options'\n import { generateComponentTrace } from 'core/util/debug... | 2018-12-02T21:01:19 |
golang/go | 35abaf75c35adc9b22038885781b8be70a8476e0 | 07f7f8ca5202bdcd39216e25b4a5b2c309ea727f | encoding/json: use pooled encoder in Encoder.Encode
Due to the lack of MarshalWrite in the v1 API,
it is unfortunately common to see:
json.NewEncoder(out).Encode(in)
where a single-use Encoder is constructed and thrown away.
This performed acceptably in v1 since every call to Encode
used a globally pooled encode... | [
{
"path": "src/encoding/json/bench_test.go",
"patch": "@@ -14,6 +14,7 @@ package json\n \n import (\n \t\"bytes\"\n+\t\"crypto/sha256\"\n \t\"fmt\"\n \t\"internal/testenv\"\n \t\"internal/zstd\"\n@@ -581,3 +582,19 @@ func BenchmarkUnmarshalNumber(b *testing.B) {\n \t\t}\n \t}\n }\n+\n+func BenchmarkNewEncod... | 2026-01-30T20:15:31 |
denoland/deno | c08e78ddf4e6a3b1e8457039c0e2965ae147b3d4 | 1b4eac4c0a3ca77c64d0071f9716316c497ce864 | ci: fix script for release builds (#32321)
Without this condition, tagged builds were marked as canary, instead of
"stable" | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -772,6 +772,7 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n {\n // do this on PRs as well as main so that PRs can use the cargo build cache from main\n name: \"Configure canary build\",\n+ ... | 2026-02-25T14:08:32 |
mrdoob/three.js | 82b03f580ed0fe520939eefe62ab34dd418e9ef2 | 54ac263593c81b669ca9a089491ddd9e240427d2 | DepthOfFieldNode: New implementation. (#31547)
* Manual MRT test.
* DepthOfFieldNode: Fix MRT setup.
* DepthOfFieldNode: Initial approach.
* DepthOfFieldNode: Fix kernel size.
* DepthOfFieldNode: Clean up.
* DepthOfFieldNode: Fix aliased near field edges.
* DepthOfField: Clean up.
* DepthOfFieldNode: Add commen... | [
{
"path": "examples/jsm/tsl/display/DepthOfFieldNode.js",
"patch": "@@ -1,9 +1,17 @@\n-import { TempNode, NodeUpdateType } from 'three/webgpu';\n-import { convertToTexture, nodeObject, Fn, uv, uniform, vec2, vec4, clamp } from 'three/tsl';\n+import { TempNode, NodeMaterial, NodeUpdateType, RenderTarget, Vec... | 2025-08-02T08:37:00 |
golang/go | cce3fea08f8b2509b7651ee552111a8cc763a459 | 3b2a451cef467e42e41552cf490498d3bf39df29 | internal/poll: move buffer pinning inside execIO
This is a step towards deferring adding the handle to IOCP until the
first IO operation.
The goal of this CL is to avoid the fd.isBlocking check in fd.pin,
which was happening outside execIO, and making buffer pinning less
error-prone.
This also fixes an issue where b... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -232,27 +232,10 @@ func (fd *FD) waitIO(o *operation) error {\n \treturn err\n }\n \n-// pin pins ptr for the duration of the IO operation.\n-// If fd is in blocking mode, pin does nothing.\n-func (fd *FD) pin(mode int, ptr any) {\n-\tif fd.isBlockin... | 2026-01-30T13:29:58 |
vuejs/vue | e4b1b57fd7117a19cdb376dcb156606e0cc32a94 | 19c33a7e4072b03069f803263ed0c49feb5f73a9 | fix(ssr): adjust call stack size defer threshold
fix #8545 | [
{
"path": "src/server/render-context.js",
"patch": "@@ -66,55 +66,54 @@ export class RenderContext {\n }\n \n next () {\n- const lastState = this.renderStates[this.renderStates.length - 1]\n- if (isUndef(lastState)) {\n- return this.done()\n- }\n- /* eslint-disable no-case-declarations ... | 2018-12-02T17:31:16 |
denoland/deno | ede0e2ae4901ffa3d85d618c1a198430f76915b0 | 9c4102a765e10958fd36de3679702c61de3b7bb5 | fix(permissions): allow /proc/pressure/* files with --allow-read (#30780)
The /proc/pressure/* files (memory, cpu, io) are read-only system
monitoring files that only expose PSI (Pressure Stall Information)
metrics. These files are safe to read and commonly used for system
monitoring and performance analysis.
Previou... | [
{
"path": "runtime/permissions/lib.rs",
"patch": "@@ -4268,6 +4268,9 @@ impl PermissionsContainer {\n {\n if path.ends_with(\"/environ\") {\n self.check_env_all()?;\n+ } else if path.starts_with(\"/proc/pressure/\") {\n+ // Allow /proc/pressure/* files with just --all... | 2026-02-24T16:58:47 |
mrdoob/three.js | 10a2144d99d2138f475b9da9b268ee1ff6460403 | 5588622dad1efe47fd567813de200ce4e42a0bb0 | WebGPURenderer: Explicitly set `VideoTexture#colorSpace` to `SRGBColorSpace` (#31534)
* fix
* shorten
* lint | [
{
"path": "examples/webgpu_lights_projector.html",
"patch": "@@ -191,6 +191,7 @@\n \t\t\t\t\t\t\tvideo.play();\n \n \t\t\t\t\t\t\tvideoTexture = new THREE.VideoTexture( video );\n+\t\t\t\t\t\t\tvideoTexture.colorSpace = THREE.SRGBColorSpace;\n \n \t\t\t\t\t\t}\n ",
"additions": 1,
"deletions": 0,
... | 2025-07-31T23:39:50 |
golang/go | f14d8975a21e24aa33e0b496e822fdcb285879b9 | 35c5deb1d43b245c19059d1532929ee087e44a84 | runtime: align end of systemstack_switch prologue on amd64 for consistency with gosave_systemstack_switch
gosave_systemstack_switch saves PC with fixed offset of 8 bytes from systemstack_switch to bypass prologue.
This commit makes this offset consistent with actual address of UNDEF instruction intended to be at that ... | [
{
"path": "src/runtime/asm_amd64.s",
"patch": "@@ -510,6 +510,8 @@ goodm:\n // The frame layout needs to match systemstack\n // so that it can pretend to be systemstack_switch.\n TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0\n+\t// Align for consistency with offset used in gosave_systemstack_switch\n+\... | 2026-01-29T18:12:49 |
vuejs/vue | 19c33a7e4072b03069f803263ed0c49feb5f73a9 | 530ca1b2db315fbd0e360807b2031d26665c5d3d | fix(v-on): correctly remove once listener (#8036)
fix #8032 | [
{
"path": "src/core/instance/events.js",
"patch": "@@ -21,25 +21,31 @@ export function initEvents (vm: Component) {\n \n let target: any\n \n-function add (event, fn, once) {\n- if (once) {\n- target.$once(event, fn)\n- } else {\n- target.$on(event, fn)\n- }\n+function add (event, fn) {\n+ target.... | 2018-12-02T16:32:59 |
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.