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
denoland/deno
16f6e2c3e8178e8435f4a9a2fbbecda4da7bea59
08a0846b4b08598a3e91cf7050e4040917600e1e
feat: V8 14.2 (#31178) Also locks `temporal_capi` to version 0.1.0, instead of using 0.1.1 which causes wrong calendar to by used by default. Closes https://github.com/denoland/deno/issues/30782 Closes https://github.com/denoland/deno/issues/30992 Closes https://github.com/denoland/deno/issues/30776 Closes https://gi...
[ { "path": "Cargo.lock", "patch": "@@ -791,9 +791,9 @@ checksum = \"1bf2a5fb3207c12b5d208ebc145f967fea5cac41a021c37417ccc31ba40f39ee\"\n \n [[package]]\n name = \"calendrical_calculations\"\n-version = \"0.2.2\"\n+version = \"0.2.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-chec...
2025-11-04T14:25:15
mrdoob/three.js
05cfdd9da842c208edb1fe055d439d70d1008493
89d1a06fad4173937fe1e67e4016aadaca0dad1a
GLSLNodeBuilder: Fix varying `color` type (#29950)
[ { "path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js", "patch": "@@ -570,7 +570,7 @@ ${ flowData.code }\n \t\t\tfor ( const varying of varyings ) {\n \n \t\t\t\tif ( shaderStage === 'compute' ) varying.needsInterpolation = true;\n-\t\t\t\tconst type = varying.type;\n+\t\t\t\tconst type = this.ge...
2024-11-23T18:27:29
vuejs/vue
c82546c54b851cb75d1fe17bd9d35038904efa24
561bb467baa49606e011a8d1e675b385b156763a
fix keep-alive pruning active instance
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -1,6 +1,5 @@\n /* @flow */\n \n-import { callHook } from 'core/instance/lifecycle'\n import { getFirstComponentChild } from 'core/vdom/helpers/index'\n \n type VNodeCache = { [key: string]: ?VNode };\n@@ -21,13 +20,15 @@ function matches (pattern: ...
2017-04-07T08:11:40
golang/go
a494a26bc2d0ad52e0e265c2a1b9a3a964118699
a8fb94969cb98efd84fa4f6fdccc14a5866828be
cmd/go: fix TestScript/vet_flags Test caching can cause an incorrect test failure when the vet step result is reused, leading to not printing a vet command line at all. Avoid that with -a (we are also using -n so no real work is done). Fixes one failing case in 'go test cmd/go' on my Mac. Change-Id: I028284436b1ecc7...
[ { "path": "src/cmd/go/testdata/script/vet_flags.txt", "patch": "@@ -20,7 +20,8 @@ stderr '-unsafeptr'\n ! stderr '-unsafeptr=false'\n \n # -unreachable is disabled during test but on during plain vet.\n-go test -n runtime\n+# The -a makes sure the vet result is not cached, or else we won't print the command...
2025-11-05T18:49:48
denoland/deno
08a0846b4b08598a3e91cf7050e4040917600e1e
b885041588f060f2dacf35dc6e184b530b36ca92
chore: fix promote_to_release workflow (#31186) Part of https://github.com/denoland/deno/issues/31169
[ { "path": ".github/workflows/promote_to_release.yml", "patch": "@@ -48,7 +48,7 @@ jobs:\n - name: Run patchver for Windows\n shell: pwsh\n run: |\n- deno install -A -n patchver https://deno.land/x/patchver@0.2.0/cli.ts\n+ deno install -g -A -n patchver https://deno.la...
2025-11-04T13:43:07
vuejs/vue
1073035164b809872bf35a3b007848979f86f48a
931aaea8dc6481f59b3f9dcf7b304bb36e6e27ad
fix activate hook call timing (fix vue-router#1212)
[ { "path": "flow/vnode.js", "patch": "@@ -9,6 +9,7 @@ declare type VNodeComponentOptions = {\n }\n \n declare type MountedComponentVNode = {\n+ context: Component;\n componentOptions: VNodeComponentOptions;\n componentInstance: Component;\n parent: VNode;", "additions": 1, "deletions": 0, ...
2017-04-07T07:30:37
golang/go
a8fb94969cb98efd84fa4f6fdccc14a5866828be
04f05219c4f78b0f932485d2544b8c7193c04bb0
cmd/go: fix TestScript/tool_build_as_needed This test assumes that changing GOOS/GOARCH results in an unrunnable binary, but that's not true if the user has go_GOOS_GOARCH_exec programs in their path (like I do). This test was timing out waiting to create a gomote to run a windows/amd64 binary. Rewrite the test not t...
[ { "path": "src/cmd/go/testdata/script/tool_build_as_needed.txt", "patch": "@@ -40,13 +40,15 @@ rm $TOOLDIR/test2json$GOEXE\n go tool -n test2json\n ! stdout $NEWTOOLDIR${/}test2json$GOEXE\n # Set GOOS/GOARCH to different values than host GOOS/GOARCH.\n-env GOOS=windows\n-[GOOS:windows] env GOOS=linux\n-env ...
2025-11-05T19:05:45
mrdoob/three.js
ca5af63b0d5cb7f44dd024e01d1e712acf5722e9
0826376168553474fc2e3c01560d6e6524c0bcf4
GLSLNodeBuilder: Fix color space regression. (#29945)
[ { "path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js", "patch": "@@ -61,7 +61,7 @@ class GLSLNodeBuilder extends NodeBuilder {\n \n \t}\n \n-\tneedsColorSpaceToLinearSRGB( texture ) {\n+\tneedsToWorkingColorSpace( texture ) {\n \n \t\treturn texture.isVideoTexture === true && texture.colorSpace ...
2024-11-22T10:51:23
denoland/deno
945aebfe1f36e24173cf49be31d397ab59e1fe3d
6188ecc08d682592b585ab06d2fe560985c60dd9
ci: move lsp-tracing feature check to 'build-libs' job (#31173) This stage was needlessly slowing down the debug Linux build.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -702,13 +702,6 @@ const ci = {\n run:\n \"deno run --allow-read --allow-env --allow-sys ./tools/jsdoc_checker.js\",\n },\n- {\n- name: \"Check tracing build\",\n- if:\n- \"matrix.job ...
2025-11-03T15:53:37
vuejs/vue
ba138549dbba95ea019f0626fe185360723ddda2
c28b566f19459751244707e4efe458056c9bbdcf
fix style (#5383)
[ { "path": "benchmarks/big-table/demo.css", "patch": "@@ -1,5 +1,5 @@\n form {\n- margin-bottom: 15px ;\n+ margin-bottom: 15px;\n }\n \n td.hidden {", "additions": 1, "deletions": 1, "language": "CSS" }, { "path": "benchmarks/big-table/index.html", "patch": "@@ -71,12 +71,12 @@ <h1>...
2017-04-06T02:50:21
golang/go
9f3a108ee0d2f08b4994c4201e54e5a53acbc216
0e1bd8b5f17e337df0ffb57af03419b96c695fe4
os: ignore O_TRUNC errors on named pipes and terminal devices on Windows Prior to Go 1.24, os.OpenFile used to support O_TRUNC on named pipes and terminal devices, even when the truncation was really ignored. This behavior was consistent with Unix semantics. CL 618836 changed the implementation of os.OpenFile on Wind...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -131,6 +131,14 @@ func Openat(dirfd syscall.Handle, name string, flag uint64, perm uint32) (_ sysc\n \n \tif flag&syscall.O_TRUNC != 0 {\n \t\terr = syscall.Ftruncate(h, 0)\n+\t\tif err == ERROR_INVALID_PARAMETER {\n+\t\t\t// ERROR_INVALID...
2025-10-30T11:36:42
mrdoob/three.js
0826376168553474fc2e3c01560d6e6524c0bcf4
c2909f20d82e75f6aef1766fa079134d146460b8
WebGPUTextureUtils: Fix `dispose()` of `VideoTexture`. (#29944)
[ { "path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js", "patch": "@@ -230,7 +230,7 @@ class WebGPUTextureUtils {\n \t\tconst backend = this.backend;\n \t\tconst textureData = backend.get( texture );\n \n-\t\ttextureData.texture.destroy();\n+\t\tif ( textureData.texture !== undefined ) textureData.text...
2024-11-22T10:20:45
denoland/deno
6188ecc08d682592b585ab06d2fe560985c60dd9
d21201e2a0c022db4d370c447ec44e224a8808ed
ci: remove wpt_epoch job (#31171) This workflow is not useful anymore. It crashes constantly and requires manual intervention with every change. Gonna switch to manual updates.
[ { "path": ".github/workflows/wpt_epoch.yml", "patch": "@@ -1,80 +0,0 @@\n-# This CI job runs every night and tests all versions of Deno (canary and latest\n-# stable) across all OSes we support against the `epochs/daily` branch of WPT.\n-\n-name: wpt_epoch\n-\n-on:\n- schedule:\n- # Every night at 0:30 ...
2025-11-03T15:40:19
vuejs/vue
7d3c883f83332c13ca186f7e7ee5be40e47f85a7
4e12b25d785aa721d71ec2f553d150c8df15f875
fix functional context resolving merge errors
[ { "path": "src/core/instance/inject.js", "patch": "@@ -51,19 +51,7 @@ export function resolveInject (inject: any, vm: Component): ?Object {\n let source = vm\n while (source) {\n if (source._provided && provideKey in source._provided) {\n- /* istanbul ignore else */\n- ...
2017-04-05T07:55:44
golang/go
a5fe6791d79347d4c28af4b475b679ce7a726a28
a7d174ccaada72b836c1c535f056d3fff5b2d528
internal/syscall/windows: fix ReOpenFile sentinel error value ReOpenFile is documented to return INVALID_HANDLE_VALUE on error, but the previous definition was checking for 0 instead. Change-Id: Idec5e75e40b9f6c409e068d63a9b606781e80a46 Reviewed-on: https://go-review.googlesource.com/c/go/+/717320 Auto-Submit: Quim M...
[ { "path": "src/internal/syscall/windows/syscall_windows.go", "patch": "@@ -531,7 +531,7 @@ const (\n //sys\tGetOverlappedResult(handle syscall.Handle, overlapped *syscall.Overlapped, done *uint32, wait bool) (err error)\n //sys\tCreateNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxInstances uint3...
2025-11-03T15:29:06
mrdoob/three.js
dce25de35427843f9df1f0aed463efc2efdac488
8ce69e0fbf100cd8ab1b72902ca6a180d3d6abf0
Audio: Ensure progress is reset in `onEnded()`. (#29930) * fix: reset progress onEnded Audio with stop method * fix: Prevent warning by resetting progress when stopping audio without playback control
[ { "path": "src/audio/Audio.js", "patch": "@@ -328,6 +328,7 @@ class Audio extends Object3D {\n \tonEnded() {\n \n \t\tthis.isPlaying = false;\n+\t\tthis._progress = 0;\n \n \t}\n ", "additions": 1, "deletions": 0, "language": "JavaScript" } ]
2024-11-21T09:43:09
denoland/deno
d21201e2a0c022db4d370c447ec44e224a8808ed
361c83ea35b7f78b79b358e4458d8e0f68529f0d
fix(ext/node): implement `process:seteuid()` (#31160) Closes #31144
[ { "path": "ext/node/lib.rs", "patch": "@@ -458,6 +458,7 @@ deno_core::extension!(deno_node,\n ops::ipc::op_node_ipc_unref,\n ops::process::op_node_process_kill,\n ops::process::op_node_process_setegid<P>,\n+ ops::process::op_node_process_seteuid<P>,\n ops::process::op_process_abort,\n ...
2025-11-03T14:30:21
vuejs/vue
beee7d81430ea6e81c508d63994065c9341d0cf2
354c2f4922fe34932d4866da39cb8e0ac87e9edd
support v-on passive modifier (#5132) * support v-on passive modifier * fix supportsPassive and run unit when the test browser supports * add mutual exclusive warning * Fix typo * Fix typo * Remove extra line - CS fix
[ { "path": "src/compiler/helpers.js", "patch": "@@ -1,5 +1,6 @@\n /* @flow */\n \n+import { warn } from 'core/util/index'\n import { parseFilters } from './parser/filter-parser'\n \n export function baseWarn (msg: string) {\n@@ -41,6 +42,13 @@ export function addHandler (\n modifiers: ?ASTModifiers,\n im...
2017-04-05T06:35:16
golang/go
c7ccbddf22884f54885fd23143d1b2087ab6e53c
75b2bb1d1a62e69763aea6761b5be4b9c69e0214
cmd/compile/internal/ssa: more aggressive on dead auto elim Propagate "unread" across OpMoves. If the addr of this auto is only used by an OpMove as its source arg, and the OpMove's target arg is the addr of another auto. If the 2nd auto can be eliminated, this one can also be eliminated. This CL eliminates unnecessa...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -203,9 +203,27 @@ func (sr shadowRange) merge(lo, hi int64) shadowRange {\n // reaches stores then we delete all the stores. The other operations will then\n // be eliminated by the dead code elimination pass.\n func elimDeadAutosGeneric(f ...
2025-09-11T15:57:38
mrdoob/three.js
63949026deb3b3f40752fb9ff5c14546254a3aa3
e30ebff42f61007a985f6858ce58255e866506d2
WebGPURenderer: Add `PointShadowNode` (#29849) * Add `PointShadowNode` (WIP) * use webgpu * fix hash * cleanup * Update ShadowNode.js * revisions * revision * Update webgpu_lights_physical.jpg * ShadowNode: Add `getShadowFilterFn` * Add `Fn` sufix for shadow filters TSL function * PointSh...
[ { "path": "examples/files.json", "patch": "@@ -335,6 +335,7 @@\n \t\t\"webgpu_lights_custom\",\n \t\t\"webgpu_lights_ies_spotlight\",\n \t\t\"webgpu_lights_phong\",\n+\t\t\"webgpu_lights_physical\",\n \t\t\"webgpu_lights_rectarealight\",\n \t\t\"webgpu_lights_selective\",\n \t\t\"webgpu_lights_tiled\",", ...
2024-11-21T04:25:16
denoland/deno
361c83ea35b7f78b79b358e4458d8e0f68529f0d
b04d451d48198370ff8a5e95ca31f587a8bae935
fix(ext/node): implement `process.setegid()` (#31155) Closes #31116
[ { "path": "Cargo.lock", "patch": "@@ -2523,6 +2523,7 @@ dependencies = [\n \"libz-sys\",\n \"md-5\",\n \"md4\",\n+ \"nix 0.27.1\",\n \"node_resolver\",\n \"num-bigint\",\n \"num-bigint-dig\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/node/Cargo.toml"...
2025-11-03T13:27:53
vuejs/vue
354c2f4922fe34932d4866da39cb8e0ac87e9edd
bbec0763ab6eb8824c8bfb447844bfa2892ee47a
fix keep-alive cache incorrectly pruned with transition mode="out-in" (fix #5346)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -53,9 +53,11 @@ export function extractTransitionData (comp: Component): Object {\n }\n \n function placeholder (h: Function, rawChild: VNode): ?VNode {\n- return /\\d-keep-alive$/.test(rawChild.tag)\n- ? h('keep-alive')\n- ...
2017-04-03T07:32:23
golang/go
dd839f1d0037931395316ab13aefd3941aa959e8
6e165b4d176fb4c7fbb615b522a8b69d0b66c513
internal/strconv: handle %f with fixedFtoa when possible Everyone writes papers about fast shortest-output formatting. Eventually we also sped up fixed-length formatting %e and %g. But we've neglected %f, which falls back to the slow general code even for relatively trivial things like %.2f on 1.23. This CL uses the ...
[ { "path": "src/internal/strconv/ftoa.go", "patch": "@@ -146,28 +146,38 @@ func genericFtoa(dst []byte, val float64, fmt byte, prec, bitSize int) []byte {\n \t\treturn formatDigits(dst, shortest, neg, digs, prec, fmt)\n \t}\n \n-\t// TODO figure out when we can use fast code for f\n-\tif fmt != 'f' {\n-\t\t/...
2025-11-02T17:32:01
mrdoob/three.js
0a868eab9a6d6be330cdbb1a5f18c0d99c7c7ccb
20a54620d5737aa1001157afc21c5fa971e3b01a
fix SceneOptimizer (#29935)
[ { "path": "examples/jsm/utils/SceneOptimizer.js", "patch": "@@ -46,6 +46,7 @@ class SceneOptimizer {\n \tgetMaterialPropertiesHash( material ) {\n \n \t\tconst mapProps = [\n+\t\t\t'map',\n \t\t\t'alphaMap',\n \t\t\t'aoMap',\n \t\t\t'bumpMap',\n@@ -237,7 +238,15 @@ class SceneOptimizer {\n \t\t\t\t0\n \t\t\...
2024-11-20T12:26:05
vuejs/vue
a12d32a56df2519c9cdf8d2da9d9425876263f89
66228390684eb23dc943dfe30d4ccd0063f797ef
fix style diffing on cached/slot elements (fix #5318)
[ { "path": "flow/vnode.js", "patch": "@@ -40,6 +40,7 @@ declare interface VNodeData {\n class?: any;\n staticStyle?: { [key: string]: any };\n style?: Array<Object> | Object;\n+ normalizedStyle?: Object;\n props?: { [key: string]: any };\n attrs?: { [key: string]: string };\n domProps?: { [key: ...
2017-04-03T06:13:57
denoland/deno
b04d451d48198370ff8a5e95ca31f587a8bae935
d607e0b01c225fc7ae54e6fb18ce61dcbd70effd
fix(cli): make --eval-file flag work without equals sign (#31151)
[ { "path": "cli/args/flags.rs", "patch": "@@ -3434,7 +3434,7 @@ TypeScript is supported, however it is not type-checked, only transpiled.\"\n .long(\"eval-file\")\n .num_args(1..)\n .action(ArgAction::Append)\n- .require_equals(true)\n+ .use_value_delimiter(tru...
2025-11-03T10:45:37
mrdoob/three.js
587bf61b0984028265e48e9bc804c281b2d8f77c
d6c03fcec870f6c702a8b13e6d51a90b9f6d7384
Examples: Improve `webgpu_postprocessing_sobel`. (#29934) * Examples: Improve `webgpu_postprocessing_sobel`. * E2E: Update exception list.
[ { "path": "examples/webgpu_postprocessing_sobel.html", "patch": "@@ -7,6 +7,10 @@\n \t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"main.css\">\n \t</head>\n \t<body>\n+\t\t<div id=\"info\">\n+\t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> - Edge Detection with S...
2024-11-20T12:04:08
golang/go
6e165b4d176fb4c7fbb615b522a8b69d0b66c513
9f6590f333ee3ecd318e95ef54073fe76d1225de
cmd/compile: implement Avg64u, Hmul64, Hmul64u for wasm This lets us remove useAvg and useHmul from the division rules. The compiler is simpler and the generated code is faster. goos: wasip1 goarch: wasm pkg: internal/strconv │ old.txt │ new.txt │ ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/Wasm.rules", "patch": "@@ -2,6 +2,8 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+(Last ___) => v.Args[len(v.Args)-1]\n+\n // Lowering arithmetic\n (Add(64|32|16|8|Ptr) ...) => (I64Add ...)\n (...
2025-11-04T03:09:48
mrdoob/three.js
cef3838bb46dfc0789eab335ec6d26041abd9a28
405ad7b22aff351f29d3b33f2b3189ff4aa88abf
WebGPURenderer: Fix `shadowPositionNode` cache (#29921)
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -17,6 +17,8 @@ import { HalfFloatType, LessCompare, RGFormat, VSMShadowMap, WebGPUCoordinateSys\n import { renderGroup } from '../core/UniformGroupNode.js';\n import { viewZToLogarithmicDepth } from '../display/ViewportDepthNode.js';\n \n+const shad...
2024-11-19T05:40:23
denoland/deno
d607e0b01c225fc7ae54e6fb18ce61dcbd70effd
be1ede505bf138b65d45ecbaa1b46bbce1812af1
fix(compile): support --preload flag in deno compile (#31152)
[ { "path": "cli/lib/standalone/binary.rs", "patch": "@@ -86,6 +86,7 @@ pub struct Metadata {\n pub env_vars_from_env_file: IndexMap<String, String>,\n pub workspace_resolver: SerializedWorkspaceResolver,\n pub entrypoint_key: String,\n+ pub preload_modules: Vec<String>,\n pub node_modules: Option<No...
2025-11-03T10:41:27
vuejs/vue
3c0265517b55afe747948c193b79954d18b4d4c8
255b627f395c5e658862cf716291a6299f997cb7
handle errors thrown by directive hooks (#5314) (#5324) * handle errors thrown by directive hooks * fix import
[ { "path": "src/core/vdom/modules/directives.js", "patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n import { emptyNode } from 'core/vdom/patch'\n-import { resolveAsset } from 'core/util/options'\n+import { resolveAsset, handleError } from 'core/util/index'\n import { mergeVNodeHook } from 'core/vdom/helpers/index...
2017-04-03T03:37:54
mrdoob/three.js
405ad7b22aff351f29d3b33f2b3189ff4aa88abf
e0a7471d0d63c6a334afe9a3f4465695cb9baf41
BlendModes: Added `blend*` prefix (#29897) * Rename `BlendMode` -> `BlendModes` * Added `blend` prefix * update examples * improve warning message * rename `blendNormal` -> `blendColor` * move 'blendColor' to Porter Duff formula
[ { "path": "examples/webgpu_backdrop.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 { float, vec3, color, viewportSharedTexture, hue, overlay, posterize, grayscale, saturation, viewportSafeUV, screenUV, checker, uv, time, oscSine, o...
2024-11-19T02:55:59
denoland/deno
be1ede505bf138b65d45ecbaa1b46bbce1812af1
c31e3071b88bf2bf7c172f8f936c594239b37b72
fix(ext/node): implement util.getSystemErrorMessage() (#31147) Solution for https://github.com/denoland/deno/issues/31132
[ { "path": "ext/node/polyfills/_utils.ts", "patch": "@@ -17,6 +17,7 @@ import { TextDecoder, TextEncoder } from \"ext:deno_web/08_text_encoding.js\";\n import { errorMap } from \"ext:deno_node/internal_binding/uv.ts\";\n import { codes } from \"ext:deno_node/internal/error_codes.ts\";\n import { ERR_NOT_IMPL...
2025-11-03T10:24:06
vuejs/vue
255b627f395c5e658862cf716291a6299f997cb7
9311876c7c0084a65c6ff0d583d2789205fa83ee
fix #5321 don't throw error when node gets relocated (#5322) * don't throw error when node gets relocated * perf: Simplify if check in vdom/patch
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -234,7 +234,9 @@ export function createPatchFunction (backend) {\n function insert (parent, elm, ref) {\n if (isDef(parent)) {\n if (isDef(ref)) {\n- nodeOps.insertBefore(parent, elm, ref)\n+ if (ref.parentNode === parent) {\n+ ...
2017-04-03T03:36:50
golang/go
fe040658b20878bdbb9122ebc5446bc4104a7ddf
e452f4ac7de6c80e0be69a3c59ae739cfd806917
[dev.simd] simd/_gen: fix sorting ops slices Fix sorting slices to avoid panic when there are more opsDataImm than opsData (the problem occurs when generating only a subset of instructions but it may be better to keep them sorted by their own names anyway). Change-Id: Iea7fe61259e8416f16c46158d87c84b1d7a3076d Reviewe...
[ { "path": "src/simd/_gen/simdgen/gen_simdMachineOps.go", "patch": "@@ -185,13 +185,13 @@ func writeSIMDMachineOps(ops []Operation) *bytes.Buffer {\n \t\treturn compareNatural(opsData[i].OpName, opsData[j].OpName) < 0\n \t})\n \tsort.Slice(opsDataImm, func(i, j int) bool {\n-\t\treturn compareNatural(opsData...
2025-10-29T13:49:28
mrdoob/three.js
e0a7471d0d63c6a334afe9a3f4465695cb9baf41
800a47295c211fd11bbc389620de942d450be629
ArcballControls: Arcball optional focus (#29871) * ArcballControls: Add `enableFocus` option to control focus behavior * Update examples to reflect ArcballControls changes * lint-fix * Update ArcballControls.html * Update ArcballControls.html * Update ArcballControls.html * Update ArcballControls.htm...
[ { "path": "docs/examples/en/controls/ArcballControls.html", "patch": "@@ -132,6 +132,11 @@ <h3>[property:Boolean enableAnimations]</h3>\n \t\t\tSet to true to enable animations for rotation (damping) and focus operation. Default is true.\n \t\t</p>\n \n+\t\t<h3>[property:Boolean enableFocus]</h3>\n+\t\t<p>\...
2024-11-18T09:58:08
denoland/deno
c31e3071b88bf2bf7c172f8f936c594239b37b72
552cb3df0562fe724da8a7b61d6b5d0ac1230796
fix(ext/node): export ppid (#31137) Fix #31135
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -75,6 +75,7 @@ export let arch = \"\";\n export let platform = isWindows ? \"win32\" : \"\"; // initialized during bootstrap\n \n export let pid = 0;\n+export let ppid = 0;\n \n let stdin, stdout, stderr;\n \n@@ -1027,7 +1028,7 @@ internals.__bootstrap...
2025-10-31T08:58:53
vuejs/vue
9311876c7c0084a65c6ff0d583d2789205fa83ee
71e0992127a8144c7b095af1e18376318fc77cb0
safer isNative check (fix #5361)
[ { "path": "src/core/util/env.js", "patch": "@@ -37,8 +37,8 @@ export const isServerRendering = () => {\n export const devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__\n \n /* istanbul ignore next */\n-export function isNative (Ctor: Function): boolean {\n- return /native code/.test(Ctor.toString...
2017-04-03T03:33:49
mrdoob/three.js
5b51d6f1e076184f1de771319cff708ac0aa59b0
455e03824855b62963c8a5a4e85b92ba2634271e
KTX2Loader: Fix .minFilter default for untranscoded compressed textures (#29904)
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -988,6 +988,9 @@ async function createRawTexture( container ) {\n \n \t\ttexture = new CompressedTexture( mipmaps, container.pixelWidth, container.pixelHeight );\n \n+\t\ttexture.minFilter = mipmaps.length === 1 ? LinearFilter : LinearMipmapLinear...
2024-11-15T23:18:28
golang/go
34fec512ce34fb5926aa38e0ccd0083feed94733
162ba6cc405851ee7f0d30b600de1a308321ddca
internal/strconv: extract fixed-precision ftoa from ftoaryu.go The fixed-precision ftoa algorithm is not actually documented in the Ryū paper, and it is fairly straightforward: multiply by a power of 10 to get an integer that contains the digits we need. There is also no need for separate float32 and float64 implement...
[ { "path": "src/internal/strconv/atoi.go", "patch": "@@ -41,8 +41,6 @@ const intSize = 32 << (^uint(0) >> 63)\n // IntSize is the size in bits of an int or uint value.\n const IntSize = intSize\n \n-const maxUint64 = 1<<64 - 1\n-\n // ParseUint is like [ParseInt] but for unsigned numbers.\n //\n // A sign pr...
2025-11-01T13:41:40
denoland/deno
552cb3df0562fe724da8a7b61d6b5d0ac1230796
e83574015bbf09b4f6a3877ddb892637b3c09653
fix(ext/node): respects `flag` option on `fs.readfile` and `fs.readfilesync` (#31129) Closes #31099
[ { "path": "cli/rt/file_system.rs", "patch": "@@ -546,6 +546,7 @@ impl sys_traits::BaseFsRead for DenoRtSys {\n // we should flip this so that the `deno_fs::FileSystem` implementation uses `sys_traits`\n // rather than this calling into `deno_fs::FileSystem`\n &CheckedPath::unsafe_new...
2025-10-31T08:32:36
vuejs/vue
1e37633567f5d015db24ae0210b1adb4b1c3d355
924435a0fae3dfeb2616c9ac17bed99f9cb8d28d
fix ssr xss (fix #5351)
[ { "path": "src/core/vdom/helpers/resolve-async-component.js", "patch": "@@ -1,5 +1,12 @@\n /* @flow */\n \n+// () => ({\n+// component: import('./xxx.vue'),\n+// delay: 200,\n+// loading: LoadingComponent,\n+// error: ErrorComponent\n+// })\n+\n import {\n warn,\n isObject", "additions": 7, ...
2017-04-01T06:07:05
golang/go
162ba6cc405851ee7f0d30b600de1a308321ddca
9795c7ba220702c8bbf0188a8fc28e1d482bae4f
internal/strconv: add tests and benchmarks for ftoaFixed ftoaFixed is in the next CL; this proves the tests are correct against the current implementation, and it adds a benchmark for comparison with the new implementation. Change-Id: I7ac8a1f699b693ea6d11a7122b22fc70cc135af6 Reviewed-on: https://go-review.googlesour...
[ { "path": "src/internal/strconv/fp_test.go", "patch": "@@ -99,12 +99,14 @@ func TestFp(t *testing.T) {\n \ts := bufio.NewScanner(strings.NewReader(testfp))\n \tfor lineno := 1; s.Scan(); lineno++ {\n \t\tline := s.Text()\n-\t\tif len(line) == 0 || line[0] == '#' {\n+\t\tline, _, _ = strings.Cut(line, \"#\")...
2025-11-02T14:59:59
denoland/deno
40de911154f38417a74eff7eb94c408b2a3f914d
1b5f3112af364a3327b26f720746819c4f20f20d
fix(ext/net): support IPv6 zone indices in Deno.connect() (#31123) Fixes https://github.com/denoland/deno/issues/30956
[ { "path": "runtime/permissions/lib.rs", "patch": "@@ -9,6 +9,7 @@ use std::hash::Hash;\n use std::io::Write;\n use std::net::IpAddr;\n use std::net::Ipv6Addr;\n+use std::net::SocketAddr;\n use std::ops::Deref;\n use std::path::Path;\n use std::path::PathBuf;\n@@ -1443,6 +1444,16 @@ pub enum HostParseError {...
2025-10-30T14:55:52
vuejs/vue
80fa9bf3d69c9b3c3848b927454aca94990edecf
1648adb6c7bcc8a3a8dd887640858051ce4dc58d
fix hydration tests
[ { "path": "test/unit/modules/vdom/patch/hydration.spec.js", "patch": "@@ -1,7 +1,7 @@\n import Vue from 'vue'\n import VNode from 'core/vdom/vnode'\n-import { SSR_ATTR } from 'shared/util'\n import { patch } from 'web/runtime/patch'\n+import { SSR_ATTR } from 'shared/constants'\n \n describe('vdom patch: hy...
2017-03-31T09:23:49
denoland/deno
12a6585c663d91c68d5215abf1607dd30c12c320
e770db547a0f08f297f7d1622e1c71d8cbcdb6b3
fix(windows): strip periods and trailing slashes when normalizing paths (#31131) This is specifically for the application code. Not for any JS APIs.
[ { "path": "Cargo.lock", "patch": "@@ -2720,9 +2720,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_path_util\"\n-version = \"0.6.3\"\n+version = \"0.6.4\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"a4f70f7cbc884556f08781aaa75aef177d15bfee99e4fc40c25fa74514c678...
2025-10-29T19:29:44
golang/go
9795c7ba220702c8bbf0188a8fc28e1d482bae4f
ad5e941a4559a402fa3f428e612c58ec86471517
internal/strconv: fix pow10 off-by-one in exponent result The exact meaning of pow10 was not defined nor tested directly. Define it as pow10(e) returns mant, exp where mant/2^128 * 2**exp = 10^e. This is the most natural definition but is off-by-one from what it had been returning. Fix the off-by-one and then adjust t...
[ { "path": "src/internal/strconv/atofeisel.go", "patch": "@@ -40,7 +40,7 @@ func eiselLemire64(man uint64, exp10 int, neg bool) (f float64, ok bool) {\n \t// Normalization.\n \tclz := bits.LeadingZeros64(man)\n \tman <<= uint(clz)\n-\tretExp2 := uint64(exp2+64-float64Bias) - uint64(clz)\n+\tretExp2 := uint64...
2025-11-02T03:26:17
vuejs/vue
1648adb6c7bcc8a3a8dd887640858051ce4dc58d
69e62f0a74b6a6baab1d66dd0433cdfb410bdae7
fix import
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -14,7 +14,7 @@\n \n import VNode from './vnode'\n import config from '../config'\n-import { SSR_ATTR } from 'shared/util'\n+import { SSR_ATTR } from 'shared/constants'\n import { registerRef } from './modules/ref'\n import { activeInstance } from '../instance...
2017-03-31T09:05:25
mrdoob/three.js
d9b1b3ca8412713895da693a6c659c6b54eef540
651280b3c0e35b576f8534e657f321cdbe0e5fc0
WebGLBackend: Fix geometry change (#29880)
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -166,7 +166,7 @@ class WebGLBackend extends Backend {\n \n \t}\n \n-\t async resolveTimestampAsync( renderContext, type = 'render' ) {\n+\tasync resolveTimestampAsync( renderContext, type = 'render' ) {\n \n \t\tif ( ! this.disjoint || ...
2024-11-14T14:47:41
denoland/deno
e770db547a0f08f297f7d1622e1c71d8cbcdb6b3
e39df87fabecc745bc12102c949f5f7dc95a3808
fix(ext/node): implement StatementSync#columns() method (#31119) Fixes https://github.com/denoland/deno/issues/31110
[ { "path": "ext/node/ops/sqlite/statement.rs", "patch": "@@ -804,4 +804,130 @@ impl StatementSync {\n Ok(sql)\n }\n }\n+\n+ fn columns<'a>(\n+ &self,\n+ scope: &mut v8::PinScope<'a, '_>,\n+ ) -> Result<v8::Local<'a, v8::Array>, SqliteError> {\n+ v8_static_strings! {\n+ NAME = \"na...
2025-10-29T10:22:29
golang/go
c93cc603cd5c731d00dc019c94490edca6160841
b5353fd90a3824f4ff903e0d89cf4e63714f61d1
runtime: allow Stack to traceback goroutines in syscall _Grunning window net/http/cgi.TestCopyError calls runtime.Stack to take a stack trace of all goroutines, and searches for a specific line in that stack trace. It currently sometimes fails because it encounters the goroutine its looking for in the small window wh...
[ { "path": "src/runtime/traceback.go", "patch": "@@ -1314,7 +1314,16 @@ func tracebacksomeothers(me *g, showf func(*g) bool) {\n \t\t// from a signal handler initiated during a systemstack call.\n \t\t// The original G is still in the running state, and we want to\n \t\t// print its stack.\n-\t\tif gp.m != g...
2025-10-30T20:26:56
mrdoob/three.js
651280b3c0e35b576f8534e657f321cdbe0e5fc0
2058544e2c2e9bac3cd714a3cb0453386e02a17a
Examples: Improve `webgpu_postprocessing_ssr`. (#29878) * Examples: Improve `webgpu_postprocessing_ssr`. * E2E: Update exception list.
[ { "path": "examples/webgpu_postprocessing_ssr.html", "patch": "@@ -4,19 +4,18 @@\n <head>\n \n \t<head>\n-\t\t<title>three.js webgpu - postprocessing - Screen Space Reflection</title>\n+\t\t<title>three.js webgpu - postprocessing - Screen Space Reflections (SSR)</title>\n \t\t<meta charset=\"utf-8\">\n \t\t...
2024-11-14T12:28:32
denoland/deno
1b07f0295dd91f393966f953099ee90505a97e50
e90b29375a7aff541892c22214eebb6e95d2c6be
fix(windows): re-allow spawning bat and cmd files (#31118)
[ { "path": "ext/process/lib.rs", "patch": "@@ -752,26 +752,6 @@ fn compute_run_cmd_and_check_permissions(\n command: arg_cmd.to_string(),\n error: Box::new(e),\n })?;\n- // Undocumented feature of CreateProcess API allows spawning batch files directly\n- // without proper argument escaping....
2025-10-28T20:39:35
golang/go
b5353fd90a3824f4ff903e0d89cf4e63714f61d1
43491f8d52f13df3c70277f81c85809818969d77
runtime: don't panic in castogscanstatus The panic calls gopanic which may have write barriers, but castogscanstatus is called from //go:nowritebarrier contexts. The panic is dead code anyway, and appears immediately before a call to 'throw'. Change-Id: I4a8e296b71bf002295a3aa1db4f723c305ed939a Reviewed-on: https://...
[ { "path": "src/runtime/proc.go", "patch": "@@ -1254,8 +1254,8 @@ func castogscanstatus(gp *g, oldval, newval uint32) bool {\n \t\t}\n \t}\n \tprint(\"runtime: castogscanstatus oldval=\", hex(oldval), \" newval=\", hex(newval), \"\\n\")\n-\tthrow(\"castogscanstatus\")\n-\tpanic(\"not reached\")\n+\tthrow(\"b...
2025-11-03T22:29:36
vuejs/vue
2451c45d4f1d9ff50ab0abd638a3d8bf37ff55e7
2fe42ef0c55eb065e7cf6a5850e2de3f1bcf69eb
fix preload for used chunks
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -23,8 +23,8 @@ export type ParsedTemplate = {\n export default class TemplateRenderer {\n template: ParsedTemplate;\n publicPath: string;\n- preloadLinks: ?string;\n- asyncFiles: ?Array<string>;\n+ preloadFiles: ?Array<string>;\n+ prefe...
2017-03-27T12:26:07
mrdoob/three.js
3e29a395ceb52cd332613a62fbb712fc1123d04a
cb663c5fd331c916c3419c0c057a8cdd5c3b5abc
SSRNode: Add temporary fix for Chrome. (#29875)
[ { "path": "examples/jsm/tsl/display/SSRNode.js", "patch": "@@ -155,7 +155,7 @@ class SSRNode extends TempNode {\n \n \t\t\tconst metalness = this.metalnessNode.uv( uvNode ).r;\n \n-\t\t\t // fragments with no metalness do not reflect their environment\n+\t\t\t// fragments with no metalness do not reflect th...
2024-11-14T03:21:19
denoland/deno
58f21ae59765c40e99dcb6d94d0b449cc6601abd
ee6c66b9e9b8277327811564a34124b109927bd3
fix(ext/node): inconsistent error message thrown by AssertionError (#31089) Closes #31082
[ { "path": "ext/node/lib.rs", "patch": "@@ -551,8 +551,6 @@ deno_core::extension!(deno_node,\n \"_util/async.ts\",\n \"_util/os.ts\",\n \"_util/std_asserts.ts\",\n- \"_util/std_fmt_colors.ts\",\n- \"_util/std_testing_diff.ts\",\n \"_utils.ts\",\n \"_zlib_binding.mjs\",\n \"asser...
2025-10-28T08:51:09
golang/go
43491f8d52f13df3c70277f81c85809818969d77
aa94fdf0cc693b5846a936d5cd6f3bd358093245
cmd/cgo: use the export'ed file/line in error messages When an unpinned Go pointer (or a pointer to an unpinned Go pointer) is returned from Go to C, 1 package main 2 3 import ( 4 "C" 5 ) 6 7 //export foo 8 func foo(CLine *C.char) string { 9 return C...
[ { "path": "src/cmd/cgo/main.go", "patch": "@@ -72,8 +72,8 @@ type File struct {\n \tExpFunc []*ExpFunc // exported functions for this file\n \tName map[string]*Name // map from Go name to Name\n \tNamePos map[*Name]token.Pos // map from Name to position of the first reference\n-\t...
2025-11-01T14:20:45
mrdoob/three.js
cb663c5fd331c916c3419c0c057a8cdd5c3b5abc
e5e8d20b8b8eaa3309bfc5cda816688612ddb9f3
TiledLightsNode: Fix `reflectedLight` declaration sequence (#29874)
[ { "path": "examples/jsm/tsl/lighting/TiledLightsNode.js", "patch": "@@ -204,6 +204,8 @@ class TiledLightsNode extends LightsNode {\n \t\tlightingModel.directDiffuse.append();\n \t\tlightingModel.directSpecular.append();\n \n+\t\tsuper.setupLights( builder, lightNodes );\n+\n \t\tFn( () => {\n \n \t\t\tLoop(...
2024-11-13T19:42:39
vuejs/vue
2fe42ef0c55eb065e7cf6a5850e2de3f1bcf69eb
fae6b87786a2829152407d6cb04e79011c77bdae
fix option passing
[ { "path": "package.json", "patch": "@@ -103,6 +103,7 @@\n \"rollup-plugin-replace\": \"^1.1.0\",\n \"rollup-watch\": \"^3.2.2\",\n \"selenium-server\": \"^2.53.1\",\n+ \"serialize-javascript\": \"^1.3.0\",\n \"typescript\": \"^2.1.6\",\n \"uglify-js\": \"^2.6.2\",\n \"vue-ssr-html...
2017-03-27T11:58:17
denoland/deno
ee6c66b9e9b8277327811564a34124b109927bd3
ec9de01efdc65b3b04b8fe42ba7444d668ae9eb0
fix(ext/node): handle empty writes in chunked HTTP requests (#31066)
[ { "path": "ext/node/polyfills/_http_outgoing.ts", "patch": "@@ -561,6 +561,10 @@ Object.defineProperties(\n });\n }\n });\n+ } else {\n+ // For empty writes, call callback and emit drain to maintain flow control\n+ callback?.();\n+ this.emit(\"drain\")...
2025-10-28T01:38:49
mrdoob/three.js
20c67d6d9f5632e14ad4906be39b0c3462c40ea0
b2057a3aca32e4fe0e01f317ff0ee3e287eb9b4c
WebGPURenderer: Fix ImageBitmap flip in WebGLBackend (#29866) * WebGPURenderer: Fix ImageBitmap flip in WebGLBackend * Update TextureNode.js --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -126,7 +126,7 @@ class TextureNode extends UniformNode {\n \n \t\tconst texture = this.value;\n \n-\t\tif ( builder.isFlipY() && ( texture.isRenderTargetTexture === true || texture.isFramebufferTexture === true || texture.isDepthTexture === true )...
2024-11-13T15:33:49
golang/go
aa94fdf0cc693b5846a936d5cd6f3bd358093245
4d2b03d2fc281a1883aceee3511f22d4865f8844
cmd/go: link to go.dev/doc/godebug for removed GODEBUG settings This makes the user experience better, before users would receive an unknown godebug error message, now we explicitly mention that it was removed and link to go.dev/doc/godebug where users can find more information about the removal. Additionally we keep...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -2242,9 +2242,12 @@ func CheckGodebug(verb, k, v string) error {\n \t\t}\n \t\treturn nil\n \t}\n-\tfor _, info := range godebugs.All {\n-\t\tif k == info.Name {\n-\t\t\treturn nil\n+\tif godebugs.Lookup(k) != nil {\n+\t\treturn nil\n+\t}\n+\tfor...
2025-09-08T17:54:21
vuejs/vue
6fcfdbd83f424eba19933d453420d762c9bad767
3209f6f517a4fa44c563cd7cc048fa29be1bc930
warn and handle missing get in computed (fix #5265) (#5267)
[ { "path": "src/core/instance/state.js", "patch": "@@ -147,7 +147,16 @@ function initComputed (vm: Component, computed: Object) {\n \n for (const key in computed) {\n const userDef = computed[key]\n- const getter = typeof userDef === 'function' ? userDef : userDef.get\n+ let getter = typeof userD...
2017-03-27T02:41:29
denoland/deno
ec9de01efdc65b3b04b8fe42ba7444d668ae9eb0
202a8c054b99507a0dd0f1bfc61b81f002f84320
fix(ext/http): display localhost url once on windows (#31088)
[ { "path": "ext/http/00_serve.ts", "patch": "@@ -933,7 +933,8 @@ function serveInner(options, handler) {\n const host = formatHostName(addr.hostname);\n \n const url = `${scheme}${host}:${addr.port}/`;\n- const helper = addr.hostname === \"0.0.0.0\" || addr.hostname === \"::\"\n+ const ...
2025-10-27T19:22:23
mrdoob/three.js
485f7f08269ce2bbf6d046553ca0691307fb79f6
bb7f17afb4a64102d7b950e03059d08e18d810dc
WebGPU: Logarithmic Depth Buffer Rename/Revision + GTAONode Fixes (#29870) * 1. Renamed the function 'perspectiveDepthToLogarithmicDepth' to 'viewZToLogarithmicDepth' and modified it to expect a negative viewZ value in order maintain consistency with 'viewZToOrthographicDepth' and 'viewZToPerspectiveDepth' 2. Added f...
[ { "path": "examples/jsm/tsl/display/GTAONode.js", "patch": "@@ -1,5 +1,5 @@\n import { DataTexture, RenderTarget, RepeatWrapping, Vector2, Vector3 } from 'three';\n-import { getNormalFromDepth, getScreenPosition, getViewPosition, QuadMesh, TempNode, nodeObject, Fn, float, NodeUpdateType, uv, uniform, Loop, ...
2024-11-13T10:28:16
golang/go
85bec791a0941734520217d548f80714554e5f20
17b57078ab5388d830c28965717c3cc52bb845e1
cmd/go/testdata/script: loosen list_empty_importpath for freebsd We've been seeing the flakes where we get a 'no errors' output on freebsd in addition to windows and solaris. Also allow that case to avoid flakes. For #73976 Change-Id: I6a6a696445ec908b55520d8d75e7c1f867b9c092 Reviewed-on: https://go-review.googlesou...
[ { "path": "src/cmd/go/testdata/script/list_empty_importpath.txt", "patch": "@@ -1,12 +1,15 @@\n ! go list all\n ! stderr 'panic'\n-[!GOOS:windows] [!GOOS:solaris] stderr 'invalid import path'\n-# #73976: Allow 'no errors' on Windows and Solaris until issue\n+[!GOOS:windows] [!GOOS:solaris] [!GOOS:freebsd] [...
2025-10-28T15:18:02
vuejs/vue
3209f6f517a4fa44c563cd7cc048fa29be1bc930
be076173d059e52517b8e079d6948c22e49b9a2d
remove parent/ref elm references when destroying instance, fix memory leak (fix vue-router#1279)
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -119,15 +119,18 @@ export function lifecycleMixin (Vue: Class<Component>) {\n }\n // call the last hook...\n vm._isDestroyed = true\n+ // invoke destroy hooks on current rendered tree\n+ vm.__patch__(vm._vnode, null)\n+ // fire de...
2017-03-27T01:49:05
denoland/deno
202a8c054b99507a0dd0f1bfc61b81f002f84320
2bf5c78666d7cc03fd7b820d48e7787c0804d09a
Revert "fix(ext/node): fileHandle compatibility" (#31103) Reverts denoland/deno#31094 This has caused node compat tests to fail on main.
[ { "path": "ext/node/polyfills/_fs/_fs_fchmod.ts", "patch": "@@ -10,7 +10,6 @@ import {\n } from \"ext:deno_node/internal/validators.mjs\";\n import { op_fs_fchmod_async, op_fs_fchmod_sync } from \"ext:core/ops\";\n import { primordials } from \"ext:core/mod.js\";\n-import { promisify } from \"ext:deno_node/...
2025-10-27T16:27:50
mrdoob/three.js
2c2bfc34fbe1179b1ea0a06853e84b6f6ae9c743
901c516933f54b3bef610a11fbbe70d5a2cd335b
Codesplit WebGL/WebGPU entrypoints: Fix WebGPU Addons (#29644) * Codesplit WebGL/WebGPU entrypoints: Fix WebGPU Addons * fix instance points example * feedbacks * update
[ { "path": "examples/jsm/lines/webgpu/Line2.js", "patch": "@@ -1,7 +1,8 @@\n+import { Line2NodeMaterial } from 'three/tsl';\n+\n import { LineSegments2 } from './LineSegments2.js';\n import { LineGeometry } from '../LineGeometry.js';\n \n-import { Line2NodeMaterial } from 'three';\n \n class Line2 extends Li...
2024-11-12T14:41:26
vuejs/vue
be076173d059e52517b8e079d6948c22e49b9a2d
8a518c1efdcf48576135bf8fd2f8aa1950e8ec76
fix a typo (#5284)
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -296,7 +296,7 @@ function extractProps (data: VNodeData, Ctor: Class<Component>, tag?: string): ?\n ) {\n tip(\n `Prop \"${keyInLowerCase}\" is passed to component ` +\n- `${formatComponentName(tag || Ctor)}...
2017-03-25T14:36:00
denoland/deno
2bf5c78666d7cc03fd7b820d48e7787c0804d09a
20fb456be521f958b889fa3465e75a501fcfd7c5
fix(audit): handle 'review' actions (#31100) Closes https://github.com/denoland/deno/issues/31098
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -393,13 +393,13 @@ mod npm {\n if actions.len() == 1 {\n _ =\n writeln!(stdout, \"╰ {} {}\", colors::gray(\"Actions:\"), actions[0]);\n- } else {\n+ } else if actions.len() > 1 {\n _ =\n writeln!(stdout, \...
2025-10-27T11:44:02
mrdoob/three.js
901c516933f54b3bef610a11fbbe70d5a2cd335b
ed9f5a1977d356e4f6c01ccbe89521e310273db3
WebGPURenderer: Fix OffscreenCanvas Support in WebGL (#29867)
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js", "patch": "@@ -415,7 +415,10 @@ class WebGLTextureUtils {\n \n \t\t\t\treturn source.image.data;\n \n-\t\t\t} else if ( source instanceof ImageBitmap || source instanceof OffscreenCanvas || source instanceof HTMLImageElement || source insta...
2024-11-12T14:33:33
vuejs/vue
f4630d0105a80473d48dcfe35a7eaefe6f1a9b36
5222f06a2ce537d3ad19ba70f27770aceb5d8c69
treat <input> with different types as different nodes (fix #5266)
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -34,15 +34,26 @@ function isTrue (v) {\n return v === true\n }\n \n-function sameVnode (vnode1, vnode2) {\n+function sameVnode (a, b) {\n return (\n- vnode1.key === vnode2.key &&\n- vnode1.tag === vnode2.tag &&\n- vnode1.isComment === vnode2.isCo...
2017-03-24T03:54:52
denoland/deno
20fb456be521f958b889fa3465e75a501fcfd7c5
3a1ae29327061c5a26b0ca9d50cb0c3181868544
fix(ext/node): cpus() should not error when there's no cpu info (#31097) os.cpus() in Node returns an empty array if there is no cpu info. This is also specified in [its documentation](https://nodejs.org/api/os.html#oscpus:~:text=The%20array%20will%20be%20empty%20if%20no%20CPU%20information%20is%20available): "The arr...
[ { "path": "ext/node/ops/os/mod.rs", "patch": "@@ -24,9 +24,6 @@ pub enum OsError {\n #[inherit]\n PermissionCheckError,\n ),\n- #[class(type)]\n- #[error(\"Failed to get cpu info\")]\n- FailedToGetCpuInfo,\n #[class(inherit)]\n #[error(\"Failed to get user info\")]\n FailedToGetUserInfo(\...
2025-10-27T11:29:08
mrdoob/three.js
d35544a5c9fcb48c5020dac683c4e5ddb7f8aaf7
5255e36623e2f7cf97a647278bd67391c34ee3e6
WGSLNodeBuilder: Fix `generateWrapFunction()` cache includes (#29846)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -247,25 +247,27 @@ class WGSLNodeBuilder extends NodeBuilder {\n \n \t\tif ( nodeCode === undefined ) {\n \n+\t\t\tconst includes = [];\n+\n \t\t\tlet code = `fn ${ functionName }( coord : vec2f ) -> vec2f {\\n\\n\\treturn vec2f(\\n`;\n...
2024-11-08T16:00:53
vuejs/vue
70db229a49e0d541a66caa1eccba41768d0b486a
23a058ed13e7faa667ada2b96e242eb7488b601c
handle v-model on password input field on ie9 (fix #5250) (#5253)
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -28,7 +28,7 @@ export default {\n if (isIE || isEdge) {\n setTimeout(cb, 0)\n }\n- } else if (vnode.tag === 'textarea' || el.type === 'text') {\n+ } else if (vnode.tag === 'textarea' || el.type === 'text' || el...
2017-03-23T04:00:44
golang/go
c5559344acf76c6ddbbb6f222354a2dd88e0abba
5132158ac2dee721790ad4b9f745bb6364406ea0
internal/profile: optimize Parse allocs In our case, it greatly improves the performance of continuously collecting diff profiles from the net/http/pprof endpoint, such as /debug/pprof/allocs?seconds=30. This CL is a cherry-pick of my PR upstream: https://github.com/google/pprof/pull/951 Benchmark of profile Parse f...
[ { "path": "src/internal/profile/proto.go", "patch": "@@ -24,6 +24,7 @@ package profile\n import (\n \t\"errors\"\n \t\"fmt\"\n+\t\"slices\"\n )\n \n type buffer struct {\n@@ -175,6 +176,16 @@ func le32(p []byte) uint32 {\n \treturn uint32(p[0]) | uint32(p[1])<<8 | uint32(p[2])<<16 | uint32(p[3])<<24\n }\n \...
2025-11-02T11:28:31
mrdoob/three.js
5255e36623e2f7cf97a647278bd67391c34ee3e6
8f55e4ba465f3384249b5132683ecea69fac4949
ShadowNode: Fix warning property name.
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -367,7 +367,7 @@ class ShadowNode extends Node {\n \n \t\tif ( builder.material.shadowNode ) { // @deprecated, r171\n \n-\t\t\tconsole.warn( 'THREE.NodeMaterial: \".shadowNode\" is deprecated. Use \".receivedShadowNode\" instead.' );\n+\t\t\tconsole...
2024-11-08T15:37:23
denoland/deno
3a1ae29327061c5a26b0ca9d50cb0c3181868544
c0ebacba75138789ccd6dc93c1b5bec04f4e6d63
fix(ext/node): fileHandle compatibility (#31094) Towards #29972 Notable changes: - Omits `path` from the `FileHandle` constructor. This includes replacing `utimes` and `chown` with `futimes` and `fchown`. - Handles closing resource ID gracefully to follow node's implementation. Closed resource IDs are marked as `-1`....
[ { "path": "ext/node/polyfills/_fs/_fs_fchmod.ts", "patch": "@@ -10,6 +10,7 @@ import {\n } from \"ext:deno_node/internal/validators.mjs\";\n import { op_fs_fchmod_async, op_fs_fchmod_sync } from \"ext:core/ops\";\n import { primordials } from \"ext:core/mod.js\";\n+import { promisify } from \"ext:deno_node/...
2025-10-27T11:28:23
vuejs/vue
23a058ed13e7faa667ada2b96e242eb7488b601c
7dea9f1eb266a3c3ef4d55adb1ff74ea0db70a36
fix(inject): change warn message when trying to mutate an injected value (#5243)
[ { "path": "src/core/instance/inject.js", "patch": "@@ -34,9 +34,9 @@ export function initInjections (vm: Component) {\n if (process.env.NODE_ENV !== 'production') {\n defineReactive(vm, key, source._provided[provideKey], () => {\n warn(\n- `Avoid mutating a...
2017-03-21T12:26:22
mrdoob/three.js
d2f7f08a431829385d7bc30bcd931bf03d51e7fb
3728a0aafd5ee04a9a4bc66eb3f56f556bd8da15
Line2NodeMaterial: Fix broken dash. (#29835)
[ { "path": "src/materials/nodes/Line2NodeMaterial.js", "patch": "@@ -6,7 +6,7 @@ import { materialColor, materialLineScale, materialLineDashSize, materialLineGap\n import { modelViewMatrix } from '../../nodes/accessors/ModelNode.js';\n import { positionGeometry } from '../../nodes/accessors/Position.js';\n i...
2024-11-07T16:34:03
golang/go
5132158ac2dee721790ad4b9f745bb6364406ea0
361d51a6b58bccaab0559e06737c918018a7a5fa
bytes: add Buffer.Peek Fixes #73794 Change-Id: I0a57db05aacfa805213fe8278fc727e76eb8a65e GitHub-Last-Rev: 3494d93f803f21905dfd5a9d593644da69279f16 GitHub-Pull-Request: golang/go#73795 Reviewed-on: https://go-review.googlesource.com/c/go/+/674415 Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <gola...
[ { "path": "api/next/73794.txt", "patch": "@@ -0,0 +1 @@\n+pkg bytes, method (*Buffer) Peek(int) ([]uint8, error) #73794", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/bytes/73794.md", "patch": "@@ -0,0 +1,2 @@\n+The new [Buffer.Pee...
2025-10-31T20:11:04
denoland/deno
c0ebacba75138789ccd6dc93c1b5bec04f4e6d63
5cee3a317d1c9e64a7d6c09763921fe854ad086c
fix(ext/node): handle multiple calls in inspector.Session.post() (#31067) Fixes a panic that occurred when using nested session.post() calls in the node:inspector module. The issue manifested when callbacks from inspector commands (like Profiler.enable) called session.post() again, causing a re-entrant invocation of o...
[ { "path": "ext/node/ops/inspector.rs", "patch": "@@ -167,17 +167,17 @@ where\n })\n }\n \n-#[op2(fast)]\n+#[op2(fast, reentrant)]\n pub fn op_inspector_dispatch(\n- #[cppgc] session: &JSInspectorSession,\n+ #[cppgc] inspector: &JSInspectorSession,\n #[string] message: String,\n ) {\n- if let Some(ses...
2025-10-27T09:46:55
mrdoob/three.js
3728a0aafd5ee04a9a4bc66eb3f56f556bd8da15
d2875f678ffcc19c9e122ab6ab01627baf0581a5
Renderer: Fix `getShaderAsync()`. (#29832)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -173,7 +173,7 @@ class Renderer {\n \n \t\t\t\tconst material = scene.overrideMaterial || object.material;\n \n-\t\t\t\tconst renderObject = this._objects.get( object, material, scene, camera, renderList.lightsNode, renderContext );\n+\t\t\t\tconst ...
2024-11-07T11:15:34
vuejs/vue
7dea9f1eb266a3c3ef4d55adb1ff74ea0db70a36
4c4a2ab65f6dde0802c7d0ee7fd3200c45316488
fix provide isn't reactive with a single array (#5229) * fix provide isn't reactive with a single array - Fix #5223 * add warning when injections has been modified
[ { "path": "src/core/instance/inject.js", "patch": "@@ -1,6 +1,8 @@\n /* @flow */\n \n import { hasSymbol } from 'core/util/env'\n+import { warn } from '../util/index'\n+import { defineReactive } from '../observer/index'\n \n export function initProvide (vm: Component) {\n const provide = vm.$options.provi...
2017-03-21T07:22:32
denoland/deno
5cee3a317d1c9e64a7d6c09763921fe854ad086c
c20ef4ce8ccca02e25496d94b19fb6f5dc535374
fix(check): support text and bytes imports with --unstable-tsgo (#31084) Fixes https://github.com/denoland/deno/issues/31034.
[ { "path": "cli/tsc/go.rs", "patch": "@@ -60,6 +60,7 @@ fn synthetic_config(\n {\n obj.insert(\"jsx\".to_string(), json!(\"react-jsx\"));\n }\n+ obj.insert(\"allowArbitraryExtensions\".to_string(), json!(true));\n let config = serde_json::to_string(&json!({\n \"compilerOptions\": config,\n ...
2025-10-24T23:41:20
golang/go
388c41c412c24b751c8c09465787ae79bceca9c7
385dc33250336081c0c630938c3efede481eff76
cmd/go: skip git sha256 tests if git < 2.29 Fix test building on older Ubuntu LTS releases (that are still supported). Git SHA256 support was only included in 2.29, which came out in 2021. Check the output of `git version` and skip these tests if the version is older than that introduction. Thanks to @ianlancetaylor ...
[ { "path": "src/cmd/go/internal/modfetch/codehost/git_test.go", "patch": "@@ -16,14 +16,18 @@ import (\n \t\"io/fs\"\n \t\"log\"\n \t\"os\"\n+\t\"os/exec\"\n \t\"path\"\n \t\"path/filepath\"\n \t\"reflect\"\n+\t\"regexp\"\n \t\"runtime\"\n \t\"strings\"\n \t\"sync\"\n \t\"testing\"\n \t\"time\"\n+\n+\t\"gola...
2025-08-24T19:15:06
mrdoob/three.js
8bc792bca178bb04479bf5b40953b5c09b50973b
d82b5922806e158164f7897669b072bb00555014
WebGPURenderer: hardware clipping support. (#28578) * hardware clipping * misc fixes lint --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -20,7 +20,7 @@ import { lightingContext } from '../../nodes/lighting/LightingContextNode.js';\n import IrradianceNode from '../../nodes/lighting/IrradianceNode.js';\n import { depth, perspectiveDepthToLogarithmicDepth, viewZToOrthographicDepth } ...
2024-11-06T17:50:57
vuejs/vue
4c4a2ab65f6dde0802c7d0ee7fd3200c45316488
e733e5cee8585fdf4a0c0e5e77e7816befa24ad4
trigger event after reassigned state - Fix #5191 (#5233)
[ { "path": "src/core/observer/scheduler.js", "patch": "@@ -69,10 +69,14 @@ function flushSchedulerQueue () {\n }\n }\n \n+ // reset scheduler before updated hook called\n+ const oldQueue = queue.slice()\n+ resetSchedulerState()\n+\n // call updated hooks\n- index = queue.length\n+ index = oldQue...
2017-03-21T07:20:57
denoland/deno
eaebf88418dea6c4c454e51b197e396c76863c62
fc7ae0e4282fbd66ee03a26fcd81187b846b0fa6
fix(ext/node): make `kReinitializeHandle` work for TLS wrap (#31079)
[ { "path": "ext/node/polyfills/net.ts", "patch": "@@ -1809,6 +1809,9 @@ Object.defineProperty(Socket.prototype, \"_handle\", {\n Socket.prototype[kReinitializeHandle] = function (handle) {\n this._handle?.close();\n \n+ // Make sure TLS wrap works after reinitialize.\n+ handle.afterConnectTls = this._han...
2025-10-24T08:05:59
golang/go
385dc33250336081c0c630938c3efede481eff76
99b724f4542f4d9fb4a2ceacbbd2a6d9367dc0f6
runtime: prevent time.Timer.Reset(0) from deadlocking testing/synctest tests In Go 1.23+, timer channels behave synchronously. When we have a timer channel (i.e. !async && t.isChan) we would lock the runtime.timer.sendLock mutex at the beginning of runtime.timer.modify()'s execution. Calling time.Timer.Reset(0) withi...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -5,6 +5,7 @@\n package synctest_test\n \n import (\n+\t\"context\"\n \t\"fmt\"\n \t\"internal/synctest\"\n \t\"internal/testenv\"\n@@ -329,6 +330,31 @@ func TestAfterFuncRunsImmediately(t *testing.T) {\n \t})\n }\n \n+// TestTimerResetZeroDoNo...
2025-11-01T15:15:58
mrdoob/three.js
665679ab9b57b3af514fbff34c2c2db6c19ac926
9ca91145520e99deeffbfe7164a07782aad499a5
Revert "fix: Spaces cause path parsing errors (#29819)" (#29821) This reverts commit bb4eacd5e21e6da0317e4c62c77dffccf48214ef.
[ { "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-06T11:06:17
vuejs/vue
e733e5cee8585fdf4a0c0e5e77e7816befa24ad4
84856a3a767084fa5b93a85ea5e75720f84d370e
fix SSR v-show render. (#5224) * fix SSR v-show bug. v-show info needs to be merged from parent to child component * improve variable name * update test case * update test case
[ { "path": "src/server/render.js", "patch": "@@ -144,6 +144,22 @@ function hasAncestorData (node: VNode) {\n return parentNode && (parentNode.data || hasAncestorData(parentNode))\n }\n \n+function getVShowDirectiveInfo (node: VNode): ?VNodeDirective {\n+ let dir: VNodeDirective\n+ let tmp\n+\n+ while (n...
2017-03-21T01:50:26
denoland/deno
fc7ae0e4282fbd66ee03a26fcd81187b846b0fa6
0ed74e6c5357ba55088e984d0f527a7c1d0247bf
fix(check): fall back to copying tsgo binary if rename fails (#31074) Fixes https://github.com/denoland/deno/issues/31033.
[ { "path": "cli/tsc/go/setup.rs", "patch": "@@ -31,8 +31,8 @@ pub enum DownloadError {\n InvalidDownloadUrl(String, #[source] deno_core::url::ParseError),\n #[error(\"failed to unpack typescript-go: {0}\")]\n UnpackFailed(#[source] AnyError),\n- #[error(\"failed to rename typescript-go: {0}\")]\n- Re...
2025-10-23T21:00:15
golang/go
99b724f4542f4d9fb4a2ceacbbd2a6d9367dc0f6
27937289dc9fccf1f5513475145799087f39b964
cmd/go: document purego convention Fixes #23172 Change-Id: I854e399471dfa22e62fbdec9719e561c4501e5ac Reviewed-on: https://go-review.googlesource.com/c/go/+/660136 Reviewed-by: Michael Matloob <matloob@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mi...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2190,6 +2190,12 @@\n // building the package for Windows; similarly, math_386.s will be included\n // only when building the package for 32-bit x86.\n //\n+// By convention, packages with assembly implementations may provide a go-only\n+// version under the \...
2025-03-21T23:23:50
mrdoob/three.js
9ca91145520e99deeffbfe7164a07782aad499a5
99a02104494593777bf13b22a1cb9e83ba6a3ccf
Fix loaderArrayLoadRE regex to allow spaces before square bracket (#29820)
[ { "path": "manual/examples/resources/editor-settings.js", "patch": "@@ -70,7 +70,7 @@\n \t\tconst linkRE = /(href=)(\")(.*?)(\")()/g;\n \t\tconst imageSrcRE = /((?:image|img)\\.src = )(\")(.*?)(\")()/g;\n \t\tconst loaderLoadRE = /(loader\\.load[a-z]*\\s*\\(\\s*)('|\")(.*?)('|\")/ig;\n-\t\tconst loaderArray...
2024-11-06T11:04:59
vuejs/vue
59a372229b014de8cd610973f9428da63e2d72cc
26f196780cf4846522dd48db512389c8840f8366
also catch error in data() (close #5198)
[ { "path": "src/core/instance/state.js", "patch": "@@ -7,18 +7,19 @@ import {\n set,\n del,\n observe,\n- defineReactive,\n- observerState\n+ observerState,\n+ defineReactive\n } from '../observer/index'\n \n import {\n warn,\n+ bind,\n+ noop,\n hasOwn,\n isReserved,\n- isPlainObject,\n- ...
2017-03-17T03:46:37
denoland/deno
0ed74e6c5357ba55088e984d0f527a7c1d0247bf
6692895b174098536fbe8eba6e83c82a8b8399ed
feat(unstable): add `deno audit` subcommand (#30966) This commit adds a new `deno audit` subcommand that collects all dependencies and queries npm registry for information about known vulnerabilities of used npm packages. ``` $ ../deno/target/debug/deno audit ... ╭ Prototype Pollution Protection Bypass in qs │ Severi...
[ { "path": "cli/args/flags.rs", "patch": "@@ -111,6 +111,17 @@ pub struct AddFlags {\n pub default_registry: Option<DefaultRegistry>,\n }\n \n+#[derive(Clone, Debug, Default, Eq, PartialEq)]\n+pub struct AuditFlags {\n+ pub severity: String,\n+ pub ignore_registry_errors: bool,\n+ pub ignore_unfixable: ...
2025-10-23T16:43:59
golang/go
89dee70484669d546fff6ca29a4717368af351ff
8683bb846dfc1460c476cfed1696aad8e681926f
runtime: prioritize panic output over racefini For some reason CL 646198 uncovered #3934 and #20018 again, but only in race mode. It turns out that because racefini does not return, and racefini is called early after main returns, we would not properly wait for a concurrent panic to complete. This would result in fair...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -788,9 +788,6 @@ func TestPanicInlined(t *testing.T) {\n // Test for issues #3934 and #20018.\n // We want to delay exiting until a panic print is complete.\n func TestPanicRace(t *testing.T) {\n-\tif race.Enabled {\n-\t\tt.Skip(\"racefini exits program be...
2025-07-30T00:36:40