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 | 60ee95f25de408aa97543b4fd5f497309c2a26aa | 9b59e9be355bca7012080dc9f796622c5d92032c | LUT Loaders: Add support for FloatType and add docs (#27431)
* Update LUT loaders
* Add docs for LUT loaders
* Fix lint issues
* Update list.json
* Add module name to error messages
* Remove unnecessary code
* Update comment | [
{
"path": "docs/examples/en/loaders/LUT3dlLoader.html",
"patch": "@@ -0,0 +1,84 @@\n+<!DOCTYPE html>\n+<html lang=\"en\">\n+\t<head>\n+\t\t<meta charset=\"utf-8\" />\n+\t\t<base href=\"../../../\" />\n+\t\t<script src=\"page.js\"></script>\n+\t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"page.css\" /... | 2023-12-27T11:06:29 |
denoland/deno | 437afebf5c77119cde1f8c860f60f1375701e840 | f1fd29aba050a7a4031cac42f31021fce249b8db | fix: don't unwrap in global interceptor (#29484)
Handle other contexts gracefully instead of panicking.
Fixes: https://github.com/denoland/deno/issues/29482 | [
{
"path": "ext/node/global.rs",
"patch": "@@ -280,7 +280,9 @@ pub fn getter<'s>(\n \n let context = scope.get_current_context();\n let inner = {\n- let storage = context.get_slot::<GlobalsStorage>().unwrap();\n+ let Some(storage) = context.get_slot::<GlobalsStorage>() else {\n+ return v8::Int... | 2025-05-28T15:22:18 |
golang/go | 6536a9354728523f7ac3627f558ba3f51163e72c | efc37e97c0f358f3cffe7ca2b78c743470345189 | encoding/json/jsontext: preserve buffer capacity in Decoder.Reset
The Decoder.Reset method is not preserving the internal buffer between
resets, causing buffer capacity to be lost and resulting in unnecessary
allocations when reusing decoders. This is particularly problematic when
decoding many small messages.
This c... | [
{
"path": "src/encoding/json/jsontext/decode.go",
"patch": "@@ -138,7 +138,14 @@ func (d *Decoder) Reset(r io.Reader, opts ...Options) {\n \tcase d.s.Flags.Get(jsonflags.WithinArshalCall):\n \t\tpanic(\"jsontext: cannot reset Decoder passed to json.UnmarshalerFrom\")\n \t}\n-\td.s.reset(nil, r, opts...)\n+\... | 2025-06-23T11:47:21 |
vuejs/vue | acd712d54dc4dc07151047d4edc2cf4ea7866106 | af0bf2a8865892907e0f065a2c95d09d7d17816f | fix ref codegen | [
{
"path": "src/compiler/directives/ref.js",
"patch": "@@ -14,6 +14,6 @@ export function ref (el: ASTElement, dir: ASTDirective) {\n }\n // registerRef: _r(name, ref, vFor?, remove?)\n const code = `_r(\"${dir.arg}\",n1.child||n1.elm,${isFor ? 'true' : 'false'}`\n- addHook(el, 'insert', `${code},false... | 2016-05-20T15:36:14 |
mrdoob/three.js | 9b59e9be355bca7012080dc9f796622c5d92032c | c8252d3ec82412bdd8db0efcdbd77440e8af10dc | Update RectAreaLight.html (#27441)
Fix a error | [
{
"path": "docs/api/zh/lights/RectAreaLight.html",
"patch": "@@ -33,7 +33,7 @@ <h2>代码示例</h2>\n \t\trectLight.lookAt( 0, 0, 0 );\n \t\tscene.add( rectLight )\n \n-\t\trectLightHelper = new RectAreaLightHelper( rectLight );\n+\t\tconst rectLightHelper = new RectAreaLightHelper( rectLight );\n \t\tscene.add( r... | 2023-12-27T09:49:58 |
denoland/deno | f1fd29aba050a7a4031cac42f31021fce249b8db | e56dc01cb8bdece748c7a568cc153531d72db600 | fix(ext/node): fix `getEventListeners` in `node:events` (#29480) | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -46,6 +46,7 @@ import {\n } from \"ext:deno_node/internal/validators.mjs\";\n import { spliceOne } from \"ext:deno_node/_utils.ts\";\n import { nextTick } from \"ext:deno_node/_process/process.ts\";\n+import { eventTargetData } from \"ext:deno_web/02_... | 2025-05-28T12:47:31 |
golang/go | efc37e97c0f358f3cffe7ca2b78c743470345189 | 98a031193b93d7b0e8353810351c9544250e7bcd | cmd/go: always return the cached path from go tool -n
If we're running go tool -n always return the cached path of the tool.
We can't always use the cached path when running the tool because if we
copied the tool to the cached location in the same process and then try
to run it we'll run into #22315, producing spuriou... | [
{
"path": "src/cmd/go/internal/tool/tool.go",
"patch": "@@ -277,6 +277,29 @@ func loadModTool(ctx context.Context, name string) string {\n \treturn \"\"\n }\n \n+func builtTool(runAction *work.Action) string {\n+\tlinkAction := runAction.Deps[0]\n+\tif toolN {\n+\t\t// #72824: If -n is set, use the cached p... | 2025-07-18T18:14:16 |
vuejs/vue | 3245ee6fe4588719483b909993e737682fa3cb3d | 600ebfbaa4b95949513b1f6500570891d7d012ec | fix root mount with emptyNode | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -350,10 +350,11 @@ export function createPatchFunction (backend) {\n // empty mount, create new root element\n createElm(vnode, insertedVnodeQueue)\n } else {\n- if (sameVnode(oldVnode, vnode)) {\n+ const isRealElement = isDef(oldVno... | 2016-05-20T03:36:35 |
mrdoob/three.js | d3bd0d885f133a38771bfdaebb1baab49caaac51 | 8738774b90bc7df48e011682d918c0f9e4405ab3 | WebGPURenderer: Fix alpha canvas in WebGPU (#27442)
* fix alpha background in webgpu
* fix whitespace | [
{
"path": "examples/jsm/renderers/common/Renderer.js",
"patch": "@@ -30,6 +30,7 @@ class Renderer {\n \n \t\tconst {\n \t\t\tlogarithmicDepthBuffer = false,\n+\t\t\talpha = true\n \t\t} = parameters;\n \n \t\t// public\n@@ -43,6 +44,8 @@ class Renderer {\n \t\tthis.autoClearDepth = true;\n \t\tthis.autoClea... | 2023-12-26T13:33:38 |
denoland/deno | e56dc01cb8bdece748c7a568cc153531d72db600 | a88c61de3d1ffe9f355d24a26a2f28e1c9b45bfc | fix(ext/node): add "internal/http2/util" module (#29474) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -640,6 +640,7 @@ deno_core::extension!(deno_node,\n \"internal/fs/handle.ts\",\n \"internal/hide_stack_frames.ts\",\n \"internal/http.ts\",\n+ \"internal/http2/util.ts\",\n \"internal/idna.ts\",\n \"internal/net.ts\",\n \"internal/normaliz... | 2025-05-28T12:46:36 |
golang/go | 98a031193b93d7b0e8353810351c9544250e7bcd | 6bb42997c8741f301f2655175abe2b6bdc943ed8 | runtime: check TestUsingVDSO ExitError type assertion
Currently this test panics if the error is not an ExitError. We aren't
expecting other errors, but we want to continue to the t.Fatal so the
error contents actually get logged.
For #74672.
Change-Id: I6a6a636cee5ddac500ed7ec549340b02944101ab
Reviewed-on: https://... | [
{
"path": "src/runtime/vdso_test.go",
"patch": "@@ -62,7 +62,7 @@ func TestUsingVDSO(t *testing.T) {\n \t\tt.Logf(\"%s\", out)\n \t}\n \tif err != nil {\n-\t\tif err := err.(*exec.ExitError); err != nil && err.Sys().(syscall.WaitStatus).Signaled() {\n+\t\tif err, ok := err.(*exec.ExitError); ok && err.Sys()... | 2025-07-23T20:56:50 |
mrdoob/three.js | 85b3ee713ae64ac1db20fd9dd29d2892d10fab3d | 1cd56c46ba996de8ce975b371d8cd117e6e3aa1c | examples: GTAOPass fix setting of PERSPECTIVE_CAMERA (#27436) | [
{
"path": "examples/jsm/postprocessing/GTAOPass.js",
"patch": "@@ -61,7 +61,7 @@ class GTAOPass extends Pass {\n \t\t\tdepthTest: false,\n \t\t\tdepthWrite: false,\n \t\t} );\n-\t\tthis.gtaoMaterial.definesPERSPECTIVE_CAMERA = this.camera.isPerspectiveCamera ? 1 : 0;\n+\t\tthis.gtaoMaterial.defines.PERSPECT... | 2023-12-24T10:39:56 |
denoland/deno | a88c61de3d1ffe9f355d24a26a2f28e1c9b45bfc | 32db2db1211aa5237c8d87e5da7a5936ee9d43d2 | fix(ext/node): return values in node:domain (#29440)
When using Domain#bind, Domain#intercept, and Domain#run we were
invoking the callback but then not actually returning the value returned
from that callback.
This makes Gulp work with async functions as tasks. | [
{
"path": "ext/node/polyfills/domain.ts",
"patch": "@@ -50,7 +50,7 @@ export class Domain extends EventEmitter {\n const self = this;\n return function () {\n try {\n- FunctionPrototypeApply(fn, null, ArrayPrototypeSlice(arguments));\n+ return FunctionPrototypeApply(fn, null, Arr... | 2025-05-28T11:50:46 |
golang/go | 71c2bf551303930faa32886446910fa5bd0a701a | c74399e7f5e763e6c25978d090122a0a73a695ee | cmd/compile: fix loclist for heap return vars without optimizations
When compiling without optimizations certain variables such as
return params end up missing location lists.
Fixes #65405
Change-Id: Id4ec6b1ab6681fd77b8fefb47a4ec05060c128ef
GitHub-Last-Rev: 5ab6a5398162119dd0cd5325f4239b4559b030bd
GitHub-Pull-Reque... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -248,11 +248,6 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t\tif n.Class == ir.PPARAM || n.Class == ir.PPARAMOUT {\n \t\t\ttag = dwarf.DW_TAG_formal_parameter\n \t\t}\n-\t\tif n.Esc() == ir.EscHea... | 2025-07-22T22:05:06 |
mrdoob/three.js | a797aca01f4abbb9d776c2ad03e1129aa40a2283 | 93b292382c8d210dac7f9275e7b391c468453817 | OrbitControls: fix Orthographic 'change' event (#27424)
* OrbitControls: fix Orthographic 'change' event
Signed-off-by: Guilherme Avila <3927951+sciecode@users.noreply.github.com>
* OrbitControls: only recalculate when zoom has changed
Signed-off-by: Guilherme Avila <3927951+sciecode@users.noreply.github.com>... | [
{
"path": "examples/jsm/controls/OrbitControls.js",
"patch": "@@ -373,10 +373,15 @@ class OrbitControls extends EventDispatcher {\n \t\t\t\t\t}\n \n \t\t\t\t} else if ( scope.object.isOrthographicCamera ) {\n+\t\t\t\t\t\n+\t\t\t\t\tzoomChanged = scale !== 1;\n \n-\t\t\t\t\tscope.object.zoom = Math.max( scop... | 2023-12-24T10:08:31 |
denoland/deno | 32db2db1211aa5237c8d87e5da7a5936ee9d43d2 | 4823f2b9e8bc86f37e0537577988a483c004f2f5 | fix(ext/node): createInterface doesn't require env permission (#29472)
Closes https://github.com/denoland/deno/issues/29441 | [
{
"path": "ext/node/polyfills/_readline.mjs",
"patch": "@@ -24,6 +24,8 @@\n // deno-lint-ignore-file prefer-primordials\n // deno-lint-ignore-file camelcase\n \n+import { op_get_env_no_permission_check } from \"ext:core/ops\";\n+\n import {\n clearLine,\n clearScreenDown,\n@@ -35,7 +37,6 @@ import promi... | 2025-05-28T09:59:26 |
mrdoob/three.js | 93b292382c8d210dac7f9275e7b391c468453817 | 3c8d309ed5bc932d4ae0a51bc1129070ef8de174 | fix: update vertices according uv.y when linecap is square (#27429) | [
{
"path": "examples/jsm/loaders/SVGLoader.js",
"patch": "@@ -3082,7 +3082,8 @@ class SVGLoader extends Loader {\n \t\t\t\t\t\t} else {\n \n \t\t\t\t\t\t\ttempV2_3.toArray( vertices, 1 * 3 );\n-\t\t\t\t\t\t\ttempV2_3.toArray( vertices, 3 * 3 );\n+\t\t\t\t\t\t\t// using tempV2_4 to update 3rd vertex if the uv... | 2023-12-24T10:06:44 |
golang/go | c74399e7f5e763e6c25978d090122a0a73a695ee | 4ed9943b264170b11af375f9cc82807516578c77 | net: correct comment for ListenConfig.ListenPacket
Fixes #74634
Change-Id: I21196c4aef1b717bfda0b54e61b35e83cfa9dc1b
Reviewed-on: https://go-review.googlesource.com/c/go/+/689075
Reviewed-by: Sean Liao <sean@liao.dev>
Auto-Submit: Sean Liao <sean@liao.dev>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou... | [
{
"path": "src/net/dial.go",
"patch": "@@ -837,7 +837,7 @@ func (lc *ListenConfig) Listen(ctx context.Context, network, address string) (Li\n // parameters.\n //\n // The ctx argument is used while resolving the address on which to listen;\n-// it does not affect the returned Listener.\n+// it does not affe... | 2025-07-20T23:20:11 |
vuejs/vue | 78331451fab555641234806ac915d5e16038d6df | 59e92a58c536bf031b327eb5a543d0fa3fe8db70 | improve watcher evaluation error warning | [
{
"path": "src/core/observer/watcher.js",
"patch": "@@ -7,6 +7,7 @@ import {\n remove,\n isObject,\n parsePath,\n+ nextTick,\n _Set as Set\n } from '../util/index'\n \n@@ -81,7 +82,28 @@ export default class Watcher {\n */\n get () {\n this.beforeGet()\n- const value = this.getter.call(... | 2016-05-19T17:34:16 |
mrdoob/three.js | 3c8d309ed5bc932d4ae0a51bc1129070ef8de174 | 8ca5469c99aba0b2888a3109c82ec8aa4a5e9901 | Fix fogExp2 (#27430) | [
{
"path": "src/renderers/webgl/WebGLPrograms.js",
"patch": "@@ -300,7 +300,7 @@ function WebGLPrograms( renderer, cubemaps, cubeuvmaps, extensions, capabilities\n \n \t\t\tfog: !! fog,\n \t\t\tuseFog: material.fog === true,\n-\t\t\tfogExp2: ( fog && fog.isFogExp2 ),\n+\t\t\tfogExp2: ( !! fog && fog.isFogExp... | 2023-12-24T08:43:12 |
denoland/deno | 077f0c5665647b85e394b158f196bb41c64cfa21 | d8879ee3fdb660fb3bbc9612adfb592ac37169f3 | fix(ext/node): ignore some Node.js specific flags (#29461) | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -1220,6 +1220,10 @@ function toDenoArgs(args: string[]): string[] {\n if (flagInfo === undefined) {\n if (arg === \"--no-warnings\") {\n denoArgs.push(\"--quiet\");\n+ } else if (arg === \"--expose-internals\") {\n... | 2025-05-28T03:02:26 |
golang/go | d5ec0815e69175d93bb741e9bb0a55b919facc6d | f7cc61e7d7f77521e073137c6045ba73f66ef902 | runtime: relax TestMemoryLimitNoGCPercent a bit
It seems to be pretty flaky. I've seen:
retained=289438024
limit=268435456
bound=285212672
Which is ~4MB over the bound.
Not sure why this tends to be darwin-specific, but we'll fix
just darwin for now.
(It isn't quite darwin-only, as it appeared in #66893.
But ... | [
{
"path": "src/runtime/testdata/testprog/gc.go",
"patch": "@@ -395,6 +395,9 @@ func gcMemoryLimit(gcPercent int) {\n \t\t// somewhat heavily here) this bound is kept loose. In practice the Go runtime\n \t\t// should do considerably better than this bound.\n \t\tbound := int64(myLimit + 16<<20)\n+\t\tif runt... | 2025-07-21T20:37:27 |
vuejs/vue | 1d45c4b9e95dd5a3643d0411726a2da0859d24bd | 94d186b09564f6736a8e6dbabf299dfc04b95115 | extract style/class/transition as web platform compiler modules (#2885)
* extract style/class/transition as web platform compiler modules
* fixed genData bug
* made module.staticKeys optional in compiler
* changed module.genData just return additional data in compiler
* cached genStaticKeys in compiler opt... | [
{
"path": "flow/compiler.js",
"patch": "@@ -2,6 +2,7 @@ declare type CompilerOptions = {\n warn?: Function,\n expectHTML?: boolean,\n preserveWhitespace?: boolean,\n+ modules?: Array<ModuleOptions>,\n directives?: { [key: string]: Function },\n isUnaryTag?: (tag: string) => ?boolean,\n isReserv... | 2016-05-17T01:02:13 |
mrdoob/three.js | 299f53ff4e65041a95b13c98b8da24a47cb877ea | b1d1cdfbcb67a00bfaf6a64b0022c498cc17c15e | MaterialXLoader: improve onError handling (#27433) | [
{
"path": "examples/jsm/loaders/MaterialXLoader.js",
"patch": "@@ -141,6 +141,20 @@ class MaterialXLoader extends Loader {\n \n \tload( url, onLoad, onProgress, onError ) {\n \n+\t\tconst _onError = function ( e ) {\n+\n+\t\t\tif ( onError ) {\n+\n+\t\t\t\tonError( e );\n+\n+\t\t\t} else {\n+\n+\t\t\t\tcons... | 2023-12-23T21:25:36 |
denoland/deno | 1b6736d3f93c0f5321d6b05ce748bd88baf9a120 | e3bf5ee5db47e01a7833e588b7a9160339e6dc2d | fix(ext/node): node:buffer validates INSPECT_MAX_BYTES (#29469)
Co-authored-by: David Sherret <dsherret@users.noreply.github.com> | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -119,7 +119,9 @@ const MAX_UINT32 = 2 ** 32;\n \n const customInspectSymbol = SymbolFor(\"nodejs.util.inspect.custom\");\n \n-export const INSPECT_MAX_BYTES = 50;\n+let INSPECT_MAX_BYTES_ = 50;\n+\n+export const INSPECT_MAX_BYTES = INSPECT_MAX... | 2025-05-27T23:31:35 |
golang/go | f7cc61e7d7f77521e073137c6045ba73f66ef902 | 5dac42363ba8281a3f4f08e03af2292b763adc38 | cmd/compile: for arm64 epilog, do SP increment with a single instruction
That way, the frame is atomically popped. Previously, for big frames
the SP was unwound in two steps (because arm64 can only add constants
up to 1<<12 in a single instruction).
Fixes #73259
Change-Id: I382c249194ad7bc9fc19607c27487c58d90d49e5
R... | [
{
"path": "src/cmd/internal/obj/arm64/obj7.go",
"patch": "@@ -907,18 +907,49 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\tp.To.Reg = REGFP\n \t\t\t\tp.To.Offset = REGLINK\n \n-\t\t\t\t// ADD $aoffset, RSP, RSP\n-\t\t\t\tq = newprog()\n-\t\t\t\tq.As = AADD\n-\t\t\t\... | 2025-07-21T17:09:35 |
mrdoob/three.js | b1d1cdfbcb67a00bfaf6a64b0022c498cc17c15e | d04539a76736ff500cae883d6a38b3dd8643c548 | ShaderNode: Fix .isArrayInput (#27428) | [
{
"path": "examples/jsm/nodes/shadernode/ShaderNode.js",
"patch": "@@ -341,7 +341,7 @@ class ShaderNodeInternal extends Node {\n \n \tget isArrayInput() {\n \n-\t\treturn /^\\(\\s+?\\[/.test( this.jsFunc.toString() );\n+\t\treturn /^\\((\\s+)?\\[/.test( this.jsFunc.toString() );\n \n \t}\n ",
"additions... | 2023-12-23T13:39:51 |
vuejs/vue | b67143a5b83f260a7191ee05e05855f03cc07722 | 3573ffff1ff7df1dc1f8c6bd1486d5a07ae192be | fix optimizer isStatic check | [
{
"path": "src/compiler/optimizer.js",
"patch": "@@ -24,7 +24,7 @@ export function optimize (root: ?ASTElement, options: CompilerOptions) {\n markStaticRoots(root)\n }\n \n-function markStatic (node) {\n+function markStatic (node: ASTNode) {\n node.static = isStatic(node)\n if (node.type === 1) {\n ... | 2016-05-16T19:50:45 |
golang/go | f0e9dc09752cc2f03fcedff458660ab2276bcf8d | 03a3887f31264e778c9aaf62247a478eedd3633d | [dev.simd] cmd/compile: fix opLen(2|3)Imm8_2I intrinsic function
This function reads the const from the wrong arg, this CL fixes it.
Change-Id: Icd38977a35f0df9064efb290fa6390453d6b9e5b
Reviewed-on: https://go-review.googlesource.com/c/go/+/688595
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go L... | [
{
"path": "src/cmd/compile/internal/ssagen/intrinsics.go",
"patch": "@@ -1722,7 +1722,7 @@ func opLen3Imm8(op ssa.Op, t *types.Type, offset int) func(s *state, n *ir.CallE\n \n func opLen2Imm8_2I(op ssa.Op, t *types.Type, offset int) func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {\n \treturn ... | 2025-07-17T22:23:15 |
mrdoob/three.js | 08b24a17a486f97b57f4564f85bdab9bcc81cb04 | f163ee91d583edd6b7382df8090113e57b26163f | Timer: Added FixedTimer (#27423)
* Timer: Added FixedTimer.
* Updated docs.
* Updated docs. | [
{
"path": "docs/examples/en/misc/Timer.html",
"patch": "@@ -17,7 +17,6 @@ <h1>[name]</h1>\n \t\t\t<ul>\n \t\t\t\t<li>[name] has an [page:.update]() method that updates its internal state. That makes it possible to call [page:.getDelta]() and [page:.getElapsed]() multiple times per simulation step without ge... | 2023-12-22T10:20:05 |
denoland/deno | 7a86ee086f80c9541b9b842c18f86c0d479a68f3 | bca0a9a6bf440e378fab928ee454cae8e7485b7f | fix(lsp): do not warn about unscoped package name (#29463)
It's useful to just use a bare specifier for the package name in a
workspace when not publishing to JSR. | [
{
"path": "cli/schemas/config-file.v1.json",
"patch": "@@ -709,8 +709,7 @@\n },\n \"name\": {\n \"type\": \"string\",\n- \"description\": \"The name of this JSR package. Must be scoped\",\n- \"pattern\": \"^@[a-z0-9-]+/[a-z0-9-]+$\"\n+ \"description\": \"The name of this JSR or ... | 2025-05-27T15:07:58 |
vuejs/vue | c908352d7cf4a7429439840be54fb6c5c85bb968 | 6daba537502427c3c46357438355dd088e61e4d9 | fix node-ops type declaration | [
{
"path": "src/platforms/web/runtime/node-ops.js",
"patch": "@@ -30,7 +30,7 @@ export function parentNode (node: Node): ?Element {\n return node.parentElement\n }\n \n-export function nextSibling (node: Node): Node {\n+export function nextSibling (node: Node): ?Node {\n return node.nextSibling\n }\n ",
... | 2016-05-16T16:58:49 |
golang/go | 5dac42363ba8281a3f4f08e03af2292b763adc38 | e5502e0959bb54ec70ca500e8d2b6f5ac5efbc53 | runtime: fix asan wrapper for riscv64
Make sure we keep the M in X21. The instruction at line 87
needs to be loading from the M, not from the gsignal.
Fixes #73979, maybe?
Change-Id: I3aba1c35454636138b305bca26e20dbc8e6b1d6e
Reviewed-on: https://go-review.googlesource.com/c/go/+/688975
Reviewed-by: Joel Sing <joel@s... | [
{
"path": "src/runtime/asan_riscv64.s",
"patch": "@@ -81,13 +81,13 @@ TEXT\tasancall<>(SB), NOSPLIT, $0-0\n \tMOV\tg_m(g), X21\n \n \t// Switch to g0 stack if we aren't already on g0 or gsignal.\n-\tMOV\tm_gsignal(X21), X21\n-\tBEQ\tX21, g, call\n+\tMOV\tm_gsignal(X21), X22\n+\tBEQ\tX22, g, call\n \n-\tMOV\... | 2025-07-19T16:34:04 |
mrdoob/three.js | 4acb78002425969f7c0cf46423ea5f728c41dfbc | cf7a4643736ecc95210718c06f6c27f04e3fd8fc | WebGPURenderer: bug fixes for WebGLBackend (#27410)
Co-authored-by: aardgoose <angus.sawyer@email.com> | [
{
"path": "examples/jsm/renderers/common/Renderer.js",
"patch": "@@ -298,6 +298,7 @@ class Renderer {\n \t\t\trenderContext.depthTexture = renderTargetData.depthTexture;\n \t\t\trenderContext.width = renderTargetData.width;\n \t\t\trenderContext.height = renderTargetData.height;\n+\t\t\trenderContext.render... | 2023-12-20T14:44:55 |
denoland/deno | bca0a9a6bf440e378fab928ee454cae8e7485b7f | 280f5985f51166778ddd0f329eb3023b5fbad845 | fix(compile): init dummy stdin after debug env is initialized (#29144)
This should be the last change to fix
https://github.com/denoland/deno/issues/27730 and
https://github.com/denoland/deno/issues/21091
The dummy stdin needed when using `--no-terminal` instantly closes, but
closing can't be done until the debug env... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -996,12 +996,6 @@ internals.__bootstrapNodeProcess = function (\n core.setMacrotaskCallback(runNextTicks);\n enableNextTick();\n \n- // Replace stdin if it is not a terminal\n- const newStdin = initStdin();\n- if (newStdin) {\n- s... | 2025-05-27T06:40:20 |
golang/go | e5502e0959bb54ec70ca500e8d2b6f5ac5efbc53 | 2363897932cfb279dd8810d2c92438f7ddcfd951 | cmd/go: check subcommand properties
This change corrects the properties checked by Lookup. We were
inspecting the properties of the Command receiver; now we are
inspecting the properties of the subcommand.
Fixes #73864.
Change-Id: Ieb462e489fc4f8f0568aa3a2d404b322d627166c
Reviewed-on: https://go-review.googlesource... | [
{
"path": "src/cmd/go/internal/base/base.go",
"patch": "@@ -62,11 +62,11 @@ var Go = &Command{\n // Lookup returns the subcommand with the given name, if any.\n // Otherwise it returns nil.\n //\n-// Lookup ignores subcommands that have len(c.Commands) == 0 and c.Run == nil.\n+// Lookup ignores any subcomma... | 2025-05-30T21:59:34 |
mrdoob/three.js | 3e1c5f4e5733541b2cb7456488016cccc3e92ac1 | fe312e19c2d8fa4219d035f0b83bc13a46fb1927 | Nodes: use relative references inside examples/jsm (#27381)
Fixes https://github.com/mrdoob/three.js/issues/27354 | [
{
"path": "examples/jsm/loaders/MaterialXLoader.js",
"patch": "@@ -19,7 +19,7 @@ import {\n \tmx_safepower, mx_contrast,\n \tmx_srgb_texture_to_lin_rec709,\n \tsaturation\n-} from 'three/nodes';\n+} from '../nodes/Nodes.js';\n \n const colorSpaceLib = {\n \tmx_srgb_texture_to_lin_rec709",
"additions": 1... | 2023-12-20T01:37:40 |
vuejs/vue | 0dc5d96e3ca597eaf56362c6f583785fa0169b2e | 2dc5b1782871d87a7c795361eac0d49fd396c05f | fix declarations | [
{
"path": "flow/component.js",
"patch": "@@ -1,6 +1,5 @@\n import type { Config } from '../src/core/config'\n import type VNode from '../src/core/vdom/vnode'\n-import type { ComponentDef } from '../src/core/vdom/create-element'\n import type Watcher from '../src/core/observer/watcher'\n \n declare interface... | 2016-05-14T19:54:49 |
denoland/deno | 280f5985f51166778ddd0f329eb3023b5fbad845 | ff74f5416170f63105126c51455be29332d2b20d | fix(lsp): lookup patched jsr packages for auto-import (#29437) | [
{
"path": "cli/lsp/jsr.rs",
"patch": "@@ -57,34 +57,27 @@ impl JsrCacheResolver {\n let info_by_name = DashMap::new();\n let mut workspace_packages_by_name = HashMap::new();\n if let Some(config_data) = config_data {\n- for jsr_pkg_config in config_data.member_dir.workspace.jsr_packages() {... | 2025-05-27T04:16:53 |
mrdoob/three.js | e041e082b7e437a9a226b60851016c1c98022c01 | 74ca7d86a7110e670f8d84f21a1dcd7567ecc797 | WebGLRenderer: Add support for AgX Tone Mapping (#27366)
* Add support for AGX tone mapping
* Update tonemapping example
* Update test
* AGX -> AgX
* glsl lint, suffixes fix
* Adjust tone mapping constant values
* Update src/renderers/shaders/ShaderChunk/tonemapping_pars_fragment.glsl.js
Co-author... | [
{
"path": "examples/jsm/postprocessing/OutputPass.js",
"patch": "@@ -5,6 +5,7 @@ import {\n \tLinearToneMapping,\n \tReinhardToneMapping,\n \tCineonToneMapping,\n+\tAgXToneMapping,\n \tACESFilmicToneMapping,\n \tSRGBTransfer\n } from 'three';\n@@ -59,6 +60,7 @@ class OutputPass extends Pass {\n \t\t\telse i... | 2023-12-19T15:22:22 |
golang/go | 2363897932cfb279dd8810d2c92438f7ddcfd951 | e32255fcc0861727243fca4e94766c0a322954fb | cmd/internal/obj: enable got pcrel itype in fips140 for riscv64
This CL enable R_RISCV_GOT_PCREL_ITYPE in fips140
Fixes #74662
Change-Id: Ic189c4e352517ae74034f207a5f944b610f2eb73
Reviewed-on: https://go-review.googlesource.com/c/go/+/688635
Reviewed-by: Mark Ryan <markdryan@rivosinc.com>
Reviewed-by: Cherry Mui <che... | [
{
"path": "src/cmd/internal/obj/fips140.go",
"patch": "@@ -384,6 +384,7 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_RISCV_TLS_IE,\n \t\tobjabi.R_RISCV_TLS_LE,\n \t\tobjabi.R_RISCV_GOT_HI20,\n+\t\tobjabi.R_RISCV_GOT_PCREL_ITYPE,\n \t\tobjabi.R_RISCV_PCREL_HI20,\n \t\tobjabi.R_RIS... | 2025-07-18T03:06:24 |
denoland/deno | e7bb7cca24269dbe3747de17d641441f9a665a75 | 15f9368ace492bf547994308bff490160373ecef | fix: load changed non-remote dynamic imports at runtime (#29413) | [
{
"path": "Cargo.lock",
"patch": "@@ -1678,9 +1678,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_cache_dir\"\n-version = \"0.20.1\"\n+version = \"0.21.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8976e7d563536051895564bdc7041e7f7f771a64bede15ca92fbcffc4e7a... | 2025-05-26T21:38:51 |
mrdoob/three.js | 74ca7d86a7110e670f8d84f21a1dcd7567ecc797 | 73fafde8d07c21e38c57998716e71560d5c1d20f | WebGPURenderer: Compute Snow Example (#27400)
* NodeMaterial: Check toneMapped=true
* Renderer: overrideMaterial compatible with positionNode
* GaussianBlurNode: Added resolution
* add `webgpu_compute_particles_snow` example
* update
* fix scale offset collision
* update initial pos y | [
{
"path": "examples/files.json",
"patch": "@@ -322,6 +322,7 @@\n \t\t\"webgpu_compute_audio\",\n \t\t\"webgpu_compute_particles\",\n \t\t\"webgpu_compute_particles_rain\",\n+\t\t\"webgpu_compute_particles_snow\",\n \t\t\"webgpu_compute_points\",\n \t\t\"webgpu_compute_texture\",\n \t\t\"webgpu_compute_textu... | 2023-12-19T15:08:29 |
golang/go | e32255fcc0861727243fca4e94766c0a322954fb | 0451816430486a25966dd76aa92735ac0588b8e5 | cmd/compile/internal/ssa: restrict architectures for TestDebugLines_74576
CL 687815 recently added TestDebugLines_74576.
The pre-existing debug_lines_test.go file generally restricts the
tested architectures and contains multiple warnings that the
testing approach is useful but fragile, such as:
"These files must ... | [
{
"path": "src/cmd/compile/internal/ssa/debug_lines_test.go",
"patch": "@@ -116,20 +116,30 @@ func TestDebugLines_53456(t *testing.T) {\n }\n \n func TestDebugLines_74576(t *testing.T) {\n-\ttests := []struct {\n-\t\tfile string\n-\t\twantStmts []int\n-\t}{\n-\t\t{\"i74576a.go\", []int{12, 13, 13, 14}}... | 2025-07-18T22:25:08 |
vuejs/vue | 20fb79a1ea098bedda6fec8bebbb184ac51fce20 | 750bec1024478022453277a4d175cff5a8445672 | new render mechanism (#2857)
* updated compiler with new render functions
* separated createElement into renderSelf & renderElement
supported getters for text node & static root
* adapted new element creator into render call
* improved \$createElement
* fixed by flow check
* fixed ssr bugs for $createE... | [
{
"path": "flow/component.js",
"patch": "@@ -1,5 +1,6 @@\n import type { Config } from '../src/core/config'\n import type VNode from '../src/core/vdom/vnode'\n+import type { ComponentDef } from '../src/core/vdom/create-element'\n import type Watcher from '../src/core/observer/watcher'\n \n declare interface... | 2016-05-14T19:49:18 |
mrdoob/three.js | 73fafde8d07c21e38c57998716e71560d5c1d20f | e5c2a56d035df52b3b4d6f4a066e65bc1941f634 | WebGPURenderer: Backdrop Water Example (#27397)
* fix triplanar with dynamic mesh
* add example: `webgpu_backdrop_water`
* fix names
* cleanup
* cleanup
* revision
* Update puppeteer.js
* revision
* revision
* caustic
* revision
* revision
* Update webgpu_backdrop_water.html
* up... | [
{
"path": "examples/files.json",
"patch": "@@ -316,6 +316,7 @@\n \t\"webgpu (wip)\": [\n \t\t\"webgpu_backdrop\",\n \t\t\"webgpu_backdrop_area\",\n+\t\t\"webgpu_backdrop_water\",\n \t\t\"webgpu_camera_logarithmicdepthbuffer\",\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_compute_audio\",",
"additions": 1,... | 2023-12-19T14:56:12 |
denoland/deno | 15f9368ace492bf547994308bff490160373ecef | 32acf3a92490652c2af12e58d9a2066fbb432a92 | fix(lsp): lookup mapped npm specifier resolutions for auto-import (#29388) | [
{
"path": "cli/lsp/analysis.rs",
"patch": "@@ -462,7 +462,7 @@ impl<'a> TsResponseImportMapper<'a> {\n return Some(result);\n }\n } else if let Some(dep_name) =\n- scoped_resolver.file_url_to_package_json_dep(specifier)\n+ scoped_resolver.file_url_to_npm_dep_key(specifier)\n ... | 2025-05-26T21:11:16 |
vuejs/vue | 68dac4c10a87997fd563f2c565341a360daf5203 | 8c6db60b58d1981d16658fd9005038c8c2aa4ea2 | fix ci script syntax error | [
{
"path": "build/ci.sh",
"patch": "@@ -1,5 +1,5 @@\n set -e\n npm run ci\n-if [ -z \"$CI_PULL_REQUEST\" ] then\n+if [ -z \"$CI_PULL_REQUEST\" ]; then\n cat ./coverage/lcov.info | ./node_modules/.bin/codecov\n fi",
"additions": 1,
"deletions": 1,
"language": "Shell Script"
}
] | 2016-05-14T01:16:44 |
golang/go | 34b70684ba2fc8c5cba900e9abdfb874c1bd8c0e | 66536242fce34787230c42078a7bbd373ef8dcb0 | go/types: infer correct type for y in append(bytes, y...)
The type-checking logic for append has a special case for
append(bytes, s...) where the typeset for s contains string.
However, this case was triggering even when the typeset contained
only []byte, causing the creation of Signature types of the form
func([]byte... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -91,22 +91,25 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t// to type []byte with a second argument of string type followed by ... .\n \t\t// This form appends the bytes of the string.\"\n \n-\... | 2025-07-18T17:16:21 |
mrdoob/three.js | e5c2a56d035df52b3b4d6f4a066e65bc1941f634 | 722bb0974ce326c9b0423554f18697df0cea6e2e | WebGPURenderer: Fix the use of same Material with different Skeleton (#27398) | [
{
"path": "examples/jsm/renderers/common/RenderObject.js",
"patch": "@@ -129,6 +129,12 @@ export default class RenderObject {\n \n \t\t}\n \n+\t\tif ( object.skeleton ) {\n+\n+\t\t\tcacheKey += object.skeleton.uuid + ',';\n+\n+\t\t}\n+\n \t\tif ( object.morphTargetInfluences ) {\n \n \t\t\tcacheKey += objec... | 2023-12-19T00:31:38 |
denoland/deno | 79a9868d5ee7cd8de8484bdebff68bbcba6359fe | ffe8ce62040c87d28819785d71f4dd5e35d2329e | fix(fmt): allow expressions used as key-value pair in css template literals (#29369) | [
{
"path": "Cargo.lock",
"patch": "@@ -3310,9 +3310,9 @@ dependencies = [\n \n [[package]]\n name = \"dprint-plugin-typescript\"\n-version = \"0.95.3\"\n+version = \"0.95.4\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"20b6b18951ebbfe42a284c62dc307a0ae836f8cb1c1aa34aff... | 2025-05-26T01:50:36 |
vuejs/vue | 6e9614d875299b7d7e62117ba8667ba34e17fccc | b926b9e7cd00cd6208ce1c94b03c4891627dc264 | fix ssr:dev task | [
{
"path": "build/webpack.ssr.dev.config.js",
"patch": "@@ -3,10 +3,11 @@ var alias = require('./alias')\n \n module.exports = {\n entry: path.resolve(__dirname, 'ssr.dev.entry.js'),\n+ target: 'node',\n output: {\n path: path.resolve(__dirname, '../dist'),\n filename: 'server-renderer.js',\n- ... | 2016-05-12T17:36:30 |
golang/go | 66536242fce34787230c42078a7bbd373ef8dcb0 | 385000b004616d5c42c868a2a072432cb65ca692 | cmd/compile/internal/escape: improve DWARF .debug_line numbering for literal rewriting optimizations
The literal rewriting optimizations to reduce user allocations
that were implemented in CL 649079 and related CLs like CL 684116
could produce .debug_line tables such that the line numbers
sometimes jumped back to a va... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -539,9 +539,8 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \t\treturn\n \t}\n \n-\tassignTemp := func(n ir.Node, init *ir.Nodes) {\n+\tassignTemp := func(pos src.XPos, n ir.Node, init *ir.Nodes) {\n \t\t// Preserve any... | 2025-07-12T21:01:44 |
mrdoob/three.js | c71a2d852d07a2a415df84504c22d4bbfb37befb | 6b19d228468ca9111e9e108912e2c3a5d516d9d6 | Added THREE.Timer. (#17912)
* Added THREE.Timer.
* Timer: Make now() private.
* Timer: Fix typo.
* Timer: Shorten method and variable names.
* Timer: Remove js and add d.ts file.
* Timer: Transform to class.
* Update webgl_morphtargets_sphere.html
* Delete Timer.d.ts
* Update webgl_morphtargets... | [
{
"path": "examples/jsm/misc/Timer.js",
"patch": "@@ -0,0 +1,144 @@\n+class Timer {\n+\n+\tconstructor() {\n+\n+\t\tthis._previousTime = 0;\n+\t\tthis._currentTime = 0;\n+\t\tthis._startTime = now();\n+\n+\t\tthis._delta = 0;\n+\t\tthis._elapsed = 0;\n+\n+\t\tthis._timescale = 1;\n+\n+\t\tthis._useFixedDelt... | 2023-12-16T14:26:03 |
denoland/deno | ffe8ce62040c87d28819785d71f4dd5e35d2329e | 90c320f71b2e935986c1b6f0d72c322f4c92c8ee | fix(ext/node): use primordials in `ext/node/polyfills/internal/util.mjs` (#29430)
Towards #24236. Replaces JS builtins with equivalent primordials. | [
{
"path": "ext/node/polyfills/internal/util.mjs",
"patch": "@@ -1,8 +1,5 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { validateFunction } from \"ext:deno_node/inte... | 2025-05-25T22:30:31 |
vuejs/vue | 7ac7cae195eb4c66c5a3466be7968ee2dbab9e87 | 9b59ccc6b435f6ac6deaf3354893ac70e6dbbb0f | add error handling for srr | [
{
"path": "src/server/create-renderer.js",
"patch": "@@ -21,20 +21,29 @@ export function createRenderer ({\n renderToString (component, done) {\n let result = ''\n let stackDepth = 0\n- render(component, (str, next) => {\n+ const write = (str, next) => {\n result += str\n ... | 2016-05-12T06:49:11 |
golang/go | 385000b004616d5c42c868a2a072432cb65ca692 | f506ad2644ff9c76d7e9fa00710248009d449cac | runtime: fix idle time double-counting bug
This change fixes a bug in the accounting of sched.idleTime. In just the
case where the GC CPU limiter needs up-to-date data, sched.idleTime is
incremented in both the P-idle-time and idle-mark-work paths, but it
should only be incremented in the former case.
Fixes #74627.
... | [
{
"path": "src/runtime/mgclimit.go",
"patch": "@@ -209,14 +209,12 @@ func (l *gcCPULimiterState) updateLocked(now int64) {\n \t\tfor _, pp := range allp {\n \t\t\ttyp, duration := pp.limiterEvent.consume(now)\n \t\t\tswitch typ {\n-\t\t\tcase limiterEventIdleMarkWork:\n-\t\t\t\tfallthrough\n \t\t\tcase limi... | 2025-07-15T17:11:18 |
mrdoob/three.js | f765d87b6fc86256adeb680056d316609171a30f | 7f29595326ea71d8e7479172caed0586354ad1c9 | WebGLRenderer: Add `WEBGL_clip_cull_distance` support. (#27371)
* init WEBGL_clip_cull_distance support
* remove unecessary conditions webgl2
* try fix directx
* feedbacks
* remove unecessary code
* Update webgl_clipculldistance.html
Style clean up.
* Update WebGLExtensions.js
* Update webgl_cl... | [
{
"path": "docs/api/ar/materials/ShaderMaterial.html",
"patch": "@@ -327,8 +327,8 @@ <h3>[property:Object extensions]</h3>\n \tderivatives: false, // set to use derivatives\n \tfragDepth: false, // set to use fragment depth values \n \tdrawBuffers: false, // set to use draw buffers \n-\tshaderTextureLOD: fa... | 2023-12-15T11:44:19 |
denoland/deno | 90c320f71b2e935986c1b6f0d72c322f4c92c8ee | cb738ee5da0f10c5b41fbe61831cccf6422621cb | fix(ext/node): use primordials in `ext/node/polyfills/_fs/_fs_truncate.ts` (#29422)
Towards #24236. Replaces `Error`, `instanceof`, and `Promise.then()`
with the equivalent primordials. | [
{
"path": "ext/node/polyfills/_fs/_fs_truncate.ts",
"patch": "@@ -1,18 +1,23 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n+import { primordials } from \"ext:core/mod.js\";\n \... | 2025-05-25T21:49:39 |
vuejs/vue | 9b59ccc6b435f6ac6deaf3354893ac70e6dbbb0f | d6ced7171904f0be28134f81bc4d8b9b6be4aef6 | Fix issue with renderToString stack length overflowing (#2840)
* Fix issue with renderToString stack length overflowing
* SSR renderToString asyncronous callback | [
{
"path": "src/server/create-renderer.js",
"patch": "@@ -2,6 +2,8 @@ import RenderStream from './render-stream'\n import { createRenderFunction } from './render'\n import { warn } from 'core/util/debug'\n \n+export const MAX_STACK_DEPTH = 1000\n+\n export function createRenderer ({\n modules = [],\n dir... | 2016-05-12T06:13:38 |
golang/go | f506ad2644ff9c76d7e9fa00710248009d449cac | 9c507e794297c9a7f160f71b9910d5de27b9a517 | cmd/compile/internal/escape: speed up analyzing some functions with many closures
Escape analysis examines functions in batches. In some cases, closures
are in the same batch as their parent function, but in other cases,
the closures are in different batches. This can mean the per-batch
ir.ReassignOracle cache is not ... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -122,17 +122,24 @@ type escape struct {\n }\n \n func Funcs(all []*ir.Func) {\n-\tir.VisitFuncsBottomUp(all, Batch)\n+\t// Make a cache of ir.ReassignOracles. The cache is lazily populated.\n+\t// TODO(thepudds): consider adding a field on ... | 2025-07-14T23:36:00 |
mrdoob/three.js | 3d65226309fc3a474991cb2911674d1eca171914 | 64467c0166e3a7a36f513052882519c15a3ece95 | WebGPURenderer: PostProcessing + GaussianBlurNode + QuadMesh (#27369)
* WebGPURenderer: PostProcessing + GaussianBlurNode
* update example
* revision
* revision
* Fix RTT & Framebuffer flipY
* Fix multi-scene backgroundNode
* fixes
* new webgpu_portal example
* fix title
* cleanup
* clean... | [
{
"path": "examples/files.json",
"patch": "@@ -349,6 +349,7 @@\n \t\t\"webgpu_morphtargets_face\",\n \t\t\"webgpu_occlusion\",\n \t\t\"webgpu_particles\",\n+\t\t\"webgpu_portal\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",",
"additions": 1,
"deletions": 0,
"langu... | 2023-12-15T04:09:26 |
denoland/deno | cb738ee5da0f10c5b41fbe61831cccf6422621cb | bc8b191b7c8df03dab8ee084506df87a32143281 | chore: Rust 1.86.0 (#29435)
Since `rust 1.87.0` reported `undefined symbol:
ring::pbkdf2::PBKDF2_HMAC_SHA1::*` in CI and it was difficult to debug
locally, use `rust 1.86.0` in CI tests for troubleshoot the errors | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -5,7 +5,7 @@ import { stringify } from \"jsr:@std/yaml@^0.221/stringify\";\n // Bump this number when you want to purge the cache.\n // Note: the tools/release/01_bump_crate_versions.ts script will update this version\n // automatically via regex, s... | 2025-05-25T21:40:48 |
vuejs/vue | 8172e7e25728a696df32df063443cf3d7cc8029b | 8f5a32b91cca7901c47f27d983649d00eef35609 | fix ssr tests | [
{
"path": "src/server/render.js",
"patch": "@@ -74,7 +74,6 @@ export function createRenderFunction (modules, directives, isUnaryTag) {\n }\n \n return function render (component, write, done) {\n- component._renderStaticTrees()\n renderNode(component._render(), write, done, true)\n }\n }",
... | 2016-05-08T21:31:59 |
golang/go | 9c507e794297c9a7f160f71b9910d5de27b9a517 | 9782dcfd16bcf10f576504bacf67eb41a6cef88f | cmd/link, runtime: on Wasm, put only function index in method table and func table
In the type descriptor's method table, it contains relative PCs of
the methods (relative to the start of the text section) stored as
32-bit offsets. On Wasm, a PC is PC_F<<16 + PC_B, where PC_F is
the function index, and PC_B is the blo... | [
{
"path": "src/cmd/internal/obj/wasm/wasmobj.go",
"patch": "@@ -372,6 +372,9 @@ func preprocess(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \t}\n \ttableIdxs = append(tableIdxs, uint64(numResumePoints))\n \ts.Size = pc + 1\n+\tif pc >= 1<<16 {\n+\t\tctxt.Diag(\"function too big: %s exceeds 65536... | 2023-12-26T20:35:56 |
mrdoob/three.js | 37cb4ae8dd1c035182c544b54965bd81e8e01feb | fff4f00482cb260588fc6dc6c7488c88b42b51a0 | WebGLUniformsGroups: Fix and improve UBOs array caching system (#27374)
* fix and improve UBOs array caching system
* simplify cache check | [
{
"path": "src/renderers/webgl/WebGLUniformsGroups.js",
"patch": "@@ -102,17 +102,17 @@ function WebGLUniformsGroups( gl, info, capabilities, state ) {\n \n \t\t\t\tconst uniform = uniformArray[ j ];\n \n-\t\t\t\tif ( hasUniformChanged( uniform, i, cache ) === true ) {\n+\t\t\t\tif ( hasUniformChanged( unif... | 2023-12-14T10:21:06 |
vuejs/vue | 2b7c26d108b31e0cf91f4931fe5b19e77f75bb7e | 430fe64bb5907cefc21b8f670f86f268f68e5ad8 | fix tests | [
{
"path": "src/core/vdom/create-component.js",
"patch": "@@ -143,7 +143,6 @@ function resolveAsyncComponent (factory, cb) {\n })\n return factory.resolved\n }\n-\n }\n \n function extractProps (data, Ctor) {",
"additions": 0,
"deletions": 1,
"language": "JavaScript"
},
{
"path"... | 2016-05-08T20:21:42 |
denoland/deno | bc8b191b7c8df03dab8ee084506df87a32143281 | c6c6be328fb8ce3cc9bec9a8f55cd60dd774691e | ci: fix main (#29442) | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -947,6 +947,7 @@ const ci = {\n 'gsutil -h \"Cache-Control: public, max-age=3600\" cp ./target/release/*.symcache gs://dl.deno.land/canary/$(git rev-parse HEAD)/',\n \"echo ${{ github.sha }} > canary-latest.txt\",\n ... | 2025-05-24T20:21:16 |
golang/go | c876bf9346f1afb5471947a65fb1e105caeff433 | b4309ece66ca989a38ed65404850a49ae8f92742 | cmd/internal/obj/wasm: use 64-bit instructions for indirect calls
Currently, on Wasm, an indirect call is compiled to
// function index = PC>>16, PC is already on stack
I32WrapI64
I32Const $16
ShrU
// set PC_B to 0
...
// actual call
CallIndirect
Specifically, the function index is extracted from bits 16-31 ... | [
{
"path": "src/cmd/internal/obj/wasm/wasmobj.go",
"patch": "@@ -465,9 +465,9 @@ func preprocess(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\t\tcase obj.TYPE_NONE:\n \t\t\t\t// (target PC is on stack)\n+\t\t\t\tp = appendp(p, AI64Const, constAddr(16)) // only needs PC_F bits (16-63), PC_B b... | 2024-02-29T19:27:57 |
mrdoob/three.js | 9807b24377614a8198af843adfab97f8915cecfc | a633443de25d2aaa4fb5a3b3d441439ac0842694 | Docs: Fixed import error (#27372) | [
{
"path": "docs/examples/en/utils/SceneUtils.html",
"patch": "@@ -21,7 +21,7 @@ <h2>Import</h2>\n \t\t</p>\n \n \t\t<code>\n-\t\t\timport { SceneUtils } from 'three/addons/utils/SceneUtils.js';\n+\t\t\timport * as SceneUtils from 'three/addons/utils/SceneUtils.js';\n \t\t</code>\n \n \t\t<h2>Methods</h2>",
... | 2023-12-13T15:40:31 |
vuejs/vue | c556190ba1f5ecdaf61b04da7fee04dcfee5852e | c1bb12a36cfde5713fd3162f51fc6d5ade7f52c7 | fix ssr test | [
{
"path": "package.json",
"patch": "@@ -21,7 +21,7 @@\n \"test:unit\": \"NODE_ENV=development karma start build/karma.unit.config.js\",\n \"test:cover\": \"NODE_ENV=development karma start build/karma.cover.config.js\",\n \"test:e2e\": \"npm run build -- vue.js && node test/e2e/runner.js\",\n- ... | 2016-05-08T04:58:29 |
denoland/deno | c6c6be328fb8ce3cc9bec9a8f55cd60dd774691e | ff078dcfabfe916c63db800d2d91ca0dd77da5c7 | ci: error when `cargo test` makes git status dirty (#29429) | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -998,6 +998,22 @@ const ci = {\n ].join(\"\\n\"),\n run: \"cargo test --release --locked --features=panic-trace\",\n },\n+ {\n+ name: \"Ensure no git changes\",\n+ if: \"matrix.job == 'test'\",\n+... | 2025-05-24T17:32:11 |
golang/go | b4309ece66ca989a38ed65404850a49ae8f92742 | 75a19dbcd7e69dc619fd57b9ed32f697121160ba | cmd/internal/doc: upgrade godoc pkgsite to 01b046e
Increase the dependency on the doc tool to bring in the fixes to
CL 687918 and CL 687976.
Fixes golang/go#74459
Change-Id: I9cdefdfd9792a142ad14bae3d4f7bb9d8256a246
Reviewed-on: https://go-review.googlesource.com/c/go/+/687997
Reviewed-by: Jonathan Amsterdam <jba@go... | [
{
"path": "src/cmd/internal/doc/main.go",
"patch": "@@ -243,7 +243,7 @@ func doPkgsite(urlPath string) error {\n \t\tenv = append(env, \"GOPROXY=\"+gomodcache+\",\"+goproxy)\n \t}\n \n-\tconst version = \"v0.0.0-20250608123103-82c52f1754cd\"\n+\tconst version = \"v0.0.0-20250714212547-01b046e81fe7\"\n \tcmd... | 2025-07-15T15:26:39 |
vuejs/vue | c1bb12a36cfde5713fd3162f51fc6d5ade7f52c7 | 96f02660a2f72cf2b2f4087f51a24942f55af7dd | fix reorder benchmark after track-by change | [
{
"path": "benchmarks/reorder-list/index.html",
"patch": "@@ -20,7 +20,7 @@ <h1>{{ total }} Components</h1>\n <button @click=\"shuffle\">shuffle</button>\n <button @click=\"add\">add</button>\n <table class=\"table table-hover table-striped test-data\">\n- <row v-for=\"item ... | 2016-05-08T04:46:23 |
denoland/deno | 3de21f1b8dbdc27365730cfc9a4c9273dc188819 | 16e5ac6cd7beb833b837c02392e345037b85e697 | fix(ext/node): add `fchown` and `fchownSync` to `node:fs` (#29408) | [
{
"path": "Cargo.lock",
"patch": "@@ -2085,6 +2085,7 @@ dependencies = [\n \"fs3\",\n \"libc\",\n \"log\",\n+ \"nix 0.27.1\",\n \"once_cell\",\n \"os_pipe\",\n \"parking_lot\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/rt/file_system.rs",
"patch"... | 2025-05-23T06:00:39 |
golang/go | 7dceabd3be3d119bb2539030e0e824ad85a10202 | d826bf4d7440ee07f865e5852638b5a2468687ff | runtime/maps: fix typo in group.go comment (instrinsified -> intrinsified)
Several comments refer to bitset as 'instrinsified', which is likely
a typo, because it refers to the output of the intrinsics implemented
with SIMD.
Change-Id: I00f26b8d8128592ee0e9dc8a1b1480c93a9542d6
GitHub-Last-Rev: 8a4236710979f2f969210e0... | [
{
"path": "src/internal/runtime/maps/group.go",
"patch": "@@ -157,7 +157,7 @@ func (g ctrlGroup) matchH2(h uintptr) bitset {\n // Portable implementation of matchH2.\n //\n // Note: On AMD64, this is an intrinsic implemented with SIMD instructions. See\n-// note on bitset about the packed instrinsified retu... | 2025-07-15T12:21:38 |
vuejs/vue | be2e79df2731e2f27bdc642a716a556ef5b607cb | f01e859d17589f3035d30a591272b58fcea39f4e | fix ssr tests | [
{
"path": "test/ssr/ssr.stream.spec.js",
"patch": "@@ -1,5 +1,5 @@\n import Vue from '../../dist/vue.common.js'\n-import { compileToFunctions } from '../../dist/compiler.common.js'\n+import { compileToFunctions } from '../../dist/compiler.js'\n import createRenderer from '../../dist/server-renderer.js'\n co... | 2016-05-08T04:14:44 |
golang/go | d826bf4d7440ee07f865e5852638b5a2468687ff | bb07e55aff3041032ac8c851f4fefbd038783240 | os: remove useless error check
Change-Id: Ifeb5fecc6e28b79ac03e7dc2ce9531fe5eed3097
GitHub-Last-Rev: 087cf95965920c96befad5adb9e481bdf913d50a
GitHub-Pull-Request: golang/go#66260
Reviewed-on: https://go-review.googlesource.com/c/go/+/570895
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUC... | [
{
"path": "src/os/os_windows_test.go",
"patch": "@@ -64,9 +64,6 @@ func TestSameWindowsFile(t *testing.T) {\n \t}\n \n \tp := filepath.VolumeName(path) + filepath.Base(path)\n-\tif err != nil {\n-\t\tt.Fatal(err)\n-\t}\n \tia3, err := os.Stat(p)\n \tif err != nil {\n \t\tt.Fatal(err)",
"additions": 0,
... | 2024-03-12T07:37:52 |
denoland/deno | 16e5ac6cd7beb833b837c02392e345037b85e697 | 5898835e4c81be4f3aa88260e4b0c839874e124b | fix(lsp): handle 'deno.config' setting outside of workspace (#29420) | [
{
"path": "cli/lsp/config.rs",
"patch": "@@ -2026,7 +2026,12 @@ impl ConfigTree {\n let pkg_json_cache = PackageJsonMemCache::default();\n let workspace_cache = WorkspaceMemCache::default();\n let mut scopes = BTreeMap::new();\n- for (folder_url, ws_settings) in &settings.by_workspace_folder ... | 2025-05-22T17:43:45 |
mrdoob/three.js | 28f99d7da331de4cfa456a404e226f787974d57f | ca7261b12e3caebce06958bc08e8cc386dc333d4 | Fix: CSM lights when shadow maps are disabled (#27358)
* Fix indentation
* Allow shadows to be disabled from GUI
* Fix: when shadows are disabled, light contribution still needs to be considered | [
{
"path": "examples/jsm/csm/CSMShader.js",
"patch": "@@ -62,7 +62,7 @@ IncidentLight directLight;\n \tvec4 spotColor;\n \tvec3 spotLightCoord;\n \tbool inSpotLightMap;\n- \n+\n \t#if defined( USE_SHADOWMAP ) && NUM_SPOT_LIGHT_SHADOWS > 0\n \tSpotLightShadow spotLightShadow;\n \t#endif\n@@ -112,76 +112,81 @... | 2023-12-11T16:10:36 |
vuejs/vue | 5fb1a549d2104d01b8b9711079c7d7701514c890 | ae788136069bbf4f04de773aa0aa390a236342ed | make attr behavior more consistent + fix tests | [
{
"path": "src/platforms/web/runtime/modules/attrs.js",
"patch": "@@ -1,4 +1,11 @@\n-import { isBooleanAttr, isEnumeratedAttr, isXlink, xlinkNS, getXlinkProp } from 'web/util/index'\n+import {\n+ isBooleanAttr,\n+ isEnumeratedAttr,\n+ isXlink,\n+ xlinkNS,\n+ getXlinkProp,\n+ isFalsyAttrValue\n+} from ... | 2016-05-07T20:27:33 |
golang/go | 3f789721d6298b7f4406a0106670c4d4ad70a28d | b69622b83e38b58a461938163fdef03683a2a871 | [dev.simd] cmd/compile: mark SIMD types non-fat
This CL fixes the merge locals error.
The culprit is that liveness analysis wrongly mark SIMD structs fat,
hence making `StoreReg` of SIMD vectors not a varkill effect, making the
liveness range of SIMD vectors not closed correctly, further making
mergelocals merged 2 co... | [
{
"path": "src/cmd/compile/internal/liveness/plive.go",
"patch": "@@ -1534,6 +1534,9 @@ func isfat(t *types.Type) bool {\n \t\t\t}\n \t\t\treturn true\n \t\tcase types.TSTRUCT:\n+\t\t\tif t.IsSIMD() {\n+\t\t\t\treturn false\n+\t\t\t}\n \t\t\t// Struct with 1 field, check if field is fat\n \t\t\tif t.NumFiel... | 2025-07-12T08:13:04 |
denoland/deno | 8ac14deada322509a801693083ee05141888cde2 | 0d6fac61f0160f6ddc345a2fedf4d2ddf779ea78 | fix(lsp): don't cache jsxImportSource on lockfile-only changes (#29415) | [
{
"path": "cli/lsp/language_server.rs",
"patch": "@@ -1150,6 +1150,10 @@ impl Inner {\n .send_did_refresh_deno_configuration_tree_notification(\n self.config.tree.to_did_refresh_params(),\n );\n+ }\n+\n+ #[cfg_attr(feature = \"lsp-tracing\", tracing::instrument(skip_all))]\n+ fn dispa... | 2025-05-21T22:39:11 |
mrdoob/three.js | ca7261b12e3caebce06958bc08e8cc386dc333d4 | a79aa37d33989877af6d0e4b58f95125547345d8 | LineMaterial: Fix clipping at edge artifacts (#27349)
* Fix containing cube
* Sceenshot update | [
{
"path": "examples/jsm/lines/LineMaterial.js",
"patch": "@@ -169,51 +169,34 @@ ShaderLib[ 'line' ] = {\n \n \t\t\t#ifdef WORLD_UNITS\n \n-\t\t\t\t// get the offset direction as perpendicular to the view vector\n \t\t\t\tvec3 worldDir = normalize( end.xyz - start.xyz );\n-\t\t\t\tvec3 offset;\n-\t\t\t\tif (... | 2023-12-11T09:44:35 |
golang/go | 9159cd4ec6b0e9475dc9c71c830035c1c4c13483 | c6556b8eb3444b6d5473762ed1082039db7e03b5 | encoding/json: decompose legacy options
WARNING: This commit contains breaking changes
for those already using GOEXPERIMENT=jsonv2.
This decomposes FormatBytesWithLegacySemantics as:
* FormatBytesWithLegacySemantics
* FormatByteArrayAsArray
* ParseBytesWithLooseRFC4648
This decomposes FormatTimeWithLegacySemantics a... | [
{
"path": "src/encoding/json/internal/jsonflags/flags.go",
"patch": "@@ -58,11 +58,14 @@ const (\n \t\tFormatNilSliceAsNull |\n \t\tMatchCaseInsensitiveNames |\n \t\tCallMethodsWithLegacySemantics |\n+\t\tFormatByteArrayAsArray |\n \t\tFormatBytesWithLegacySemantics |\n-\t\tFormatTimeWithLegacySemantics |\n... | 2025-07-01T22:39:49 |
denoland/deno | 0d6fac61f0160f6ddc345a2fedf4d2ddf779ea78 | 99264cd2f26ee91a27343e1a4f78f2b0622ae5b9 | fix(node): do not look up node_module paths when using global resolver (#29398)
It doesn't make sense for the global resolver to search for npm packages
because the structure of the folder there doesn't do node_resolution. | [
{
"path": "cli/module_loader.rs",
"patch": "@@ -410,6 +410,7 @@ impl CliModuleLoaderFactory {\n let node_require_loader = Rc::new(CliNodeRequireLoader {\n cjs_tracker: self.shared.cjs_tracker.clone(),\n emitter: self.shared.emitter.clone(),\n+ npm_resolver: self.shared.npm_resolver.clon... | 2025-05-21T17:52:23 |
mrdoob/three.js | 2d38c5dbf0410586c4e67356f8e9fec6df6a3dd5 | 850f318d038cebbc07486384564a85f39f82e9a0 | WebGPURenderer: MaterialX (#27294)
* MathNode: Add `bitcast()`
* WGSLNodeBuilder: Add `greaterThan` for vec3
* WGSLNodeBuilder: XOR
* NodeBuilder: .buildFunctionNode() and getFunctionOperator()
* TSL: Function Overloading
* SplitNode: Fix expected output if used uvec or ivec
* TSL Transpiler: Improve... | [
{
"path": "examples/files.json",
"patch": "@@ -340,8 +340,10 @@\n \t\t\"webgpu_loader_gltf_compressed\",\n \t\t\"webgpu_loader_gltf_iridescence\",\n \t\t\"webgpu_loader_gltf_sheen\",\n+\t\t\"webgpu_loader_materialx\",\n \t\t\"webgpu_materials\",\n \t\t\"webgpu_materials_video\",\n+\t\t\"webgpu_materialx_noi... | 2023-12-07T19:21:25 |
denoland/deno | 99264cd2f26ee91a27343e1a4f78f2b0622ae5b9 | 7abce12183f24c6d8c5a939392545c11fbc28f6a | fix: Support virtio vsock only on systems on which it is available (#29268) (#29354)
See https://github.com/denoland/deno/issues/29268 for the related
discussion. @devsnek @marvinhagemeister | [
{
"path": "cli/Cargo.toml",
"patch": "@@ -193,6 +193,7 @@ winapi = { workspace = true, features = [\"knownfolders\", \"mswsock\", \"objbase\", \"\n [target.'cfg(unix)'.dependencies]\n nix.workspace = true\n shell-escape = \"=0.1.5\"\n+[target.'cfg(any(target_os = \"linux\", target_os = \"macos\"))'.dependen... | 2025-05-21T13:54:05 |
golang/go | b69622b83e38b58a461938163fdef03683a2a871 | 4993a91ae18f0e0f0edf6d86ff5bb26fd9182731 | [dev.simd] cmd/compile, simd: adjust Shift.* operations
This CL does:
1. Removes ShiftRightSignExtended, default signed vectors to shift
arithmetic, and unsigned to shift logical.
2. Add the missing Shifts which were left out by YAML error in the
generator.
This CL is generated by CL 687595.
Change-Id: I663115... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -273,15 +273,6 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPSLLVQ128,\n \t\tssa.OpAMD64VPSLLVQ256,\n \t\tssa.OpAMD64VPSLLVQ512,\n-\t\tssa.OpAMD64VPSRLVW128,\n-\t\tssa.OpAMD64VPSRLVW256,\n-\t\tssa.OpAMD64V... | 2025-07-11T17:56:22 |
mrdoob/three.js | a5a728dab166e25a4cfa53519ccfbc0de6ba8daf | 4c7912c7b482397c7d2c432957430d42cf991df2 | ImageBitmapLoader: Cache promises to deduplicate requests. (#27270)
* Fix for dispose error
sampleRenderTarget is being deleted and set to null by super.dispose();
the check for undefined was incorrect causing an attempt to call dispose on a null object.
* Removed disposal of sampleRenderTarget entierly
* Fix ... | [
{
"path": "src/loaders/ImageBitmapLoader.js",
"patch": "@@ -49,6 +49,25 @@ class ImageBitmapLoader extends Loader {\n \n \t\t\tscope.manager.itemStart( url );\n \n+\t\t\t// If cached is a promise, wait for it to resolve\n+\t\t\tif ( cached.then ) {\n+\n+\t\t\t\tcached.then( imageBitmap => {\n+\n+\t\t\t\t\ti... | 2023-12-07T18:41:13 |
vuejs/vue | ae788136069bbf4f04de773aa0aa390a236342ed | 4ff27c9ab7a4cf61ad7851376068ba9660d39616 | [Vue 2.0] Fix BooleanAttr & EnumeratedAttr serialization (#2810)
* fix attr serialization
* Add attribute test cases | [
{
"path": "src/platforms/web/runtime/modules/attrs.js",
"patch": "@@ -1,4 +1,4 @@\n-import { isBooleanAttr, isEnumeratedAttr, isXlink, xlinkNS } from 'web/util/index'\n+import { isBooleanAttr, isEnumeratedAttr, isXlink, xlinkNS, getXlinkProp } from 'web/util/index'\n \n function updateAttrs (oldVnode, vnode... | 2016-05-07T19:51:46 |
denoland/deno | 7abce12183f24c6d8c5a939392545c11fbc28f6a | 8687526f947fbaeafd3f0dd0652d30ab95585170 | fix(ext/node): use primordials in `ext/node/polyfills/internal/errors.ts` (#29382) | [
{
"path": "ext/node/polyfills/internal/errors.ts",
"patch": "@@ -1,9 +1,6 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Node.js contributors. All rights reserved. MIT License.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefe... | 2025-05-21T03:49:40 |
mrdoob/three.js | f584af21121d1a16f4c69427c68169b7496d179f | 9abdebb6d21e52ff80d943e9ce80725f9869929a | Editor: Fix loading zip files with `.glTF`. (#27337) | [
{
"path": "editor/js/Loader.js",
"patch": "@@ -963,7 +963,7 @@ function Loader( editor ) {\n \n \t\t\t\t{\n \n-\t\t\t\t\tconst loader = await createGLTFLoader();\n+\t\t\t\t\tconst loader = await createGLTFLoader( manager );\n \t\t\t\t\t\n \t\t\t\t\tloader.parse( strFromU8( file ), '', function ( result ) {\... | 2023-12-07T15:26:19 |
golang/go | bbb6dccd8486d1dc0b3042865e7bc0fce54137fc | 1440ff70362f85c86b54b5c428fd95cb6cb35d91 | [dev.simd] simd: fix documentations
This CL is generated by CL 687415.
Change-Id: I2d778717013af613c442116658f42a4a4cc5d734
Reviewed-on: https://go-review.googlesource.com/c/go/+/687376
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chase <drchase@google.c... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -380,12 +380,12 @@\n (GaloisFieldAffineTransformUint8x16 ...) => (VGF2P8AFFINEQB128 ...)\n (GaloisFieldAffineTransformUint8x32 ...) => (VGF2P8AFFINEQB256 ...)\n (GaloisFieldAffineTransformUint8x64 ...) => (VGF2P8AFFINEQB512 ...)\n-(... | 2025-07-11T02:11:22 |
vuejs/vue | a233e4dbfae51173aefc4a1329aa0415d632ca25 | 014ac351721cfbf55326b3091727f282daa085ac | improved SSR rendering
- Reduced duplicated code
- Added more test coverage
- Added syncronous component resolving support
- Fixed component lifecycle
- Added raw render method, to allow custom streaming possibilities | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -105,7 +105,7 @@ export function lifecycleMixin (Vue) {\n }\n \n Vue.prototype.$forceUpdate = function () {\n- this._watcher.update()\n+ this._update(this._render())\n }\n \n Vue.prototype.$destroy = function () {",
"additions": 1,
... | 2016-05-03T20:42:14 |
denoland/deno | 224908c39a63216085919b6611892355971cc75e | ef7090cfa8450502192a2eb4c517661d88644dc7 | fix(node): do not require permission checks for require's node_modules stats (#29397)
This change specifically allows op_require_stat to stat node_module
directories without having to go through the permission system.
Closes https://github.com/denoland/deno/issues/20484 | [
{
"path": "ext/node/ops/require.rs",
"patch": "@@ -374,7 +374,13 @@ pub fn op_require_stat<\n #[string] path: String,\n ) -> Result<i32, JsErrorBox> {\n let path = PathBuf::from(path);\n- let path = ensure_read_permission::<P>(state, &path)?;\n+ let path = if path.ends_with(\"node_modules\") {\n+ /... | 2025-05-20T15:50:41 |
mrdoob/three.js | 0e054301880a45142dd96b18f520a01a7a76ba10 | 62a2a0ccc85b8b24ecdfc887fcae0b6e33531836 | WebGLShadowMap: Dispose of unique depth/distance materials. (#27326)
* WebGLShadowMap: Dispose of unique depth/distance materials.
* Update WebGLShadowMap.js
Fix comment.
* Update WebGLShadowMap.js | [
{
"path": "src/renderers/webgl/WebGLShadowMap.js",
"patch": "@@ -279,6 +279,7 @@ function WebGLShadowMap( _renderer, _objects, _capabilities ) {\n \n \t\t\t\t\tcachedMaterial = result.clone();\n \t\t\t\t\tmaterialsForVariant[ keyB ] = cachedMaterial;\n+\t\t\t\t\tmaterial.addEventListener( 'dispose', onMater... | 2023-12-06T22:28:40 |
golang/go | 1e48ca7020adf13e0fa4a6c2053f210b869bfa24 | a0a99cb22b2045b15509d1002a655db407a44a50 | encoding/json: remove legacy option to EscapeInvalidUTF8
In the presence of invalid UTF-8, the AllowInvalidUTF8 option
allows such bytes to be present, but silently mangles them
using the Unicode replacement character.
The v2 default is to emit the replacement character verbatim
(which is valid UTF-8 and exactly what... | [
{
"path": "src/encoding/json/internal/jsonflags/flags.go",
"patch": "@@ -52,7 +52,6 @@ const (\n \t\tAllowInvalidUTF8 |\n \t\tEscapeForHTML |\n \t\tEscapeForJS |\n-\t\tEscapeInvalidUTF8 |\n \t\tPreserveRawStrings |\n \t\tDeterministic |\n \t\tFormatNilMapAsNull |\n@@ -77,7 +76,7 @@ const (\n \tWhitespaceFla... | 2025-07-10T00:08:49 |
vuejs/vue | 9cc9393e73750943b9a254f80a02110144ee0288 | 68372ea26b0183ce5e2c25a3a7c291195dae7d25 | fix default slot fallback on whitespace | [
{
"path": "src/core/instance/render.js",
"patch": "@@ -99,7 +99,8 @@ export function renderMixin (Vue) {\n function resolveSlots (vm, renderChildren) {\n if (renderChildren) {\n const children = flatten(renderChildren())\n- const slots = { default: children }\n+ const slots = {}\n+ const defa... | 2016-05-05T18:46:30 |
denoland/deno | ef7090cfa8450502192a2eb4c517661d88644dc7 | 721a8ad8a283caace2a9038f9d06bc9d7bb4f261 | fix(cli): Correct a small typo in help output (#29395)
Fixes a typo in the description of the DENO_EMIT_CACHE_MODE help
description.
closes: #29394
Signed-off-by: Phil Hawksworth <phil@deno.com> | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -1190,7 +1190,7 @@ static ENV_VARIABLES_HELP: &str = cstr!(\n <p(245)>(defaults to $HOME/.deno/bin)</>\n <g>DENO_KV_DB_MODE</> Controls whether Deno.openKv() API should use disk based or in-memory\n datab... | 2025-05-20T14:42:42 |
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.