repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | 9926e1124e5dd6397f16f36456aedbee101bc6f3 | 2c4fd7b2cd08234fe13c0e9de8d42dba33086a81 | cmd/go: use local state object in `bug.runBug`
This commit modifies `bug.runBug` to construct a new modload.State
object using the new constructor instead of the current global
`modload.LoaderState` variable.
This commit is part of the overall effort to eliminate global
modloader state.
[git-generate]
cd src/cmd/go/... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -42,16 +42,17 @@ func init() {\n }\n \n func runBug(ctx context.Context, cmd *base.Command, args []string) {\n+\tmoduleLoaderState := modload.NewState()\n \tif len(args) > 0 {\n \t\tbase.Fatalf(\"go: bug takes no arguments\")\n \t}\n-\twork.BuildInit(... | 2025-10-08T23:56:51 |
denoland/deno | e2b107867ea40395ff7999064fd9494eb09e2153 | 80e54a81e73038bc984acdbfe963084a801a2206 | fix(napi): Fix misused `napi_callback_info` in `CallbackInfo` (#30983) | [
{
"path": "ext/napi/function.rs",
"patch": "@@ -6,7 +6,7 @@ use crate::*;\n pub struct CallbackInfo {\n pub env: *mut Env,\n pub cb: napi_callback,\n- pub cb_info: napi_callback_info,\n+ pub data: *mut c_void,\n pub args: *const c_void,\n }\n \n@@ -15,12 +15,12 @@ impl CallbackInfo {\n pub fn new_... | 2025-10-14T07:57:49 |
vuejs/vue | 367f781f44cb77bb58e4acd2f52a9e27e280f67a | 2f751b5d9908968549e3aa05d546d3b5055110b1 | ssr: fix json bundle path (fix #5037) | [
{
"path": "src/server/create-bundle-renderer.js",
"patch": "@@ -43,9 +43,10 @@ export function createBundleRendererCreator (createRenderer: () => Renderer) {\n path.isAbsolute(bundle)\n ) {\n if (fs.existsSync(bundle)) {\n+ const isJSON = /\\.json$/.test(bundle)\n basedir = ba... | 2017-02-28T15:26:02 |
mrdoob/three.js | 9c548230ad8ec869d44e3c0d14deec010b152734 | 44e18c8f32ae3e53ee28231f8c0da45489593f09 | Update OutlineNode.js
Fix white space. | [
{
"path": "examples/jsm/tsl/display/OutlineNode.js",
"patch": "@@ -354,7 +354,7 @@ class OutlineNode extends TempNode {\n \t\t\t\tweightSum.addAssign( w.mul( 2 ) );\n \t\t\t\tuvOffset.addAssign( delta );\n \n-\t\t\t} );\n+\t\t\t} );\n \n \t\t\treturn diffuseSum.div( weightSum );\n ",
"additions": 1,
... | 2024-10-21T15:12:45 |
golang/go | ccf4192a313ec46380c70369537085eacaa17fa8 | f5403f15f021521ed82d91e8f28a6865d9aeab34 | cmd/go: make ImportMissingError work with local state
This change adds fields to the type `ImportMissingError` so
that the `Error()` method can be called without accessing the global
`LoaderState` variable.
This commit is part of the overall effort to eliminate global
modloader state.
Change-Id: Ib313faeb27ae44e9ac6... | [
{
"path": "src/cmd/go/internal/modload/import.go",
"patch": "@@ -29,10 +29,14 @@ import (\n )\n \n type ImportMissingError struct {\n-\tPath string\n-\tModule module.Version\n-\tQueryErr error\n-\n+\tPath string\n+\tModule module.Version\n+\tQueryErr error\n+\tmodContaini... | 2025-10-03T04:50:03 |
denoland/deno | 80e54a81e73038bc984acdbfe963084a801a2206 | 24e63b760707b60e02be3767ff2f605f4bc375a4 | fix(ext/node): checking `Symbol` in `env` should not ask for permission (#30965)
Discovered on #30905, though not directly addressing the main issue
Given this code:
```ts
console.log(globalThis.process.env)
```
Deno 2.5.4:
```bash
➜ deno index.ts
✅ Granted env access to "Symbol(Deno.customInspect)".
✅ Granted env... | [
{
"path": "ext/node/polyfills/_process/process.ts",
"patch": "@@ -15,13 +15,19 @@ const {\n Proxy,\n ObjectPrototype,\n ObjectPrototypeIsPrototypeOf,\n+ ReflectDefineProperty,\n+ ReflectHas,\n TypeErrorPrototype,\n } = primordials;\n-const { build } = core;\n+const { build, createLazyLoader } = co... | 2025-10-14T06:25:35 |
mrdoob/three.js | 44e18c8f32ae3e53ee28231f8c0da45489593f09 | ad0dbfe70c205af28a71542b735d553dc58f3e01 | RectAreaLightTextureLib: Fix DataTexture usage (#29717)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "examples/jsm/lights/RectAreaLightTexturesLib.js",
"patch": "@@ -71,7 +71,7 @@ class RectAreaLightTexturesLib {\n \t\tLTC_HALF_2.needsUpdate = true;\n \n \t\tthis.LTC_HALF_1 = LTC_HALF_1;\n-\t\tthis.LTC_HALF_1 = LTC_HALF_2;\n+\t\tthis.LTC_HALF_2 = LTC_HALF_2;\n \n \t\tthis.LTC_FLOAT_1 = LTC_FLOAT_... | 2024-10-21T14:35:44 |
vuejs/vue | 7963b3d32c888326ee19c06ea1c3b70bec28c540 | 00648f00af8d2a94beea0cfb5689094cff6827b0 | Fix comment typo in normalize-children.js (#5014) | [
{
"path": "src/core/vdom/helpers/normalize-children.js",
"patch": "@@ -24,7 +24,7 @@ export function simpleNormalizeChildren (children: any) {\n return children\n }\n \n-// 2. When the children contains constrcuts that always generated nested Arrays,\n+// 2. When the children contains constructs that alwa... | 2017-02-26T20:30:25 |
denoland/deno | 878343e3c89a5361ea07d269be22705bbeaf33c9 | 710418c097b48e17d15a596ef8ddc1633ba674a2 | ci: fix release script to format semver (#30962) | [
{
"path": "tools/release/00_start_release.ts",
"patch": "@@ -18,10 +18,10 @@ if (Deno.args.some((a) => a === \"--dry-run\")) {\n } else {\n const octoKit = createOctoKit();\n const result = await octoKit.request(\"POST /gists\", {\n- description: `Deno CLI v${nextVersion} release checklist`,\n+ de... | 2025-10-13T09:50:40 |
mrdoob/three.js | 8f4990fc2fa653ee65082f57630d46c62552e391 | 48e6e2ee4e769013b911a079a433aecc2686d5b2 | Docs: Fix typos (#29716)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "docs/api/en/core/Object3D.html",
"patch": "@@ -275,8 +275,8 @@ <h3>[property:Boolean DEFAULT_MATRIX_AUTO_UPDATE]</h3>\n \n \t\t<h3>[property:Boolean DEFAULT_MATRIX_WORLD_AUTO_UPDATE]</h3>\n \t\t<p>\n-\t\t\tThe default setting for [page:.matrixWorldAutoUpdate\n-\t\t\tmatrixWorldAutoUpdate] for new... | 2024-10-21T13:19:16 |
denoland/deno | 710418c097b48e17d15a596ef8ddc1633ba674a2 | fd3ae4a1f141d01a39957af090e252318c77243a | fix: Deno.serve correctly passes tcpBacklog option (#30748)
Typo made in https://github.com/denoland/deno/pull/30541 | [
{
"path": "ext/http/00_serve.ts",
"patch": "@@ -893,7 +893,7 @@ function serveInner(options, handler) {\n port: options.port ?? 8000,\n reusePort: options.reusePort ?? false,\n loadBalanced: options[kLoadBalanced] ?? false,\n- backlog: options.backlog,\n+ tcpBacklog: options.tcpBacklog,\n ... | 2025-10-13T09:45:46 |
mrdoob/three.js | cb29f6f17ee47ca6d5741b309150317716cbfc70 | 84183ce1a0419e85faf46c56121694fe32979776 | TSL: Support defined color spaces in ColorSpaceNode (#29694)
* TSL: Support defined color spaces in ColorSpaceNode
* TSL: Add .convertColorNode()
* fix circular dependency
* remove chaining method
--------- | [
{
"path": "src/math/ColorManagement.js",
"patch": "@@ -124,7 +124,6 @@ export const ColorManagement = {\n \n };\n \n-\n export function SRGBToLinear( c ) {\n \n \treturn ( c < 0.04045 ) ? c * 0.0773993808 : Math.pow( c * 0.9478672986 + 0.0521327014, 2.4 );",
"additions": 0,
"deletions": 1,
"lang... | 2024-10-20T23:40:32 |
denoland/deno | fd3ae4a1f141d01a39957af090e252318c77243a | 03a5e4531b1e68574b139bf21cb55afb0f1fc8ce | fix(docs): Deno.args example doesn't work (#30969) | [
{
"path": "cli/tsc/dts/lib.deno.ns.d.ts",
"patch": "@@ -4511,13 +4511,13 @@ declare namespace Deno {\n * Give the following command line invocation of Deno:\n *\n * ```sh\n- * deno run --allow-read https://examples.deno.land/command-line-arguments.ts Sushi\n+ * deno eval \"console.log(Deno.args... | 2025-10-13T09:42:05 |
vuejs/vue | cf7b90fbf7bb427da554cfec61a8310ca666a21f | 10e724fa78b54288709c0281ad558c4c2cae4fb3 | fix flow | [
{
"path": "src/platforms/web/runtime/modules/transition.js",
"patch": "@@ -4,6 +4,7 @@ import { once, isObject, toNumber } from 'shared/util'\n import { inBrowser, isIE9, warn } from 'core/util/index'\n import { mergeVNodeHook } from 'core/vdom/helpers/index'\n import { activeInstance } from 'core/instance/... | 2017-02-26T00:13:57 |
golang/go | f5403f15f021521ed82d91e8f28a6865d9aeab34 | a26f860fa4fee16f77e0ed13eb8286168b3bf097 | debug/pe: check for zdebug_gdb_scripts section in testDWARF
The debug_gdb_scripts sectino may or may not be compressed. Check
for both.
For #76022.
Change-Id: I7541e0aa2b90f6b3b694e02d3dfa99f9019a9e5a
Reviewed-on: https://go-review.googlesource.com/c/go/+/714461
Reviewed-by: David Chase <drchase@google.com>
LUCI-Try... | [
{
"path": "src/debug/pe/file_test.go",
"patch": "@@ -413,7 +413,7 @@ func testDWARF(t *testing.T, linktype int) {\n \n \tvar foundDebugGDBScriptsSection bool\n \tfor _, sect := range f.Sections {\n-\t\tif sect.Name == \".debug_gdb_scripts\" {\n+\t\tif sect.Name == \".debug_gdb_scripts\" || sect.Name == \".z... | 2025-10-24T20:27:15 |
mrdoob/three.js | cde4019a4841ccaac9adae2c5da3c1647c1b7305 | 863b873b8019c530dd188592a4d9f5a7eae07ada | Update PostProcessingUtils.js
Fix typo. | [
{
"path": "src/nodes/utils/PostProcessingUtils.js",
"patch": "@@ -37,7 +37,7 @@ export const getViewPosition = /*@__PURE__*/ Fn( ( [ screenPosition, depth, proj\n *\n * @param {vec3} viewPosition - The fragments position in view space.\n * @param {mat4} projectionMatrix - The camera's projection matrix.\n-*... | 2024-10-20T08:09:28 |
denoland/deno | 03a5e4531b1e68574b139bf21cb55afb0f1fc8ce | 302b6fc5a5d0ae3eb335208a160eeeda1c07a177 | fix(ext/node): `dns.resolve6` compatibility (#30974)
Closes #30936
The `compressIPv6` function is causing this issue. Maybe it was used in
the past to compress IPv6 address returned from the op function, though
I might be wrong about this.
Both `Deno.resolveDns` and the `resolve6` polyfill use `op_dns_resolve`
op fu... | [
{
"path": "ext/node/polyfills/internal_binding/cares_wrap.ts",
"patch": "@@ -182,23 +182,6 @@ function fqdnToHostname(fqdn: string): string {\n return fqdn.replace(/\\.$/, \"\");\n }\n \n-function compressIPv6(address: string): string {\n- const formatted = address.replace(/\\b(?:0+:){2,}/, \":\");\n- c... | 2025-10-13T09:20:08 |
vuejs/vue | 6468e15194b8305fa85e2bb63b064152a366b400 | e7a2510e631bd25f46b4e1125b83a9236a50ff1d | fix release script tag handling | [
{
"path": "build/release.sh",
"patch": "@@ -30,18 +30,18 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then\n cd packages/vue-template-compiler\n npm version $VERSION\n if [[ -z $RELEASE_TAG ]]; then\n- npm publish --tag $RELEASE_TAG\n- else\n npm publish\n+ else\n+ npm publish --tag $RELEASE_TAG\n fi\n... | 2017-02-24T23:26:08 |
golang/go | 747fe2efedfdc43f797b4fc1672e29ff7a01ec6a | 94f47fc03f4c916decb7f1387fcf56eae388f7cf | encoding/json/v2: fix typo in documentation about errors.AsType
CL 708495 mass migrated the stdlib to use errors.AsType.
It rewrote the documentation, but uses the non-pointer type
of SemanticError or SyntacticError, which is invalid since
the Error method is declared on the pointer receiver.
Also, call errors.AsType... | [
{
"path": "src/encoding/json/jsontext/state.go",
"patch": "@@ -24,7 +24,8 @@ import (\n // The name of a duplicate JSON object member can be extracted as:\n //\n //\terr := ...\n-//\tif serr, ok := errors.AsType[jsontext.SyntacticError](err); ok && serr.Err == jsontext.ErrDuplicateName {\n+//\tserr, ok := e... | 2025-10-24T17:55:48 |
mrdoob/three.js | 3102d6b289c81443ca4e60251c72ea4cf3b029c3 | 04ddcb9189eca17fa92143170498081ec23a5dbb | BufferGeometry: Check for existing attribute in `setFromPoints()`. (#29696)
* BufferGeometry: Check for existing attribute in `setFromPoints()`.
* BufferGeometry: Add warning to `setFromPoints()`.
* Update BufferGeometry.js
Fix typo.
* Docs: Improve `BufferGeometry.setFromPoints()`. | [
{
"path": "docs/api/en/core/BufferGeometry.html",
"patch": "@@ -335,7 +335,12 @@ <h3>[method:undefined setDrawRange] ( [param:Integer start], [param:Integer coun\n \t\t</p>\n \n \t\t<h3>[method:this setFromPoints] ( [param:Array points] )</h3>\n-\t\t<p>Sets the attributes for this BufferGeometry from an arr... | 2024-10-20T08:01:49 |
vuejs/vue | abfb4589a826936ae1a4422cc3db50805ddee831 | 5d12d52710f5ec71426cfe707ebfed3808a280a2 | fix weex tests | [
{
"path": "src/entries/weex-compiler.js",
"patch": "@@ -1,30 +1,3 @@\n /* @flow */\n \n-import { extend } from 'shared/util'\n-import { compile as baseCompile, baseOptions } from 'weex/compiler/index'\n-import { detectErrors } from 'compiler/error-detector'\n-\n-export function compile (\n- template: strin... | 2017-02-24T22:49:17 |
mrdoob/three.js | 19db40bd6fcaeb6de8b9dd73aa1ed38ddfd1b78b | 8cba4e878193bf7db01029405f8ce18be93d5715 | WebGLRenderer: Support render target textures in `copyTextureToTexture()`. (#29662)
* WebGLRenderer: Support render target textures in copyTextureToTexture().
* WebGLRenderer: Update `copyTextureToTexture3D()` and docs.
* WebGLRenderer: Attempt to fix `copyTextureToTexture3D()`. | [
{
"path": "docs/api/en/renderers/WebGLRenderer.html",
"patch": "@@ -383,20 +383,18 @@ <h3>\n \t\t\t[method:undefined copyTextureToTexture]( [param:Texture srcTexture], [param:Texture dstTexture], [param:Box2 srcRegion], [param:Vector2 dstPosition], [param:Number level] )\n \t\t</h3>\n \t\t<p>\n-\t\t\tCopies... | 2024-10-19T09:54:55 |
golang/go | cf7c1a4cbb917b6c5d80d1d9443a40cb7720db75 | 2b8eded4f4fd3d421d1fb9af68c774142abcf208 | [dev.simd] cmd/compile, simd: add SHA features
This CL also fixed some bugs left in CL 712181.
Change-Id: I9cb6cd9fbaef307f352809bf21b8fec3eb62721a
Reviewed-on: https://go-review.googlesource.com/c/go/+/712361
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1955,6 +1955,18 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPTERNLOGQ512load:\n \t\tp = simdV31loadResultInArg0Imm8(s, v)\n \n+\tcase ssa.OpAMD64SHA1MSG1128,\n+\t\tssa.OpAMD64SHA1MSG2128,\n+\t\tssa.OpAMD... | 2025-10-16T16:07:32 |
vuejs/vue | 7d3309deed60fc86568a6e2e09f0ccdb7dc5ceea | d304eee296990994b0491b0abfde2e1c4bf2ec3a | fix transition appear class fallback (fix #4985) | [
{
"path": "src/platforms/web/runtime/modules/transition.js",
"patch": "@@ -68,9 +68,9 @@ export function enter (vnode: VNodeWithData, toggleDisplay: ?() => void) {\n return\n }\n \n- const startClass = isAppear ? appearClass : enterClass\n- const activeClass = isAppear ? appearActiveClass : enterAct... | 2017-02-24T20:36:16 |
mrdoob/three.js | 8cba4e878193bf7db01029405f8ce18be93d5715 | 6e161d5d71dfa1b404356018a0af8442fd976caa | WebGLRenderer: Always generate mipmaps when "generateMipmaps" is true. (#29677)
* Always generate mipmaps when "generateMipmaps" is true.
* Update HTML examples
* More examples
* Update loaders
* Fix GLTF loader
* Update WebGPURenderer
* Remove unused constants
* Update bindings file to remove unn... | [
{
"path": "examples/jsm/interactive/HTMLMesh.js",
"patch": "@@ -62,6 +62,7 @@ class HTMLTexture extends CanvasTexture {\n \t\tthis.colorSpace = SRGBColorSpace;\n \t\tthis.minFilter = LinearFilter;\n \t\tthis.magFilter = LinearFilter;\n+\t\tthis.generateMipmaps = false;\n \n \t\t// Create an observer on the ... | 2024-10-19T09:50:21 |
golang/go | 2b8eded4f4fd3d421d1fb9af68c774142abcf208 | c75965b666edf8399fc0c56ba0b94c2a4f5e7070 | [dev.simd] simd/_gen: parse SHA features from XED
To parse SHA feature instructions from XED, this CL added some utility
to decode fixed reg operands.
SHA512 parsing will be in next CL as we don't have SHA512 cpu features
in src/internal/cpu/cpu.go yet.
Change-Id: Id14cced57eab2ca9e75693a201f4ce7c04981587
Reviewed-o... | [
{
"path": "src/simd/_gen/simdgen/xed.go",
"patch": "@@ -22,9 +22,10 @@ import (\n )\n \n const (\n-\tNOT_REG_CLASS = 0 // not a register\n-\tVREG_CLASS = 1 // classify as a vector register; see\n-\tGREG_CLASS = 2 // classify as a general register\n+\tNOT_REG_CLASS = iota // not a register\n+\tVREG_CLA... | 2025-10-15T19:17:35 |
mrdoob/three.js | 6e161d5d71dfa1b404356018a0af8442fd976caa | afd51058a7814c8959e465e22834f05fd2febeab | BatchedMesh: Batched cleanup 2 (#29695)
* Variable renaming, remove global unnecessary variables, add member variables
* drawInfo -> instanceInfo
* Don't initialize the geometry when resizing if it has not been initialized yet
* Fix copy-paste error | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -78,10 +78,7 @@ class MultiDrawRenderList {\n }\n \n const _matrix = /*@__PURE__*/ new Matrix4();\n-const _invMatrixWorld = /*@__PURE__*/ new Matrix4();\n-const _identityMatrix = /*@__PURE__*/ new Matrix4();\n const _whiteColor = /*@__PURE__*/ new Color( ... | 2024-10-19T08:51:37 |
vuejs/vue | d304eee296990994b0491b0abfde2e1c4bf2ec3a | 661d880075f6e5280884a91fd9ac949064cc10d5 | fix weex tests | [
{
"path": "test/weex/compiler/v-model.spec.js",
"patch": "@@ -14,7 +14,7 @@ describe('compile v-model', () => {\n it('should compile other component with whole $event as the value', () => {\n const { render, staticRenderFns, errors } = compile(`<div><foo v-model=\"x\" /></div>`)\n expect(render).n... | 2017-02-24T17:26:21 |
golang/go | e6cff690517e66f610bf8787a442a47d92fc14c7 | f5f69a3de9a3e0b8d4e211f155853a29cd400e92 | crypto/x509: move constraint checking after chain building
The standard approach to constraint checking involves checking the
constraints during chain building. This is typically done as most chain
building algorithms want to find a single chain. We don't do this, and
instead build every valid chain we can find. Becau... | [
{
"path": "src/crypto/x509/verify.go",
"patch": "@@ -636,107 +636,8 @@ func (c *Certificate) isValid(certType int, currentChain []*Certificate, opts *V\n \t\t}\n \t}\n \n-\tmaxConstraintComparisons := opts.MaxConstraintComparisions\n-\tif maxConstraintComparisons == 0 {\n-\t\tmaxConstraintComparisons = 2500... | 2025-10-20T18:04:38 |
denoland/deno | 302b6fc5a5d0ae3eb335208a160eeeda1c07a177 | cce15c39b8e5c22694a4d76e0dc355efa32e0dd3 | fix(ext/web): fix promise chain leak of ReadableStream (#30871)
Closes #30298
This problem occurs because promise chain keep growing(like a stack
overflow caused by a recursive function) while the stream is running. To
solve this, used a loop. | [
{
"path": "ext/web/06_streams.js",
"patch": "@@ -787,18 +787,18 @@ class ResourceStreamResourceSink {\n async function readableStreamWriteChunkFn(reader, sink, chunk) {\n // Empty chunk. Re-read.\n if (chunk.length == 0) {\n- await readableStreamReadFn(reader, sink);\n- return;\n+ return true;\... | 2025-10-13T09:12:40 |
mrdoob/three.js | d74ecc563a1d32b3f7e6ccda7a3383082d12f431 | 076d8d609f0af30b95efa5e1edaebd058f025a9f | BatchedMesh: Consolidate internal geometry information (#29687)
* Fix add instance bug
* Add todos for PR, instance count
* Progress towards replacing some geometry info
* remove remaining references to _drawRanges, _bounds, and _reservedRanges
* Fix rendering
* Remove unnecessary global fields
* Cl... | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -40,7 +40,7 @@ class MultiDrawRenderList {\n \n \t}\n \n-\tpush( drawRange, z, index ) {\n+\tpush( start, count, z, index ) {\n \n \t\tconst pool = this.pool;\n \t\tconst list = this.list;\n@@ -61,8 +61,8 @@ class MultiDrawRenderList {\n \t\tlist.push( it... | 2024-10-18T12:38:46 |
vuejs/vue | 661d880075f6e5280884a91fd9ac949064cc10d5 | 394679fc70343a4f693317e376df39a8216776e5 | fix component v-model with "value" binding expression (fix #5002) | [
{
"path": "src/compiler/directives/model.js",
"patch": "@@ -10,17 +10,22 @@ export function genComponentModel (\n ): ?boolean {\n const { number, trim } = modifiers || {}\n \n- let valueExpression = 'value'\n+ const baseValueExpression = '$$v'\n+ let valueExpression = baseValueExpression\n if (trim) ... | 2017-02-24T17:17:59 |
golang/go | c18fa69e528f1679cd9b4c1c04a95f048c68000e | 296ecc918d6688b5eeb9abe32d919b0aaa76d798 | cmd/go: make ErrNoModRoot work with local state
This change reworks the sentinel error value ErrNoModRoot and the type
noMainModulesError so that we can determine the appropriate error
message to display based on the loader state without depending on the
state directly.
This commit is part of the overall effort to el... | [
{
"path": "src/cmd/go/internal/modget/query.go",
"patch": "@@ -185,7 +185,7 @@ func (q *query) validate(loaderstate *modload.State) error {\n \tif q.pattern == \"all\" {\n \t\t// If there is no main module, \"all\" is not meaningful.\n \t\tif !modload.HasModRoot(loaderstate) {\n-\t\t\treturn fmt.Errorf(`can... | 2025-10-03T04:31:26 |
mrdoob/three.js | 076d8d609f0af30b95efa5e1edaebd058f025a9f | 8104618a31e9fa37cbe7a483fa3b38318bf63220 | WebGPURenderer: Fix pipeline cache key (#29685) | [
{
"path": "src/renderers/webgpu/WebGPUBackend.js",
"patch": "@@ -1090,6 +1090,7 @@ class WebGPUBackend extends Backend {\n \t\t\tutils.getSampleCountRenderContext( renderContext ),\n \t\t\tutils.getCurrentColorSpace( renderContext ), utils.getCurrentColorFormat( renderContext ), utils.getCurrentDepthStencil... | 2024-10-18T02:16:46 |
denoland/deno | cce15c39b8e5c22694a4d76e0dc355efa32e0dd3 | 15ef715f20cb0fc204d602029d04ce28ecae5988 | fix(ext/node): `path.matchesGlob` compatibility (#30976) | [
{
"path": "ext/node/polyfills/_fs/_fs_glob.ts",
"patch": "@@ -926,12 +926,15 @@ export class Glob {\n \n /**\n * Check if a path matches a glob pattern\n- * @param {string} path the path to check\n- * @param {string} pattern the glob pattern to match\n- * @param {boolean} windows whether the path is on a W... | 2025-10-11T19:09:27 |
vuejs/vue | 394679fc70343a4f693317e376df39a8216776e5 | bc034d33a43b56f9e6275cef8330644e4d1ed1ab | ensure errors Array is always present in compiler output | [
{
"path": "src/platforms/web/compiler/index.js",
"patch": "@@ -58,6 +58,8 @@ export function compile (\n })\n if (process.env.NODE_ENV !== 'production') {\n compiled.errors = errors.concat(detectErrors(compiled.ast))\n+ } else {\n+ compiled.errors = errors\n }\n return compiled\n }",
"ad... | 2017-02-24T16:14:36 |
golang/go | c445a61e5256914510f201d5bda5e526249217d6 | 6ac40051d3eee124e8c2d2ad93c518034944a1d4 | cmd/go: add loaderstate as field on `QueryMatchesMainModulesError`
This change modifies the type `QueryMatchesMainModulesError` to have
an additional field to store the current module loader state. The
field is used to break the dependency on the global
`modload.LoaderState` variable.
This commit is part of the over... | [
{
"path": "src/cmd/go/internal/modget/get.go",
"patch": "@@ -683,7 +683,7 @@ func (r *resolver) queryPattern(loaderstate *modload.State, ctx context.Context,\n \n // checkAllowedOr is like modload.CheckAllowed, but it always allows the requested\n // and current versions (even if they are retracted or other... | 2025-10-02T20:56:19 |
mrdoob/three.js | cef0049107d05f987406e25d7c9981f190427ea7 | 29c41b6d382739b1d572013bee77daa85ae39a61 | GLTFExporter: Add support for WebGPURenderer (#29509)
* GLTFExporter: Add .setTextureUtils
* clean up
* Update misc_exporter_gltf.html
Fix import.
* fix missing await
* clean up
* GLTFExporter: Convert uncompatible int32 and uint32 attributes
---------
Co-authored-by: Michael Herzog <michael.he... | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -26,8 +26,6 @@ import {\n \tQuaternion,\n \tREVISION\n } from 'three';\n-import { decompress } from './../utils/WebGLTextureUtils.js';\n-\n \n /**\n * The KHR_mesh_quantization extension allows these extra attribute component types\n@@ -68,6 ... | 2024-10-17T09:31:58 |
denoland/deno | 15ef715f20cb0fc204d602029d04ce28ecae5988 | 6fbce91e40cc07fc6da74068e5cc56fdd40f7b4c | fix(process): case insenstive check for disallowing .bat and .cmd (#30967) | [
{
"path": "ext/process/lib.rs",
"patch": "@@ -752,20 +752,25 @@ fn compute_run_cmd_and_check_permissions(\n command: arg_cmd.to_string(),\n error: Box::new(e),\n })?;\n+ // Undocumented feature of CreateProcess API allows spawning batch files directly\n+ // without proper argument escaping... | 2025-10-10T11:43:26 |
vuejs/vue | 4cf49828c0274262f111e23056332d3a970b28d9 | 2a5fb41d1cd7445b6aacd2e888df1b397b1899dd | properly handle cosntructor options modification before global mixin application (fix #4976) | [
{
"path": "flow/component.js",
"patch": "@@ -14,6 +14,7 @@ declare interface Component {\n static extend: (options: Object) => Function;\n static superOptions: Object;\n static extendOptions: Object;\n+ static sealedOptions: Object;\n static super: Class<Component>;\n // assets\n static directi... | 2017-02-23T23:11:18 |
mrdoob/three.js | ac5804dd38b3bb4c43fec39c568658a754f00848 | aee03e7623151f9ad0e53bb324842b7dfbe11d30 | WebGPURenderer: Add backend information to `data-engine` field. (#29670)
* feat: add engine field to easier debug if running on webgl or webgpu
* Revert "feat: add engine field to easier debug if running on webgl or webgpu"
This reverts commit 95e506d50dcb72b3714f8ecba17918a8e713f38b.
* feat: add backend info... | [
{
"path": "src/renderers/common/Backend.js",
"patch": "@@ -6,7 +6,7 @@ import Color4 from './Color4.js';\n import { Vector2 } from '../../math/Vector2.js';\n import { Vector4 } from '../../math/Vector4.js';\n import { createCanvasElement } from '../../utils.js';\n-import { REVISION } from '../../constants.j... | 2024-10-16T09:57:13 |
golang/go | 6a5a45252848b1bac795fc5c3e29680350462f81 | dfac972233873c13e449689ce16aa1b9707dd20e | cmd/go: inject vendor dir into builder struct
This change adds a new field to the Builder struct to store a function
to retrieve the current vendor directory. This allows us to delay the
determination of the vendor directory until later, which is currently
necessary to successful interaction with the module loader st... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -106,7 +106,7 @@ func printEnvDetails(loaderstate *modload.State, w io.Writer) {\n func printGoEnv(loaderstate *modload.State, w io.Writer) {\n \tenv := envcmd.MkEnv()\n \tenv = append(env, envcmd.ExtraEnvVars(loaderstate)...)\n-\tenv = append(env, en... | 2025-10-10T01:01:05 |
vuejs/vue | 2a5fb41d1cd7445b6aacd2e888df1b397b1899dd | 01b09e6bcdbfadd45c014a6be4f9fca5e3896969 | re-implement mergeVNodeHook to prevent memory leak (fix #4990) | [
{
"path": "src/core/vdom/helpers/merge-hook.js",
"patch": "@@ -1,18 +1,34 @@\n /* @flow */\n \n-export function mergeVNodeHook (def: Object, hookKey: string, hook: Function, key: string) {\n- key = key + hookKey\n- const injectedHash: Object = def.__injected || (def.__injected = {})\n- if (!injectedHash[... | 2017-02-23T00:02:47 |
denoland/deno | aca48143b5293a6658af47f88ad08e5285d64c8d | 6e80d3167c72b7eca0499f23d84f59ae7aed5f53 | fix(cache): don't try to set up node_modules with node_modules_dir manual in deno cache (#30957)
Fixes #30949. Fixes #30938 | [
{
"path": "cli/factory.rs",
"patch": "@@ -1277,7 +1277,6 @@ fn new_workspace_factory_options(\n flags.subcommand,\n DenoSubcommand::Install(_)\n | DenoSubcommand::Uninstall(_)\n- | DenoSubcommand::Cache(_)\n | DenoSubcommand::Add(_)\n | DenoSubcommand::Remove(_)\n ... | 2025-10-09T08:46:54 |
mrdoob/three.js | aee03e7623151f9ad0e53bb324842b7dfbe11d30 | fdd528daa4ef9ce60e25fe1a7130ade8de449b05 | 3MFLoader: Add Preliminary Support for Loading Implicit Functions (#29667)
* Begin adding an implicit function node parser
* Begin adding TSL Node Generation
There has to be a better way...
* Remove references to TSL
* Remove vestigial testing code
* Fix deep scan issue...
* Update 3MFLoader.js
Cl... | [
{
"path": "examples/jsm/loaders/3MFLoader.js",
"patch": "@@ -375,6 +375,70 @@ class ThreeMFLoader extends Loader {\n \n \t\t}\n \n+\t\tfunction parseImplicitIONode( implicitIONode ) {\n+\n+\t\t\tconst portNodes = implicitIONode.children;\n+\t\t\tconst portArguments = {};\n+\t\t\tfor ( let i = 0; i < portNod... | 2024-10-16T08:11:00 |
golang/go | dfac972233873c13e449689ce16aa1b9707dd20e | 47bf8f073ed321e1a1c5aff19c4f4ad6362a1c53 | crypto/pbkdf2: add missing error return value in example
This function returns two values, one was missing in the example.
Change-Id: I738597f959011260f666c29b7d3ffad8e5cdc473
GitHub-Last-Rev: 5d99e04f7e1168fd0627e965508181bdb9d1ac25
GitHub-Pull-Request: golang/go#76032
Reviewed-on: https://go-review.googlesource.com... | [
{
"path": "src/crypto/pbkdf2/pbkdf2.go",
"patch": "@@ -27,7 +27,7 @@ import (\n // can get a derived key for e.g. AES-256 (which needs a 32-byte key) by\n // doing:\n //\n-//\tdk := pbkdf2.Key(sha1.New, \"some password\", salt, 4096, 32)\n+//\tdk, err := pbkdf2.Key(sha1.New, \"some password\", salt, 4096, 3... | 2025-10-23T20:27:03 |
vuejs/vue | 01b09e6bcdbfadd45c014a6be4f9fca5e3896969 | 73c5614740bee7c439735a7cf57841981a2b9ac2 | type for renderError option | [
{
"path": "types/options.d.ts",
"patch": "@@ -22,6 +22,7 @@ export interface ComponentOptions<V extends Vue> {\n el?: Element | String;\n template?: string;\n render?(this: V, createElement: CreateElement): VNode;\n+ renderError?: (h: () => VNode, err: Error) => VNode;\n staticRenderFns?: ((createE... | 2017-02-22T18:17:18 |
denoland/deno | 6e80d3167c72b7eca0499f23d84f59ae7aed5f53 | f20c8cdb892abaecfe1d6a61bbae3768e44db406 | fix(tunnel): unhide --tunnel flag (#30940) | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -4652,8 +4652,14 @@ fn tunnel_arg() -> Arg {\n .long(\"tunnel\")\n .alias(\"connected\")\n .short('t')\n- .hide(true)\n .num_args(0..=1)\n+ .help(cstr!(\n+ \"Execute tasks with a tunnel to Deno Deploy.\n+\n+ Create a secure connection... | 2025-10-08T19:33:49 |
mrdoob/three.js | fdd528daa4ef9ce60e25fe1a7130ade8de449b05 | b9144b9cfae5a985a23ea95ca1a77b0ae4fb366a | Batchmesh: Fix cases where calling optimize can result in inconsistent state (#29624)
* Fix skipping over active rather than inactive geometry
* Fix optimize
* Correct the shifting of geometry data
* Account for a case where the index bit size can be increased.
* typo fix
* Remove comments
* Add com... | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -97,7 +97,6 @@ const _batchIntersects = [];\n // @TODO: geometry.drawRange support?\n // @TODO: geometry.morphAttributes support?\n // @TODO: Support uniform parameter per geometry\n-// @TODO: Add an \"optimize\" function to pack geometry and remove data ... | 2024-10-16T08:05:07 |
golang/go | 47bf8f073ed321e1a1c5aff19c4f4ad6362a1c53 | 03bd43e8bb314f1bf1872a41f470bde72ac00b5c | unique: fix inconsistent panic prefix in canonmap cleanup path
Other panic messages in the file use the "unique.canonMap"
prefix, but this one used "internal/sync.HashTrieMap",
looks like it was copied from the "internal/sync" package.
Change-Id: Ic3e85154eb5a593d41c19013d5696afed2178b7e
Reviewed-on: https://go-revie... | [
{
"path": "src/unique/canonmap.go",
"patch": "@@ -232,7 +232,7 @@ func (m *canonMap[T]) cleanup(hash uintptr, wp weak.Pointer[T]) {\n \t\t\t// which requires the parents' lock.\n \t\t\tfor i.parent != nil && i.empty() {\n \t\t\t\tif hashShift == 8*goarch.PtrSize {\n-\t\t\t\t\tpanic(\"internal/sync.HashTrieM... | 2025-10-22T02:37:49 |
vuejs/vue | 8e854a9ed1b606890b53637f201432174bb7508a | 29f6902d1959c35eb38ef110bee6c13124903442 | only use click for v-model checkbox/radio in Chrome (fix #4796, #4896) | [
{
"path": "src/core/util/env.js",
"patch": "@@ -14,6 +14,7 @@ export const isIE9 = UA && UA.indexOf('msie 9.0') > 0\n export const isEdge = UA && UA.indexOf('edge/') > 0\n export const isAndroid = UA && UA.indexOf('android') > 0\n export const isIOS = UA && /iphone|ipad|ipod|ios/.test(UA)\n+export const isC... | 2017-02-22T02:25:57 |
denoland/deno | f20c8cdb892abaecfe1d6a61bbae3768e44db406 | ee8c4d948390b32062e22503ae7d3c27bfffe859 | fix(update): preserve tilde in version range (#30946)
Fixes https://github.com/denoland/deno/issues/30925 | [
{
"path": "cli/tools/pm/outdated/mod.rs",
"patch": "@@ -305,13 +305,23 @@ fn choose_new_version_req(\n latest_available: false,\n };\n };\n- let exact = if let Some(range) = dep.req.version_req.range() {\n- range.0[0].start == range.0[0].end\n+ // Detect the original operator to... | 2025-10-08T17:50:30 |
mrdoob/three.js | b9144b9cfae5a985a23ea95ca1a77b0ae4fb366a | aa4fa450956a2a818bccb409ff7905dabd3c66af | Addons: Add `TRAAPassNode`. (#29636)
* TRAAPass: Initial setup.
* TRAAPassNode: Implement clamping, fix velocity.
* TRAAPassNode: Finalize initial code.
* TRAAPassNode: Clean up.
* Examples: Clean up.
* TRAAPassNode: Clean up.
* TRAAPassNode: Fix dispose().
* TRAANodePass: Refactor MRT setup.
*... | [
{
"path": "examples/files.json",
"patch": "@@ -400,6 +400,7 @@\n \t\t\"webgpu_postprocessing_sobel\",\n \t\t\"webgpu_postprocessing_ssaa\",\n \t\t\"webgpu_postprocessing_ssr\",\n+\t\t\"webgpu_postprocessing_traa\",\n \t\t\"webgpu_postprocessing_transition\",\n \t\t\"webgpu_postprocessing\",\n \t\t\"webgpu_p... | 2024-10-15T19:22:19 |
golang/go | 107fcb70de859f7b8d08ce8bce8cf6a6d944aeff | 8378276d66060cf5486cda3c826afc4be9f4a047 | internal/goroot: replace HasPrefix+TrimPrefix with CutPrefix
Change-Id: I97305df6babbede57bb0c3b48c89c96cb74307f7
Reviewed-on: https://go-review.googlesource.com/c/go/+/668456
Auto-Submit: Sean Liao <sean@liao.dev>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Sean Liao <sean@liao.dev>
LUCI-TryBot-Result:... | [
{
"path": "src/internal/goroot/gc.go",
"patch": "@@ -77,8 +77,8 @@ func (gd *gccgoDirs) init() {\n \tconst prefix = \"libraries: =\"\n \tvar dirs []string\n \tfor _, dirEntry := range dirsEntries {\n-\t\tif strings.HasPrefix(dirEntry, prefix) {\n-\t\t\tdirs = filepath.SplitList(strings.TrimPrefix(dirEntry, ... | 2025-04-28T09:00:24 |
mrdoob/three.js | aa4fa450956a2a818bccb409ff7905dabd3c66af | db6cb64126c70873fa7b20857e91c2be81035a9b | fix: remove methods for CSSRenderer Objects within iframe (#29663)
* fix: remove methods for CSSRenderer Objects within iframe
* Element.remove() is widely supported | [
{
"path": "examples/jsm/renderers/CSS2DRenderer.js",
"patch": "@@ -26,9 +26,12 @@ class CSS2DObject extends Object3D {\n \n \t\t\tthis.traverse( function ( object ) {\n \n-\t\t\t\tif ( object.element instanceof Element && object.element.parentNode !== null ) {\n+\t\t\t\tif (\n+\t\t\t\t\tobject.element insta... | 2024-10-15T17:51:23 |
vuejs/vue | 1861ee9570730149e01f225323c3a52392e5900f | a1d5b22e347aab9e8e4f63b01abf2d88dec428df | feat: renderError | [
{
"path": "flow/options.js",
"patch": "@@ -33,7 +33,8 @@ declare type ComponentOptions = {\n // DOM\n el?: string | Element;\n template?: string;\n- render: () => VNode;\n+ render: (h: () => VNode) => VNode;\n+ renderError?: (h: () => VNode, err: Error) => VNode;\n staticRenderFns?: Array<() => V... | 2017-02-20T05:16:40 |
denoland/deno | ee8c4d948390b32062e22503ae7d3c27bfffe859 | b8c133a7e2140810a8f74f0e8d683824b321b706 | feat(internal): support variants of spec tests (#30947)
Adds support for a new key `"variants"` that effectively parameterizes a
test, allowing you to substitute different values for each scenario. For
instance, I'm planning on using this in the tsgo PR, where I'll have
tests like
```json
{
"variants": {
"tsgo"... | [
{
"path": "tests/specs/mod.rs",
"patch": "@@ -5,6 +5,7 @@ use std::collections::BTreeMap;\n use std::collections::HashMap;\n use std::collections::HashSet;\n use std::panic::AssertUnwindSafe;\n+use std::path::Path;\n use std::rc::Rc;\n \n use anyhow::Context;\n@@ -57,13 +58,15 @@ struct MultiTestMetaData {\... | 2025-10-08T17:46:33 |
golang/go | 8378276d66060cf5486cda3c826afc4be9f4a047 | e5688d0bddb0196b7f057bcae8baf8521c571119 | strconv: optimize int-to-decimal and use consistently
Integer-to-decimal conversion is hand-written in multiple
places in this package, with different incomplete optimizations
in different copies. This CL establishes a single implementation,
formatBase10, accurately optimized for a variety of systems,
and then uses i... | [
{
"path": "src/strconv/ftoa.go",
"patch": "@@ -483,7 +483,7 @@ func fmtB(dst []byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {\n \t}\n \n \t// mantissa\n-\tdst, _ = formatBits(dst, mant, 10, false, true)\n+\tdst = AppendUint(dst, mant, 10)\n \n \t// p\n \tdst = append(dst, 'p')\n@@ -493,7 +49... | 2025-10-17T04:31:09 |
mrdoob/three.js | 752400c13fba9e83dd0291bec8d3e0d4586fd2e1 | a9f7169779909a56c6cba4b15360108112e88d17 | fix(Material): sRGB decoding for VideoTexture .emissiveMap (#29657) | [
{
"path": "src/renderers/shaders/ShaderChunk/colorspace_pars_fragment.glsl.js",
"patch": "@@ -4,6 +4,10 @@ vec4 LinearTransferOETF( in vec4 value ) {\n \treturn value;\n }\n \n+vec4 sRGBTransferEOTF( in vec4 value ) {\n+\treturn vec4( mix( pow( value.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ),... | 2024-10-15T08:31:44 |
vuejs/vue | a1d5b22e347aab9e8e4f63b01abf2d88dec428df | 3c0cdb553590db84a3bdb2a299947e7424e23464 | throw error in ssr so it can be captured properly by renderer | [
{
"path": "src/core/util/error.js",
"patch": "@@ -1,5 +1,6 @@\n import config from '../config'\n import { warn } from './debug'\n+import { inBrowser } from './env'\n \n export function handleError (err, vm, type) {\n if (config.errorHandler) {\n@@ -8,8 +9,10 @@ export function handleError (err, vm, type) ... | 2017-02-20T04:21:02 |
denoland/deno | 3bd08b21c0de52a0ad01587f971bfb00ed279639 | 9b4c141595466caa925b77f9742c8478498bf26b | test: use `Deno.execPath()` instead of `deno` (#30914)
Currently most TS tests use `Deno.execPath()` to identify where `deno`
lives.
In the event deno is not on the `$PATH` these tests will fail.
If deno is on the `$PATH` you can end up testing the wrong instance of
`deno`. | [
{
"path": "tests/unit/process_test.ts",
"patch": "@@ -623,7 +623,7 @@ Deno.test(\n \n // @ts-ignore `Deno.run()` was soft-removed in Deno 2.\n const p = Deno.run({\n- cmd: [\"deno\", \"run\", \"--watch\", tempFile],\n+ cmd: [Deno.execPath(), \"run\", \"--watch\", tempFile],\n stdout:... | 2025-10-07T20:51:48 |
golang/go | f92e01c117bf7d115a97229d4b4f81c91faf0f7b | 50586182abd82ec724b9beb6b806610d08846d8e | runtime/cgo: fix cgoCheckArg description
The description is misleading: cgoCheckArg is called by both
cgoCheckPointer and cgoCheckResult.
Mention cgoCheckResult in the cgoCheckArg description. Remove extra
spaces between words.
For #75856
Change-Id: I6780cda76b5cb7b4f9af3fbaa37a6c5099cc8d7d
GitHub-Last-Rev: 531928b... | [
{
"path": "src/runtime/cgocall.go",
"patch": "@@ -33,7 +33,7 @@\n //\n // To make it possible for gcc-compiled C code to call a Go function p.GoF,\n // cgo writes a gcc-compiled function named GoF (not p.GoF, since gcc doesn't\n-// know about packages). The gcc-compiled C function f calls GoF.\n+// know ab... | 2025-10-22T08:36:51 |
vuejs/vue | 3c0cdb553590db84a3bdb2a299947e7424e23464 | 3566d9296de28e679be0970c4eb52a938eaf2ecc | improve error handling for lifecycle hooks | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -6,7 +6,7 @@ import { createEmptyVNode } from '../vdom/vnode'\n import { observerState } from '../observer/index'\n import { updateComponentListeners } from './events'\n import { resolveSlots } from './render-helpers/resolve-slots'\n-import { warn, va... | 2017-02-20T04:19:44 |
mrdoob/three.js | 25ff4db3cba187c84a879737d3b8714a65659570 | 26efd87d9f30d30147cbebc099338b42c89ed0bd | WebGPURenderer: Introduce `TiledLighting` (#29642)
* Renderer: move `.nodes.library` -> `.library`
* WGSLNodeBuilder: Remove incompatible types
* introduce lighting system
* introduce tiled lighting
* update imports
* cleanup
* revision
* `misc_controls_fly` : fix warning
* revision
* cleanu... | [
{
"path": "examples/files.json",
"patch": "@@ -339,6 +339,7 @@\n \t\t\"webgpu_lights_phong\",\n \t\t\"webgpu_lights_rectarealight\",\n \t\t\"webgpu_lights_selective\",\n+\t\t\"webgpu_lights_tiled\",\n \t\t\"webgpu_lines_fat_wireframe\",\n \t\t\"webgpu_lines_fat\",\n \t\t\"webgpu_loader_gltf\",",
"additi... | 2024-10-14T23:38:32 |
denoland/deno | 9b4c141595466caa925b77f9742c8478498bf26b | 386f3b28304674c74c0f26ff28880206671e0414 | fix(cli): jsx pragma-related swc panics (#30935) | [
{
"path": "Cargo.lock",
"patch": "@@ -273,9 +273,9 @@ dependencies = [\n \n [[package]]\n name = \"ast_node\"\n-version = \"3.0.3\"\n+version = \"3.0.4\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"a1e2cddd48eafd883890770673b1971faceaf80a185445671abc3ea0c00593ee\"\n+c... | 2025-10-06T23:25:13 |
golang/go | 7c9fa4d5e9b65be396d7794f645b1f409a9bc39f | 557b4d6e0f9de96ce9718f89773f14e6e1b14760 | cmd/go: check if build output should overwrite files with renames
CopyFile has a check to ensure that only object files are overwritten.
Extend this to moveOrCopyFile, so the check also happens when the source
and destination file are on the same filesystem (when renames are a
valid way of moving files).
Fixes #75970... | [
{
"path": "src/cmd/go/internal/work/shell.go",
"patch": "@@ -123,6 +123,11 @@ func (sh *Shell) moveOrCopyFile(dst, src string, perm fs.FileMode, force bool) e\n \t\treturn nil\n \t}\n \n+\terr := checkDstOverwrite(dst, force)\n+\tif err != nil {\n+\t\treturn err\n+\t}\n+\n \t// If we can update the mode and... | 2025-10-19T19:00:55 |
mrdoob/three.js | 26efd87d9f30d30147cbebc099338b42c89ed0bd | bd8fb94227c0b13942ced60ed2d7c206c71c4ddc | WebGPUTextureUtils: Fix usage of `Texture.anisotropy`. (#29654) | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -65,9 +65,17 @@ class WebGPUTextureUtils {\n \t\t\tmagFilter: this._convertFilterMode( texture.magFilter ),\n \t\t\tminFilter: this._convertFilterMode( texture.minFilter ),\n \t\t\tmipmapFilter: this._convertFilterMode( texture.minFi... | 2024-10-14T21:58:57 |
vuejs/vue | 3dc9338479c6c04925831b21ebec43677a918897 | 9ccffe72db6d4c35a137063519e6ec0a9c5c34a4 | Warn when defining a method with same name as a prop (#4950)
* Warn when defining a method with same name as a prop
* update error message | [
{
"path": "src/core/instance/state.js",
"patch": "@@ -183,14 +183,23 @@ function createComputedGetter (key) {\n }\n \n function initMethods (vm: Component, methods: Object) {\n+ const props = vm.$options.props\n for (const key in methods) {\n vm[key] = methods[key] == null ? noop : bind(methods[key],... | 2017-02-18T14:09:27 |
denoland/deno | 386f3b28304674c74c0f26ff28880206671e0414 | 70498a3ce0cedcf2a277a66b70a390f12b84bc9d | fix: use ArrayIsArray primordial (#30927)
Closes #30892. | [
{
"path": "ext/node/polyfills/_tls_wrap.js",
"patch": "@@ -5,6 +5,7 @@\n // deno-lint-ignore-file prefer-primordials\n \n import {\n+ ArrayIsArray,\n ObjectAssign,\n StringPrototypeReplace,\n } from \"ext:deno_node/internal/primordials.mjs\";",
"additions": 1,
"deletions": 0,
"language": "J... | 2025-10-06T22:01:51 |
mrdoob/three.js | c4944f25ffa50be4caa6400c23de0a7f16ad9067 | 03b051119e4e921f96791ff7868d7a1cd37e193e | Docs: Fix typo and Improve `How-to-dispose-of-objects` page Korean translation (#29649)
* Docs: Fix typo in Korean translation
* Docs: Update introduction `How-to-dispose-of-objects` | [
{
"path": "docs/manual/ko/introduction/How-to-dispose-of-objects.html",
"patch": "@@ -43,8 +43,8 @@ <h2>텍스쳐</h2>\n \t</p>\n \n \t<p>\n- If you use an *ImageBitmap* as the texture's data source, you have to call [link:https://developer.mozilla.org/en-US/docs/Web/API/ImageBitmap/close ImageBitmap.close... | 2024-10-14T13:16:05 |
golang/go | 5a42af7f6c9ba057171d8a5af6f4b721b8eff10a | 4bdb55b5b86fc96addd43a845dabf6b76d100202 | go/types, types2: in resolveUnderlying, only compute path when needed
When following a RHS chain, the (TypeName) Object path is only needed
when there is a cycle (i.e., an error), in which case we can be slow.
Rather than always compute the path, only compute it in the error case.
In the same vain, allocate the seen m... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -593,9 +593,7 @@ func (n *Named) resolveUnderlying() {\n \t\treturn\n \t}\n \n-\tseen := make(map[*Named]int)\n-\tvar path []Object\n-\n+\tvar seen map[*Named]int // allocated lazily\n \tvar u Type\n \tfor rhs := Type(n); u == nil; {\n \t\ts... | 2025-10-20T17:25:23 |
vuejs/vue | 2f520ba9eeee24479536b9621cf9b32cd463cc35 | 7f6c889a8811b29e571bba7b39f21284c090fa94 | fix doc comment typo (#4954) | [
{
"path": "src/core/instance/state.js",
"patch": "@@ -58,7 +58,7 @@ function initProps (vm: Component, propsOptions: Object) {\n const propsData = vm.$options.propsData || {}\n const props = vm._props = {}\n // cache prop keys so that future props updates can iterate using Array\n- // instead of dyan... | 2017-02-17T09:31:45 |
mrdoob/three.js | 921284e3a3c275491b4bc8b4a745b6ad8666f3e6 | 597481c879fa77a46f77e687f0ae5fd509ffcc65 | ReflectorNode: Fix projection matrix computation for WebGL. (#29630) | [
{
"path": "src/nodes/utils/ReflectorNode.js",
"patch": "@@ -4,7 +4,7 @@ import { nodeObject } from '../tsl/TSLBase.js';\n import { NodeUpdateType } from '../core/constants.js';\n import { screenUV } from '../display/ScreenNode.js';\n \n-import { HalfFloatType, LinearMipMapLinearFilter } from '../../constant... | 2024-10-12T09:38:45 |
denoland/deno | 07a2389c7092f4e7046495c4ccc74c9e84181c09 | 567ab7d2af414dfa877beb0c5e0b28545ce90985 | fix(ext/node): `fs.cp` and `fs.cpSync` compatibility (#30502)
Closes #27494
Changes are based on Node.js' implementation. This allows
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-cp.mjs
test to pass. | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -349,8 +349,6 @@ deno_core::extension!(deno_node,\n ops::dns::op_node_getaddrinfo<P>,\n ops::fs::op_node_fs_exists_sync<P>,\n ops::fs::op_node_fs_exists<P>,\n- ops::fs::op_node_cp_sync<P>,\n- ops::fs::op_node_cp<P>,\n ops::fs::op_node_lchmod_sy... | 2025-10-06T21:55:26 |
golang/go | 4e695dd6346e5c7f7e94f54ed177ef96249d2294 | 06e57e60a7ff6cbc9c608278cbac4db514c7161a | go/ast: add ParseDirective for parsing directive comments
This adds an ast.Directive API for parsing directive comments such as
"//go:build" and "//go:embed".
This will help tools standardize the syntax of these directive
comments. Even within the standard Go tools there's little agreement
on the finer details of the... | [
{
"path": "api/next/68021.txt",
"patch": "@@ -0,0 +1,13 @@\n+pkg go/ast, func ParseDirective(token.Pos, string) (Directive, bool) #68021\n+pkg go/ast, method (*Directive) End() token.Pos #68021\n+pkg go/ast, method (*Directive) ParseArgs() ([]DirectiveArg, error) #68021\n+pkg go/ast, method (*Directive) Pos... | 2025-08-29T01:40:57 |
mrdoob/three.js | 597481c879fa77a46f77e687f0ae5fd509ffcc65 | 0eba913598d125031b9dc3c599e81046bd33c536 | WebGPURenderer: webgl-fallback - fix uniform/texture index allocation (#29622)
* fix uniform index/texture use
* use explict test
* Update WebGLBackend.js
Minor code style clean up.
---------
Co-authored-by: aardgoose <angus.sawyer@email.com>
Co-authored-by: Michael Herzog <michael.herzog@human-interac... | [
{
"path": "src/renderers/webgl-fallback/WebGLBackend.js",
"patch": "@@ -63,6 +63,8 @@ class WebGLBackend extends Backend {\n \t\tthis.disjoint = this.extensions.get( 'EXT_disjoint_timer_query_webgl2' );\n \t\tthis.parallel = this.extensions.get( 'KHR_parallel_shader_compile' );\n \n+\t\tthis._knownBindings ... | 2024-10-12T09:06:17 |
denoland/deno | d9ef5d39c7f8372da2ba5460805ce080ce990383 | d49dda30b1cef2550027f8059f24d3614891489c | fix(ext/node): map BadResource error to the corresponding node error (#30926)
Allows
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-stat-bigint.js
test to pass | [
{
"path": "ext/node/polyfills/_fs/_fs_fstat.ts",
"patch": "@@ -12,6 +12,7 @@ import {\n Stats,\n } from \"ext:deno_node/_fs/_fs_stat.ts\";\n import { FsFile } from \"ext:deno_fs/30_fs.js\";\n+import { denoErrorToNodeError } from \"ext:deno_node/internal/errors.ts\";\n \n export function fstat(fd: number, ... | 2025-10-06T15:35:15 |
golang/go | 06e57e60a7ff6cbc9c608278cbac4db514c7161a | 6c3d0d259f2d83a338a3a7da268e2dd5834aa35f | go/types, types2: only report version errors if new(expr) is ok otherwise
If new(expr) is used before Go 1.26, don't report version errors if there
are other problems with the expression.
While at it, implement multiple missing type checks for new(expr) and
add corresponding test cases that were missed in CL 704935 (... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -639,31 +639,31 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t// new(T) or new(expr)\n \t\t// (no argument evaluated yet)\n \t\targ := argList[0]\n-\t\tcheck.exprOrType(x, arg, true)\n-\t\tvar T... | 2025-10-20T22:02:23 |
vuejs/vue | 0598ab0c6438cdd07ba7d7bc0cbdbc19231f26f8 | acec8db2c4b54ac6f9cda7ab8fcc3bdd213eb3ed | #4371 - Explicit transition durations (#4857)
* Add transition explicit duration
* Fix tests for explicit transition duration
* Tweaks & default to milliseconds
* Better tests
* Better test for change value case
* Fix transition duration tests
* Better flow typing
* Fix transition test
* Revert... | [
{
"path": "src/platforms/web/runtime/components/transition.js",
"patch": "@@ -21,7 +21,8 @@ export const transitionProps = {\n leaveActiveClass: String,\n appearClass: String,\n appearActiveClass: String,\n- appearToClass: String\n+ appearToClass: String,\n+ duration: [Number, Object]\n }\n \n // i... | 2017-02-15T23:37:09 |
mrdoob/three.js | c3e812b6d337997894fdaad5d12d33c1491f82e9 | 09a680707be69a300dc7c1826b99db8aad5dbf5f | WaterMesh: Fix planar offset - WebGPU (#29626) | [
{
"path": "examples/jsm/objects/WaterMesh.js",
"patch": "@@ -74,7 +74,7 @@ class WaterMesh extends Mesh {\n \n \t\t\tconst distance = length( worldToEye );\n \n-\t\t\tconst distortion = surfaceNormal.xy.mul( float( 0.001 ).add( float( 1.0 ).div( distance ) ) ).mul( this.distortionScale );\n+\t\t\tconst dist... | 2024-10-11T15:46:58 |
denoland/deno | d49dda30b1cef2550027f8059f24d3614891489c | 23671da1359a4bc1953f316a4cb320e4194b4b28 | fix(webgpu): crash after isolate disposal (#30909)
this loop doesn't inherently stop running when the isolate stops
running, so use the isolate task spawner to ensure logic only runs when
the event loop is still running. it would be nice to move this logic
inside the DeviceErrorHandler (we could get rid of the task lo... | [
{
"path": "ext/webgpu/adapter.rs",
"patch": "@@ -117,10 +117,9 @@ impl GPUAdapter {\n \n #[async_method(fake)]\n #[global]\n- fn request_device(\n+ fn request_device<'s>(\n &self,\n state: &mut OpState,\n- isolate: &v8::Isolate,\n scope: &mut v8::PinScope<'_, '_>,\n #[webidl] descri... | 2025-10-04T05:53:24 |
vuejs/vue | acec8db2c4b54ac6f9cda7ab8fcc3bdd213eb3ed | 8d885128371c81994715691c81d161b3768706dd | [WIP] Support for ref callback (#4807)
* :sparkles: Tests for ref callback
* :sparkles: Support for ref callback
* Add test of inline ref callback
* adjust ref implementation strategy
* fix patch ref registration
* fix tests
* fix flow
* fix test for phantomjs | [
{
"path": "flow/component.js",
"patch": "@@ -2,6 +2,10 @@ import type { Config } from '../src/core/config'\n import type VNode from '../src/core/vdom/vnode'\n import type Watcher from '../src/core/observer/watcher'\n \n+declare type Refs = {\n+ [key: string]: Component | Element | Array<Component | Element... | 2017-02-15T22:29:13 |
mrdoob/three.js | 0e584a20573b87058997fe08ea5c47ead9438720 | 36bac08e87b0a016ce920b59b3375ed682a03997 | Nodes: Fixes and improvements for `reflector` and `gaussianBlur` (#29619)
* GaussianBlurNode: preserves input UV
* fix sequential events of update before
* add multi-sampler support | [
{
"path": "examples/jsm/tsl/display/GaussianBlurNode.js",
"patch": "@@ -60,6 +60,7 @@ class GaussianBlurNode extends TempNode {\n \t\tthis._verticalRT.texture.name = 'GaussianBlurNode.vertical';\n \n \t\tthis._textureNode = passTexture( this, this._verticalRT.texture );\n+\t\tthis._textureNode.uvNode = text... | 2024-10-11T14:41:33 |
golang/go | 6c3d0d259f2d83a338a3a7da268e2dd5834aa35f | 39fd61ddb0b5987749979bc7e453cf2a575c9392 | path/filepath: reword documentation for Rel
The existing func Rel's API documentation was presented in a rather
dense way without a lot of organization that oriented around topical
flow, so the documentation has been cleaned up to present the
function's behavior more clearly and concisely.
Fixes #75893
Change-Id: I6... | [
{
"path": "src/path/filepath/path.go",
"patch": "@@ -173,19 +173,20 @@ func unixAbs(path string) (string, error) {\n \treturn Join(wd, path), nil\n }\n \n-// Rel returns a relative path that is lexically equivalent to targpath when\n-// joined to basepath with an intervening separator. That is,\n-// [Join](... | 2025-10-16T17:14:45 |
vuejs/vue | 8d885128371c81994715691c81d161b3768706dd | 69771090511fb8072b5600f6c4d212026c8e7eea | ssr: resolve require() calls relative to bundle (fix #4936) | [
{
"path": "package.json",
"patch": "@@ -101,6 +101,7 @@\n \"nightwatch\": \"^0.9.9\",\n \"nightwatch-helpers\": \"^1.2.0\",\n \"phantomjs-prebuilt\": \"^2.1.1\",\n+ \"resolve\": \"^1.2.0\",\n \"rollup\": \"^0.41.4\",\n \"rollup-plugin-alias\": \"^1.2.0\",\n \"rollup-plugin-babel\"... | 2017-02-15T17:07:07 |
denoland/deno | 23671da1359a4bc1953f316a4cb320e4194b4b28 | 805973385d733679fec5f65158681861f9c924fb | fix(ext/node): fs.realpath buffer encoding (#30885)
Towards #29972
Allows
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-realpath-buffer-encoding.js
test to pass.
---------
Co-authored-by: Divy <dj.srivastava23@gmail.com> | [
{
"path": "ext/node/polyfills/_fs/_fs_realpath.ts",
"patch": "@@ -2,39 +2,71 @@\n \n import { promisify } from \"ext:deno_node/internal/util.mjs\";\n import { primordials } from \"ext:core/mod.js\";\n+import { Buffer } from \"node:buffer\";\n+import {\n+ getOptions,\n+ getValidatedPathToString,\n+} from \... | 2025-10-04T03:16:26 |
mrdoob/three.js | 36bac08e87b0a016ce920b59b3375ed682a03997 | c8fd86d31237e5aec94ee2e803b86a92666e134b | Update webgpu_postprocessing_ssaa.html
Fix typo. | [
{
"path": "examples/webgpu_postprocessing_ssaa.html",
"patch": "@@ -1,7 +1,7 @@\n <!DOCTYPE html>\n <html lang=\"en\">\n \t<head>\n-\t\t<title>three.js webpu - postprocessing manual ssaa</title>\n+\t\t<title>three.js webgpu - postprocessing manual ssaa</title>\n \t\t<meta charset=\"utf-8\">\n \t\t<meta name... | 2024-10-11T13:03:06 |
golang/go | 39fd61ddb0b5987749979bc7e453cf2a575c9392 | 4a0115c886101717dfc6186a3296b69fc4415487 | go/types, types2: guard Named.underlying with Named.mu
It appears that CL 695977 introduced a data race on Named.underlying.
This fixes that race by specifying a new namedState called underlying,
which, perhaps unsurprisingly, signals that Named.underlying is populated.
Unfortunately, the underlying namedState is ind... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -47,10 +47,8 @@ import (\n // soon.\n //\n // We achieve this by tracking state with an atomic state variable, and\n-// guarding potentially concurrent calculations with a mutex. At any point in\n-// time this state variable determines which... | 2025-10-17T17:16:34 |
vuejs/vue | 69771090511fb8072b5600f6c4d212026c8e7eea | ef57aa250f57f92baa8d7c6c27f96ded20802a00 | improve transition-group move detection (fix #4900, close #4911) | [
{
"path": "src/platforms/web/runtime/components/transition-group.js",
"patch": "@@ -12,13 +12,15 @@\n // nodes will remain where they should be.\n \n import { warn, extend } from 'core/util/index'\n+import { addClass, removeClass } from '../class-util'\n import { transitionProps, extractTransitionData } fro... | 2017-02-15T14:59:43 |
denoland/deno | 805973385d733679fec5f65158681861f9c924fb | 1573279c125ebaafcc34d09578ccc0b0c398a0ef | fix(ext/node): omit `smi` from `zlib.crc32` op function (#30907)
Closes #30636 | [
{
"path": "ext/node/ops/zlib/mod.rs",
"patch": "@@ -923,15 +923,15 @@ impl BrotliDecoder {\n }\n \n #[op2(fast)]\n-pub fn op_zlib_crc32_string(#[string] data: &str, #[smi] value: u32) -> u32 {\n+pub fn op_zlib_crc32_string(#[string] data: &str, value: u32) -> u32 {\n // SAFETY: `data` is a valid buffer.\n... | 2025-10-03T20:57:30 |
mrdoob/three.js | df215c82bd3cc8d3f7eefaad9f12db52d205230a | 65c13da78a4120437c329d0c7da3c2666c737ebe | WebGPURenderer: Introducing an `IndirectStorageBufferAttribute` (#29594)
* Introducing an indirectStorageBuffer for drawIndirect
* Update NodeStorageBuffer.js
fixed lint issue
* Update StorageBufferNode.js
fixed lint issue
* Update IndirectStorageBufferAttribute.js
fixed lint issue
* Update Stora... | [
{
"path": "src/nodes/accessors/StorageBufferNode.js",
"patch": "@@ -66,7 +66,7 @@ class StorageBufferNode extends BufferNode {\n \n \tgetInputType( /*builder*/ ) {\n \n-\t\treturn 'storageBuffer';\n+\t\treturn this.value.isIndirectStorageBufferAttribute ? 'indirectStorageBuffer' : 'storageBuffer';\n \n \t}\... | 2024-10-10T17:24:26 |
golang/go | 8f74f9daf4d2fe708cf28d0e2b9cce079fa19248 | 8a6c64f4fe726c956ea876cea0fed9494290130f | sync: re-enable race even when panicking
Not doing this can cause user code running after this panic (e.g.:
defers) to produce non-existing races.
Change-Id: Ia6aec88aaeee3b9c17e7b8019d697ffa88dfb492
Reviewed-on: https://go-review.googlesource.com/c/go/+/713460
Commit-Queue: Nicolas Hillegeer <aktau@google.com>
Revie... | [
{
"path": "src/sync/waitgroup.go",
"patch": "@@ -204,13 +204,14 @@ func (wg *WaitGroup) Wait() {\n \t\t\t\t}\n \t\t\t}\n \t\t\truntime_SemacquireWaitGroup(&wg.sema, synctestDurable)\n-\t\t\tif wg.state.Load() != 0 {\n-\t\t\t\tpanic(\"sync: WaitGroup is reused before previous Wait has returned\")\n-\t\t\t}\n... | 2025-10-21T11:43:36 |
vuejs/vue | 05c769bf4442d57f4593016d562bb702174ae295 | f59aef08e62576fd574b334510233e0f48198789 | fix .once with other modifiers that prevent execution of a handler (fix #4846) | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -19,11 +19,14 @@ const keyCodes: { [key: string]: number | Array<number> } = {\n const modifierCode: { [key: string]: string } = {\n stop: '$event.stopPropagation();',\n prevent: '$event.preventDefault();',\n- self: 'if($event.target !== $event.c... | 2017-02-14T22:09:37 |
mrdoob/three.js | 69e0515e2c23323c341d84ad62c45b2ef8786ca2 | 4efe2d0aa9226c4dfe35fdf9cb38fb17202d25f2 | Examples: Added `hashBlur` and improve `webgpu_backdrop_area` example (#29606)
* added hashBlur
* improve `webgpu_backdrop_area` example
* loop: fix generate const in `start` and `end`
* Update webgpu_backdrop_area.jpg | [
{
"path": "examples/jsm/tsl/display/hashBlur.js",
"patch": "@@ -0,0 +1,26 @@\n+import { float, Fn, vec2, sin, rand, degrees, cos, Loop, vec4 } from 'three/tsl';\n+\n+// https://www.shadertoy.com/view/4lXXWn\n+\n+export const hashBlur = /*#__PURE__*/ Fn( ( [ textureNode, bluramount = float( 0.1 ), repeats = ... | 2024-10-10T03:42:39 |
denoland/deno | 1573279c125ebaafcc34d09578ccc0b0c398a0ef | ee46fee061e069c83c9a65749b3446e513ff169a | fix(ext/node): `fs.stat` and `fs.statSync` compatibility (#30866) | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -1449,13 +1449,13 @@ impl FileBackedVfsMetadata {\n blksize: 0,\n size: self.len,\n dev: 0,\n- ino: 0,\n+ ino: None,\n mode: 0,\n- nlink: 0,\n+ nlink: None,\n uid: 0,\n gid: 0,\n rdev: 0,\n- bl... | 2025-10-03T15:34:01 |
golang/go | 8a6c64f4fe726c956ea876cea0fed9494290130f | 4620db72d273097a1c5fd11e44ce688618559579 | syscall: use rawSyscall6 to call ptrace in forkAndExecInChild
On darwin and openbsd, the autogenerated ptrace wrapper is
nosplit because it is called from forkAndExecInChild.
This makes it difficult to modify and improve the underlying
syscall mechanism, as ptrace is almost over the nosplit limit.
We better call ptr... | [
{
"path": "src/syscall/exec_libc2.go",
"patch": "@@ -59,7 +59,6 @@ func forkAndExecInChild(argv0 *byte, argv, envv []*byte, chroot, dir *byte, attr\n \t\tr1 uintptr\n \t\tnextfd int\n \t\ti int\n-\t\terr error\n \t\tpgrp _C_int\n \t\tcred ... | 2025-10-02T13:12:30 |
vuejs/vue | 0201d8ca1dd9b97d82cf91118aa0478708528989 | 97d36bc23f788974c6d16ba82e98375b1cac96fa | Add foreignObject as a dedicated SVG element (fixes #4813) (#4926)
* Add foreignObject to isSVG list; Fix for #4813
* Remove extra comma, alphabetize | [
{
"path": "src/platforms/web/util/element.js",
"patch": "@@ -25,8 +25,8 @@ export const isHTMLTag = makeMap(\n // this map is intentionally selective, only covering SVG elements that may\n // contain child elements.\n export const isSVG = makeMap(\n- 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,fi... | 2017-02-14T19:36:36 |
denoland/deno | 56149a6ae5d2e198a7c8578c8dc8c5aab4d28c3c | 415acdd462dcfc1c6fd8098273a9d4d269c15e4d | fix(tunnel): prevent auth subprocess loop with tasks (#30896) | [
{
"path": "cli/main.rs",
"patch": "@@ -672,7 +672,14 @@ async fn resolve_flags_and_init(\n .map(|files| files.iter().map(PathBuf::from).collect());\n load_env_variables_from_env_files(env_file_paths.as_ref(), flags.log_level);\n \n- if deno_lib::args::has_flag_env_var(\"DENO_CONNECTED\") {\n+ if den... | 2025-10-03T14:16:11 |
golang/go | 4620db72d273097a1c5fd11e44ce688618559579 | b31dc77ceab962c0f4f5e4a9fc5e1a403fbd2d7c | runtime: use timer_settime64 on 32-bit Linux
Linux introduced new syscalls to fix the year 2038 issue.
To still be able to use the old ones, the Kconfig option
COMPAT_32BIT_TIME would be necessary.
Use the new 64-bit syscall for timer_settime by default.
Add a fallback to use the 32-bit syscall when the
64-bit versio... | [
{
"path": "src/runtime/defs_linux_386.go",
"patch": "@@ -237,10 +237,14 @@ type ucontext struct {\n \tuc_sigmask uint32\n }\n \n-type itimerspec struct {\n+type itimerspec32 struct {\n \tit_interval timespec32\n \tit_value timespec32\n }\n+type itimerspec struct {\n+\tit_interval timespec\n+\tit_value ... | 2025-10-18T14:43:53 |
vuejs/vue | 01151ce3fa3cb346443d086332ec053c389ee619 | dfaf1265a2367df93ed5dc5484f7578c14174b9f | fix #4872, use context agnostic Function constructor check (#4928)
* fix #4872, use context agnostic Function constructor check
* use getType to check Function Constructor
* fix negation | [
{
"path": "src/core/util/props.js",
"patch": "@@ -70,7 +70,8 @@ function getPropDefaultValue (vm: ?Component, prop: PropOptions, key: string): a\n return vm._props[key]\n }\n // call factory function for non-Function types\n- return typeof def === 'function' && prop.type !== Function\n+ // a value... | 2017-02-14T18:40:57 |
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.