repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vuejs/vue | 326d24a4e42b4f4fd243b36037e88b71963d963d | 0ea6c366f5770f016183513792fce8765df47739 | fix(sfc): only include legacy decorator parser plugin when new plugin is not used | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -126,7 +126,12 @@ export function compileScript(\n )\n }\n if (options.babelParserPlugins) plugins.push(...options.babelParserPlugins)\n- if (isTS) plugins.push('typescript', 'decorators-legacy')\n+ if (isTS) {\n+ plugins.pu... | 2022-06-30T02:37:40 |
denoland/deno | 71ac11e15ad5ea5088458e1a0b4a8c6109a18f07 | 099320204ddaad99adf11b72a6bfe30788135719 | docs: fix duplicated wording in LSP symbol comments (#32368) | [
{
"path": "cli/lsp/tsc.rs",
"patch": "@@ -2311,7 +2311,7 @@ impl NavigateToItem {\n }\n \n // The field `deprecated` is deprecated but SymbolInformation does not have\n- // a default, therefore we have to supply the deprecated deprecated\n+ // a default, therefore we have to supply the depreca... | 2026-03-24T07:47:59 |
mrdoob/three.js | 176519fd04c1cdf31322bebf185c2fab96b4cb2d | 41b6d17a94fa0748b80c09f017ba0b311a4be279 | WebGLRenderer: More fixes for reversed depth buffer. (#32799) | [
{
"path": "examples/jsm/shaders/GTAOShader.js",
"patch": "@@ -91,8 +91,12 @@ const GTAOShader = {\n \t\t#define FRAGMENT_OUTPUT vec4(vec3(ao), 1.)\n \t\t#endif\n \n-\t\tvec3 getViewPosition(const in vec2 screenPosition, const in float depth) {\n-\t\t\tvec4 clipSpacePosition = vec4(vec3(screenPosition, depth... | 2026-01-19T14:05:18 |
golang/go | 286a79658efbe6dcbea53aaf8112abeb8e9f2cc3 | 09dadce4fee15148a9f3a6969d15a0db8afe75bc | cmd/compile: fix missing walk for OAS2RECV node
When channel receive operator is used in the context that requires
conversion to destination type, there's an implicit conversion operator
inserted by typecheck. This typecheck-ed node is un-walked, then passing
to the backend as-is, causing the ICE.
Fixes #78313
Chang... | [
{
"path": "src/cmd/compile/internal/walk/assign.go",
"patch": "@@ -220,7 +220,7 @@ func walkAssignRecv(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {\n \tfn := chanfn(\"chanrecv2\", 2, r.X.Type())\n \tok := n.Lhs[1]\n \tcall := mkcall1(fn, types.Types[types.TBOOL], init, r.X, n1)\n-\treturn typecheck.Stmt(... | 2026-03-24T14:14:30 |
vuejs/vue | 008d78bd7280716d2d70e150e3ed2ac5ee8497f2 | bf64c4da5ca516924d940bb29f3e59b0fa5863c9 | fix(compiler-sfc): should transform non relative paths when base option is present
fix https://github.com/vitejs/vite-plugin-vue2/issues/14 | [
{
"path": "packages/compiler-sfc/src/templateCompilerModules/utils.ts",
"patch": "@@ -31,7 +31,6 @@ export function urlToRequire(\n uriParts.path + (uriParts.hash || '')\n )}\"`\n }\n- return returnValue\n }\n \n if (",
"additions": 0,
"deletions": 1,
"language": "Unknow... | 2022-06-28T01:57:19 |
denoland/deno | 099320204ddaad99adf11b72a6bfe30788135719 | 0558eecc0273358e962d059f1a8105d32b1d211b | fix(inspector): send executionContextDestroyed on process.exit() (#32934)
## Summary
- When `process.exit()` is called during an inspector debugging session,
broadcast `Runtime.executionContextDestroyed` CDP notification to all
connected sessions before exiting
- Wait for debugger sessions to disconnect after sending... | [
{
"path": "cli/worker.rs",
"patch": "@@ -94,6 +94,7 @@ impl CliMainWorker {\n {\n let coverage_for_exit = coverage_cell.clone();\n let profiler_for_exit = profiler_cell.clone();\n+ let inspector = self.worker.js_runtime().inspector();\n let mut cbs = OpExitCallbacks::default();\n ... | 2026-03-24T07:36:24 |
mrdoob/three.js | 1b7857ec6020acc9cdf7128729058ab6ae8e6cc3 | bdf33457c85270557eb5924af19513f0ac5b88db | WebGLShadowMap: Fix wrong camera state. (#32777) | [
{
"path": "src/renderers/shaders/ShaderChunk/shadowmap_pars_fragment.glsl.js",
"patch": "@@ -155,7 +155,16 @@ export default /* glsl */`\n \t\t\tfloat shadow = 1.0;\n \n \t\t\tshadowCoord.xyz /= shadowCoord.w;\n-\t\t\tshadowCoord.z += shadowBias;\n+\n+\t\t\t#ifdef USE_REVERSED_DEPTH_BUFFER\n+\n+\t\t\t\tshad... | 2026-01-17T18:11:59 |
golang/go | a6500456f3dff5a8b69e5961ee58fe341ae8b30a | c173b531342b05d14877a95a4186cc234edc9b9c | cmd/link: fix host object's .pdata entries order
Host objects are expected to have their .pdata entries in the correct
order, but the Go internal linker might reorder some of the functions
associated with the .pdata entries. This causes the .pdata section
in the final binary to have entries in the wrong order, and the... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -1689,6 +1689,20 @@ func (ctxt *Link) dodata(symGroupType []sym.SymKind) {\n \t\tldr.SetAttrOnList(s, true)\n \t}\n \n+\t// SEH symbols are tracked in side lists (sehp.pdata/xdata), so make\n+\t// them follow the same reachability decision used for ... | 2026-03-11T12:14:41 |
denoland/deno | f54ea9f126b4f73bc5b6af8622b43340a074bb7c | e7eb863c527b7441521d567a48b3f9af3f56ef34 | chore: consolidate Copilot review instructions and add runtime-aware guidelines (#32938)
## Summary
- Merge `.github/instructions/code-review.instructions.md` into
`.github/copilot-instructions.md`, eliminating the separate instructions
directory
- Add new review guidelines based on recurring patterns of incorrect
Co... | [
{
"path": ".github/copilot-instructions.md",
"patch": "@@ -228,6 +228,123 @@ RUST_BACKTRACE=1 ./target/debug/deno run script.ts\n \n In Rust code: `eprintln!(\"Debug: {:?}\", var);` or `dbg!(var);`\n \n+## Pull Request Reviews\n+\n+### Before commenting, verify your claims\n+\n+- If you claim something is m... | 2026-03-24T07:10:31 |
mrdoob/three.js | a477148f9569aca66be8413c563412c4160caa8a | fb28a2e295a53628d27dbcb0a0b8435b5fd75b62 | KTX2Loader: Fix alpha for BC3 textures (#32772) | [
{
"path": "examples/jsm/loaders/KTX2Loader.js",
"patch": "@@ -18,7 +18,6 @@ import {\n \tRGBA_ASTC_4x4_Format,\n \tRGBA_ASTC_6x6_Format,\n \tRGBA_BPTC_Format,\n-\tRGBA_S3TC_DXT3_Format,\n \tRGBA_ETC2_EAC_Format,\n \tR11_EAC_Format,\n \tSIGNED_R11_EAC_Format,\n@@ -994,8 +993,8 @@ const FORMAT_MAP = {\n \t[ V... | 2026-01-16T15:15:28 |
golang/go | c173b531342b05d14877a95a4186cc234edc9b9c | bfe4cc85e8f0187f3cdb7c80b9ff5a52be66e08b | cmd/dist: try to use jj commit info for devel version
Fixes #78369
Change-Id: Icb8bb9822eac78934efc313f50221de56a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/759320
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: Michael Matloob <ma... | [
{
"path": "src/cmd/dist/build.go",
"patch": "@@ -418,12 +418,7 @@ func findgoversion() string {\n \t\treturn chomp(readfile(path))\n \t}\n \n-\t// Show a nicer error message if this isn't a Git repo.\n-\tif !isGitRepo() {\n-\t\tfatalf(\"FAILED: not a Git repo; must put a VERSION file in $GOROOT\")\n-\t}\n-\... | 2026-03-25T18:17:41 |
vuejs/vue | 089b27c30b470acd98286ffe072525beb2320dea | 44ab1cda746252a1a81f88e1a9658d33f484ed41 | fix(watch): template ref watcher should fire after owner instance mounted hook
fix #12578 | [
{
"path": "src/v3/apiWatch.ts",
"patch": "@@ -320,11 +320,12 @@ function doWatch(\n } else {\n // pre\n watcher.update = () => {\n- if (!instance || instance._isMounted) {\n- queueWatcher(watcher)\n- } else {\n+ if (instance && instance === currentInstance) {\n+ // pre... | 2022-06-26T08:36:47 |
mrdoob/three.js | c3a8142c632e3e79f857d58b6684ff0154886f15 | de1f25b16e7d9025e623466cdf0c28086a6191f7 | WebGLRenderer: Fix shadow bias with reversed depth buffer. (#32770) | [
{
"path": "src/renderers/shaders/ShaderChunk/shadowmap_pars_fragment.glsl.js",
"patch": "@@ -267,14 +267,14 @@ export default /* glsl */`\n \t\t\t#ifdef USE_REVERSED_DEPTH_BUFFER\n \n \t\t\t\tfloat dp = ( shadowCameraNear * ( shadowCameraFar - viewSpaceZ ) ) / ( viewSpaceZ * ( shadowCameraFar - shadowCamera... | 2026-01-16T11:21:05 |
denoland/deno | e7eb863c527b7441521d567a48b3f9af3f56ef34 | 7a2a390432fc3eddef21db0ea6db6c392f63d13d | fix(npm): skip `file:` and `link:` dependencies in npm packages (#32876)
## Summary
- npm packages with `file:` or `link:` dependency specifiers (e.g.
`"local-pkg": "file:./local-pkg"`) caused Deno to fail with "Invalid
version requirement. Unexpected character." during resolution
- These specifiers are used for local... | [
{
"path": "libs/npm/registry.rs",
"patch": "@@ -131,6 +131,11 @@ pub enum NpmDependencyEntryErrorSource {\n \n To work around this, you can use a package.json and install the dependencies via `npm install`.\", .specifier)]\n RemoteDependency { specifier: String },\n+ /// A `file:` or `link:` dependency t... | 2026-03-23T20:05:17 |
golang/go | cdfc8c771301c8c1f32e50e773d620a6b8767078 | 670038a5a53c19ab299179e62d72956a92248877 | database/sql: avoid deadlock from reentrant RLock
RWMutex.RLock blocks until any pending Lock operations are satisfied.
This prohibits recursive read-locking. Replace various RWMutexes
used to synchronize between reads and closes with a variant where
the reader side takes priority. Reads can starve out Close, but wil... | [
{
"path": "src/database/sql/closemu.go",
"patch": "@@ -0,0 +1,111 @@\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+package sql\n+\n+import (\n+\t\"sync\"\n+\t\"sync/atomic\"\n+)\n+\n+/... | 2026-03-15T02:54:47 |
vuejs/vue | 44ab1cda746252a1a81f88e1a9658d33f484ed41 | 530b56a36e4689249dce6eba6e5c50e3305346f4 | fix(reactivity): readonly() compat with classes
fix #12574 | [
{
"path": "src/v3/reactivity/readonly.ts",
"patch": "@@ -69,7 +69,7 @@ function createReadonly(target: any, shallow: boolean) {\n return existingProxy\n }\n \n- const proxy = {}\n+ const proxy = Object.create(Object.getPrototypeOf(target))\n def(target, existingFlag, proxy)\n \n def(proxy, React... | 2022-06-23T00:34:26 |
mrdoob/three.js | c6515c3bf90bd1c5c496b226a409b0d26a7af772 | 9a12ba7a49ab26621d86930772e56b7fb2d1aed8 | USDLoader: Various bug fixes and improvements (#32766) | [
{
"path": "examples/jsm/loaders/usd/USDAParser.js",
"patch": "@@ -103,7 +103,7 @@ class USDAParser {\n \n \t\t\t\ttarget = stack[ stack.length - 1 ];\n \n-\t\t\t} else {\n+\t\t\t} else if ( line.trim() ) {\n \n \t\t\t\tstring = line.trim();\n \n@@ -660,12 +660,12 @@ class USDAParser {\n \t\t}\n \n \t\t// Qu... | 2026-01-15T23:17:52 |
denoland/deno | 70268d6b9d02a6fb46b75ea444a3b9bd7779469c | dcc04bbd62563016a30a8fa4eb66f4598cae857b | feat(core): implement NodeRuntime CDP domain and fix --inspect-brk blocking (#32714)
## Summary
Implements the `NodeRuntime` CDP (Chrome DevTools Protocol) domain for
the inspector, and fixes several long-standing inspector issues.
### NodeRuntime CDP Domain
- `NodeRuntime.enable` — emits `NodeRuntime.waitingForDebu... | [
{
"path": "libs/core/inspector.rs",
"patch": "@@ -194,7 +194,9 @@ impl v8::inspector::V8InspectorClientImpl for JsRuntimeInspectorClient {\n \n fn run_if_waiting_for_debugger(&self, context_group_id: i32) {\n assert_eq!(context_group_id, JsRuntimeInspector::CONTEXT_GROUP_ID);\n- self.0.flags.borrow... | 2026-03-23T13:08:12 |
mrdoob/three.js | 3fbfa2c60683532c754ea36641bac41e0d051664 | a519dddc3c7738a8fb4be42de1702da08da09940 | WebGLRenderer: Fix remaining shadow issues with reversed depth. (#32751) | [
{
"path": "src/renderers/shaders/ShaderChunk/shadowmap_pars_fragment.glsl.js",
"patch": "@@ -132,14 +132,24 @@ export default /* glsl */`\n \t\t\t\tfloat radius = shadowRadius * texelSize.x;\n \n \t\t\t\t// Use IGN to rotate sampling pattern per pixel\n-\t\t\t\tfloat phi = interleavedGradientNoise( gl_FragC... | 2026-01-14T16:05:04 |
golang/go | 670038a5a53c19ab299179e62d72956a92248877 | 26d8a902002a2b41bc4c302044110f2eae8d597f | cmd/compile: preserve variadic signature on range-over-func
When rewriting range-over-func loops, copy the variadic bit from the
original function type into the synthesized body closure's type info.
This keeps the generated closure signature aligned with the source
function and avoids losing variadic-ness during rewri... | [
{
"path": "src/cmd/compile/internal/rangefunc/rewrite.go",
"patch": "@@ -1175,7 +1175,7 @@ func (r *rewriter) bodyFunc(body []syntax.Stmt, lhs []syntax.Expr, def bool, fty\n \t\tType: types2.NewSignatureType(nil, nil, nil,\n \t\t\ttypes2.NewTuple(params...),\n \t\t\ttypes2.NewTuple(results...),\n-\t\t\tfals... | 2026-03-24T13:42:23 |
vuejs/vue | 7a3aa3faac6b8eb066f32813788b4c1d16f34c6b | fb7f5f0b6741a33960946175c4d8d35e31eee9f6 | fix(watch): fix pre watchers not flushed on mount for nested component
fix #12569 | [
{
"path": "src/core/instance/lifecycle.ts",
"patch": "@@ -218,15 +218,17 @@ export function mountComponent(\n )\n hydrating = false\n \n+ // flush buffer for flush: \"pre\" watchers queued in setup()\n+ const preWatchers = vm._preWatchers\n+ if (preWatchers) {\n+ for (let i = 0; i < preWatchers.le... | 2022-06-22T02:20:02 |
denoland/deno | dcc04bbd62563016a30a8fa4eb66f4598cae857b | b75e2b8dda4c495d56dfc8126893c1271c012199 | fix(ext/node): defer uv_write callbacks to prevent re-entrancy panic (#32919)
## Summary
- `uv_write` in the uv compat layer was firing write callbacks
synchronously when `try_write` succeeded fully or failed. This caused a
`RefCell` double-borrow panic ("RefCell already borrowed") when the
caller (e.g. `StreamWrap.w... | [
{
"path": "libs/core/uv_compat/stream.rs",
"patch": "@@ -254,10 +254,14 @@ pub unsafe fn uv_write(\n data: write_data,\n offset: 0,\n cb,\n+ status: None,\n });\n return 0;\n }\n \n+ // Never fire callbacks synchronously from uv_write — always queue.\n+ /... | 2026-03-23T11:19:38 |
mrdoob/three.js | e90650f919f58316ee38e63b4fd1b15785d58a02 | da6895d73acf62ee83ae32b1d8d32bdb58c71638 | WebGLRenderer: Fix pointlight shadows with reversed depth buffer. (#32749) | [
{
"path": "src/renderers/shaders/ShaderChunk/shadowmap_pars_fragment.glsl.js",
"patch": "@@ -262,9 +262,18 @@ export default /* glsl */`\n \n \t\tif ( viewSpaceZ - shadowCameraFar <= 0.0 && viewSpaceZ - shadowCameraNear >= 0.0 ) {\n \n-\t\t\t// Calculate perspective depth for cube shadow map\n-\t\t\t// Stan... | 2026-01-14T12:14:41 |
golang/go | 26d8a902002a2b41bc4c302044110f2eae8d597f | 312541b783ceae00471573da83367cae26ca255b | crypto/x509: fix signature checking limit
We added the "is this cert already in the chain" check (alreadyInChain)
to considerCandidates before the signature limit. considerCandidates
bails out when we exceed the signature check, but buildChains keeps
calling considerCandidates until it exhausts all potential parents. ... | [
{
"path": "src/crypto/x509/verify.go",
"patch": "@@ -720,23 +720,25 @@ func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {\n // for failed checks due to different intermediates having the same Subject.\n const maxChainSignatureChecks = 100\n \n+var errSignatureLimit = errors.New(\"x509:... | 2026-03-05T22:28:44 |
vuejs/vue | 65531f580314d832f44ecd5c782f79da3e977da7 | a122bd25c3c453c91a7f35b54b2c75df8b0b1f24 | fix(types): fix instance type inference for setup() with no return value
fix #12568 | [
{
"path": "types/test/v3/setup-test.ts",
"patch": "@@ -93,3 +93,11 @@ defineComponent({\n res?.charAt(1)\n }\n })\n+\n+// #12568\n+const vm = new Vue({\n+ setup() {},\n+ render: h => h({})\n+})\n+\n+vm.$mount('#app')",
"additions": 8,
"deletions": 0,
"language": "Unknown"
},
{
"p... | 2022-06-22T01:44:41 |
denoland/deno | b75e2b8dda4c495d56dfc8126893c1271c012199 | d0e3cfb1ae8c87cd3108bd7870eba590de6377f3 | fix(ext/node): fix node:domain across async boundaries (#32897)
## Summary
- Fix `node:domain` not working across async boundaries (timers, I/O).
`process.domain` was lost in timer callbacks and socket error handlers
because
timers didn't emit async hook lifecycle events and `EventEmitter.emit`
didn't
preserve doma... | [
{
"path": "ext/node/polyfills/domain.ts",
"patch": "@@ -121,9 +121,28 @@ export class Domain extends EventEmitter {\n // deno-lint-ignore no-this-alias\n const self = this;\n return function () {\n+ self.enter();\n try {\n- return FunctionPrototypeApply(fn, null, ArrayPrototype... | 2026-03-23T09:40:44 |
mrdoob/three.js | 43166fcb2c5378a3cdd4c782175d0daf136a10d1 | 87cc59b7d6a656c6290d718a17a1b9bb35c350c7 | USDCParser: Fixed scalar handling. | [
{
"path": "examples/jsm/loaders/usd/USDCParser.js",
"patch": "@@ -1261,6 +1261,8 @@ class USDCParser {\n \n \t\tswitch ( type ) {\n \n+\t\t\tcase TypeEnum.Invalid:\n+\t\t\t\treturn null;\n \t\t\tcase TypeEnum.Bool:\n \t\t\t\treturn reader.readUint8() !== 0;\n \t\t\tcase TypeEnum.UChar:\n@@ -1402,7 +1404,7 @... | 2026-01-14T09:43:53 |
golang/go | 312541b783ceae00471573da83367cae26ca255b | 04dc12c1a17d3fa4ff49af84de5641099716e234 | crypto/x509: hoist policy pruning out of loop
We only need to do this once, not once per mapping.
Thanks to Jakub Ciolek for reporting this issue.
Fixes #78281
Fixes CVE-2026-32281
Change-Id: Ic26f5f14d2a5e42ca8c24b8ae47bc3c5cc601863
Reviewed-on: https://go-review.googlesource.com/c/go/+/758061
Reviewed-by: Damien ... | [
{
"path": "src/crypto/x509/verify.go",
"patch": "@@ -1284,12 +1284,12 @@ func policiesValid(chain []*Certificate, opts VerifyOptions) bool {\n \t\t\t\t\t\t} else {\n \t\t\t\t\t\t\t// 6.1.4 (b) (3) (i) -- as updated by RFC 9618\n \t\t\t\t\t\t\tpg.deleteLeaf(mapping.IssuerDomainPolicy)\n-\n-\t\t\t\t\t\t\t// 6... | 2026-03-23T19:09:47 |
vuejs/vue | 9b9f2bf1c8429136e7122d146e0e39bdeada5d1d | de03f69cd6780272e351efed743585ccf110be19 | fix(compiler-sfc): properly handle shorthand property in template expressions
fix #12566 | [
{
"path": "packages/compiler-sfc/src/prefixIdentifiers.ts",
"patch": "@@ -1,7 +1,7 @@\n import MagicString from 'magic-string'\n import { parseExpression, ParserOptions, ParserPlugin } from '@babel/parser'\n import { makeMap } from 'shared/util'\n-import { walkIdentifiers } from './babelUtils'\n+import { is... | 2022-06-21T01:41:30 |
denoland/deno | d0e3cfb1ae8c87cd3108bd7870eba590de6377f3 | e8ba184376aaf1463ba915fa8ac27ad558ddc868 | fix(ext/web): AbortSignal.any() memory leak with long-lived signals (#32916)
## Summary
`AbortSignal.any()` leaked memory when called repeatedly with a
long-lived parent signal (common pattern: a global shutdown signal
combined per-request). The parent signal's `dependentSignals` collection
grew unboundedly because d... | [
{
"path": "ext/web/03_abort_signal.js",
"patch": "@@ -5,22 +5,19 @@\n \n import { core, primordials } from \"ext:core/mod.js\";\n const {\n- ArrayPrototypeEvery,\n ArrayPrototypePush,\n FunctionPrototypeApply,\n ObjectPrototypeIsPrototypeOf,\n+ SafeFinalizationRegistry,\n SafeSet,\n SafeSetItera... | 2026-03-23T09:37:58 |
mrdoob/three.js | 9a711cc1f452a917fe92eab3b4538fd34f45687a | 27f2f4eb5fbf78f42d0447a7b7f1879445b96111 | USDComposer: Fixed variant composition. | [
{
"path": "examples/jsm/loaders/usd/USDAParser.js",
"patch": "@@ -217,6 +217,34 @@ class USDAParser {\n \n \t\t\t}\n \n+\t\t\tif ( key === 'variants' ) {\n+\n+\t\t\t\tconst variantSelection = {};\n+\t\t\t\tconst variants = data[ key ];\n+\n+\t\t\t\tfor ( const vKey in variants ) {\n+\n+\t\t\t\t\tconst match... | 2026-01-14T07:00:11 |
golang/go | 04dc12c1a17d3fa4ff49af84de5641099716e234 | fa238516b782bd1f233e85b719b7ab90889a5634 | runtime: use uname version check for 64-bit time on 32-bit arch codepaths
The previous fallback-on-ENOSYS logic causes issues on forks of Linux.
Android: #77621 (CL 750040 added a workaround with a TODO,
this fixes that TODO)
Causes the OS to terminate the program when running on Android
versions <=10 since the secco... | [
{
"path": "src/internal/runtime/syscall/linux/defs_linux_386.go",
"patch": "@@ -17,6 +17,7 @@ const (\n \tSYS_OPENAT = 295\n \tSYS_PREAD64 = 180\n \tSYS_READ = 3\n+\tSYS_UNAME = 122\n \n \tEFD_NONBLOCK = 0x800\n ",
"additions": 1,
"deletions": 0,
"language": "Go"
... | 2026-03-24T23:02:09 |
vuejs/vue | c9d0e3aee1a4cf2f7bda7d69b66972084b74b737 | 0f2cede3748eab94d1f14333c079c9886cc194e5 | ci: e2e test fix | [
{
"path": "examples/composition/todomvc.html",
"patch": "@@ -1,4 +1,4 @@\n-<script src=\"../../dist/vue.js\"></script>\n+<script src=\"../../dist/vue.min.js\"></script>\n <link\n rel=\"stylesheet\"\n href=\"../../node_modules/todomvc-app-css/index.css\"\n@@ -90,7 +90,7 @@ <h1>todos</h1>\n <script>\n c... | 2022-06-20T08:22:54 |
denoland/deno | e8ba184376aaf1463ba915fa8ac27ad558ddc868 | 80121ae106e863157920e7709b5a08e67505195f | fix(ext/node): fix IPC stdio handling in child_process (#32920)
## Summary
Two fixes for child_process IPC stdio handling:
1. **Validate single IPC pipe** - throw `ERR_IPC_ONE_PIPE` when multiple
`'ipc'` entries are specified in the stdio array (e.g. `stdio: ['pipe',
'pipe', 'pipe', 'ipc', 'ipc']`)
2. **Fix panic w... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -46,6 +46,7 @@ import {\n ERR_INVALID_HANDLE_TYPE,\n ERR_INVALID_SYNC_FORK_INPUT,\n ERR_IPC_CHANNEL_CLOSED,\n+ ERR_IPC_ONE_PIPE,\n ERR_IPC_SYNC_FORK,\n ERR_MISSING_ARGS,\n ERR_UNKNOWN_SIGNAL,\n@@ -382,6 +383,9 @@ export clas... | 2026-03-23T09:37:00 |
mrdoob/three.js | 73636e35bfc1800f0242cbd0a5c488b184546943 | 53dbc52c29d3b5eff35bb747366eb0c55224d765 | USDComposer: Fix color space handling for material colors. | [
{
"path": "examples/jsm/loaders/usd/USDComposer.js",
"patch": "@@ -861,7 +861,7 @@ class USDComposer {\n \n \t\t\t\tif ( mat.color && mat.color.r === 1 && mat.color.g === 1 && mat.color.b === 1 && ! mat.map ) {\n \n-\t\t\t\t\tmat.color.setRGB( displayColor[ 0 ], displayColor[ 1 ], displayColor[ 2 ] );\n+\t\... | 2026-01-14T04:35:48 |
vuejs/vue | 2d676416566c06d7c789899c92bf0f6924ec284a | 9d54f8bdfe9db75853befdc916bc85a18b337583 | fix: remove wrong observe toggle, properly disable tracking in setup() | [
{
"path": "src/v3/apiSetup.ts",
"patch": "@@ -1,6 +1,6 @@\n import { Component } from 'types/component'\n import { PropOptions } from 'types/options'\n-import { toggleObserving } from '../core/observer'\n+import { popTarget, pushTarget } from '../core/observer/dep'\n import { def, invokeWithErrorHandling, i... | 2022-06-20T06:32:50 |
golang/go | b8dea877130ee6b80df1c468952ec5d13de9c16a | 068f27a8e06e58361bcc2d5e7d17deafab4b52bc | net/url: escape // at start of Path when OmitHost set
When a URL has OmitHost set and a Path starting with //,
escape the first / in the path to avoid emitting a URL
with the host set from the Path.
For example for
u := url.URL{Scheme: "file", OmitHost: true, Path: "//host/path"}
u.String is now "file:%2F/host/pat... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -836,6 +836,13 @@ func (u *URL) String() string {\n \t\t\t}\n \t\t}\n \t\tpath := u.EscapedPath()\n+\t\tif u.OmitHost && u.Host == \"\" && u.User == nil && strings.HasPrefix(path, \"//\") {\n+\t\t\t// Escape the first / in a path starting with \"//\" and no autho... | 2026-03-24T21:19:02 |
mrdoob/three.js | 3fddc5cec7810814347626097623a1349ac656d9 | 2ec2102b2dddc66be8ebfd0b216aa592684a78e3 | WebGPURenderer: Fix depth/stencil format out-of-sync bug. (#32731) | [
{
"path": "src/renderers/webgpu/utils/WebGPUUtils.js",
"patch": "@@ -34,17 +34,21 @@ class WebGPUUtils {\n \n \t\tlet format;\n \n-\t\tif ( renderContext.depthTexture !== null ) {\n+\t\tif ( renderContext.depth ) {\n \n-\t\t\tformat = this.getTextureFormatGPU( renderContext.depthTexture );\n+\t\t\tif ( rend... | 2026-01-12T10:52:01 |
denoland/deno | c99c8aceff594d5914351f5f0272e6291a65dff0 | 1df0225552d39cc2e04286eeb236391d59c6b8b0 | fix(ext/node): fix Buffer.concat truncating buffers larger than 4GB (#32913)
## Summary
- Replace `| 0` (32-bit integer truncation) with `MathTrunc()` in
`checked()`, `_allocUnsafe()`, and `fromString()` in the Node.js Buffer
polyfill
- This fixes `Buffer.concat` and `Buffer.allocUnsafe` silently
truncating buffers w... | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -423,7 +423,7 @@ Buffer.alloc = function alloc(size, fill, encoding) {\n \n function _allocUnsafe(size) {\n assertSize(size);\n- return createBuffer(size < 0 ? 0 : checked(size) | 0);\n+ return createBuffer(size < 0 ? 0 : checked(size));\n... | 2026-03-23T07:38:49 |
vuejs/vue | 52cf912d855a7fae8d8c89452f0d275846e26a87 | 2533a360a838c41238dc9b9b840932f2957c65d4 | fix(setup): setup props should pass isReactive check
close #12561 | [
{
"path": "src/core/instance/state.ts",
"patch": "@@ -30,7 +30,7 @@ import {\n isFunction\n } from '../util/index'\n import type { Component } from 'types/component'\n-import { TrackOpTypes } from '../../v3'\n+import { shallowReactive, TrackOpTypes } from 'v3'\n \n const sharedPropertyDefinition = {\n e... | 2022-06-20T05:09:56 |
mrdoob/three.js | ac6cc5483b0cf50d4473c52d1218c44f4db1c729 | c1fa28d9436c8d3502766b197a305c7999f96bfd | TSL: Fixing invalid GLSL using nested structures (#32724) | [
{
"path": "src/nodes/core/StructNode.js",
"patch": "@@ -52,6 +52,21 @@ class StructNode extends Node {\n \n \t}\n \n+\t_getChildren() {\n+\n+\t\t// Ensure struct type is the last child for correct code generation order\n+\n+\t\tconst children = super._getChildren();\n+\n+\t\tconst structTypeProperty = child... | 2026-01-11T20:39:23 |
golang/go | 068f27a8e06e58361bcc2d5e7d17deafab4b52bc | 98aaa9b0ee54ba197432458a6f344c14aa12c106 | cmd/go: add information about GODEBUGs to go help gopath
And make it clear that standard library tests won't run properly with
GO111MODULE=off.
Fixes #73973
Fixes #69202
Change-Id: I8c71c739e1da80fbf2e13f84ecaf9c346a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758720
Reviewed-by: Dmitri Shuralyov <d... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2877,6 +2877,13 @@\n // Code in GOPATH mode vendor directories is not subject to\n // GOPATH mode import path checking (see 'go help importpath').\n //\n+// In GOPATH mode, the default GODEBUG values built into a binary\n+// will be those used in Go 1.20, set... | 2026-03-24T16:22:25 |
denoland/deno | 1df0225552d39cc2e04286eeb236391d59c6b8b0 | 72d86f79649efc4a9777235415af82accfa02a03 | fix(ext/node): set fd property on TTY ReadStream and WriteStream (#32880)
## Summary
- Set `this.fd = fd` in tty `WriteStream` and `ReadStream` constructors
- When stdout/stderr is a TTY, `process.stdout.fd` was `undefined`
because the TTY code path in `process.ts` creates `TTYWriteStream`
directly, bypassing `create... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -1317,6 +1317,9 @@ internals.__bootstrapNodeProcess = function (\n if (io.stdout.isTerminal()) {\n /** https://nodejs.org/api/process.html#process_process_stdout */\n stdout = process.stdout = new TTYWriteStream(1);\n+ // For suppo... | 2026-03-23T07:35:32 |
mrdoob/three.js | ff2d5093398cf82acbed73ed2999ec4a4e841d10 | b3bdd221698481129cbc0d9e893c818c5f095985 | SkinningNode: Fix tangent transformation. (#32718) | [
{
"path": "src/nodes/accessors/SkinningNode.js",
"patch": "@@ -146,13 +146,14 @@ class SkinningNode extends Node {\n \t}\n \n \t/**\n-\t * Transforms the given vertex normal via skinning.\n+\t * Transforms the given vertex normal and tangent via skinning.\n \t *\n \t * @param {Node} [boneMatrices=this.boneM... | 2026-01-11T18:04:52 |
vuejs/vue | 2533a360a838c41238dc9b9b840932f2957c65d4 | 0fabda7a3b016c1c0cb5d92f5d8efc35f0dbde40 | fix(template-ref): preserve ref removal behavior in non-composition-api usage
close #12554 | [
{
"path": "src/core/vdom/modules/template-ref.ts",
"patch": "@@ -33,6 +33,7 @@ export function registerRef(vnode: VNodeWithData, isRemoval?: boolean) {\n const vm = vnode.context\n const refValue = vnode.componentInstance || vnode.elm\n const value = isRemoval ? null : refValue\n+ const $refsValue = ... | 2022-06-20T04:42:32 |
golang/go | e3bda445164c764aa95c7df271dff2170fa1a7ce | cbc2d06c9ba8285bb60f1055b44d4d1e742ca734 | debug/elf: handle program header count overflow
ELF files only have a 16-bit count for program headers.
To handle the very rare case of larger files,
a large program header count is stored as 0xffff
and the first section header info field holds the actual count.
Fixes #78217
Change-Id: I35c7e15025a9677473cb43d09a41f... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -400,6 +400,72 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t\treturn nil, &FormatError{0, \"invalid ELF phentsize\", phentsize}\n \t}\n \n+\t// If the number of sections is greater than or equal to SHN_LORESERVE\n+\t// (0xff00), shnum has the value zero... | 2026-03-23T11:38:52 |
denoland/deno | 72d86f79649efc4a9777235415af82accfa02a03 | af670585e4d144b8c9a5863f1b44d68a58544f8b | fix(ext/node): enable node:fs compat tests + lchmod fix (#32892)
## Summary
Enable 87 previously-disabled `node:fs` compatibility tests that now
pass.
### Code fix
- **promises.lchmod**: Made the function `async` so validation errors
become rejected promises instead of synchronous throws, matching Node.js
behavior w... | [
{
"path": "ext/node/polyfills/_fs/_fs_fstat.ts",
"patch": "@@ -12,6 +12,7 @@ import {\n import { BigIntStats, Stats } from \"ext:deno_node/internal/fs/utils.mjs\";\n import { FsFile } from \"ext:deno_fs/30_fs.js\";\n import { denoErrorToNodeError } from \"ext:deno_node/internal/errors.ts\";\n+import { getVa... | 2026-03-23T07:22:11 |
mrdoob/three.js | 55c047585ddb3f21fa2697195880ccddcec2692c | 6e9c5809658ddbafbd0b974046d181e99cebd0d7 | RenderObject: Fix ID assignment bug. (#32700) | [
{
"path": "src/renderers/common/RenderObject.js",
"patch": "@@ -511,8 +511,7 @@ class RenderObject {\n \n \t\t\t\t// geometry attribute\n \t\t\t\tattribute = geometry.getAttribute( nodeAttribute.name );\n-\n-\t\t\t\tattributesId[ nodeAttribute.name ] = attribute.version;\n+\t\t\t\tattributesId[ nodeAttribut... | 2026-01-09T16:31:58 |
vuejs/vue | 328ebff04198143385371c857ad23f739be9509d | b2332faf04dc3cabd8dee2fdc53ced99441b87ed | fix(compiler-sfc): do not transform external and data urls in templates | [
{
"path": "packages/compiler-sfc/src/templateCompilerModules/utils.ts",
"patch": "@@ -14,8 +14,11 @@ export function urlToRequire(\n url = url.slice(secondChar === '/' ? 2 : 1)\n }\n \n- const uriParts = parseUriParts(url)\n+ if (isExternalUrl(url) || isDataUrl(url) || firstChar === '#') {\n+ ret... | 2022-06-17T02:45:52 |
golang/go | c52d784d0834d13b53e297dbcf7ebf057ba4eb8f | eae0bfb1b0cb7ca88d777de2c5e4b498d677a890 | test: repair expected-error regexp in simd.go
The test is only run when GOEXPERIMENT=simd, and currently
there are no trybots for that. This error was found after
merging to dev.simd, where such trybots ARE run.
To run this test:
```
GOEXPERIMENT=simd go test -run=Test/simd.go -v cmd/internal/testdir -target=darwin/... | [
{
"path": "test/simd.go",
"patch": "@@ -150,8 +150,8 @@ func ternTricky3(x, y, z archsimd.Int32x8) archsimd.Int32x8 {\n func vpternlogdPanic() {\n \tresultsMask := archsimd.Mask64x8{}\n \n-\tfor { // ERROR \"has features avx+avx2+avx512\"\n-\t\tresultsMask = archsimd.Mask64x8FromBits(0).Or( // ERROR \"has f... | 2026-03-25T02:34:59 |
denoland/deno | af670585e4d144b8c9a5863f1b44d68a58544f8b | ceb6936a983904511867d69986203786b68b7e21 | fix(ext/node): preserve TLS upgrade state on reconnect (#32838)
## Summary
- run the TLS post-connect upgrade hook against the active handle
instead of a closure-captured original handle
- rebuild TLS upgrade promise/resolver metadata when `net.Socket`
reinitializes its handle during reconnect fallback
- add a regress... | [
{
"path": "ext/node/ops/http2/session.rs",
"patch": "@@ -20,14 +20,9 @@ use deno_core::v8;\n use libnghttp2 as ffi;\n use serde::Serialize;\n \n-/// Type alias matching the C `ssize_t` type used by nghttp2 callbacks.\n-/// On Unix, `ssize_t` equals `isize`. On 64-bit Windows MSVC, `ssize_t`\n-/// is defined... | 2026-03-23T07:15:02 |
mrdoob/three.js | 8485acc4154581a3773aab9b4d8956ece8f3c473 | 19c76f8c749d417d66ba6629d76d8bfa52877e82 | SpriteSheetUVNode: Transform to TSL function and fix `countNode` access. (#32693) | [
{
"path": "src/nodes/Nodes.js",
"patch": "@@ -49,7 +49,6 @@ export { default as RemapNode } from './utils/RemapNode.js';\n export { default as RotateNode } from './utils/RotateNode.js';\n export { default as SetNode } from './utils/SetNode.js';\n export { default as SplitNode } from './utils/SplitNode.js';\... | 2026-01-09T10:58:51 |
vuejs/vue | cdfc4c134ddadc33f3b50d53ec6316b0c96f4567 | 8f5817a7c9a0664438e4299f82ac41a67f156f89 | fix(compiler-sfc): expose src on custom blocks as well | [
{
"path": "packages/compiler-sfc/src/parseComponent.ts",
"patch": "@@ -125,6 +125,11 @@ export function parseComponent(\n return cumulated\n }, {})\n }\n+\n+ if (typeof currentBlock.attrs.src === 'string') {\n+ currentBlock.src = currentBlock.attrs.src\n+ }\n+\n ... | 2022-06-17T01:36:34 |
denoland/deno | ceb6936a983904511867d69986203786b68b7e21 | f5014bb6c3ce4d398b920fc9f0b492dead2019e2 | fix(ext/node): return all own properties from VM context property enumerator (#32911)
## Summary
- VM context's property enumerator callbacks were using
`GetPropertyNamesArgs::default()` which only returns enumerable,
non-symbol properties
- This caused `Reflect.ownKeys()`, `Object.getOwnPropertyNames()`, and
`Object... | [
{
"path": "ext/node/ops/vm.rs",
"patch": "@@ -1027,9 +1027,13 @@ fn property_enumerator<'s>(\n };\n \n let context_scope = &mut v8::ContextScope::new(scope, context);\n- let Some(properties) = sandbox\n- .get_property_names(context_scope, v8::GetPropertyNamesArgs::default())\n- else {\n+ let args ... | 2026-03-23T07:10:48 |
golang/go | e26d743e2b600e448bee8f9cafd57ba4a70df813 | e5975324c03874b82b62c6c2a4388321edb78e74 | cmd/link: print more information in TestExtLinkCmdlineDeterminism
Print more information in TestExtLinkCmdlineDeterminism to debug
test failure.
For #78180
Change-Id: I7e95eceb957805588c5dbb272370476d2378ea7e
Reviewed-on: https://go-review.googlesource.com/c/go/+/758823
Reviewed-by: Michael Pratt <mpratt@google.com>... | [
{
"path": "src/cmd/link/link_test.go",
"patch": "@@ -1468,10 +1468,11 @@ func main() {}\n \t// Link with -v -linkmode=external to see the flags we pass to the\n \t// external linker.\n \tldflags := \"-ldflags=-v -linkmode=external -tmpdir=\" + linktmp\n-\tvar out0 []byte\n+\tvar out0, fullOut0 []byte\n \tfo... | 2026-03-24T20:53:12 |
mrdoob/three.js | 19c76f8c749d417d66ba6629d76d8bfa52877e82 | 37278f585248303a99746f2faf828b4fd7020aa5 | TSL: Fix `positionView` sub-build (#32691) | [
{
"path": "src/materials/nodes/NodeMaterial.js",
"patch": "@@ -535,9 +535,9 @@ class NodeMaterial extends Material {\n \n \t\tbuilder.addStack();\n \n-\t\tconst mvp = subBuild( this.setupVertex( builder ), 'VERTEX' );\n+\t\tconst mvp = this.setupVertex( builder );\n \n-\t\tconst vertexNode = this.vertexNode... | 2026-01-09T10:57:12 |
denoland/deno | f5014bb6c3ce4d398b920fc9f0b492dead2019e2 | fd73dffa16d136cc55948da7804e6ad35ab145ed | fix(ext/node): child_process improvements (internalMessage, argv0, DEP0190) (#32885)
## Summary
Three child_process Node.js compatibility fixes:
### 1. Emit `internalMessage` event for `NODE_` prefixed IPC messages
In Node.js, IPC messages with a `cmd` property starting with `NODE_` are
internal messages emitted as... | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -71,6 +71,7 @@ import { Pipe, socketType } from \"ext:deno_node/internal_binding/pipe_wrap.ts\";\n import { Server as NetServer, Socket } from \"node:net\";\n import { Socket as DgramSocket } from \"node:dgram\";\n import {\n+ kArgv0,\n... | 2026-03-23T07:08:51 |
golang/go | e5975324c03874b82b62c6c2a4388321edb78e74 | 4a7132b4b070e65fe28d08a3989897d6a3d65f00 | net/url: permit colons in the host subcomponent of non-http/https URLs
Too many systems seem to rely on net/url accepting invalid URLs with
colons in the host subcomponent. Rather than adding exceptions for
each (PostgreSQL, MongoDB, Redis, etc.), limit the strict validation
to http/https only.
For #78077
Change-Id:... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -606,25 +606,22 @@ func parseHost(scheme, host string) (string, error) {\n \t} else if i := strings.Index(host, \":\"); i != -1 {\n \t\tlastColon := strings.LastIndex(host, \":\")\n \t\tif lastColon != i {\n-\t\t\tif scheme == \"postgresql\" || scheme == \"postgr... | 2026-03-24T21:49:27 |
mrdoob/three.js | 5a7e8bcfa57faddca4f73962fd92a207d6254bee | f848b7508aec093a80fd9a72ed83727ac4a1d1c7 | PCDLoader: Fix label parsing. (#32683) | [
{
"path": "examples/jsm/loaders/PCDLoader.js",
"patch": "@@ -518,7 +518,7 @@ class PCDLoader extends Loader {\n \t\t\t\tif ( offset.label !== undefined ) {\n \n \t\t\t\t\tconst labelIndex = PCDheader.fields.indexOf( 'label' );\n-\t\t\t\t\tlabel.push( dataview.getInt32( ( PCDheader.points * offset.label ) + ... | 2026-01-07T12:44:53 |
golang/go | 4a7132b4b070e65fe28d08a3989897d6a3d65f00 | fb592a174727bd693f0e27d130aa60362ed5c6f0 | cmd/go/testdata/vcstest: explicitly set invalid-version's branch to main
Fixes #78323
Change-Id: Id527f3a162969309b7103e5f0e0cc6496a6a6964
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest-git2.24.0
Reviewed-on: https://go-review.googlesource.com/c/go/+/758820
Reviewed-by: Michael Matloob <matloob@google... | [
{
"path": "src/cmd/go/testdata/vcstest/git/invalid-version.txt",
"patch": "@@ -9,6 +9,7 @@ at 2017-09-15T03:28:32-00:00\n \n git init\n git commit --allow-empty -m 'initial commit'\n+git branch -m main\n git tag v0.1.0\n git tag v3.1.0\n ",
"additions": 1,
"deletions": 0,
"language": "Plain Text... | 2026-03-24T19:39:06 |
vuejs/vue | 2726b6d9ff3030af63012a304c33781163461a23 | fa2115c0310037aa09d968de7f3bc604c53d343f | fix: further align types with v3 | [
{
"path": "packages/compiler-sfc/src/compileTemplate.ts",
"patch": "@@ -1,8 +1,4 @@\n-import {\n- BindingMetadata,\n- VueTemplateCompiler,\n- VueTemplateCompilerOptions\n-} from './types'\n+import { BindingMetadata, TemplateCompiler } from './types'\n import assetUrlsModule, {\n AssetURLOptions,\n Tr... | 2022-06-16T09:45:33 |
denoland/deno | fd73dffa16d136cc55948da7804e6ad35ab145ed | ac659a17c799c0e03530acd73524596f62f108fd | fix(ext/console): handle throwing Symbol.toStringTag getter gracefully (#32917)
## Summary
When `console.log` formats an object, it accesses `Symbol.toStringTag`
which may be a getter that throws. For example,
[quick-lru](https://www.npmjs.com/package/quick-lru)'s
`Symbol.toStringTag` getter calls `JSON.stringify(thi... | [
{
"path": "ext/web/01_console.js",
"patch": "@@ -714,7 +714,11 @@ function formatRaw(ctx, value, recurseTimes, typedArray, proxyDetails) {\n \n let tag;\n if (!proxyDetails) {\n- tag = value[SymbolToStringTag];\n+ try {\n+ tag = value[SymbolToStringTag];\n+ } catch {\n+ // Symbol.toSt... | 2026-03-23T07:07:10 |
golang/go | fb592a174727bd693f0e27d130aa60362ed5c6f0 | 3ebdf12d7c193e6d59a9908745a9664ce7944fd6 | net/url: reattach package doc comment
Fixes #78326
Change-Id: I70a411c33820f6498bec5f4e4a4ec7666a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758880
Auto-Submit: Nicholas Husin <nsh@golang.org>
Reviewed-by: Nicholas Husin <husin@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -2,14 +2,13 @@\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:generate go run gen_encoding_table.go\n+\n // Package url parses URLs and implements query escaping.\n //\n // See RFC 3986. This ... | 2026-03-24T20:31:16 |
denoland/deno | ac659a17c799c0e03530acd73524596f62f108fd | eb108d2b4d722138700f33f8a6840a51281ed340 | fix(ext/node): do not throw error for `readline.createInterface` outside TTY (#32874)
Matches Node's behaviour by ignoring `terminal: true` when not inside a
TTY.
Fixes #32873.
---------
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> | [
{
"path": "ext/node/polyfills/_process/streams.mjs",
"patch": "@@ -346,7 +346,9 @@ export const initStdin = (warmup = false) => {\n });\n stdin._isRawMode = false;\n stdin.setRawMode = (enable) => {\n- io.stdin?.setRaw?.(enable);\n+ if (io.stdin?.isTerminal()) {\n+ io.stdin.setRaw(enable);\... | 2026-03-22T08:30:19 |
vuejs/vue | b3432ffa8f18134f9564da79ddd909c23d6a6ce8 | cdfd9f321e35981774785806bb1629a73ec58064 | chore: fix snapshot | [
{
"path": "packages/compiler-sfc/test/prefixIdentifiers.spec.ts",
"patch": "@@ -68,15 +68,15 @@ it('setup bindings', () => {\n }\n )\n \n- expect(result).toMatch(`_setup = _vm._setupProxy`)\n+ expect(result).toMatch(`_setup = _vm._self._setupProxy`)\n expect(result).toMatch(`_setup.count++`)\n e... | 2022-06-16T06:17:30 |
mrdoob/three.js | 8a3694c599f9fdfcd40fa025b2eb6bac3a55504d | 4bbae20d6759dd0bd160fede992dd5d82e0b8294 | TSL: use raw data for `DebugNode` callback (#32638) | [
{
"path": "src/nodes/utils/DebugNode.js",
"patch": "@@ -42,21 +42,21 @@ class DebugNode extends TempNode {\n \t\tconst callback = this.callback;\n \t\tconst snippet = this.node.build( builder );\n \n-\t\tconst title = '--- TSL debug - ' + builder.shaderStage + ' shader ---';\n-\t\tconst border = '-'.repeat(... | 2025-12-31T02:11:14 |
golang/go | 3ebdf12d7c193e6d59a9908745a9664ce7944fd6 | e20a1b603579fc36148530048c76de6938347019 | runtime: zero-extend Windows error code in syscall_syscalln
asmstdcall now returns the 32-bit Windows error code in the return
register. cgocall captures this as a signed int32. On 64-bit systems,
casting this directly to uintptr results in sign extension for error
codes with the high bit set (e.g., 0x80092004 become... | [
{
"path": "src/runtime/syscall_windows.go",
"patch": "@@ -429,5 +429,5 @@ func syscall_syscalln(fn, n uintptr, args ...uintptr) (r1, r2, err uintptr) {\n \t// but it copies the return values into the new M's\n \t// so we can read them from there.\n \tc = &getg().m.winsyscall\n-\treturn c.R1, c.R2, uintptr(e... | 2026-03-24T19:33:15 |
denoland/deno | eb108d2b4d722138700f33f8a6840a51281ed340 | fe10f95260be6547159522e0d1ac2a70570dd449 | chore: update deno_doc crate (#32896)
Major restructuring of the DocNode format (v2), addressing long-standing
design issues with how documentation nodes are modeled and serialized.
this also bumps the JSON schema version to 2.
The output now is a `Record<string, Document>` instead of `DocNode[]`.
For a complete view... | [
{
"path": "Cargo.lock",
"patch": "@@ -2254,9 +2254,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_doc\"\n-version = \"0.194.1\"\n+version = \"0.197.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"36eede374a5ecf0a6d83ecfc47d8878e35d7e3210de6e9ca18554402a5327114... | 2026-03-21T22:02:26 |
vuejs/vue | cdfd9f321e35981774785806bb1629a73ec58064 | 749b96d84e6551c5187694a93c5493702035a239 | fix: avoid warning when accessing _setupProxy | [
{
"path": "packages/compiler-sfc/src/prefixIdentifiers.ts",
"patch": "@@ -64,7 +64,7 @@ export function prefixIdentifiers(\n s.prependRight(\n node.start!,\n `var _vm=this,_c=_vm._self._c${\n- isScriptSetup ? `,_setup=_vm._setupProxy;` : `;`\n+ isS... | 2022-06-16T06:16:36 |
mrdoob/three.js | 4bbae20d6759dd0bd160fede992dd5d82e0b8294 | 47ad87b4162fcace69e616919b54b0c25538fc32 | Update rendering-on-demand.html
Fix typo. | [
{
"path": "manual/ko/rendering-on-demand.html",
"patch": "@@ -117,7 +117,7 @@ <h1>불필요한 렌더링 없애기</h1>\n </div>\n \n <p></p>\n-<p><a href=\"/docs/#examples/controls/OrbitControls\"><code class=\"notranslate\" translate=\"no\">OrbitControls</code></a>에는 관성(inertia) 옵션이 있습니다. <code class=\"notranslate\" translat... | 2025-12-30T14:39:40 |
golang/go | e20a1b603579fc36148530048c76de6938347019 | 3390ec59af33d3c9ab431ff88a245b710b7c9e40 | cmd/compile: handle string literals in FIPS mode consistently
There are different code paths for compiling a composite literal,
e.g. small vs. large, fully static vs. partially static. Following
CL 755600, we need to apply the condition for string literals in
FIPS mode consistently in all places.
Enhance the test to ... | [
{
"path": "src/cmd/compile/internal/walk/complit.go",
"patch": "@@ -85,9 +85,7 @@ const (\n func getdyn(n ir.Node, top bool) initGenType {\n \tswitch n.Op() {\n \tdefault:\n-\t\t// Handle constants in linker, except that linker cannot do\n-\t\t// the relocations necessary for string constants in FIPS packag... | 2026-03-18T01:59:52 |
vuejs/vue | bd8409bc9873943a4a8d3838ac945fdfff1f3a51 | aa2b1f4d93bdd257ae26a73994168709369aa6a0 | wip: fix component resolution check | [
{
"path": "packages/compiler-sfc/src/prefixIdentifiers.ts",
"patch": "@@ -39,6 +39,8 @@ export function prefixIdentifiers(\n plugins\n })\n \n+ const isScriptSetup = bindings && bindings.__isScriptSetup !== false\n+\n walkIdentifiers(\n ast,\n ident => {\n@@ -47,7 +49,7 @@ export function p... | 2022-06-15T13:38:05 |
mrdoob/three.js | 96dbfa62827c08976b256d5e0c68a71e4cce0352 | 5cde3c7ec5af65456dfc1c29d3e592be6051400f | Fix XR camera layers inheritance (#32626) | [
{
"path": "src/renderers/common/XRManager.js",
"patch": "@@ -1131,8 +1131,8 @@ class XRManager extends EventDispatcher {\n \n \t\t// inherit camera layers and enable eye layers (1 = left, 2 = right)\n \t\tcameraXR.layers.mask = camera.layers.mask | 0b110;\n-\t\tcameraL.layers.mask = cameraXR.layers.mask & 0... | 2025-12-29T15:02:44 |
denoland/deno | 8f17347a5d05ee27be9adef2349c56a88bd0f199 | bac58b43ffaf3917d42805df68119486d2047461 | fix: skip flaky test-process-threadCpuUsage-worker-threads on Windows (#32886)
Skip `parallel/test-process-threadCpuUsage-worker-threads.js` on Windows
CI where it is flaky.
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -1700,7 +1700,10 @@\n \"parallel/test-process-title-cli.js\": {},\n \"parallel/test-process-release.js\": {},\n \"parallel/test-process-threadCpuUsage-main-thread.js\": {},\n- \"parallel/test-process-threadCpuUsage-worker-threads.js\": ... | 2026-03-21T09:46:40 |
golang/go | 3390ec59af33d3c9ab431ff88a245b710b7c9e40 | 55600733988b0d3bb708be22b5cbecd8edd83380 | internal/abi, cmd/link: centralize type descriptor size calculation
The linker hardcoded the calculation for some types, which caused me
some annoyance in CL 711560 because I didn't know it needed to be
updated (and it took me a long time to find the hardcoded value).
Move this calculation over to the abi package, si... | [
{
"path": "src/cmd/compile/internal/rttype/rttype.go",
"patch": "@@ -88,6 +88,24 @@ func Init() {\n \tif got, want := int64(abi.ITabTypeOff(ptrSize)), ITab.OffsetOf(\"Type\"); got != want {\n \t\tbase.Fatalf(\"abi.ITabTypeOff() == %d, want %d\", got, want)\n \t}\n+\tfor _, test := range []struct {\n+\t\tkin... | 2026-02-27T18:10:14 |
vuejs/vue | d4787e53ef0958f4d2c9531c6c7f0c31fa0499f4 | 452aa9d29c848530d5d441652ef5a838312ac379 | test: test case for prefixIdentifiers w/ bindings | [
{
"path": "packages/compiler-sfc/test/prefixIdentifiers.spec.ts",
"patch": "@@ -1,6 +1,7 @@\n import { prefixIdentifiers } from '../src/prefixIdentifiers'\n import { compile } from 'web/entry-compiler'\n import { format } from 'prettier'\n+import { BindingTypes } from '../src/types'\n \n it('should work', (... | 2022-06-15T02:18:55 |
mrdoob/three.js | d8e70a4cd14b9b6a9b87cea4d0e8ed308ed0e04c | 62749d5c264b604e8b128db4f9b91f3b9c3db5a1 | Fixed typos in /examples/jsm folder. (#32631) | [
{
"path": "examples/jsm/animation/CCDIKSolver.js",
"patch": "@@ -50,7 +50,7 @@ class CCDIKSolver {\n \t\t/**\n \t\t * The IK objects.\n \t\t *\n-\t\t * @type {SkinnedMesh}\n+\t\t * @type {Array<CCDIKSolver~IK>}\n \t\t */\n \t\tthis.iks = iks;\n \n@@ -357,7 +357,7 @@ class CCDIKHelper extends Object3D {\n \t... | 2025-12-29T10:37:00 |
denoland/deno | 8b14d5afdce7ab928a8b2ae2ac9147d9d913ec25 | 38186cc4f5024d57a7eb9c4ba93b9062114dd8f0 | fix(audit): respect package.json overrides in vulnerability checks (#32878)
## Summary
Closes #32871
When `package.json` overrides force a transitive dependency to a patched
version, `deno audit` was still reporting it as vulnerable. For example:
```json
{
"dependencies": { "@vitest/ui": "^4.1.0" },
"overrides"... | [
{
"path": "cli/tools/pm/audit.rs",
"patch": "@@ -318,6 +318,49 @@ mod npm {\n \n let mut advisories = response.advisories.values().collect::<Vec<_>>();\n \n+ // Filter out advisories where no installed version falls within\n+ // the vulnerable range. This handles package.json overrides that\n+ ... | 2026-03-21T09:01:26 |
golang/go | 55600733988b0d3bb708be22b5cbecd8edd83380 | 3f057dcdbc86498e07a5744406fe92069221a92d | internal/runtime/maps: add GOEXPERIMENT=mapsplitgroup for KKKKVVVV slot order
Map groups are currently:
type group struct {
ctrl uint64
slots [8]slot
}
type slot struct {
key K
elem E
}
If the element type is struct{}, the slot will be padded so that the
address of the elem is unique rather than p... | [
{
"path": "src/cmd/compile/internal/reflectdata/map.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/src\"\n \t\"internal/abi\"\n+\t\"internal/buildcfg\"\n )\n \n // MapGroupType makes the map slot group type given the type of the map.\n@@ -26,14 +27,6 @@ func MapGrou... | 2025-09-10T05:22:17 |
mrdoob/three.js | d71c3b77f6fa86c128e07267711ac270ddcd10fa | 15cbc8c6f2b104835082cf08dadfdd1a72fcf5b0 | Fixed typos. (#32629) | [
{
"path": "src/animation/AnimationAction.js",
"patch": "@@ -548,7 +548,7 @@ class AnimationAction {\n \n \t}\n \n-\t// Interna\n+\t// Internal\n \n \t_update( time, deltaTime, timeDirection, accuIndex ) {\n ",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "src/ani... | 2025-12-29T09:23:27 |
vuejs/vue | 452aa9d29c848530d5d441652ef5a838312ac379 | 903d9b2eb67b3353f31eb7d36947d7a3462d25f3 | wip: handle script analyzed bindings when prefixing identifiers | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -1209,7 +1209,11 @@ export function compileScript(\n allBindings[key] = true\n }\n }\n- const returned = `{ ${Object.keys(allBindings).join(', ')} }`\n+ // __sfc marker indicates these bindings are compiled from <script setup... | 2022-06-15T02:07:42 |
golang/go | 3f057dcdbc86498e07a5744406fe92069221a92d | fe8947a521ba1a404f01882048340a4a18e7e61a | cmd/go: document that workspace use paths are not resolved through symlinks
The use directive in go.work files compares module directory paths
literally without resolving symbolic links. A use directive that
names a symlink to a directory is not interchangeable with one that
names the symlink's target.
Document this ... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1549,7 +1549,9 @@\n //\n // The use directive specifies a module to be included in the workspace's\n // set of main modules. The argument to the use directive is the directory\n-// containing the module's go.mod file.\n+// containing the module's go.mod file.... | 2026-03-23T20:48:42 |
denoland/deno | 38186cc4f5024d57a7eb9c4ba93b9062114dd8f0 | 49a9e1355f87028c8d648f9e58decd5fbd78c62c | fix(npm): create shims for all bin entries during global npm install (#32607)
Fixes #26133
When running `deno install -g npm:pyright`, only the first bin entry
(`pyright`) got a shim. The second entry (`pyright-langserver`) was
missing. This affects any npm package with multiple `bin` entries in
`package.json`.
### ... | [
{
"path": "cli/tools/installer/bin_name_resolver.rs",
"patch": "@@ -5,7 +5,6 @@ use std::path::PathBuf;\n use deno_core::error::AnyError;\n use deno_core::url::Url;\n use deno_npm::registry::NpmRegistryApi;\n-use deno_npm::resolution::NpmPackageVersionResolver;\n use deno_npm::resolution::NpmVersionResolver... | 2026-03-21T08:51:15 |
mrdoob/three.js | a254a384c35945040819599599622addae45b316 | e85cce9f4fca0af97409bde1fc9d96bc5e8d0e3c | Update KeyframeTrack.js
Fix typo. | [
{
"path": "src/animation/KeyframeTrack.js",
"patch": "@@ -10,7 +10,7 @@ import * as AnimationUtils from './AnimationUtils.js';\n import { warn, error } from '../utils.js';\n \n /**\n- * Represents s a timed sequence of keyframes, which are composed of lists of\n+ * Represents a timed sequence of keyframes, ... | 2025-12-28T10:36:03 |
vuejs/vue | cda5176e95de3e550803cba57292de69df2dfe2e | 2ddd25926eb3abb2f70fad3e4d81348f63e15e74 | build: fix compiler build | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -42,7 +42,7 @@ import { warnOnce } from './warn'\n import { isReservedTag } from 'web/util'\n import { dirRE } from 'compiler/parser'\n import { parseText } from 'compiler/parser/text-parser'\n-import { DEFAULT_FILENAME } from './parse'\n+... | 2022-06-14T15:43:57 |
denoland/deno | 49a9e1355f87028c8d648f9e58decd5fbd78c62c | 301534307c61f21bf0185c2dcd981e27cfea8708 | fix(ext/node): pass uid/gid to spawn and implement process.getgroups (#32772)
Two fixes for child_process uid/gid support:
1. `uid` and `gid` options were destructured but not passed to
`Deno.Command` in async `spawn()` (they were already passed in
`spawnSync`). Also converts `PermissionDenied` errors to `EPERM` and
... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -272,6 +272,7 @@ deno_core::extension!(deno_node,\n ops::os::op_node_os_user_info,\n ops::os::op_geteuid,\n ops::os::op_getegid,\n+ ops::os::op_getgroups,\n ops::os::op_cpus,\n ops::os::op_homedir,\n op_node_build_os,",
"additions": 1,... | 2026-03-20T17:03:18 |
golang/go | fe8947a521ba1a404f01882048340a4a18e7e61a | b2b1a0a79473916a9a29f589cc7504f4bcf2b73a | cmd/go/internal/doc: remove flag listing from usage
This makes the help for go doc more consistent with other go
subcommands.
Fixes #74139
Change-Id: Ia01bd85544d5ece84e6316141f29f24c6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758721
Reviewed-by: Michael Matloob <matloob@google.com>
LUCI-TryBot-R... | [
{
"path": "src/cmd/go/internal/doc/doc.go",
"patch": "@@ -179,8 +179,6 @@ func usage(flagSet *flag.FlagSet) {\n \tfmt.Fprintf(os.Stderr, \"\\tgo doc <pkg> <sym>[.<methodOrField>]\\n\")\n \tfmt.Fprintf(os.Stderr, \"For more information run\\n\")\n \tfmt.Fprintf(os.Stderr, \"\\tgo help doc\\n\\n\")\n-\tfmt.Fp... | 2026-03-24T16:46:28 |
mrdoob/three.js | e85cce9f4fca0af97409bde1fc9d96bc5e8d0e3c | 374b07c0cfdaecf2816912faecc8db464b7f6ab1 | LensflareMesh: Fix DPR usage. (#32625) | [
{
"path": "examples/jsm/objects/LensflareMesh.js",
"patch": "@@ -215,7 +215,7 @@ class LensflareMesh extends Mesh {\n \n \t\t\trenderer.getViewport( viewport );\n \n-\t\t\tviewport.multiplyScalar( window.devicePixelRatio );\n+\t\t\tviewport.multiplyScalar( renderer.getPixelRatio() ).floor();\n \n \t\t\tcons... | 2025-12-28T10:04:29 |
vuejs/vue | 53a5ac96387b57f50bd6587e77b371827a30ee4d | d6c0c2a9923ec0cfcfd3f202aca0050c8c6ce72b | chore: fix tests | [
{
"path": "package.json",
"patch": "@@ -87,6 +87,7 @@\n \"csstype\": \"^3.1.0\"\n },\n \"devDependencies\": {\n+ \"@babel/parser\": \"^7.18.4\",\n \"@microsoft/api-extractor\": \"^7.25.0\",\n \"@rollup/plugin-alias\": \"^3.1.9\",\n \"@rollup/plugin-commonjs\": \"^22.0.0\",\n@@ -109,10... | 2022-06-14T07:35:30 |
denoland/deno | 301534307c61f21bf0185c2dcd981e27cfea8708 | 63550f02b759b018f883a7ee7cb285c6d7cb64ed | fix(ext/node): sqlite prepare() options, defensive default, iterator invalidation (#32756)
Fixes 3 SQLite Node.js compat tests from #32706:
- **`prepare()` options**: Support `readBigInts`, `returnArrays`,
`allowBareNamedParameters`, and `allowUnknownNamedParameters` as second
argument to `DatabaseSync.prepare(sql, o... | [
{
"path": "ext/node_sqlite/database.rs",
"patch": "@@ -276,7 +276,7 @@ impl Default for DatabaseSyncOptions {\n return_arrays: false,\n allow_bare_named_params: true,\n allow_unknown_named_params: false,\n- is_defensive_mode: false,\n+ is_defensive_mode: true,\n timeout: 0,... | 2026-03-20T16:47:08 |
golang/go | b2b1a0a79473916a9a29f589cc7504f4bcf2b73a | 341b5e2c0261cc059b157f1c7a2a2c4d1f417f0d | net/http/internal/http2: use fake net for TestTransportBlockingRequestWrite
This test has been intermittently flaky. Exact cause isn't clear,
but switch it to use a fake network to eliminate local network
flakiness as a cause.
Fixes #78209
Fixes #78213
Fixes #78263
Change-Id: I481553107e8557fda0707069856bafcc6a6a696... | [
{
"path": "src/net/http/internal/http2/transport_test.go",
"patch": "@@ -4197,140 +4197,93 @@ func TestTransportBlockingRequestWrite(t *testing.T) {\n \tfiller := hex.EncodeToString([]byte(randString(2048)))\n \tfor _, test := range []struct {\n \t\tname string\n-\t\treq func(url string) (*http.Request, er... | 2026-03-13T21:30:17 |
mrdoob/three.js | d73e1dc41a84e528b5d6936d17fd63db04e92cea | ebd979215be08343830214c9e6f0c25e4ddcb599 | GLTFExporter: Fix skinIndex export for InterleavedBufferAttribute (#32607)
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -1852,12 +1852,12 @@ class GLTFWriter {\n \t\t\t\t! ( array instanceof Uint8Array ) ) {\n \n \t\t\t\tconsole.warn( 'GLTFExporter: Attribute \"skinIndex\" converted to type UNSIGNED_SHORT.' );\n-\t\t\t\tmodifiedAttribute = new BufferAttribute( ... | 2025-12-27T10:42:14 |
vuejs/vue | 4306cc67b9bfc464918acb446f5a6d1ce0156da1 | 5bee34c6e1a215ae693351aad8f77b58e07b1d4f | build: fix compiler-sfc build | [
{
"path": "package.json",
"patch": "@@ -30,7 +30,8 @@\n \"require\": \"./compiler-sfc/index.js\"\n },\n \"./dist/*\": \"./dist/*\",\n- \"./types/*\": \"./types/*\"\n+ \"./types/*\": \"./types/*\",\n+ \"./package.json\": \"./package.json\"\n },\n \"sideEffects\": false,\n \"scrip... | 2022-06-10T14:51:41 |
denoland/deno | 4a0e228cbc524722d8944dfab63f56873aa10b50 | b9589cb3e16765641f3705331afc3f74a9f0c4cd | fix(ext/node): don't fire upgrade event for h2c requests (#32866)
HTTP requests to a `node:http` server hang when:
1. The server has an `"upgrade"` listener (e.g., Vite for WebSocket HMR)
2. A browser/client sends an HTTP/2 cleartext upgrade (`Upgrade: h2c`)
The server was calling `upgradeHttpRaw()` and emitting the ... | [
{
"path": "ext/node/polyfills/http.ts",
"patch": "@@ -2342,7 +2342,14 @@ export class ServerImpl extends EventEmitter {\n request.headers.get(\"upgrade\");\n req[kRawHeaders] = request.headers;\n \n- if (req.upgrade && this.listenerCount(\"upgrade\") > 0) {\n+ // Don't fire the \"upg... | 2026-03-20T15:45:57 |
golang/go | 341b5e2c0261cc059b157f1c7a2a2c4d1f417f0d | abd44cbe615ecea5e4bd8e6d1bb7be63d1f4b2d6 | cmd/link: raise minimum windows version to 10
The minimum Windows version has been 10 for a few releases, but the PE
headers weren't updated. Windows sometimes can use these in determining
what kind of subsystem compatibility hacks to apply, which of course we
don't want now, since Go targets Windows 10. This also cau... | [
{
"path": "src/cmd/link/internal/ld/pe.go",
"patch": "@@ -151,9 +151,139 @@ const (\n \tIMAGE_REL_BASED_DIR64 = 10\n )\n \n+// IMAGE_LOAD_CONFIG_DIRECTORY64.GuardFlags and IMAGE_LOAD_CONFIG_DIRECTORY32.GuardFlags\n+// values. These can be combined together.\n const (\n-\tPeMinimumTargetMajorVersion = 6\n-... | 2026-03-18T23:28:04 |
mrdoob/three.js | ebd979215be08343830214c9e6f0c25e4ddcb599 | 0f580fc019cecacb405810159873bd142d7ac0e7 | WebGLRenderer: bugfix when reading pixel in MRT (#32506) | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -2988,6 +2988,10 @@ class WebGLRenderer {\n \t\t\t\t\tconst textureFormat = texture.format;\n \t\t\t\t\tconst textureType = texture.type;\n \n+\t\t\t\t\t// when using MRT, select the correct color buffer for the subsequent read command\n+\n+\t\t\t\t\t... | 2025-12-27T10:18:51 |
vuejs/vue | c43e64277f72d5e1b23ac483528cf78b02110e18 | 9ce105aa10be6288e6ce9d26c1a5a6d16fee733b | build: fix build script alias | [
{
"path": "scripts/alias.js",
"patch": "@@ -9,5 +9,5 @@ module.exports = {\n shared: resolve('src/shared'),\n web: resolve('src/platforms/web'),\n server: resolve('packages/server-renderer/src'),\n- sfc: resolve('src/sfc')\n+ sfc: resolve('packages/compiler-sfc/src')\n }",
"additions": 1,
"d... | 2022-06-06T07:34:55 |
denoland/deno | b9589cb3e16765641f3705331afc3f74a9f0c4cd | 301f6d1a9b956c61d9f9fc2360b6e6ed86449645 | fix(ext/node): update process.versions.napi to 9 (#32870)
Closes #30091
`process.versions.napi` was hardcoded to `"8"` but the actual NAPI
implementation (`ext/napi/js_native_api.rs`) defines `NAPI_VERSION: u32
= 9`. This mismatch caused `node-pre-gyp` and similar tools to reject
NAPI v9 native modules (like `get-win... | [
{
"path": "ext/node/polyfills/_process/process.ts",
"patch": "@@ -191,7 +191,7 @@ export const versions = {\n ares: \"1.18.1\",\n modules: \"108\",\n nghttp2: \"1.47.0\",\n- napi: \"8\",\n+ napi: \"9\",\n llhttp: \"6.0.10\",\n openssl: \"3.0.7+quic\",\n cldr: \"41.0\",",
"additions": 1,
... | 2026-03-20T15:24:37 |
mrdoob/three.js | 0f580fc019cecacb405810159873bd142d7ac0e7 | 6644c517299036ae646ef93c7b62c57b5320a5f2 | VTKLoader: Fix ReDoS vulnerability. (#32622) | [
{
"path": "examples/jsm/loaders/VTKLoader.js",
"patch": "@@ -112,8 +112,20 @@ class VTKLoader extends Loader {\n \t\t\t// pattern for detecting the end of a number sequence\n \t\t\tconst patWord = /^[^\\d.\\s-]+/;\n \n-\t\t\t// pattern for reading vertices, 3 floats or integers\n-\t\t\tconst pat3Floats = /(... | 2025-12-27T06:00:52 |
golang/go | abd44cbe615ecea5e4bd8e6d1bb7be63d1f4b2d6 | c7e151d8c46dbf45b580a73ccb5ba5dd5b5cddef | net/http: add a test for starting a server with no HTTP/2 and no TLS config
Test for the fix in CL 758560.
Change-Id: I34edf9f14dc5d6a569f20aa3d55d9d136a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758661
Auto-Submit: Damien Neil <dneil@google.com>
Reviewed-by: Nicholas Husin <nsh@golang.org>
LUCI-Tr... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -18,7 +18,6 @@ import (\n \t\"encoding/json\"\n \t\"errors\"\n \t\"fmt\"\n-\t\"internal/synctest\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"log\"\n@@ -44,6 +43,7 @@ import (\n \t\"sync/atomic\"\n \t\"syscall\"\n \t\"testing\"\n+\t\"testing/synctest\"\n \... | 2026-03-24T15:18:27 |
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.