repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
mrdoob/three.js | bb4eacd5e21e6da0317e4c62c77dffccf48214ef | b54d4660408cc868757a56c301e5d1b617f663ed | fix: Spaces cause path parsing errors (#29819) | [
{
"path": "manual/examples/background-cubemap.html",
"patch": "@@ -88,14 +88,14 @@\n \t{\n \n \t\tconst loader = new THREE.CubeTextureLoader();\n-\t\tconst texture = loader.load( [\n+\t\tconst texture = loader.load([\n \t\t\t'resources/images/cubemaps/computer-history-museum/pos-x.jpg',\n \t\t\t'resources/i... | 2024-11-06T09:13:09 |
vuejs/vue | 26f196780cf4846522dd48db512389c8840f8366 | 29445153e37a3bf973ce10594fcc7cced4707686 | always use uid when calling performance.mark (fix #5209) | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -14,14 +14,18 @@ let uid = 0\n \n export function initMixin (Vue: Class<Component>) {\n Vue.prototype._init = function (options?: Object) {\n+ const vm: Component = this\n+ // a uid\n+ vm._uid = uid++\n+\n /* istanbul ignore if */\n+ let ... | 2017-03-17T03:37:17 |
denoland/deno | aedd1084d992218d74b85212024dd477ceb55103 | 41e70e55189bae961b7864015aa9e176038af72b | fix(check): support isolatedDeclarations (#31061) | [
{
"path": "cli/tsc/99_main_compiler.js",
"patch": "@@ -163,6 +163,9 @@ function exec({ config, debug: debugFlag, rootNames, localOnly }) {\n : ts.sortAndDeduplicateDiagnostics(\n checkFiles.map((s) => program.getSemanticDiagnostics(s)).flat(),\n )),\n+ ...(options.isolatedDeclarations... | 2025-10-23T15:08:49 |
mrdoob/three.js | f421bffab53ef94b0c44066f7afa51563384ceea | 693341461ff80fca30f5f8269bdc4470e3c1760a | BatchedMesh - better error handling 2 (#29790)
* BatchedMesh - better error handling 2
* Update BatchedMesh.js
Add `THREE` namespace to messages.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -306,30 +306,53 @@ class BatchedMesh extends Mesh {\n \t\tconst batchGeometry = this.geometry;\n \t\tif ( Boolean( geometry.getIndex() ) !== Boolean( batchGeometry.getIndex() ) ) {\n \n-\t\t\tthrow new Error( 'BatchedMesh: All geometries must consistently... | 2024-11-05T08:59:31 |
golang/go | cbbd385cb863e4a0969de9846fdd80227ed91ad0 | 6aca04a73ac3ec20c39e4abe47a27370b286fc76 | strconv: remove arch-specific decision in formatBase10
There is only one architecture-specific code segment left in formatBase10.
Remove it for simplicity.
The only affected system is ppc64le, which does add 10-20% to the
runtime, but that's a ppc64le problem, not a strconv problem.
Changing the "uint32" to "uint" ma... | [
{
"path": "src/internal/strconv/itoa.go",
"patch": "@@ -4,10 +4,7 @@\n \n package strconv\n \n-import (\n-\t\"internal/goarch\"\n-\t\"math/bits\"\n-)\n+import \"math/bits\"\n \n // FormatUint returns the string representation of i in the given base,\n // for 2 <= base <= 36. The result uses the lower-case l... | 2025-10-29T16:09:18 |
vuejs/vue | 45e273fa02623de480aa8a92f4d002f500d8c09d | d185dd294c99fc01fd6521201f3362ba41e75060 | fix perf measure regression for nested components of the same name (fix #5181) | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -16,7 +16,7 @@ export function initMixin (Vue: Class<Component>) {\n Vue.prototype._init = function (options?: Object) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n- mark('init')\... | 2017-03-13T15:06:03 |
denoland/deno | 41e70e55189bae961b7864015aa9e176038af72b | 4fee1ceb6526cdc5924f5585ecf6da555c82f862 | fix: debug log for package.json being found was incorrect (#31062) | [
{
"path": "libs/config/workspace/discovery.rs",
"patch": "@@ -274,10 +274,12 @@ fn discover_workspace_config_files_for_single_dir<\n &pkg_json_path,\n ) {\n Ok(pkg_json) => {\n- log::debug!(\n- \"package.json file found at '{}'\",\n- pkg_json_path.display... | 2025-10-23T08:09:08 |
mrdoob/three.js | 693341461ff80fca30f5f8269bdc4470e3c1760a | c9bdf266ce583d7349b27d2cfbdbe24ebb497476 | RenderObjects: Force update if geometry has changed. (#29807)
* getParallaxCorrectNormal: fix import
* force update if geometry has changed | [
{
"path": "src/nodes/functions/material/getParallaxCorrectNormal.js",
"patch": "@@ -1,4 +1,4 @@\n-import { positionWorld } from '../../accessors/Position';\n+import { positionWorld } from '../../accessors/Position.js';\n import { float, Fn, min, normalize, sub, vec3 } from '../../tsl/TSLBase.js';\n \n // ht... | 2024-11-05T04:51:38 |
golang/go | 235b4e729d22bbca25c372bcccbc2613035d37aa | d44db293f9efabac3abf718a02e7787fb961b63f | cmd/compile/internal/ssa: model right shift more precisely
Prove currently checks for 0 sign bit extraction (x>>63) at the
end of the pass, but it is more general and more useful
(and not really more work) to model right shift during
value range tracking. This handles sign bit extraction (both 0 and -1)
but also makes... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -12,6 +12,7 @@ import (\n \t\"math\"\n \t\"math/bits\"\n \t\"slices\"\n+\t\"strings\"\n )\n \n type branch int\n@@ -132,7 +133,7 @@ type limit struct {\n }\n \n func (l limit) String() string {\n-\treturn fmt.Sprintf(\"sm,SM,um,UM=%d,%d,%d,%d\"... | 2025-10-29T11:27:38 |
vuejs/vue | c6ab2e06d418d171cda27bedf6864cffdaa7cac0 | 025e76312409b5e29f2023847b68ab03ce070625 | warn when template contains text outside root element (#5164)
* warn when template contains text outside root element
* fix warned flag
* make warn once a function | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -63,6 +63,13 @@ export function parse (\n let inPre = false\n let warned = false\n \n+ function warnOnce (msg) {\n+ if (!warned) {\n+ warned = true\n+ warn(msg)\n+ }\n+ }\n+\n function endPre (element) {\n // check pre state\... | 2017-03-13T07:42:46 |
denoland/deno | 4fee1ceb6526cdc5924f5585ecf6da555c82f862 | 02f6e49276bb4c03634af4aec4487a5a0a9dbebf | fix(cli/args): empty permissions in config should not require -P (#31063) | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -1065,12 +1065,15 @@ impl CliOptions {\n let set_config_permission_name = match &self.flags.subcommand {\n DenoSubcommand::Bench(_) => dir\n .to_bench_permissions_config()?\n+ .filter(|permissions| !permissions.permissions.is... | 2025-10-23T01:05:22 |
mrdoob/three.js | d7da5e02a09950521fbc9125feedb5ebd9723225 | 60a60d19296bb233933b4b3c04fbb34b3d8548ba | WebGPURenderer: implement ClippingGroup object (#28237)
* clipping groups
Replace renderer and material clipping planes with nestable clipping
groups
* update to upstream
* rework cache key
* use right cache key
* fixup
* fix cache key use
* clean up TSL
* remove unused import
* Update Toon... | [
{
"path": "examples/webgpu_clipping.html",
"patch": "@@ -74,11 +74,23 @@\n \t\t\t\tdirLight.shadow.mapSize.height = 1024;\n \t\t\t\tscene.add( dirLight );\n \n-\t\t\t\t// ***** Clipping planes: *****\n+\t\t\t\t// Clipping planes\n \n-\t\t\t\tconst localPlane = new THREE.Plane( new THREE.Vector3( 0, - 1, 0 )... | 2024-11-04T22:29:37 |
golang/go | d44db293f9efabac3abf718a02e7787fb961b63f | cdc6b559ca2ccac8eda7e0ed2c4745df2a32a697 | go/token: fix a typo in a comment
Fixes #75632
Change-Id: I71f891eb837147b6ff818ec4b2133c8c07091931
GitHub-Last-Rev: 3eeeea2dc28ef13eaef0fee7abf00ad418218f83
GitHub-Pull-Request: golang/go#76117
Reviewed-on: https://go-review.googlesource.com/c/go/+/716440
Reviewed-by: t hepudds <thepudds1460@gmail.com>
Reviewed-by: ... | [
{
"path": "src/go/token/position.go",
"patch": "@@ -511,7 +511,7 @@ func (s *FileSet) AddExistingFiles(files ...*File) {\n \t//\t}\n \t//\n \t// because all calls to AddFile must be in increasing order.\n-\t// AddExistingFilesFiles lets us augment an existing FileSet\n+\t// AddExistingFiles lets us augment ... | 2025-10-30T13:46:44 |
denoland/deno | 02f6e49276bb4c03634af4aec4487a5a0a9dbebf | 18054af79e74b649c25df161aa0b054d1e1605eb | fix(fmt/json): support hexadecimal numbers, plus sign on numbers, and words with underscores (#31057) | [
{
"path": ".dprint.json",
"patch": "@@ -12,9 +12,14 @@\n \"quotes\": \"preferSingle\"\n },\n \"exec\": {\n+ \"cwd\": \"${configDir}\",\n \"commands\": [{\n \"command\": \"rustfmt --config imports_granularity=item --config group_imports=StdExternalCrate\",\n- \"exts\": [\"rs\"]\n+ ... | 2025-10-22T20:54:29 |
mrdoob/three.js | 60a60d19296bb233933b4b3c04fbb34b3d8548ba | f32e5fcf285838443f08ab69d2d96ced87447ae1 | StereoCompositePassNode: Fix state reset/restore. (#29806) | [
{
"path": "examples/jsm/tsl/display/StereoCompositePassNode.js",
"patch": "@@ -55,7 +55,7 @@ class StereoCompositePassNode extends PassNode {\n \t\tconst { renderer } = frame;\n \t\tconst { scene, stereo, renderTarget } = this;\n \n-\t\t_rendererState = PostProcessingUtils.resetRendererAndSceneState( render... | 2024-11-04T22:27:15 |
vuejs/vue | 4d227b98d054aa64d361b957d8c4cdeaea18031a | a6e1ae0aac4ebf2c22d39cf6fe2d28623a373de1 | turn off perf timeline measuring by default + reduce its impact on dev time perf (fix #5174) | [
{
"path": "src/core/config.js",
"patch": "@@ -48,7 +48,7 @@ const config: Config = {\n /**\n * Whether to record perf\n */\n- performance: process.env.NODE_ENV !== 'production',\n+ performance: false,\n \n /**\n * Error handler for watcher errors",
"additions": 1,
"deletions": 1,
... | 2017-03-13T07:37:57 |
golang/go | cdc6b559ca2ccac8eda7e0ed2c4745df2a32a697 | 1e5bb416d887b1cf2bd9b6a3b9f05222d44c3ffc | strconv: remove hand-written divide on 32-bit systems
The compiler now generates code that is just as good.
host: s7:GOARCH=386
goos: linux
goarch: 386
pkg: strconv
cpu: AMD Ryzen 9 7950X 16-Core Processor
│ 8d2b4ce71b3 │ d5524a1f38c │
... | [
{
"path": "src/internal/strconv/itoa.go",
"patch": "@@ -191,10 +191,6 @@ func formatBase10(a []byte, u uint64) int {\n \t\t// On most systems, the uint32 math is faster, but not all.\n \t\t// The decision here is based on benchmarking.\n \t\titoaPure64 = host64bit && goarch.GOARCH != \"amd64\" && goarch.GOA... | 2025-10-28T14:22:54 |
mrdoob/three.js | 8c56d70441ec6f5a515eed2fd53918197be2c8c5 | 482697c00c2d465f0c1191d71329a54e5d11c6a3 | Docs Renderer: fix typos (#29804)
Co-authored-by: Samuel Rigaud <srigaud@duodisplay.com> | [
{
"path": "docs/api/en/constants/Renderer.html",
"patch": "@@ -11,8 +11,8 @@ <h1>WebGLRenderer Constants</h1>\n \n \t\t<h2>Cull Face Modes</h2>\n \t\t<code>\n-\t\tTHREE.CullFaceNone \n-\t\tTHREE.CullFaceBack \n+\t\tTHREE.CullFaceNone\n+\t\tTHREE.CullFaceBack\n \t\tTHREE.CullFaceFront\n \t\tTHREE.CullFaceFro... | 2024-11-04T19:50:54 |
denoland/deno | 18054af79e74b649c25df161aa0b054d1e1605eb | d0db370d5cb5d646f172b8da2c5e46d045676f74 | fix(npm): regression resolving npm bin for default when only one entry (#31055)
Closes #31052 | [
{
"path": "libs/node_resolver/resolution.rs",
"patch": "@@ -756,14 +756,8 @@ impl<\n ) -> Result<PathBuf, ResolvePkgJsonBinExportError> {\n let (pkg_json, items) = self\n .resolve_npm_binary_commands_for_package_with_pkg_json(package_folder)?;\n- let bin_name = match sub_path {\n- Some(b... | 2025-10-22T17:59:53 |
vuejs/vue | a6e1ae0aac4ebf2c22d39cf6fe2d28623a373de1 | e7dfcc334d6f6513d2ed1cddfa28a08796e07df7 | v-bind object should have lower priority than explicit bindings (fix #5150) | [
{
"path": "src/core/instance/render-helpers/bind-object-props.js",
"patch": "@@ -22,14 +22,17 @@ export function bindObjectProps (\n if (Array.isArray(value)) {\n value = toObject(value)\n }\n+ let hash\n for (const key in value) {\n if (key === 'class' || key === 'sty... | 2017-03-10T08:04:43 |
golang/go | 1e5bb416d887b1cf2bd9b6a3b9f05222d44c3ffc | 38317c44e71478220f842c7efd8078215825af92 | cmd/compile: implement bits.Mul64 on 32-bit systems
This CL implements Mul64uhilo, Hmul64, Hmul64u, and Avg64u
on 32-bit systems, with the effect that constant division of both
int64s and uint64s can now be emitted directly in all cases,
and also that bits.Mul64 can be intrinsified on 32-bit systems.
Previously, cons... | [
{
"path": "src/cmd/compile/internal/arm/ssa.go",
"patch": "@@ -245,6 +245,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = r\n \tcase ssa.OpARMADDS,\n+\t\tssa.OpARMADCS,\n \t\tssa.OpARMSUBS:\n \t\tr := v.Reg0()\n \t\tr1 := v.Args[0].Reg()",
"addition... | 2025-10-27T23:41:39 |
mrdoob/three.js | 728ebc1e9d4593713207eccd8c8b19ec0b4a25e8 | c3f685f49d7a747397d44b8f9fedd4fcec792fa7 | PointerLockControls: remove browser prefixes for "MouseEvent.movement" (#29802) | [
{
"path": "examples/jsm/controls/PointerLockControls.js",
"patch": "@@ -127,14 +127,11 @@ function onMouseMove( event ) {\n \n \tif ( this.enabled === false || this.isLocked === false ) return;\n \n-\tconst movementX = event.movementX || event.mozMovementX || event.webkitMovementX || 0;\n-\tconst movementY ... | 2024-11-04T19:47:46 |
denoland/deno | 2b0f277e96768ba345c99c80563b1ba739b90d4f | e4289491d7449e35e029e81ebf051de99fbd0ab0 | fix(ext/node): `fs.read/fs.readSync` and `fs.write/fs.writeSync` compatibility (#31013)
Towards #29972
- `fs.read` and `fs.readSync`: accepts object option parameter.
- `fs.write` and `fs.writeSync`: negative position value defaults to the
current seek position.
- Allows several node compatibility tests to pass. | [
{
"path": "ext/node/polyfills/_fs/_fs_common.ts",
"patch": "@@ -15,7 +15,6 @@ import {\n notImplemented,\n TextEncodings,\n } from \"ext:deno_node/_utils.ts\";\n-import { type Buffer } from \"node:buffer\";\n import { assertEncoding } from \"ext:deno_node/internal/fs/utils.mjs\";\n \n export type Callba... | 2025-10-22T08:48:42 |
vuejs/vue | e7dfcc334d6f6513d2ed1cddfa28a08796e07df7 | 0b964c844034d12e20b367df4263f22b77ce93a8 | fix custom directive arg fall through (fix #5162) | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -427,7 +427,7 @@ function processComponent (el) {\n \n function processAttrs (el) {\n const list = el.attrsList\n- let i, l, name, rawName, value, arg, modifiers, isProp\n+ let i, l, name, rawName, value, modifiers, isProp\n for (i = 0, l = list.l... | 2017-03-10T07:55:31 |
mrdoob/three.js | 3ef244ccf49b5811d104a5f53b8afa45982449a4 | 9e5528d2890de5432c6472bde6702abecc8e1cf7 | Addons: Fix `PostProcessingUtils` import. (#29801) | [
{
"path": "examples/jsm/tsl/display/AfterImageNode.js",
"patch": "@@ -1,5 +1,5 @@\n-import { RenderTarget, Vector2, PostProcessingUtils } from 'three';\n-import { TempNode, nodeObject, Fn, float, vec4, NodeUpdateType, uv, texture, passTexture, uniform, sign, max, convertToTexture, QuadMesh, NodeMaterial } f... | 2024-11-04T13:42:08 |
golang/go | 38317c44e71478220f842c7efd8078215825af92 | 3be9a0e014ee56f25ce4aac6091c617799fd26f2 | crypto/internal/fips140/aes: fix CTR generator
Fixed two issues in AVO based generator of amd64 asm code.
1. Updated golang.org/x/tools dependency to prevent build issue in Go 1.25.
> golang.org/x/tools@v0.24.0/internal/tokeninternal/tokeninternal.go:64:9:
> invalid array length -delta * delta (constant -256 of type... | [
{
"path": "src/crypto/internal/fips140/aes/_asm/ctr/ctr_amd64_asm.go",
"patch": "@@ -16,7 +16,7 @@ import (\n //go:generate go run . -out ../../ctr_amd64.s\n \n func main() {\n-\tPackage(\"crypto/aes\")\n+\tPackage(\"crypto/internal/fips140/aes\")\n \tConstraintExpr(\"!purego\")\n \n \tctrBlocks(1)",
"a... | 2025-10-22T14:26:30 |
denoland/deno | e4289491d7449e35e029e81ebf051de99fbd0ab0 | 9da9db0d46a3ad7faa7bbd3492969814441f154d | fix: regex pattern syntax in config-file.v1.json (#31038)
Into `config-file.v1.json`, `compilerOptions.moduleResolution` has in
invalid regexp pattern. | [
{
"path": "cli/schemas/config-file.v1.json",
"patch": "@@ -247,7 +247,7 @@\n ]\n },\n {\n- \"pattern\": \"^([Nn]ode[Nn]ext)|([Bb]undler))$\"\n+ \"pattern\": \"^([Nn]ode[Nn]ext|[Bb]undler)$\"\n }\n ],\n \"markdown... | 2025-10-22T08:08:39 |
vuejs/vue | 4964b253d0dac29578458b8f1fd9dced4828be0c | f9706dc288c33db168e91dc1f61310ede4a5ee66 | fix wrong order of generate modifier code (#5147)
* fix wrong order of generate modifier code
* add unit test of #5146
* Update events.js | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -63,10 +63,11 @@ function genHandler (\n : `function($event){${handler.value}}` // inline statement\n } else {\n let code = ''\n+ let genModifierCode = ''\n const keys = []\n for (const key in handler.modifiers) {\n if (mo... | 2017-03-10T01:42:14 |
mrdoob/three.js | bcf79e4e145cf4b5410f4e9d4d788e15632fc945 | 9853674a64daa9951b08f7605751e97b4d9ca20e | UVsDebug: Clean up. (#29794) | [
{
"path": "examples/jsm/utils/UVsDebug.js",
"patch": "@@ -6,7 +6,7 @@ import {\n * tool for \"unwrapping\" and debugging three.js geometries UV mapping\n *\n * Sample usage:\n- *\tdocument.body.appendChild( UVsDebug( new THREE.SphereGeometry( 10, 10, 10, 10 ) );\n+ *\tdocument.body.appendChild( UVsDebug(... | 2024-11-03T09:58:01 |
golang/go | 3be9a0e014ee56f25ce4aac6091c617799fd26f2 | d2c5fa081445bf1ebea013c2b5531ffce690a923 | go/types, types: proceed with correct (invalid) type in case of a selector error
Fixes #76103.
Change-Id: Idc2f5d1d7aeb4a9b468e7c268e3bf5b85d1c3777
Reviewed-on: https://go-review.googlesource.com/c/go/+/716300
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-R... | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -931,6 +931,7 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName\n \n Error:\n \tx.mode = invalid\n+\tx.typ = Typ[Invalid]\n \tx.expr = e\n }\n ",
"additions": 1,
"deletions": 0,
"language": "Go"
... | 2025-10-29T22:22:14 |
denoland/deno | 9da9db0d46a3ad7faa7bbd3492969814441f154d | 34dea6098ed4ce88ee8fd86f2561cf69c8e58dd0 | fix(check): error when type checking after deduping packages (#31049) | [
{
"path": "Cargo.lock",
"patch": "@@ -2192,9 +2192,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_graph\"\n-version = \"0.103.0\"\n+version = \"0.103.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2594e83855f172895f0e391099ca5d09dc8ae1072789c7e9ed3c3dc52a267d... | 2025-10-22T03:11:01 |
mrdoob/three.js | 9853674a64daa9951b08f7605751e97b4d9ca20e | 8b0c9acaef10bf67f82536165861eae12833301b | SceneOptimizer: Introduce `optimizer.toBatchedMesh()` (#29782)
* BatchedMeshUtils: Introduce convertGLTFToBatchedMeshes()
* improve debug
* cleanup and fix wrong instance count
* refactor to optimize original scene instead
* fix
* keep structure of graph, name and update the original scene instead
* ... | [
{
"path": "examples/jsm/utils/SceneOptimizer.js",
"patch": "@@ -0,0 +1,401 @@\n+import * as THREE from 'three';\n+\n+class SceneOptimizer {\n+\n+\tconstructor( scene, options = {} ) {\n+\n+\t\tthis.scene = scene;\n+\t\tthis.debug = options.debug || false;\n+\n+\t}\n+\n+\tbufferToHash( buffer ) {\n+\n+\t\tle... | 2024-11-02T20:25:22 |
golang/go | 9bbda7c99d2c176592186d230dab013147954bda | 915c1839fe76aef4bea6191282be1e48ef1c64e2 | cmd/compile: make prove understand div, mod better
This CL introduces new divisible and divmod passes that rewrite
divisibility checks and div, mod, and mul. These happen after
prove, so that prove can make better sense of the code for
deriving bounds, and they must run before decompose, so that
64-bit ops can be lowe... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/dec.rules",
"patch": "@@ -4,7 +4,7 @@\n \n // This file contains rules to decompose builtin compound types\n // (complex,string,slice,interface) into their constituent\n-// types. These rules work together with the decomposeBuiltIn\n+// types. These rules work ... | 2025-10-23T02:22:51 |
vuejs/vue | f9706dc288c33db168e91dc1f61310ede4a5ee66 | 8fca83d6b6e5b74a507c0b631ed5c09a36131ab1 | fix v-on unit test (#5144) | [
{
"path": "test/unit/features/directives/on.spec.js",
"patch": "@@ -1,11 +1,10 @@\n import Vue from 'vue'\n \n describe('Directive v-on', () => {\n- let vm, spy, spy2, el\n+ let vm, spy, el\n \n beforeEach(() => {\n spy = jasmine.createSpy()\n- spy2 = jasmine.createSpy()\n el = document.creat... | 2017-03-10T01:40:04 |
denoland/deno | 0f81808c8823304b28619b2afb121883a3973f04 | 568e247187dba08c812a74b1a5d4415f790eee99 | fix(coverage): don't process coverage for blob: urls (#31035)
Fixes #31030. | [
{
"path": "cli/tools/coverage/mod.rs",
"patch": "@@ -441,6 +441,7 @@ fn filter_coverages(\n .filter(|e| {\n let is_internal = e.url.starts_with(\"ext:\")\n || e.url.starts_with(\"data:\")\n+ || e.url.starts_with(\"blob:\")\n || e.url.ends_with(\"__anonymous__\")\n ||... | 2025-10-21T06:59:21 |
mrdoob/three.js | ab048e655e4ddd473b40c8fa2dfcd0a5845cc975 | f19ca733aff1316f66e64cddf34e55adf42836ef | WebGPURenderer: Handle Device Lost Event (#29767)
* WebGPURenderer: Handle Device Lost Event
* small typo
* feedbacks
* fix
* not need to bind | [
{
"path": "src/renderers/common/Backend.js",
"patch": "@@ -193,6 +193,8 @@ class Backend {\n \n \t}\n \n+\tdispose() { }\n+\n }\n \n export default Backend;",
"additions": 2,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -143,6... | 2024-10-31T01:00:44 |
golang/go | da3fb90b231ef9c70e7eb927585ab49593cc25f1 | 9035f7aea538c25a11420bce7cbd8225efc204e7 | crypto/internal/fips140/bigmod: fix extendedGCD comment
Change-Id: I6a6a6964642991dc46929bfc47e411bb7563e425
Reviewed-on: https://go-review.googlesource.com/c/go/+/716080
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Roland Shoemaker <roland@golang.org>
Reviewed-by: Michael Knyszek <mknyszek@google.c... | [
{
"path": "src/crypto/internal/fips140/bigmod/nat.go",
"patch": "@@ -1088,7 +1088,7 @@ func (x *Nat) GCDVarTime(a, b *Nat) (*Nat, error) {\n \treturn x.set(u), nil\n }\n \n-// extendedGCD computes u and A such that a = GCD(a, m) and u = A*a - B*m.\n+// extendedGCD computes u and A such that u = GCD(a, m) = ... | 2025-10-08T11:43:08 |
denoland/deno | ec3ece4ec38a0c14b0101761c39b431f0e21e46f | d38b20ca7a73b213f2322f3118cd459b40694bf9 | fix(kv): do not error when creating kv db with relative path and `-A` (#31021)
This upgrades `deno_path_util` from 0.6.1 to 0.6.3, which includes a fix
for path normalization of relative paths. This resolves issues where
`Deno.openKv()` would fail with "NotFound" errors when using `-A` flag
with relative paths that do... | [
{
"path": "Cargo.lock",
"patch": "@@ -2717,9 +2717,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_path_util\"\n-version = \"0.6.1\"\n+version = \"0.6.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"bfe02936964b2910719bd488841f6e884349360113c7abf6f4c6b28ca9cd7a... | 2025-10-21T03:21:30 |
vuejs/vue | 8fca83d6b6e5b74a507c0b631ed5c09a36131ab1 | 82bc8b7429d58efd517d1b064fbbf78eb888d85d | fix #5121: parse content in textarea as plaintext (#5143)
* fix #5121: parse content in textarea as plaintext
* update comment | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -46,7 +46,7 @@ let IS_REGEX_CAPTURING_BROKEN = false\n })\n \n // Special Elements (can contain anything)\n-const isScriptOrStyle = makeMap('script,style', true)\n+const isPlainTextElement = makeMap('script,style,textarea', true)\n const reCache =... | 2017-03-10T01:39:38 |
mrdoob/three.js | f19ca733aff1316f66e64cddf34e55adf42836ef | 10b2770f4eb6f1e6c1f7d32153a6a748da657499 | Update SECURITY.md
Fix typo. | [
{
"path": "SECURITY.md",
"patch": "@@ -7,7 +7,7 @@ used before a patch is released.\n \n You may submit the report in the following ways:\n \n-- send an email to hello@mrdoob.com;\n+- send an email to hello@mrdoob.com.\n \n Please provide the following information in your report:\n ",
"additions": 1,
... | 2024-10-30T18:27:35 |
denoland/deno | d38b20ca7a73b213f2322f3118cd459b40694bf9 | 243857c362793beb5f048d178bd665fb29ba0696 | test: disable test-fs-glob.mjs (#31029)
This test is currently crashing on CI all the time. Disabling for the
time being. | [
{
"path": "tests/node_compat/config.toml",
"patch": "@@ -441,7 +441,8 @@\n \"parallel/test-fs-existssync-false.js\" = {}\n \"parallel/test-fs-fchown.js\" = {}\n \"parallel/test-fs-fsync.js\" = {}\n-\"parallel/test-fs-glob.mjs\" = {}\n+# TODO(bartlomieju): crashes constantly on CI, disabling for now\n+# \"pa... | 2025-10-20T18:59:31 |
vuejs/vue | e6f89c0e2d950729cbab601afb31032427600c5b | fc6f1810522a4bf8a9959e405274b02d71ec290c | error-detector code style tweak | [
{
"path": "src/compiler/error-detector.js",
"patch": "@@ -2,17 +2,22 @@\n \n import { dirRE, onRE } from './parser/index'\n \n-// operators like typeof, instanceof and in are allowed\n+// these keywords should not appear inside expressions, but operators like\n+// typeof, instanceof and in are allowed\n con... | 2017-03-09T02:27:03 |
golang/go | 81afd3a59be1a3f343bf2b9d6665cd0fc825c6ba | ea50d61b667276bfd3449d5e172adc4b92f72290 | cmd/compile: extend ppc64 MADDLD to match const ADDconst & MULLDconst
Fixes #76084
I was focused on restoring the old behavior and fixing the failing
test/codegen/arithmetic.go:MergeMuls2 test.
It is probable this same bug hides elsewhere in this file.
Change-Id: I17f2ee6b97a1e33b8132648d9d750749d006f7e0
Reviewed-o... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/PPC64.rules",
"patch": "@@ -18,7 +18,10 @@\n (Max(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMAXJDP x y)\n \n // Combine 64 bit integer multiply and adds\n-(ADD l:(MULLD x y) z) && buildcfg.GOPPC64 >= 9 && l.Uses == 1 && clobber(l) => (MADDLD x y z)\n+(ADD ... | 2025-10-28T09:11:03 |
mrdoob/three.js | 732bc2a5f970c9f4535b9381f5798ee6d82d9c95 | 83c3f7259f9cf0ae024db8de00470298dd433717 | TSL: Add function for BPCEM. (#29773)
* TSL: Add function for computing BPCEMs.
* E2E: Add example to exception list.
* added on resize
--------- | [
{
"path": "examples/files.json",
"patch": "@@ -354,6 +354,7 @@\n \t\t\"webgpu_materials_arrays\",\n \t\t\"webgpu_materials_basic\",\n \t\t\"webgpu_materials_displacementmap\",\n+\t\t\"webgpu_materials_envmaps_bpcem\",\n \t\t\"webgpu_materials_envmaps\",\n \t\t\"webgpu_materials_lightmap\",\n \t\t\"webgpu_ma... | 2024-10-30T15:12:10 |
denoland/deno | 243857c362793beb5f048d178bd665fb29ba0696 | 9e572c78750bb721ae1ece2b2ffaa0589870112f | fix(ext/node): false deprecation warning on `crypto.createHmac` (#31025)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "ext/node/polyfills/crypto.ts",
"patch": "@@ -329,7 +329,7 @@ function createHmac(\n key: string | ArrayBuffer | KeyObject,\n options?: TransformOptions,\n ) {\n- return Hmac(hmac, key, options);\n+ return Hmac_(hmac, key, options);\n }\n \n function createSign(algorithm: string, options?: W... | 2025-10-20T18:22:25 |
golang/go | bd4dc413cd80d3c160e875686e1be1eae5d48d4b | 30c047d0d06cdbc2983e86daaa3b0bc1afb86706 | cmd/compile: don't optimize away a panicing interface comparison
We can't do direct pointer comparisons if the type is not a
comparable type.
Fixes #76008
Change-Id: I1687acff21832d2c2e8f3b875e7b5ec125702ef3
Reviewed-on: https://go-review.googlesource.com/c/go/+/713840
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -2626,7 +2626,7 @@ func rewriteStructStore(v *Value) *Value {\n \n // isDirectType reports whether v represents a type\n // (a *runtime._type) whose value is stored directly in an\n-// interface (i.e., is pointer or pointer-like).\n+// interf... | 2025-10-22T17:13:44 |
mrdoob/three.js | 83c3f7259f9cf0ae024db8de00470298dd433717 | 09c38ab406fc42c8207559df983fb25766b591f6 | RectAreaLightNode: Fix `update()`. (#29771) | [
{
"path": "src/nodes/lighting/RectAreaLightNode.js",
"patch": "@@ -6,6 +6,7 @@ import { renderGroup } from '../core/UniformGroupNode.js';\n \n import { Matrix4 } from '../../math/Matrix4.js';\n import { Vector3 } from '../../math/Vector3.js';\n+import { NodeUpdateType } from '../core/constants.js';\n \n con... | 2024-10-30T10:19:23 |
vuejs/vue | fc6f1810522a4bf8a9959e405274b02d71ec290c | 9d3ceba25148b35838908ef6523e16f0be881b25 | fix weex model test | [
{
"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-03-08T08:00:35 |
mrdoob/three.js | ff6450a9951ce92af263e361257efbda31c61379 | bbfdeaca8f0d5567b600dfbce2921911a60ed87c | NodeMaterial: Add support for `alphaHash`. (#29757)
* NodeMaterial: Add support for `alphaHash`.
* Clean up.
* E2E: Update exception list.
* Examples: Clean up.
* NodeMaterial: Fix alpha hash check. | [
{
"path": "examples/files.json",
"patch": "@@ -350,6 +350,7 @@\n \t\t\"webgpu_loader_gltf_transmission\",\n \t\t\"webgpu_loader_materialx\",\n \t\t\"webgpu_materials\",\n+\t\t\"webgpu_materials_alphahash\",\n \t\t\"webgpu_materials_arrays\",\n \t\t\"webgpu_materials_basic\",\n \t\t\"webgpu_materials_displac... | 2024-10-29T08:59:35 |
denoland/deno | 9e572c78750bb721ae1ece2b2ffaa0589870112f | b252cc78c2b426a3b2ebfacd942aa9908785dfc4 | fix(unstable): read npm lazy caching from unstable config in deno.json as well (#31026) | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -1370,7 +1370,7 @@ impl CliOptions {\n | DenoSubcommand::Outdated(_)\n ) {\n NpmCachingStrategy::Manual\n- } else if self.flags.unstable_config.npm_lazy_caching {\n+ } else if self.unstable_npm_lazy_caching() {\n NpmCachingStrategy::Laz... | 2025-10-20T17:59:50 |
vuejs/vue | 2e1e809467cb7f05173ab81fb4134fcec554c4a7 | 303824ea9c7614167ee6c5bd26c33b35ad6bf474 | fix prevent default unit test (#5127) | [
{
"path": "test/unit/features/directives/on.spec.js",
"patch": "@@ -86,15 +86,14 @@ describe('Directive v-on', () => {\n vm = new Vue({\n el,\n template: `\n- <div @click=\"bar\">\n- <div @click.stop=\"foo\"></div>\n- </div>\n+ <input type=\"checkbox\" ref=\"inp... | 2017-03-08T05:47:39 |
golang/go | 30c047d0d06cdbc2983e86daaa3b0bc1afb86706 | 46e5e2b09a6df80a3b6472c5f7ca5739365b6676 | cmd/compile: extend loong MOV*idx rules to match ADDshiftLLV
Fixes #76085
I was focused on restoring the old behavior and fixing the failing
test/codegen/floats.go:index* tests.
It is probable this same bug hides elsewhere in this file.
Change-Id: Ibb2cb2be5c7bbeb5eafa9705d998a67380f2b04c
Reviewed-on: https://go-re... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules",
"patch": "@@ -611,15 +611,24 @@\n (MOVWstore [off] {sym} ptr (MOVWUreg x) mem) => (MOVWstore [off] {sym} ptr x mem)\n \n // register indexed load\n-(MOVVload [off] {sym} (ADDV ptr idx) mem) && off == 0 && sym == nil => (MOVVloadidx ptr idx mem)\n-... | 2025-10-28T09:48:18 |
mrdoob/three.js | d067dfd7f5861fdb783f6fffdcd92a18a15df46f | 751d9ec135a25c2236c210e45e8d866024043b77 | LDrawLoader: Add WebGPU support. (#29752)
* LDrawLoader: Add WebGPU support.
* LDrawLoader: Improve error handling.
* LDrawLoader: Clean up.
* Update Addons.js | [
{
"path": "examples/jsm/Addons.js",
"patch": "@@ -129,6 +129,8 @@ export * from './loaders/VTKLoader.js';\n export * from './loaders/XYZLoader.js';\n \n export * from './materials/MeshGouraudMaterial.js';\n+export * from './materials/LDrawConditionalLineMaterial.js';\n+export * from './materials/MeshPostPro... | 2024-10-28T08:44:58 |
denoland/deno | 48f273b8c916a3cab5dd3aadc11b541647813790 | 9e21ce5532ed3e6ac90d04a90f6c1b5ffb4f52b4 | fix(ext/node): process.moduleLoadList as undefined (#31022) | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -833,6 +833,8 @@ process.features = { inspector: false };\n // TODO(kt3k): Get the value from --no-deprecation flag.\n process.noDeprecation = false;\n \n+process.moduleLoadList = [];\n+\n if (isWindows) {\n delete process.getgid;\n delete process.... | 2025-10-20T14:51:46 |
vuejs/vue | 303824ea9c7614167ee6c5bd26c33b35ad6bf474 | 41ef650f9db5143a39019f4f56441b24a61c2efc | default slot should use fallback content when it contains all whitespace nodes (fix #5097) | [
{
"path": "src/core/instance/render-helpers/resolve-slots.js",
"patch": "@@ -29,16 +29,17 @@ export function resolveSlots (\n defaultSlot.push(child)\n }\n }\n- // ignore single whitespace\n- if (defaultSlot.length && !(\n- defaultSlot.length === 1 &&\n- (defaultSlot[0].text === ' ' || d... | 2017-03-08T04:28:34 |
golang/go | 46e5e2b09a6df80a3b6472c5f7ca5739365b6676 | 3da03566858a1676b7d928366db11e301c511b94 | runtime: define PanicBounds in funcdata.h
The comment in funcdata.h says that the constants must agree
with those in internal/abi/symtab.go. Make that so.
Change-Id: Ib64146bfb31fdecfc1cc6ae03ae746a1b4a4d22e
Reviewed-on: https://go-review.googlesource.com/c/go/+/715521
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-... | [
{
"path": "src/runtime/funcdata.h",
"patch": "@@ -12,6 +12,7 @@\n #define PCDATA_StackMapIndex 1\n #define PCDATA_InlTreeIndex 2\n #define PCDATA_ArgLiveIndex 3\n+#define PCDATA_PanicBounds 4\n \n #define FUNCDATA_ArgsPointerMaps 0 /* garbage collector blocks */\n #define FUNCDATA_LocalsPointerMaps 1",
... | 2025-10-27T23:51:01 |
mrdoob/three.js | 59100c44cb59a575b062f438b979eb0109b3bcb4 | f827e4585b6df9d40388d0b303bf1c13df2e2173 | Addons: WebGPU CSM shadows - using shadowNode (#29610)
* CSM shadows - using shadowNode
* remove accidentally included file
* remove test logging
* Update CSMShadowNode.js
Fix main frustum with WebGL backend.
* rework
* handle camera changes
* CSMShadowNode: Clean up.
* CMSShadowNode: Fix casca... | [
{
"path": "examples/files.json",
"patch": "@@ -411,6 +411,7 @@\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",\n \t\t\"webgpu_shadowmap\",\n+\t\t\"webgpu_shadowmap_csm\",\n \t\t\"webgpu_shadowmap_opacity\",\n \t\t\"webgpu_shadowmap_progressive\",\n \t\t\"webgpu_shadowmap_vsm\",",
"additions": 1,
... | 2024-10-26T10:18:47 |
denoland/deno | 00353e7494b093f9ffd82c11e922718a302806e6 | 7912110a938bc41c204d94f491bc4b93c6e0385a | fix(npm): occasional panic when upgrading npm package constraints (#31006)
Closes https://github.com/denoland/deno/issues/30997 | [
{
"path": "Cargo.lock",
"patch": "@@ -2559,9 +2559,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.41.0\"\n+version = \"0.41.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"00d083e04150ff9a330abe8f7a9f702dc9bee98b5d438b27d4ab975dc55fbd5c\"... | 2025-10-17T16:38:27 |
vuejs/vue | a524919d21eb1473b1ac0f61df112ae0f2aa5b29 | 2afaac2b397b4b04713488aeb62e5e222e5dc121 | fix v-on inline function expression with modifiers (fix #5120) | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -48,12 +48,19 @@ function genHandler (\n ): string {\n if (!handler) {\n return 'function(){}'\n- } else if (Array.isArray(handler)) {\n+ }\n+\n+ if (Array.isArray(handler)) {\n return `[${handler.map(handler => genHandler(name, handler))... | 2017-03-08T03:27:43 |
golang/go | 12c8d14d947ba922e19e3360ce5decd2bb848257 | 1f4d14e493516af6017ed9b467e7daf772752f98 | errors: document that the target of Is must be comparable
If target is not comparable, then errors.Is(err, target) can panic.
(Put another way, if target == target panics, then Is can panic.)
Document that the target must be comparable.
For #74488
Change-Id: I694dc4c91a608b80f044f06dd1c6ac32b8e77c9c
Reviewed-on: ht... | [
{
"path": "src/errors/wrap.go",
"patch": "@@ -25,6 +25,7 @@ func Unwrap(err error) error {\n }\n \n // Is reports whether any error in err's tree matches target.\n+// The target must be comparable.\n //\n // The tree consists of err itself, followed by the errors obtained by repeatedly\n // calling its Unwr... | 2025-10-27T19:27:12 |
mrdoob/three.js | f827e4585b6df9d40388d0b303bf1c13df2e2173 | 40367cd832510541e4534312605f5eb3c78a3a69 | ProgressiveLightMap: Add WebGPU version. (#29749)
* ProgressiveLightMapGPU: Initial commit.
* ProgressiveLightMap: Apply some fixes.
* ProgressiveLightMapGPU: More fixes.
* ProgressiveLightMap: Finalize implementation.
* E2E: Update screenshot. | [
{
"path": "examples/files.json",
"patch": "@@ -412,6 +412,7 @@\n \t\t\"webgpu_shadertoy\",\n \t\t\"webgpu_shadowmap\",\n \t\t\"webgpu_shadowmap_opacity\",\n+\t\t\"webgpu_shadowmap_progressive\",\n \t\t\"webgpu_shadowmap_vsm\",\n \t\t\"webgpu_skinning\",\n \t\t\"webgpu_skinning_instancing\",",
"additions... | 2024-10-25T17:57:43 |
vuejs/vue | 0bcad13bb3c61037e82a19c8cd3a8dbaf7b4b0d0 | e12d96a1325ae4ed3e5520c1de68f5cd774e5515 | Reorganize and update PR template (#5106)
* Reorganize and update PR template
* Update PULL_REQUEST_TEMPLATE.md
* Remove required info for bugfixes | [
{
"path": ".github/PULL_REQUEST_TEMPLATE.md",
"patch": "@@ -3,38 +3,33 @@ Please make sure to read the Pull Request Guidelines:\n https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines\n -->\n \n-<!-- ISSUE TEMPLATE -->\n-**Please check if the PR fulfills these requirements**\... | 2017-03-08T02:18:02 |
golang/go | 2c91c33e88c68a5f6cc2f10296698faa305f6267 | 73d7635fae502f63a3774e1265f739bff8778113 | crypto/subtle,cmd/compile: add intrinsics for ConstantTimeSelect and *Eq
Targeting crypto/subtle rather than
crypto/internal/fips140/subtle after discussion with Filippo.
goos: linux
goarch: amd64
pkg: crypto/subtle
cpu: AMD Ryzen 5 3600 6-Core Processor
│ /tmp/old.logs │ /tmp/new.l... | [
{
"path": "src/cmd/compile/internal/ssagen/intrinsics.go",
"patch": "@@ -1602,6 +1602,36 @@ func initIntrinsics(cfg *intrinsicBuildConfig) {\n \t\t\treturn s.newValue1(ssa.OpZeroExt8to64, types.Types[types.TUINT64], out)\n \t\t},\n \t\tsys.AMD64)\n+\n+\t/******** crypto/subtle ********/\n+\t// We implement ... | 2025-10-26T21:19:30 |
mrdoob/three.js | 1978cad9fba8027b08a649e90edb919dae97659b | e7e4ceb8901a428e047aaeecef6c79b55115151b | ProgressiveLightMap: Remove usage of `THREE` namespace. (#29747)
* ProgressiveLightMap: Remove usage of `THREE` namespace.
* ProgressiveLightMap: Fix docs. | [
{
"path": "examples/jsm/misc/ProgressiveLightMap.js",
"patch": "@@ -1,4 +1,4 @@\n-import * as THREE from 'three';\n+import { DoubleSide, FloatType, HalfFloatType, Mesh, MeshBasicMaterial, MeshPhongMaterial, PlaneGeometry, Scene, WebGLRenderTarget } from 'three';\n import { potpack } from '../libs/potpack.mo... | 2024-10-25T08:56:35 |
denoland/deno | 05958afda0943917c1d0b5a039c1d9141fb56da0 | a44f0cb99fe4b7a4c5117ec91efcc71b6bdc7fe0 | fix(npm): handle deno run/install of npm package with only directories.bin (#30919) | [
{
"path": "Cargo.lock",
"patch": "@@ -6290,6 +6290,7 @@ dependencies = [\n \"deno_semver\",\n \"futures\",\n \"lazy-regex\",\n+ \"log\",\n \"once_cell\",\n \"path-clean\",\n \"pretty_assertions\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/task_runner... | 2025-10-17T16:06:15 |
vuejs/vue | e12d96a1325ae4ed3e5520c1de68f5cd774e5515 | 7010d0ffc52809498ee3de4087a6b4b70c62727b | chore(parser.spec): fix an IE conditional test with a typo (#5102)
* chore(parser.spec): fix an IE conditional test with a typo
* check children.length is 0, instead of undefined | [
{
"path": "test/unit/modules/compiler/parser.spec.js",
"patch": "@@ -504,6 +504,6 @@ describe('parser', () => {\n </div>\n `, options)\n expect(ast.tag).toBe('div')\n- expect(ast.chilldren).toBeUndefined()\n+ expect(ast.children.length).toBe(0)\n })\n })",
"additions": 1,
"dele... | 2017-03-08T02:17:08 |
golang/go | 9a77aa4f083f7458a29c7c13adfe3d2ca8c864ea | 77dc1380308f5129952c16b6940dea7ddd4e17b9 | cmd/compile: add position info to sccp debug messages
Change-Id: Ic568dd3b2e3ebebb1b6aaa41ee78a12d4e8d3f06
Reviewed-on: https://go-review.googlesource.com/c/go/+/714221
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Jorropo <jorropo.pgm@gmail.com>
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-TryBo... | [
{
"path": "src/cmd/compile/internal/ssa/sccp.go",
"patch": "@@ -4,10 +4,6 @@\n \n package ssa\n \n-import (\n-\t\"fmt\"\n-)\n-\n // ----------------------------------------------------------------------------\n // Sparse Conditional Constant Propagation\n //\n@@ -118,7 +114,7 @@ func sccp(f *Func) {\n \tcon... | 2025-10-25T20:08:59 |
mrdoob/three.js | 35adad2d28f722883e9e0ec2fdd0d5408e30bf21 | 4e6f91464054afd31d5b89ce123cc6db695e17d0 | KTX2Loader: Support transcoding UASTC HDR to BC6H and RGBA16 (#29730)
* KTX2Loader: Support transcoding UASTC HDR to BC6H and RGBA16
* GLTFLoader: Fix incorrect texture.generateMipmaps setting | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -3230,7 +3230,7 @@ class GLTFParser {\n \t\t\ttexture.minFilter = WEBGL_FILTERS[ sampler.minFilter ] || LinearMipmapLinearFilter;\n \t\t\ttexture.wrapS = WEBGL_WRAPPINGS[ sampler.wrapS ] || RepeatWrapping;\n \t\t\ttexture.wrapT = WEBGL_WRAPPINGS[ ... | 2024-10-24T21:27:32 |
denoland/deno | a44f0cb99fe4b7a4c5117ec91efcc71b6bdc7fe0 | e8fe235d54ec51bccb553fdce297814df5f722da | fix(ext/node): support option object parameter on `fs.write` and `fs.writeSync` (#30999)
Closes #30972
Other changes:
- Re-enables ignored tests on `tests/unit_node/_fs/_fs_write_test.ts`
- Ported the polyfill to `.ts`, though defining the types are tricky
since our implementation (ported from node) mutates a lot of ... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -537,7 +537,7 @@ deno_core::extension!(deno_node,\n \"_fs/_fs_unlink.ts\",\n \"_fs/_fs_utimes.ts\",\n \"_fs/_fs_watch.ts\",\n- \"_fs/_fs_write.mjs\",\n+ \"_fs/_fs_write.ts\",\n \"_fs/_fs_writeFile.ts\",\n \"_fs/_fs_writev.ts\",\n \"_nex... | 2025-10-17T12:28:31 |
vuejs/vue | 7010d0ffc52809498ee3de4087a6b4b70c62727b | 8acfdb31d2b15f2e49579b380fdc1b14472eb836 | chore(model-select.spec): add a check for value binding and fix some typo (#5092)
* chore: add a check for value binding
* chore: fix some typo | [
{
"path": "test/unit/features/directives/model-select.spec.js",
"patch": "@@ -80,9 +80,14 @@ describe('Directive v-model select', () => {\n waitForUpdate(function () {\n expect(vm.$el.value).toBe('3')\n expect(vm.$el.childNodes[2].selected).toBe(true)\n+\n updateSelect(vm.$el, '1')\n ... | 2017-03-08T02:14:55 |
golang/go | 53be78630a25cfe53a1bf3e97e000bbe97848286 | dec2b4c83dd8b86b56e901f832819e76ff6969df | cmd/compile: use topo-sort in prove to correctly learn facts while walking once
Fixes #68857
Change-Id: Ideb359cc6f1550afb4c79f02d25a00d0ae5e5c50
Reviewed-on: https://go-review.googlesource.com/c/go/+/714920
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
Auto-Submit: Jo... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/allocators.go",
"patch": "@@ -122,6 +122,11 @@ func genAllocators() {\n \t\t\ttyp: \"[]ID\",\n \t\t\tbase: \"LimitSlice\",\n \t\t},\n+\t\t{\n+\t\t\tname: \"UintSlice\",\n+\t\t\ttyp: \"[]uint\",\n+\t\t\tbase: \"LimitSlice\",\n+\t\t},\n \t}\n \n \tw := new(bytes.... | 2025-10-25T15:00:18 |
denoland/deno | e43662812db4f1c9c51aec875781d80593727313 | 377aed98509fc48537401f472da180eda9180549 | fix(lockfile): purged package reqs should be removed from the jsr deps when changing workspace config (#30998) | [
{
"path": "Cargo.lock",
"patch": "@@ -2378,9 +2378,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_lockfile\"\n-version = \"0.32.1\"\n+version = \"0.32.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"64deefbf7192aab1428bf68d2d221cf3161c47481d03a50f4ffc43c7ee104... | 2025-10-16T15:11:17 |
vuejs/vue | 8acfdb31d2b15f2e49579b380fdc1b14472eb836 | be9ac624c81bb698ed75628fe0cbeaba4a2fc991 | fix a typo on type definition name (#5103) | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -7,7 +7,7 @@ import { camelize, no } from 'shared/util'\n \n type TransformFunction = (el: ASTElement, code: string) => string;\n type DataGenFunction = (el: ASTElement) => string;\n-type DirctiveFunction = (el: ASTElement, dir: ASTDirective, warn: Fun... | 2017-03-06T08:56:22 |
golang/go | dec2b4c83dd8b86b56e901f832819e76ff6969df | 916e682d5167faad1bb961ec28cac74f05f145f7 | runtime: avoid bound check in freebsd binuptime
Fixes #76062
Change-Id: I683c1232aaeac12b0b3688472bb277adb95ad542
Reviewed-on: https://go-review.googlesource.com/c/go/+/715180
Reviewed-by: Keith Randall <khr@golang.org>
Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/runtime/vdso_freebsd.go",
"patch": "@@ -54,6 +54,9 @@ func binuptime(abs bool) (bt bintime) {\n \t\t}\n \n \t\tcurr := atomic.Load(&timekeepSharedPage.current) // atomic_load_acq_32\n+\t\tif curr >= uint32(len(timehands)) {\n+\t\t\treturn zeroBintime\n+\t\t}\n \t\tth := &timehands[curr]\n \t\... | 2025-10-27T09:47:20 |
denoland/deno | 377aed98509fc48537401f472da180eda9180549 | 98f62cee78e85bfc47c62ed703777c6bc8794f1c | fix(lsp): refresh configuration when tsconfig.json is changed (#30993) | [
{
"path": "cli/lsp/compiler_options.rs",
"patch": "@@ -1,6 +1,7 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n use std::collections::BTreeMap;\n+use std::collections::HashSet;\n use std::sync::Arc;\n \n use deno_config::deno_json::CompilerOptions;\n@@ -17,6 +18,7 @@ use crate::lsp::config::... | 2025-10-15T21:38:00 |
vuejs/vue | be9ac624c81bb698ed75628fe0cbeaba4a2fc991 | 61930e0cc6d7ed8873251108ac6ea6c08b0f01ad | chore(src): fix some typos (#5104) | [
{
"path": "src/core/observer/dep.js",
"patch": "@@ -34,7 +34,7 @@ export default class Dep {\n }\n \n notify () {\n- // stablize the subscriber list first\n+ // stabilize the subscriber list first\n const subs = this.subs.slice()\n for (let i = 0, l = subs.length; i < l; i++) {\n sub... | 2017-03-06T08:54:30 |
golang/go | 916e682d5167faad1bb961ec28cac74f05f145f7 | 2835b994fb8c7125180d912a457308d64a30542f | cmd/internal/obj, cmd/asm: reclassify the offset of memory access operations on loong64
This CL also fixes the encoding error of LL/SC[V] instruction and
adds the handling of offset greater than 16 bits in MOV{W/V}P instructions.
Change-Id: I7a8fab4b68a6839da81c5e59af1f42289d00ef61
Reviewed-on: https://go-review.goog... | [
{
"path": "src/cmd/asm/internal/asm/endtoend_test.go",
"patch": "@@ -467,6 +467,7 @@ func TestLOONG64Encoder(t *testing.T) {\n \ttestEndToEnd(t, \"loong64\", \"loong64enc3\")\n \ttestEndToEnd(t, \"loong64\", \"loong64enc4\")\n \ttestEndToEnd(t, \"loong64\", \"loong64enc5\")\n+\ttestEndToEnd(t, \"loong64\", ... | 2025-09-24T09:21:40 |
denoland/deno | 98f62cee78e85bfc47c62ed703777c6bc8794f1c | 6edef5c7c718917338283db70ee9b56272bb2db6 | fix(rt): prevent `Event` to be overwritten on bootstrap (#30971)
Closes #30953
Ensures that the `Event` class always use the imported one from
`ext:deno_web/02_event.js`. | [
{
"path": "runtime/js/99_main.js",
"patch": "@@ -459,17 +459,17 @@ function processRejectionHandled(promise, reason) {\n }\n \n function dispatchLoadEvent() {\n- globalThis_.dispatchEvent(new Event(\"load\"));\n+ globalThis_.dispatchEvent(new event.Event(\"load\"));\n }\n \n function dispatchBeforeUnloadE... | 2025-10-15T13:41:20 |
mrdoob/three.js | a2befb6457af1cc0efdb5c5e136dd853b9ebafc9 | 226a9ed5059aed0806bb816a17d5e0f8cf4f444a | NodeMaterialObserver: Fix buffer resize when `transmission` is used (#29735) | [
{
"path": "src/materials/nodes/manager/NodeMaterialObserver.js",
"patch": "@@ -1,3 +1,5 @@\n+import { Vector2 } from '../../../math/Vector2.js';\n+\n const refreshUniforms = [\n \t'alphaMap',\n \t'alphaTest',\n@@ -51,6 +53,8 @@ const refreshUniforms = [\n \t'transmissionMap'\n ];\n \n+const _vector2 = /*@__... | 2024-10-23T17:10:46 |
vuejs/vue | 61930e0cc6d7ed8873251108ac6ea6c08b0f01ad | 2dc177ffb3fa0ede18841806533ba034e71195d5 | chore(test): fix some typos (#5101) | [
{
"path": "test/e2e/specs/todomvc.js",
"patch": "@@ -85,7 +85,7 @@ module.exports = {\n createNewItem('test')\n .assert.count('.todo', 2)\n \n- // complted filter\n+ // completed filter\n browser.click('.filters li:nth-child(3) a')\n .assert.count('.todo', 2)\n .assert.coun... | 2017-03-06T08:50:49 |
golang/go | d8a32f3d4b093d6a0d2235bf729bbef1d0b489d2 | b2af92270f5e19c759b94912470a32b5e44a5b2e | go/types, types2: wrap Named.fromRHS into Named.rhs
In debug mode, the Named.rhs method asserts that Named is in a state
with Named.fromRHS populated.
This caught a missing call to Named.unpack in validtype, which has been
added.
Change-Id: Id3f95f78f03d98a6efe87af6ac24f2ac2e285f96
Reviewed-on: https://go-review.goo... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -562,6 +562,16 @@ func (t *Named) methodIndex(name string, foldCase bool) int {\n \treturn -1\n }\n \n+// rhs returns [Named.fromRHS].\n+//\n+// In debug mode, it also asserts that n is in an appropriate state.\n+func (n *Named) rhs() Type {... | 2025-10-23T16:15:21 |
denoland/deno | 6edef5c7c718917338283db70ee9b56272bb2db6 | 395ed78151600d6b71bbb3390e667017d00aa8df | fix(docs): documented allowed subdomain should be gist and not user for githubusercontent.com (#30913)
https://github.com/denoland/deno/blob/415acdd462dcfc1c6fd8098273a9d4d269c15e4d/cli/args/mod.rs#L1111-L1112
Closes https://github.com/denoland/deno/issues/30908 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -3869,7 +3869,7 @@ fn permission_args(app: Command, requires: Option<&'static str>) -> Command {\n <g>-W, --allow-write[=<<PATH>...]</> Allow file system write access. Optionally specify allowed paths.\n <p... | 2025-10-14T20:59:35 |
mrdoob/three.js | 3293572ab5b530f785f33d585c3cc4107383516e | c58511d0e95d5d63c672cd8020dd2a3bf6c102e3 | WebGLRenderer: Allow for copying 2d targets to and from layers of 3d textures (#29710)
* handle 2d and 3d cases in copyTextureToTexture3D
* Fix 3d check
* comments
* More comments
* Call 3d version from copyTextureToTexture
* Move texture properties back
* Adjust condition
* Deprecate copyTextureT... | [
{
"path": "docs/api/en/renderers/WebGLRenderer.html",
"patch": "@@ -380,21 +380,13 @@ <h3>\n \t\t</p>\n \n \t\t<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>... | 2024-10-23T09:30:58 |
vuejs/vue | eb58694f6fec3e2d32c69a4f13a89650bca2e82b | c683caff3ae627ffc0a0d3a8357101c3b4a5653e | chore(filter.spec): fix variable-- test case (#5094) | [
{
"path": "test/unit/features/filter/filter.spec.js",
"patch": "@@ -125,7 +125,7 @@ describe('Filters', () => {\n it('handle division with variable--', () => {\n const vm = new Vue({\n data: { a: 7 },\n- template: `<div>{{ a++ / 2 | double }}</div>`,\n+ template: `<div>{{ a-- / 2 | dou... | 2017-03-05T00:40:49 |
golang/go | b2af92270f5e19c759b94912470a32b5e44a5b2e | 92decdcbaaef89e93163bb54885aa52fb5a13881 | go/types, types2: verify stateMask transitions in debug mode
Recently, we've changed the representation of Named type state from
an integer to a bit mask, which is a bit more complicated. To make
sure we uphold state invariants, we are adding a verification step
on each state transition.
This uncovered a few places w... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -215,7 +215,7 @@ func NewNamed(obj *TypeName, underlying Type, methods []*Func) *Named {\n // All others:\n // Effectively, nothing happens.\n func (n *Named) unpack() *Named {\n-\tif n.stateHas(unpacked | lazyLoaded) { // avoid locking belo... | 2025-10-22T18:04:09 |
mrdoob/three.js | 8be6bed537fed7226fdfc5acb09f27a4bfca99ee | 226c32cf1efe94a008a5c9a4607593f917bd5e39 | fix: uuid translation in Korean (#29731) | [
{
"path": "docs/api/ko/core/Object3D.html",
"patch": "@@ -197,7 +197,7 @@ <h3>[property:Object userData]</h3>\n \t\t<h3>[property:String uuid]</h3>\n \t\t<p>\n \t\t이 객체 인스턴스의 [link:http://en.wikipedia.org/wiki/Universally_unique_identifier UUID]입니다.\n-\t\t자동으로 할당되며, 수정할 수 없습니다.\n+\t\t자동으로 할당되니 수정하지 마십시오.\n ... | 2024-10-23T08:35:09 |
denoland/deno | 395ed78151600d6b71bbb3390e667017d00aa8df | 5cfc4cfd7fc343fe9e27a12979d31d123d3a2984 | fix(check): respect "compilerOptions.skipLibCheck" for graph errors (#30989) | [
{
"path": "cli/lsp/compiler_options.rs",
"patch": "@@ -23,6 +23,7 @@ pub struct LspCompilerOptionsData {\n pub workspace_dir_or_source_url: Option<Arc<Url>>,\n pub compiler_options: Arc<CompilerOptions>,\n pub compiler_options_types: Arc<Vec<(Url, Vec<String>)>>,\n+ pub skip_lib_check: bool,\n pub ... | 2025-10-14T19:32:41 |
vuejs/vue | 62e4f2b3d1281297e1671b924c7fb932b56e1961 | 40bc5923ae69062f6bbd5f3cba34e2a1a3f1cf70 | chore: fix some closetag mismatches (#5088) | [
{
"path": "test/unit/features/component/component-slot.spec.js",
"patch": "@@ -153,7 +153,7 @@ describe('Component slot', () => {\n b: 2,\n show: true\n },\n- template: '<test :show=\"show\"><p slot=\"b\">{{b}}</a><p>{{a}}</p></test>',\n+ template: '<test :show=\"show\"><p sl... | 2017-03-04T15:10:11 |
golang/go | 189f2c08cc769fdc98d28ec536010b6f119e645f | f619b4a00d6a7ce2fbb84729cdfe764697cb2171 | time: rewrite IsZero method to use wall and ext fields
Using wall and ext fields will be more efficient.
Fixes #76001
Change-Id: If2b9f597562e0d0d3f8ab300556fa559926480a0
GitHub-Last-Rev: 4a91948413079047cb6c382ed29844f456f3064d
GitHub-Pull-Request: golang/go#76006
Reviewed-on: https://go-review.googlesource.com/c/g... | [
{
"path": "src/time/time.go",
"patch": "@@ -260,7 +260,11 @@ func (t *Time) mono() int64 {\n // IsZero reports whether t represents the zero time instant,\n // January 1, year 1, 00:00:00 UTC.\n func (t Time) IsZero() bool {\n-\treturn t.sec() == 0 && t.nsec() == 0\n+\t// If hasMonotonic is set in t.wall, t... | 2025-10-27T04:43:32 |
mrdoob/three.js | 68ea403185f2acad6a29a400df2fa501054a5b79 | 86f14311168e056c800bedb56c1b579a4b84408c | TiledLightsNode: Fix light intensity (#29723)
* TiledLightsNode: Fix light intensity
* Update webgpu_lights_tiled.jpg | [
{
"path": "examples/jsm/tsl/lighting/TiledLightsNode.js",
"patch": "@@ -94,9 +94,9 @@ class TiledLightsNode extends THREE.LightsNode {\n \t\t\tdata[ offset + 2 ] = _vector3.z;\n \t\t\tdata[ offset + 3 ] = light.distance;\n \n-\t\t\tdata[ lineSize + offset + 0 ] = light.color.r;\n-\t\t\tdata[ lineSize + offs... | 2024-10-22T14:41:02 |
vuejs/vue | d6999c19c4c18d5eedfd3a7741e17b0e34e8a8df | 1b38a261c5ad852da1026d4058b1100e075f8f4e | Fix unnecessary conditional. (#5054) | [
{
"path": "src/core/util/lang.js",
"patch": "@@ -29,14 +29,13 @@ const bailRE = /[^\\w.$]/\n export function parsePath (path: string): any {\n if (bailRE.test(path)) {\n return\n- } else {\n- const segments = path.split('.')\n- return function (obj) {\n- for (let i = 0; i < segments.length... | 2017-03-03T04:04:04 |
golang/go | ca379b1c562c22889b73a17915688e35cbb5ceb9 | 83a44bde645eb56495504a2d3845fa1c1ccf7aa5 | cmd/go: remove loaderstate dependency
This change removes the dependency on the module loader state from the
`QueryMatchesMainModulesError.Error()` method.
This commit is part of the overall effort to eliminate global
modloader state.
Change-Id: I47241587a0bf9b578931628f35ed3b936a0cb04a
Reviewed-on: https://go-revie... | [
{
"path": "src/cmd/go/internal/modget/get.go",
"patch": "@@ -735,7 +735,12 @@ func (r *resolver) queryNone(loaderstate *modload.State, ctx context.Context, q\n \t\t\t\t// However, neither of those behaviors would be consistent with the\n \t\t\t\t// plain meaning of the query. To try to reduce confusion, rej... | 2025-10-24T16:52:37 |
denoland/deno | 5cfc4cfd7fc343fe9e27a12979d31d123d3a2984 | dd10efa4ef27f4e2700fb4df6dd2066a1e9bb29b | fix(npm): add a deduplication pass and reduce lockfile diffs (#30973)
1. deno_lockfile no longer purges npm deps, but instead just purges the
root specifiers that have changed.
2. deno_npm then reuses more dependencies during dependency resolution.
3. deno_npm now does a final deduplication pass on the graph in order
... | [
{
"path": "Cargo.lock",
"patch": "@@ -2187,9 +2187,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_graph\"\n-version = \"0.102.0\"\n+version = \"0.102.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"3ff633db1c343707713aec1f6f95f8c5b6658d2fb544e3f000de678184c2bd... | 2025-10-14T15:58:10 |
mrdoob/three.js | 9aa74de1baa92ec78ec5bd4c0ba06dc109a67609 | cdc33fedcf22c24f8ae577f106b48fb9a3aa5c83 | `LensflareNode`, `OutlineNode`: Added *Node suffix (#29719) | [
{
"path": "examples/jsm/tsl/display/LensflareNode.js",
"patch": "@@ -33,11 +33,11 @@ class LensflareNode extends TempNode {\n \t\t\tdownSampleRatio = 4\n \t\t} = params;\n \n-\t\tthis.ghostTint = ghostTint;\n-\t\tthis.threshold = threshold;\n-\t\tthis.ghostSamples = ghostSamples;\n-\t\tthis.ghostSpacing = g... | 2024-10-21T16:12:18 |
vuejs/vue | 3294eba5a572f03290ce38f15625732dafd8e45d | 0b902e0c28f4f324ffb8efbc9db74127430f8a42 | fix v-on .left .right compat with keyboard events (fix #5046) | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -29,9 +29,9 @@ const modifierCode: { [key: string]: string } = {\n shift: genGuard(`!$event.shiftKey`),\n alt: genGuard(`!$event.altKey`),\n meta: genGuard(`!$event.metaKey`),\n- left: genGuard(`$event.button !== 0`),\n- middle: genGuard(`$eve... | 2017-03-03T03:40:15 |
golang/go | 0afbeb510269dc4aaaff733166085eba42144712 | 7b506d106fce234b165ea6322e5ee1356490220e | runtime: add ppc and s390 to linux 32 bits syscall build constraints for gccgo
Theses are not supported by the go compiler but it may helps porting to gccgo.
This is similar to reverting CL 712740 however unlike reverting:
- it fixes the build tags so that 32 & 64 bits
constraints are complement of each other
- it ... | [
{
"path": "src/runtime/os_linux_futex32.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 linux && (386 || arm || mips || mipsle)\n+//go:build linux && (386 || arm || mips || mipsle || (gccgo && (ppc || ... | 2025-10-23T08:47:58 |
mrdoob/three.js | 1075735e64db821de7692adc6de9ff186ce0f9ec | 167c022af428becc3048483601f504a836b6d3c7 | WebGLRenderer: Stable reversed Z buffer implementation. (#29579)
* fix: stable reversed Z buffer implementation
Fix: reset clip state when reset is called
Fix: valid depth clear value when reversed is enabled
Feat: non-persistent reversedZ state ( can be controlled via renderer.state.buffers.depth.setReversed(... | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -70,6 +70,7 @@ class WebGLRenderer {\n \t\t\tpreserveDrawingBuffer = false,\n \t\t\tpowerPreference = 'default',\n \t\t\tfailIfMajorPerformanceCaveat = false,\n+\t\t\treverseDepthBuffer = false,\n \t\t} = parameters;\n \n \t\tthis.isWebGLRenderer = tr... | 2024-10-21T16:09:32 |
denoland/deno | dd10efa4ef27f4e2700fb4df6dd2066a1e9bb29b | e2b107867ea40395ff7999064fd9494eb09e2153 | fix: show referrer range in deno_core loader errors (#30981) | [
{
"path": "Cargo.lock",
"patch": "@@ -1930,9 +1930,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.362.0\"\n+version = \"0.363.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"be08f717b55b73bbb9a96e8c6854f8693d34f5c4dd41c7284c338d923709473... | 2025-10-14T13:09:12 |
vuejs/vue | 0b902e0c28f4f324ffb8efbc9db74127430f8a42 | 46c3866b0fbad862d79200d52b83f2113807d913 | handle circular reference in looseEqual (fix #5055) | [
{
"path": "src/shared/util.js",
"patch": "@@ -211,7 +211,12 @@ export function looseEqual (a: mixed, b: mixed): boolean {\n const isObjectA = isObject(a)\n const isObjectB = isObject(b)\n if (isObjectA && isObjectB) {\n- return JSON.stringify(a) === JSON.stringify(b)\n+ try {\n+ return JSON... | 2017-03-03T02:48:53 |
mrdoob/three.js | ca20cf971d28fd91f7d345399e3f54973b59654c | 9c548230ad8ec869d44e3c0d14deec010b152734 | Update OutlineNode.js
Fix parameter names. | [
{
"path": "examples/jsm/tsl/display/OutlineNode.js",
"patch": "@@ -431,4 +431,4 @@ class OutlineNode extends TempNode {\n \n export default OutlineNode;\n \n-export const outline = ( scene, camera, selectedObjects ) => nodeObject( new OutlineNode( scene, camera, selectedObjects ) );\n+export const outline =... | 2024-10-21T15:21:54 |
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.