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 | e46d586eddfdd2186d77a5e996bbd6415cfcf2f5 | 479b51ee1f78a884a45b517c1e993d91c9774e29 | cmd/compile/internal/escape: add debug hash for literal allocation optimizations
Several CLs earlier in this stack added optimizations to reduce
user allocations by recognizing and taking advantage of literals,
including CL 649555, CL 649079, and CL 649035.
This CL adds debug hashing of those changes, which enables u... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -40,6 +40,7 @@ type DebugFlags struct {\n \tInlFuncsWithClosures int `help:\"allow functions with closures to be inlined\" concurrent:\"ok\"`\n \tInlStaticInit int `help:\"allow static initialization of inlined calls\" concurren... | 2025-06-28T20:53:37 |
vuejs/vue | 6e251e0721b4dbb4896999df78450d912dcba30d | 065dc31e8ae66e3f8df3514f02b9f12682f23961 | Change svg parameter to namespace (#3)
* change svg parameter into namespace
* fixed svg to namespace bug
* change svg detecting into namespace detecting in parser
* fixed eslint error | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -29,7 +29,7 @@ function genElement (el) {\n // if the element is potentially a component,\n // wrap its children as a thunk.\n const children = genChildren(el, !isReservedTag(el.tag) /* asThunk */)\n- const code = `__h__('${el.tag}', ${g... | 2016-04-23T17:29:31 |
mrdoob/three.js | 2b3883adf889be5ecc32c585e379f5e895d8ea84 | b65ee86c3ac26e7c48354caf52989e140e41de94 | BatchedMesh: Fixed imports. | [
{
"path": "src/objects/BatchedMesh.js",
"patch": "@@ -1,19 +1,17 @@\n-import {\n-\tBufferAttribute,\n-\tBufferGeometry,\n-\tDataTexture,\n-\tFloatType,\n-\tMathUtils,\n-\tMatrix4,\n-\tMesh,\n-\tRGBAFormat,\n-\tBox3,\n-\tSphere,\n-\tFrustum,\n-\tWebGLCoordinateSystem,\n-\tWebGPUCoordinateSystem,\n-\tVector3,... | 2023-11-17T10:06:18 |
denoland/deno | 784c6a5296b84217123a6c2c50285f57b5bf036d | 527c7401d544f2b9c769e28d866f20f25b696377 | fix(check): do not add `@types/node@*` to lockfile if a `@types/node` req already exists (#29270) | [
{
"path": "Cargo.lock",
"patch": "@@ -2345,9 +2345,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.33.2\"\n+version = \"0.33.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5217eb9aaebd02e92baeea7b474ca3f663b611204ccbfba11f8d296be08abe69\"... | 2025-05-13T22:44:54 |
golang/go | 479b51ee1f78a884a45b517c1e993d91c9774e29 | 8002d283e8dc3d02f087a3885894c2c29fac93fa | cmd/compile/internal/escape: stop disabling literal allocation optimizations when coverage is enabled
CL 649079 and CL 649035 updated escape analysis to rewrite certain
expressions in OMAKE and OCONVIFACE nodes as optimizations to
reduce user allocations.
Part of the change in CL 649079 disabled those optimzations wh... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -534,10 +534,6 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \tif n.Op() != ir.OMAKESLICE && n.Op() != ir.OCONVIFACE {\n \t\treturn\n \t}\n-\tif base.Flag.Cfg.CoverageInfo != nil {\n-\t\t// Avoid altering coverage resul... | 2025-06-27T22:46:27 |
vuejs/vue | 10da27ed74ea8548f7428d6a9de97149296eb6ef | d046467734715c02228fd8fa8a176340e83a0523 | fix runtime mount render function caching | [
{
"path": "src/entries/web-runtime-with-compiler.js",
"patch": "@@ -5,12 +5,18 @@ import Vue from './web-runtime'\n \n const mount = Vue.prototype.$mount\n const idTemplateCache = Object.create(null)\n+const renderFunctionCache = Object.create(null)\n \n function idToTemplate (id) {\n const hit = idTempla... | 2016-04-23T05:01:26 |
mrdoob/three.js | fec1161ac82026d9e2d9cf87bcbe399bfb73958e | f02b9485ed1b7296314f9430daa36e7054e5641e | BatchedMesh: Add support for per-object opaque and transparent sorting (#27168)
* Add support for sorting objects to BatchedMesh
* Add transparency to the demo
* Class rename
* Comments, removed variables, fixed condition
* Add copy and toJSON support for object sorting | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -15,6 +15,63 @@ import {\n \tVector3,\n } from 'three';\n \n+function sortOpaque( a, b ) {\n+\n+\treturn a.z - b.z;\n+\n+}\n+\n+function sortTransparent( a, b ) {\n+\n+\treturn b.z - a.z;\n+\n+}\n+\n+class MultiDrawRenderList {\n+\n+\tconstructor... | 2023-11-17T09:24:12 |
denoland/deno | 527c7401d544f2b9c769e28d866f20f25b696377 | 658489e92c3058327694fa848115e33312efbfd7 | fix(ext/node): use primordials in `ext/node/polyfills/internal/normalize_encoding.mjs` (#29283)
Towards #24236. Replaces the `.toLowerCase` method with its equivalent
primordial method. | [
{
"path": "ext/node/polyfills/internal/normalize_encoding.mjs",
"patch": "@@ -1,7 +1,7 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n+import { primordials } from \"ext:core/mod... | 2025-05-13T22:03:04 |
golang/go | 8002d283e8dc3d02f087a3885894c2c29fac93fa | fdd7713fe5a7bc054fe08f79a1877f90c7188e53 | crypto/tls: update bogo version
This commit updates the pinned revision of BoringSSL that's used for the
BoGo integration test.
Doing this requires a few categories of config changes:
* ignoring a few new tests for features crypto/tls doesn't implement
* ignoring a few new tests that require further
investigation/... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -74,6 +74,9 @@\n \"BadRSAClientKeyExchange-5\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comment\",\n \"SupportTicketsWithSessionID\": \"We don't support session ID resumptio... | 2025-06-23T19:48:57 |
mrdoob/three.js | b67767cade329dafbbaf2f8160d85ca073599c0e | aa2cfc814723b1fdf02cc04354b8a3382808b5fb | WebGLAttributes: Strict buffer size check when updating data. (#27188)
* Update WebGLAttributes.js
Strict check for buffer size while upload..
* fix: lint, pads
* Update WebGLAttributes.js
Implement the check even more strict. Clarify error message.
* Update WebGLAttributes.js
* Update WebGLAttribute... | [
{
"path": "src/renderers/webgl/WebGLAttributes.js",
"patch": "@@ -8,6 +8,7 @@ function WebGLAttributes( gl, capabilities ) {\n \n \t\tconst array = attribute.array;\n \t\tconst usage = attribute.usage;\n+\t\tconst size = array.byteLength;\n \n \t\tconst buffer = gl.createBuffer();\n \n@@ -76,7 +77,8 @@ func... | 2023-11-17T08:50:24 |
vuejs/vue | 76b821de0d80e755001d326b1840d417e02f4e42 | 6a000c3b5adf5af07327fa53c4b04bb925a0ac2b | fix runtime-only mount | [
{
"path": "src/entries/web-runtime-with-compiler.js",
"patch": "@@ -12,7 +12,7 @@ function idToTemplate (id) {\n }\n \n Vue.prototype.$mount = function (el) {\n- el = this.$el = el && query(el)\n+ el = el && query(el)\n const options = this.$options\n // resolve template/el and convert to render funct... | 2016-04-23T04:13:22 |
denoland/deno | 658489e92c3058327694fa848115e33312efbfd7 | b384bd343371baf2088a9542c03e027d0023d072 | fix: use v8 instead of swc for explicit resource management (#29282) | [
{
"path": "Cargo.lock",
"patch": "@@ -473,22 +473,13 @@ version = \"0.22.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\"\n \n-[[package]]\n-name = \"base64-simd\"\n-version = \"0.7.0\"\n-source = \"reg... | 2025-05-13T19:34:12 |
golang/go | fdd7713fe5a7bc054fe08f79a1877f90c7188e53 | 740857f529ce4074c7f9aa1d6f38db8c4a00246c | internal/goexperiment: fix godoc formatting
In internal/goexperiment fix godoc formatting (list indent, add godoc
links).
In internal/buildcfg fix godoc for Experiment.baseline.
Change-Id: I30eaba60cbf3978a375b50dda19dbb2830903bdb
Reviewed-on: https://go-review.googlesource.com/c/go/+/595915
Reviewed-by: Austin Clem... | [
{
"path": "src/internal/buildcfg/exp.go",
"patch": "@@ -25,7 +25,7 @@ type ExperimentFlags struct {\n // (This is not necessarily the set of experiments the compiler itself\n // was built with.)\n //\n-// experimentBaseline specifies the experiment flags that are enabled by\n+// Experiment.baseline specifie... | 2024-06-30T22:49:11 |
mrdoob/three.js | b7645dd664466ad3982cfe9e79699f627e51b6d1 | a091faa512a27cee8ce9f4e7ed39297e895b1066 | ColorAdjustmentNode: Fix hue code (#27197)
* ColorAdjustmentNode: Fix hue code
* Improve irradiance performance slightly | [
{
"path": "examples/jsm/nodes/display/ColorAdjustmentNode.js",
"patch": "@@ -2,7 +2,7 @@ import TempNode from '../core/TempNode.js';\n import { dot, mix } from '../math/MathNode.js';\n import { add } from '../math/OperatorNode.js';\n import { addNodeClass } from '../core/Node.js';\n-import { addNodeElement,... | 2023-11-17T05:02:10 |
vuejs/vue | e89d2cba53c90b72ca3d90036f7bfdc065822b73 | caf2828c62b6d59043a9e8bdeeb805dda5668534 | fix template slot | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -17,7 +17,7 @@ function genElement (el) {\n return genFor(el)\n } else if (el.if) {\n return genIf(el)\n- } else if (el.tag === 'template' && !el.attrsMap.slot) {\n+ } else if (el.tag === 'template' && !el.slotTarget) {\n return genChil... | 2016-04-22T19:27:02 |
denoland/deno | b384bd343371baf2088a9542c03e027d0023d072 | 5ea90de1999bf048451c56c2abaf78accac6f5cc | fix(upgrade): skip version comparison when upgrading (#29112) | [
{
"path": "cli/tools/upgrade.rs",
"patch": "@@ -754,46 +754,22 @@ async fn find_latest_version_to_upgrade(\n }\n };\n \n- let (maybe_newer_latest_version, current_version) = match release_channel {\n- ReleaseChannel::Canary => {\n- let current_version = version::DENO_VERSION_INFO.git_hash;\n-... | 2025-05-13T18:58:57 |
mrdoob/three.js | a091faa512a27cee8ce9f4e7ed39297e895b1066 | 1d3baf45fdb0d3fc7446cf32c2a999c67a37a9c4 | WebGPURenderer: Texture2D Array (#27190)
* WebGPURenderer: Texture2D Array
* WebGLNodeBuilder: Fix function names
* WebGLBackend: Add Texture2D Array
* Rename: getSamplerLevelNode() -> getTextureLevelNode()
* Simplifies the name of IBL context functions
* cleanup | [
{
"path": "examples/files.json",
"patch": "@@ -351,6 +351,7 @@\n \t\t\"webgpu_skinning_instancing\",\n \t\t\"webgpu_skinning_points\",\n \t\t\"webgpu_sprites\",\n+\t\t\"webgpu_textures_2d-array\",\n \t\t\"webgpu_tsl_editor\",\n \t\t\"webgpu_tsl_transpiler\",\n \t\t\"webgpu_video_panorama\"",
"additions"... | 2023-11-16T18:14:46 |
vuejs/vue | 8c64a0eeece77e94dd12ede0430fd56b7791caf4 | b882844f6ed8fb9e7d0ba493fcdd10a95d17b497 | fix static detection for built-ins | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -28,9 +28,10 @@ function genElement (el) {\n } else {\n // if the element is potentially a component,\n // wrap its children as a thunk.\n- const children = genChildren(el, !isReservedTag(el.tag))\n+ const children = genChildren(el, !is... | 2016-04-22T18:06:10 |
mrdoob/three.js | 273eb1a4e0b506998438698dbb4c38ff6cd39b3f | 1bd7fcf89636019604f4b83806d3c21edbd558de | Editor: Fix KTX2 support with glTF asset. (#27191) | [
{
"path": "editor/js/Editor.js",
"patch": "@@ -44,6 +44,7 @@ function Editor() {\n \t\tspaceChanged: new Signal(),\n \t\trendererCreated: new Signal(),\n \t\trendererUpdated: new Signal(),\n+\t\trendererDetectKTX2Support: new Signal(),\n \n \t\tsceneBackgroundChanged: new Signal(),\n \t\tsceneEnvironmentCha... | 2023-11-15T14:23:38 |
denoland/deno | 5ea90de1999bf048451c56c2abaf78accac6f5cc | 9b0707baa21479fb7350e95d5f704b504b0fc847 | feat(jupyter): allow to install and maintain multiple kernels (#29249)
This commit changes the `deno jupyter` subcommand:
- `deno jupyter` now accepts additional `--name` argument to
allow installing and maintaing multiple kernelsspec - useful when
one wants to install a stable kernel and a debug/canary kernel
- `de... | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -278,8 +278,11 @@ pub struct JSONReferenceFlags {\n #[derive(Clone, Debug, Eq, PartialEq)]\n pub struct JupyterFlags {\n pub install: bool,\n+ pub name: Option<String>,\n+ pub display: Option<String>,\n pub kernel: bool,\n pub conn_file: Option<String>,\n+... | 2025-05-13T16:56:16 |
golang/go | 426cf36b4d0c672dc88fc5cef9b0d5db0d2f4fe5 | ead249a2e2989c6775235058d38f0e33afdf752a | [dev.simd] runtime: save scalar registers off stack in amd64 async preemption
Asynchronous preemption must save all registers that could be in use
by Go code. Currently, it saves all of these to the goroutine stack.
As a result, the stack frame requirements of asynchronous preemption
can be rather high. On amd64, this... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -555,6 +555,8 @@ type G = g\n \n type Sudog = sudog\n \n+type XRegPerG = xRegPerG\n+\n func Getg() *G {\n \treturn getg()\n }",
"additions": 2,
"deletions": 0,
"language": "Go"
},
{
"path": "src/runtime/lockrank.go",
"patch": "@@ -... | 2025-04-30T02:55:40 |
mrdoob/three.js | 99fd53fbadc511febcc11eab6273f47bf02a329e | 22d20b6a367dc77ef08bd9c24df773256ed642e8 | ObjectLoader: Add support for BatchedMesh (#27179)
* Add ObjectLoader support
* Add sortObjects and perObjectFrustumCulled fields
* Fix ObjectLoader, BatchedMesh initialization | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -88,8 +88,8 @@ class BatchedMesh extends Mesh {\n \n \t\tthis._geometryInitialized = false;\n \t\tthis._geometryCount = 0;\n-\t\tthis._multiDrawCounts = null;\n-\t\tthis._multiDrawStarts = null;\n+\t\tthis._multiDrawCounts = new Int32Array( maxGe... | 2023-11-13T10:49:40 |
denoland/deno | 9b0707baa21479fb7350e95d5f704b504b0fc847 | e6c2ad1431a2463bafc44fc7f0295202cad7f9f8 | fix(check): don't assert unique normalized specifiers (#29274) | [
{
"path": "cli/tsc/97_ts_host.js",
"patch": "@@ -23,15 +23,6 @@ function spanned(name, f) {\n }\n }\n \n-// The map from the normalized specifier to the original.\n-// TypeScript normalizes the specifier in its internal processing,\n-// but the original specifier is needed when looking up the source from ... | 2025-05-13T16:16:38 |
vuejs/vue | b38b4b290719087ade5403bb9f38b84e278d81b5 | f9c3d70526cb22e0fdcab0dd4fc15d77bdc5905f | fix watch in firefox again + e2e test for select2 | [
{
"path": "src/runtime/instance/state.js",
"patch": "@@ -10,6 +10,7 @@ import {\n import {\n warn,\n hasOwn,\n+ isArray,\n isPlainObject,\n bind,\n validateProp\n@@ -120,19 +121,29 @@ function initWatch (vm) {\n if (watch) {\n for (let key in watch) {\n let handler = watch[key]\n- ... | 2016-04-21T21:54:34 |
golang/go | 740857f529ce4074c7f9aa1d6f38db8c4a00246c | 9ae38be3025fa71ec2967111e0a184f886876cb1 | runtime: stash allpSnapshot on the M
findRunnable takes a snapshot of allp prior to dropping the P because
afterwards procresize may mutate allp without synchronization.
procresize is careful to never mutate the contents up to cap(allp), so
findRunnable can still safely access the Ps in the slice.
Unfortunately, grow... | [
{
"path": "src/runtime/proc.go",
"patch": "@@ -1059,6 +1059,28 @@ func (mp *m) becomeSpinning() {\n \tsched.needspinning.Store(0)\n }\n \n+// Take a snapshot of allp, for use after dropping the P.\n+//\n+// Must be called with a P, but the returned slice may be used after dropping\n+// the P. The M holds a ... | 2025-06-27T21:21:20 |
mrdoob/three.js | d9817318e7a2cea5ed1fb62416d9f8a3863f2013 | eb052843e9d4d00bda532512b0360002b7f176d3 | BatchedMesh: Add support for raycasting (#27146)
* BatchedMeh: add support for frustum culling batched elements
* comments
* Update frustum culling support
* BatchedMesh: add "perObjectFrustumCulled"
* Reduce the number of world matrix transform applications for frustum culling
* Update copy function
... | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -29,6 +29,8 @@ const _frustum = new Frustum();\n const _box = new Box3();\n const _sphere = new Sphere();\n const _vector = new Vector3();\n+const _mesh = new Mesh();\n+const _batchIntersects = [];\n \n // @TODO: SkinnedMesh support?\n // @TODO: ... | 2023-11-10T09:59:56 |
denoland/deno | e6c2ad1431a2463bafc44fc7f0295202cad7f9f8 | 3b6c70e5b25d1dc48ee849b7d837f22ebd6afd8e | fix(ext/node): TLS server unref (#29279)
Fixes https://github.com/denoland/deno/issues/29230 | [
{
"path": "ext/node/polyfills/_tls_wrap.ts",
"patch": "@@ -281,13 +281,28 @@ export function Server(options: any, listener: any) {\n export class ServerImpl extends EventEmitter {\n listener?: Deno.TlsListener;\n #closed = false;\n+ #unrefed = false;\n constructor(public options: any, listener: any) ... | 2025-05-13T16:08:41 |
vuejs/vue | f8be60ce6969f89987470e56b1afdca40440edd7 | c403f5635b5a489b0884232b53b04af46dfa6d2d | fix transition on appear | [
{
"path": "src/runtime/dom/modules/transition.js",
"patch": "@@ -40,7 +40,7 @@ export function enter (vnode) {\n if (!data) {\n return\n }\n- if (!data.context._mounted && !data.appear) {\n+ if (!data.context.$root._mounted && !data.appear) {\n return\n }\n ",
"additions": 1,
"deleti... | 2016-04-21T21:30:04 |
mrdoob/three.js | eb052843e9d4d00bda532512b0360002b7f176d3 | 87937652327bd9c74731dd8122a6a4e30c669446 | Make puppeteer error handling more robust. | [
{
"path": "test/e2e/puppeteer.js",
"patch": "@@ -485,7 +485,7 @@ async function makeAttempt( pages, failedScreenshots, cleanPage, isMakeScreensho\n \n \t\t} catch ( e ) {\n \n-\t\t\tif ( ! e.includes( 'Render timeout exceeded' ) ) {\n+\t\t\tif ( e.includes && e.includes( 'Render timeout exceeded' ) === fals... | 2023-11-10T07:46:45 |
golang/go | 9ae38be3025fa71ec2967111e0a184f886876cb1 | 4731832342f6430d6eb4cb13a00b97c3db5da993 | sync: disassociate WaitGroups from bubbles on Wait
Fix a race condition in disassociating a WaitGroup in a synctest
bubble from its bubble. We previously disassociated the WaitGroup
when count becomes 0, but this causes problems when an Add call
setting count to 0 races with one incrementing the count.
Instead, disas... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -654,6 +654,17 @@ func TestWaitGroupInBubble(t *testing.T) {\n \t})\n }\n \n+// https://go.dev/issue/74386\n+func TestWaitGroupRacingAdds(t *testing.T) {\n+\tsynctest.Run(func() {\n+\t\tvar wg sync.WaitGroup\n+\t\tfor range 100 {\n+\t\t\twg.Go... | 2025-06-27T15:46:28 |
denoland/deno | 9b2b1c41f53faeff8c8707bec3ed23d02661601c | 6002d2624e567d92c5d659be77dfa14fc4db28fa | fix(cli): configure v8 isolate with cgroups-constrained memory limit (#29078)
This change configures V8 isolates to respect memory limits imposed by
cgroups on Linux.
It adds support for detecting both cgroups v1 and v2 memory limits,
enabling Deno to properly adapt to containerized environments with
memory constrain... | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -1213,6 +1213,7 @@ static ENV_VARIABLES_HELP: &str = cstr!(\n <g>DENO_TLS_CA_STORE</> Comma-separated list of order dependent certificate stores.\n Possible values: \"system\", \"mozilla\" <p(245)>(defaults to \"mozilla\")</>\n <g... | 2025-05-13T15:07:59 |
mrdoob/three.js | fe25aef42e3fe8c6857ccf894b8b2570bca1f613 | a50eeb4f2462b3770e29321872871bff48c61391 | Run e2e CI only on macos. (#27165)
* Try testing macos-latest only.
* Simplify puppeteer.js
* Update package.json
* Update package-lock.json
* Ugh...
* Alright...
* That should do it...
* Clean up.
* Avoid duplicated runs (I think).
* Added webgl_loader_texture_ktx to exception list. | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -6,11 +6,6 @@ on:\n - 'build/**'\n - 'docs/**'\n - 'files/**'\n- push:\n- paths-ignore:\n- - 'build/**'\n- - 'docs/**'\n- - 'files/**'\n \n permissions:\n contents: read\n@@ -74,7 +69,7 @@ jobs:\n strategy:\n ... | 2023-11-10T06:45:43 |
vuejs/vue | 64b3b318a0557d65c3d8286e3572c58a33c1f447 | 316ba128879956eed1c8dc273c1957829e232d4d | fix html attribute escape in Safari | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -8,11 +8,6 @@\n import { decodeHTML } from 'entities'\n import { makeMap } from '../../shared/util'\n \n-// PhantomJS encodes attribute values when retriving outerHTML.\n-const inPhantomJS =\n- typeof navigator !== 'undefined' &&\n- navigator.us... | 2016-04-21T19:31:15 |
denoland/deno | 6002d2624e567d92c5d659be77dfa14fc4db28fa | 1022decc799ee2f811d42f749c1af89ccb0d75e8 | fix(ext/node): allow `rejectUnauthorized: false` in `node:tls` (#29245)
Fix #29228
Allow disable TLS cert verification using `options.rejectUnauthorized`.
If passed. `--unsafely-ignore-certificate-errors` overrides
`rejectUnauthorized: false` | [
{
"path": "ext/net/02_tls.js",
"patch": "@@ -181,12 +181,29 @@ async function startTls(\n caCerts = [],\n alpnProtocols = undefined,\n } = { __proto__: null },\n+) {\n+ return startTlsInternal(conn, {\n+ hostname,\n+ caCerts,\n+ alpnProtocols,\n+ });\n+}\n+\n+function startTlsInternal(\... | 2025-05-13T12:13:58 |
mrdoob/three.js | 147fbd5570b7948cdb10a8bec4a7a77448de58fd | 20209b64572cd780f2a7bb082ae9e7fccadde43f | bugfix: ETC1 is not supported with compressedTexSubImage2D() according to WEBGL_compressed_texture_etc1 extension (#27162) | [
{
"path": "src/renderers/webgl/WebGLTextures.js",
"patch": "@@ -1,4 +1,4 @@\n-import { LinearFilter, LinearMipmapLinearFilter, LinearMipmapNearestFilter, NearestFilter, NearestMipmapLinearFilter, NearestMipmapNearestFilter, RGBAFormat, DepthFormat, DepthStencilFormat, UnsignedShortType, UnsignedIntType, Uns... | 2023-11-10T02:59:11 |
golang/go | 03ad694dcbe8d981d644c9878326bd086d056af0 | 9d1cd0b8816654ac36f2122b52dd8335aae86b26 | runtime: update skips for TestGdbBacktrace
We encountered a new type of "no such process" error on loong64, it's like this
"Couldn't get NT_PRSTATUS registers: No such process.", I checked the source code
of gdb, NT_PRSTATUS is not fixed, it may be another name, so I use regular
expression here to match possible cases... | [
{
"path": "src/runtime/runtime-gdb_test.go",
"patch": "@@ -528,11 +528,12 @@ func TestGdbBacktrace(t *testing.T) {\n \tgot, err := cmd.CombinedOutput()\n \tt.Logf(\"gdb output:\\n%s\", got)\n \tif err != nil {\n+\t\tnoProcessRE := regexp.MustCompile(`Couldn't get [a-zA-Z_ -]* ?registers: No such process\\.`... | 2025-06-13T03:48:44 |
vuejs/vue | 316ba128879956eed1c8dc273c1957829e232d4d | f25ef3f223f478627ab42333362e13d92de3c11e | fix watch option in firefox | [
{
"path": "src/runtime/instance/state.js",
"patch": "@@ -121,7 +121,7 @@ function initWatch (vm) {\n for (let key in watch) {\n let handler = watch[key]\n let options\n- if (typeof handler === 'object') {\n+ if (isPlainObject(handler)) {\n options = handler\n handle... | 2016-04-21T19:25:34 |
denoland/deno | 1022decc799ee2f811d42f749c1af89ccb0d75e8 | acd0c94b4670a1d79295c59d71d8e470b60c4288 | fix(ext/node): align input validation of Buffer.compare (#29275) | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -382,25 +382,14 @@ const BufferIsBuffer = Buffer.isBuffer = function isBuffer(b) {\n };\n \n const BufferCompare = Buffer.compare = function compare(a, b) {\n- if (isUint8Array(a)) {\n- a = BufferFrom(\n- a,\n- TypedArrayPrototyp... | 2025-05-13T08:14:19 |
golang/go | acb914f2c2a3ec3dd227812ba6b119480d6400cd | b51f1cdb8752c2fdd6a2bf06224aab0b5c07caac | cmd/doc: fix -http on Windows
On Windows, GOMODCACHE almost never starts with a slash, and
"go doc -http" constructs a GOPROXY URL by doing "file://" + GOMODCACHE,
resulting in an invalid file URI.
For example, if GOMODCACHE is "C:\foo", then the file URI should be
"file:///C:/foo", but it becomes "file://C:/foo" ins... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -405,6 +405,8 @@\n //\n //\tgo doc\n //\t\tShow documentation for current package.\n+//\tgo doc -http\n+//\t\tServe HTML documentation over HTTP for the current package.\n //\tgo doc Foo\n //\t\tShow documentation for Foo in the current package.\n //\t\t(Foo s... | 2025-06-27T10:45:22 |
vuejs/vue | 45b4b3164ae960d4b4fb7017946e7704904b731f | 9a347e02b4b1fd8ddc51db6c2ba08a1831f4dfd0 | fix reorder benchmark | [
{
"path": "benchmarks/reorder-list/index.html",
"patch": "@@ -74,7 +74,7 @@ <h1>{{ total }} Components</h1>\n this.selected = item.id\n }),\n remove: monitor('remove', function (item) {\n- this.items.$remove(item)\n+ this.items.splice(this.items.indexOf(item), 1)\n })\n },\n ... | 2016-04-21T16:40:42 |
mrdoob/three.js | 164b23f2e7887a5315416c2b3ab836a5a7e8a6dc | 2564e4f326ca354b5f6f0aa232af575f5e516f98 | Fixed anisotropy zero strength (#27164)
* fix ssl error
* fixed divide by zero
* updated screenshot
* fix screenshot | [
{
"path": "package.json",
"patch": "@@ -44,7 +44,7 @@\n \"test\": \"npm run lint && npm run test-unit\",\n \"build\": \"rollup -c utils/build/rollup.config.js\",\n \"build-module\": \"rollup -c utils/build/rollup.config.js --configOnlyModule\",\n- \"dev\": \"concurrently --names \\\"ROLLUP,HT... | 2023-11-09T20:22:54 |
denoland/deno | acd0c94b4670a1d79295c59d71d8e470b60c4288 | eb1303b8f24b1857a709cd8ea073dc1093f3c721 | fix(ext/node): add AES CTR to supported ciphers list (#29273)
Fix https://github.com/denoland/deno/issues/29047 | [
{
"path": "ext/node/polyfills/internal/crypto/util.ts",
"patch": "@@ -77,6 +77,9 @@ const supportedCiphers = [\n \"aes256\",\n \"aes-128-gcm\",\n \"aes-256-gcm\",\n+ \"aes-128-ctr\",\n+ \"aes-192-ctr\",\n+ \"aes-256-ctr\",\n ];\n \n export function getCiphers(): string[] {",
"additions": 3,
... | 2025-05-13T04:15:36 |
golang/go | b51f1cdb8752c2fdd6a2bf06224aab0b5c07caac | f1e6ae2f6f5424f9f5c6dc915866d4f457c1483e | runtime: remove arbitrary 5-second timeout in TestNeedmDeadlock
The NeedmDeadlock test program currently has a 5-second timeout,
which is sort of arbitrary. It is long enough in regular mode
(which usually takes 0.0X seconds), but not quite so for
configurations like ASAN. Instead of using an arbitrary timeout,
just u... | [
{
"path": "src/runtime/testdata/testprogcgo/needmdeadlock.go",
"patch": "@@ -70,8 +70,6 @@ import \"C\"\n \n import (\n \t\"fmt\"\n-\t\"os\"\n-\t\"time\"\n )\n \n func init() {\n@@ -84,12 +82,8 @@ func GoNeedM() {\n \n func NeedmDeadlock() {\n \t// The failure symptom is that the program hangs because of a\... | 2025-06-27T23:45:22 |
vuejs/vue | 45d94606ef02b2eb5af05137a44fe79a5fda881f | 20f798fa32ac4481a82bcb024a0ee7dd64a264fd | fix component root node class update | [
{
"path": "src/runtime/instance/lifecycle.js",
"patch": "@@ -59,6 +59,9 @@ export function lifecycleMixin (Vue) {\n if (this._mounted) {\n callHook(this, 'beforeUpdate')\n }\n+ const parentNode = this.$options._parentVnode\n+ // set vnode parent before patch\n+ vnode.parent = parentNo... | 2016-04-21T10:15:37 |
mrdoob/three.js | b5d11679f480e4b51d9d43e90100a50b94e9e82b | 6f630a84161a09fe7d9ae13893a06e47157b4777 | SVGLoader: Add vertices along counterclockwise if bevel. (#27121)
* fix: add vertices along counterclockwise if bevel
* fix: correcting the index of temp vector inserted into vertices when lineCap is square | [
{
"path": "examples/jsm/loaders/SVGLoader.js",
"patch": "@@ -2968,8 +2968,8 @@ class SVGLoader extends Loader {\n \t\t\t\t\t// Bevel join triangle\n \n \t\t\t\t\taddVertex( currentPointR, u, 1 );\n-\t\t\t\t\taddVertex( nextPointR, u, 0 );\n-\t\t\t\t\taddVertex( innerPoint, u, 0.5 );\n+\t\t\t\t\taddVertex( i... | 2023-11-09T10:27:54 |
denoland/deno | eb1303b8f24b1857a709cd8ea073dc1093f3c721 | 363223aa6afbd33545e597b35af05db79a228027 | fix(ext/node): use primordials in `ext/node/polyfills/internal/querystring.ts` (#29264) | [
{
"path": "ext/node/polyfills/internal/querystring.ts",
"patch": "@@ -1,13 +1,22 @@\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 { ERR_INVALID_URI } from \"ext:deno_no... | 2025-05-13T02:06:25 |
golang/go | f1e6ae2f6f5424f9f5c6dc915866d4f457c1483e | e81c624656e415626c7ac3a97768f5c2717979a4 | reflect: fix TypeAssert on nil interface values
In the Go language a type assertion of a nil interface value
will always report false:
var err error
v, ok := err.(error) // always reports (nil, false)
Consequently, assertion on a reflect.Value.Interface()
will also report false:
var err error
rv := ValueOf(&err... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -8719,6 +8719,11 @@ func TestTypeAssert(t *testing.T) {\n \ttestTypeAssert(t, any(int(1)), int(1), true)\n \ttestTypeAssert(t, any(int(1)), byte(0), false)\n \ttestTypeAssert(t, fmt.Stringer(vv), vv, true)\n+\n+\ttestTypeAssert(t, any(nil), any(nil), false)\... | 2025-06-27T17:59:44 |
mrdoob/three.js | 8f7ae2c8ab9716addde83e4553a834355b06f97b | ec09a960a16799ee3933b9fb804187e5aef026ca | fix anisotropy rotation (#27153)
* fixed anisoRotation
* update screenshot | [
{
"path": "src/renderers/shaders/ShaderChunk/lights_physical_fragment.glsl.js",
"patch": "@@ -139,8 +139,8 @@ material.roughness = min( material.roughness, 1.0 );\n \t// Roughness along the anisotropy bitangent is the material roughness, while the tangent roughness increases with anisotropy.\n \tmaterial.al... | 2023-11-09T05:41:33 |
vuejs/vue | e9425525ee5cd7f12d218cdf26f0671c82756ece | 484978499f5b6bf82d0e4d40adf59c607013fbd5 | fix v-show without transition | [
{
"path": "src/runtime/directives/show.js",
"patch": "@@ -4,14 +4,14 @@ import { enter, leave } from '../vdom-web/modules/transition'\n export default {\n bind (el, value, _, vnode) {\n const transition = getTransition(vnode)\n- if (value && !isIE9 && transition.appear) {\n+ if (value && transit... | 2016-04-21T08:51:08 |
denoland/deno | 363223aa6afbd33545e597b35af05db79a228027 | 865d046ba3b43005d22680060c925d8211b389b8 | fix(ext/node): export CallTracker as named export (#29271) | [
{
"path": "ext/node/polyfills/assert.ts",
"patch": "@@ -938,6 +938,7 @@ export default Object.assign(assert, {\n \n export {\n AssertionError,\n+ CallTracker_ as CallTracker,\n deepEqual,\n deepStrictEqual,\n doesNotMatch,",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{... | 2025-05-13T01:15:48 |
golang/go | e81c624656e415626c7ac3a97768f5c2717979a4 | 2a22aefa1f7befb0ac7a95c918b75b05919c1907 | os: use minimal file permissions when opening parent directory in RemoveAll
On Windows, the process might not have read permission on the parent
directory, but still can delete files in it. This change allows
RemoveAll to open the parent directory with minimal permissions, which
is sufficient for deleting child files.... | [
{
"path": "src/os/removeall_at.go",
"patch": "@@ -8,6 +8,7 @@ package os\n \n import (\n \t\"io\"\n+\t\"runtime\"\n \t\"syscall\"\n )\n \n@@ -34,7 +35,15 @@ func removeAll(path string) error {\n \t// its parent directory\n \tparentDir, base := splitPath(path)\n \n-\tparent, err := Open(parentDir)\n+\tflag :... | 2025-06-27T09:16:54 |
mrdoob/three.js | bf7d99e30e2393e5f7bcdc9b6781406ffca58374 | 8e66fe5de4bcd87a7c2538eea1e7229d186b2b58 | fix typo (#27152) | [
{
"path": "examples/jsm/exporters/GLTFExporter.js",
"patch": "@@ -2796,7 +2796,7 @@ class GLTFMaterialsSpecularExtension {\n \n \t\tif ( ! material.isMeshPhysicalMaterial || ( material.specularIntensity === 1.0 &&\n \t\t material.specularColor.equals( DEFAULT_SPECULAR_COLOR ) &&\n-\t\t ! material.... | 2023-11-08T23:13:23 |
vuejs/vue | aaa334d08f830c6411eb8d5c82b1df344f04dba7 | 050395408a43c72bf8f6f3e2c12426c1c7c59097 | fix transition remove | [
{
"path": "src/runtime/directives/show.js",
"patch": "@@ -1,5 +1,5 @@\n import { isIE9 } from '../util/index'\n-import { beforeEnter, onLeave } from '../vdom-web/modules/transition'\n+import { enter, leave } from '../vdom-web/modules/transition'\n \n export default {\n bind (el, value) {\n@@ -12,10 +12,10... | 2016-04-21T06:45:14 |
denoland/deno | 865d046ba3b43005d22680060c925d8211b389b8 | 2f876b52d15efcb900776a0b56e7f8c751ba4199 | fix(ext/node): use primordials in `ext/node/polyfills/internal/timers.mjs` (#29269)
Towards #24236. Replaces JS intrinsics with equivalent primordial
versions. | [
{
"path": "ext/node/polyfills/internal/timers.mjs",
"patch": "@@ -1,14 +1,16 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore... | 2025-05-13T00:09:51 |
golang/go | 2a22aefa1f7befb0ac7a95c918b75b05919c1907 | 742fda95246958076e439bbcf71fedda43a894bb | encoding/json: add security section to doc
Add a section to the package doc which details the security
considerations of using encoding/json, in particular with respect to
parser misalignment issues.
Additionally, clarify previously ambiguous statement in the Unmarshal
doc about how case is used when matching keys in... | [
{
"path": "src/encoding/json/decode.go",
"patch": "@@ -43,11 +43,14 @@ import (\n // and the input is a JSON quoted string, Unmarshal calls\n // [encoding.TextUnmarshaler.UnmarshalText] with the unquoted form of the string.\n //\n-// To unmarshal JSON into a struct, Unmarshal matches incoming object\n-// ke... | 2025-06-26T19:19:23 |
vuejs/vue | 48a5b429c031f7b8bc4b886f63263ca0d29e7ea7 | 3f2fb1fb03d6689d78340310415b420462f48ba0 | fix create hooks duplicate invocation | [
{
"path": "src/runtime/vdom/component.js",
"patch": "@@ -54,7 +54,10 @@ export default function Component (Ctor, data, parent, children) {\n }\n \n // return a placeholder vnode\n- const vnode = VNode('vue-component-' + Ctor.cid, data)\n+ const id = `vue-component-${Ctor.cid}${\n+ Ctor.options.name... | 2016-04-21T02:33:07 |
denoland/deno | 1b3630438132690e9b6159d84a6bce3c40a152fa | 5ddbb36d3fdb45fd7c7b0fc92948db23dc4bff35 | fix(check): write lockfile after type checking (#29265)
Type checking might discover `npm:@types/node`, so write after type
checking. | [
{
"path": "cli/module_loader.rs",
"patch": "@@ -220,11 +220,6 @@ impl ModuleLoadPreparer {\n \n self.graph_roots_valid(graph, roots, allow_unknown_media_types)?;\n \n- // write the lockfile if there is one\n- if let Some(lockfile) = &self.lockfile {\n- lockfile.write_if_changed()?;\n- }\n-... | 2025-05-12T19:31:38 |
mrdoob/three.js | 8e66fe5de4bcd87a7c2538eea1e7229d186b2b58 | c7675922c7283d56180c9960bcc18eb9ffecfa04 | WebGPURenderer: Fix lights hash (#27150) | [
{
"path": "examples/jsm/nodes/Nodes.js",
"patch": "@@ -136,7 +136,7 @@ export { default as DirectionalLightNode } from './lighting/DirectionalLightNode\n export { default as SpotLightNode } from './lighting/SpotLightNode.js';\n export { default as IESSpotLightNode } from './lighting/IESSpotLightNode.js';\n ... | 2023-11-08T18:39:00 |
golang/go | fdc076ce762326fc19ef1b6de01da6ce50f55926 | d9d2cadd635f3b8fdfba0ab6369604f5e78643b0 | net/http: fix RoundTrip context cancellation for js/wasm
The existing js/wasm implementation of RoundTrip calls abort() on the
fetch() call when the context is canceled but does not wait for for the
resulting promise to be rejected. The result is the failure callback for the
promise will be called at some later point ... | [
{
"path": "src/net/http/roundtrip_js.go",
"patch": "@@ -236,6 +236,14 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\tif !ac.IsUndefined() {\n \t\t\t// Abort the Fetch request.\n \t\t\tac.Call(\"abort\")\n+\n+\t\t\t// Wait for fetch promise to be rejected prior to exiting. See\n+\t... | 2025-06-10T15:09:35 |
vuejs/vue | 3f2fb1fb03d6689d78340310415b420462f48ba0 | da42ca820387dd73e85d28e6eb9d59a4f629aea4 | fix addStyleBinding helper | [
{
"path": "src/compiler/helpers.js",
"patch": "@@ -15,7 +15,7 @@ export function addDirective (el, name, value, arg, modifiers) {\n export function addStyleBinding (el, name, value) {\n const code = `\"${name}\":${value}`\n el.styleBinding = el.styleBinding\n- ? el.styleBinding.replace(/}\\s?$/, `${c... | 2016-04-21T02:32:57 |
denoland/deno | 0598b62c4f4abe3ddd604f8fed0bde913e7d6660 | 9cb72064d307f36a7c9433d861ed1e5d6cb173df | chore: update "Build from source" link in README (#29258)
Fixes https://github.com/denoland/deno/issues/29253 | [
{
"path": "README.md",
"patch": "@@ -54,8 +54,8 @@ winget install --id=DenoLand.Deno\n \n ### Build and install from source\n \n-Complete instructions for building Deno from source can be found in the manual\n-[here](https://docs.deno.com/runtime/manual/references/contributing/building_from_source).\n+Compl... | 2025-05-12T06:41:53 |
mrdoob/three.js | 228af660c510f001ce855289d75de52b5b41a687 | a8b8ce723128d5310a56d8e9cf98c1a89a581519 | Docs: Add docs for updateRanges (#27148)
* Add docs for updateRanges
* Fix InterleavedBuffer name in docs | [
{
"path": "docs/api/en/core/BufferAttribute.html",
"patch": "@@ -99,16 +99,16 @@ <h3>[property:Function onUploadCallback]</h3>\n \t\t\tthe attribute array data to the GPU.\n \t\t</p>\n \n-\t\t<h3>[property:Object updateRange]</h3>\n+\t\t<h3>[property:Object updateRanges]</h3>\n \t\t<p>\n-\t\t\tObject contai... | 2023-11-08T11:39:11 |
golang/go | d9d2cadd635f3b8fdfba0ab6369604f5e78643b0 | 0f8ab2db177baee7b04182f5641693df3b212aa9 | encoding/json: fix typo in hotlink for jsontext.PreserveRawStrings
Updates #71845
Change-Id: Ie099e7ac77293696fd9e69559487e27f4b70ab3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/684416
Auto-Submit: Joseph Tsai <joetsai@digital-static.net>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.ia... | [
{
"path": "src/encoding/json/v2_options.go",
"patch": "@@ -221,7 +221,7 @@ type Options = jsonopts.Options\n // - [jsontext.AllowInvalidUTF8]\n // - [jsontext.EscapeForHTML]\n // - [jsontext.EscapeForJS]\n-// - [jsontext.PreserveRawString]\n+// - [jsontext.PreserveRawStrings]\n //\n // All other b... | 2025-06-27T01:18:32 |
vuejs/vue | 4c6b843f73116f8d0648f775cd97f4c2b71d6a74 | 23c253012f8f58848c33445f4f8ea045453029bf | fix child component nodes hook invocations | [
{
"path": "src/runtime/dom-backend/modules/class.js",
"patch": "@@ -12,7 +12,8 @@ function updateClass (oldVnode, vnode) {\n // or a child component root node\n if (vnode.child) {\n data = mergeClassData(vnode.child._vnode.data, data)\n- } else if (vnode.parent) {\n+ }\n+ if (vnode.parent) {\n ... | 2016-04-20T22:18:41 |
mrdoob/three.js | a8b8ce723128d5310a56d8e9cf98c1a89a581519 | 4f6ecee04d456a52a4aeae7807bd21d9a5f9312b | BatchedMesh: Add object-level bounds (#27145)
* BatchedMeh: add support for frustum culling batched elements
* comments
* Update frustum culling support
* BatchedMesh: add "perObjectFrustumCulled"
* Reduce the number of world matrix transform applications for frustum culling
* Update copy function
* ... | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -75,7 +75,8 @@ class BatchedMesh extends Mesh {\n \n \t\tthis.isBatchedMesh = true;\n \t\tthis.perObjectFrustumCulled = true;\n-\t\tthis.frustumCulled = false;\n+\t\tthis.boundingBox = null;\n+\t\tthis.boundingSphere = null;\n \n \t\tthis._drawRa... | 2023-11-08T10:42:23 |
denoland/deno | 9cb72064d307f36a7c9433d861ed1e5d6cb173df | e601df6bfbf9419acd6903f559f7f1fa9aa20021 | fix(ext/node): implement dgram setMulticastLoopback (#29241)
`npm:multicast-dns` works in Deno now.
Ref https://github.com/denoland/deno/issues/18324 | [
{
"path": "ext/net/01_net.js",
"patch": "@@ -378,14 +378,19 @@ class Listener {\n }\n }\n \n-const _setBroadcast = Symbol(\"setBroadcast\");\n const _dropMembership = Symbol(\"dropMembership\");\n+const _setBroadcast = Symbol(\"setBroadcast\");\n+const _setMultiLoopback = Symbol(\"setMultiLoopback\");\n c... | 2025-05-12T03:23:15 |
golang/go | 0f8ab2db177baee7b04182f5641693df3b212aa9 | 988a20c8c5e2c9eb49f8749e5ee94ce3c964fe59 | cmd/link: permit a larger size BSS reference to a smaller DATA symbol
Currently, if there is a BSS reference and a DATA symbol
definition with the same name, we pick the DATA symbol, as it
contains the right content. In this case, if the BSS reference
has a larger size, we error out, because it is not safe to access
a... | [
{
"path": "src/cmd/cgo/internal/testsanitizers/asan_test.go",
"patch": "@@ -42,6 +42,8 @@ func TestASAN(t *testing.T) {\n \t\t{src: \"asan_global3_fail.go\", memoryAccessError: \"global-buffer-overflow\", errorLocation: \"asan_global3_fail.go:13\"},\n \t\t{src: \"asan_global4_fail.go\", memoryAccessError: \... | 2025-06-26T19:46:31 |
vuejs/vue | 23c253012f8f58848c33445f4f8ea045453029bf | f96b189504593c8b701837a2673c65a263986244 | fix listeners | [
{
"path": "src/runtime/instance/events.js",
"patch": "@@ -4,9 +4,9 @@ import { updateListeners } from '../vdom/helpers'\n export function initEvents (vm) {\n vm._events = Object.create(null)\n // init parent attached events\n- const parentData = vm.$options._renderData\n- if (parentData && parentData.... | 2016-04-20T21:32:01 |
mrdoob/three.js | 4f6ecee04d456a52a4aeae7807bd21d9a5f9312b | 7863b733b3fe7db53c3474d37df8f813333cb6eb | BufferAttribute: Add support for multiple update ranges (#27103)
* Replace "updateRange" with "updateRanges"
* Fix upload logic
* Add updateRanges support to BufferGeometryLoader
* Clear attributes after upload, fix update condition
* Update warnings, update InterleavedBuffer
* Update tests
* Update ... | [
{
"path": "examples/jsm/misc/TubePainter.js",
"patch": "@@ -176,16 +176,13 @@ function TubePainter() {\n \n \t\tif ( start === end ) return;\n \n-\t\tpositions.updateRange.offset = start * 3;\n-\t\tpositions.updateRange.count = ( end - start ) * 3;\n+\t\tpositions.addUpdateRange( start * 3, ( end - start ) ... | 2023-11-08T10:20:37 |
denoland/deno | e601df6bfbf9419acd6903f559f7f1fa9aa20021 | 853982238a8e5fe9fb3720b7dbd9cd0af79c6d22 | fix: allow specifying otel config in `--env-file` (#29240)
Alternative to https://github.com/denoland/deno/pull/28127 that does cli
flag parsing, then env file loading, then resolves config with env vars.
This also fixes several other issues related to env vars in the
--env-file not being used for certain config.
Cl... | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -355,7 +355,7 @@ pub struct ServeFlags {\n pub watch: Option<WatchFlagsWithPaths>,\n pub port: u16,\n pub host: String,\n- pub worker_count: Option<usize>,\n+ pub parallel: bool,\n pub open_site: bool,\n }\n \n@@ -367,7 +367,7 @@ impl ServeFlags {\n ... | 2025-05-12T01:09:52 |
golang/go | 988a20c8c5e2c9eb49f8749e5ee94ce3c964fe59 | b5d555991ab73e06e09741952a66dd7eeaf2a185 | cmd/compile/internal/escape: evaluate any side effects when rewriting with literals
CL 649035 and CL 649079 updated escape analysis to rewrite
certain operands in OMAKE and OCONVIFACE nodes from non-constant
expressions to basic literals that evaluate to the same value.
However, when doing that rewriting, we need to ... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -545,6 +545,14 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \t\tbase.Fatalf(\"no ReassignOracle for function %v with closure parent %v\", fn, fn.ClosureParent)\n \t}\n \n+\tassignTemp := func(n ir.Node, init *ir.Nodes)... | 2025-06-25T23:01:11 |
vuejs/vue | 3de33b338d3f8afbdb950db1cd4a0c16543c6a98 | b28888d22e83d5e79ced2056b6cd3d71e33f8ca3 | fix ref | [
{
"path": "src/compiler/codegen/directives/ref.js",
"patch": "@@ -11,7 +11,7 @@ export function ref (el, dir) {\n parent = parent.parent\n }\n // __registerRef__(name, ref, vFor?, remove?)\n- const code = `__registerRef__(\"${dir.arg}\", n1.data.child || n1.elm, ${isFor ? 'true' : 'false'}`\n+ con... | 2016-04-20T19:06:45 |
denoland/deno | 853982238a8e5fe9fb3720b7dbd9cd0af79c6d22 | 2fe200f6efd77044f2bf66b0ba17bee10de738e0 | fix(otel): don't panic when using worker threads (#29248)
This commit changes how workers are spawned - instead
of having a "sync" phase that creates a worker and only
then moves to to an "async" block within a Tokio runtime,
now a worker is spawned already on a Tokio runtime.
Closes https://github.com/denoland/deno/... | [
{
"path": "runtime/ops/worker_host.rs",
"patch": "@@ -19,6 +19,7 @@ use deno_web::MessagePortError;\n use log::debug;\n \n use crate::ops::TestingFeaturesEnabled;\n+use crate::tokio_util::create_and_run_current_thread;\n use crate::web_worker::run_web_worker;\n use crate::web_worker::SendableWebWorkerHandle... | 2025-05-12T00:51:08 |
mrdoob/three.js | 7863b733b3fe7db53c3474d37df8f813333cb6eb | 4b8c12154a122811529d8a4ed3f28783320da612 | BatchedMesh: add support for frustum culling per batched geometry (#27120)
* BatchedMeh: add support for frustum culling batched elements
* comments
* Update frustum culling support
* BatchedMesh: add "perObjectFrustumCulled"
* Reduce the number of world matrix transform applications for frustum culling
... | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -6,17 +6,29 @@ import {\n \tMathUtils,\n \tMatrix4,\n \tMesh,\n-\tRGBAFormat\n+\tRGBAFormat,\n+\tBox3,\n+\tSphere,\n+\tFrustum,\n+\tWebGLCoordinateSystem,\n+\tWebGPUCoordinateSystem,\n+\tVector3,\n } from 'three';\n \n const ID_ATTR_NAME = 'batch... | 2023-11-08T09:42:09 |
vuejs/vue | 2ae27c3012c26e355a796ca2db8ce5e1067597be | 10ac41a0aff8041f206fb814e6ef037b93cef182 | fix firebase example leave transition | [
{
"path": "examples/firebase/style.css",
"patch": "@@ -19,7 +19,7 @@ ul {\n border-bottom: 1px solid #eee;\n }\n \n-.v-enter, .v-leave {\n+.v-enter, .v-leave-active {\n height: 0;\n padding-top: 0;\n padding-bottom: 0;",
"additions": 1,
"deletions": 1,
"language": "CSS"
}
] | 2016-04-20T18:33:19 |
mrdoob/three.js | 4b8c12154a122811529d8a4ed3f28783320da612 | 025b563b67229f416e74c7697d5808f69ca1ec8e | Docs: Arabic Update added Libraries and Plugins page (#27140)
* started updating arabic documentation
starting translating the Creating a scene page and planing to update all and added a class in css to properly display the code file name in RTL
* Update Creating-a-scene.html
* more improvment to the arabic d... | [
{
"path": "docs/list.json",
"patch": "@@ -448,6 +448,7 @@\n \t\t\t\t\"رسم خطوط\": \"manual/ar/introduction/Drawing-lines\",\n \t\t\t\t\"إنشاء نص\": \"manual/ar/introduction/Creating-text\",\n \t\t\t\t\"تحميل نماذج ثلاثية الأبعاد\": \"manual/ar/introduction/Loading-3D-models\",\n+\t\t\t\t\"المكتبات والإضافات... | 2023-11-08T09:23:26 |
denoland/deno | 2fe200f6efd77044f2bf66b0ba17bee10de738e0 | 5ab029db2225d52e4fb90fd0acb727da407beb7d | fix(coverage): don't panic if all covered files are ignored via directive (#29250)
Closes https://github.com/denoland/deno/issues/29218 | [
{
"path": "cli/tools/coverage/mod.rs",
"patch": "@@ -740,6 +740,12 @@ pub fn cover_files(\n }\n }\n \n+ // All covered files, might have had ignore directive and we can end up\n+ // with no reports at this point.\n+ if file_reports.is_empty() {\n+ return Err(anyhow!(\"No covered files included i... | 2025-05-12T00:47:32 |
vuejs/vue | 49ab77cb97c327a8bae5c3c74189fdc1eaa189c9 | 873c24cc64be716546c0edfa6cc02b854a792cca | fix enterActiveClass apply timing | [
{
"path": "src/runtime/dom-backend/modules/transition.js",
"patch": "@@ -61,24 +61,24 @@ function beforeEnter (_, vnode) {\n }\n \n beforeEnter && beforeEnter(el)\n- // apply enter classes\n if (enterClass) {\n addTransitionClass(el, enterClass)\n nextFrame(() => {\n remov... | 2016-04-20T04:12:33 |
mrdoob/three.js | e8ff761c1c1a99ce6d234647c7b5d907504f5868 | 05414cb86d1ce7d9b854c5e26607d3f1318b8486 | Docs: updating a Portuguese error in the translated documentation (#27144)
Updating a small Portuguese error in the pt-br translation
It was written "instance" and the correct way is to write "instance" | [
{
"path": "docs/manual/pt-br/introduction/Creating-a-scene.html",
"patch": "@@ -61,7 +61,7 @@ <h2>Criando a cena</h2>\n \n \t\t<p>Os próximos dois atributos são os planos de corte `near` e `far`. Isso significa que os objetos mais distantes da câmera do que o valor `far` ou mais próximos que o valor `near` ... | 2023-11-08T02:04:27 |
golang/go | f8ccda2e0574c9ca5d92068852a34b463f87a85b | f069a8299876f9987a01a8d4a664d2a887bd5efc | runtime: make explicit nil check in (*spanInlineMarkBits).init
The hugo binary gets slower, potentially dramatically so, with
GOEXPERIMENT=greenteagc. The root cause is page mapping churn. The Green
Tea code introduced a new implicit nil check on value in a
freshly-allocated span to clear some new heap metadata. This ... | [
{
"path": "src/runtime/mgcmark_greenteagc.go",
"patch": "@@ -111,6 +111,26 @@ func (o *spanScanOwnership) or(v spanScanOwnership) spanScanOwnership {\n }\n \n func (imb *spanInlineMarkBits) init(class spanClass) {\n+\tif imb == nil {\n+\t\t// This nil check and throw is almost pointless. Normally we would\n... | 2025-06-25T15:47:05 |
denoland/deno | 5ab029db2225d52e4fb90fd0acb727da407beb7d | 2a01ac448273ffe3a4b2774598fab196a2269668 | fix(ext/node): use primordials in `ext/node/polyfills/internal/cli_table.ts` (#29257)
Towards #24236. Replaces JS intrinsics with their equivalent primordial
versions. | [
{
"path": "ext/node/polyfills/internal/cli_table.ts",
"patch": "@@ -1,10 +1,17 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-igno... | 2025-05-12T00:47:28 |
vuejs/vue | 79e164084ba60bf5b7cd1fdda7a875893c1c8ad5 | 3f9b3ec24bddc89c7a093950a1a281c428cc4184 | fix proxy has return value | [
{
"path": "src/runtime/instance/proxy.js",
"patch": "@@ -16,13 +16,14 @@ if (process.env.NODE_ENV !== 'production') {\n proxyHandlers = {\n has (target, key) {\n const has = key in target\n- if (!has && !allowedGlobals(key)) {\n+ const isAllowedGlobal = allowedGlobals(key)\n+ if (... | 2016-04-19T21:04:10 |
mrdoob/three.js | 05414cb86d1ce7d9b854c5e26607d3f1318b8486 | d4c01b98e321fcc64aec5e1d2d5636e79a3bda11 | :bug: (FBXLoader) Add first animation frame (#27143) | [
{
"path": "examples/jsm/loaders/FBXLoader.js",
"patch": "@@ -2978,6 +2978,13 @@ class AnimationParser {\n \n \t\tconst times = [];\n \t\tconst values = [];\n+\n+\t\t// Add first frame\n+\t\ttimes.push( curvex.times[ 0 ] );\n+\t\tvalues.push( MathUtils.degToRad( curvex.values[ 0 ] ) );\n+\t\tvalues.push( Mat... | 2023-11-08T00:55:43 |
golang/go | e515ef8bc271f632bb2ebb94e8e700ab67274268 | 47b941f445f0a839e826b81a5394d30934821500 | context: fix typo in context_test.go
Change-Id: Iee90ce7965eec4074fcb81a34968591877a062d3
GitHub-Last-Rev: f18fd099e490b130affa298bfc40da27ac589b26
GitHub-Pull-Request: golang/go#74360
Reviewed-on: https://go-review.googlesource.com/c/go/+/683675
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri ... | [
{
"path": "src/context/context_test.go",
"patch": "@@ -5,7 +5,7 @@\n package context\n \n // Tests in package context cannot depend directly on package testing due to an import cycle.\n-// If your test does requires access to unexported members of the context package,\n+// If your test requires access to un... | 2025-06-24T23:46:06 |
denoland/deno | 2a01ac448273ffe3a4b2774598fab196a2269668 | 9b9a61adbb06b49add51a0925973d2fdb29649cf | fix(ext/node): use primordials in `ext/node/polyfills/internal/fs/handle.ts` (#29239)
Towards #24236. This PR updates JS intrinsics with their primordial
equivalents. | [
{
"path": "ext/node/polyfills/internal/fs/handle.ts",
"patch": "@@ -1,12 +1,9 @@\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 { EventEmitter } from \"node:events\";\n ... | 2025-05-11T11:38:53 |
mrdoob/three.js | d4c01b98e321fcc64aec5e1d2d5636e79a3bda11 | b8e78a392397982a83cd2c42285e01da6813b350 | TextureUtils: Fix invalid texture data after decompression. (#27137) | [
{
"path": "examples/jsm/utils/TextureUtils.js",
"patch": "@@ -6,7 +6,7 @@ import {\n \tPerspectiveCamera,\n \tScene,\n \tWebGLRenderer,\n-\tTexture,\n+\tCanvasTexture,\n \tSRGBColorSpace\n } from 'three';\n \n@@ -56,17 +56,28 @@ export function decompress( texture, maxTextureSize = Infinity, renderer = null... | 2023-11-07T10:33:44 |
golang/go | fcb985085925e1d89511ef7523215a2f71cfb891 | 11f11f2a00aa3149a6ea69a50e7b7b429cf368b7 | net/http: reduce allocs in CrossOriginProtection.Check
Rather than repeatedly creating error values on
CrossOriginProtection.Check's unhappy paths, return non-exported and
effectively constant error variables.
For #73626.
Change-Id: Ibaa036c29417071b3601b8d200ab0902359d1bb9
GitHub-Last-Rev: e704d63cd63665845d544796e... | [
{
"path": "src/net/http/csrf.go",
"patch": "@@ -136,7 +136,7 @@ func (c *CrossOriginProtection) Check(req *Request) error {\n \t\tif c.isRequestExempt(req) {\n \t\t\treturn nil\n \t\t}\n-\t\treturn errors.New(\"cross-origin request detected from Sec-Fetch-Site header\")\n+\t\treturn errCrossOriginRequest\n ... | 2025-06-23T16:19:19 |
denoland/deno | 9b9a61adbb06b49add51a0925973d2fdb29649cf | c27aaf9f2637eeac937fdf0c0f03fceebfc00eb4 | ci: revert to the old way of uploading canary (#29251)
This broke CI and I was unable to fix it so far. | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -177,7 +177,7 @@ const cloneRepoStep = [{\n // Use depth > 1, because sometimes we need to rebuild main and if\n // other commits have landed it will become impossible to rebuild if\n // the checkout is too shallow.\n- \"fetch-depth\"... | 2025-05-11T11:00:00 |
mrdoob/three.js | d5bd2481333b11329b8ff6b66f1c07b17b8dc4a4 | a1906ffdf7f2e306199a999d48fe86a6a1a08810 | BatchedMesh: Add "toJSON" and "copy" support (#27131)
* Add a copy function
* Add "toJSON" support
* Remove toJSON override
* copy paste error
* Remove underscores from json | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -563,17 +563,29 @@ class BatchedMesh extends Mesh {\n \n \t}\n \n-\tcopy() {\n+\tcopy( source ) {\n \n-\t\t// super.copy( source );\n+\t\tsuper.copy( source );\n \n-\t\tthrow new Error( 'BatchedMesh: Copy function not implemented.' );\n+\t\tthis.... | 2023-11-07T09:57:59 |
vuejs/vue | bb2dc731a308c901bf39688d237f878a8b232ecb | 50e9f6b3c9893985093a1981c7582e63defce0aa | fix runtime build exports | [
{
"path": "src/entries/web-runtime-with-compiler.js",
"patch": "@@ -46,7 +46,7 @@ Vue.prototype.$mount = function (el) {\n * @return {String}\n */\n \n-export function getOuterHTML (el) {\n+function getOuterHTML (el) {\n if (el.outerHTML) {\n return el.outerHTML\n } else {",
"additions": 1,
... | 2016-04-19T02:41:07 |
denoland/deno | c27aaf9f2637eeac937fdf0c0f03fceebfc00eb4 | 5044f2f355817c8763240fffb9cd0872647e1049 | fix(ext/node): implement dgram socket setMulticastTTL (#29232)
Ref https://github.com/ipfs/helia/issues/73#issuecomment-2864091259 | [
{
"path": "ext/net/01_net.js",
"patch": "@@ -380,6 +380,7 @@ class Listener {\n \n const _setBroadcast = Symbol(\"setBroadcast\");\n const _dropMembership = Symbol(\"dropMembership\");\n+const _setMulticastTTL = Symbol(\"setMulticastTTL\");\n \n function setDatagramBroadcast(conn, broadcast) {\n return co... | 2025-05-10T03:52:02 |
golang/go | 11f11f2a00aa3149a6ea69a50e7b7b429cf368b7 | 62deaf4fb839a6e152fc832c2c71325215e55831 | encoding/json/v2: support ISO 8601 durations
Based on the discussion in #71631, it is hotly contested
whether the default JSON representation for a Go time.Duration
should be the time.Duration.String format or
a particular profile of ISO 8601.
Regardless of the default, it seems clear that we should
at least support I... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -147,17 +147,23 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n // If the format matches one of the format constants declared\n // in the time package (e.g., RFC1123), then that format is used.\n // If the format is ... | 2025-06-19T01:35:36 |
mrdoob/three.js | a1906ffdf7f2e306199a999d48fe86a6a1a08810 | 79f89cd8f218d4c6a59062f3180963d24f35ee3a | FBXLoader: Fix rotation discontinuities. (#27057)
* :bug: (FBXLoader) Fix interpolation rotation discontinuities
* :recycle: (FBXLoader) lint
* :recycle: (FBXLoader) remove unused function
* Update FBXLoader.js
Clean up.
* :recycle: (FBXLoader) remove initialRotation
* :recycle: (FBXLoader) remove in... | [
{
"path": "examples/jsm/loaders/FBXLoader.js",
"patch": "@@ -2731,13 +2731,11 @@ class AnimationParser {\n \t\tconst tracks = [];\n \n \t\tlet initialPosition = new Vector3();\n-\t\tlet initialRotation = new Quaternion();\n \t\tlet initialScale = new Vector3();\n \n-\t\tif ( rawTracks.transform ) rawTracks.... | 2023-11-07T09:55:16 |
denoland/deno | 5044f2f355817c8763240fffb9cd0872647e1049 | b14e1043062d68d5301d74ce52e7e37012835f99 | fix(ext/node): hold weak reference to sqlite database in instances (#29210)
Deterministic close and releases file lock on Windows.
Fixes https://github.com/denoland/deno/issues/29033 | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -67,6 +67,7 @@ struct ApplyChangesetOptions<'a> {\n \n pub struct DatabaseSync {\n conn: Rc<RefCell<Option<rusqlite::Connection>>>,\n+ statements: Rc<RefCell<Vec<*mut libsqlite3_sys::sqlite3_stmt>>>,\n options: DatabaseSyncOptions,\n location:... | 2025-05-10T03:51:53 |
golang/go | 62deaf4fb839a6e152fc832c2c71325215e55831 | 2e9bb62bfed92ef24a6744fbdc3cf24eb672cd56 | doc: fix links to runtime Environment Variables
Change-Id: I9e8ecc5e4f4cba0b09008b2b0d9d3f8842687ec3
GitHub-Last-Rev: e0ddaaed3875761a1ff3692af49c0ec2622a5e20
GitHub-Pull-Request: golang/go#74180
Reviewed-on: https://go-review.googlesource.com/c/go/+/681516
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-... | [
{
"path": "doc/godebug.md",
"patch": "@@ -187,7 +187,7 @@ Go 1.25 switched to SHA-256 to fill in missing SubjectKeyId in\n crypto/x509.CreateCertificate. The setting `x509sha256skid=0` reverts to SHA-1.\n \n Go 1.25 corrected the semantics of contention reports for runtime-internal locks,\n-and so removed t... | 2025-06-16T22:15:04 |
mrdoob/three.js | df3b760563ce99f25dab52a7dbf50a5c5cae28c6 | 7e7830ef1f78cd950c426d4f113deb9d75384745 | Update DirectionalLightHelper.html (#27122)
Add scene.add(light) to fix example code | [
{
"path": "docs/api/en/helpers/DirectionalLightHelper.html",
"patch": "@@ -22,6 +22,7 @@ <h2>Code Example</h2>\n \t\t<code>\n \t\tconst light = new THREE.DirectionalLight( 0xFFFFFF );\n \t\tconst helper = new THREE.DirectionalLightHelper( light, 5 );\n+\t\tscene.add( light );\n \t\tscene.add( helper );\n \t... | 2023-11-07T09:40:07 |
vuejs/vue | c13bbcb32794fbb443a4f86d3b0526951ca3f7ba | 122d1646c4258583e5679b8208f8af5a8e923e80 | fix directive merging | [
{
"path": "src/runtime/instance/render.js",
"patch": "@@ -251,7 +251,7 @@ function mergeParentData (vm, data, parentData) {\n }\n }\n if (parentData.directives) {\n- data.directives = parentData.directives.conact(data.directives || [])\n+ data.directives = parentData.directives.concat(data.dir... | 2016-04-18T17:41:26 |
denoland/deno | b14e1043062d68d5301d74ce52e7e37012835f99 | 7852806c3aeb071d8cb9ce3d0ed09a61cb6e9638 | fix(ext/node): use "localhost" as default tls hostname (#29231)
Fixes https://github.com/denoland/deno/issues/29229 | [
{
"path": "ext/node/polyfills/_tls_wrap.ts",
"patch": "@@ -85,7 +85,8 @@ export class TLSSocket extends net.Socket {\n constructor(socket: any, opts: any = kEmptyObject) {\n const tlsOptions = { ...opts };\n \n- const hostname = opts.servername ?? opts.host ?? socket._host;\n+ const hostname = o... | 2025-05-10T03:51:49 |
mrdoob/three.js | 5f4f0b29a9045acb6c1ff916d3dc7d241385a5c2 | 67e26707ce7b724ded4902cb56ac864732e5277f | BatchedMesh: Remove unneeded & redundant matrices array (#27130)
* Add support for multi draw
* Fix multidraw
* Add batching material properties
* Adjust batching define
* Move normal shaders
* Move vertex transform shadres
* Move batching pars
* Move batching matrix fetch
* Switch _batch_id_ t... | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -20,6 +20,10 @@ const _zeroScaleMatrix = new Matrix4().set(\n \n // @TODO: SkinnedMesh support?\n // @TODO: Future work if needed. Move into the core. Can be optimized more with WEBGL_multi_draw.\n+// @TODO: geometry.groups support?\n+// @TODO: g... | 2023-11-06T10:29:21 |
golang/go | 2e9bb62bfed92ef24a6744fbdc3cf24eb672cd56 | ed7815726db4a0eb904d7cae2532cde48348d7ff | encoding/json/v2: reject unquoted dash as a JSON field name
In this blog:
https://blog.trailofbits.com/2025/06/17/unexpected-security-footguns-in-gos-parsers/
the concern was raised that whenever "-" is combined with other options,
the "-" is intepreted as as a name, rather than an ignored field,
which may go contr... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -1189,6 +1189,27 @@ var unmarshalTests = []struct {\n \t\tout: []int{1, 2, 0, 4, 5},\n \t\terr: &UnmarshalTypeError{Value: \"bool\", Type: reflect.TypeFor[int](), Offset: 9},\n \t},\n+\n+\t{\n+\t\tCaseName: Name(\"DashComma\"),\n+\t\tin: ... | 2025-06-22T04:27:09 |
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.