repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | 51134968050270a08d6a2456d0ea72c8a99b6e96 | 36086e85f842e8ed2c03be2542a6cc211603abbc | runtime/pprof: skip flaky test TestProfilerStackDepth/heap for now
The test has been causing a lot of flakes on the builders. Skip it while
I'm debugging it.
For #74029
Change-Id: I6a6a696450c23f65bc310a2d0ab61b22dba88f00
Reviewed-on: https://go-review.googlesource.com/c/go/+/712060
TryBot-Bypass: Michael Matloob <m... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -2549,6 +2549,9 @@ func TestProfilerStackDepth(t *testing.T) {\n \n \tfor _, test := range tests {\n \t\tt.Run(test.profiler, func(t *testing.T) {\n+\t\t\tif test.profiler == \"heap\" {\n+\t\t\t\ttestenv.SkipFlaky(t, 74029)\n+\t\t\t}\n \t\t\tvar buf ... | 2025-10-15T15:23:59 |
mrdoob/three.js | 1a1e0a45b2e7b331f04e567821a1b30eb0d032ab | 37d6f280a5cd642e801469bb048f52300d31258e | Playground: Update `flow.module.js` - fix zoom | [
{
"path": "playground/libs/flow.module.js",
"patch": "@@ -24,6 +24,12 @@ let _id = 0;\n \n class Serializer extends EventTarget {\n \n+\tstatic get type() {\n+\n+\t\treturn 'Serializer';\n+\n+\t}\n+\n \tconstructor() {\n \n \t\tsuper();\n@@ -74,7 +80,7 @@ class Serializer extends EventTarget {\n \n \tget cl... | 2024-09-26T15:31:43 |
denoland/deno | 3e01e4ba55c6dfa5f9cfe2f932dc6f8f00b302e9 | c62ea96ad059ede96e34a37b93d9eb99765c3927 | ci: fix Windows build (#30816)
Restores debug symbol generation on Windows, this was missed
in https://github.com/denoland/deno/pull/30778 | [
{
"path": ".cargo/config.toml",
"patch": "@@ -1,5 +1,5 @@\n [target.x86_64-pc-windows-msvc]\n-rustflags = [\"-C\", \"target-feature=+crt-static\", \"-C\", \"debuginfo=0\", \"-C\", \"link-arg=/DEBUG:NONE\"]\n+rustflags = [\"-C\", \"target-feature=+crt-static\", \"-C\", \"symbol-mangling-version=v0\"]\n \n [t... | 2025-09-23T00:31:14 |
vuejs/vue | ab0a2259e0ef3f4ebdc8d0d4b929fae3e3f579d8 | 4e830ba3c3c92e78bf3ffbea82a583865deaa52a | Revert "also bind static special attrs as props (fix #4530)"
This reverts commit b3ebfef91d72b301b85bce07c4ffad4f59bc73e2. | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -477,15 +477,6 @@ function processAttrs (el) {\n }\n }\n addAttr(el, name, JSON.stringify(value))\n- // #4530 also bind special attributes as props even if they are static\n- // so that patches between dynamic/static are co... | 2017-01-13T01:58:32 |
golang/go | ee5af46172e64eceddb56018de8ea850fe0a6cae | 11d3d2f77d8293fe14638e74cbf52d1241b60e78 | encoding/json: avoid misleading errors under goexperiment.jsonv2
The jsontext package represents the location of JSON errors
using a JSON Pointer (RFC 6901). This uses the JSON type system.
Unfortunately the v1 json.UnmarshalTypeError assumes a Go struct-based
mechanism for reporting the location of errors
(and has h... | [
{
"path": "src/encoding/json/v2_decode.go",
"patch": "@@ -14,6 +14,7 @@ import (\n \t\"fmt\"\n \t\"reflect\"\n \t\"strconv\"\n+\t\"strings\"\n \n \t\"encoding/json/internal/jsonwire\"\n \t\"encoding/json/jsontext\"\n@@ -119,7 +120,20 @@ type UnmarshalTypeError struct {\n func (e *UnmarshalTypeError) Error()... | 2025-10-11T18:57:46 |
mrdoob/three.js | 8b66cd5983f5649c7129e900049cfef6578bc593 | f7eac2853e4ccce77355a407779f0f5c96215ecd | ReferenceNode: Fix null reference using `getNodeType()` (#29498)
* fix null reference using `getNodeType()`
* add `sprite.center` check | [
{
"path": "src/materials/nodes/manager/NodeMaterialObserver.js",
"patch": "@@ -90,6 +90,12 @@ class NodeMaterialObserver {\n \t\t\t\tworldMatrix: renderObject.object.matrixWorld.clone()\n \t\t\t};\n \n+\t\t\tif ( renderObject.object.center ) {\n+\n+\t\t\t\tdata.center = renderObject.object.center.clone();\n... | 2024-09-25T20:46:35 |
vuejs/vue | bb426258a1e5892e49ed20076c972cb35164b85c | 3549e73c032143854bd65c8fdca6a6299ed89e39 | skip multiple select tests on Android 4.4 by detecting its bug | [
{
"path": "build/karma.sauce.config.js",
"patch": "@@ -64,10 +64,8 @@ var batches = [\n },\n sl_android_4_4: {\n base: 'SauceLabs',\n- browserName: 'Browser',\n- platform: 'Android',\n- version: '4.4',\n- device: 'Android Emulator'\n+ browserName: 'android',\n+ ve... | 2017-01-13T00:36:07 |
denoland/deno | ff9840b2660b3e2fc72fcf78d3e8f4686aece5dc | c3181115d9cc6c7a0a41ab65970982ffabafb027 | fix(coverage): collect coverage data for workers (#30807)
Closes https://github.com/denoland/deno/issues/13206 | [
{
"path": "cli/factory.rs",
"patch": "@@ -99,7 +99,6 @@ use crate::resolver::CliResolver;\n use crate::resolver::on_resolve_diagnostic;\n use crate::standalone::binary::DenoCompileBinaryWriter;\n use crate::sys::CliSys;\n-use crate::tools::coverage::CoverageCollectorState;\n use crate::tools::installer::Bin... | 2025-09-22T22:33:53 |
golang/go | 5a9ef44bc05b937cff2394b5880ecca616cb878e | 3765758b96746e202bb52312d4b026085a0f25a1 | cmd/compile/internal/devirtualize: fix OCONVNOP assertion
Fixes #75863
Change-Id: I1e5a0f3880dcd5f820a5b6f4540c49b16a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/711141
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Lasse Folger <lassefolger@google.com>
Auto-Submit: Keith Randall <khr@golan... | [
{
"path": "src/cmd/compile/internal/devirtualize/devirtualize.go",
"patch": "@@ -223,7 +223,7 @@ func concreteType1(s *State, n ir.Node, seen map[*ir.Name]struct{}) (outT *types\n \t\tswitch n1 := n.(type) {\n \t\tcase *ir.ConvExpr:\n \t\t\tif n1.Op() == ir.OCONVNOP {\n-\t\t\t\tif !n1.Type().IsInterface() |... | 2025-10-12T09:15:11 |
mrdoob/three.js | ab23d7be0086d869c01c94f9fc35d099e2e4d3ec | 9df48f2a92d09c97cc50f865eb2e369c5816a897 | BatchedMesh: Add `getGeometryRangeAt` (#29409)
* BatchedMesh: Add getGeometryRangeAt
Co-authored-by: Luigi Denora <luigidenora@users.noreply.github.com>
* Fix eslint error
Co-authored-by: Luigi Denora <luigidenora@users.noreply.github.com>
* Doc changed
* Add optional target
---------
Co-authored-... | [
{
"path": "docs/api/en/objects/BatchedMesh.html",
"patch": "@@ -167,16 +167,29 @@ <h3>\n \t\t<p>\n \t\t\t[page:Integer instanceId]: The id of an instance to get the visibility state of.\n \t\t</p>\n-\t\t<p>Get whether the given instance is marked as \"visible\" or not.</p>\n-\t\t\n+\t\t<p>Get whether the gi... | 2024-09-24T19:42:48 |
vuejs/vue | 3549e73c032143854bd65c8fdca6a6299ed89e39 | 79c1c7f0fe91981ae3c66556aa1990b48adb3310 | Updated Android 4 SauceLabs configuration (#4672)
* update sauce config for android
SauceLabs has sunset all versions of Android 4 prior to 4.4, as
they are modernizing their infrastructure:
https://wiki.saucelabs.com/pages/viewpage.action?pageId=67012495
This means the previous Selendroid configuration must... | [
{
"path": "build/karma.sauce.config.js",
"patch": "@@ -62,10 +62,12 @@ var batches = [\n browserName: 'iphone',\n version: '9.3'\n },\n- sl_android_4_2: {\n+ sl_android_4_4: {\n base: 'SauceLabs',\n- browserName: 'android',\n- version: '4.2'\n+ browserName: 'Browse... | 2017-01-12T23:45:43 |
denoland/deno | c3181115d9cc6c7a0a41ab65970982ffabafb027 | ddfdabc9c526af56abc572356b1d453f45c296fd | fix(check): support "compilerOptions.paths" (#30766) | [
{
"path": "cli/schemas/config-file.v1.json",
"patch": "@@ -312,6 +312,24 @@\n \"default\": false,\n \"markdownDescription\": \"Raise an error when a function parameter isn't read\\n\\nSee more: https://www.typescriptlang.org/tsconfig#noUnusedParameters\"\n },\n+ \"baseUrl\... | 2025-09-22T19:49:15 |
golang/go | f6b9d56affb75103507f2b6ed4ffa98ca899b39d | 60f6d2f6230c5085ad25a9e3ebdaaae2aefdfe36 | crypto/internal/fips140/entropy: fix benign race
Fixes #75690
Fixes #75842
Change-Id: I6a6a696420f51f28f48535c34cf347e2cbd4add5
Reviewed-on: https://go-review.googlesource.com/c/go/+/710058
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Roland Shoemaker <... | [
{
"path": "src/crypto/internal/fips140/entropy/entropy.go",
"patch": "@@ -123,7 +123,9 @@ func (s *source) Sample() uint8 {\n \t// Perform a few memory accesses in an unpredictable pattern to expose the\n \t// next measurement to as much system noise as possible.\n \tmemory, lcgState := s.memory, s.lcgState... | 2025-10-08T11:30:34 |
mrdoob/three.js | f97d930ff24880e3b68b302b723b85aa7a4f252d | 19e79dcbcd115a6e0452cfa31543806fe9a1dc79 | SkyMesh,WaterMesh: Fix NodeMaterial imports (#29477) | [
{
"path": "examples/jsm/objects/SkyMesh.js",
"patch": "@@ -2,10 +2,9 @@ import {\n \tBackSide,\n \tBoxGeometry,\n \tMesh,\n-\tNodeMaterial,\n \tVector3\n } from 'three';\n-import { float, Fn, vec3, acos, add, mul, clamp, cos, dot, exp, max, mix, modelViewProjection, normalize, positionWorld, pow, smoothstep... | 2024-09-23T22:08:15 |
vuejs/vue | 104b9406899299e3e18284b6fe4707dc93c9813e | fe02bc3a27b3b33f9467980f61126edf97105287 | handle component root patch edge case (transition + keep-alive + HOC) (fix #4590) | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -178,6 +178,23 @@ export function createPatchFunction (backend) {\n }\n }\n \n+ function initComponent (vnode, insertedVnodeQueue) {\n+ if (vnode.data.pendingInsert) {\n+ insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInser... | 2017-01-12T23:25:20 |
mrdoob/three.js | cd1d4a5d7944578d7c3837511d1a6e7c4af000cc | 883d08d88f0af69780ddff4728bc90691d166734 | SpriteNodeMaterial: Add sizeAttenuation (#29394)
* SpriteNodeMaterial: Add sizeAttenuation
* Regenerate screenshot
* revert mat4 mul with vec4(,1)?
* revert
* using let and toVar fixes the issue?
* merge upstream/dev
* revert screenshot
* does reverting SpriteNode even fix?
* revert fix
* re... | [
{
"path": "src/materials/nodes/SpriteNodeMaterial.js",
"patch": "@@ -1,5 +1,4 @@\n import NodeMaterial from './NodeMaterial.js';\n-import { uniform } from '../../nodes/core/UniformNode.js';\n import { cameraProjectionMatrix } from '../../nodes/accessors/Camera.js';\n import { materialRotation } from '../../... | 2024-09-23T18:31:06 |
denoland/deno | ddfdabc9c526af56abc572356b1d453f45c296fd | 7938d5d2a448b876479287de61e9e3b8c6109bc8 | fix(fetch): handle proxied urls correctly and add test (#30794) | [
{
"path": "Cargo.lock",
"patch": "@@ -5062,18 +5062,20 @@ dependencies = [\n \n [[package]]\n name = \"hyper-util\"\n-version = \"0.1.10\"\n+version = \"0.1.17\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631... | 2025-09-22T11:30:23 |
golang/go | 6fd8e88d07b08531a5585aa4fbcc6043d556742f | 1abc6b0204ed231311c9bbc53cfab36dc546aa8e | encoding/json/v2: restrict presence of default options
Originally, DefaultOptionsV1 and DefaultOptionsV2 represented
the full set of all options with specific ones set to true or false.
However, there are certain options such as WithIndent or WithMarshalers
that are neither v1 or v2 specific.
At some point we removed... | [
{
"path": "src/encoding/json/internal/jsonopts/options.go",
"patch": "@@ -48,16 +48,16 @@ type ArshalValues struct {\n // DefaultOptionsV2 is the set of all options that define default v2 behavior.\n var DefaultOptionsV2 = Struct{\n \tFlags: jsonflags.Flags{\n-\t\tPresence: uint64(jsonflags.AllFlags & ^json... | 2025-10-11T18:37:58 |
vuejs/vue | b708c04988e99f17e821dc82fa33faaeb92dc4a6 | 7131bc48155fb5224f4d6f0fb1c4b7eed6a79db4 | Update util.js (#4700)
Typo fix | [
{
"path": "src/shared/util.js",
"patch": "@@ -82,7 +82,7 @@ export function cached<F: Function> (fn: F): F {\n }\n \n /**\n- * Camelize a hyphen-delmited string.\n+ * Camelize a hyphen-delimited string.\n */\n const camelizeRE = /-(\\w)/g\n export const camelize = cached((str: string): string => {",
"a... | 2017-01-12T13:43:04 |
golang/go | 1abc6b0204ed231311c9bbc53cfab36dc546aa8e | 9fdd6904da3d6ef2ed457fada1fb26130213f359 | go/types, types2: permit type cycles through type parameter lists
Issue #49439 was about a deadlock during type inference inside
a type parameter list of a recursive constraint. As a remedy
we disallowed recursive type parameter lists.
In the meantime we have removed support for type inference for
type arguments to g... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -302,6 +302,12 @@ loop:\n \t\t}\n \t}\n \n+\t// Cycles through type parameter lists are ok (go.dev/issue/68162).\n+\t// TODO(gri) if we are happy with this this, remove this flag and simplify code.\n+\tif tparCycle {\n+\t\treturn true\n+\t}\n... | 2025-10-13T19:47:42 |
denoland/deno | cd0a592b2df5462b763455354f106d8ede0b09ea | 328d5ef2a0febd3c46916c9d7cc74f8a578791af | fix: restore Windows debug info (#30778)
Restores generation of debug info on Windows, that was disabled in 2.5.0
as part of V8 upgrade - https://github.com/denoland/deno/pull/30629 | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -761,7 +761,7 @@ const ci = {\n name: \"Generate symcache\",\n if: [\n \"(matrix.job == 'test' || matrix.job == 'bench') &&\",\n- \"matrix.os != 'windows' && matrix.profile == 'release' && (matrix.use_sysro... | 2025-09-19T01:14:05 |
vuejs/vue | 7131bc48155fb5224f4d6f0fb1c4b7eed6a79db4 | b60182d996ed1e976ce1697a3017cb702ddc0920 | separate initRender and initial mounting (fix #4693) | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -39,10 +39,13 @@ export function initMixin (Vue: Class<Component>) {\n vm._self = vm\n initLifecycle(vm)\n initEvents(vm)\n+ initRender(vm)\n callHook(vm, 'beforeCreate')\n initState(vm)\n callHook(vm, 'created')\n- initRender... | 2017-01-11T20:01:23 |
golang/go | 0e64ee1286c092eca95b3ffcc5917d34f43d4c0f | 6bcd97d9f4386528aa85eb3cc27da0ed902de870 | encoding/json/v2: report EOF for top-level values in UnmarshalDecode
The fully streaming UnmarshalJSONFrom method and UnmarshalFromFunc
introduce an edge case where they can encounter EOF in the stream,
where it should be reported upstream as EOF rather than
ErrUnexpectedEOF or be wrapped within a SemanticError.
This... | [
{
"path": "src/encoding/json/jsontext/decode.go",
"patch": "@@ -792,6 +792,12 @@ func (d *decoderState) CheckNextValue(last bool) error {\n \treturn nil\n }\n \n+// AtEOF reports whether the decoder is at EOF.\n+func (d *decoderState) AtEOF() bool {\n+\t_, err := d.consumeWhitespace(d.prevEnd)\n+\treturn er... | 2025-10-11T00:56:04 |
denoland/deno | 328d5ef2a0febd3c46916c9d7cc74f8a578791af | ebcb2fa29405fe0d3f503580782ca0dad80cee90 | fix(ext/node): accept ArrayBuffer on crypto.timingSafeEqual (#30773)
Fixes #30759
The buffer validation is based on Node.js implementation:
https://github.com/nodejs/node/blob/591ba692bfe30408e6a67397e7d18bfa1b9c3561/src/crypto/crypto_util.h#L467-L472 | [
{
"path": "ext/node/polyfills/internal_binding/_timingSafeEqual.ts",
"patch": "@@ -4,8 +4,29 @@\n // deno-lint-ignore-file prefer-primordials\n \n import { Buffer } from \"node:buffer\";\n-import { ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH } from \"ext:deno_node/internal/errors.ts\";\n-import { validateBuffer } f... | 2025-09-18T14:51:56 |
vuejs/vue | 92657249ddbb68c7b28c7e9d6fcc8e68cf8a151f | 38b30b4e605aeca41a8889f706c19d5d359a784a | Mark node with static props as static (#4662)
* fix special static attrs as dom prop
* refactor | [
{
"path": "flow/compiler.js",
"patch": "@@ -82,6 +82,7 @@ declare type ASTElement = {\n plain?: boolean;\n pre?: true;\n ns?: string;\n+ staticProps?: Array<string>;\n \n component?: string;\n inlineTemplate?: true;",
"additions": 1,
"deletions": 0,
"language": "JavaScript"
},
{
... | 2017-01-10T22:38:32 |
mrdoob/three.js | b31204dfb38ad629f456ff5ed601173ea8b307c3 | 44cb404c6907e88227bb0ac06183c0c9df800f8f | Lensflare: Add WebGPU version. (#29451)
* lensflare example
* fix depth
* remove forceWebGL
* rename
* fix typo
* follow original code
* Update LensflareMesh.js
---------
Co-authored-by: aardgoose <angus.sawyer@email.com>
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/files.json",
"patch": "@@ -331,6 +331,7 @@\n \t\t\"webgpu_instance_points\",\n \t\t\"webgpu_instance_uniform\",\n \t\t\"webgpu_instancing_morph\",\n+\t\t\"webgpu_lensflares\",\n \t\t\"webgpu_lightprobe\",\n \t\t\"webgpu_lightprobe_cubecamera\",\n \t\t\"webgpu_lights_custom\",",
"addi... | 2024-09-21T08:47:20 |
denoland/deno | ebcb2fa29405fe0d3f503580782ca0dad80cee90 | 5570d6a56b8623301df42cc194285b6349c49bd6 | fix(ext/node): `fs.statfsSync` and `fs.statfs` compatibility (#30662)
Towards #29972
- Converts the polyfill to typescript.
- Implement async op.
- Allows `Buffer` type path.
- Allows
[parallel/test-fs-statfs.js](https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-statfs.js)
test to pass. | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -361,6 +361,7 @@ deno_core::extension!(deno_node,\n ops::fs::op_node_mkdtemp<P>,\n ops::fs::op_node_open_sync<P>,\n ops::fs::op_node_open<P>,\n+ ops::fs::op_node_statfs_sync<P>,\n ops::fs::op_node_statfs<P>,\n ops::winerror::op_node_sys_to_uv_... | 2025-09-18T14:03:30 |
golang/go | 6bcd97d9f4386528aa85eb3cc27da0ed902de870 | 1cd71689f2ed8f07031a0cc58fc3586ca501839f | all: replace calls to errors.As with errors.AsType
This change replaces most occurrences (in code as well as in comments) of
errors.As with errors.AsType. It leaves the errors package and vendored
code untouched.
Change-Id: I3bde73f318a0b408bdb8f5a251494af15a13118a
GitHub-Last-Rev: 8aaaa36a5a12d2a6a90c6d51680464e1a31... | [
{
"path": "src/cmd/compile/internal/types2/api_test.go",
"patch": "@@ -2468,8 +2468,8 @@ func TestInstantiateErrors(t *testing.T) {\n \t\t\tt.Fatalf(\"Instantiate(%v, %v) returned nil error, want non-nil\", T, test.targs)\n \t\t}\n \n-\t\tvar argErr *ArgumentError\n-\t\tif !errors.As(err, &argErr) {\n+\t\ta... | 2025-10-01T20:08:18 |
vuejs/vue | 367c2e34a1d53c3122c5487bb39606a2e8bca380 | a36dc07222632e7c961eadf6556d1c98f49f4007 | [weex] Use weex.requireModule instead of weex.require (#4682)
* [weex] use weex.requireModule instead of weex.require
* [weex] fix the deprecated __weex_require_module__ | [
{
"path": "src/entries/weex-framework.js",
"patch": "@@ -91,7 +91,7 @@ export function createInstance (\n const weexInstanceVar = {\n config,\n document,\n- require: moduleGetter\n+ requireModule: moduleGetter\n }\n Object.freeze(weexInstanceVar)\n \n@@ -112,7 +112,7 @@ export function c... | 2017-01-10T16:02:55 |
mrdoob/three.js | a789b4404af962cb5b8d1ee97dd272970c6cb2a2 | d4164b8804c56f716935ce4af63ad4ddbf56e0a3 | Loaders: Unpack colors to working color space (#29448)
* feat(loaders): Loaders unpack colors to working color space
* fix semicolons | [
{
"path": "examples/jsm/loaders/ColladaLoader.js",
"patch": "@@ -5,6 +5,7 @@ import {\n \tBufferGeometry,\n \tClampToEdgeWrapping,\n \tColor,\n+\tColorManagement,\n \tDirectionalLight,\n \tDoubleSide,\n \tFileLoader,\n@@ -1681,9 +1682,9 @@ class ColladaLoader extends Loader {\n \n \t\t\t}\n \n-\t\t\tmateria... | 2024-09-20T03:07:22 |
denoland/deno | 0c67bb52d5fb9a55c7ada9383dccdc1e7954e4eb | a7af65fd4c60ec174eb270db39e620fec460c533 | fix: add top level permissions key to config file schema (#30765)
Closes https://github.com/denoland/deno/issues/30762 | [
{
"path": "cli/schemas/config-file.v1.json",
"patch": "@@ -857,6 +857,11 @@\n }\n ]\n },\n+ \"permissions\": {\n+ \"type\": \"object\",\n+ \"description\": \"Named permission sets that can be selected with -P/--permission-set or referenced in \\\"test\\\", \\\"bench\\\", or \\... | 2025-09-17T19:54:52 |
golang/go | 1cd71689f2ed8f07031a0cc58fc3586ca501839f | 8aa1efa223d7bd39faaabdfbf85882ed3942a6f4 | crypto/x509: rework fix for CVE-2025-58187
In CL 709854 we enabled strict validation for a number of properties of
domain names (and their constraints). This caused significant breakage,
since we didn't previously disallow the creation of certificates which
contained these malformed domains.
Rollback a number of the ... | [
{
"path": "src/crypto/x509/name_constraints_test.go",
"patch": "@@ -1456,7 +1456,63 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\texpectedError: \"incompatible key usage\",\n \t},\n \n-\t// #77: if several EKUs are requested, satisfying any of them is sufficient.\n+\t// An invalid DNS SAN shoul... | 2025-10-09T20:35:24 |
mrdoob/three.js | 9cfaaa8d9a6975d78db2a7988b7aee6d61306752 | 01359e00034058c3c1ab037daae97c670f8228ac | Raycasting: Add barycoord to intersection result, make attribution interpolation more convenient (#29340)
* Add a barycoord helper
* add fields to point, line
* Fix import
* Remove unused variables
* Update docs
* Rename method
* Rename function in Mesh class | [
{
"path": "docs/api/en/math/Triangle.html",
"patch": "@@ -140,6 +140,20 @@ <h3>\n \t\t\ttriangle. Returns `null` if the triangle is degenerate.\n \t\t</p>\n \n+\t\t<h3>\n+\t\t\t[method:Vector getInterpolatedAttribute]( [param:BufferAttribute attribute], [param:Number i1], [param:Vector3 i2], [param:Number i... | 2024-09-18T21:23:31 |
vuejs/vue | e8d72d254bba2649d79979050fa748b1a46abfca | c9fa2e674b520bb64359e18cf6a6455a7d05a6e7 | fix alligator.io link in backers.md | [
{
"path": "BACKERS.md",
"patch": "@@ -74,7 +74,7 @@ It could be you!\n <img width=\"240px\" src=\"http://i.imgur.com/MRIkKgp.png\">\n </a>\n \n-<a href=\"https://alligator.io\"></a>\n+<a href=\"https://alligator.io\">\n <img width=\"240px\" src=\"https://alligator.io/images/alligator-logo.svg\">\n </a>\... | 2017-01-05T18:46:13 |
denoland/deno | c46393755d1209fa92056707154103ed05385870 | 71909e76084857051253233b4fed576d763385aa | fix(ext/ws): send User-Agent header in WS handshake (#30758) | [
{
"path": "ext/fetch/lib.rs",
"patch": "@@ -63,6 +63,7 @@ use deno_tls::TlsKeysHolder;\n use deno_tls::rustls::RootCertStore;\n pub use fs_fetch_handler::FsFetchHandler;\n use http::Extensions;\n+use http::HeaderMap;\n use http::Method;\n use http::Uri;\n use http::header::ACCEPT;\n@@ -1347,12 +1348,34 @@ i... | 2025-09-17T13:00:54 |
golang/go | 8aa1efa223d7bd39faaabdfbf85882ed3942a6f4 | b497a29d25b0f6f29bedaa92ac1d40a1ee5c0956 | cmd/link: in TestFallocate, only check number of blocks on Darwin
The number-of-blocks check was introduced when fixing a Darwin-
specific bug. On Darwin, the file allocation syscall is a bit
tricky. On Linux and BSDs, it is more straightforward and unlikely
to go wrong.
The test itself, on the other hand, is less re... | [
{
"path": "src/cmd/link/internal/ld/fallocate_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"runtime\"\n \t\"syscall\"\n \t\"testing\"\n )\n@@ -53,12 +54,24 @@ func TestFallocate(t *testing.T) {\n \t\tif got := stat.Size(); got != sz {\n \t\t\tt.Errorf(\... | 2025-10-11T14:36:49 |
mrdoob/three.js | 111670613f1c475ed6e9c2d15056f960f0ad6f1b | d16dec710c72b149c7260d28791f0acb7e0698ff | Examples: Clean up (#29209)
* Fix incorrect args
* E2E: Update screenshot.
---------
Co-authored-by: Mugen87 <michael.herzog@human-interactive.org> | [
{
"path": "examples/webgl_postprocessing_advanced.html",
"patch": "@@ -153,8 +153,8 @@\n \n \t\t\t\teffectSepia.uniforms[ 'amount' ].value = 0.9;\n \n-\t\t\t\teffectVignette.uniforms[ 'offset' ].value = 0.95;\n-\t\t\t\teffectVignette.uniforms[ 'darkness' ].value = 1.6;\n+\t\t\t\teffectVignette.uniforms[ 'of... | 2024-09-17T16:29:12 |
vuejs/vue | c9fa2e674b520bb64359e18cf6a6455a7d05a6e7 | 8be3aa48594359af80c1aed2c07f348dd83dbdf9 | fix todomvc example director.js cdn link | [
{
"path": "examples/todomvc/index.html",
"patch": "@@ -4,7 +4,7 @@\n <meta charset=\"utf-8\">\n <title>Vue.js • TodoMVC</title>\n <link rel=\"stylesheet\" href=\"https://unpkg.com/todomvc-app-css/index.css\">\n- <script src=\"https:unpkg.com/director/build/director.js\"></script>\n+ <scrip... | 2017-01-05T16:14:57 |
golang/go | b497a29d25b0f6f29bedaa92ac1d40a1ee5c0956 | 48bb7a61147c397d0f45c10bc21ba12fa9cec0ad | encoding/json: fix regression in quoted numbers under goexperiment.jsonv2
The legacy parsing of quoted numbers in v1 was according to
the Go grammar for a number, rather than
the JSON grammar for a number.
The former is a superset of the latter.
This is a historical mistake, but usages exist that depend on it.
We alr... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -1237,6 +1237,62 @@ var unmarshalTests = []struct {\n \t\tout: (chan int)(nil),\n \t\terr: &UnmarshalTypeError{Value: \"number\", Type: reflect.TypeFor[chan int](), Offset: 1},\n \t},\n+\n+\t// #75619\n+\t{\n+\t\tCaseName: Name(\"QuotedInt... | 2025-10-06T19:56:29 |
denoland/deno | 71909e76084857051253233b4fed576d763385aa | 6807ca4e9c8dbb32a12c9109afdbcb71069d18b2 | fix(tunnel): make auth more robust (#30731) | [
{
"path": "cli/main.rs",
"patch": "@@ -909,9 +909,18 @@ fn wait_for_start(\n })\n }\n \n-async fn auth_tunnel() -> Result<String, deno_core::anyhow::Error> {\n+async fn auth_tunnel(\n+ env_token: Option<String>,\n+) -> Result<String, deno_core::anyhow::Error> {\n+ let mut args = vec![\"deploy\".to_strin... | 2025-09-17T12:23:35 |
mrdoob/three.js | 8ebbbf28e8241de67b2d29070305f41b3c7787c9 | ac73c49cfd2333c52cf46601e9f4bdf8e1948379 | WebGPURenderer: correct texelFetch() texel coordinates in WebGL fallback (#29400)
* texelLookup
* lint
* update
* fix
---------
Co-authored-by: aardgoose <angus.sawyer@email.com> | [
{
"path": "src/nodes/accessors/TextureNode.js",
"patch": "@@ -4,7 +4,7 @@ import { textureSize } from './TextureSizeNode.js';\n import { colorSpaceToWorking } from '../display/ColorSpaceNode.js';\n import { expression } from '../code/ExpressionNode.js';\n import { maxMipLevel } from '../utils/MaxMipLevelNod... | 2024-09-17T14:07:14 |
vuejs/vue | e259fc306eece6be8014d2ace0258d9775971cd5 | a0c37a9072c9cb9952df410baf1178c007f30803 | fix #4344 #4445 #4511 (#4646)
* fiz regular expression
* fix regular expression | [
{
"path": "src/compiler/parser/text-parser.js",
"patch": "@@ -4,7 +4,7 @@ import { cached } from 'shared/util'\n import { parseFilters } from './filter-parser'\n \n const defaultTagRE = /\\{\\{((?:.|\\n)+?)\\}\\}/g\n-const regexEscapeRE = /[-.*+?^${}()|[\\]/\\\\]/g\n+const regexEscapeRE = /[-.*+?^${}()|[\\]... | 2017-01-05T16:15:53 |
mrdoob/three.js | 3fa40fec3588c102e691ea71fa1b9ea6457b0bac | 09f1c619c3d4589685f50ad19026b5fc72efd426 | Docs: Fix white flash on iframe load for Safari (#29419)
* Docs: Fix white flash on iframe load for Safari
* Fix white page for root level /docs page (when no page is selected)
* Update index.html
Fix code style.
* Remove unnecessary error event listener
---------
Co-authored-by: Michael Herzog <mich... | [
{
"path": "docs/index.html",
"patch": "@@ -529,17 +529,23 @@ <h1><a href=\"https://threejs.org\">three.js</a></h1>\n \t\t\tconst oldIframe = iframe;\n \t\t\tiframe = oldIframe.cloneNode();\n \n+\t\t\tiframe.style.display = 'none';\n+\n \t\t\tif ( hash && titles[ splitHash[ 0 ] ] ) {\n \n+\t\t\t\tiframe.onlo... | 2024-09-17T07:52:32 |
golang/go | 48bb7a61147c397d0f45c10bc21ba12fa9cec0ad | e8a53538b473f1a7a92602675eda2d34f3887611 | cmd/compile: repair bisection behavior for float-to-unsigned conversion
My stab at a bisect-reproducer failed, but I verified that
it fixed the problem described in the issue.
Updates #75834
Change-Id: I9e0dfacd2bbd22cbc557e144920ee3417a48088c
Reviewed-on: https://go-review.googlesource.com/c/go/+/710997
LUCI-TryBot... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -2865,7 +2865,19 @@ func (s *state) conv(n ir.Node, v *ssa.Value, ft, tt *types.Type) *ssa.Value {\n \t}\n \n \tif ft.IsFloat() || tt.IsFloat() {\n-\t\tconv, ok := fpConvOpToSSA[twoTypes{s.concreteEtype(ft), s.concreteEtype(tt)}]\n+\t\tcft, ct... | 2025-10-10T21:08:20 |
denoland/deno | 9f9061193245726cc94576f1c731732ff430f8fd | 20f3a0700163629e68b31055720f95422f7a291b | fix(node): reduce chance of module not found error due to missing copy package (#30744) | [
{
"path": "Cargo.lock",
"patch": "@@ -2557,9 +2557,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.38.0\"\n+version = \"0.38.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"c11034223675352ee51fd2c564600b1bc4a0bd04de2b54fe91df505c73dbb042\"... | 2025-09-16T14:57:36 |
vuejs/vue | da955d1a4f268c9183907306506f663c46b40406 | d3768c0268c74fe123b5bec715e32dce556d4ac2 | Use 'click' event for checkbox and radio (fix #4620) (#4639)
* listen to click event for checkbox and radio.
* add test cases | [
{
"path": "src/platforms/web/compiler/directives/model.js",
"patch": "@@ -62,7 +62,7 @@ function genCheckboxModel (\n : `:_q(${value},${trueValueBinding})`\n )\n )\n- addHandler(el, 'change',\n+ addHandler(el, 'click',\n `var $$a=${value},` +\n '$$el=$event.target,' +\n ... | 2017-01-04T19:43:52 |
mrdoob/three.js | 3ddd8de8783d634ef7a3a4bccaf7da33598ebf98 | 3415f337633c94fbffc235499454e64c8c81e7ec | fix: add xr input source hand check to prevent hand tracking model loading on connect (#29179)
Co-authored-by: jorodi <jorodi@mpb16> | [
{
"path": "examples/jsm/webxr/XRControllerModelFactory.js",
"patch": "@@ -239,7 +239,7 @@ class XRControllerModelFactory {\n \n \t\t\tconst xrInputSource = event.data;\n \n-\t\t\tif ( xrInputSource.targetRayMode !== 'tracked-pointer' || ! xrInputSource.gamepad ) return;\n+\t\t\tif ( xrInputSource.targetRayM... | 2024-09-16T18:38:22 |
denoland/deno | 20f3a0700163629e68b31055720f95422f7a291b | d4a84393da588dae932b1e3807a387c2be2f4418 | fix(permissions): point to correct config file in error message in workspace containing permissions at root (#30742) | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -1065,27 +1065,21 @@ impl CliOptions {\n let set_config_permission_name = match &self.flags.subcommand {\n DenoSubcommand::Bench(_) => dir\n .to_bench_permissions_config()?\n- .is_some()\n- .then_some(\"Bench\"),\n... | 2025-09-16T14:42:15 |
golang/go | e8a53538b473f1a7a92602675eda2d34f3887611 | e3be2d1b2b68d960398a343805f77052d5decb22 | runtime: fail TestGoroutineLeakProfile on data race
Some of the programs in testdata/testgoroutineleakprofile have data
races because they were taken from a corpus that showcases general Go
concurrency bugs, not just leaked goroutines.
This causes some flakiness as tests might fail due to, for example, a
concurrent m... | [
{
"path": "src/runtime/goroutineleakprofile_test.go",
"patch": "@@ -487,7 +487,7 @@ func TestGoroutineLeakProfile(t *testing.T) {\n \ttestCases = append(testCases, patternTestCases...)\n \n \t// Test cases must not panic or cause fatal exceptions.\n-\tfailStates := regexp.MustCompile(`fatal|panic`)\n+\tfail... | 2025-10-09T20:58:34 |
vuejs/vue | aeb2efab4035dcdaab4afb3bfd9e9cef39fdd120 | d80eff8eb61e48ac184536a159a0e96c4613e7d6 | [weex] fix the removeChild logic for text node (#4626) | [
{
"path": "src/platforms/weex/runtime/node-ops.js",
"patch": "@@ -34,8 +34,8 @@ export function insertBefore (node, target, before) {\n }\n \n export function removeChild (node, child) {\n- if (node.nodeType === 3) {\n- node.parentNode.setAttr('value', '')\n+ if (child.nodeType === 3) {\n+ node.setA... | 2017-01-02T16:38:02 |
mrdoob/three.js | bf6d89558442aa266c49ee6e1fa121b8103c3fc3 | 7290d8fd4c5834dcb99799e7268febef27c267e7 | WebGPURenderer: fix renderGroup.needs update logic (#29402)
Co-authored-by: aardgoose <angus.sawyer@email.com> | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -424,15 +424,16 @@ class Renderer {\n \n \t\t//\n \n-\t\tconst renderBundleNeedsUpdate = renderBundleData.renderContexts.has( renderContext ) === false || bundleGroup.needsUpdate === true;\n+\t\tconst needsUpdate = bundleGroup.version !== renderBund... | 2024-09-13T12:44:44 |
denoland/deno | fc6f0d38a32e8d85d4967d1e0719ddcf81fa2a72 | d8c186196c962e814f41a8b9a87a52951288f208 | fix(ext/node): implement `fchmod` on windows (#30704)
- Also fixes `node:fs.fstat` because it was incorrectly showing the file
mode on windows, which is needed by the node compat test.
- Moves the `stat_extra` function from `ext/fs/std_fs.rs` (deno_fs) into
`ext/io/lib.rs` (deno_io), because it's more convenient to ex... | [
{
"path": "ext/fs/std_fs.rs",
"patch": "@@ -862,7 +862,7 @@ fn stat(path: &Path) -> FsResult<FsStat> {\n let file = opts.open(path)?;\n let metadata = file.metadata()?;\n let mut fsstat = FsStat::from_std(metadata);\n- stat_extra(&file, &mut fsstat)?;\n+ deno_io::stat_extra(&file, &mut fsstat)?;\n ... | 2025-09-16T13:22:37 |
golang/go | e3be2d1b2b68d960398a343805f77052d5decb22 | aced4c79a2b2c60e464410cec1e5378d1011fa18 | net/url: disallow raw IPv6 addresses in host
RFC 3986 requires square brackets around IPv6 addresses.
Parse's acceptance of raw IPv6 addresses is non compliant,
and complicates splitting out a port.
Fixes #31024
Fixes #75223
Change-Id: I477dc420a7441cb33156627dbd5e46d88c677f1e
Reviewed-on: https://go-review.googleso... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -698,7 +698,9 @@ func parseHost(host string) (string, error) {\n \t\t\treturn \"\", errors.New(\"invalid IP-literal\")\n \t\t}\n \t\treturn \"[\" + unescapedHostname + \"]\" + unescapedColonPort, nil\n-\t} else if i := strings.LastIndex(host, \":\"); i != -1 {\n+... | 2025-10-09T00:56:09 |
vuejs/vue | 05591f177a80cee02818c53dcf6659a3b486e633 | c1f68dd96eab2ccc634d0b813cef4cc13e8211d3 | [weex] fix the text node could not be removed properly (#4606) | [
{
"path": "src/platforms/weex/runtime/node-ops.js",
"patch": "@@ -34,6 +34,10 @@ export function insertBefore (node, target, before) {\n }\n \n export function removeChild (node, child) {\n+ if (node.nodeType === 3) {\n+ node.parentNode.setAttr('value', '')\n+ return\n+ }\n node.removeChild(child)... | 2016-12-31T00:36:37 |
mrdoob/three.js | 5fec042ae3d1decb1a1b2c5004f71e6a8c02f7df | ddadd04fa29c8d782187c8a0bdb813e158cef686 | InstancedPoints: Fix UVs (#29396) | [
{
"path": "examples/jsm/geometries/InstancedPointsGeometry.js",
"patch": "@@ -20,7 +20,7 @@ class InstancedPointsGeometry extends InstancedBufferGeometry {\n \t\tthis.type = 'InstancedPointsGeometry';\n \n \t\tconst positions = [ - 1, 1, 0, 1, 1, 0, - 1, - 1, 0, 1, - 1, 0 ];\n-\t\tconst uvs = [ - 1, 1, 1, 1... | 2024-09-12T23:14:47 |
denoland/deno | d8c186196c962e814f41a8b9a87a52951288f208 | 0ad6a5eb7f0ec6adea51f9ec604920f314f74a4d | fix(ext/node): validate fs.read on empty buffer (#30706)
Towards #29972
Allows
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-read-empty-buffer.js
test to pass. | [
{
"path": "ext/node/polyfills/_fs/_fs_read.ts",
"patch": "@@ -4,7 +4,10 @@\n // deno-lint-ignore-file prefer-primordials\n \n import { Buffer } from \"node:buffer\";\n-import { ERR_INVALID_ARG_TYPE } from \"ext:deno_node/internal/errors.ts\";\n+import {\n+ ERR_INVALID_ARG_TYPE,\n+ ERR_INVALID_ARG_VALUE,\n... | 2025-09-16T09:16:17 |
golang/go | aced4c79a2b2c60e464410cec1e5378d1011fa18 | 584a89fe7455470b09643b30bdc3cc55bb75a552 | net/http: strip request body headers on POST to GET redirects
According to WHATWG Fetch, when the body is dropped in a redirect,
headers that describe the body should also be dropped.
https://fetch.spec.whatwg.org/#http-redirect-fetch
Fixes #57273
Change-Id: I84598f69608e95c1b556ea0ce5953ed43bf2d824
Reviewed-on: htt... | [
{
"path": "src/net/http/client.go",
"patch": "@@ -690,8 +690,7 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\t\t\t\tstripSensitiveHeaders = true\n \t\t\t\t}\n \t\t\t}\n-\t\t\tcopyHeaders(req, stripSensitiveHeaders)\n-\n+\t\t\tcopyHeaders(req, stripSensitiveHeaders, !includeBod... | 2025-10-09T01:26:02 |
vuejs/vue | 2ee516dfc8c72cf48ca7c77863216d93de0b30eb | 299ecfc19fa0f59effef71d24686bd7eb70ecbab | ensure updated hook is called after children are updated as well (fix #4599) | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -109,9 +109,8 @@ export function lifecycleMixin (Vue: Class<Component>) {\n if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n vm.$parent.$el = vm.$el\n }\n- if (vm._isMounted) {\n- callHook(vm, 'updated')\n- ... | 2016-12-29T21:19:44 |
mrdoob/three.js | ddadd04fa29c8d782187c8a0bdb813e158cef686 | 8eb25264dd4ad43318038ce43d9bfef016ab55cd | WebGPURenderer: Fix InstancedMesh init with 0 instance (#29399) | [
{
"path": "src/nodes/accessors/InstanceNode.js",
"patch": "@@ -52,7 +52,7 @@ class InstanceNode extends Node {\n \n \t\t\tif ( instanceMesh.count <= 1000 ) {\n \n-\t\t\t\tinstanceMatrixNode = buffer( instanceAttribute.array, 'mat4', instanceMesh.count ).element( instanceIndex );\n+\t\t\t\tinstanceMatrixNode... | 2024-09-12T15:22:34 |
denoland/deno | 0ad6a5eb7f0ec6adea51f9ec604920f314f74a4d | 4a1f63b930629dcc36b7723e942482c32b035cd4 | fix(ext/node): make `fs.glob` accepts `URL` cwd (#30705)
Towards #29972
Allows
https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-fs-glob.mjs
to pass. | [
{
"path": "ext/node/polyfills/_fs/_fs_glob.ts",
"patch": "@@ -42,6 +42,7 @@ import {\n import assert from \"node:assert\";\n \n import type { ErrnoException } from \"ext:deno_node/_global.d.ts\";\n+import { toPathIfFileURL } from \"ext:deno_node/internal/url.ts\";\n \n interface GlobOptionsBase {\n /**\n@... | 2025-09-16T09:12:08 |
mrdoob/three.js | f51df3879e4f1b0ef651c17a7236a59ed597704d | 43dcbc1aca1b5239496c5e11af198a214b5036f3 | LOD: Add `removeLevel()`. (#29359)
* feat(app): 29074 Add removeLevel method for LOD
* fix: rename parameter
* refactor: using for loop
* refactor: apply suggestions in method structure
* Update LOD.html
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "docs/api/en/objects/LOD.html",
"patch": "@@ -85,6 +85,15 @@ <h3>\n \t\t\tAdds a mesh that will display at a certain distance and greater. Typically\n \t\t\tthe further away the distance, the lower the detail on the mesh.\n \t\t</p>\n+\t\t<h3>\n+\t\t\t[method:Boolean removeLevel]( [param:Float dis... | 2024-09-11T20:22:39 |
golang/go | 69e82796322bbff60b522534a8a6eacb2bf1ebba | 6f4c63ba63fdec6e4a42e2e19ac71937973dedef | net/http: set cookie host to Request.Host when available
When both Request.URL and Request.Host are set, the host in URL
is used for connecting at the transport level, while Host is used
for the request host line. Cookies should be set for the request,
not the underlying connection destination.
Fixes #38988
Change-I... | [
{
"path": "src/net/http/client.go",
"patch": "@@ -172,8 +172,13 @@ func refererForURL(lastReq, newReq *url.URL, explicitRef string) string {\n \n // didTimeout is non-nil only if err != nil.\n func (c *Client) send(req *Request, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {\n+\tc... | 2025-10-08T21:33:24 |
vuejs/vue | 6b1755ae8c9f44a20046331f6a3dad31b37bf177 | e120d1459d921de3e961343ea9233a8c6c438a44 | adjust hydration strategy (fix #4560) | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -14,7 +14,7 @@\n \n import config from '../config'\n import VNode from './vnode'\n-import { makeMap, isPrimitive, _toString, warn } from '../util/index'\n+import { makeMap, isPrimitive, warn } from '../util/index'\n import { activeInstance } from '../instance... | 2016-12-27T22:26:58 |
mrdoob/three.js | 43dcbc1aca1b5239496c5e11af198a214b5036f3 | 4c53075810d441da5920f38abe4bc55ba25fd887 | Audio: stop audio with a delay (#29376)
* feat: audio stop delay parameter
* docs: audio play/stop delay parameter
* Update Audio.html
* fix: do not honor offset
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "docs/api/en/audio/Audio.html",
"patch": "@@ -164,6 +164,7 @@ <h3>[method:Float getVolume]()</h3>\n \n \t\t<h3>[method:this play]( delay )</h3>\n \t\t<p>\n+\t\t\tdelay (optional) - The delay, in seconds, at which the audio should start playing.<br />\n \t\t\tIf [page:Audio.hasPlaybackControl hasPl... | 2024-09-11T09:51:57 |
vuejs/vue | f5f8453050c16310b3bd33f0978a0f727043e771 | 610fe3159218fb08567a7857ec05ef687c129646 | Recommend user to provide reproduction repository for ssr issue (#4573)
* recommend user to provide reproduction repository for ssr issue
* fix typo
* update style | [
{
"path": ".github/CONTRIBUTING.md",
"patch": "@@ -28,7 +28,7 @@ Hi! I’m really excited that you are interested in contributing to Vue.js. Befo\n \n - It is recommended that you make a JSFiddle/JSBin/Codepen to demonstrate your issue. You could start with [this template](http://jsfiddle.net/df4Lnuw6/) that ... | 2016-12-27T21:09:21 |
golang/go | 6f4c63ba63fdec6e4a42e2e19ac71937973dedef | 955a5a0dc5dd68ed89200a08f17590c0a94c1e09 | cmd/go: unify "go fix" and "go vet"
This change unifies the fix and vet subcommands; they use the
same run function, action graph, and external tool (-vettool
for go vet and -fixtool for go fix). go fix runs the tool
with the -fix flag, whereas although go vet also supports
-fix, it is not the default. The two tools h... | [
{
"path": "doc/next/3-tools.md",
"patch": "@@ -7,5 +7,15 @@\n a replacement for `go tool doc`: it takes the same flags and arguments and\n has the same behavior.\n \n+<!-- go.dev/issue/75432 -->\n+The `go fix` command, following the pattern of `go vet` in Go 1.10,\n+now uses the Go analysis framework (`gola... | 2025-09-26T17:33:09 |
denoland/deno | 4a1f63b930629dcc36b7723e942482c32b035cd4 | a6663b0ce3bced56fbd9138e02ef473669d6c114 | Revert "fix(ext/node): `fs.stat` and `fs.statSync` compatibility (#30… (#30741)
…637)"
This reverts commit 432761aac5afa5108ac5bd41b3de8e0b9c93e2d8.
The tests are causing flakes on Windows | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -1443,13 +1443,13 @@ impl FileBackedVfsMetadata {\n blksize: 0,\n size: self.len,\n dev: 0,\n- ino: None,\n+ ino: 0,\n mode: 0,\n- nlink: None,\n+ nlink: 0,\n uid: 0,\n gid: 0,\n rdev: 0,\n- bl... | 2025-09-15T23:25:47 |
mrdoob/three.js | 1174d07040d28ba59306419e295cc8f1d49b4d54 | d8591856df4737427805315bdee859f80e5b163b | WebGPURenderer: Workgroup Arrays and Barrier Support (#29192)
* init
* barrier, private array, workgroup array support
* clean
* Implement Renaud suggestions
* fix
* fix storage buffer example with workgroupBarrier()
* add tags and other info
* add bitonic sort example
* update
* Rebase bran... | [
{
"path": "examples/files.json",
"patch": "@@ -314,6 +314,7 @@\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_sort_bitonic\",\n \t\t\"webgpu_compute_texture\",\n \t\t\"webgpu_compute_texture_pingpong\",\n \t\t\"webgpu... | 2024-09-10T18:29:48 |
vuejs/vue | 4d9de6a2e3e0422189d6a1f5d6d583a5266a9569 | 0cbc96101d8b4e03bc87776bfd55eb1a6bf3cceb | do not use looseEqual for checkbox v-model if has no true-value binding (fix #4586) | [
{
"path": "src/platforms/web/compiler/directives/model.js",
"patch": "@@ -56,8 +56,11 @@ function genCheckboxModel (\n const falseValueBinding = getBindingAttr(el, 'false-value') || 'false'\n addProp(el, 'checked',\n `Array.isArray(${value})` +\n- `?_i(${value},${valueBinding})>-1` +\n- `:... | 2016-12-27T20:58:57 |
golang/go | 5368e7742971c8dbcb75a405eb2319e71fb1d0c7 | c53cb642deea152e28281133bc0053f5ec0ce358 | net/http: run TestRequestWriteTransport with fake time to avoid flakes
This test verifies whether or not we use the chunked encoding when
sending a request with a body like io.NopCloser(strings.NewReader("")).
This depends on whether the transport can read a single byte from the
request body within 200ms, which is fla... | [
{
"path": "src/net/http/requestwrite_test.go",
"patch": "@@ -15,6 +15,7 @@ import (\n \t\"strings\"\n \t\"testing\"\n \t\"testing/iotest\"\n+\t\"testing/synctest\"\n \t\"time\"\n )\n \n@@ -667,6 +668,13 @@ func TestRequestWrite(t *testing.T) {\n func TestRequestWriteTransport(t *testing.T) {\n \tt.Parallel(... | 2025-10-09T22:25:30 |
denoland/deno | a6663b0ce3bced56fbd9138e02ef473669d6c114 | 73853545f1b52374e4b6c2f3289bac38feda023a | fix(lsp): don't write lockfile during cache-on-save (#30733) | [
{
"path": "cli/lsp/config.rs",
"patch": "@@ -555,7 +555,7 @@ pub struct WorkspaceSettings {\n \n /// Cache local modules and their dependencies on `textDocument/didSave`\n /// notifications corresponding to them.\n- #[serde(default)]\n+ #[serde(default = \"default_to_true\")]\n pub cache_on_save: bo... | 2025-09-15T20:01:05 |
mrdoob/three.js | 94f287d3eaaf4df4dd9d189f880a3f86a4d3464c | e9aebe2ab4b78dd047172ac221bac807398614b8 | TextureUtils: Add WebGPU version. (#29348)
* TextureUtils: Add WebGPU version.
* TextureUtilsGPU: Clean up.
* TextureUtilsGPU: Fix uv coords. | [
{
"path": "examples/jsm/utils/TextureUtils.js",
"patch": "@@ -83,6 +83,7 @@ export function decompress( texture, maxTextureSize = Infinity, renderer = null\n \treadableTexture.magFilter = texture.magFilter;\n \treadableTexture.wrapS = texture.wrapS;\n \treadableTexture.wrapT = texture.wrapT;\n+\treadableTex... | 2024-09-09T09:18:53 |
vuejs/vue | 02e2d99e277a1ba1bd42e1b81b2273903fdb7fbc | 0bb2d4e2b621950f5d44ed83b7e9ce15e282db68 | Revert "ensure leave transitions and enter transitions are triggered in the same frame (fix #4510)"
This reverts commit 92ad0bd378d38f84691120b1caa654ad195ea724. | [
{
"path": "examples/move-animations/index.html",
"patch": "@@ -15,19 +15,17 @@\n border: 1px solid #666;\n box-sizing: border-box;\n }\n- /* 1. define transition property, duration and easing */\n .fade-move, .fade-enter-active, .fade-leave-active {\n transition: all... | 2016-12-27T19:11:45 |
golang/go | c53cb642deea152e28281133bc0053f5ec0ce358 | 954fdcc51a678a2b84edb29ef4c3743b318a6fd8 | internal/buildcfg: enable greenteagc experiment for loong64
The loong64 compiler bug has been resolved, so we can now
unconditionally enable the experiment on the architecture.
Updates #73581
Fixes #75776
Change-Id: I390f8a125d43ca64798ea5b6a408aaf7220fadbf
Reviewed-on: https://go-review.googlesource.com/c/go/+/7104... | [
{
"path": "src/internal/buildcfg/exp.go",
"patch": "@@ -78,18 +78,13 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t// things like .debug_addr (needed for DWARF 5).\n \tdwarf5Supported := (goos != \"darwin\" && goos != \"ios\" && goos != \"aix\")\n \n-\t// The compiler... | 2025-10-09T08:05:35 |
mrdoob/three.js | e9aebe2ab4b78dd047172ac221bac807398614b8 | 5ce5a0c870b9f341c5edcba6ed7cc3cbc3992135 | CacheNode: Fix `parent` reference. (#29369) | [
{
"path": "src/nodes/core/CacheNode.js",
"patch": "@@ -29,7 +29,7 @@ class CacheNode extends Node {\n \tbuild( builder, ...params ) {\n \n \t\tconst previousCache = builder.getCache();\n-\t\tconst cache = builder.getCacheFromNode( this, parent );\n+\t\tconst cache = builder.getCacheFromNode( this, this.pare... | 2024-09-09T08:16:34 |
denoland/deno | 73853545f1b52374e4b6c2f3289bac38feda023a | 08d989507592c4191b4e3ee50f20bd5c6877f287 | fix(init): regression where `deno init --npm` stopped working on mac (#30730) | [
{
"path": "cli/tools/init/mod.rs",
"patch": "@@ -13,6 +13,7 @@ use deno_core::anyhow::Context;\n use deno_core::error::AnyError;\n use deno_core::futures::FutureExt;\n use deno_core::serde_json::json;\n+use deno_lib::args::UnstableConfig;\n use deno_npm_installer::PackagesAllowedScripts;\n use deno_runtime:... | 2025-09-15T18:33:47 |
golang/go | 954fdcc51a678a2b84edb29ef4c3743b318a6fd8 | 19a30ea3f250f8d6258f3e08aa3561f1193fdd38 | cmd/compile: declare no output register for loong64 LoweredAtomic{And,Or}32 ops
The ICE seen on loong64 while compiling the `(*gcWork).tryStealSpan`
function was due to an `LoweredAtomicAnd32` op (inlined from the
`(pMask).clear` implementation) being incorrectly assigned an output
register while it shouldn't have. Be... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go",
"patch": "@@ -143,6 +143,7 @@ func init() {\n \t\tgp2load = regInfo{inputs: []regMask{gpspsbg, gpg}, outputs: []regMask{gp}}\n \t\tgpstore = regInfo{inputs: []regMask{gpspsbg, gpg}}\n \t\tgpstore2 = regInfo{inputs: []regMask{gpspsbg, gpg, gpg... | 2025-10-09T07:52:02 |
mrdoob/three.js | c5819a3cc82e4c00dc89f89eb503db012d028a57 | 38b20e09bf20b2b491ab5193b81af0d2cf7e5095 | Examples: GPGPU Water Port (#29147)
* init
* init
* working water
* Add additional spheres to webgl_gpgpu_water to demonstrate performance differential between webgl compute and webgpu compute
* sketch out sphere compute
* webgpu finished
* add screenshot
* cleanup
* fix movement
* fix scree... | [
{
"path": "examples/files.json",
"patch": "@@ -317,6 +317,7 @@\n \t\t\"webgpu_compute_points\",\n \t\t\"webgpu_compute_texture\",\n \t\t\"webgpu_compute_texture_pingpong\",\n+\t\t\"webgpu_compute_water\",\n \t\t\"webgpu_cubemap_adjustments\",\n \t\t\"webgpu_cubemap_dynamic\",\n \t\t\"webgpu_cubemap_mix\",",... | 2024-09-08T21:52:46 |
denoland/deno | 08d989507592c4191b4e3ee50f20bd5c6877f287 | 4b81955f03050db75d50ad49a4d33047c2ebd149 | chore(test): fix `node:fs.close` test flakiness (#30735) | [
{
"path": "tests/unit_node/_fs/_fs_close_test.ts",
"patch": "@@ -2,6 +2,7 @@\n import { assert, assertThrows, fail } from \"@std/assert\";\n import { assertCallbackErrorUncaught } from \"../_test_utils.ts\";\n import { close, closeSync, openSync } from \"node:fs\";\n+import { setTimeout } from \"node:timers... | 2025-09-15T17:21:22 |
mrdoob/three.js | 275f2013eda6d786739fb44c223ed747514b1322 | dd7e7b7e896c9d305fb1ba2ea08a47230e4654a3 | Fix `report-size.yml` (#29336) | [
{
"path": ".github/workflows/report-size.yml",
"patch": "@@ -185,14 +185,14 @@ jobs:\n WEBGPU_NODES_FILESIZE_GZIP_FORM=$(node ./test/treeshake/utils/format-size.js \"$WEBGPU_NODES_FILESIZE_GZIP\")\n WEBGPU_NODES_FILESIZE_BASE_FORM=$(node ./test/treeshake/utils/format-size.js \"$WEBGPU_NO... | 2024-09-05T21:57:22 |
golang/go | 80f3bb5516bb12233a15167bc8ba9d39cca5b535 | 9db7e30bb42eed9912f5e7e9e3959f3b38879d5b | reflect: remove timeout in TestChanOfGC
This test has an arbitrary 5 second timeout, and this seems to fire on
Darwin with mayMoreStackMove enabled (which is slow). Just rely on the
regular test timeout instead of this arbitrary shorter timeout to
eliminate the possibility that the test is just too slow.
On my Linux ... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -6198,19 +6198,6 @@ func TestChanOfDir(t *testing.T) {\n }\n \n func TestChanOfGC(t *testing.T) {\n-\tdone := make(chan bool, 1)\n-\tgo func() {\n-\t\tselect {\n-\t\tcase <-done:\n-\t\tcase <-time.After(5 * time.Second):\n-\t\t\tpanic(\"deadlock in TestChanO... | 2025-10-09T21:13:59 |
vuejs/vue | 0bb2d4e2b621950f5d44ed83b7e9ce15e282db68 | 2540c37c15eed42cbbcf576545406097ec46a6e3 | Revert "fix enter transition flicker regression (fix #4576)"
This reverts commit 89987e8e2ce31c071ea937152dbf967b6213d4ad. | [
{
"path": "src/platforms/web/runtime/modules/transition.js",
"patch": "@@ -112,9 +112,9 @@ export function enter (vnode: VNodeWithData, toggleDisplay: ?() => void) {\n beforeEnterHook && beforeEnterHook(el)\n if (expectsCSS) {\n addTransitionClass(el, startClass)\n- addTransitionClass(el, activeC... | 2016-12-27T19:11:40 |
mrdoob/three.js | dd7e7b7e896c9d305fb1ba2ea08a47230e4654a3 | 97ed19569588cf7a5b747e2f3f09c29f8fabc78a | Fix gltf sparse normalized (#29330) | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -3153,6 +3153,9 @@ class GLTFParser {\n \n \t\t\t\t}\n \n+\t\t\t\t// Ignore normalized since we copy from sparse\n+\t\t\t\tbufferAttribute.normalized = false;\n+\n \t\t\t\tfor ( let i = 0, il = sparseIndices.length; i < il; i ++ ) {\n \n \t\t\t\t\... | 2024-09-05T21:04:33 |
golang/go | 9db7e30bb42eed9912f5e7e9e3959f3b38879d5b | 8d810286b3121b601480426159c04d178fa29166 | net/url: allow IP-literals with IPv4-mapped IPv6 addresses
The security fix we applied in CL709857 was overly broad. It applied
rules from RFC 2732, which disallowed IPv4-mapped IPv6 addresses, but
these were later allowed in RFC 3986, which is the canonical URI syntax
RFC.
Revert the portion of CL709857 which restri... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -689,13 +689,13 @@ func parseHost(host string) (string, error) {\n \n \t\t// Per RFC 3986, only a host identified by a valid\n \t\t// IPv6 address can be enclosed by square brackets.\n-\t\t// This excludes any IPv4 or IPv4-mapped addresses.\n+\t\t// This excludes... | 2025-10-09T00:13:12 |
vuejs/vue | 2540c37c15eed42cbbcf576545406097ec46a6e3 | 7f25f730c1b82a80158d488b025f138155664921 | fix dynamic transition type for higher-order transition components (fix #4545) | [
{
"path": "src/platforms/web/runtime/components/transition.js",
"patch": "@@ -62,6 +62,10 @@ function hasParentTransition (vnode) {\n }\n }\n \n+function isSameChild (child, oldChild) {\n+ return oldChild.key === child.key && oldChild.tag === child.tag\n+}\n+\n export default {\n name: 'transition',\n ... | 2016-12-27T17:10:13 |
denoland/deno | 432761aac5afa5108ac5bd41b3de8e0b9c93e2d8 | 5eea5f550472cf58a95fcee2b340d34f554ddd20 | fix(ext/node): `fs.stat` and `fs.statSync` compatibility (#30637)
Closes #30570
Changes in this PR:
- Implement `ino`, `nlink`, and `blocks` properties of `Deno.FileInfo`
on Windows. These changes are automatically reflected to the
corresponding node stat function. In order to do so, I had to tinker
with the
[createB... | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -1443,13 +1443,13 @@ impl FileBackedVfsMetadata {\n blksize: 0,\n size: self.len,\n dev: 0,\n- ino: 0,\n+ ino: None,\n mode: 0,\n- nlink: 0,\n+ nlink: None,\n uid: 0,\n gid: 0,\n rdev: 0,\n- bl... | 2025-09-15T13:29:30 |
golang/go | 0e466a8d1d89e15e953c7d35bcd9e02d3c89f62b | 4837fbe4145cd47b43eed66fee9eed9c2b988316 | cmd/compile: modify float-to-[u]int so that amd64 and arm64 match
Eventual goal is that all the architectures agree, and are
sensible. The test will be build-tagged to exclude
not-yet-handled platforms.
This change also bisects the conversion change in case of bugs.
(`bisect -compile=convert ...`)
Change-Id: I98528... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -20,6 +20,7 @@ type DebugFlags struct {\n \tAppend int `help:\"print information about append compilation\"`\n \tCheckptr int `help:\"instrument unsafe pointer conversions\\n0: instrumentation disabled\\n1: co... | 2025-07-21T17:30:08 |
vuejs/vue | d111f3f1fdcac8206a4bed59aa0227fc622e884b | 89987e8e2ce31c071ea937152dbf967b6213d4ad | typo fix (#4583)
- nomralization / normalzation → normalization | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -302,10 +302,10 @@ function genChildren (el: ASTElement, checkSkip?: boolean): string | void {\n }\n }\n \n-// determine the normalzation needed for the children array.\n+// determine the normalization needed for the children array.\n // 0: no normal... | 2016-12-27T15:17:24 |
denoland/deno | 5eea5f550472cf58a95fcee2b340d34f554ddd20 | 27fa8db5c6f55b3fbfc64311aa0a15878ad62276 | fix(bundle): set the type of the outputFile in the deno bundle to `Uint8Array<ArrayBuffer>` (#30716) | [
{
"path": "cli/tsc/dts/lib.deno.unstable.d.ts",
"patch": "@@ -146,7 +146,7 @@ declare namespace Deno {\n */\n export interface OutputFile {\n path: string;\n- contents?: Uint8Array;\n+ contents?: Uint8Array<ArrayBuffer>;\n hash: string;\n text(): string;\n }",
"a... | 2025-09-15T10:19:41 |
mrdoob/three.js | 03651c5bcef2a9b2c1fb15b8f004df9676fd404d | b5209aa70b1e6346e9f91647f2da139cf8cd1adb | doc fr fundamentals fix typo errors (#29329) | [
{
"path": "manual/fr/cameras.html",
"patch": "@@ -1,10 +1,10 @@\n <!DOCTYPE html><html lang=\"fr\"><head>\n <meta charset=\"utf-8\">\n- <title>Caméras dans </title>\n+ <title>Caméras</title>\n <meta name=\"viewport\" content=\"width=device-width, user-scalable=no, minimum-scale=1.0, maximum-sc... | 2024-09-05T09:00:20 |
vuejs/vue | 89987e8e2ce31c071ea937152dbf967b6213d4ad | 66bf120f7aa7543cfe684741cba6f5b638f551c0 | fix enter transition flicker regression (fix #4576) | [
{
"path": "src/platforms/web/runtime/modules/transition.js",
"patch": "@@ -112,9 +112,9 @@ export function enter (vnode: VNodeWithData, toggleDisplay: ?() => void) {\n beforeEnterHook && beforeEnterHook(el)\n if (expectsCSS) {\n addTransitionClass(el, startClass)\n+ addTransitionClass(el, activeC... | 2016-12-27T15:16:45 |
denoland/deno | 27fa8db5c6f55b3fbfc64311aa0a15878ad62276 | 6050aea25aa2ba9af13c7f8e582df9d564b09ed6 | fix(ext/node): handle falsy values enumerability in process.env (#30708)
Closes #30701 | [
{
"path": "ext/node/polyfills/_process/process.ts",
"patch": "@@ -85,7 +85,7 @@ export const env: InstanceType<ObjectConstructor> & Record<string, string> =\n ownKeys: () => ReflectOwnKeys(Deno.env.toObject()),\n getOwnPropertyDescriptor: (_target, name) => {\n const value = denoEnvGet(String(... | 2025-09-15T09:59:51 |
golang/go | 4837fbe4145cd47b43eed66fee9eed9c2b988316 | ee163197a879cf19aa9758bc544c717445284311 | net/http/httptest: check whether response bodies are allowed
Fixes #75471
Change-Id: Ie8fc5fae4b2a9285501198d8379bbffe51ee63f7
Reviewed-on: https://go-review.googlesource.com/c/go/+/709335
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-sc... | [
{
"path": "src/net/http/httptest/recorder.go",
"patch": "@@ -105,6 +105,10 @@ func (rw *ResponseRecorder) writeHeader(b []byte, str string) {\n // Write implements http.ResponseWriter. The data in buf is written to\n // rw.Body, if not nil.\n func (rw *ResponseRecorder) Write(buf []byte) (int, error) {\n+\t... | 2025-10-05T22:09:03 |
vuejs/vue | de220a635d0e712bbd24f951bd4121780af054b9 | 84b7b82031ac70467cedcec801fde55a605e4321 | ignore text nodes between v-if conditions (fix #4533) | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -352,6 +352,23 @@ function processIfConditions (el, parent) {\n }\n }\n \n+function findPrevElement (children: Array<any>): ASTElement | void {\n+ let i = children.length\n+ while (i--) {\n+ if (children[i].type === 1) {\n+ return children[i... | 2016-12-23T04:40:10 |
denoland/deno | 6050aea25aa2ba9af13c7f8e582df9d564b09ed6 | 9e2472afc072fdbca49b3de7ccbb4beedf59fc6a | fix(ext/node): set default callback for `fs.close` (#30720)
Fixes #30718 | [
{
"path": "ext/node/polyfills/_fs/_fs_close.ts",
"patch": "@@ -13,9 +13,19 @@ const {\n ObjectPrototypeIsPrototypeOf,\n } = primordials;\n \n-export function close(fd: number, callback: CallbackWithError) {\n+function defaultCloseCallback(err: Error | null) {\n+ if (err !== null) throw err;\n+}\n+\n+expo... | 2025-09-15T08:05:31 |
golang/go | ee163197a879cf19aa9758bc544c717445284311 | de9da0de30377532370a09a311851afc0616c185 | path/filepath: return cleaned path from Rel
As the doc says, Rel should return a cleaned path.
Fixes #75763
Change-Id: Ic0f5a3b1da3cc4cf3c31fdb1a88ebcc4ea6f9169
Reviewed-on: https://go-review.googlesource.com/c/go/+/709675
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci... | [
{
"path": "src/path/filepath/path.go",
"patch": "@@ -248,7 +248,7 @@ func Rel(basepath, targpath string) (string, error) {\n \t\t\tbuf[n] = Separator\n \t\t\tcopy(buf[n+1:], targ[t0:])\n \t\t}\n-\t\treturn string(buf), nil\n+\t\treturn Clean(string(buf)), nil\n \t}\n \treturn targ[t0:], nil\n }",
"addit... | 2025-10-06T23:13:14 |
vuejs/vue | 84b7b82031ac70467cedcec801fde55a605e4321 | b3ebfef91d72b301b85bce07c4ffad4f59bc73e2 | fix SSR tests | [
{
"path": "src/platforms/web/server/modules/dom-props.js",
"patch": "@@ -20,14 +20,17 @@ export default function renderDOMProps (node: VNodeWithData): string {\n return res\n }\n \n+ const attrs = node.data.attrs\n for (const key in props) {\n if (key === 'innerHTML') {\n setText(node, pr... | 2016-12-23T04:03:05 |
denoland/deno | 9e2472afc072fdbca49b3de7ccbb4beedf59fc6a | bf8288baa50d084580ee003b08f7b2421773ba94 | fix(check): filter resolution errors for bare ambient modules (#30690) | [
{
"path": "cli/graph_util.rs",
"patch": "@@ -23,6 +23,7 @@ use deno_graph::ModuleGraph;\n use deno_graph::ModuleGraphError;\n use deno_graph::ModuleLoadError;\n use deno_graph::ResolutionError;\n+use deno_graph::SpecifierError;\n use deno_graph::WorkspaceFastCheckOption;\n use deno_graph::source::Loader;\n ... | 2025-09-12T16:44:13 |
golang/go | de9da0de30377532370a09a311851afc0616c185 | ae094a1397d03aafde380cdb79e0d6a5731c8dbc | cmd/compile/internal/devirtualize: improve concrete type analysis
This change improves the concrete type analysis in the devirtualizer,
it not longer relies on ir.Reassigned, it now statically tries to
determine the concrete type of an interface, even when assigned
multiple times, following type assertions and iface c... | [
{
"path": "src/cmd/compile/internal/devirtualize/devirtualize.go",
"patch": "@@ -18,9 +18,11 @@ import (\n \t\"cmd/compile/internal/types\"\n )\n \n+const go126ImprovedConcreteTypeAnalysis = true\n+\n // StaticCall devirtualizes the given call if possible when the concrete callee\n // is available staticall... | 2025-10-07T17:57:59 |
vuejs/vue | b3ebfef91d72b301b85bce07c4ffad4f59bc73e2 | 71cc0a575b88346cb10688c04140b335f8a01ba3 | also bind static special attrs as props (fix #4530) | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -459,6 +459,15 @@ function processAttrs (el) {\n }\n }\n addAttr(el, name, JSON.stringify(value))\n+ // #4530 also bind special attributes as props even if they are static\n+ // so that patches between dynamic/static are co... | 2016-12-23T03:32:57 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.