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 | 195f172ccefd2fded6bb05121128079db68b33d9 | 2a0228c066a7fe4bce0f1d12b3e5bd4058dcc218 | Examples: Fix compute_texture_pingpong example (#32039) | [
{
"path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js",
"patch": "@@ -951,8 +951,7 @@ class WGSLNodeBuilder extends NodeBuilder {\n \n \t\t\t\t}\n \n-\t\t\t\t// Only mark as storage binding when actually writing (storeNode is set)\n-\t\t\t\ttexture.store = node.isStorageTextureNode === true && node.store... | 2025-10-11T08:15:45 |
mrdoob/three.js | 56013e03035caa8a3ca857795315b773c5c78ec8 | 9aad521bc15b018ba52636ab01ba7a8b48306145 | TubePainter: Fixed end caps and removed object allocations (#32030)
* TubePainter: Fixed end caps and removed object allocations.
* TubePainter: Inlined _lineTo.
* Clean up.
* TubePainter: Fixed endCap not being moved tot he end of the new segments.
* TubePainter: Removed minDistance code.
* TubePainter: Restored... | [
{
"path": "examples/jsm/misc/TubePainter.js",
"patch": "@@ -42,9 +42,7 @@ function TubePainter() {\n \tgeometry.setAttribute( 'color', colors );\n \tgeometry.drawRange.count = 0;\n \n-\tconst material = new MeshStandardMaterial( {\n-\t\tvertexColors: true\n-\t} );\n+\tconst material = new MeshStandardMateri... | 2025-10-09T12:45:23 |
vuejs/vue | 22790b250cd5239a8379b4ec8cc3a9b570dac4bc | ebc1893faccd1a9d953a8e8feddcb49cf1b9004d | fix(scheduler): revert timeStamp check
fix #9729
This reverts #9667, but also fixes the original issue #9632 by skipping
the check in IE altogether (since all IE use low-res event timestamps). | [
{
"path": "src/core/observer/scheduler.js",
"patch": "@@ -8,7 +8,8 @@ import {\n warn,\n nextTick,\n devtools,\n- inBrowser\n+ inBrowser,\n+ isIE\n } from '../util/index'\n \n export const MAX_UPDATE_COUNT = 100\n@@ -47,16 +48,19 @@ let getNow: () => number = Date.now\n // timestamp can either be h... | 2019-03-19T04:44:49 |
golang/go | cc1241f353abbac2df2baf7abe09506be27782e8 | a5f474fc062a3b9140febc802b6cc38cbebdd973 | runtime: fix printfloat, printcomplex buffer sizes
The buffers added in CL 716002 for printfloat64 and printcomplex128 are
too small to fit the longest formatted values. For values that are too
long, AppendFloat allocates, which may cause a crash for prints in
places in the runtime where allocation is not allowed.
Fi... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -2084,6 +2084,24 @@ func DumpPrintQuoted(s string) string {\n \treturn string(buf)\n }\n \n+// DumpPrint returns the output of print(v).\n+func DumpPrint[T any](v T) string {\n+\tgp := getg()\n+\tgp.writebuf = make([]byte, 0, 2048)\n+\tprint(v)\n+\tbuf :=... | 2026-02-27T19:57:48 |
mrdoob/three.js | 9aad521bc15b018ba52636ab01ba7a8b48306145 | da275a4e00536723155b68518944de5eb7945550 | Renderer: Fix breakage in deprecated methods. (#32029) | [
{
"path": "src/renderers/common/PostProcessing.js",
"patch": "@@ -215,6 +215,8 @@ class PostProcessing {\n \n \t\twarnOnce( 'PostProcessing: \"renderAsync()\" has been deprecated. Use \"render()\" and \"await renderer.init();\" when creating the renderer.' ); // @deprecated r181\n \n+\t\tawait this.renderer... | 2025-10-09T09:23:46 |
vuejs/vue | ebc1893faccd1a9d953a8e8feddcb49cf1b9004d | 3433ba5beef9a6dd97705943c3441ebbee222afd | fix(slots): fix slots not updating when passing down normal slots as $scopedSlots
fix #9699 | [
{
"path": "src/core/vdom/helpers/normalize-scoped-slots.js",
"patch": "@@ -10,8 +10,8 @@ export function normalizeScopedSlots (\n prevSlots?: { [key: string]: Function } | void\n ): any {\n let res\n- const isStable = slots ? !!slots.$stable : true\n const hasNormalSlots = Object.keys(normalSlots).le... | 2019-03-18T09:42:16 |
golang/go | a5f474fc062a3b9140febc802b6cc38cbebdd973 | 094aacdb047e716ea5598514222bc8c70843d49e | runtime: skip futex_time64 and timer_settime64 on 32-bit Android
In Android versions 8.0-10 (API levels 26-29), futex_time64 and
timer_settime64 are not in the allowlist of the seccomp filter and will
lead to a runtime crash.
Fixes #77621
Change-Id: I99607d7128c395edf93738440c2928b6819d8a21
Reviewed-on: https://go-r... | [
{
"path": "src/runtime/os_linux32.go",
"patch": "@@ -21,7 +21,12 @@ var isFutexTime32bitOnly atomic.Bool\n \n //go:nosplit\n func futex(addr unsafe.Pointer, op int32, val uint32, ts *timespec, addr2 unsafe.Pointer, val3 uint32) int32 {\n-\tif !isFutexTime32bitOnly.Load() {\n+\t// In Android versions 8.0-10 ... | 2026-02-27T18:01:24 |
mrdoob/three.js | 69317a85cc0838ad6c3b95b48037fe3a500efa8c | e1809743e6779eef3a4612a8c4af5200c2b63f34 | Renderer: Deprecate `renderAsync()`. (#32022)
* Renderer: Deprecate `renderAsync()`.
* Examples: Clean up.
* Playground: Fix PreviewEditor.
* Renderer: Improve comment.
* Renderer: Use `Error` instead of error log.
* Update deprecation version. | [
{
"path": "examples/webgpu_compute_texture.html",
"patch": "@@ -40,10 +40,9 @@\n \n \t\t\tlet camera, scene, renderer;\n \n-\t\t\tinit();\n-\t\t\trender();\n+\t\t\tinit().then( render );\n \n-\t\t\tfunction init() {\n+\t\t\tasync function init() {\n \n \t\t\t\tif ( WebGPU.isAvailable() === false ) {\n \n@@ ... | 2025-10-07T12:16:34 |
denoland/deno | bd3fd9a8d0113bba467d506b00ce839c3bcb8e83 | 130a3771c5dd0820e0c399c5df9cfd8922b7b6cd | fix(ext/http): allow rejecting HTTP upgrades with non-101 status codes (#32615)
Previously, when using node:http's upgrade event, attempting to reject
an upgrade request with a non-101 status code (e.g., 401 Unauthorized)
would throw a "write UNKNOWN" error because the UpgradeStream parser
only accepted 101 Switching ... | [
{
"path": "ext/http/http_next.rs",
"patch": "@@ -1368,13 +1368,19 @@ enum UpgradeStreamWriteState {\n AsyncMut<Option<(NetworkStreamReadHalf, Bytes)>>,\n ),\n Network(NetworkStreamWriteHalf),\n+ /// The upgrade was rejected with a non-101 status code.\n+ /// The response has been sent and the stre... | 2026-03-11T07:28:07 |
vuejs/vue | 3433ba5beef9a6dd97705943c3441ebbee222afd | 982d5a492fb95577217e2dacaa044eabe78a8601 | fix(codegen): support named function expression in v-on (#9709)
fix #9707 | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/\n+const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*(?:[\\w$]+)?\\s*\\(/\n const fnInvokeRE = /\\([^)]*?\\);*$/\n const simplePathRE = /^[A-Za... | 2019-03-18T08:19:41 |
golang/go | a6a4a41e225096a2599762d95af9c32d944a15e2 | 5c595a811eec69761f288b0affeeacdcaf1e5e86 | all: test: remove unneeded loop variables
This CL follows from the abandoned CL 722961.
Alan Donovan asked if modernize would catch these changes; it does in part.
Here is how modernize was used:
1. Build the Go compiler from latest master
2. Clone x/tools and build modernize with the newest compiler
3. Then, do:
... | [
{
"path": "src/cmd/api/api_test.go",
"patch": "@@ -232,7 +232,6 @@ var warmupCache = sync.OnceFunc(func() {\n \t// Warm up the import cache in parallel.\n \tvar wg sync.WaitGroup\n \tfor _, context := range contexts {\n-\t\tcontext := context\n \t\twg.Add(1)\n \t\tgo func() {\n \t\t\tdefer wg.Done()",
"... | 2026-02-24T01:22:37 |
mrdoob/three.js | cfd6be3add2249883afd84d30f4a125d5dedf1dc | 6d29214d5a6b543fc1096b175de33c030b2fcaf0 | ShadowNode: Fix shadows in first frame. (#32021)
* ShadowNode: Fix shadows in first frame.
* Lights: Fix `lightShadowMatrix()`. | [
{
"path": "src/nodes/accessors/Lights.js",
"patch": "@@ -32,8 +32,18 @@ export function lightShadowMatrix( light ) {\n \n \treturn data.shadowMatrix || ( data.shadowMatrix = uniform( 'mat4' ).setGroup( renderGroup ).onRenderUpdate( ( frame ) => {\n \n+\t\t// normally, shadow matrices are updated in ShadowNo... | 2025-10-06T14:17:49 |
denoland/deno | 130a3771c5dd0820e0c399c5df9cfd8922b7b6cd | b7cc30f2c4c5f581022cb5c55829c741a2862dd5 | fix(ext/node): fix multiple node:dgram compatibility issues (#32520)
## Summary
Fixes several `node:dgram` compatibility issues, enabling 7 additional
node_compat tests:
- **`close()` on already-closed socket**: No longer throws
`ERR_SOCKET_DGRAM_NOT_RUNNING` — returns early silently (fixes
`test-dgram-abort-closed`... | [
{
"path": "ext/node/Cargo.toml",
"patch": "@@ -72,6 +72,6 @@ errno = \"0.3.10\"\n nix = { workspace = true, features = [\"user\"] }\n \n [target.'cfg(windows)'.dependencies]\n-windows-sys = { workspace = true, features = [\"Win32_Networking_WinSock\"] }\n+windows-sys = { workspace = true, features = [\"Win3... | 2026-03-11T07:04:49 |
vuejs/vue | 982d5a492fb95577217e2dacaa044eabe78a8601 | 653c74e64e5ccd66cda94c77577984f8afa8386d | fix(types): support string type for style in VNode data (#9728)
fix #9727 | [
{
"path": "flow/vnode.js",
"patch": "@@ -42,7 +42,7 @@ declare interface VNodeData {\n staticClass?: string;\n class?: any;\n staticStyle?: { [key: string]: any };\n- style?: Array<Object> | Object;\n+ style?: string | Array<Object> | Object;\n normalizedStyle?: Object;\n props?: { [key: string]... | 2019-03-18T07:47:43 |
golang/go | d51d4d75a67a5c0228ed55107a809f8f377c5949 | 425a88193ca39e82dc3dbcae22b98dbdfd98a04c | cmd/compile: (wasm) optimize float32(round64(float64(x)))
Not a fix because there are other architectures
still to be done.
Updates #75463.
Change-Id: Ia5233c2b6c5f4439e269950efdd851e72e8e7ff6
Reviewed-on: https://go-review.googlesource.com/c/go/+/730160
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Keith... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/Wasm.rules",
"patch": "@@ -349,6 +349,9 @@\n (Abs ...) => (F64Abs ...)\n (Copysign ...) => (F64Copysign ...)\n \n+(F32DemoteF64 (F64(Sqrt|Trunc|Ceil|Floor|Nearest|Abs) (F64PromoteF32 x))) => (F32(Sqrt|Trunc|Ceil|Floor|Nearest|Abs) x)\n+(F32DemoteF64 (F64Copysign ... | 2025-12-11T19:27:10 |
mrdoob/three.js | cee5c449bb861472d9626416f2c1d88d317f3e08 | c7f57a83c123a507c90a673492a8233a59bbce56 | fix typos (#32017)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/jsm/gpgpu/BitonicSort.js",
"patch": "@@ -136,7 +136,7 @@ export class BitonicSort {\n \t\t}\n \n \t\t/**\n-\t\t * A node representing a storage buffer used for transfering the result of the global sort back to the original data buffer.\n+\t\t * A node representing a storage buffer used f... | 2025-10-05T21:15:32 |
denoland/deno | ed367f222d10d1cad82b5aef9d85498a1289a995 | 042a768744ef8bfe237540d61336471004755948 | fix(npm): memoize peer cache hit checks to prevent combinatorial explosion (#32609)
## Summary
- Fixes `deno add npm:@aws-cdk/aws-ecs` (and similar large peer dep
trees) hanging indefinitely
- Root cause: `find_peers_cache_hit_inner` in
`libs/npm/resolution/graph.rs` recursively checks whether cached peer
resolutions... | [
{
"path": "libs/npm/resolution/graph.rs",
"patch": "@@ -2298,18 +2298,33 @@ impl<'a, TNpmRegistryApi: NpmRegistryApi>\n parent_pkgs: &BTreeMap<StackString, NodeId>,\n ) -> Option<PeersResolution> {\n let mut checking = HashSet::new();\n- self.find_peers_cache_hit_inner(nv, parent_pkgs, &mut che... | 2026-03-10T17:50:55 |
vuejs/vue | 653c74e64e5ccd66cda94c77577984f8afa8386d | 43115e09e98d484a35f7c12249396b6d5d66c7ff | fix(core): use window.performance for compatibility in JSDOM (#9700)
fix #9698 | [
{
"path": "src/core/observer/scheduler.js",
"patch": "@@ -47,16 +47,18 @@ let getNow: () => number = Date.now\n // timestamp can either be hi-res (relative to page load) or low-res\n // (relative to UNIX epoch), so in order to compare time we have to use the\n // same timestamp type when saving the flush ti... | 2019-03-15T01:06:40 |
mrdoob/three.js | 8c5163671f87f2ea16b9ec51d9fcfc8bdf4c8da9 | 3220e981e9b3d2a77d615bbf2aa9da114f6cf551 | Fix Uint32Array initialization (#32011) | [
{
"path": "examples/webgpu_compute_sort_bitonic.html",
"patch": "@@ -396,7 +396,7 @@\n \n \t\t\t\tconst scene = new THREE.Scene();\n \n-\t\t\t\tconst infoArray = new Uint32Array( 3, 2, 2 );\n+\t\t\t\tconst infoArray = new Uint32Array( [ 3, 2, 2 ] );\n \t\t\t\tconst infoBuffer = new THREE.StorageInstancedBuf... | 2025-10-05T13:15:49 |
golang/go | 425a88193ca39e82dc3dbcae22b98dbdfd98a04c | 7336381cd16f81b7e34a8e8592a200b916989988 | cmd/compile: (arm64) optimize float32(round64(float64(x)))
Not a fix because there are other architectures
still to be done.
Updates #75463.
Change-Id: Ifca03975023e4e5d0ffa98d1f877314a1a291be0
Reviewed-on: https://go-review.googlesource.com/c/go/+/729161
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Keit... | [
{
"path": "src/cmd/compile/internal/arm64/ssa.go",
"patch": "@@ -963,6 +963,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \tcase ssa.OpARM64MVN,\n \t\tssa.OpARM64NEG,\n \t\tssa.OpARM64FABSD,\n+\t\tssa.OpARM64FABSS,\n \t\tssa.OpARM64FMOVDfpgp,\n \t\tssa.OpARM64FMOVDgpfp,\n \t\tssa.OpARM64FMOVSfpgp... | 2025-12-10T21:50:21 |
denoland/deno | 042a768744ef8bfe237540d61336471004755948 | 527c844f9574895feff910c5cd2195407422dcc1 | fix(ext/node): add `node_api_create_property_key_(latin1/utf8)` (#32559)
Implements `node_api_create_property_key_latin1` and
`node_api_create_property_key_utf8` to complement the existing
`node_api_create_property_key_utf16`. These create internalized V8
strings for use as object property keys, enabling deduplication... | [
{
"path": "ext/napi/generated_symbol_exports_list_linux.def",
"patch": "@@ -1 +1 @@\n-{ \"node_api_create_syntax_error\"; \"napi_make_callback\"; \"napi_has_named_property\"; \"napi_async_destroy\"; \"napi_coerce_to_object\"; \"napi_get_arraybuffer_info\"; \"napi_detach_arraybuffer\"; \"napi_get_undefined\"... | 2026-03-10T16:23:00 |
vuejs/vue | f1bdd7ff9d1fc86f7a8ad8d5cb6d9abc7b2e47f3 | 4de4649d9637262a9b007720b59f80ac72a5620c | fix(compiler): whitespace: 'condense' should honor pre tag as well (#9660) | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -351,7 +351,7 @@ export function parse (\n text = preserveWhitespace ? ' ' : ''\n }\n if (text) {\n- if (whitespaceOption === 'condense') {\n+ if (!inPre && whitespaceOption === 'condense') {\n // condense con... | 2019-03-14T07:47:51 |
mrdoob/three.js | 9178da53cac7f3030f8195fa5ce63698ed2fbd48 | 758b6543902fe5dfbb85729ce2dae3ddad44e646 | New Docs: Updated templates with old design. (#32002)
* New Docs: Updated templates with old design.
* New Docs: Remove (nullable) from methods that return null.
* New Docs: Improved parameters table.
* New Docs: Removed unused code from templates.
* New Docs: Fixed h2/h3 in dark mode.
* New Docs: Fixed Import.
... | [
{
"path": "utils/docs/template/publish.js",
"patch": "@@ -106,7 +106,20 @@ function updateItemName( item ) {\n \n function addParamAttributes( params ) {\n \n-\treturn params.filter( ( { name } ) => name && ! name.includes( '.' ) ).map( updateItemName );\n+\treturn params.filter( ( { name } ) => name && ! n... | 2025-10-03T06:24:30 |
golang/go | 7336381cd16f81b7e34a8e8592a200b916989988 | 831c489f9cb9afa560ac3c5b79acc8ea5a62e414 | cmd/compile: (amd64) optimize float32(round64(float64(x)))
Not a fix because there are other architectures
still to be done.
Updates #75463.
Change-Id: I3d7754ce4a26af0f5c4ef0be1254d164e68f8442
Reviewed-on: https://go-review.googlesource.com/c/go/+/729160
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -1491,7 +1491,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \tcase ssa.OpAMD64LoweredRound32F, ssa.OpAMD64LoweredRound64F:\n \t\t// input is already rounded\n-\tcase ssa.OpAMD64ROUNDSD:\n+\tcase ssa.OpAMD64ROUNDSD, ssa.OpAMD6... | 2025-12-10T21:05:55 |
denoland/deno | 527c844f9574895feff910c5cd2195407422dcc1 | ed9858527a2b544a802f7f441b5074f59a1c1284 | fix: flush CPU profile and coverage data on Deno.exit() (#32591)
## Summary
- When `Deno.exit()` is called, `std::process::exit()` bypasses normal
cleanup in the worker's run loop, causing CPU profile and coverage data
to be lost
- Adds `OpExitCallbacks` stored in `OpState` that are invoked by
`op_exit` before `std::... | [
{
"path": "cli/worker.rs",
"patch": "@@ -23,6 +23,7 @@ use deno_runtime::WorkerExecutionMode;\n use deno_runtime::coverage::CoverageCollector;\n use deno_runtime::cpu_prof_filename;\n use deno_runtime::cpu_profiler::CpuProfiler;\n+use deno_runtime::deno_os::OpExitCallbacks;\n use deno_runtime::deno_permissi... | 2026-03-10T16:04:41 |
vuejs/vue | 4de4649d9637262a9b007720b59f80ac72a5620c | d44cc20e968cb5a44202813e22b3b7c1377e69b1 | fix(transition): fix appear check for transition wrapper components (#9668) | [
{
"path": "examples/modal/index.html",
"patch": "@@ -10,7 +10,7 @@\n <body>\n <!-- template for the modal component -->\n <script type=\"text/x-template\" id=\"modal-template\">\n- <transition name=\"modal\">\n+ <transition name=\"modal\" appear>\n <div class=\"modal-mask\">\n ... | 2019-03-14T07:45:42 |
mrdoob/three.js | 3410b486aba8c64361b22af604244d9fb05743d2 | cbc975bfee24bca21d22797bacc45a8b8a2f3ebe | Examples/Inspector: Revisions (#32003)
* change init message icon/style
* fix button parameters `.name()`
* improve mobile style
* remove `.step()` function from ui parameters
* Update webgpu_backdrop_water.html
* updates
* Update puppeteer.js | [
{
"path": "examples/jsm/inspector/Inspector.js",
"patch": "@@ -135,7 +135,7 @@ class Inspector extends RendererInspector {\n \n \t\tconst renderer = this.getRenderer();\n \n-\t\tlet sign = `🚀 \"WebGPURenderer\" - ${ REVISION } [ \"`;\n+\t\tlet sign = `THREE.WebGPURenderer: ${ REVISION } [ \"`;\n \n \t\tif ... | 2025-10-03T01:23:17 |
golang/go | 011e98af3b254cb78f7765aff5410fd085cf3e81 | ad168c5131c83981daefdb0db8a45d1d3315c388 | test: skip TestScanAllocIssue77573 with asan mode
In ASAN mode, extra memory allocations alter the object size and impact the scansize computation. Skip this test when ASAN is enabled.
Fixes #77857.
Fixes #77858.
Fixes #77859.
Change-Id: I21027ff20c411a0fda7a50446b2202871baa2262
Reviewed-on: https://go-review.google... | [
{
"path": "src/runtime/malloc_test.go",
"patch": "@@ -854,6 +854,9 @@ func TestMkmalloc(t *testing.T) {\n }\n \n func TestScanAllocIssue77573(t *testing.T) {\n+\tif asan.Enabled {\n+\t\tt.Skip(\"extra allocations with -asan causes this to fail\")\n+\t}\n \tverifyScanAlloc := func(t *testing.T, f func(), exp... | 2026-02-28T02:28:16 |
denoland/deno | ed9858527a2b544a802f7f441b5074f59a1c1284 | 9c73df383e00295818fa6e77da527a2cd09fb696 | fix(npm): support npmrc email authorization (#32616) | [
{
"path": "libs/npm_cache/remote.rs",
"patch": "@@ -7,7 +7,9 @@ use deno_npm::npm_rc::RegistryConfig;\n #[derive(Debug, thiserror::Error, deno_error::JsError)]\n pub enum AuthHeaderForNpmRegistryError {\n #[class(type)]\n- #[error(\"Both the username and password must be provided for basic auth\")]\n+ #... | 2026-03-10T16:03:16 |
vuejs/vue | 7186940143704acc4ec046132f6a56e9c983e510 | 8082d2f910d963f14c151fb445e0fcc5c975cca9 | fix: should not swallow user catch on rejected promise in methods
fix #9694 | [
{
"path": "src/core/util/error.js",
"patch": "@@ -43,10 +43,11 @@ export function invokeWithErrorHandling (\n let res\n try {\n res = args ? handler.apply(context, args) : handler.call(context)\n- if (res && !res._isVue && isPromise(res)) {\n+ if (res && !res._isVue && isPromise(res) && !res._... | 2019-03-14T07:25:01 |
mrdoob/three.js | cbc975bfee24bca21d22797bacc45a8b8a2f3ebe | e72ae5142bb3828ccf7bdf0c975695a135d7760e | WebGLBackend: Fix functions with struct layouts cannot resolve struct types (#32000) | [
{
"path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js",
"patch": "@@ -1379,6 +1379,9 @@ ${shaderData.extensions}\n // precision\n ${ defaultPrecisions }\n \n+// structs\n+${shaderData.structs}\n+\n // uniforms\n ${shaderData.uniforms}\n \n@@ -1388,9 +1391,6 @@ ${shaderData.varyings}\n // codes\n ... | 2025-10-02T12:59:43 |
golang/go | 244b156e67635f83a13b113c61f7729a79e06056 | a48829de1e7d51e31bb9e28c1b386ba5b796b76f | cmd/compile: fix internal compiler error: bad write barrier type
This change fixes an issue where the compiler panics with 'bad
write barrier type' for zero-sized arrays. The loops in
storeTypeScalars and storeTypePtrs erroneously processed
zero-sized arrays causing invalid operations. This ignores them.
Fixes #77815... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -5671,7 +5671,7 @@ func (s *state) storeTypeScalars(t *types.Type, left, right *ssa.Value, skip ski\n \t\t\tval := s.newValue1I(ssa.OpStructSelect, ft, int64(i), right)\n \t\t\ts.storeTypeScalars(ft, addr, val, 0)\n \t\t}\n-\tcase t.IsArray() ... | 2026-02-26T11:01:01 |
denoland/deno | 88d6de0e5763a03eb7237df731590c5864638ecb | f81e36050aa75996ca989638e3dc07de05154de2 | fix(ext/node): run worker_threads eval code in sloppy mode (#32428)
## Summary
- **Root cause**: `node:worker_threads` with `{ eval: true }` was
wrapping code in `import` statements and loading it as a
`data:text/javascript` URL via `load_main_es_module`, which enforces
**strict mode**. Node.js runs eval workers as C... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -51,7 +51,6 @@ import { createRequire } from \"node:module\";\n \n const {\n ArrayIsArray,\n- encodeURIComponent,\n Error,\n FunctionPrototypeCall,\n NumberIsFinite,\n@@ -359,24 +358,29 @@ class NodeWorker extends EventEmitter {\n ... | 2026-03-10T14:44:53 |
vuejs/vue | 8082d2f910d963f14c151fb445e0fcc5c975cca9 | 7591b9dc6dde314f2d32dcd7a8355f696a330979 | fix(ssr): fix nested async functional componet rendering (#9673)
fix #9643 | [
{
"path": "src/core/vdom/helpers/resolve-async-component.js",
"patch": "@@ -53,7 +53,7 @@ export function resolveAsyncComponent (\n }\n \n const owner = currentRenderingInstance\n- if (isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {\n+ if (owner && isDef(factory.owners) && factory.own... | 2019-03-13T09:20:28 |
mrdoob/three.js | 72cd0f81ea76c0d0558b397fa331c75742bd79ca | 9e7a65c17bc3832798103190df8f674b9acca073 | Examples: More Inspector usage and revisions. (#31995)
* add overlay
* TiledLightsNode: Improve description
* Examples: add inspector
* update screenshots
* update
* improve description
* update examples
* update screenshots
* more examples
* add more examples
* fix color hex get value
* add listen()
* add... | [
{
"path": "examples/example.css",
"patch": "@@ -1,9 +1,3 @@\n-* {\n-\tbox-sizing: border-box;\n-\t-webkit-font-smoothing: antialiased;\n-\t-moz-osx-font-smoothing: grayscale;\n-}\n-\n body {\n \tmargin: 0;\n \tbackground-color: #000;\n@@ -27,7 +21,7 @@ a {\n \tgrid-template-columns: 50px auto;\n \tgrid-temp... | 2025-10-02T03:27:07 |
golang/go | 93b78326c30afe7a49b50c3c1614799ee5b41b97 | c4de16a714d67c31c80285a4cb82069a6fa8718c | cmd/compile: use OpMove instead of memmove more on loong64
OpMove is faster for small moves of fixed size.
goos: linux
goarch: loong64
pkg: runtime
cpu: Loongson-3A6000 @ 2500.00MHz
| old.txt | new.txt |
| sec/op | ... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -1484,11 +1484,13 @@ func isInlinableMemmove(dst, src *Value, sz int64, c *Config) bool {\n \t\treturn sz <= 16 || (sz < 1024 && disjoint(dst, sz, src, sz))\n \tcase \"arm64\":\n \t\treturn sz <= 64 || (sz <= 1024 && disjoint(dst, sz, src, sz... | 2026-02-12T06:09:27 |
denoland/deno | f81e36050aa75996ca989638e3dc07de05154de2 | 4c548d42e5895eb3a6f00bb6d7cb3a9d601db7e8 | fix(lsp): tsgo scope attribution for asset files (#32608) | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -1159,7 +1159,7 @@ pub struct DocumentModules {\n dep_info_by_scope: once_cell::sync::OnceCell<Arc<DepInfoByScope>>,\n modules_unscoped: Arc<WeakDocumentModuleMap>,\n modules_by_scope: Arc<BTreeMap<Arc<Url>, Arc<WeakDocumentModuleMap>>>,\n- assigned_scop... | 2026-03-10T14:43:29 |
vuejs/vue | 7591b9dc6dde314f2d32dcd7a8355f696a330979 | d28240009c4c49fb2ef42a79206f0d9ad03f736c | fix: event timeStamp check for Qt
fix #9681 | [
{
"path": "src/platforms/web/runtime/modules/events.js",
"patch": "@@ -67,8 +67,10 @@ function add (\n e.target === e.currentTarget ||\n // event is fired after handler attachment\n e.timeStamp >= attachedTimestamp ||\n- // #9462 bail for iOS 9 bug: event.timeStamp is 0 after ... | 2019-03-13T09:18:47 |
mrdoob/three.js | b73a55ab4050a8d61af3d02f57776d3c98f9a295 | ec4c9b2e0da04bcc5fe0f597c13c20b44f8ba637 | Transpiler: Fix immutable to dynamic parameter conversion and `webgpu_shadertoy` example (#31996) | [
{
"path": "examples/jsm/transpiler/TSLEncoder.js",
"patch": "@@ -681,6 +681,12 @@ ${ this.tab }} )`;\n \n \t\t}\n \n+\t\tif ( node.needsToVar ) {\n+\n+\t\t\tvarStr = varStr + '.toVar()';\n+\n+\t\t}\n+\n \t\treturn varStr;\n \n \t}\n@@ -750,6 +756,7 @@ ${ this.tab }} )`;\n \t\t\tconst mutableParam = new Vari... | 2025-10-01T20:35:48 |
golang/go | 83b4c5d233b1df459fbbd12bfda1194f567a422f | f5479628d36e6cdd63c39784b58fa7241abd3295 | runtime/cgo: avoid unused parameter warning
Annotate the unused parameter with `__attribute__((unused))` to avoid
build failures in environments that treat unused parameters as errors.
We see this when using `rules_go`:
```
@@rules_go+//:stdlib
builder failed: error executing GoStdlib command (from stdlib rule target... | [
{
"path": "src/runtime/cgo/gcc_clearenv.c",
"patch": "@@ -10,7 +10,7 @@\n \n /* Stub for calling clearenv */\n void\n-x_cgo_clearenv(void **_unused)\n+x_cgo_clearenv(void **env __attribute__((unused)))\n {\n \t_cgo_tsan_acquire();\n \tclearenv();",
"additions": 1,
"deletions": 1,
"language": "C"... | 2026-02-27T15:14:25 |
denoland/deno | 4c548d42e5895eb3a6f00bb6d7cb3a9d601db7e8 | f33915b81c39ac23a4612ade19310b4611b8b0c1 | fix(ext/napi): run async work execute callback on a worker thread (#32560)
## Summary
- **Fixes `napi_queue_async_work`** to run the `execute` callback on a
worker
thread (via `std::thread::spawn`) instead of the V8 main thread
- **Dispatches `complete`** back to the main thread via
`async_work_sender.spawn()` wh... | [
{
"path": "ext/napi/node_api.rs",
"patch": "@@ -586,8 +586,16 @@ pub(crate) fn napi_queue_async_work(\n }\n \n let work = SendPtr(work);\n+ let sender = env.async_work_sender.clone();\n+ let tracker = env.external_ops_tracker.clone();\n \n- env.add_async_work(move || {\n+ // Keep the event loop aliv... | 2026-03-10T14:19:29 |
vuejs/vue | d28240009c4c49fb2ef42a79206f0d9ad03f736c | 2747a657654d1006bf7061faec1b3029fb9b4432 | fix(ssr): not push non-async css files into map (#9677) | [
{
"path": "src/server/template-renderer/create-async-file-mapper.js",
"patch": "@@ -43,8 +43,8 @@ function mapIdToFile (id, clientManifest) {\n if (fileIndices) {\n fileIndices.forEach(index => {\n const file = clientManifest.all[index]\n- // only include async files or non-js assets\n- ... | 2019-03-13T09:16:44 |
mrdoob/three.js | b067191bc81bdd87dfee84712d5581cce7cbf19b | 94ca22d03149b06a59722c0219ce7b4fcae90ae0 | Inspector: WebGL2 backend version (#31982)
* inspector webgl
* Update clean-page.js
* update
* update
* Update webgpu_instance_mesh.jpg
* puppeteer: add exception `webgpu_volume_lighting`, `webgpu_volume_lighting_rectarea` | [
{
"path": "examples/jsm/inspector/Inspector.js",
"patch": "@@ -27,6 +27,7 @@ class Inspector extends RendererInspector {\n \t\tprofiler.addTab( parameters );\n \n \t\tconst viewer = new Viewer();\n+\t\tviewer.hide();\n \t\tprofiler.addTab( viewer );\n \n \t\tconst performance = new Performance();\n@@ -79,7 ... | 2025-09-30T03:36:30 |
golang/go | 5055a181560b09170a23be81612ee849e47b0a30 | 76222756d9674a41b01a11d123ce39a7b26eb7fc | cmd/go/internal/doc: support @version suffix on first argument
This change allows `go doc` to display documentation for packages
outside the workspace by explicitly providing a version (e.g., `go doc
pkg@version`) or by inferring it from an installed command.
Therefore, all of the following are now valid:
```
go doc... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -151,7 +151,7 @@ func runDoc(ctx context.Context, cmd *base.Command, args []string) {\n \tlog.SetPrefix(\"doc: \")\n \tdirsInit()\n \tvar flagSet flag.FlagSet\n-\terr := do(os.Stdout, &flagSet, args)\n+\terr := do(ctx, os.Stdout, &flagSet, args)\n \ti... | 2026-02-20T05:24:55 |
denoland/deno | 1036b2ac9046d69a3a8ef7ac30298363a4acc432 | c0de125d80f6006a3559c86fbbfa6a759e4e2ebb | fix(ext/node): make tty ReadStream/WriteStream callable without `new` (#32537)
## Summary
- Convert `ReadStream` (in `tty.js`) and `WriteStream` (in
`internal/tty.js`) from ES classes to function-style constructors so
they can be called without `new`, matching Node.js behavior
- Uses `FunctionPrototypeCall` and `Obje... | [
{
"path": "ext/node/polyfills/internal/tty.js",
"patch": "@@ -8,9 +8,11 @@ import { primordials } from \"ext:core/mod.js\";\n const {\n ArrayPrototypeSome,\n Error,\n+ FunctionPrototypeCall,\n ObjectEntries,\n ObjectPrototypeHasOwnProperty,\n ObjectPrototypeIsPrototypeOf,\n+ ObjectSetPrototypeOf... | 2026-03-10T11:35:33 |
mrdoob/three.js | 94ca22d03149b06a59722c0219ce7b4fcae90ae0 | c74f0ee037c1ac6729b305c247c399b5b89a80fd | WebGPURenderer: Fix compressed texture feature detection for WebGL backend. (#31980)
* WebGPURenderer: Fix compressed texture feature detection for WebGL backend.
* WebGPUBackend: Fix check. | [
{
"path": "examples/jsm/loaders/KTX2Loader.js",
"patch": "@@ -202,9 +202,9 @@ class KTX2Loader extends Loader {\n \t\tthis.workerConfig = {\n \t\t\tastcSupported: await renderer.hasFeatureAsync( 'texture-compression-astc' ),\n \t\t\tastcHDRSupported: false, // https://github.com/gpuweb/gpuweb/issues/3856\n-... | 2025-09-29T23:43:06 |
vuejs/vue | ef2a380c6eb6bd1a7ff516c357dafa717e75a745 | 781c70514e01bc402828946805bfad7437c7175e | fix(scheduler): getNow detection can randomly fail (#9667)
The previous detection code compared time stamps based on Date.now()
which are not monotonic, so the check could fail due to clock skew or
adjustments.
This fix changes the check to compare against performance.now() if it is
supported, because it is mono... | [
{
"path": "src/core/observer/scheduler.js",
"patch": "@@ -51,7 +51,7 @@ if (\n inBrowser &&\n window.performance &&\n typeof performance.now === 'function' &&\n- getNow() > document.createEvent('Event').timeStamp\n+ document.createEvent('Event').timeStamp <= performance.now()\n ) {\n // if the eve... | 2019-03-11T02:28:06 |
golang/go | 76222756d9674a41b01a11d123ce39a7b26eb7fc | f2633386e0d2f692b4363134626f472fc95b9858 | cmd/compile: gate instrumentEnterExit on NoRaceFunc check
The NoRaceFunc flag is meant to suppress racefuncenter/racefuncexit
instrumentation for packages like internal/runtime/atomic. However,
instrumentEnterExit was set unconditionally when -race was enabled,
outside the NoRaceFunc guard. This caused generic functio... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -341,9 +341,9 @@ func buildssa(fn *ir.Func, worker int, isPgoHot bool) *ssa.Func {\n \tif base.Flag.Cfg.Instrumenting && fn.Pragma&ir.Norace == 0 && !fn.Linksym().ABIWrapper() {\n \t\tif !base.Flag.Race || !objabi.LookupPkgSpecial(fn.Sym().Pkg... | 2026-02-23T19:53:35 |
mrdoob/three.js | f78c89fd21072de5f02b62258c4159db665eddec | 0dfaecd6f78f3d678dce0a1f031f944110a13cef | WebGLBackend: Fix logs. (#31978) | [
{
"path": "src/renderers/webgl-fallback/WebGLBackend.js",
"patch": "@@ -1080,7 +1080,7 @@ class WebGLBackend extends Backend {\n \n \t\t\t\t} else if ( ! this.hasFeature( 'WEBGL_multi_draw' ) ) {\n \n-\t\t\t\t\twarnOnce( 'WebGLRenderer: WEBGL_multi_draw not supported.' );\n+\t\t\t\t\twarnOnce( 'WebGLBackend... | 2025-09-29T09:28:48 |
vuejs/vue | 781c70514e01bc402828946805bfad7437c7175e | 9313cf91740e1d43c43cf9e73d905dbab913beb5 | fix: should use fallback for scoped slots with single falsy v-if
fix #9658 | [
{
"path": "src/core/vdom/helpers/normalize-scoped-slots.js",
"patch": "@@ -60,8 +60,10 @@ function normalizeScopedSlot(normalSlots, key, fn) {\n res = res && typeof res === 'object' && !Array.isArray(res)\n ? [res] // single vnode\n : normalizeChildren(res)\n- return res && res.length ===... | 2019-03-08T18:44:08 |
denoland/deno | c0de125d80f6006a3559c86fbbfa6a759e4e2ebb | a33c9748401e2261c46211c247f819564c4218d3 | fix(ext/node): add missing http2 header constants (#32611)
Adds missing HTTP2_HEADER_ACCEPT_ENCODING and related constants that
grpc-js depends on. Without these, grpc-js server crashes with:
```
TypeError: Cannot read properties of undefined (reading 'toLowerCase')
at normalizeKey (metadata.js:38:16)
at Meta... | [
{
"path": "ext/node/ops/http2/types.rs",
"patch": "@@ -152,6 +152,10 @@ pub struct Http2Constants {\n http2_header_transfer_encoding: &'static str,\n http2_header_keep_alive: &'static str,\n http2_header_proxy_connection: &'static str,\n+ http2_header_accept: &'static str,\n+ http2_header_accept_enc... | 2026-03-10T11:07:10 |
golang/go | f71432d223eeb2139b460957817400750fd13655 | 40a10063e89d4f0ae55631d1e50c31e3314fb812 | cmd/compile: fix bloop test
Not 100% sure this is right, but it seems to fix the issue.
Fixes #77832
Change-Id: Ifa6eae61a5444f4fd88b310536b1caf7144e7797
Reviewed-on: https://go-review.googlesource.com/c/go/+/749660
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -86,7 +86,7 @@ func getKeepAliveNodes(pos src.XPos, n ir.Node) ir.Nodes {\n \tif name != nil {\n \t\tdebugName(name, pos)\n \t\treturn ir.Nodes{name}\n-\t} else if deref := n.(*ir.StarExpr); deref != nil {\n+\t} else if deref, ok := n.(*ir.St... | 2026-02-27T03:48:46 |
mrdoob/three.js | 0dfaecd6f78f3d678dce0a1f031f944110a13cef | bf8916dc41d3fbbb255c075827786fcfabdebec0 | CSS2DRenderer: Add `sortObjects`. (#31946)
* Implement automatic z index opt out from css2drenderer
* Implement css2dobject depth test property
* invert depthtest order
* fix comment
* implement sortObjects instead | [
{
"path": "examples/jsm/renderers/CSS2DRenderer.js",
"patch": "@@ -137,6 +137,16 @@ class CSS2DRenderer {\n \t\t */\n \t\tthis.domElement = domElement;\n \n+\t\t/**\n+\t\t * Controls whether the renderer assigns `z-index` values to CSS2DObject DOM elements.\n+\t\t * If set to `true`, z-index values are assi... | 2025-09-29T07:46:51 |
vuejs/vue | 9313cf91740e1d43c43cf9e73d905dbab913beb5 | da77d6a98bdccd8a2c8bfdfe6b9cb46efcb1193c | fix: should consider presence of normal slots when caching normalized scoped slots
fix #9644 | [
{
"path": "src/core/vdom/helpers/normalize-scoped-slots.js",
"patch": "@@ -11,6 +11,7 @@ export function normalizeScopedSlots (\n ): any {\n let res\n const isStable = slots ? !!slots.$stable : true\n+ const hasNormalSlots = Object.keys(normalSlots).length > 0\n const key = slots && slots.$key\n if... | 2019-03-08T18:03:19 |
denoland/deno | 0eddc94dc9ecc27f4f35da32fe847673a05562c4 | 913548b879a7530d7992d8722954ac5060194d28 | test: ignore some Node compat tests (#32556)
## Summary
- Adds an `ignore` field to the node_compat test config schema
(`config.jsonc`) so tests can be skipped on all platforms with a single
flag instead of setting `darwin: false, linux: false, windows: false`
separately
- `reason` is required when `ignore: true` is ... | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -4,11 +4,17 @@\n \"abort/test-addon-register-signal-handler.js\": {},\n \"abort/test-addon-uv-handle-leak.js\": {},\n \"abort/test-zlib-invalid-internals-usage.js\": {\n- \"darwin\": false,\n- \"linux\": false,\n- \"windows\... | 2026-03-10T10:38:04 |
golang/go | 40a10063e89d4f0ae55631d1e50c31e3314fb812 | 657ed934e85dc575aad51356c4b437961e7c1313 | runtime: fix scan size calculation for small arrays of only pointers
When allocating arrays, scan size should be the position of the last pointer in the last object.
Small array allocations containing only pointers (for example, the backing store for a []*int)
have a fast path in the allocator for unrolling their bits... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -2083,3 +2083,8 @@ func DumpPrintQuoted(s string) string {\n \n \treturn string(buf)\n }\n+\n+func GetScanAlloc() uintptr {\n+\tc := getMCache(getg().m)\n+\treturn c.scanAlloc\n+}",
"additions": 5,
"deletions": 0,
"language": "Go"
},
{
... | 2026-02-12T09:00:24 |
mrdoob/three.js | e80d168055b8863becb2b5b4d70e342914513b9a | 699e1fa3a2dda4f53dbe31e2b979cf2b2eacf6c1 | TSL: Fix conditional cache and introduce `isolate()` (#31973)
* cleanup
* Update FunctionCallNode.js
* fix conditional cache
* add custom parent scope
* Rename `CacheNode` -> `IsolateNode`, `cache()` -> `isolate()`
* Update IsolateNode.js | [
{
"path": "src/nodes/Nodes.js",
"patch": "@@ -6,7 +6,7 @@ export { default as ArrayNode } from './core/ArrayNode.js';\n export { default as AssignNode } from './core/AssignNode.js';\n export { default as AttributeNode } from './core/AttributeNode.js';\n export { default as BypassNode } from './core/BypassNo... | 2025-09-29T03:48:25 |
vuejs/vue | da77d6a98bdccd8a2c8bfdfe6b9cb46efcb1193c | 0b57380f10986c6b07e3c240acc06bfd2eddfd1b | fix(scheduler): fix getNow check in IE9 (#9647)
fix #9632 | [
{
"path": "src/core/observer/scheduler.js",
"patch": "@@ -47,10 +47,15 @@ let getNow: () => number = Date.now\n // timestamp can either be hi-res (relative to page load) or low-res\n // (relative to UNIX epoch), so in order to compare time we have to use the\n // same timestamp type when saving the flush ti... | 2019-03-08T17:04:28 |
denoland/deno | c28573335523cb26aaa2da09bb8a2a6366e50b77 | 20e1ef892e7605469a239c269705f417e42bd5d8 | fix(ext/node): napi_set_instance_data on exit (#32509)
Closes https://github.com/denoland/deno/issues/30529
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> | [
{
"path": "ext/napi/lib.rs",
"patch": "@@ -306,8 +306,13 @@ impl<T> PendingNapiAsyncWork for T where T: FnOnce() + Send + 'static {}\n pub struct NapiState {\n // Thread safe functions.\n pub env_cleanup_hooks: Rc<RefCell<Vec<(napi_cleanup_hook, *mut c_void)>>>,\n+ pub env_shared_ptrs: Vec<*mut EnvShar... | 2026-03-10T08:55:08 |
golang/go | 657ed934e85dc575aad51356c4b437961e7c1313 | 753022f82fc54dab5e348fac3706a9df8afc5cb5 | os: avoid escape from Root via ReadDir or Readdir
When reading the contents of a directory using
File.ReadDir or File.Readdir, the os.FileInfo was
populated on Unix platforms using lstat.
This lstat call is vulnerable to a TOCTOU race
and could escape the root.
For example:
- Open the directory "dir" within a Root.... | [
{
"path": "src/internal/poll/fstatat_unix.go",
"patch": "@@ -0,0 +1,22 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build unix || wasip1\n+\n+package poll\n+\n+import (\n+\t\"... | 2026-02-26T17:54:33 |
mrdoob/three.js | f80cc650666742d3612e1816e4d4fcd77cb07df4 | 27bed7203c3852b17def83bbcd916195fb61e54a | Addons: GPGPU - Fix Bitonic Sort JSDoc and add Ping/Pong Buffers (#31949)
* add jsdoc
* bitonic sort adjustments
* testing, fixing, removing left over gui buttons | [
{
"path": "examples/jsm/gpgpu/BitonicSort.js",
"patch": "@@ -74,15 +74,14 @@ export const getBitonicDisperseIndices = /*@__PURE__*/ Fn( ( [ index, swapSpan ]\n \t]\n } );\n \n-// TODO: Add parameters for computing a buffer larger than vec4\n export class BitonicSort {\n \n \t/**\n \t * Constructs a new ligh... | 2025-09-28T23:20:50 |
vuejs/vue | 0b57380f10986c6b07e3c240acc06bfd2eddfd1b | 731e4d0ebc997a6c2b1fc500b08924ff7ba091b6 | fix: v-bind object should be overridable by single bindings (#9653)
fix #9641 | [
{
"path": "src/core/instance/render-helpers/bind-object-props.js",
"patch": "@@ -7,7 +7,8 @@ import {\n isObject,\n toObject,\n isReservedAttribute,\n- camelize\n+ camelize,\n+ hyphenate\n } from 'core/util/index'\n \n /**\n@@ -45,12 +46,13 @@ export function bindObjectProps (\n : data.... | 2019-03-08T17:00:47 |
golang/go | 89d92fc21166c27db7d4203d93019e33f8cb9695 | b4ef60b9cb74c24108ad02cc11531c0f144bb77d | cmd/compile: ternary rewrite of rewrite should skip, not panic
The panic was unnecessary, if there's nothing to rewrite,
just do nothing. Added a debug message for this to help
with testing; it seems (from accidentally perturbing the
test away from failure) to be somewhat rare, so likely
okay to mingle with the other... | [
{
"path": "src/cmd/compile/internal/ssa/rewritetern.go",
"patch": "@@ -5,7 +5,6 @@\n package ssa\n \n import (\n-\t\"fmt\"\n \t\"internal/goarch\"\n \t\"slices\"\n )\n@@ -175,7 +174,10 @@ func rewriteTern(f *Func) {\n \t\timm := computeTT(a0, vars0)\n \t\top := ternOpForLogical(a0.Op)\n \t\tif op == a0.Op {... | 2026-02-25T20:56:36 |
mrdoob/three.js | 1f7b55ee4ae5180e327ca2914032d4049794c5a4 | f44e0cbce05156af51d7f8975999e1aaf5cf301f | WebGPURenderer: Fix binding sampler update (#31971) | [
{
"path": "src/renderers/common/nodes/NodeSampler.js",
"patch": "@@ -43,7 +43,15 @@ class NodeSampler extends Sampler {\n \t */\n \tupdate() {\n \n-\t\tthis.texture = this.textureNode.value;\n+\t\tconst { textureNode } = this;\n+\n+\t\tif ( this.texture !== textureNode.value ) {\n+\n+\t\t\tthis.texture = te... | 2025-09-28T19:05:13 |
denoland/deno | 20e1ef892e7605469a239c269705f417e42bd5d8 | 8a3ed27eb1fea2629b67cb2a7a7ef15bd58e3710 | fix(ext/node): rewrite http2 implementation (#32418)
Rewrite Node.js http2 module using nghttp2 with libuv compatibility
layer.
Co-authored-by: Divy Srivastava <me@littledivy.com>
Co-authored-by: kajukitli <kajukitli@users.noreply.github.com>
Co-authored-by: Nathan Whitaker <nathan@deno.com> | [
{
"path": "Cargo.lock",
"patch": "@@ -595,6 +595,26 @@ dependencies = [\n \"syn 2.0.117\",\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\"\... | 2026-03-10T08:45:38 |
vuejs/vue | 731e4d0ebc997a6c2b1fc500b08924ff7ba091b6 | 0c4c78bfc026bed79e76d0d0009b6ed15b6bb008 | types: use normalized type for `RenderContext.scopedSlots` (#9624)
fix #9616 | [
{
"path": "types/options.d.ts",
"patch": "@@ -1,5 +1,5 @@\n import { Vue, CreateElement, CombinedVueInstance } from \"./vue\";\n-import { VNode, VNodeData, VNodeDirective, ScopedSlot } from \"./vnode\";\n+import { VNode, VNodeData, VNodeDirective, NormalizedScopedSlot } from \"./vnode\";\n \n type Construct... | 2019-03-05T21:46:56 |
golang/go | 20d78eca0a5cb8bb18a870e1c9dc6810c5e1ef6d | 5c7d8a3e4896df7d2d0f9d9ec72248eb39e71f96 | cmd/go: fix ignored error check when sanitizing SwigCXXFiles
Change-Id: Icc78a16c1fd128b14e9113016abdfcd6e91f1c1c
Reviewed-on: https://go-review.googlesource.com/c/go/+/746320
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -3331,7 +3331,7 @@ func (b *Builder) swig(a *Action, objdir string, pcCFLAGS []string) error {\n \t\t}\n \t}\n \tfor _, f := range p.SwigCXXFiles {\n-\t\tif b.swigOne(a, f, objdir, pcCFLAGS, true, intgosize); err != nil {\n+\t\tif err := b.swigOne(a... | 2026-02-17T18:07:38 |
mrdoob/three.js | dd4a1378a06c826e19ae0ed1b2b609a76cdb930a | 3f86d3246b78efe81f63210717c09145cbacfaa0 | Corrected issue that causes scaling error on Safari on complex canvas objects (#31931)
Co-authored-by: Adam Roberts <adambant@yahoo.com> | [
{
"path": "examples/jsm/interactive/HTMLMesh.js",
"patch": "@@ -295,17 +295,12 @@ function html2canvas( element ) {\n \t\t} else if ( element instanceof HTMLCanvasElement ) {\n \n \t\t\t// Canvas element\n-\n \t\t\tconst rect = element.getBoundingClientRect();\n-\n \t\t\tx = rect.left - offset.left - 0.5;\n... | 2025-09-27T11:01:36 |
denoland/deno | 8a3ed27eb1fea2629b67cb2a7a7ef15bd58e3710 | ddbdb6d294eab9f30d6a64b12f2df77b046a2b9b | fix(ext/node): improve node:dns compat (#32536)
## Summary
Several improvements to the `node:dns` module compatibility:
- Add `ipv6first` as a valid value for `dns.setDefaultResultOrder()` /
`dns.promises.setDefaultResultOrder()`
- Add `order` option support to `dns.lookup()` and
`dns.promises.lookup()`, accepting `... | [
{
"path": "ext/net/lib.rs",
"patch": "@@ -74,6 +74,7 @@ deno_core::extension!(deno_net,\n ops::op_net_set_broadcast_udp,\n ops::op_net_validate_multicast,\n ops::op_dns_resolve,\n+ ops::op_net_get_system_dns_servers,\n ops::op_set_nodelay,\n ops::op_set_keepalive,\n ops::op_net_li... | 2026-03-09T22:41:53 |
vuejs/vue | 6ad99796c747987142c21b45c9361cca60e54e68 | d123c7e4c67cb17c265f3a4f741fae71b69f5dc9 | docs: fix spelling and grammatical errors (#9619) | [
{
"path": ".github/CODE_OF_CONDUCT.md",
"patch": "@@ -2,7 +2,7 @@\n \n As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.\n \n-W... | 2019-03-04T16:53:59 |
golang/go | 0886e65b119e5be88846b1580451dc2b0d6f6fd0 | b48b2002febf107a04350c43d99e86cba60eba43 | cmd/compile: treat all zero-sized values as SSA-able
Might as well, we don't need any registers for such values.
Fixes #77635
Change-Id: Iedc1bc3f13662b043b183228bcc1dc4e6c91da81
Reviewed-on: https://go-review.googlesource.com/c/go/+/747780
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LU... | [
{
"path": "src/cmd/compile/internal/ssa/value.go",
"patch": "@@ -616,6 +616,9 @@ func CanSSA(t *types.Type) bool {\n \tif t.IsSIMD() {\n \t\treturn true\n \t}\n+\tif t.Size() == 0 {\n+\t\treturn true\n+\t}\n \tsizeLimit := int64(MaxStruct * types.PtrSize)\n \tif t.Size() > sizeLimit {\n \t\t// 4*Widthptr is... | 2026-02-20T20:04:35 |
denoland/deno | ddbdb6d294eab9f30d6a64b12f2df77b046a2b9b | d77f623c4e8764b1c74ed6248c11fb9737e1f17c | fix(ext/node): emit correct error codes for unsupported PQC key types (#32533)
## Summary
- When `createPublicKey` or `createPrivateKey` encounters an unsupported
PQC key type (ML-KEM, ML-DSA, SLH-DSA), emit Node-compatible error codes
(`ERR_OSSL_EVP_DECODE_ERROR` / `ERR_OSSL_UNSUPPORTED`) instead of a
plain TypeError... | [
{
"path": "ext/node_crypto/keys.rs",
"patch": "@@ -611,6 +611,12 @@ pub enum EdRawError {\n UnsupportedCurve,\n }\n \n+#[derive(Debug, thiserror::Error, deno_error::JsError)]\n+#[class(generic)]\n+#[error(\"unsupported\")]\n+#[property(\"code\" = \"ERR_OSSL_UNSUPPORTED\")]\n+pub struct UnsupportedPrivateK... | 2026-03-09T22:39:20 |
vuejs/vue | cbad54aa52847cfc934bb925d53c53ee57fc153d | 1574ade607499bf4e3cf270c69249893e29eb259 | fix(compiler): set end location for incomplete elements (#9598) | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -279,7 +279,7 @@ export function parseHTML (html, options) {\n ) {\n options.warn(\n `tag <${stack[i].tag}> has no matching end tag.`,\n- { start: stack[i].start }\n+ { start: stack[i].start, end... | 2019-03-01T14:56:13 |
golang/go | 0ac9d84e3dd7eacc66b0bcc6bef86a90f4ec7714 | ed0367718f3b17677c9112f259d27892b2b53424 | reflect: fix support for iter with named boolean in Seq/Seq2
Fixes #77542
Change-Id: Ic2f33f5aabbdf064cbf5aa850f6c08f01352db80
Reviewed-on: https://go-review.googlesource.com/c/go/+/745580
Auto-Submit: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacco... | [
{
"path": "src/reflect/iter.go",
"patch": "@@ -36,7 +36,7 @@ func rangeNum[T int8 | int16 | int32 | int64 | int |\n // Uint, Uint8, Uint16, Uint32, Uint64, Uintptr,\n // Array, Chan, Map, Slice, or String.\n func (v Value) Seq() iter.Seq[Value] {\n-\tif canRangeFunc(v.abiType()) {\n+\tif canRangeFunc(v.abiT... | 2026-02-14T10:47:17 |
denoland/deno | d77f623c4e8764b1c74ed6248c11fb9737e1f17c | d7e449d85de2b1414bd7ce110d890862104e3fb2 | fix(console): prevent multi-line object values in console.table (#32604)
## Summary
- Objects in `console.table` could break the table layout when their
`Deno.inspect` output exceeded the default `breakLength` (72 chars),
causing some rows to wrap across multiple lines
- Fix: set `breakLength: Infinity` in the inspec... | [
{
"path": "ext/web/01_console.js",
"patch": "@@ -3771,6 +3771,7 @@ class Console {\n ...getConsoleInspectOptions(noColorStdout()),\n depth: 1,\n compact: true,\n+ breakLength: Infinity,\n });\n const toTable = (header, body) => this.log(cliTable(header, body));\n ",
... | 2026-03-09T22:28:20 |
vuejs/vue | 571a4880fc06b491a280325b79fd4cbb59ceb47e | 03c13de38e883636917800a283ebcb338bbfbdc3 | fix: further adjust max stack size
close #9562 | [
{
"path": "src/server/write.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-const MAX_STACK_DEPTH = 900\n+const MAX_STACK_DEPTH = 800\n const noop = _ => _\n \n const defer = typeof process !== 'undefined' && process.nextTick",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
}
] | 2019-02-28T22:46:28 |
golang/go | ed0367718f3b17677c9112f259d27892b2b53424 | 8411ab9d3d947fc842dd99eadf0ee01e3f6b9477 | Revert "cmd/compile: avoid panic in ternary rewrite on checked instructions"
This reverts CL 745460.
Reason for revert: This just disables the optimization, instead of fixing it.
Change-Id: I26350d08c847f666d12450d484312d0baf5f1112
Reviewed-on: https://go-review.googlesource.com/c/go/+/749161
LUCI-TryBot-Result: Go ... | [
{
"path": "src/cmd/compile/internal/ssa/issue77582_test.go",
"patch": "@@ -1,29 +0,0 @@\n-// Copyright 2026 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-//go:build goexperiment.simd && amd64\n-\n-package... | 2026-02-25T19:33:49 |
denoland/deno | e76e5fa173945757aab4674573772b8793fa20a8 | 881f8c0e0f0f3431185247a0e28fa41a0c079cfb | fix(ext/node): multiple readline improvements (#32538)
## Summary
Several fixes and feature additions to the Node.js readline polyfill:
- **Fix tab completion column formatting** —
`Math.max.apply(completionsWidth)` was missing the array argument,
causing all completions to display one-per-line instead of in columns... | [
{
"path": "ext/node/polyfills/_readline.mjs",
"patch": "@@ -133,12 +133,13 @@ Interface.prototype.question = function question(query, options, cb) {\n };\n options.signal.addEventListener(\"abort\", onAbort, { once: true });\n const cleanup = () => {\n- options.signal.removeEventListener(on... | 2026-03-09T22:07:20 |
vuejs/vue | ed341137b23315b76ba391db1b0e537950c091e1 | 241eea19a64550bfdb3f9d7e4197127997572842 | fix: handle async component when parent is toggled before resolve (#9572)
fix #9571 | [
{
"path": "src/core/vdom/helpers/resolve-async-component.js",
"patch": "@@ -8,7 +8,8 @@ import {\n isTrue,\n isObject,\n hasSymbol,\n- isPromise\n+ isPromise,\n+ remove\n } from 'core/util/index'\n \n import { createEmptyVNode } from 'core/vdom/vnode'\n@@ -51,17 +52,21 @@ export function resolveAsy... | 2019-02-28T22:37:44 |
golang/go | 8411ab9d3d947fc842dd99eadf0ee01e3f6b9477 | 1aa534dbb8970b86b0f4059b7665e3505d145e25 | Revert "test/simd: add test for issue 77582"
This reverts CL 748760.
Reason for revert:
1. the fix in CL 745460 is not really correct.
2. this test doesn't actually reproduce the failure. (It needs to
actually use the result, instead of assigning to _.)
Change-Id: Ifb3da8954c5e8774ac000ee3bbf92e5813705dd6
Reviewe... | [
{
"path": "src/cmd/compile/internal/ssa/issue77582_test.go",
"patch": "@@ -1,25 +1,29 @@\n-// compile\n-\n-//go:build goexperiment.simd && amd64\n-\n // Copyright 2026 The Go Authors. All rights reserved.\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE f... | 2026-02-25T21:49:08 |
mrdoob/three.js | 3f86d3246b78efe81f63210717c09145cbacfaa0 | 5baffdb7b5e156bf7850c87c58f6094bea9ac321 | Inspector: Fix panel buttons on mobile (#31958) | [
{
"path": "examples/jsm/inspector/ui/Profiler.js",
"patch": "@@ -44,7 +44,7 @@ export class Profiler {\n \t\tthis.tabsContainer.className = 'profiler-tabs';\n \n \t\tconst controls = document.createElement( 'div' );\n-\t\tcontrols.style.display = 'flex';\n+\t\tcontrols.className = 'profiler-controls';\n \n ... | 2025-09-26T18:12:05 |
denoland/deno | 881f8c0e0f0f3431185247a0e28fa41a0c079cfb | d0c9173d9e0e92a40b74e03096d2fdec0bd00193 | fix(ext/node): use max salt length as default for RSA-PSS signing (#32534)
## Summary
- When no `saltLength` is specified for RSA-PSS signing, Node.js
defaults to `RSA_PSS_SALTLEN_MAX_SIGN` (max possible salt = `key_bytes -
hash_len - 2`)
- Deno was defaulting to the digest length instead (via
`rsa::pss::Pss::new::<D>... | [
{
"path": "ext/node_crypto/sign.rs",
"patch": "@@ -8,6 +8,7 @@ use elliptic_curve::generic_array::ArrayLength;\n use rand::rngs::OsRng;\n use rsa::signature::hazmat::PrehashSigner as _;\n use rsa::signature::hazmat::PrehashVerifier as _;\n+use rsa::traits::PublicKeyParts as _;\n use rsa::traits::SignatureSc... | 2026-03-09T22:06:55 |
golang/go | abf84a51fcec1156712be90f8aa2ae58b461aa65 | 45138d477d5a7547086357218061429d3c80a6be | cmd/go: use 'gcloud storage cp' instead of 'gsutil cp'
In some misguided attempt at "cleanup", Google Cloud has
decided to retire 'gsutil' in favor of 'gcloud storage' instead
of leaving an entirely backwards-compatible wrapper so
that client scripts and muscle memory keep working.
In addition to breaking customers t... | [
{
"path": "src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt",
"patch": "@@ -64,4 +64,4 @@ git checkout master\n git merge b -m merge\n \n zip -r ../tagtests.zip .\n-gsutil cp ../tagtests.zip gs://vcs-test/git/tagtests.zip\n+gcloud storage cp ../tagtests.zip gs://vcs-test/git/tagtests.zip",
"ad... | 2026-02-25T12:59:00 |
mrdoob/three.js | 6ba3cbef700a179b3f7df627b9e719b1876cb69e | e43225c675a5d84a2f71611f971a56fa6135213f | Earcut: Updated to latest version. (#31956)
* merge latest earcut changes
fix hashed earcut not taking the first point into account
* updated version headers | [
{
"path": "src/extras/lib/earcut.js",
"patch": "@@ -1,6 +1,6 @@\n /* eslint-disable */\n-// copy of mapbox/earcut version 3.0.1\n-// https://github.com/mapbox/earcut/tree/v3.0.1\n+// copy of mapbox/earcut version 3.0.2\n+// https://github.com/mapbox/earcut/tree/v3.0.2\n \n export default function earcut(dat... | 2025-09-26T17:56:08 |
vuejs/vue | 241eea19a64550bfdb3f9d7e4197127997572842 | f33301619d18b9392597c5230af17921c0b42466 | fix(types): allow scoped slots to return a single VNode (#9563) | [
{
"path": "types/test/options-test.ts",
"patch": "@@ -323,6 +323,10 @@ Vue.component('component-with-scoped-slot', {\n item: (props: ScopedSlotProps) => [h('span', [props.msg])]\n }\n }),\n+ h('child', [\n+ // return single VNode (will be normalized to an array)\n+ ... | 2019-02-28T22:03:28 |
denoland/deno | d0c9173d9e0e92a40b74e03096d2fdec0bd00193 | 0ee75392669d26bc1e051ecd5bdc90b1997ad963 | fix(ext/node): initialize debuglog testEnabled with safe default (#32598)
## Summary
- Initialize `testEnabled` and `debugImpls` in `debuglog.ts` with safe
defaults (`() => false` and empty object) instead of leaving them
deliberately uninitialized
- Fixes bootstrap crash `TypeError: testEnabled is not a function` th... | [
{
"path": "ext/node/polyfills/internal/util/debuglog.ts",
"patch": "@@ -4,10 +4,15 @@\n // TODO(petamoriken): enable prefer-primordials for node polyfills\n // deno-lint-ignore-file prefer-primordials\n \n-// `debugImpls` and `testEnabled` are deliberately not initialized so any call\n-// to `debuglog()` be... | 2026-03-09T20:45:41 |
mrdoob/three.js | e43225c675a5d84a2f71611f971a56fa6135213f | b5eb474704dff9954a9cd75c88a08c69d1920a83 | WebGPURenderer: Fix tone mapping mode detect (#31957)
* fix tone mapping mode detect
* cleanup | [
{
"path": "src/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -13,10 +13,9 @@ import WebGPUBindingUtils from './utils/WebGPUBindingUtils.js';\n import WebGPUPipelineUtils from './utils/WebGPUPipelineUtils.js';\n import WebGPUTextureUtils from './utils/WebGPUTextureUtils.js';\n \n-import { WebGPUCoordinate... | 2025-09-26T17:37:05 |
vuejs/vue | f33301619d18b9392597c5230af17921c0b42466 | 2277b2322cf81b5830a5b85f6600e1896edc7aa9 | fix(types): update this for nextTick api (#9541) | [
{
"path": "types/test/vue-test.ts",
"patch": "@@ -86,6 +86,9 @@ class Test extends Vue {\n }\n });\n this.nextTick(() => {});\n+ this.nextTick(function () {\n+ console.log(this.text === 'test');\n+ }, { text: 'test'});\n this.nextTick().then(() => {});\n this.set({}, \"\", \... | 2019-02-28T21:54:07 |
golang/go | a78df5aa0afcd64935f89577c0da0ed2315014ea | 60dc96479a85db0e245a5c14d964628169abedf4 | cmd/compile: rewriteFixedLoad: ensure AuxInt is sign-extended
CL 701297 accidentailly broke the type casting behavior for Hash.
Previously, the generated rules for Hash shared a common pattern:
v.AuxInt = int32ToAuxInt(fixed32(config, sym, off))
which inherently equaled to a signed-extend:
v.AuxInt = int64... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -2171,11 +2171,11 @@ func rewriteFixedLoad(v *Value, sym Sym, sb *Value, off int64) *Value {\n \t\t\t\t\treturn v\n \t\t\t\tcase \"Hash\":\n \t\t\t\t\tv.reset(OpConst32)\n-\t\t\t\t\tv.AuxInt = int64(types.TypeHash(t))\n+\t\t\t\t\tv.AuxInt = i... | 2026-02-12T06:56:43 |
mrdoob/three.js | dbdaced1f9fcddab13a4734af243b76d6674c759 | e0b01bc3dfd596db2e3e0e182749b8cd49acd0f0 | Update SSGINode.js
Fix JSDoc. | [
{
"path": "examples/jsm/tsl/display/SSGINode.js",
"patch": "@@ -218,7 +218,7 @@ class SSGINode extends TempNode {\n \t\t/**\n \t\t * Temporal offset added to the initial ray step.\n \t\t *\n-\t\t * @type {UniformNode<vec2>}\n+\t\t * @type {UniformNode<float>}\n \t\t */\n \t\tthis._temporalOffset = uniform( ... | 2025-09-26T11:54:21 |
denoland/deno | 0ee75392669d26bc1e051ecd5bdc90b1997ad963 | d3e9c917261adc24cbadd1e904988036be069ce5 | fix(ext/websocket): handle non-ASCII bytes in WebSocket response headers (#32594)
## Summary
- Replace `.to_str().unwrap()` with graceful fallbacks when parsing
`Sec-WebSocket-Protocol` and `Sec-WebSocket-Extensions` response headers
in `op_ws_create`
- Non-ASCII header values are now silently skipped instead of caus... | [
{
"path": "ext/websocket/lib.rs",
"patch": "@@ -451,14 +451,14 @@ pub async fn op_ws_create(\n let mut state = state.borrow_mut();\n let rid = state.resource_table.add(ServerWebSocket::new(stream));\n \n- let protocol = match response.get(\"Sec-WebSocket-Protocol\") {\n- Some(header) => header.to_st... | 2026-03-09T18:45:19 |
vuejs/vue | 2277b2322cf81b5830a5b85f6600e1896edc7aa9 | 7912f75c5eb09e0aef3e4bfd8a3bb78cad7540d7 | fix: scoped slots dynamic check should include v-for on element itself
fix #9596 | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -366,7 +366,7 @@ function genScopedSlots (\n // components with only scoped slots to skip forced updates from parent.\n // but in some cases we have to bail-out of this optimization\n // for example if the slot contains dynamic names, has v-if or... | 2019-02-28T19:36:47 |
golang/go | 60dc96479a85db0e245a5c14d964628169abedf4 | fa8595702eba16f757860705157f17f8054a92df | reflect: use &zeroVal[0] instead of nil for data field for zero-sized payloads
Because our wrapper functions barf if the pointer is nil, even if
we don't actually dereference the pointer.
Fixes #77779
Change-Id: Ib1b93d9f0fdc771cd884137007508ba2b1da4b7a
Reviewed-on: https://go-review.googlesource.com/c/go/+/748660
R... | [
{
"path": "src/reflect/value.go",
"patch": "@@ -1288,9 +1288,10 @@ func (v Value) Field(i int) Value {\n \t\t// bunch of zero-sized fields. We must return the zero-sized\n \t\t// fields indirectly, as only ptr-shaped things can be direct.\n \t\t// See issue 74935.\n-\t\t// We use nil instead of v.ptr as it ... | 2026-02-24T23:31:08 |
mrdoob/three.js | e0b01bc3dfd596db2e3e0e182749b8cd49acd0f0 | 1d9cbaec3df7986f5abf223d725ca095a3f3a240 | Update SSGINode.js
Fix JSDoc. | [
{
"path": "examples/jsm/tsl/display/SSGINode.js",
"patch": "@@ -96,7 +96,7 @@ class SSGINode extends TempNode {\n \t\t * Number of per-pixel hemisphere slices. This has a big performance cost and should be kept as low as possible.\n \t\t * Should be in the range `[1, 4]`.\n \t\t *\n-\t\t * @type {UniformNod... | 2025-09-26T08:42:51 |
vuejs/vue | 7912f75c5eb09e0aef3e4bfd8a3bb78cad7540d7 | 060c3b98efa44a9f21bcc038a2593b1cc3c782e9 | fix: avoid compression of unicode sequences by using regexps (#9595)
closes #9456 | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -11,12 +11,12 @@\n \n import { makeMap, no } from 'shared/util'\n import { isNonPhrasingTag } from 'web/compiler/util'\n-import { unicodeLetters } from 'core/util/lang'\n+import { unicodeRegExp } from 'core/util/lang'\n \n // Regular Expressions f... | 2019-02-28T17:10:38 |
golang/go | fa8595702eba16f757860705157f17f8054a92df | e237976802f31e13e98cbde121fa0348f77d8df4 | internal/runtime/sys: only use speculation barrier for DIT on Apple Silicon
The Apple documentation [0] indicates that when enabling DIT (via MSR),
a speculation barrier should be used. The rationale for this is not
explained, but one could assume that they perhaps do not treat MSR of
a PSTATE bit as a context synchro... | [
{
"path": "src/internal/runtime/sys/dit_arm64.s",
"patch": "@@ -11,9 +11,17 @@ TEXT ·EnableDIT(SB),$0-1\n MOVB R1, ret+0(FP)\n TBNZ $0, R1, ret\n MSR $1, DIT\n+#ifdef GOOS_darwin\n+ // Arm documents that barriers are not necessary when writing to, or reading\n+ // from, PSTATE fields. Howe... | 2026-02-24T16:58:39 |
denoland/deno | d3e9c917261adc24cbadd1e904988036be069ce5 | 6048a0d9f7ad3ff02712dbefd16ae07aaf685785 | fix(ext/node): fix multiple DiffieHellman crypto bugs (#32531)
## Summary
- Fix DH group key generation endianness bug (`BigUint::from_slice`
treating big-endian u32 MODULUS words as little-endian limbs)
- Fix panic when deriving DH public key from private key (implement
modular exponentiation `g^x mod p`)
- Fix PKCS... | [
{
"path": "Cargo.lock",
"patch": "@@ -35,7 +35,7 @@ version = \"0.5.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\"\n dependencies = [\n- \"crypto-common\",\n+ \"crypto-common 0.1.6\",\n \"generic-arr... | 2026-03-09T18:41:42 |
mrdoob/three.js | 4df22284241a32f72d153abdc88b4f53a6313951 | 48328154c987575b29cfe7e7085863ef260cf27a | TSL: Use GlobalID in Compute Water, Update IndexNode Comments (#31941)
* init branch, add comments and warnings to various index node related code
* adjust comments
* remove comments
* fix error
* remove invocationGlobalIndex references
* remove comment
* remove extra IndexNode parameter, unify documentation bet... | [
{
"path": "examples/webgpu_compute_water.html",
"patch": "@@ -27,7 +27,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three/webgpu';\n-\t\t\timport { instanceIndex, struct, If, uint, int, floor, float, length, clamp, vec2, cos, vec3, vertexIndex, Fn, uniform, instancedArray, min, max... | 2025-09-26T04:18:26 |
vuejs/vue | 060c3b98efa44a9f21bcc038a2593b1cc3c782e9 | 2ec5b640f55a34df1b70aa9d59b08385c2f7ac20 | fix: fix modifier parsing for dynamic argument with deep path (#9585)
fix #9577 | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -33,7 +33,7 @@ const dynamicArgRE = /^\\[.*\\]$/\n const argRE = /:(.*)$/\n export const bindRE = /^:|^\\.|^v-bind:/\n const propBindRE = /^\\./\n-const modifierRE = /\\.[^.]+/g\n+const modifierRE = /\\.[^.\\]]+(?=[^\\]]*$)/g\n \n const slotRE = /^v-slo... | 2019-02-28T14:36:47 |
golang/go | 874c3ceb3fcca850ccf9443974dce72abe112521 | 8d5e57474c4fe6d653327a49d460d4010c1d1d9b | cmd/compile: add loclist for removed DCL nodes
Certain return parameters which live in registers and end up pruned by
earlier SSA passes will end up with a DWARF entry but no location list.
This patch fixes this by ensuring those params have proper location
lists generated for them.
Change-Id: I4fff074e62c3010abdee85... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -236,6 +236,8 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t// reliably report its contents.\"\n \t// For non-SSA-able arguments, however, the correct information\n \t// is known -- they have a sin... | 2025-08-14T21:48:46 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.