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 |
|---|---|---|---|---|---|
vuejs/vue | d362d64633f00f8cbf1613c424d8852fb45c7596 | a675221bb68e46710cd1bac1d0287c605fa61db4 | update entities encoding/decoding (fix #3899) | [
{
"path": "build/config.js",
"patch": "@@ -38,7 +38,7 @@ const builds = {\n env: 'development',\n banner,\n alias: {\n- entities: './entity-decoder'\n+ he: './entity-decoder'\n }\n },\n // Runtime+compiler standalone production build.\n@@ -49,22 +49,22 @@ const builds = {\n ... | 2016-10-13T09:05:35 |
golang/go | dabe2bb4fbf47e64729591e896f7231bda0c42a7 | 3ec0b25ab7a130709863cf0837190d2995e176a4 | [dev.simd] cmd/compile: fix holes in mask peepholes
It turns out that ".Masked" is implemented by VPANDQ *and* VPANDD.
The shape of bitwise AND doesn't matter, the correctness of the rules is
guaranteed by the way the mask is generated.
This CL fix the holes in the peephole rules.
Change-Id: I2d15c4d17afed6fdbb2f390... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules",
"patch": "@@ -1768,6 +1768,10 @@\n (VPANDQ512 x (VPMOVMToVec32x16 k)) => (VMOVDQU32Masked512 x k)\n (VPANDQ512 x (VPMOVMToVec16x32 k)) => (VMOVDQU16Masked512 x k)\n (VPANDQ512 x (VPMOVMToVec8x64 k)) => (VMOVDQU8Masked512 x k)\n+(VPANDD512 x (VPMOVMT... | 2025-09-14T20:17:55 |
mrdoob/three.js | 49b30e6d641ae9e1a6c5e59264c3902e9ec3728e | ce72acd01cefd4b5ad8d49d8feecefcee3127636 | Editor: Fix undo/redo of points. (#28677) | [
{
"path": "editor/js/Sidebar.Geometry.LatheGeometry.js",
"patch": "@@ -61,6 +61,7 @@ function GeometryParametersPanel( editor, object ) {\n \n \t\tconst parameters = object.geometry.parameters;\n \n+\t\tpoints.setValue( parameters.points, false );\n \t\tsegments.setValue( parameters.segments );\n \t\tphiSta... | 2024-06-18T08:31:07 |
denoland/deno | dcdd1d61390ed8ac23a04ee67e2130fe2c9c6532 | 43b376cd47ebeb44e9fd820559d2315ef9abc7b7 | fix(ext/node): worker_threads handles basic `require` calls (#30279)
This is not a full-fledged and fully correct `require`/CJS support
for `node:worker_threads`, but unlocks certain scenarios that
were not working at all previously. | [
{
"path": "ext/node/polyfills/02_init.js",
"patch": "@@ -19,6 +19,7 @@ function initialize(args) {\n maybeWorkerMetadata,\n nodeDebug,\n warmup = false,\n+ moduleSpecifier = null,\n } = args;\n if (!warmup) {\n if (initialized) {\n@@ -41,6 +42,7 @@ function initialize(args) {\n ... | 2025-08-02T11:27:06 |
vuejs/vue | a675221bb68e46710cd1bac1d0287c605fa61db4 | 30bd34e965758f323dd8807a232b966f64d308f9 | should not generate children for "is" component with inline-template (fix #3931) | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -230,7 +230,7 @@ function genSlot (el: ASTElement): string {\n }\n \n function genComponent (el: any): string {\n- const children = genChildren(el)\n+ const children = el.inlineTemplate ? null : genChildren(el)\n return `_h(${el.component},${genDat... | 2016-10-13T07:42:27 |
mrdoob/three.js | ce72acd01cefd4b5ad8d49d8feecefcee3127636 | 852b1f55eda649903cd4692b0d6ebd5a6702909e | USDZLoader: throw error instead of warning (#28684) (#28685)
USDZLoader should throw an error instead of the warning, to allow the
consumer to act upon the error. | [
{
"path": "examples/jsm/loaders/USDZLoader.js",
"patch": "@@ -182,8 +182,7 @@ class USDZLoader extends Loader {\n \n \t\t\t\t\tif ( isCrateFile( zip[ filename ] ) ) {\n \n-\t\t\t\t\t\tconsole.warn( 'THREE.USDZLoader: Crate files (.usdc or binary .usd) are not supported.' );\n-\t\t\t\t\t\tcontinue;\n+\t\t\t\... | 2024-06-18T07:11:08 |
golang/go | 8320fe8f0e5283eb67429de30b4e24be6a85c7a7 | 080882a928c96f997a1cb67cef40d2cc6126ffcd | runtime: deduplicate syscall assembly for darwin
The darwin port provides different syscall functions that only
differ on how they handle the errors, and they are all written
in assembly.
This duplication can be removed by factoring out the error handling
logic to arch-agnostic Go code and leaving the assembly functi... | [
{
"path": "src/runtime/sys_darwin.go",
"patch": "@@ -10,37 +10,56 @@ import (\n \t\"unsafe\"\n )\n \n+//go:nosplit\n+func libcError() uintptr {\n+\terrPtr, _ := syscall(abi.FuncPCABI0(libc_error_trampoline), 0, 0, 0)\n+\treturn errPtr\n+}\n+func libc_error_trampoline()\n+\n // The X versions of syscall expe... | 2025-08-26T09:47:51 |
denoland/deno | 43b376cd47ebeb44e9fd820559d2315ef9abc7b7 | 5c947b07b453734e10342eebcd0cb3663d18144c | Revert "fix(ext/node): support TLS for unix sockets" (#30284)
Reverts denoland/deno#30169
Causes issues with playwright's installation of browsers | [
{
"path": "ext/net/ops.rs",
"patch": "@@ -74,19 +74,6 @@ impl From<SocketAddr> for IpAddr {\n }\n }\n \n-#[cfg(unix)]\n-impl From<tokio::net::unix::SocketAddr> for IpAddr {\n- fn from(addr: tokio::net::unix::SocketAddr) -> Self {\n- Self {\n- hostname: addr.as_pathname().map_or_else(\n- ||... | 2025-08-02T09:11:23 |
vuejs/vue | ff178ccc7eb9a00958240059078c7651359fce3d | 8823fcc7a434f5eaea72e7a8c3a1e8f8c32f617a | fix directive rawName generation for raw render functions (fix #3930) | [
{
"path": "src/core/vdom/modules/directives.js",
"patch": "@@ -90,23 +90,17 @@ function normalizeDirectives (\n let i, dir\n for (i = 0; i < dirs.length; i++) {\n dir = dirs[i]\n- res[getRawDirName(dir)] = dir\n if (!dir.modifiers) {\n dir.modifiers = emptyModifiers\n }\n+ res[ge... | 2016-10-13T07:18:21 |
mrdoob/three.js | d208680ef1498572840914a89707af1ee3b881cd | 2328b0a75c6280a907d527c47f151971eacde778 | TSL: Fix issue in wgslFn alias revision (#28686) | [
{
"path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeFunction.js",
"patch": "@@ -53,7 +53,7 @@ const wgslTypeLib = {\n \t'texture_2d': 'texture',\n \t'texture_cube': 'textureCube',\n \t'texture_depth_2d': 'textureDepth',\n-\t'texture_storage_2d': 'textureStorage',\n+\t'texture_storage_2d': 'storageTexture... | 2024-06-17T21:33:51 |
golang/go | 080882a928c96f997a1cb67cef40d2cc6126ffcd | ac803b5949f6dbc5bfa559afe506d35f9e1b3195 | net: use context.AfterFunc in connect
This saves a goroutine when ctx can be but is not canceled during
the connect call.
The redundant fd.Close() call is removed, because the caller closes
the fd on error.
Change-Id: I124d7e480294a48ef74d5650d8ef0489bdfc64d6
Reviewed-on: https://go-review.googlesource.com/c/go/+/69... | [
{
"path": "src/net/fd_unix.go",
"patch": "@@ -74,46 +74,32 @@ func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa sysc\n \tif err := fd.pfd.Init(fd.net, true); err != nil {\n \t\treturn nil, err\n \t}\n-\tif deadline, hasDeadline := ctx.Deadline(); hasDeadline {\n-\t\tfd.pfd.SetWrite... | 2025-08-27T09:38:13 |
denoland/deno | b05e8b20ac785cd64f90b007d38958c5979cda63 | 56f2055c3f8bac2293074cc6d0202a2246e699df | fix(ext/node): support TLS for unix sockets (#30169)
This commit adds initial support for connecting Unix socket over
TLS in `node:tls.connect()` API
---------
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com> | [
{
"path": "ext/net/ops.rs",
"patch": "@@ -74,6 +74,19 @@ impl From<SocketAddr> for IpAddr {\n }\n }\n \n+#[cfg(unix)]\n+impl From<tokio::net::unix::SocketAddr> for IpAddr {\n+ fn from(addr: tokio::net::unix::SocketAddr) -> Self {\n+ Self {\n+ hostname: addr.as_pathname().map_or_else(\n+ ||... | 2025-08-01T10:00:14 |
mrdoob/three.js | 2328b0a75c6280a907d527c47f151971eacde778 | 8a7848a42245faba55c5d50315b17c0cc3197ccd | WebGPURenderer: Revision texture filtering and rain example (#28682)
* revision of tsl filtered textures
* fix example | [
{
"path": "examples/jsm/nodes/core/NodeBuilder.js",
"patch": "@@ -15,7 +15,10 @@ import {\n \tColorNodeUniform, Matrix3NodeUniform, Matrix4NodeUniform\n } from '../../renderers/common/nodes/NodeUniform.js';\n \n-import { REVISION, RenderTarget, Color, Vector2, Vector3, Vector4, IntType, UnsignedIntType, Flo... | 2024-06-17T21:33:01 |
vuejs/vue | 6e96a657d8c96d48f1ba6ad051aae1eff0d58c73 | 6ab10c0559094b6870b5c6601ae526ee579b796b | adjust component destroy logic (really fix #3882) | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -187,6 +187,8 @@ export function lifecycleMixin (Vue: Class<Component>) {\n if (vm.$el) {\n vm.$el.__vue__ = null\n }\n+ // invoke destroy hooks on current rendered tree\n+ vm.__patch__(vm._vnode, null)\n }\n }\n ",
"addition... | 2016-10-12T21:43:08 |
golang/go | ac803b5949f6dbc5bfa559afe506d35f9e1b3195 | 889e71c2ac43f22dbd41c0b935acac2e778c8f87 | cmd/go/internal/work: copy vet tool's stdout to our stdout
The go command connects both the stdout and stderr files of
its child commands (cmd/compile, cmd/vet, etc) to the go
command's own stderr. If the child command is supposed to
produce structure output on stderr, as is the case for
go vet -json or go fix -diff, ... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -1184,6 +1184,7 @@ type vetConfig struct {\n \tPackageVetx map[string]string // map package path to vetx data from earlier vet run\n \tVetxOnly bool // only compute vetx data; don't report detected problems\n \tVetxOutput stri... | 2025-09-11T15:02:03 |
mrdoob/three.js | 903d50d0458071d9c3324d840c04aed4313c79f9 | 13f24afed22774a99f00ee70fe63548ed573bcb2 | TSL: Respect types in WGSL Layouts (#28669)
* respect types in wgsl layouts
* support all wgsl types in parser
* fix webgpu_compute_texture_pingpong
* cleanup | [
{
"path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeFunction.js",
"patch": "@@ -2,10 +2,43 @@ import NodeFunction from '../../../nodes/core/NodeFunction.js';\n import NodeFunctionInput from '../../../nodes/core/NodeFunctionInput.js';\n \n const declarationRegexp = /^[fn]*\\s*([a-z_0-9]+)?\\s*\\(([\\s\\S]... | 2024-06-17T16:14:24 |
denoland/deno | efb16e70d3a996fa8d87b93f49bcc90d884c5861 | 6ae4eda86a0818fb81d29e0042375886b1857c1b | fix(bundle): support importing directories with a package.json from an es module when bundling (#30273) | [
{
"path": "libs/node_resolver/resolution.rs",
"patch": "@@ -562,7 +562,9 @@ impl<\n let maybe_file_type = self.sys.get_file_type(&path);\n match maybe_file_type {\n Ok(FileType::Dir) => {\n- if resolution_mode == ResolutionMode::Import {\n+ if resolution_mode == ResolutionMode::I... | 2025-07-31T22:33:25 |
vuejs/vue | 6ab10c0559094b6870b5c6601ae526ee579b796b | ea39d9f6b8220d24320fdef08070a01b94f241c6 | fix v-for list auto-keying with nested <template> (fix #3913) | [
{
"path": "src/compiler/optimizer.js",
"patch": "@@ -75,6 +75,20 @@ function isStatic (node: ASTNode): boolean {\n !node.if && !node.for && // not v-if or v-for or v-else\n !isBuiltInTag(node.tag) && // not a built-in\n isPlatformReservedTag(node.tag) && // not a component\n+ !isDirectChildOf... | 2016-10-12T21:12:12 |
golang/go | 911455fe1893bcd90d30246117415dfbce658d88 | f1fd13016ab51b93f5d39b0c46aa8c2b42e8f761 | cmd/link: don't count tbss section in TestFlagD
TestFlagD looks for a data-like section at the lowest address.
On OpenBSD, the .tbss section matches the current condition, which
has address 0, causing the test fail. Don't count TLS sections.
Also, print the section name on error.
Fixes #75444.
Change-Id: Ic0aa1a2bb... | [
{
"path": "src/cmd/link/elf_test.go",
"patch": "@@ -627,30 +627,30 @@ func testFlagD(t *testing.T, dataAddr string, roundQuantum string, expectedAddr\n \tdefer ef.Close()\n \n \t// Find the first data-related section to verify segment placement\n-\tvar firstDataSectionAddr uint64\n-\tvar found bool = false\... | 2025-09-12T16:36:38 |
mrdoob/three.js | abbf28a79a6f0a6223a4ecba22401a125c8af77e | dd18c853d33f54e5c525d0b55bff56dda9bb6f1e | Use ImageBitmapLoader in GLTFLoader for Safari >= 17, fixes texture loading in a web worker (#28560) | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -2580,18 +2580,20 @@ class GLTFParser {\n \t\t// expensive work of uploading a texture to the GPU off the main thread.\n \n \t\tlet isSafari = false;\n+\t\tlet safariVersion = - 1;\n \t\tlet isFirefox = false;\n \t\tlet firefoxVersion = - 1;\n \n ... | 2024-06-15T11:39:37 |
denoland/deno | 6ae4eda86a0818fb81d29e0042375886b1857c1b | fc5e39aaf4fdeef886db998eb6af6eebfe4f591d | fix(ext/node): define fs constants correctly across platforms (#30113) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -239,6 +239,7 @@ deno_core::extension!(deno_node,\n ops::buffer::op_is_ascii,\n ops::buffer::op_is_utf8,\n ops::buffer::op_transcode,\n+ ops::constant::op_node_fs_constants,\n ops::buffer::op_node_decode_utf8,\n ops::crypto::op_node_check_prim... | 2025-07-31T21:11:01 |
vuejs/vue | ea39d9f6b8220d24320fdef08070a01b94f241c6 | 5d0999ac375f477a9f2746ea746081d07ee60c64 | fix static node v-for nested check | [
{
"path": "src/compiler/optimizer.js",
"patch": "@@ -57,7 +57,7 @@ function markStaticRoots (node: ASTNode, isInFor: boolean) {\n }\n if (node.children) {\n for (let i = 0, l = node.children.length; i < l; i++) {\n- markStaticRoots(node.children[i], !!node.for)\n+ markStaticRoots... | 2016-10-12T20:31:56 |
golang/go | dc960d0bfeb6ce6abd0cfa2c096476d98e9ec7cd | 7acb0d044695ca0fbedf94dca7abfdfd991bc69a | cmd/compile, reflect: further allow inlining of TypeFor
Previous CLs optimized direct use of abi.Type, but reflect.Type is
indirected, so was not benefiting.
For TypeFor, we can use toRType directly without a nil check because the
types are statically known.
Normally, I'd think SSA would remove the nil check, but du... | [
{
"path": "src/cmd/compile/internal/reflectdata/reflect.go",
"patch": "@@ -717,6 +717,10 @@ func writeType(t *types.Type) *obj.LSym {\n \t}\n \ts.SetSiggen(true)\n \n+\tif !tbase.HasShape() {\n+\t\tTypeLinksym(t) // ensure lsym.Extra is set\n+\t}\n+\n \tif !NeedEmit(tbase) {\n \t\tif i := typecheck.BaseType... | 2025-09-06T03:04:58 |
mrdoob/three.js | 62fa25e092d9286790f2775ae69742f4680c81d5 | e1d2d07362b6cc6d2a5fd48abbe616f6234a0dde | WebGPURenderer: Enhance GLSL Error in WebGLBackend (#28594)
* add node.outputCode and improve glsl errors in webglbackend
* cleanup
* split PRs | [
{
"path": "examples/jsm/renderers/common/Renderer.js",
"patch": "@@ -133,6 +133,11 @@ class Renderer {\n \t\t\tenabled: false\n \t\t};\n \n+\t\tthis.debug = {\n+\t\t\tcheckShaderErrors: true,\n+\t\t\tonShaderError: null\n+\t\t};\n+\n \t}\n \n \tasync init() {",
"additions": 5,
"deletions": 0,
"l... | 2024-06-14T01:53:32 |
denoland/deno | e58c8ed20a986f8b423b144e1058871d32984517 | 462151f16fdaf84c737e877a988db34f4cb64837 | fix(update): update version reqs even if locked to latest version (#30249) | [
{
"path": "cli/tools/pm/outdated/mod.rs",
"patch": "@@ -301,7 +301,18 @@ fn choose_new_version_req(\n latest_available: false,\n };\n };\n- if preferred.version <= resolved.version {\n+ let exact = if let Some(range) = dep.req.version_req.range() {\n+ range.0[0].start == range.0... | 2025-07-31T19:22:01 |
vuejs/vue | ceab0b71d0dd8247220564b2a651f7bea0a796d6 | 7ca58b6cdf985da1751c97290fb1e2fc9fb08f41 | fix functional components that return string or nothing (fix #3919) | [
{
"path": "src/core/vdom/create-component.js",
"patch": "@@ -113,9 +113,11 @@ function createFunctionalComponent (\n slots: () => resolveSlots(children, context)\n }\n )\n- vnode.functionalContext = context\n- if (data.slot) {\n- (vnode.data || (vnode.data = {})).slot = data.slot\n+ if (vn... | 2016-10-12T17:31:39 |
mrdoob/three.js | 14859920816132413568838f8db3030f5aa63b4e | ff6cdbb6e79615413718c5233a34afc84ceb2040 | USDZLoader: Fix geometry and material parsing. (#28647)
* USDZLoader: Fix index handling in `buildGeometry()`.
* USDZLoader: Fix shader selection in `buildMaterial()`. | [
{
"path": "examples/jsm/loaders/USDZLoader.js",
"patch": "@@ -338,15 +338,27 @@ class USDZLoader extends Loader {\n \n \t\t\tif ( ! data ) return undefined;\n \n-\t\t\tlet geometry = new BufferGeometry();\n+\t\t\tconst geometry = new BufferGeometry();\n+\t\t\tlet indices = null;\n \t\t\tlet uvs = null;\n \n... | 2024-06-13T11:09:16 |
golang/go | 7acb0d044695ca0fbedf94dca7abfdfd991bc69a | 60c1ee91834d6c9701c5058830645da6eaa0cee9 | runtime: fix syscall9 on darwin/arm64
The aarch64 ABI says that only the first 8 arguments should be
passed as registers, subsequent arguments should be put on
the stack.
Syscall9 is not putting the 9th argument on the stack, and it should.
The standard library hasn't hit this issue because it uses Syscall9
for fun... | [
{
"path": "src/runtime/sys_darwin_arm64.s",
"patch": "@@ -724,13 +724,9 @@ TEXT runtime·syscall9(SB),NOSPLIT,$0\n \tMOVD\t56(R0), R6\t// a7\n \tMOVD\t64(R0), R7\t// a8\n \tMOVD\t72(R0), R8\t// a9\n+\tMOVD\tR8, 0(RSP)\t// the 9th arg and onwards must be passed on the stack\n \tMOVD\t8(R0), R0\t// a1\n \n-\t/... | 2025-09-10T14:34:22 |
denoland/deno | 8680d97b3885fdfe6c5e54ed7be223b785188c01 | afe149e071b0af406f930d39841620940591e21d | fix(ext/node): `fs.open` and `fs.openSync` compatibility (#30191)
Notable changes:
- Introduces a separate op between `Deno.open` and `node:fs.open`.
- Removes redundant `existenceCheckRequired` and `Deno.lstatSync` calls,
as the op layer already handles that when `options.create_new` is true
and uses synchronous I/O ... | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -95,6 +95,7 @@ impl DenoRtSys {\n truncate: true,\n append: false,\n create_new: false,\n+ custom_flags: None,\n mode: None,\n },\n &old_file_bytes,",
"additions": 1,
"deletions": 0,
... | 2025-07-31T15:10:10 |
mrdoob/three.js | ff6cdbb6e79615413718c5233a34afc84ceb2040 | 6d01823fb46b640890cf81d70d24e976252b9e41 | USDZLoader: Make parsing more spec conform. (#28639)
* USDZLoader: Fix parsing of vertex data when meta data are present.
* USDZLoader: Ensure texture paths are trimmed.
* USDZLoader: Fix normal attribute parsing. | [
{
"path": "examples/jsm/loaders/USDZLoader.js",
"patch": "@@ -52,6 +52,18 @@ class USDAParser {\n \t\t\t\t\ttarget[ lhs ] = group;\n \t\t\t\t\ttarget = group;\n \n+\t\t\t\t} else if ( rhs.endsWith( '(' ) ) {\n+\n+\t\t\t\t\t// see #28631\n+\n+\t\t\t\t\tconst values = rhs.slice( 0, - 1 );\n+\t\t\t\t\ttarget[ ... | 2024-06-13T08:49:07 |
golang/go | a4e25c3d657cf7c3f3a921cc99ea60ad5a337b82 | dd8276657f2244193d399f01941ee1d76a79529d | net,internal/poll: skip TestAllocs when race is enabled on Windows
The Windows implementation of several network protocols make use of
sync.Pool, which randomly drops cached items when race is enabled.
While here, zero out the control buffer to allow it to be garbage
collected.
Fixes #75341
Change-Id: Ie20e21adef2e... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -196,6 +196,8 @@ func freeWSAMsg(msg *windows.WSAMsg) {\n \t// Clear pointers to buffers so they can be released by garbage collector.\n \tmsg.Buffers.Len = 0\n \tmsg.Buffers.Buf = nil\n+\tmsg.Control.Len = 0\n+\tmsg.Control.Buf = nil\n \twsaMsgPool.... | 2025-09-12T08:13:15 |
mrdoob/three.js | b30715ae263344207b6affc400124d31454160c2 | 4fdc32283d7aa0502889e8bde57221bb4b69feeb | fix storage buffer bound in webglbackend (#28644) | [
{
"path": "examples/jsm/renderers/webgl/WebGLBackend.js",
"patch": "@@ -1086,7 +1086,11 @@ class WebGLBackend extends Backend {\n \n \tcreateStorageAttribute( attribute ) {\n \n-\t\t//console.warn( 'Abstract class.' );\n+\t\tif ( this.has( attribute ) ) return;\n+\n+\t\tconst gl = this.gl;\n+\n+\t\tthis.att... | 2024-06-13T03:07:21 |
denoland/deno | afe149e071b0af406f930d39841620940591e21d | c66fea5606a578ecc43192af12b37847434f3455 | fix(bundle): require of sub directory in npm package should consult package.json (#30253) | [
{
"path": "cli/lib/worker.rs",
"patch": "@@ -313,7 +313,9 @@ pub enum ResolveNpmBinaryEntrypointError {\n pub enum ResolveNpmBinaryEntrypointFallbackError {\n #[class(inherit)]\n #[error(transparent)]\n- PackageSubpathResolve(node_resolver::errors::PackageSubpathResolveError),\n+ PackageSubpathResolve... | 2025-07-31T14:48:51 |
vuejs/vue | a9417e4e4fcb91d445c15d79b6eec684d7e5c9c7 | 443ef1c26c299856709ff59aa2f9e7816fbd7908 | select change event fix (#3922)
* if select binding not changed, then needRest should be set to false, and no change event should be emitted
* update code style | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -60,7 +60,7 @@ export default {\n // option in the DOM.\n const needReset = el.multiple\n ? binding.value.some(v => hasNoMatchingOption(v, el.options))\n- : hasNoMatchingOption(binding.value, el.options)\n+ ... | 2016-10-12T17:26:42 |
mrdoob/three.js | f5cd7570eb5d592ac967edbadee809b9140a1824 | a02afa99bb02fd8b97abf63d67f3d4d7dfe8ea68 | fixes PDBLoader page link for zh (#28626) | [
{
"path": "docs/list.json",
"patch": "@@ -1122,7 +1122,7 @@\n \t\t\t\t\"MTLLoader\": \"examples/zh/loaders/MTLLoader\",\n \t\t\t\t\"OBJLoader\": \"examples/zh/loaders/OBJLoader\",\n \t\t\t\t\"PCDLoader\": \"examples/zh/loaders/PCDLoader\",\n-\t\t\t\t\"PDBLoader\": \"examples/en/loaders/PDBLoader\",\n+\t\t\t... | 2024-06-11T21:58:13 |
golang/go | 73676e322396f6d49b4328456023233a2fe5693e | 0e1b98993ea6574819813cfad89d7fd1d1c47552 | cmd/go: run cgo and cgo compiles in their own actions
This change splits package builds further into even more actions.
Between the cache action (and cover action, if present) and the actual
build action we insert three layers of actions:
Check Cache Action
| |
| V... | [
{
"path": "src/cmd/go/internal/work/action.go",
"patch": "@@ -19,6 +19,7 @@ import (\n \t\"internal/platform\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"slices\"\n \t\"strings\"\n \t\"sync\"\n \t\"time\"\n@@ -578,6 +579,47 @@ func (ca *coverActor) Act(b *Builder, ctx context.Context, a *Action) error {\n \tret... | 2025-08-08T21:35:43 |
denoland/deno | c66fea5606a578ecc43192af12b37847434f3455 | af55e069ef36c20fca866f59ab8494dfee10ff84 | fix(ext/node): use primordials in `ext/node/polyfills/internal_binding/node_file.ts` (#30066) | [
{
"path": "ext/node/polyfills/internal_binding/node_file.ts",
"patch": "@@ -25,13 +25,18 @@\n // - https://github.com/nodejs/node/blob/master/src/node_file.cc\n // - https://github.com/nodejs/node/blob/master/src/node_file.h\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-l... | 2025-07-31T14:28:58 |
vuejs/vue | 864ef21a7d679697b5e135d2b81aa71b495b2656 | 03ea9f0b57467637c67adcd97139ed61dc218d55 | fix deeply nested keep-alive components not being destroyed (fix #3882) | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -202,7 +202,10 @@ export function createPatchFunction (backend) {\n if (isDef(i = data.hook) && isDef(i = i.destroy)) i(vnode)\n for (i = 0; i < cbs.destroy.length; ++i) cbs.destroy[i](vnode)\n }\n- if (isDef(i = vnode.child) && !data.keepA... | 2016-10-12T03:58:53 |
mrdoob/three.js | 8a1bacf76caa9750f756798b8501fa4fa41b0a69 | d2c12dfe2df462325fd8152f461565da65090d43 | docs:translation import error (#28619) | [
{
"path": "docs/examples/zh/controls/DragControls.html",
"patch": "@@ -15,7 +15,7 @@ <h1>拖放控制器([name])</h1>\n \t\t该类被用于提供一个拖放交互。\n \t\t</p>\n \n-\t\t<h2>进口</h2>\n+\t\t<h2>引入</h2>\n \n \t\t<p>\n \t\t\t[name] 是一个附加组件,必须显式导入。",
"additions": 1,
"deletions": 1,
"language": "HTML"
}
] | 2024-06-11T14:18:54 |
golang/go | 0e1b98993ea6574819813cfad89d7fd1d1c47552 | 84e9ab398438bc728683ca68485c6e89526b0441 | testing: exit B.Loop early upon saturation
There's a cap of 1 billion benchmark iterations because more than that
is usually not going to give more useful data. Unfortunately, the
existing implementation neglected to check whether the 1e9 cap had
already been exceeded when it adjusted the number of iterations in the
B... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -298,6 +298,9 @@ func (b *B) doBench() BenchmarkResult {\n \treturn b.result\n }\n \n+// Don't run more than 1e9 times. (This also keeps n in int range on 32 bit platforms.)\n+const maxBenchPredictIters = 1_000_000_000\n+\n func predictN(goalns int64, prevI... | 2025-08-31T17:34:47 |
denoland/deno | af55e069ef36c20fca866f59ab8494dfee10ff84 | eef8835e36bf55eaecb8dda86bb590698fa43714 | fix(ext/node): `fs.rename` and `fs.renameSync` compatibility (#30245) | [
{
"path": "ext/node/polyfills/_fs/_fs_rename.ts",
"patch": "@@ -1,32 +1,63 @@\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 { pathFromURL } from \"ext:deno_web/00_infra... | 2025-07-31T14:24:59 |
mrdoob/three.js | d2c12dfe2df462325fd8152f461565da65090d43 | 2f335437dfc013ae4fdc90ffc88280c0e7f98daf | Examples: WebGPU WGSL/TSL Node Interoperability (#28379)
* Got a wgsl shader generally working. Need to start small before working up
* Fixed bugs and errors
* Finished draft of wgsl tsl node interoperability example, which demonstrates how to use the same node variables across both wgsl and tsl version of the s... | [
{
"path": "examples/files.json",
"patch": "@@ -372,6 +372,7 @@\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",\n+\t\t\"webgpu_tsl_interoperability\",\n \t\t\"webgpu_shadowmap\",\n \t\t\"webgpu_skinning\",\n \t\t\"webgpu_skinning_instancing\",",
"additions": 1,
"deletions"... | 2024-06-11T01:45:26 |
vuejs/vue | 03ea9f0b57467637c67adcd97139ed61dc218d55 | 7570a3c566969bbb5afb5bfa2c2c068aecae379c | fix flow | [
{
"path": "flow/compiler.js",
"patch": "@@ -52,6 +52,7 @@ declare type ASTElementHandlers = {\n \n declare type ASTDirective = {\n name: string;\n+ rawName: string;\n value: string;\n arg: ?string;\n modifiers: ?{ [key: string]: true };",
"additions": 1,
"deletions": 0,
"language": "Jav... | 2016-10-12T00:50:28 |
mrdoob/three.js | 5858ca39ad088fc169b1154cbfeb5817f4939544 | 5c7ccda4ac84caf41da884f833c37581bf55250e | Editor: Fix UI of geometry generators when undo/redo. (#28610) | [
{
"path": "editor/js/Sidebar.Geometry.BoxGeometry.js",
"patch": "@@ -7,6 +7,7 @@ import { SetGeometryCommand } from './commands/SetGeometryCommand.js';\n function GeometryParametersPanel( editor, object ) {\n \n \tconst strings = editor.strings;\n+\tconst signals = editor.signals;\n \n \tconst container = n... | 2024-06-10T17:43:41 |
vuejs/vue | 7570a3c566969bbb5afb5bfa2c2c068aecae379c | 1fa3844dc26745b4cb855b0934bd1b132ba33d9b | test for directive refactor (fix #3848) | [
{
"path": "src/core/vdom/helpers.js",
"patch": "@@ -68,16 +68,17 @@ export function getFirstComponentChild (children: ?Array<any>) {\n export function mergeVNodeHook (def: Object, hookKey: string, hook: Function, key: string) {\n key = key + hookKey\n const injectedHash = def.__injected || (def.__inject... | 2016-10-12T00:49:10 |
denoland/deno | eef8835e36bf55eaecb8dda86bb590698fa43714 | ae6ac919debacbd6a329b16d0e5f4a36e1d08f60 | fix(ext/node): fs readv promisify compatibility (#30149) | [
{
"path": "ext/node/polyfills/_fs/_fs_readv.ts",
"patch": "@@ -14,8 +14,13 @@ import * as io from \"ext:deno_io/12_io.js\";\n import { op_fs_seek_async, op_fs_seek_sync } from \"ext:core/ops\";\n import process from \"node:process\";\n import { primordials } from \"ext:core/mod.js\";\n+import { customPromis... | 2025-07-31T14:17:56 |
mrdoob/three.js | 2ba5c1db941535d9ee74afcec9ce1ead57d79222 | ae437d01ecbc8263a8d4735a821f2d71946f1e5f | fixed typo (#28603) | [
{
"path": "editor/sw.js",
"patch": "@@ -237,7 +237,7 @@ self.addEventListener( 'install', async function () {\n \n \t\t} catch {\n \n-\t\t\tconsole.warn( '[SW] Cound\\'t cache:', asset );\n+\t\t\tconsole.warn( '[SW] Couldn\\'t cache:', asset );\n \n \t\t}\n ",
"additions": 1,
"deletions": 1,
"la... | 2024-06-10T13:03:39 |
vuejs/vue | 5300ef7819e12d8b114d808ea2ac85e36a6fff5c | d0cfd549ba24edc7dced17ef7b8f410c4ea197f0 | fix style module removing styles with value 0 on update (fix #3905) | [
{
"path": "src/platforms/web/runtime/modules/style.js",
"patch": "@@ -49,7 +49,7 @@ function updateStyle (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n }\n \n for (name in oldStyle) {\n- if (!style[name]) {\n+ if (style[name] == null) {\n el.style[normalize(name)] = ''\n }\n }",
... | 2016-10-11T17:05:34 |
denoland/deno | 1715fc5a7ae57d1e29e9bfb711c5aa0a1b3f1e05 | d642f84203a5d63470f575adcc7ad3139b49be80 | fix(bundle): use non-node conditions for --platform=browser (#30250) | [
{
"path": "cli/factory.rs",
"patch": "@@ -1118,15 +1118,6 @@ impl CliFactory {\n .node_conditions()\n .iter()\n .map(|c| Cow::Owned(c.clone()))\n- .chain({\n- match &self.flags.subcommand {\n- DenoSubcommand::... | 2025-07-31T14:09:13 |
mrdoob/three.js | e37cf82bcf685890159e8e863a4a1eed5b4467f4 | 133da7c0a386ae82e40e2c9b6cc09d16868b54d0 | TSL: Added type conversions to `WGSLNodeFunction` and fleshed out precision. (#28577)
* Added type conversions to WGSLNodeFunction and fleshed out precision block
* fix formatting | [
{
"path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeFunction.js",
"patch": "@@ -5,9 +5,43 @@ const declarationRegexp = /^[fn]*\\s*([a-z_0-9]+)?\\s*\\(([\\s\\S]*?)\\)\\s*[\\-\\>]*\\s*(\n const propertiesRegexp = /[a-z_0-9]+|<(.*?)>+/ig;\n \n const wgslTypeLib = {\n-\tf32: 'float'\n+\t'f32': 'float',\n+\t'... | 2024-06-10T04:06:33 |
golang/go | 5a0446d4498fb59853c81300ec387374a98f23bd | c39b2fdd1ec86f68668141a0901d5f3fc634854e | [dev.simd] simd/_gen/simdgen, cmd/compile: add memory op machine ops
This CL adds the machine ops for memory-op and also their prog writing
logic.
This CL also fixes a bug in the XED parser. Previously the
merge of machine ops is not checking the CPU feature, so some AVX
instruction might have their "memFeatures" fie... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1353,6 +1353,514 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPSHRDQMasked512:\n \t\tp = simdV2kvImm8(s, v)\n \n+\tcase ssa.OpAMD64VPABSDMasked128load,\n+\t\tssa.OpAMD64VPABSDMasked256load,\n+\t\tssa.OpAM... | 2025-09-04T18:20:59 |
vuejs/vue | d0cfd549ba24edc7dced17ef7b8f410c4ea197f0 | 8bb1e58df06f6ac41f8dfd00c91ec75f88091530 | Revert "fix select multiple first option auto-selected in Chrome/FF (fix #3852)"
This reverts commit f9bef75a3425213d2f1ff3bc7fb27322617bc233. | [
{
"path": "src/platforms/web/runtime/modules/attrs.js",
"patch": "@@ -68,15 +68,6 @@ function setAttr (el: Element, key: string, value: any) {\n }\n \n export default {\n- create: function initAttrs (_: VNodeWithData, vnode: VNodeWithData) {\n- updateAttrs(_, vnode)\n- // #3852: if the \"multiple\" a... | 2016-10-11T16:53:51 |
mrdoob/three.js | 133da7c0a386ae82e40e2c9b6cc09d16868b54d0 | db91e63704068af74c5f0cc93fdc938d95e39292 | TSL: Introduces cache hierarchy (#28585)
* fix multi-flow
* cleanup
* NodeCache: Rename getNodeData() to getData(), and set*()
* cleanup
* UniformNode: global as default
* BufferAttributeNode: Manage global as default
* revision | [
{
"path": "examples/jsm/nodes/accessors/BatchNode.js",
"patch": "@@ -46,7 +46,6 @@ class BatchNode extends Node {\n \t\t\ttextureLoad( matriceTexture, ivec2( x.add( 3 ), y ) )\n \t\t);\n \n-\n \t\tconst bm = mat3(\n \t\t\tbatchingMatrix[ 0 ].xyz,\n \t\t\tbatchingMatrix[ 1 ].xyz,",
"additions": 0,
"d... | 2024-06-10T03:49:56 |
denoland/deno | d642f84203a5d63470f575adcc7ad3139b49be80 | 5612d2edc7262d7bfb3bcfb0f18649b01ec94b53 | fix(ext/node): `fs.unlink` and `fs.unlinkSync` compatibility (#30257)
Improves compatibility with Node.js by validating the input parameters,
accepting Buffer type paths, and converting thrown errors correctly.
This PR also addresses `prefer-primordials` lint rule. These changes
allow parallel/test-fs-unlink-type-chec... | [
{
"path": "ext/node/polyfills/_fs/_fs_unlink.ts",
"patch": "@@ -1,19 +1,41 @@\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 { promisify } from \"ext:deno_node/internal/... | 2025-07-31T08:56:11 |
vuejs/vue | 8bb1e58df06f6ac41f8dfd00c91ec75f88091530 | 71ef9d68f2e8f1cddff70ea42b178adf31454e29 | fix multiple select render (#3908)
* fix multiple select render. The mutliple attribute of select dosen't apply at first, so the mutli selected option dosen't work when patching
* keep the vnode.data the same as before | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -115,7 +115,7 @@ export function createPatchFunction (backend) {\n }\n vnode.elm = vnode.ns\n ? nodeOps.createElementNS(vnode.ns, tag)\n- : nodeOps.createElement(tag)\n+ : nodeOps.createElement(tag, vnode)\n setScope(vn... | 2016-10-11T16:53:30 |
golang/go | cf5e993177dac0d9fd30e961416a391c37da1815 | cdb3d467fa2df80611cc7576ce3b3806aa715fa3 | cmd/link: allow one to specify the data section in the internal linker
Fixes #74945
Change-Id: Ia73a8dcdf707222e822522daaa7f31a38b1c31e6
GitHub-Last-Rev: da1526ad8cebd5cfa2f979d49d86f3424d192ce0
GitHub-Pull-Request: golang/go#75117
Reviewed-on: https://go-review.googlesource.com/c/go/+/698355
Reviewed-by: Mark Freema... | [
{
"path": "src/cmd/link/elf_test.go",
"patch": "@@ -59,6 +59,12 @@ package main\n func main() {}\n `\n \n+var goSourceWithData = `\n+package main\n+var globalVar = 42\n+func main() { println(&globalVar) }\n+`\n+\n // The linker used to crash if an ELF input file had multiple text sections\n // with the same... | 2025-09-10T19:25:49 |
vuejs/vue | cc4c0669890206f14fd6aff5f7d59327d1e3f2e5 | 484e538df8e959bc6026c8b83ab63815ad23ef43 | fix coverage | [
{
"path": "src/core/util/props.js",
"patch": "@@ -162,15 +162,14 @@ function getType (fn) {\n }\n \n function isBooleanType (fn) {\n- const isBoolean = (fnItem) => getType(fnItem) === 'Boolean'\n-\n if (!Array.isArray(fn)) {\n- return isBoolean(fn)\n+ return getType(fn) === 'Boolean'\n }\n for ... | 2016-10-11T03:25:24 |
golang/go | fef360964c85d47406bdfbf7333591686720663b | 7d562b8460a210ad9d0b65a44fbfb71d2ea81789 | archive/tar: fix typo in benchmark name
This was accidentally introduced in CL 662835.
Change-Id: I5c7ac67337e33e82037414377912b57d2a45be91
Reviewed-on: https://go-review.googlesource.com/c/go/+/702275
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit:... | [
{
"path": "src/archive/tar/strconv_test.go",
"patch": "@@ -440,7 +440,7 @@ func TestFormatPAXRecord(t *testing.T) {\n \t}\n }\n \n-func BenchmarkParsePAXTIme(b *testing.B) {\n+func BenchmarkParsePAXTime(b *testing.B) {\n \ttests := []struct {\n \t\tname string\n \t\tin string",
"additions": 1,
"de... | 2025-09-10T00:24:20 |
mrdoob/three.js | db91e63704068af74c5f0cc93fdc938d95e39292 | ab34d2bae9e6cff8e644198e936d5ef486d0b3fd | WebGPURenderer: Fix instance error when object has same key (#28591) | [
{
"path": "examples/jsm/renderers/common/RenderObject.js",
"patch": "@@ -234,6 +234,12 @@ export default class RenderObject {\n \n \t\t}\n \n+\t\tif ( object.isInstancedMesh ) {\n+\n+\t\t\tcacheKey += object.count + ',';\n+\n+\t\t}\n+\n \t\treturn cacheKey;\n \n \t}",
"additions": 6,
"deletions": 0,... | 2024-06-10T03:24:16 |
vuejs/vue | 484e538df8e959bc6026c8b83ab63815ad23ef43 | 5b4b9269a52548034ff72c0fbd1cb20d897647f8 | fix lint | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -4,7 +4,7 @@\n */\n \n import { looseEqual, looseIndexOf } from 'shared/util'\n-import { warn, nextTick, isAndroid, isIE9, isIE, isEdge } from 'core/util/index'\n+import { warn, isAndroid, isIE9, isIE, isEdge } from 'core/util/index'\n... | 2016-10-11T03:17:35 |
mrdoob/three.js | 0da29456930486016b9a8d29414b14e265551ddd | 5b87d98f4df2914572f446dc8ae6bf0a9bd5c449 | Docs: Fix broken link in `Useful-links`. (#28590)
* Update Useful-links.html
Moved the `Udacity`'s course - `Interactive 3D Graphics` - link to a new URL.
* Docs: Fix broken link in `Useful-links`
- Change `Udacity` course's link on all translations | [
{
"path": "docs/manual/ar/introduction/Useful-links.html",
"patch": "@@ -48,7 +48,7 @@ <h3>مقالات ودورات أكثر شمولاً / متقدمة</h3>\n \t\t\t\t[link:https://medium.com/soffritti.pierfrancesco/glossy-spheres-in-three-js-bfd2785d4857 Glossy spheres in three.js].\n \t\t\t</li>\n \t\t <li>\n-\t\t\t [link:https://... | 2024-06-09T22:22:53 |
golang/go | c34958234414a6ec8512967b3681d45314b50d3a | 253dd08f5df3a45eafc97eec388636fcabfe0174 | crypto/rsa: don't test CL 687836 against v1.0.0 FIPS 140-3 module
Fixes #75343 (again)
Updates #74115
Change-Id: I6a6a696431d12e45ec9e302e63ed18990c5ee9d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/702615
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Rev... | [
{
"path": "src/crypto/rsa/rsa_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"crypto\"\n \t\"crypto/internal/boring\"\n \t\"crypto/internal/cryptotest\"\n+\t\"crypto/internal/fips140\"\n \t\"crypto/rand\"\n \t. \"crypto/rsa\"\n \t\"crypto/sha1\"\n@@ -1245,6 +1246,9 @@ func TestModifiedPrivateKey(t *tes... | 2025-09-10T21:06:39 |
denoland/deno | f00bbe9aad0cfcae93012ed2a426aa6116ea2601 | 2a3605b63cebf5a07c369455be3a6246763c0455 | fix(tsconfig): don't use tsc-compatible defaults for deno.json compiler options (#30242) | [
{
"path": "cli/lsp/compiler_options.rs",
"patch": "@@ -80,7 +80,7 @@ impl LspCompilerOptionsResolver {\n CompilerOptionsType::Check {\n lib: TsTypeLib::DenoWindow,\n },\n- d.defaults,\n+ d.source_kind,\n ... | 2025-07-30T20:24:43 |
vuejs/vue | 5b4b9269a52548034ff72c0fbd1cb20d897647f8 | be6e050b89c8bcb904a30a0a5f435430d118b985 | avoid updating input value during IME composition (fix #3894) | [
{
"path": "src/platforms/web/runtime/modules/dom-props.js",
"patch": "@@ -34,7 +34,7 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n elm._value = cur\n // avoid resetting cursor position when value is the same\n const strCur = cur == null ? '' : String(cur)\n... | 2016-10-11T03:15:34 |
golang/go | 253dd08f5df3a45eafc97eec388636fcabfe0174 | 2009e6c596551673ebb12050daa30171171cb432 | debug/macho: filter non-external symbols when reading imported symbols without LC_DYSYMTAB
File.ImportedSymbols will return symbols with a type that has one of the
N_STAB (0xe0) bits set and no section. That's not the expected behavior,
as those symbols might not be external.
We should expand the type check to also a... | [
{
"path": "src/debug/macho/file.go",
"patch": "@@ -735,9 +735,10 @@ func (f *File) ImportedSymbols() ([]string, error) {\n \t\tconst (\n \t\t\tN_TYPE = 0x0e\n \t\t\tN_UNDF = 0x0\n+\t\t\tN_EXT = 0x01\n \t\t)\n \t\tfor _, s := range st.Syms {\n-\t\t\tif s.Type&N_TYPE == N_UNDF && s.Sect == 0 {\n+\t\t\tif s.T... | 2025-09-10T11:16:00 |
mrdoob/three.js | 8306df542fcfed61ce1c95376bfd36993306eeef | 6f95e3783c03edde9cce36277d48cbbf007c5fb3 | LightShadow: Add `intensity`. (#28588)
* LightShadow: Add `intensity`.
* CSMShader: Fix `getShadow()` call.
* WebGLRenderer: Fix copy/paste error. | [
{
"path": "docs/api/ar/lights/shadows/LightShadow.html",
"patch": "@@ -46,6 +46,11 @@ <h3>[property:Float bias]</h3>\n \t\t\n \t\t<h3>[property:Integer blurSamples]</h3>\n \t\t<p>عدد العينات المستخدمة عند طمس خريطة ظل VSM.</p>\n+\n+\t\t<h3>[property:Float intensity]</h3>\n+\t\t<p>\n+\t\t\tThe intensity of t... | 2024-06-09T09:09:56 |
denoland/deno | d9b14f8765b907df71b859282a869de9879ae003 | a20f3219913fa9a0fdb0bb9a66d2638d808f9ce0 | fix(ext/node): use primordials in `ext/node/polyfills/internal_binding/pipe_wrap.ts` (#30241) | [
{
"path": "ext/node/polyfills/internal_binding/pipe_wrap.ts",
"patch": "@@ -24,9 +24,6 @@\n // - https://github.com/nodejs/node/blob/master/src/pipe_wrap.cc\n // - https://github.com/nodejs/node/blob/master/src/pipe_wrap.h\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lin... | 2025-07-30T13:44:29 |
vuejs/vue | be6e050b89c8bcb904a30a0a5f435430d118b985 | 86f0d114ec6f3aa670ec5cba82b75d5dfc05c119 | fix `mounted` not called for manually mounted instance with parent (fix #3898) | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -64,9 +64,9 @@ export function lifecycleMixin (Vue: Class<Component>) {\n vm._update(vm._render(), hydrating)\n }, noop)\n hydrating = false\n- // root instance, call mounted on self\n- // mounted is called for child components in ... | 2016-10-11T03:03:21 |
golang/go | de5d7eccb99088e3ab42c0d907da6852d8f9cebe | 8098b99547e2bb802c976a424e486ba94d3222a8 | runtime/internal/maps: only conditionally clear groups when sparse
We only want to do the work of clearing slots
if they are full. But we also don't want to do too
much work to figure out whether a slot is full or not,
especially if clearing a slot is cheap.
1) We decide group-by-group instead of slot-by-slot.
If... | [
{
"path": "src/internal/runtime/maps/table.go",
"patch": "@@ -604,12 +604,37 @@ func (t *table) Clear(typ *abi.MapType) {\n \tif t.used == 0 && t.growthLeft == mgl { // no current entries and no tombstones\n \t\treturn\n \t}\n-\tfor i := uint64(0); i <= t.groups.lengthMask; i++ {\n-\t\tg := t.groups.group(t... | 2025-08-21T00:33:14 |
mrdoob/three.js | 7a62164566e030611c0e4c92e9747bc005cdab26 | 036bd93c8a802e1087f13316e54fb2b000536336 | WebGLRenderer: Sort objects in clip space. (#28571)
* fix sorting for objects with positive view z
* Sorting input changed to clip space z
* Fix sorting input clip space calculation
* Actually fix sorting input clip space calculation
* Add Vector4.setFromMatrixPosition
* Add docs for Vector4.setFromMatr... | [
{
"path": "docs/api/en/math/Vector4.html",
"patch": "@@ -321,6 +321,12 @@ <h3>[method:this setAxisAngleFromRotationMatrix]( [param:Matrix4 m] )</h3>\n \t\t\tand [page:.w w] to the angle.\n \t\t</p>\n \n+\t\t<h3>[method:this setFromMatrixPosition]( [param:Matrix4 m] )</h3>\n+\t\t<p>\n+\t\t\tSets this vector ... | 2024-06-06T15:16:54 |
denoland/deno | a20f3219913fa9a0fdb0bb9a66d2638d808f9ce0 | 53a2cfccfc43cd20f9363f10f5bea2f0a1481d07 | fix: reduce change of corrupt lockfile error when updating dependencies in the config file (#30239) | [
{
"path": "Cargo.lock",
"patch": "@@ -2296,9 +2296,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_lockfile\"\n-version = \"0.31.0\"\n+version = \"0.31.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7049d4f98783353cd2d49eaf74365d76d1dfc24c8b06392e7c255c0515ba5... | 2025-07-30T00:37:31 |
vuejs/vue | 86f0d114ec6f3aa670ec5cba82b75d5dfc05c119 | 3446d1485d36b91ef42c53268cb69ecb047538a5 | fix dependency collection for multi-nested arrays (fix #3883) | [
{
"path": "src/core/observer/index.js",
"patch": "@@ -155,10 +155,7 @@ export function defineReactive (\n childOb.dep.depend()\n }\n if (Array.isArray(value)) {\n- for (let e, i = 0, l = value.length; i < l; i++) {\n- e = value[i]\n- e && e.__ob__ && ... | 2016-10-11T02:55:15 |
golang/go | 8098b99547e2bb802c976a424e486ba94d3222a8 | fe5420b054a091f59f5adbd78f4716d20c7f484c | internal/runtime/maps: speed up Clear
We don't need to know the actual full slots, just whether there
are any or not.
The test for any full slots is simpler on amd64. We don't have to
use PMOVMSKB and do the intreg->floatreg transfer.
Fixes #75097
Change-Id: Iace1c100618d7fc2ac5ddd5fe9e8fe5c9595243f
Reviewed-on: ht... | [
{
"path": "src/internal/runtime/maps/group.go",
"patch": "@@ -215,6 +215,12 @@ func (g ctrlGroup) matchFull() bitset {\n \treturn ctrlGroupMatchFull(g)\n }\n \n+// anyFull reports whether any slots in the group are full.\n+func (g ctrlGroup) anyFull() bool {\n+\t// A slot is full iff bit 7 is unset. Test wh... | 2025-08-20T23:53:09 |
mrdoob/three.js | ec0f9f8acc0b846998c4b9dc1a2afb6e7a66f8a1 | b1e08ab8e13833edcb89f3c3ca24f5dbe55adbe5 | Revert "fix sorting for objects with positive view z (#28474)" (#28570)
This reverts commit b1e08ab8e13833edcb89f3c3ca24f5dbe55adbe5. | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -1332,7 +1332,7 @@ class WebGLRenderer {\n \t\t\t\t\t\tif ( sortObjects ) {\n \n \t\t\t\t\t\t\t_vector3.setFromMatrixPosition( object.matrixWorld )\n-\t\t\t\t\t\t\t\t.applyMatrix4( camera.matrixWorldInverse );\n+\t\t\t\t\t\t\t\t.applyMatrix4( _projScr... | 2024-06-06T07:01:08 |
denoland/deno | 8551e18d72698e55e0d12e1bf89fcdfc66694730 | c70e713b5b4277599fda7b74a59a71962d4d846b | fix(http): catch more tunnel close errors (#30236)
Handles more error cases when tunnels close. this logic got super nasty to do as nested if statements, so i added recursion >:) | [
{
"path": "Cargo.lock",
"patch": "@@ -947,7 +947,7 @@ dependencies = [\n \"chrono\",\n \"deno_bench_util\",\n \"deno_cache_dir\",\n- \"deno_lockfile 0.30.2\",\n+ \"deno_lockfile\",\n \"deno_semver\",\n \"deno_terminal 0.2.2\",\n \"deno_tower_lsp\",\n@@ -1565,14 +1565,14 @@ dependencies = [\n \"deno_g... | 2025-07-29T21:37:04 |
vuejs/vue | 3446d1485d36b91ef42c53268cb69ecb047538a5 | 5925ad3bd2781a05484dde5bf7a22604ad66ebf5 | support functional components as named slot (fix #3872) | [
{
"path": "src/core/instance/render.js",
"patch": "@@ -232,7 +232,7 @@ export function resolveSlots (\n child = children[i]\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n- if (child.context === context &&\n+ if ((child.context === context ||... | 2016-10-11T02:41:14 |
golang/go | fad1dc608d178bf2527c249ded24ca22948269b8 | b1f3e38e4153de19b1964068d79e7da6eac7b5d8 | runtime: don't artificially limit TestReadMetricsSched
TestReadMetricsSched/running can take some time to enter in steady state
on busy systems. We currently only allow 1 second for that, we should
let it run unlimitedly until success or the test time's out.
Fixes #75049
Change-Id: I452059e1837caf12a2d2d9cae1f70a0ef... | [
{
"path": "src/runtime/metrics_test.go",
"patch": "@@ -1632,15 +1632,13 @@ func TestReadMetricsSched(t *testing.T) {\n \tcheckEq := func(t *testing.T, s *metrics.Sample, value uint64) {\n \t\tcheck(t, s, value, value)\n \t}\n-\tspinUntil := func(f func() bool, timeout time.Duration) bool {\n-\t\tstart := ti... | 2025-09-10T06:23:42 |
mrdoob/three.js | b1e08ab8e13833edcb89f3c3ca24f5dbe55adbe5 | 6ee4d11668ca3d3574c9dcf9ddbbb7f7e86a8dbd | fix sorting for objects with positive view z (#28474) | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -1332,7 +1332,7 @@ class WebGLRenderer {\n \t\t\t\t\t\tif ( sortObjects ) {\n \n \t\t\t\t\t\t\t_vector3.setFromMatrixPosition( object.matrixWorld )\n-\t\t\t\t\t\t\t\t.applyMatrix4( _projScreenMatrix );\n+\t\t\t\t\t\t\t\t.applyMatrix4( camera.matrixWor... | 2024-06-06T06:54:23 |
denoland/deno | 45ebe72e59a7f662d1eeb2c7eaf5e62c90e5dc44 | 22d1d98af3e3ba47cc56e4410c5d3c9ef5a9ef31 | fix: ensure coverage dir is stored absolute to prevent issues when cwd changes (#30225) | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -928,18 +928,18 @@ impl CliOptions {\n &self.flags.ca_stores\n }\n \n- pub fn coverage_dir(&self) -> Option<String> {\n+ pub fn coverage_dir(&self) -> Option<PathBuf> {\n match &self.flags.subcommand {\n DenoSubcommand::Test(test) => test\n ... | 2025-07-29T15:57:58 |
vuejs/vue | 5925ad3bd2781a05484dde5bf7a22604ad66ebf5 | f9bef75a3425213d2f1ff3bc7fb27322617bc233 | tweak select IE fix to reduce duplicate call | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -20,7 +20,7 @@ if (isIE9) {\n }\n \n export default {\n- bind (el, binding, vnode) {\n+ inserted (el, binding, vnode) {\n if (process.env.NODE_ENV !== 'production') {\n if (!modelableTagRE.test(vnode.tag)) {\n warn(\... | 2016-10-11T01:23:49 |
golang/go | b1f3e38e4153de19b1964068d79e7da6eac7b5d8 | 00824f5ff5913712710e449de8b7bbae51182197 | cmd/compile: when CSEing two values, prefer the statement marked one
Fixes #75249
Change-Id: Ifd61bf5341f23ce2c9735e607e00d987489caacf
Reviewed-on: https://go-review.googlesource.com/c/go/+/701295
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Alexander Musman <... | [
{
"path": "src/cmd/compile/internal/dwarfgen/linenum_test.go",
"patch": "@@ -0,0 +1,105 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package dwarfgen\n+\n+import (\n+\t\"debug/dwar... | 2025-09-05T17:19:17 |
mrdoob/three.js | 6ee4d11668ca3d3574c9dcf9ddbbb7f7e86a8dbd | 500eacc792f16cedf7c1c629960bbc361a4dd052 | TSL: Fix float over float conversion (#28562)
* TSL: Fix float over float conversion
* fix webgpu_lights_custom | [
{
"path": "examples/jsm/nodes/core/NodeBuilder.js",
"patch": "@@ -1246,7 +1246,7 @@ class NodeBuilder {\n \n \t\t}\n \n-\t\tif ( fromTypeLength === 1 && toTypeLength > 1 && fromType[ 0 ] !== toType[ 0 ] ) { // fromType is float-like\n+\t\tif ( fromTypeLength === 1 && toTypeLength > 1 && fromType !== this.ge... | 2024-06-05T16:47:27 |
vuejs/vue | f9bef75a3425213d2f1ff3bc7fb27322617bc233 | 74e4e11b4478439e581818c483d27038cbbd62fb | fix select multiple first option auto-selected in Chrome/FF (fix #3852) | [
{
"path": "src/platforms/web/runtime/modules/attrs.js",
"patch": "@@ -68,6 +68,15 @@ function setAttr (el: Element, key: string, value: any) {\n }\n \n export default {\n- create: updateAttrs,\n+ create: function initAttrs (_: VNodeWithData, vnode: VNodeWithData) {\n+ updateAttrs(_, vnode)\n+ // #38... | 2016-10-11T01:23:25 |
denoland/deno | 22d1d98af3e3ba47cc56e4410c5d3c9ef5a9ef31 | 5a84806e9ece9ddce50b0349213824658f15d0a0 | fix: use 'deno_signals' crate for signal handling (#30204)
Follow up to https://github.com/denoland/deno/pull/30029.
Definition of signal numbers/names were moved from `ext/os` to
`ext/signals`.
All occurrences of `tokio::signal` API were replaced with helpers from
`deno_signals` helpers. Additionally clippy lints w... | [
{
"path": "Cargo.lock",
"patch": "@@ -1576,6 +1576,7 @@ dependencies = [\n \"deno_resolver\",\n \"deno_runtime\",\n \"deno_semver\",\n+ \"deno_signals\",\n \"deno_snapshots\",\n \"deno_subprocess_windows\",\n \"deno_task_shell\",\n@@ -2715,6 +2716,7 @@ dependencies = [\n \"deno_os\",\n \"deno_path_u... | 2025-07-29T13:00:46 |
mrdoob/three.js | 0305d6358aa6966458b42255f9726c5f4f36002c | c94a3c64a03739263a41cadaca2fc8d47413b626 | TSL: Fix `label()` usage in `uniform()` (#28548) | [
{
"path": "examples/jsm/nodes/core/UniformNode.js",
"patch": "@@ -11,10 +11,19 @@ class UniformNode extends InputNode {\n \n \t\tthis.isUniformNode = true;\n \n+\t\tthis.name = '';\n \t\tthis.groupNode = objectGroup;\n \n \t}\n \n+\tlabel( name ) {\n+\n+\t\tthis.name = name;\n+\n+\t\treturn this;\n+\n+\t}\n... | 2024-06-03T22:14:41 |
golang/go | 9650c97d0fad719b372159a6ca59e722a6e487ce | f1c4b860d4cf5d3164fbb5a26bafc36f109d9bdc | syscall: remove unreachable code
Reported by go vet:
$ go vet syscall
# syscall_test
# [syscall_test]
syscall/env_unix_test.go:100:4: unreachable code
The TestVetStdlib test in golang.org/x/tools/go/analysis/unitchecker
also ran into this.
Fixes #73998.
Change-Id: I7f2842a42835a38163433a09a3311be9c30f8a14
Cq-I... | [
{
"path": "src/syscall/env_unix_test.go",
"patch": "@@ -96,7 +96,9 @@ func TestClearenv(t *testing.T) {\n \t\t\tdefer func() {\n \t\t\t\tret = recover()\n \t\t\t}()\n-\t\t\tpanic(nil)\n+\t\t\tif true {\n+\t\t\t\tpanic(nil)\n+\t\t\t}\n \t\t\treturn \"should not return\"\n \t\t}\n ",
"additions": 3,
"... | 2025-09-10T14:41:04 |
vuejs/vue | 74e4e11b4478439e581818c483d27038cbbd62fb | 8d2fc8e8ac435c6f37aa91d4e58c78797f99bdd9 | fix v-on handler with whitespaces (fix #3893) | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-const simplePathRE = /^[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['.*?'\\]|\\[\".*?\"\\]|\\[\\d+\\]|\\[[A-Za-z_$][\\w$]*\\])*$/\n+const simplePathRE = /^\\s*[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['.*?'\\]|\\[\".*?... | 2016-10-10T23:30:19 |
denoland/deno | 5a84806e9ece9ddce50b0349213824658f15d0a0 | 85d342c045a9887e74b10d4eb409129333c4f7b7 | fix: don't invoke `Proxy` getter trap on `console.log` (#30230)
Proxy traps should never be invoked on `console.log()`. This PR aligns
Deno's behaviour with other runtimes like Chrome, Firefox and Node. This
fixes the linked issue where it wasn't possible to call `console.log()`
on vite's module graph without an error... | [
{
"path": "ext/console/01_console.js",
"patch": "@@ -634,7 +634,10 @@ function formatRaw(ctx, value, recurseTimes, typedArray, proxyDetails) {\n protoProps = undefined;\n }\n \n- let tag = value[SymbolToStringTag];\n+ let tag;\n+ if (!proxyDetails) {\n+ tag = value[SymbolToStringTag];\n+ }\n ... | 2025-07-29T11:45:12 |
mrdoob/three.js | d674e7c6762ac7236abb5c3fade064bda95fe1b8 | d2340077ac85f700462e0bfc5ee043ed166b0880 | BatchedMesh: Add support for Instanced rendering with sorting, frustum culling (#28462)
* Get the instanced batching working
* re add color support
* fix extension use
* update function name
* small fixes
* fix array initialization
* fix raycast
* missed variable usage
* Add logic for the batch... | [
{
"path": "examples/webgl_mesh_batch.html",
"patch": "@@ -179,8 +179,8 @@\n \t\tfunction initBatchedMesh() {\n \n \t\t\tconst geometryCount = api.count;\n-\t\t\tconst vertexCount = api.count * 512;\n-\t\t\tconst indexCount = api.count * 1024;\n+\t\t\tconst vertexCount = geometries.length * 512;\n+\t\t\tcons... | 2024-06-02T00:39:58 |
golang/go | f1c4b860d4cf5d3164fbb5a26bafc36f109d9bdc | 30686c4cc89e6952ec00846e34016f37d53f31dd | Revert "crypto/internal/fips140: update frozen module version to "v1.0.0""
This reverts CL 701518. This should land just before CL 701520 to avoid
breaking the builders for long.
Fixes #75343
Change-Id: If1ae1fe933fe443ca9776888967d80875b02f41a
Reviewed-on: https://go-review.googlesource.com/c/go/+/702255
Reviewed-b... | [
{
"path": "src/crypto/internal/cryptotest/hash.go",
"patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {... | 2025-09-09T22:05:22 |
vuejs/vue | de199f9bbd7ac8a2ad949b4e8677badb1536a027 | f59e903d0b695eb1427eef4516589a1b56c11116 | allow 2 root nodes with v-if and v-else (#3887)
* allow 2 root nodes with v-if and v-else
* fix compiler-options test with less specific text | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -153,8 +153,9 @@ export function parse (\n checkRootConstraints(root)\n } else if (process.env.NODE_ENV !== 'production' && !stack.length && !warned) {\n // allow 2 root elements with v-if and v-else\n- if ((root.attrsMap.ha... | 2016-10-09T20:33:23 |
mrdoob/three.js | c7e4609224f5a9cdcf196a0d887e27aad17a8ae2 | 4962675fa4616dabc9dbbae852c33bc218f05ea1 | Docs: Fix broken links. (#28536) | [
{
"path": "docs/api/ar/materials/RawShaderMaterial.html",
"patch": "@@ -36,9 +36,9 @@ <h2>أمثلة (Examples)</h2>\n \t\t[example:webgl_buffergeometry_instancing_billboards WebGL / buffergeometry / instancing / billboards]<br />\n \t\t[example:webgl_buffergeometry_instancing WebGL / buffergeometry / instancing... | 2024-06-01T11:11:47 |
denoland/deno | e46ee17edc27f58317748cf17393b9b6c64102fe | 4636737e8808fb514206aae408792a00176288f3 | fix(publish): improve diagnostic when importing from another package using a relative import (#30203) | [
{
"path": "cli/tools/publish/diagnostics.rs",
"patch": "@@ -88,6 +88,11 @@ impl PublishDiagnosticsCollector {\n }\n }\n \n+pub struct RelativePackageImportDiagnosticReferrer {\n+ pub text_info: SourceTextInfo,\n+ pub referrer: deno_graph::Range,\n+}\n+\n pub enum PublishDiagnostic {\n FastCheck(FastCh... | 2025-07-29T11:11:28 |
golang/go | 30686c4cc89e6952ec00846e34016f37d53f31dd | c5737dc21bbac9fbefc35ac9313e66291d66b382 | encoding/json/v2: document context annotation with SemanticError
When the json package calls
Marshaler, MarshalerTo, Unmarshaler, or UnmarshalerFrom methods
and a SemanticError is returned, it will automatically
annotate the error with context.
Document this behavior.
Change-Id: Id8e775a7c1c2a6ffc29ea518913591915e8a... | [
{
"path": "src/encoding/json/v2/arshal_methods.go",
"patch": "@@ -41,6 +41,10 @@ var (\n //\n // It is recommended that implementations return a buffer that is safe\n // for the caller to retain and potentially mutate.\n+//\n+// If the returned error is a [SemanticError], then unpopulated fields\n+// of the... | 2025-09-09T00:33:47 |
mrdoob/three.js | 4962675fa4616dabc9dbbae852c33bc218f05ea1 | 47e863eb4075244fb523823bd12b72b1959edc17 | Examples: Update E2E screenshots. (#28535)
* Examples: Update E2E screenshot.
* Examples: Update E2E screenshot.
* E2E: Update screenshots.
* E2E: Update exception list. | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -55,6 +55,7 @@ const exceptionList = [\n \t'webxr_vr_sandbox',\n \t'webxr_vr_video',\n \t'webxr_xr_ballshooter',\n+\t'webxr_xr_dragging_custom_depth',\n \n \t'webgl_worker_offscreencanvas', // in a worker, not robust\n \n@@ -144,8 +145,8 @@ const exceptionList... | 2024-06-01T11:02:22 |
vuejs/vue | addb461e3c8c9b2041c0f44892cdb58a40b26b64 | adae5caaeea2c8bd18e21a87d83ed7251b862a67 | fix ssr bundle renderer error on commonjs exports (fix #3867) | [
{
"path": "src/server/run-in-vm.js",
"patch": "@@ -30,7 +30,7 @@ export default function runInVm (code, _context = {}) {\n compiledWrapper.call(m.exports, m.exports, require, m)\n const res = Object.prototype.hasOwnProperty.call(m.exports, 'default')\n ? m.exports.default\n- : m\n+ :... | 2016-10-07T21:42:42 |
denoland/deno | a941d3ff2317c3d536adee20c7c873d271723d72 | 5cfe47abc3b0538b4f7f315fcf113232623069a3 | fix(ext/node): validate `fd` is integer on `fsync` and `fdatasync` (#30215) | [
{
"path": "ext/node/polyfills/_fs/_fs_fdatasync.ts",
"patch": "@@ -1,24 +1,28 @@\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 { CallbackWithError } from \"ext:deno_nod... | 2025-07-28T15:01:00 |
golang/go | c5737dc21bbac9fbefc35ac9313e66291d66b382 | b9a4a09b0fbb54b533f847c784c807db95f68d3b | runtime: when using cgo on 386, call C sigaction function
On 386 the C sigaction function assumes that the caller does not set
the SA_RESTORER flag. It does not copy the C sa_restorer field to
the kernel sa_restorer field. The effect is that the kernel sees
the SA_RESTORER flag but a NULL sa_restorer field, and the pr... | [
{
"path": "src/runtime/cgo/gcc_sigaction.c",
"patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build linux && (amd64 || arm64 || loong64 || ppc64le)\n+//go:build linux && (386 || amd64 || arm64 || loong64 || ppc64l... | 2025-09-06T05:24:37 |
vuejs/vue | adae5caaeea2c8bd18e21a87d83ed7251b862a67 | 463c9c9e086f919e61fe7fa74f1a8f0695693de3 | Make forAlias regex lazy (fixes #3846) (#3859)
The current forAliasRE has the first rule greedy (`.*?`), which will
attempt to match whatever it can. This exposes a bug (#3846), where the
regex fails if the template happens to have " in " or " of " in its last
group. For instance, with the template `for key in [{bo... | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -16,7 +16,7 @@ import {\n } from '../helpers'\n \n export const dirRE = /^v-|^@|^:/\n-export const forAliasRE = /(.*)\\s+(?:in|of)\\s+(.*)/\n+export const forAliasRE = /(.*?)\\s+(?:in|of)\\s+(.*)/\n export const forIteratorRE = /\\(([^,]*),([^,]*)(?:,([... | 2016-10-07T21:40:17 |
denoland/deno | 5cfe47abc3b0538b4f7f315fcf113232623069a3 | 4bff6cda525fd29b5306390830e99846a12a7ba5 | fix(ext/node): use Zlib base for brotli handles (#30112)
Fixes #28507
Closes https://github.com/denoland/deno/issues/28836
```
$ ../deno/target/debug/deno run -A npm:pnpm i --save yargs
Packages: +297
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Progress:... | [
{
"path": "Cargo.toml",
"patch": "@@ -147,7 +147,7 @@ base64 = \"0.22.1\"\n base64-simd = \"0.8\"\n bencher = \"0.1\"\n boxed_error = \"0.2.3\"\n-brotli = \"6.0.0\"\n+brotli = { version = \"6.0.0\", features = [\"ffi-api\"] }\n bytemuck = \"1.17.1\"\n bytes = \"1.4.0\"\n cache_control = \"=0.2.0\"",
"ad... | 2025-07-28T04:41:59 |
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.