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 | 4b7773356515c178f0af859b952b4b3a78f0813d | 4e9006a716533fe1c7ee08df02dfc73078f7dc19 | internal/syscall/windows: regenerate GetFileSizeEx
GetFileSizeEx was generated before mkwinsyscall was updated to use
SyscallN. Regenerate to use the new style.
Fixes #75642
Change-Id: Ia473a167633b67fb75b5762d693848ecee425a7e
Reviewed-on: https://go-review.googlesource.com/c/go/+/707615
Reviewed-by: Roland Shoemake... | [
{
"path": "src/internal/syscall/windows/zsyscall_windows.go",
"patch": "@@ -328,7 +328,7 @@ func GetFileInformationByHandleEx(handle syscall.Handle, class uint32, info *byt\n }\n \n func GetFileSizeEx(handle syscall.Handle, size *int64) (err error) {\n-\tr1, _, e1 := syscall.Syscall(procGetFileSizeEx.Addr()... | 2025-09-29T06:37:35 |
denoland/deno | 82f6b4714a17b9133f885ce5c3c41871ef2f1370 | b164cf5adecf09902dac024edec70861758c3ad9 | fix: add another space after warning symbol (#30482)
The warning symbol was overlapping the text in my terminal. | [
{
"path": "cli/main.rs",
"patch": "@@ -131,7 +131,7 @@ async fn run_subcommand(\n }),\n DenoSubcommand::Bundle(bundle_flags) => spawn_subcommand(async {\n log::warn!(\n- \"⚠️ {} is experimental and subject to changes\",\n+ \"⚠️ {} is experimental and subject to changes\",\n ... | 2025-08-26T15:19:51 |
mrdoob/three.js | 239b639fbb6af1330c137727c03b571044663b73 | 364f90e7b0207564ab4e163daa968ce06af8ff99 | Fix colorsTexture size (#29061) | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -206,7 +206,7 @@ class BatchedMesh extends Mesh {\n \n \t_initColorsTexture() {\n \n-\t\tlet size = Math.sqrt( this._maxIndexCount );\n+\t\tlet size = Math.sqrt( this._maxInstanceCount );\n \t\tsize = Math.ceil( size );\n \n \t\t// 4 floats per RGBA pixel... | 2024-08-05T08:14:10 |
vuejs/vue | 9d0bc9768b40fa5fab3a648724f50385f2552ff7 | fa61c0042c1f4da130417cc90123deda64bc9b70 | fix sfc parser special tag check for nested templates (fix #4289) | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -52,9 +52,9 @@ const isSpecialTag = (tag, isSFC, stack) => {\n if (isScriptOrStyle(tag)) {\n return true\n }\n- if (isSFC) {\n+ if (isSFC && stack.length === 1) {\n // top-level template that has no pre-processor\n- if (tag === 't... | 2016-11-23T18:15:09 |
golang/go | 4e9006a716533fe1c7ee08df02dfc73078f7dc19 | 047c2ab841e2d2233d0bef420d1b5ecb545a380a | crypto/tls: quote protocols in ALPN error message
Quote the protocols sent by the client when returning the ALPN
negotiation error message.
Fixes CVE-2025-58189
Fixes #75652
Change-Id: Ie7b3a1ed0b6efcc1705b71f0f1e8417126661330
Reviewed-on: https://go-review.googlesource.com/c/go/+/707776
Auto-Submit: Roland Shoemake... | [
{
"path": "src/crypto/tls/handshake_server.go",
"patch": "@@ -357,7 +357,7 @@ func negotiateALPN(serverProtos, clientProtos []string, quic bool) (string, erro\n \tif http11fallback {\n \t\treturn \"\", nil\n \t}\n-\treturn \"\", fmt.Errorf(\"tls: client requested unsupported application protocols (%s)\", cl... | 2025-09-29T17:11:56 |
mrdoob/three.js | 423f285d5d868dd128d6f143dc8ec31154018f57 | 11993395068d85be2014b8d236908a015162ec32 | NodeMaterial: Use `materialReference()` for env maps. (#28982)
* NodeMaterial: Use `materialReference()` for env maps.
* TSL: Move to TSL approach
* Move to TSL approach *2
* EnvironmentNode: Fix PMREM generation.
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "src/nodes/Nodes.js",
"patch": "@@ -90,6 +90,7 @@ export { default as CubeTextureNode, cubeTexture } from './accessors/CubeTexture\n export { default as InstanceNode, instance } from './accessors/InstanceNode.js';\n export { default as BatchNode, batch } from './accessors/BatchNode.js';\n export {... | 2024-08-01T11:07:29 |
vuejs/vue | fa61c0042c1f4da130417cc90123deda64bc9b70 | 1a7b910feb8c8dce7da80e4b148b65a5e4a0fbea | fix proxy missing property detection when render function does not use `with` | [
{
"path": "src/core/instance/proxy.js",
"patch": "@@ -12,6 +12,15 @@ if (process.env.NODE_ENV !== 'production') {\n 'require' // for Webpack/Browserify\n )\n \n+ const warnNonPresent = (target, key) => {\n+ warn(\n+ `Property or method \"${key}\" is not defined on the instance but ` +\n+ ... | 2016-11-23T17:57:25 |
denoland/deno | b164cf5adecf09902dac024edec70861758c3ad9 | b7e89f85c3c7f91253f49295ec44039e29530c05 | fix(bundle): don't error when using npm package without bin as entrypoint (#30523)
Fixes #30266. | [
{
"path": "cli/tools/bundle/mod.rs",
"patch": "@@ -1093,9 +1093,12 @@ fn resolve_roots(\n let package_folder = npm_resolver\n .resolve_pkg_folder_from_deno_module_req(v.req(), &referrer)\n .unwrap();\n- let main_module = node_resolver\n- .resolve_binary_export(&pa... | 2025-08-26T15:18:05 |
golang/go | 047c2ab841e2d2233d0bef420d1b5ecb545a380a | ae8eba071b228dd9e05de0b0c338f3d941a0a43f | cmd/link: don't pass -Wl,-S on Solaris
Solaris linker's -S has a different meaning.
Fixes #75637.
Change-Id: I51e641d5bc6d7f64ab5aa280090c70ec787a1fbf
Reviewed-on: https://go-review.googlesource.com/c/go/+/707096
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: D... | [
{
"path": "src/cmd/link/dwarf_test.go",
"patch": "@@ -386,7 +386,7 @@ func TestFlagW(t *testing.T) {\n \t\t{\"-s\", false}, // -s implies -w\n \t\t{\"-s -w=0\", true}, // -w=0 negates the implied -w\n \t}\n-\tif testenv.HasCGO() {\n+\tif testenv.HasCGO() && runtime.GOOS != \"solaris\" { // Solaris linke... | 2025-09-26T13:45:08 |
mrdoob/three.js | 02c1580799c72da9fd33df77ccf2eaa54aebea7a | 63fb5298a098ef3a78244a21892ec54db2876198 | GLTFExporter: Preventing to write `null` for `attenuationDistance`. (#29035)
* Fix GLTFExporter.js by checking if attenuation distance is set
Having no attenuation distance set in the project/code, defaults to infitity. This property then cannot be set in GLTF file and automatically sets to NULL. NULL property cann... | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -2837,7 +2837,12 @@ class GLTFMaterialsVolumeExtension {\n \n \t\t}\n \n-\t\textensionDef.attenuationDistance = material.attenuationDistance;\n+\t\tif ( material.attenuationDistance !== Infinity ) {\n+\n+\t\t\textensionDef.attenuationDistance ... | 2024-07-31T19:27:13 |
vuejs/vue | 1a7b910feb8c8dce7da80e4b148b65a5e4a0fbea | f4647b01f8340eb0d21d14f4fc1a720855fee3d5 | inherit child reference from old node when patching static nodes (fix #4288) | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -342,6 +342,7 @@ export function createPatchFunction (backend) {\n vnode.key === oldVnode.key &&\n (vnode.isCloned || vnode.isOnce)) {\n vnode.elm = oldVnode.elm\n+ vnode.child = oldVnode.child\n return\n }\n let i",
... | 2016-11-23T14:42:52 |
denoland/deno | b7e89f85c3c7f91253f49295ec44039e29530c05 | e463e57b0e4289558282509b39d7c3ac4b8861f7 | fix(unstable): support unstable-raw-imports when prewarmed (#30530) | [
{
"path": "cli/main.rs",
"patch": "@@ -761,7 +761,6 @@ fn wait_for_start(\n roots.compiled_wasm_module_store.clone(),\n ),\n additional_extensions: vec![],\n- enable_raw_imports: false,\n });\n \n let (rx, mut tx): (",
"additions": 0,
"deletions": 1,
"language": ... | 2025-08-26T13:45:28 |
mrdoob/three.js | 63fb5298a098ef3a78244a21892ec54db2876198 | 5ffa324577273bd969852bd47efaca2175b6141a | Update bug_report.yml | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -34,8 +34,10 @@ body:\n attributes:\n label: Live example\n value: |\n- * [jsfiddle-latest-release](https://jsfiddle.net/0joy93mr/)\n- * [jsfiddle-dev](https://jsfiddle.net/3Lsvf8xp/)\n+ * [jsfiddle-latest-r... | 2024-07-31T12:42:41 |
golang/go | ae8eba071b228dd9e05de0b0c338f3d941a0a43f | fe3ba74b9e6e3385cbf7c2f3a9c0b72baeac4b01 | cmd/link: use correct length for pcln.cutab
The pcln.cutab slice holds uint32 elements, as can be seen in the
runtime.moduledata type. The slice was being created with the len
(and cap) set to the size of the slice, which means that the count
was four times too large. This patch sets the correct len/cap.
This doesn't... | [
{
"path": "src/cmd/link/internal/ld/symtab.go",
"patch": "@@ -645,7 +645,7 @@ func (ctxt *Link) symtab(pcln *pclntab) []sym.SymKind {\n \tsliceSym(pcln.funcnametab)\n \n \t// The cutab slice\n-\tsliceSym(pcln.cutab)\n+\tslice(pcln.cutab, uint64(ldr.SymSize(pcln.cutab))/4)\n \n \t// The filetab slice\n \tsli... | 2025-09-29T04:25:24 |
vuejs/vue | c57ba3e622c5699ce2e657b0d9a71ce4bdd6dfba | b45b974a5c866abd8dc777ccac511af30b72b91b | global mixin should not drop scope id (fix #4266) (#4274) | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -72,6 +72,7 @@ export function resolveConstructorOptions (Ctor: Class<Component>) {\n Ctor.superOptions = superOptions\n extendOptions.render = options.render\n extendOptions.staticRenderFns = options.staticRenderFns\n+ extendOptions... | 2016-11-22T14:22:21 |
mrdoob/three.js | 5ffa324577273bd969852bd47efaca2175b6141a | 076fdf2d3fb6f1200e88fc6a5c639c63b4c642b1 | Update bug_report.yml
Update fiddles. | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -34,8 +34,8 @@ body:\n attributes:\n label: Live example\n value: |\n- * [jsfiddle-latest-release](https://jsfiddle.net/g3atw6k5/)\n- * [jsfiddle-dev](https://jsfiddle.net/hjqw94c5/)\n+ * [jsfiddle-latest-re... | 2024-07-31T12:34:59 |
denoland/deno | e463e57b0e4289558282509b39d7c3ac4b8861f7 | 3a14447576c673f878938baee3e2256ac1771a84 | fix(ext/node): `fs.exists` and `fs.existsSync` compatibility (#30507)
Closes #30506
Other changes:
- Emit deprecation warning.
- Allows
[parallel/test-fs-exists.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-exists.js)
to pass.
- Allows
[test-fs-symlink-dir-junction.js](https://github.com/nodej... | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -207,6 +207,21 @@ impl FileSystem for DenoRtSys {\n RealFs.chown_async(path, uid, gid).await\n }\n \n+ fn exists_sync(&self, path: &CheckedPath) -> bool {\n+ if self.0.is_path_within(path) {\n+ self.0.exists(path)\n+ } else {\n+ RealFs.e... | 2025-08-26T13:31:39 |
mrdoob/three.js | 076fdf2d3fb6f1200e88fc6a5c639c63b4c642b1 | b331d8e6be9de067cdafe7c3b1f2a7631f0b9fef | Addons: Rename `SkyGPU` and `WaterGPU`. (#29029)
* Addons: Rename `SkyGPU` and `WaterGPU`.
* Fix export. | [
{
"path": "examples/jsm/Addons.js",
"patch": "@@ -173,6 +173,9 @@ export * from './objects/ShadowMesh.js';\n export * from './objects/Sky.js';\n export * from './objects/Water.js';\n export { Water as Water2 } from './objects/Water2.js';\n+export * from './objects/SkyMesh.js';\n+export * from './objects/Wat... | 2024-07-31T11:19:35 |
golang/go | fe3ba74b9e6e3385cbf7c2f3a9c0b72baeac4b01 | d42d56b764f4c8b06aaa2de2dc9c1d2171e79490 | cmd/link: skip TestFlagW on platforms without DWARF symbol table
As with other DWARF tests, don't run TestFlagW on platforms
where executables don't have a DWARF symbol table.
Fixes #75585
Change-Id: I81014bf59b15e30ac1b2a7d24a52f9647db46c26
Reviewed-on: https://go-review.googlesource.com/c/go/+/706418
Reviewed-by: ... | [
{
"path": "src/cmd/link/dwarf_test.go",
"patch": "@@ -364,6 +364,10 @@ func TestFlagW(t *testing.T) {\n \tif runtime.GOOS == \"aix\" {\n \t\tt.Skip(\"internal/xcoff cannot parse file without symbol table\")\n \t}\n+\tif !platform.ExecutableHasDWARF(runtime.GOOS, runtime.GOARCH) {\n+\t\tt.Skipf(\"skipping on... | 2025-09-27T18:45:36 |
vuejs/vue | db35444331f019dd9f051b40bb36711064796f85 | a11ba690944ccc4859a7951003fd6a97ed228a03 | properly handle special newline unicode chars (fix #4268) | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -279,7 +279,7 @@ function genNode (node: ASTNode) {\n function genText (text: ASTText | ASTExpression): string {\n return text.type === 2\n ? text.expression // no need for () because already wrapped in _s()\n- : JSON.stringify(text.text)\n+ ... | 2016-11-21T15:29:57 |
denoland/deno | 0d8732f0123bdebbea583241314404e72d1bb7a0 | 6e77e868967681c2d0f092c0f6047b2684978b61 | fix(node_resolver): incorrect resolution of `require("..")` (#30524)
Fixes https://github.com/denoland/deno/issues/30505 | [
{
"path": "libs/node_resolver/resolution.rs",
"patch": "@@ -553,10 +553,9 @@ impl<\n // }\n \n let p_str = path.to_str().unwrap();\n- let path = if p_str.ends_with('/') {\n- PathBuf::from(&p_str[p_str.len() - 1..])\n- } else {\n- path\n+ let path = match p_str.strip_suffix('/') {\... | 2025-08-26T02:10:36 |
mrdoob/three.js | b331d8e6be9de067cdafe7c3b1f2a7631f0b9fef | 081a8b34a838b4c1c7383236b5eb153af3b8e1fa | Water2: Add `WebGPURenderer` version. (#29027)
* Water2: Add `WebGPURenderer` version.
* E2E: Update screenshot.
* Fix typo. | [
{
"path": "examples/files.json",
"patch": "@@ -418,7 +418,8 @@\n \t\t\"webgpu_tsl_vfx_tornado\",\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_volume_cloud\",\n-\t\t\"webgpu_volume_perlin\"\n+\t\t\"webgpu_volume_perlin\",\n+\t\t\"webgpu_water\"\n \t],\n \t\"webaudio\": [\n \t\t\"webaudio_orientation\",",
... | 2024-07-31T10:59:24 |
golang/go | 5500cbf0e420a6d643835ec05f35abb170e3e443 | 34e67623a81e9e93c3d7d0f0cb257d7d722939f2 | debug/elf: prevent offset overflow
When applying relocations, a malformed ELF file can provide an offset
that, when added to the relocation size, overflows. This wrapped-around
value could then incorrectly pass the bounds check, leading to a panic
when the slice is accessed with the original large offset.
This change... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -25,6 +25,7 @@ import (\n \t\"internal/saferio\"\n \t\"internal/zstd\"\n \t\"io\"\n+\t\"math\"\n \t\"os\"\n \t\"strings\"\n \t\"unsafe\"\n@@ -830,17 +831,9 @@ func (f *File) applyRelocationsAMD64(dst []byte, rels []byte) error {\n \n \t\tswitch t {\n \t\tcase ... | 2025-09-25T04:41:12 |
vuejs/vue | e81421c8996a7f5f1f584ca13c2752f954573a9b | 9ddbbcc340aa092699aca349492ffd50e18f1ba4 | wip: fix codegen | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -287,7 +287,7 @@ function genSlot (el: ASTElement): string {\n return `_t(${slotName}${\n children ? `,${children}` : ''\n }${\n- el.attrs ? `${children ? '' : 'null'},{${\n+ el.attrs ? `${children ? '' : ',null'},{${\n el.attrs.map... | 2016-11-17T03:17:53 |
denoland/deno | 6e77e868967681c2d0f092c0f6047b2684978b61 | 09036f52410420467fa7e8da1021bac29650cde4 | fix(install): force refresh if cannot find version (#30483)
Fixes #30464. | [
{
"path": "cli/jsr.rs",
"patch": "@@ -5,7 +5,9 @@ use std::sync::Arc;\n use dashmap::DashMap;\n use deno_core::serde_json;\n use deno_graph::packages::JsrPackageInfo;\n+use deno_graph::packages::JsrPackageInfoVersion;\n use deno_graph::packages::JsrPackageVersionInfo;\n+use deno_semver::Version;\n use deno_... | 2025-08-25T23:03:21 |
mrdoob/three.js | 4118e2b8ffd2c2b3e55c6ce1e6911d73c272422e | ddd1bc654db5fdc3f58a5cbc689065b26864add0 | Nodes: Fix WGSL Vertex Code Directive Typo (#29023) | [
{
"path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js",
"patch": "@@ -691,7 +691,7 @@ ${ flowData.code }\n \n \t\t\tfor ( const directive of directives ) {\n \n-\t\t\t\tsnippets.push( `enable ${directive}` );\n+\t\t\t\tsnippets.push( `enable ${directive};` );\n \n \t\t\t}\n \n@@ -1195,7 +1195,7 @@ ${ flo... | 2024-07-30T23:05:45 |
vuejs/vue | f242e119fab42e2f80dfea5fc9e0eaffd1587af7 | 6c7bc6932859c9d953082c96a94a86d9e94ef8bb | fix nextTick Promise implementation for polyfills | [
{
"path": "src/core/util/env.js",
"patch": "@@ -86,18 +86,20 @@ export const nextTick = (function () {\n }\n }\n \n- return function queueNextTick (cb: Function, ctx?: Object) {\n- if (cb) {\n- var func = ctx\n- ? function () { cb.call(ctx) }\n- : cb\n- callbacks.push(func)... | 2016-11-20T17:03:24 |
denoland/deno | 09036f52410420467fa7e8da1021bac29650cde4 | 3948bb6e55301680c0966c0f09dd35c9009ba456 | fix(ext/node): handle `null` keypair in tls connect (#30516) | [
{
"path": "ext/node/polyfills/_tls_wrap.js",
"patch": "@@ -87,8 +87,8 @@ export class TLSSocket extends net.Socket {\n \n const cert = tlsOptions?.secureContext?.cert;\n const key = tlsOptions?.secureContext?.key;\n- const hasTlsKey = key !== undefined &&\n- cert !== undefined;\n+ const h... | 2025-08-25T17:47:10 |
mrdoob/three.js | e117afe64e9d6c5eda56d1b7a30a0365c45d1ef6 | e32c522ec5086d8c7c12b7cb4b029a222d534225 | Nodes: Ensure that setBindGroup matches with @group in the shader. (#28953)
* add example
* fix bindgroup
* rename id to index | [
{
"path": "examples/webgpu_materials.html",
"patch": "@@ -25,7 +25,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { tslFn, wgslFn, positionLocal, positionWorld, normalLocal, normalWorld, normalView, color, texture, uv, float, vec2, vec3, vec4, oscSine, triplana... | 2024-07-29T18:42:58 |
golang/go | 34e67623a81e9e93c3d7d0f0cb257d7d722939f2 | af6999e60d498887fceaeca89f4aa88ff35c91df | all: fix typos
Change-Id: I290812905b6b5c52f289f7f8524f93aef19e6efe
Reviewed-on: https://go-review.googlesource.com/c/go/+/706775
Auto-Submit: Sean Liao <sean@liao.dev>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed... | [
{
"path": "src/crypto/tls/handshake_server_tls13.go",
"patch": "@@ -35,7 +35,7 @@ type echServerContext struct {\n \tconfigID uint8\n \tciphersuite echCipher\n \ttranscript hash.Hash\n-\t// inner indicates that the initial client_hello we recieved contained an\n+\t// inner indicates that the initial cli... | 2025-09-25T14:38:19 |
vuejs/vue | 9e6255e45762ae3a5fe2fd3a00d8c4f41c810a29 | ff7f2310025c2e9f620cdd8d37d95d49484e957b | fix the type of VNodeComponentOptions.Ctor (#4257) | [
{
"path": "types/vnode.d.ts",
"patch": "@@ -24,7 +24,7 @@ export interface VNode {\n }\n \n export interface VNodeComponentOptions {\n- Ctor: Vue;\n+ Ctor: typeof Vue;\n propsData?: Object;\n listeners?: Object;\n children?: VNodeChildren;",
"additions": 1,
"deletions": 1,
"language": "U... | 2016-11-20T16:59:10 |
denoland/deno | 3948bb6e55301680c0966c0f09dd35c9009ba456 | 6dd5ccada679d153a38a77cd55f2605a9d6531a2 | fix(ext/node): http.server.listen to handle signal option (#30515)
Closes #30508 | [
{
"path": "ext/node/polyfills/http.ts",
"patch": "@@ -28,6 +28,7 @@ import { ERR_SERVER_NOT_RUNNING } from \"ext:deno_node/internal/errors.ts\";\n import { EventEmitter } from \"node:events\";\n import { nextTick } from \"ext:deno_node/_next_tick.ts\";\n import {\n+ validateAbortSignal,\n validateBoolean... | 2025-08-25T14:55:51 |
mrdoob/three.js | 1ac4c6d5e2fc6919b51f9c51d058afb6d42a5e05 | 5ce4fa6149da08281e72be706df9c91f787418ec | TSL: Introduce `billboarding()` (#29011)
* ShaderNode: Fix defined() primitive input
* TSL: Introduce billboarding()
* rev | [
{
"path": "examples/webgpu_compute_particles_rain.html",
"patch": "@@ -24,7 +24,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { tslFn, texture, uv, uint, positionWorld, modelWorldMatrix, cameraViewMatrix, timerLocal, timerDelta, cameraProjectionMatrix, vec2, i... | 2024-07-29T06:45:09 |
golang/go | 25c36b95d1523f22d4c46ec237acc03e00540e0a | f0e281e693685954df71374c9a9fb856e8745519 | [dev.simd] simd, cmd/compile: add 128 bit select-from-pair
Using this name until a better one appears:
x.Select128FromPair(3, 2, y)
Includes test for constant and variable case.
Checks for unexpected immediates (using the zeroing flag,
which is not supported for this intrinsic) and panics.
Change-Id: I9249475d657... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1053,6 +1053,8 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB128,\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB256,\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB512,\n+\t\tssa.OpAMD64VPERM2F128256,\n+\t\tssa.OpA... | 2025-09-19T17:07:59 |
vuejs/vue | 8bf26536d3b4b5d139070e1730fed7f9df59c9db | 048014ac0d81a22e9c27cb10fbbb55f214a1f136 | Add promise support to nextTick (#3967)
* add promise support to nextTick
* remove test for non-existent nextTick console error
* Update flow annotation for callback
* Revert flow annotation for nextTick callback | [
{
"path": "src/core/instance/render.js",
"patch": "@@ -26,7 +26,7 @@ export function initRender (vm: Component) {\n \n export function renderMixin (Vue: Class<Component>) {\n Vue.prototype.$nextTick = function (fn: Function) {\n- nextTick(fn, this)\n+ return nextTick(fn, this)\n }\n \n Vue.proto... | 2016-11-20T14:50:38 |
mrdoob/three.js | 8ac32af6ba5ada30dce787ef3f5248fea36bd328 | d4b6c8f0a039478363c7cf63f6e2d84917ccc549 | Examples: Fix flickering/black screen on Apple devices with `webgpu_mesh_batch`. (#29002) | [
{
"path": "examples/webgpu_mesh_batch.html",
"patch": "@@ -17,17 +17,12 @@\n \t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> webgpu - batch mesh\n \t</div>\n \n-\t<div id=\"backend\" style=\"position: absolute; top: 200px; left: 0; color: #fff; background-color: rgba(0,0,... | 2024-07-28T13:44:57 |
denoland/deno | 6dd5ccada679d153a38a77cd55f2605a9d6531a2 | 9450d0798f044f8fd334d8b4c584286e07270a51 | chore: fix wpt_epoch CI (#30501)
Update tools/deno.lock.json to v5
> ```
> error: Unsupported lockfile version '4'. Try upgrading Deno or
recreating the lockfile at 'tools/deno.lock.json'.
> ```
https://github.com/denoland/deno/actions/runs/17169066564/job/48715288781#step:9:25 | [
{
"path": "tools/deno.lock.json",
"patch": "@@ -1,29 +1,48 @@\n {\n- \"version\": \"4\",\n+ \"version\": \"5\",\n \"specifiers\": {\n+ \"jsr:@david/code-block-writer@13\": \"13.0.3\",\n \"jsr:@david/dax@0.41.0\": \"0.41.0\",\n \"jsr:@david/dax@0.42\": \"0.42.0\",\n+ \"jsr:@david/dax@0.42.0... | 2025-08-25T14:53:33 |
golang/go | 3e4540b49d3066ee3fd57f3456506f6d09d0129b | 15fbe3480b1c44113e9cdb26008da9f66d4e57b2 | os/user: use getgrouplist on illumos && cgo
The getgrouplist call is available on Illumos since December 2020:
https://github.com/illumos/illumos-gate/commit/f2c438c5058c64b7373448f239156bf60009abcb
We can assume it is available for users now. Let's switch to using it
when cgo is enabled.
Since neither LUCY nor... | [
{
"path": "src/os/user/cgo_listgroups_unix.go",
"patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build (cgo || darwin) && !osusergo && (darwin || dragonfly || freebsd || (linux && !android) || netbsd || openbsd ||... | 2025-09-11T16:57:00 |
vuejs/vue | c1b84f87fbab4993689dc4a847a137acbcf41a71 | 9fa4bbbc04f17fe278b280a99225077836d692ec | fix markStaticRoots with v-else (#4256) | [
{
"path": "src/compiler/optimizer.js",
"patch": "@@ -77,14 +77,12 @@ function markStaticRoots (node: ASTNode, isInFor: boolean) {\n }\n if (node.children) {\n for (let i = 0, l = node.children.length; i < l; i++) {\n- const child = node.children[i]\n- isInFor = isInFor || !!node.... | 2016-11-20T14:43:40 |
mrdoob/three.js | 873c9d587618efffa9629232fabdf9db5adcf1b4 | d906b2568ac95f771bd0e76c23fe886c50270095 | WebGPURenderer: Add `debug.getRawShaderAsync()`. (#28997)
* WebGPURenderer: Add `debug.getRawShader()`.
* Added getRawShaderAsync()
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "examples/webgpu_tsl_editor.html",
"patch": "@@ -52,10 +52,6 @@\n \n \t\t\timport * as THREE from 'three';\n \n-\t\t\timport WebGPURenderer from '../src/renderers/webgpu/WebGPURenderer.js';\n-\t\t\timport WGSLNodeBuilder from '../src/renderers/webgpu/nodes/WGSLNodeBuilder.js';\n-\t\t\timport GLSLN... | 2024-07-27T16:45:10 |
denoland/deno | 9450d0798f044f8fd334d8b4c584286e07270a51 | 55f43d0373d46aa574b2b733bc45ed42812f7182 | fix(napi): buffer finalizer is nullable (#30514)
Fixes: https://github.com/denoland/deno/issues/30512 | [
{
"path": "ext/napi/js_native_api.rs",
"patch": "@@ -2938,7 +2938,7 @@ fn napi_create_external_arraybuffer<'s>(\n env: &'s mut Env,\n data: *mut c_void,\n byte_length: usize,\n- finalize_cb: napi_finalize,\n+ finalize_cb: Option<napi_finalize>,\n finalize_hint: *mut c_void,\n result: *mut napi_v... | 2025-08-25T10:57:01 |
golang/go | 16ae11a9e1ca064718303f11d30110cf4e4dbbbc | 459f3a3adc131d9bb829efe0add27327a29b9c88 | runtime: move TestReadMetricsSched to testprog
There are just too many flakes resulting from background pollution by
the testing package and other tests. Run in a subprocess where at least
the environment can be more tightly controlled.
Fixes #75049.
Change-Id: Iad59edaaf31268f1fcb77273f01317d963708fa6
Reviewed-on: ... | [
{
"path": "src/runtime/metrics_test.go",
"patch": "@@ -22,7 +22,6 @@ import (\n \t\"strings\"\n \t\"sync\"\n \t\"sync/atomic\"\n-\t\"syscall\"\n \t\"testing\"\n \t\"time\"\n \t\"unsafe\"\n@@ -1578,211 +1577,10 @@ func TestReadMetricsFinalizers(t *testing.T) {\n }\n \n func TestReadMetricsSched(t *testing.T)... | 2025-09-26T17:05:43 |
vuejs/vue | 06f41ad9fe9de374b29be5913cb133ce10204046 | 4dccbbc9978cc70ee04d70b360ea55e3ba9da3bb | avoid pushing the same ref more than once (fix #4253) | [
{
"path": "src/core/vdom/modules/ref.js",
"patch": "@@ -32,7 +32,7 @@ export function registerRef (vnode: VNodeWithData, isRemoval: ?boolean) {\n }\n } else {\n if (vnode.data.refInFor) {\n- if (Array.isArray(refs[key])) {\n+ if (Array.isArray(refs[key]) && refs[key].indexOf(ref) < 0) {\... | 2016-11-20T02:45:37 |
mrdoob/three.js | bc62d42c4187dfa2c64fee29aaf247e3d5d5d850 | 8dfb87164d48aad4ddfa05d530cc7d329e132fdf | Update UniformArrayNode.js
Fix message. | [
{
"path": "src/nodes/accessors/UniformArrayNode.js",
"patch": "@@ -145,7 +145,7 @@ export const uniformArray = ( values, nodeType ) => nodeObject( new UniformArray\n \n export const uniforms = ( values, nodeType ) => { // @deprecated, r168\n \n-\tconsole.warn( 'THREE.WebGPURenderer: uniforms() has been rena... | 2024-07-26T12:29:54 |
denoland/deno | 55f43d0373d46aa574b2b733bc45ed42812f7182 | 6314c3c46d04727a3c4483101813be57dcca2d8e | fix(ext/node): `fs.path`' `makelong` and `resolve` compatibility (#30503)
Changes are based on Node.js' implementation
https://github.com/nodejs/node/tree/v24.2.0/lib/path.js.
It allows this tests to pass:
-
[parallel/test-path-makelong.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-path-makelong.... | [
{
"path": "ext/node/polyfills/path/_posix.ts",
"patch": "@@ -16,36 +16,58 @@ import {\n normalizeString,\n } from \"ext:deno_node/path/_util.ts\";\n import { primordials } from \"ext:core/mod.js\";\n-\n-const { StringPrototypeSlice, StringPrototypeCharCodeAt, TypeError } =\n- primordials;\n+import { vali... | 2025-08-25T08:59:52 |
mrdoob/three.js | 8dfb87164d48aad4ddfa05d530cc7d329e132fdf | 152609d668a757e64681787b855d6911312e473d | Playground: Fix imports. (#28987) | [
{
"path": "playground/NodeEditor.js",
"patch": "@@ -1,5 +1,5 @@\n import * as THREE from 'three';\n-import * as Nodes from 'three/nodes';\n+import * as Nodes from 'three/tsl';\n import { Canvas, CircleMenu, ButtonInput, StringInput, ContextMenu, Tips, Search, Loader, Node, TreeViewNode, TreeViewInput, Eleme... | 2024-07-26T12:28:24 |
golang/go | 4631a2d3c6a30956f5cffb71583eb97276bcc9b5 | 0f31d742cdfda3af6b56c61a765c8df76053cf0a | cmd/link: skip TestFlagW on AIX
The internal/xcoff can only parse XCOFF with symbol table. This
test creates executables without symbol table. Skip the test.
(It might be possible to make internal/xcoff work with binaries
without symbol table? Leave it for the future.)
Fixes #75618.
Change-Id: I273ffefee5376d987acc... | [
{
"path": "src/cmd/link/dwarf_test.go",
"patch": "@@ -361,6 +361,9 @@ func TestDWARFLocationList(t *testing.T) {\n \n func TestFlagW(t *testing.T) {\n \ttestenv.MustHaveGoBuild(t)\n+\tif runtime.GOOS == \"aix\" {\n+\t\tt.Skip(\"internal/xcoff cannot parse file without symbol table\")\n+\t}\n \tt.Parallel()\... | 2025-09-26T13:38:23 |
vuejs/vue | ab428b5c4a7de3f3ab9bbc90fe6218bc256e27b5 | b60cd834660f2141e0e574b82dd17c9b474b8a73 | fix v-move class when name isn't specified (#4239) | [
{
"path": "src/platforms/web/runtime/components/transition-group.js",
"patch": "@@ -89,7 +89,7 @@ export default {\n \n updated () {\n const children = this.prevChildren\n- const moveClass = this.moveClass || (this.name + '-move')\n+ const moveClass = this.moveClass || ((this.name || 'v') + '-mo... | 2016-11-19T01:41:45 |
denoland/deno | 6314c3c46d04727a3c4483101813be57dcca2d8e | b5808041e0d8a1ba8712f0ad59acfd8616e1ae3e | fix(ext/node): `crypto.hkdfSync` returns wrong result for non-Uint8Array TypedArray inputs (#30463)
The original HKDF implementation incorrectly handled
TypedArrays by converting them through the toBuf() function, which only
handles strings and Buffers. This caused TypedArrays to be processed
incorrectly, losing their... | [
{
"path": "ext/node/polyfills/internal/crypto/hkdf.ts",
"patch": "@@ -39,15 +39,29 @@ import {\n } from \"ext:deno_node/internal/util/types.ts\";\n import { isKeyObject } from \"ext:deno_node/internal/crypto/_keys.ts\";\n import { getHashes } from \"ext:deno_node/internal/crypto/hash.ts\";\n+import { Buffer... | 2025-08-23T09:56:19 |
mrdoob/three.js | 76920df0a8cf95147e3ee90fcbc1bbb3ba8ad116 | bfe65cdca7073fc4cbc391c2cb4ae27aebc55d27 | Nodes: Add SepiaNode (#28961)
* add SepiaNode
* add node to export
* fix
* condense sepia into tslFn
* remove SepiaNode from Node.js
* Update SepiaNode.js
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "src/nodes/Nodes.js",
"patch": "@@ -141,6 +141,7 @@ export { default as BloomNode, bloom } from './display/BloomNode.js';\n export { default as TransitionNode, transition } from './display/TransitionNode.js';\n export { default as RenderOutputNode, renderOutput } from './display/RenderOutputNode.j... | 2024-07-26T09:03:24 |
vuejs/vue | b60cd834660f2141e0e574b82dd17c9b474b8a73 | cbc1fbc3c72984dd331bb6cad5a3102f64a241ff | keep-alive re-activated component should get updated props (fix #4237) | [
{
"path": "src/core/vdom/create-component.js",
"patch": "@@ -154,6 +154,9 @@ function init (vnode: VNodeWithData, hydrating: boolean) {\n if (!vnode.child || vnode.child._isDestroyed) {\n const child = vnode.child = createComponentInstanceForVnode(vnode, activeInstance)\n child.$mount(hydrating ? ... | 2016-11-19T01:38:33 |
golang/go | 0f31d742cdfda3af6b56c61a765c8df76053cf0a | 7d7cd6e07b65d7583f1c7648fc042fbe30352313 | cmd/compile: fix ICE with new(<untyped expr>)
Fixes #75617
Change-Id: Iaee7d4556db54b9999f5ba8458e7c05c11ccfc36
Reviewed-on: https://go-review.googlesource.com/c/go/+/707075
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Aut... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -2434,6 +2434,7 @@ func (r *reader) expr() (res ir.Node) {\n \t\tif r.Bool() {\n \t\t\t// new(expr) -> tmp := expr; &tmp\n \t\t\tx := r.expr()\n+\t\t\tx = typecheck.DefaultLit(x, nil) // See TODO in exprConvert case.\n \t\t\tvar init ir.Node... | 2025-09-26T11:07:18 |
mrdoob/three.js | 11a5e52b6dfececea4e8c497f61ed1bb1be2f7e2 | 387c9b0857e6007997b33b233cb129a9c9460564 | Examples: Add coffee smoke (#28967)
* Examples > Add coffee smoke
* Examples > Update coffee smoke screenshot
* Examples: Add coffee smoke screenshot to test exceptions | [
{
"path": "examples/files.json",
"patch": "@@ -401,6 +401,7 @@\n \t\t\"webgpu_textures_2d-array\",\n \t\t\"webgpu_textures_anisotropy\",\n \t\t\"webgpu_textures_partialupdate\",\n+\t\t\"webgpu_tsl_coffee_smoke\",\n \t\t\"webgpu_tsl_editor\",\n \t\t\"webgpu_tsl_galaxy\",\n \t\t\"webgpu_tsl_transpiler\",",
... | 2024-07-26T03:00:35 |
denoland/deno | b5808041e0d8a1ba8712f0ad59acfd8616e1ae3e | 87bda4a106a366e33551df84df0e5e291076dd1d | feat: allow disable hostname verification in TLS (#30409)
Fixes https://github.com/denoland/deno/issues/28903
Closes https://github.com/denoland/deno/issues/26190
- Adds a new option `unsafelyDisableHostnameVerification` to
`Deno.connectTls` and `Deno.startTls` to ignore DNS name mismatch errors
from rustls server ve... | [
{
"path": "cli/main.rs",
"patch": "@@ -915,11 +915,14 @@ async fn initialize_tunnel(\n let root_cert_store = cert_store_provider.get_or_try_init()?.clone();\n \n let tls_config = deno_runtime::deno_tls::create_client_config(\n- Some(root_cert_store),\n- vec![],\n- None,\n- deno_runtime::deno... | 2025-08-23T05:07:57 |
vuejs/vue | cbc1fbc3c72984dd331bb6cad5a3102f64a241ff | acfe1ad4a266f4d43cdd003c3003da58d893d11d | fix eslint no-self-compare | [
{
"path": "src/core/observer/index.js",
"patch": "@@ -162,9 +162,11 @@ export function defineReactive (\n },\n set: function reactiveSetter (newVal) {\n const value = getter ? getter.call(obj) : val\n+ /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal... | 2016-11-18T17:34:01 |
mrdoob/three.js | 75d969948ebbd1e6f827935076c5e6f1ccce7f14 | f8a6f724c9910c93e6b30c1227427dcd95d61849 | WGSLNodeBuilder: Fix `pow()` with negative base on Windows (#28971)
* WGSLNodeBuilder: Fix pow() with negative base on Windows
* restore tsl galaxy example
* Update webgpu_tsl_galaxy.jpg
* puppeteer: add webgpu_tsl_galaxy | [
{
"path": "examples/webgpu_tsl_galaxy.html",
"patch": "@@ -27,7 +27,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { color, cos, float, mix, range, sin, timerLocal, uniform, uv, vec3, vec4, PI, PI2, tslFn } from 'three/tsl';\n+\t\t\timport { color, cos, float, ... | 2024-07-25T20:42:10 |
denoland/deno | 87bda4a106a366e33551df84df0e5e291076dd1d | eab54fde9d7e9c5c1ddae7e9b6529664d755f7aa | fix: pass npm process state when spawning script in npm package via Node APIs (#30490) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -448,6 +448,7 @@ deno_core::extension!(deno_node,\n ops::util::op_node_guess_handle_type,\n ops::util::op_node_view_has_buffer,\n ops::util::op_node_call_is_from_dependency<TInNpmPackageChecker, TNpmPackageFolderResolver, TSys>,\n+ ops::util::op_node_... | 2025-08-22T23:49:35 |
vuejs/vue | e4fd6327906a8470c7d9999b0729c24e46cc6b67 | c1bf20acb675aff7ba3e13381b1d45c395a3da7f | avoid resetting innerHTML/textContent if value is the same (fix #4247) | [
{
"path": "src/platforms/web/runtime/modules/dom-props.js",
"patch": "@@ -21,13 +21,14 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n }\n }\n for (key in props) {\n+ cur = props[key]\n // ignore children if the node has textContent or innerHTML,\n // as the... | 2016-11-18T16:56:56 |
mrdoob/three.js | 95f114226fa343bb967e18c5949732aaed79206a | a46d6761c9510bf1fb2c126fc560f2cc11e6edb2 | Background: Fix update when changing env map. (#28966) | [
{
"path": "src/renderers/common/Background.js",
"patch": "@@ -90,6 +90,7 @@ class Background extends DataMap {\n \t\t\tif ( sceneData.backgroundCacheKey !== backgroundCacheKey ) {\n \n \t\t\t\tsceneData.backgroundMeshNode.node = vec4( backgroundNode ).mul( backgroundIntensity );\n+\t\t\t\tsceneData.backgrou... | 2024-07-25T15:34:22 |
denoland/deno | eab54fde9d7e9c5c1ddae7e9b6529664d755f7aa | 7ff1da023c67940c27241ec6028d35ae780a1bfe | fix(init): eliminate flickering progress bar (#30496) | [
{
"path": "cli/factory.rs",
"patch": "@@ -1042,6 +1042,7 @@ impl CliFactory {\n self.maybe_lockfile().await?.cloned(),\n self.npm_installer_if_managed().await?.cloned(),\n npm_resolver.clone(),\n+ self.text_only_progress_bar().clone(),\n self.sys(),\n self.create_cli_main_... | 2025-08-22T20:16:41 |
vuejs/vue | c1bf20acb675aff7ba3e13381b1d45c395a3da7f | 9a742cb423690acb29990bd38f5c17f7b21f12f8 | do not trigger change on NaN->NaN set (fix #4236) | [
{
"path": "src/core/observer/index.js",
"patch": "@@ -162,7 +162,7 @@ export function defineReactive (\n },\n set: function reactiveSetter (newVal) {\n const value = getter ? getter.call(obj) : val\n- if (newVal === value) {\n+ if (newVal === value || (newVal !== newVal && value !== ... | 2016-11-18T16:47:02 |
mrdoob/three.js | 60a1f064e37fd3cc225c168b594fc13ba5d060d9 | e241101b5f88102ce31ce87ed5f3d8ea2fbad057 | ScriptableNode: Fix getCacheKey() (#28964) | [
{
"path": "src/nodes/code/ScriptableNode.js",
"patch": "@@ -437,6 +437,20 @@ class ScriptableNode extends Node {\n \n \t}\n \n+\tgetCacheKey( force ) {\n+\n+\t\tconst cacheKey = [ this.source, this.getDefaultOutputNode().getCacheKey( force ) ];\n+\n+\t\tfor ( const param in this.parameters ) {\n+\n+\t\t\tca... | 2024-07-25T05:35:24 |
golang/go | 7d7cd6e07b65d7583f1c7648fc042fbe30352313 | 41cba31e66c979c413a4368c4f3d82ebadf0fb5b | internal/poll: don't call SetFilePointerEx in Seek for overlapped handles
Overlapped handles don't have the file pointer updated when performing
I/O operations, so there is no need to call syscall.SetFilePointerEx in
FD.Seek. Updating the in-memory offset is sufficient.
Updates #74951 (provides a more complete fix)
... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -1165,11 +1165,29 @@ func (fd *FD) Seek(offset int64, whence int) (int64, error) {\n \t}\n \tdefer fd.readWriteUnlock()\n \n-\tif !fd.isBlocking && whence == io.SeekCurrent {\n-\t\t// Windows doesn't keep the file pointer for overlapped file handles.... | 2025-08-21T08:45:23 |
denoland/deno | 24cb6c71a51aab240144027e290e170c07f3c551 | 3af338eed2d6f5d711dd861eec38779c616b8083 | fix: do not have duplicate progress bars for post install scripts (#30489) | [
{
"path": "cli/factory.rs",
"patch": "@@ -562,10 +562,12 @@ impl CliFactory {\n self.text_only_progress_bar().clone(),\n )),\n match resolver_factory.npm_resolver()?.as_managed() {\n- Some(managed_npm_resolver) => Arc::new(\n- DenoTaskLifeCycleScriptsExecutor::n... | 2025-08-22T18:35:47 |
vuejs/vue | 9a742cb423690acb29990bd38f5c17f7b21f12f8 | f4df893828779a74f6379a6068c223a25400828a | only treat binding as domProps on specific elements (fix #4233) | [
{
"path": "flow/compiler.js",
"patch": "@@ -7,7 +7,7 @@ declare type CompilerOptions = {\n directives?: { [key: string]: Function }; // platform specific directives\n isUnaryTag?: (tag: string) => ?boolean; // check if a tag is unary for the platform\n isReservedTag?: (tag: string) => ?boolean; // che... | 2016-11-18T16:36:05 |
mrdoob/three.js | e241101b5f88102ce31ce87ed5f3d8ea2fbad057 | 573ddd736eacc2af490ffbcca5d2d883d976aad9 | Examples: Add galaxy (#28955)
* Examples: Add galaxy
* update screenshot
* Examples: Rename TSL Galaxy and use THREE core materials
* Examples: TSL Galaxy fix screenshot
* update screenshot
* Examples: TSL Galaxy fix pow on negative
--------- | [
{
"path": "examples/files.json",
"patch": "@@ -401,6 +401,7 @@\n \t\t\"webgpu_textures_anisotropy\",\n \t\t\"webgpu_textures_partialupdate\",\n \t\t\"webgpu_tsl_editor\",\n+\t\t\"webgpu_tsl_galaxy\",\n \t\t\"webgpu_tsl_transpiler\",\n \t\t\"webgpu_video_panorama\",\n \t\t\"webgpu_volume_cloud\",",
"addi... | 2024-07-24T19:19:46 |
golang/go | 41cba31e66c979c413a4368c4f3d82ebadf0fb5b | dd1d597c3ac049de7865a9cb98627fde0baacc69 | mime/multipart: percent-encode CR and LF in header values to avoid CRLF injection
When provided with a field or file name containing newlines,
multipart.FileContentDisposition and other header-producing functions
could create an invalid header value.
In some scenarios, this could permit a malicious input to perform
a... | [
{
"path": "src/mime/multipart/writer.go",
"patch": "@@ -125,8 +125,20 @@ func (w *Writer) CreatePart(header textproto.MIMEHeader) (io.Writer, error) {\n \treturn p, nil\n }\n \n-var quoteEscaper = strings.NewReplacer(\"\\\\\", \"\\\\\\\\\", `\"`, \"\\\\\\\"\")\n+var quoteEscaper = strings.NewReplacer(\"\\\\... | 2025-09-25T20:24:01 |
vuejs/vue | f4df893828779a74f6379a6068c223a25400828a | 9a659593c48d6e88058515bf407ba61a6d359f79 | fix weex tests for optimizer adjustments | [
{
"path": "test/weex/compiler/class.spec.js",
"patch": "@@ -6,8 +6,8 @@ describe('compile class', () => {\n const { render, staticRenderFns, errors } = compile(`<div class=\"a b c\"></div>`)\n expect(render).not.toBeUndefined()\n expect(staticRenderFns).not.toBeUndefined()\n- expect(staticRen... | 2016-11-17T23:15:10 |
mrdoob/three.js | f5eaae88a09fce661a814d2bd3526f1690302bb6 | 0e51aa02932fbf6f94efa13f74230cec563d3c55 | Nodes: Cache linear depth and viewZ of depth textures in PassNode (#28922)
* add arguments to getLinearDepthNode and getViewZ
* only assign to _viewZ and _linearDepth of renderTarget when name is 'depth'
* remove error check
* adjust functions to use cache system
* fix cache access typo
* restore commen... | [
{
"path": "src/nodes/display/PassNode.js",
"patch": "@@ -100,10 +100,10 @@ class PassNode extends TempNode {\n \t\t\tdepth: depthTexture\n \t\t};\n \n-\t\tthis._nodes = {};\n+\t\tthis._textureNodes = {};\n+\t\tthis._linearDepthNodes = {};\n+\t\tthis._viewZNodes = {};\n \n-\t\tthis._linearDepthNode = null;\n... | 2024-07-24T02:39:28 |
golang/go | dd1d597c3ac049de7865a9cb98627fde0baacc69 | 45d6bc76af641853a0bea31c77912bf9fd52ed79 | Revert "cmd/internal/obj/loong64: use the MOVVP instruction to optimize prologue"
This reverts commit eb7c67fdc9e17959647a15db9e7781b9d447061a.
Reason for revert: Causes x/tools/gopls/internal/filecache/TestConcurrency failures, See issue 75571.
Fixes #75571
Fixes #75572
Change-Id: Ife328dce917c63c872da35f4a9e9f7ef... | [
{
"path": "src/cmd/internal/obj/loong64/obj.go",
"patch": "@@ -324,7 +324,7 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\tq = c.ctxt.StartUnsafePoint(q, c.newprog)\n \n \t\t\t\tq = obj.Appendp(q, newprog)\n-\t\t\t\tq.As = AMOVVP\n+\t\t\t\tq.As = mov\n \t\t\t\tq.Pos ... | 2025-09-23T03:24:56 |
vuejs/vue | 8f7c49c9ba76a288b9eaf8a0bd172fc68218bc6c | f80231773e486f3ef487472f615b785bf7a0b32b | Remove old static style when applying style update (fix #4227) (#4235)
* both static style and stylebinding should be removed
* update test case
* update test case | [
{
"path": "src/platforms/web/runtime/modules/style.js",
"patch": "@@ -42,7 +42,12 @@ function updateStyle (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n \n let cur, name\n const el: any = vnode.elm\n- const oldStyle: any = oldVnode.data.style || {}\n+ const oldStaticStyle: any = oldVnode.data.sta... | 2016-11-17T16:25:54 |
mrdoob/three.js | 0e51aa02932fbf6f94efa13f74230cec563d3c55 | 28636b09ca1d0c4bb31dc34ca2d3f73d12865352 | WebGPURenderer: Add `PCFSoftShadowMap` support. (#28951)
* WebGPURenderer: Add `PCFSoftShadowMap` support.
* fix use of .reference before setup
* use reference instead of uniform
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "src/nodes/accessors/ReferenceNode.js",
"patch": "@@ -49,7 +49,7 @@ class ReferenceNode extends Node {\n \t\tthis.count = count;\n \n \t\tthis.properties = property.split( '.' );\n-\t\tthis.reference = null;\n+\t\tthis.reference = object;\n \t\tthis.node = null;\n \n \t\tthis.updateType = NodeUpda... | 2024-07-24T02:36:09 |
golang/go | e8a4f508d1140eef70463c6c085c352418e03d9c | 9b7a3280895277471f53a4168439094e22a32390 | lib/fips140: re-seal v1.0.0
Exceptionally, we decided to make a compliance-related change following
CMVP's updated Implementation Guidance on September 2nd.
The Security Policy will be updated to reflect the new zip hash.
mkzip.go has been modified to accept versions of the form vX.Y.Z-hash,
where the -hash suffix i... | [
{
"path": "lib/fips140/fips140.sum",
"patch": "@@ -9,4 +9,4 @@\n #\n #\tgo test cmd/go/internal/fips140 -update\n #\n-v1.0.0.zip b50508feaeff05d22516b21e1fd210bbf5d6a1e422eaf2cfa23fe379342713b8\n+v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b",
"additions": 1,
"... | 2025-09-07T14:52:08 |
mrdoob/three.js | e275bcf2f38df1708c3733c6e10f925f75a84563 | be065aec0ea035d28bb64c1d4e7c74c4ae830233 | WebGPURenderer: Support to dynamic `light.castShadow` (#28945)
* fix name
* support to dynamic light.castShadow | [
{
"path": "src/nodes/lighting/AnalyticLightNode.js",
"patch": "@@ -158,15 +158,15 @@ class AnalyticLightNode extends LightingNode {\n \n \t\t\t//\n \n-\t\t\tconst filterFuncion = shadow.filterNode || shadowFilterLib[ renderer.shadowMap.type ] || null;\n+\t\t\tconst filterFn = shadow.filterNode || shadowFilt... | 2024-07-23T16:34:29 |
vuejs/vue | d8309248db4da8e162dc857d92a7ef45bac39e94 | 366202f31668619e6e8d3cb71dc68ec1e9d4f444 | fix eslint | [
{
"path": "src/platforms/weex/runtime/index.js",
"patch": "@@ -1,8 +1,6 @@\n /* @flow */\n \n import Vue from 'core/index'\n-import config from 'core/config'\n-import { noop } from 'shared/util'\n import { patch } from 'weex/runtime/patch'\n import platformDirectives from 'weex/runtime/directives/index'\n i... | 2016-11-16T17:06:27 |
denoland/deno | 51f2bf6e9b94e4d0b4b7584cfb18156575ac28c3 | 8f427532d6f8a41d3c61c7038f69cf499a396921 | chore(test): preserve node test fixtures line endings (#30488) | [
{
"path": "tests/node_compat/config.toml",
"patch": "@@ -451,8 +451,11 @@\n \"parallel/test-fs-read-stream-encoding.js\" = {}\n \"parallel/test-fs-read-stream-fd-leak.js\" = {}\n \"parallel/test-fs-read-stream-fd.js\" = {}\n+\"parallel/test-fs-read-stream-inherit.js\" = {}\n \"parallel/test-fs-read-stream-p... | 2025-08-22T14:38:06 |
golang/go | 9b7a3280895277471f53a4168439094e22a32390 | 7f9ab7203fd874f23f3881470ce5686391530c1a | crypto/internal/fips140: remove key import PCTs, make keygen PCTs fatal
CMVP clarified with the September 2nd changes to IG 10.3.A that PCTs
don't need to run on imported keys.
However, PCT failure must enter the error state (which for us is fatal).
Thankfully, now that PCTs only run on key generation, we can be ass... | [
{
"path": "src/crypto/internal/fips140/cast.go",
"patch": "@@ -56,27 +56,34 @@ func CAST(name string, f func() error) {\n }\n \n // PCT runs the named Pairwise Consistency Test (if operated in FIPS mode) and\n-// returns any errors. If an error is returned, the key must not be used.\n+// aborts the program ... | 2025-09-05T02:19:18 |
mrdoob/three.js | ebc60a53a38325656cf2c9c70529cdb9aefb6f85 | 6b4af05d405486bb3a0c39f51f0d651d19013836 | Nodes: More serialization/deserialization fixes. (#28946)
* Nodes: More serialization/deserialization fixes.
* Examples: Fix lighting. | [
{
"path": "examples/webgpu_materials.html",
"patch": "@@ -333,7 +333,7 @@\n \n \t\t\t\tmaterial = new THREE.MeshBasicNodeMaterial();\n \t\t\t\tmaterial.colorNode = scriptableNode;\n-\t\t\t\t//materials.push( material );\n+\t\t\t\tmaterials.push( material );\n \n \t\t\t\tscriptableNode.setLocal( 'material', ... | 2024-07-23T16:31:25 |
vuejs/vue | 366202f31668619e6e8d3cb71dc68ec1e9d4f444 | eb92723df54373ebc2aad1790566bdcf058699ae | fix entity-decoder build config | [
{
"path": "build/config.js",
"patch": "@@ -25,6 +25,7 @@ const builds = {\n entry: path.resolve(__dirname, '../src/entries/web-runtime.js'),\n dest: path.resolve(__dirname, '../dist/vue.runtime.js'),\n format: 'umd',\n+ env: 'development',\n banner\n },\n // runtime-only production bu... | 2016-11-16T16:25:40 |
denoland/deno | c632dd7759114e13b39b9b31d15aebba09fbffc6 | 5f9a64bcaf5269c6287edb1133528aa8119e77b6 | fix(npm): do not error on failure to write warned script file (#30479) | [
{
"path": "libs/npm_installer/global.rs",
"patch": "@@ -222,10 +222,9 @@ impl<TSys: NpmCacheSys> LifecycleScriptsStrategy\n log::warn!(\"┖─ {}\", colors::bold(\"\\\"nodeModulesDir\\\": \\\"auto\\\"\"));\n \n for (package, _) in packages {\n- self.sys.fs_open(\n- self.warned_scripts_file(... | 2025-08-21T23:35:04 |
golang/go | 7f9ab7203fd874f23f3881470ce5686391530c1a | fb5719cbda01c64f2f8d2eeed8592a494de59d65 | crypto/internal/fips140: update frozen module version to "v1.0.0"
We are re-sealing the .zip file anyway for another reason, might as well
take the opportunity to fix the "v1.0" mistake.
Note that the actual returned version change will happen when re-sealing
the .zip, as the latest mkzip.go will inject "v1.0.0" inst... | [
{
"path": "src/crypto/internal/cryptotest/hash.go",
"patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {... | 2025-09-10T10:19:49 |
mrdoob/three.js | 6b4af05d405486bb3a0c39f51f0d651d19013836 | 5e4214dc7b49141de34b49728b152a0026acfdb6 | AttributeNode: Fix serialization/deserialization. (#28944) | [
{
"path": "src/nodes/core/AttributeNode.js",
"patch": "@@ -107,6 +107,24 @@ class AttributeNode extends Node {\n \n \t}\n \n+\tserialize( data ) {\n+\n+\t\tsuper.serialize( data );\n+\n+\t\tdata.global = this.global;\n+\t\tdata._attributeName = this._attributeName;\n+\n+\t}\n+\n+\tdeserialize( data ) {\n+\n... | 2024-07-23T15:54:45 |
vuejs/vue | eb92723df54373ebc2aad1790566bdcf058699ae | 02620c928f19716dc16cf2a16c5d2f5ab2378b1d | avoid merging text nodes when the node is a cloned slot node (fix #4209) | [
{
"path": "src/core/vdom/helpers/normalize-children.js",
"patch": "@@ -28,7 +28,9 @@ export function normalizeChildren (\n }\n } else if (c instanceof VNode) {\n if (c.text && last && last.text) {\n- last.text += c.text\n+ if (!last.isCloned) {\n+ last.text... | 2016-11-16T04:07:50 |
mrdoob/three.js | 5e4214dc7b49141de34b49728b152a0026acfdb6 | fa7574eb7dd76e6dd9b6b2f768927428c03f80b4 | NodeMaterial: Add `setupOutgoingLight()`. (#28941)
* NodeMaterial: Add `setupOutgoingLight()`.
* NodeMaterial: Set `lights` to `false` by default.
* Examples: Fix lighting.
* E2E: Update screenshots.
* add builder as parameter for optional usage
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "examples/webgpu_backdrop_area.html",
"patch": "@@ -49,6 +49,13 @@\n \n \t\t\t\tclock = new THREE.Clock();\n \n+\t\t\t\tconst light = new THREE.PointLight( 0xffffff, 50 );\n+\t\t\t\tcamera.add( light );\n+\t\t\t\tscene.add( camera );\n+\n+\t\t\t\tconst ambient = new THREE.AmbientLight( 0x4466ff, 1... | 2024-07-23T15:29:53 |
vuejs/vue | 02620c928f19716dc16cf2a16c5d2f5ab2378b1d | 83eb63b612432ba0604a9a05f71bafb6ab07c908 | fix weex-compiler externals | [
{
"path": "build/config.js",
"patch": "@@ -76,7 +76,7 @@ const builds = {\n entry: path.resolve(__dirname, '../src/entries/weex-compiler.js'),\n dest: path.resolve(__dirname, '../packages/weex-template-compiler/build.js'),\n format: 'cjs',\n- external: ['entities', 'de-indent']\n+ external... | 2016-11-16T02:43:47 |
denoland/deno | ab36a16bf38d5beec74bc1479cc37b63929b80cd | c0bc233f1f57d06f61a3eaa7bc1ff1cde834d087 | fix(lsp): silence tsc debug failures for inlay hints (#30456) | [
{
"path": "cli/lsp/language_server.rs",
"patch": "@@ -4919,19 +4919,28 @@ impl Inner {\n error!(\"Failed to convert range to text_span: {:#}\", err);\n LspError::internal_error()\n })?;\n- let maybe_inlay_hints = self\n+ let mut inlay_hints = self\n .ts_server\n ... | 2025-08-20T21:35:45 |
golang/go | d70ad4e740e24b4b76961c4b56d698fa23668aa2 | d7abfe4f0dc91568648a66495b9f5d7ebc0f22b5 | sync/atomic: correct Uintptr.Or return doc
Uintptr.Or returns the old value, just like all of the other Or
functions. This was a typo in the original CL 544455.
Fixes #75607.
Change-Id: I260959e7e32e51f1152b5271df6cc51adfa02a4d
Reviewed-on: https://go-review.googlesource.com/c/go/+/706816
Reviewed-by: Michael Knysze... | [
{
"path": "src/sync/atomic/type.go",
"patch": "@@ -232,7 +232,7 @@ func (x *Uintptr) Add(delta uintptr) (new uintptr) { return AddUintptr(&x.v, del\n func (x *Uintptr) And(mask uintptr) (old uintptr) { return AndUintptr(&x.v, mask) }\n \n // Or atomically performs a bitwise OR operation on x using the bitma... | 2025-09-25T17:12:12 |
denoland/deno | 45d333a1c331926d7df80f63c533293be03b0070 | 2922072dec4816bc9286a6947456424e4400add2 | fix: enable keyring features and dont clear token when config is missing (#30468) | [
{
"path": "Cargo.lock",
"patch": "@@ -1104,6 +1104,16 @@ dependencies = [\n \"libc\",\n ]\n \n+[[package]]\n+name = \"core-foundation\"\n+version = \"0.10.1\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6... | 2025-08-20T15:57:13 |
mrdoob/three.js | 83d7f9478dd2fdeffc5ff4e58d1dcf194f9de190 | a00f79b32274975d5bd5c0f3d83ac8c31efec64d | WebGPURenderer: Add `PCFShadowMap` support. (#28926)
* WebGPURenderer: Add `PCFShadowMap` support.
* E2E: Update screenshots.
* AnalyticLightNode: Revert cache key change.
* AnalyticLightNode: Fix `object.receiveShadow` toggle.
* Revert "AnalyticLightNode: Fix `object.receiveShadow` toggle."
This revert... | [
{
"path": "examples/webgpu_postprocessing_pixel.html",
"patch": "@@ -69,7 +69,7 @@\n \n \t\t\t\tconst mesh = new THREE.Mesh( new THREE.BoxGeometry( boxSideLength, boxSideLength, boxSideLength ), boxMaterial );\n \t\t\t\tmesh.castShadow = true;\n-\t\t\t\t//mesh.receiveShadow = true;\n+\t\t\t\tmesh.receiveSha... | 2024-07-23T15:25:57 |
vuejs/vue | 438b51793f9347407ffc71ea2b432ed7af59d258 | 8c0fac699a48ec62b25a94b4083ea1d75c52c236 | fix style merging assertion in IE | [
{
"path": "test/unit/features/directives/style.spec.js",
"patch": "@@ -195,7 +195,12 @@ describe('Directive v-bind:style', () => {\n }).$mount()\n const style = vm.$el.style\n const child = vm.$children[0]\n- expect(style.cssText.replace(/\\s/g, '')).toBe('margin-right:20px;margin-left:16px;t... | 2016-11-15T20:53:26 |
golang/go | d7abfe4f0dc91568648a66495b9f5d7ebc0f22b5 | 393d91aea060e5b379e7913e524026d0672a96a7 | runtime: acquire/release C TSAN lock when calling cgo symbolizer/tracebacker
When calling into C via cmd/cgo, the generated code calls
_cgo_tsan_acquire / _cgo_tsan_release around the C call to report a
dummy lock to the C/C++ TSAN runtime. This is necessary because the
C/C++ TSAN runtime does not understand synchroni... | [
{
"path": "src/cmd/cgo/internal/testsanitizers/testdata/tsan_tracebackctxt/main.go",
"patch": "@@ -0,0 +1,78 @@\n+// Copyright 2025 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 main\n+\n+/*\n+// ... | 2025-05-30T21:05:41 |
denoland/deno | 2922072dec4816bc9286a6947456424e4400add2 | 0849b95ad3e1e3ae5983712be6368d6a414e0bf9 | fix(publish): handle precompile in jsx publishing (#30466) | [
{
"path": "cli/tools/publish/module_content.rs",
"patch": "@@ -206,13 +206,14 @@ impl<TSys: FsMetadata + FsRead> ModuleContentProvider<TSys> {\n import_source\n ));\n }\n- if !leading_comments_has_re(&JSX_FACTORY_RE) {\n+ let is_classic = jsx_options.jsx_runtime == \"classic\";\n+ ... | 2025-08-20T15:42:26 |
mrdoob/three.js | 5c5f02d0959929f31358ba0b2145248fdf4aad58 | 4755144205124b9b113224eaf4e1bb1662b030cb | RenderObject: Fix material cache key regression. (#28935) | [
{
"path": "src/renderers/common/RenderObject.js",
"patch": "@@ -199,10 +199,15 @@ export default class RenderObject {\n \n \t\t\tif ( value !== null ) {\n \n+\t\t\t\t// some material values require a formatting\n+\n \t\t\t\tconst type = typeof value;\n \n-\t\t\t\tif ( type === 'number' ) valueKey = value !=... | 2024-07-22T09:33:15 |
vuejs/vue | 8c0fac699a48ec62b25a94b4083ea1d75c52c236 | ef4fc1c75221bde2f4df915bba7d3585cad37c5c | fix hydration node match assertion for elements with camelCase names (fix #4195) | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -446,7 +446,7 @@ export function createPatchFunction (backend) {\n if (vnode.tag) {\n return (\n vnode.tag.indexOf('vue-component') === 0 ||\n- vnode.tag === nodeOps.tagName(node).toLowerCase()\n+ vnode.tag.toLowerCase() === no... | 2016-11-15T20:21:59 |
denoland/deno | 0849b95ad3e1e3ae5983712be6368d6a414e0bf9 | 6ca54279de2d05e40f6bfc75ade38d5893677bf0 | fix(ext/node): validate callback on `fs.mkdtemp` and `fs.stat` (#30454)
This allows
[parallel/test-fs-makeStatsCallback.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-makeStatsCallback.js)
and
[parallel/test-fs-make-callback.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-m... | [
{
"path": "ext/node/polyfills/_fs/_fs_mkdtemp.ts",
"patch": "@@ -4,12 +4,10 @@\n import { TextDecoder, TextEncoder } from \"ext:deno_web/08_text_encoding.js\";\n import { existsSync } from \"ext:deno_node/_fs/_fs_exists.ts\";\n import { mkdir, mkdirSync } from \"ext:deno_node/_fs/_fs_mkdir.ts\";\n-import {\... | 2025-08-20T13:38:06 |
mrdoob/three.js | 4755144205124b9b113224eaf4e1bb1662b030cb | b47c7e7bcb1af2cc83efe93cf8beeeae92df12f6 | Examples: Fix UltraHDRLoader callbacks (#28932) | [
{
"path": "examples/jsm/loaders/UltraHDRLoader.js",
"patch": "@@ -262,7 +262,7 @@ class UltraHDRLoader extends Loader {\n \n \t}\n \n-\tload( url, onLoad, onError ) {\n+\tload( url, onLoad, onProgress, onError ) {\n \n \t\tconst texture = new DataTexture(\n \t\t\tthis.type === HalfFloatType ? new Uint16Arra... | 2024-07-21T22:03:29 |
golang/go | 393d91aea060e5b379e7913e524026d0672a96a7 | 6dceff8bad6213bca76361462c99b0d06fd0a8f9 | cmd/fix: remove all functionality
The buildtag fixer has been incorporated into the vet analyzer
of the same name; all other fixers were already no-ops since
CL 695855.
Fixes #73605
Updates #71859
Change-Id: I90b6c730849a5ecbac3e6fb6fc0e062b5de74831
Reviewed-on: https://go-review.googlesource.com/c/go/+/706758
Revie... | [
{
"path": "src/cmd/fix/buildtag.go",
"patch": "@@ -1,52 +0,0 @@\n-// Copyright 2020 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 main\n-\n-import (\n-\t\"go/ast\"\n-\t\"go/version\"\n-\t\"strings... | 2025-09-25T16:41:08 |
vuejs/vue | ef4fc1c75221bde2f4df915bba7d3585cad37c5c | 79cc7bc97a6aa527057756e2e441cad399b299b1 | fix eslint | [
{
"path": "src/core/util/options.js",
"patch": "@@ -6,7 +6,6 @@ import { warn } from './debug'\n import { set } from '../observer/index'\n import {\n extend,\n- isObject,\n isPlainObject,\n hasOwn,\n camelize,",
"additions": 0,
"deletions": 1,
"language": "JavaScript"
}
] | 2016-11-15T20:21:34 |
mrdoob/three.js | d8621e868e3a6b00cd64c4ab66a3ec62b203edad | 0ff75bd280ba4ab0f2b4a8dab3e8552ddfce2141 | WebGPURenderer: instance mesh use binding group instead of attribute (#28726)
* feat: make instanceMatrixNode a binding group
* feat: make instance color binding group
* fix: fix deepscan check
* fix: fix exmaple error
* chore: revert instance color | [
{
"path": "src/nodes/accessors/InstanceNode.js",
"patch": "@@ -5,6 +5,8 @@ import { normalLocal } from './NormalNode.js';\n import { positionLocal } from './PositionNode.js';\n import { nodeProxy, vec3, mat3, mat4 } from '../shadernode/ShaderNode.js';\n import { NodeUpdateType } from '../core/constants.js';... | 2024-07-19T22:20:28 |
denoland/deno | a5d5f478d739af3929218fa057951213bd9e2e34 | efdcdf82c9cdddc9d24a5ebb4b67253ac14f4e6c | fix(unstable): parsing regex in selector with character class (#30462)
Fixes parsing a regex lint selector with a character class like
`[foo=/[a-z]/]`.
The parser just looked for the next `]` character and aborted there. It
didn't account for the regex grammar having this character too.
Fixes https://github.com/deno... | [
{
"path": "cli/js/40_lint_selector.js",
"patch": "@@ -159,6 +159,26 @@ export class Lexer {\n this.value = this.getSlice();\n }\n \n+ readBinAttrValue() {\n+ const s = this.i;\n+ let depth = 0;\n+ while (this.token !== Token.EOF) {\n+ if (this.token === Token.BracketClose) {\n+ i... | 2025-08-20T05:58:09 |
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.