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 | 122d1646c4258583e5679b8208f8af5a8e923e80 | d5914fe9d79ffe8d4c789e5c731b3389dff9d76a | warn against incorrect propsData usage | [
{
"path": "src/runtime/util/options.js",
"patch": "@@ -290,6 +290,11 @@ export function mergeOptions (parent, child, vm) {\n guardComponents(child)\n guardProps(child)\n guardDirectives(child)\n+ if (process.env.NODE_ENV !== 'production') {\n+ if (child.propsData && !vm) {\n+ warn('propsData ... | 2016-04-18T17:40:38 |
mrdoob/three.js | 67e26707ce7b724ded4902cb56ac864732e5277f | 4dbca971afa231e443ff3ebc76a6ac7f76dd77e6 | Docs: Create a scene Arabic version (#27129)
* 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 documentation
m... | [
{
"path": "docs/manual/ar/introduction/Creating-a-scene.html",
"patch": "@@ -35,37 +35,22 @@ <h2>إنشاء المشهد</h2>\n \n \t\t<p>لنتمهل لحظة من أجل توضيح ما يحصل هنا. لقد قمنا بتحضير كل من المسرح، الكاميرا، و العارض.</p>\n \n-\t\t<p>توفر مكتبة three.js العديد من الخيارات بخصوص نوع الكاميرا. للوقت الراهن، سنست... | 2023-11-06T10:26:34 |
denoland/deno | 7852806c3aeb071d8cb9ce3d0ed09a61cb6e9638 | c9d456b74ad496536046666b95b4160405f9a403 | fix(ext/node): Fix export loadEnvFile from `node:process` (#29237)
Fixes https://github.com/denoland/deno/issues/29236 | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -789,9 +789,11 @@ process.getBuiltinModule = getBuiltinModule;\n // TODO(kt3k): Implement this when we added -e option to node compat mode\n process._eval = undefined;\n \n-process.loadEnvFile = (path = \".env\") => {\n+export function loadEnvFile(path... | 2025-05-10T03:51:26 |
golang/go | ed7815726db4a0eb904d7cae2532cde48348d7ff | f866958246556ec609b81d31376a39efe9d51a51 | encoding/json/v2: report error on time.Duration without explicit format
The default representation of a time.Duration is still undecided.
In order to keep the future open, report an error on a time.Duration
without an explicit format flag provided.
Updates #71631
Change-Id: I08248404ff6551723851417c8188a13f53c61937
... | [
{
"path": "src/encoding/json/v2/arshal_test.go",
"patch": "@@ -365,7 +365,7 @@ type (\n \t\tInterface any `json:\",omitzero,format:invalid\"`\n \t}\n \tstructDurationFormat struct {\n-\t\tD1 time.Duration\n+\t\tD1 time.Duration `json:\",format:units\"` // TODO(https://go.dev/issue/71631): Re... | 2025-06-17T19:34:22 |
vuejs/vue | bf39f1973cb6d3024bc30f056b7d5345bf80e033 | 5174bb2bd8d14ba1af4476e8ece759f287dbc6b1 | fix big table matching | [
{
"path": "benchmarks/big-table/index.html",
"patch": "@@ -102,11 +102,8 @@ <h1>Rendering Large Datasets With Vue</h1>\n },\n \n methods: {\n- updateFilter (e) {\n- this.filter = e.target.value.toLowerCase()\n- },\n matches (item) {\n- return item.value.toLowerCase().indexOf(this.fil... | 2016-04-18T04:57:01 |
mrdoob/three.js | e4a5253598694d397ee67db99ba37b5c96942a80 | c1e5693d347f0042ee2820ff2a224d0fe1d35d95 | BatchedMesh: Add built-in material support (#27115)
* 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_ to batchId
... | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -9,7 +9,7 @@ import {\n \tRGBAFormat\n } from 'three';\n \n-const ID_ATTR_NAME = '_batch_id_';\n+const ID_ATTR_NAME = 'batchId';\n const _identityMatrix = new Matrix4();\n const _zeroScaleMatrix = new Matrix4().set(\n \t0, 0, 0, 0,\n@@ -18,48 +18... | 2023-11-06T09:08:38 |
denoland/deno | c9d456b74ad496536046666b95b4160405f9a403 | a2f129720e5b5cf09f799e6cf31e319c6c362fcb | fix(cache): added support for the --env-file flag (#29160)
Adds support for the --env-file flag, allowing environment variables
such as DENO_AUTH_TOKENS to be loaded from a file. | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -1897,6 +1897,7 @@ Future runs of this module will trigger no downloads or compilation unless --rel\n .arg(frozen_lockfile_arg())\n .arg(allow_scripts_arg())\n .arg(allow_import_arg())\n+ .arg(env_file_arg())\n })\n }\n \n@@ -4659,6 +4660,... | 2025-05-10T02:03:11 |
golang/go | f77a0aa6b6d90742932f0bf29d2f94459597331a | 4506796a6ebee9799dd6272c0fb12c7b993631e2 | internal/trace: improve gc-stress test
The gc-stress test is useful for trying to exercise GC-related trace
events by producing a lot of them in many different situations.
Unfortunately this test is flaky, because allocating in a loop can
easily out-run the GC when it's trying to preempt the allocating
goroutine.
It'... | [
{
"path": "src/internal/trace/testdata/testprog/gc-stress.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"log\"\n \t\"os\"\n \t\"runtime\"\n+\t\"runtime/debug\"\n \t\"runtime/trace\"\n \t\"time\"\n )\n@@ -36,11 +37,25 @@ func makeTree(depth int) *node {\n \t}\n }\n \n+func initTree(n *node) {\n+\tif n == ni... | 2025-06-23T20:14:18 |
vuejs/vue | 5d799abd7534b4cf86a148de6a4e4b030f6f8b80 | 86bc00e0e57076a1a7a6d64ddb3f97d1a455be46 | prefix sniffing for :style | [
{
"path": "src/runtime/vdom/modules/style.js",
"patch": "@@ -1,4 +1,32 @@\n-import { extend, isArray } from '../../../shared/util'\n+import { extend, isArray, cached, camelize } from '../../../shared/util'\n+import { inBrowser } from '../../util/env'\n+\n+const prefixes = ['Webkit', 'Moz', 'ms']\n+const tes... | 2016-04-18T03:00:08 |
mrdoob/three.js | 4ee777e6b8e85ba4b6df52cae49020c11d9027e3 | d962a781851981ce66c21c244d726b2f7fe74f11 | Update bug_report.yml | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -81,5 +81,6 @@ body:\n - Windows\n - MacOS\n - Linux\n+ - ChromeOS\n - Android\n - iOS",
"additions": 1,
"deletions": 0,
"language": "YAML"
}
] | 2023-11-06T04:25:38 |
denoland/deno | a2f129720e5b5cf09f799e6cf31e319c6c362fcb | 4f5cb9516b8ca6799caf8037418642470eadce24 | ci: fix uploading canary once more (#29238) | [
{
"path": "tools/release/upload_canary.ts",
"patch": "@@ -25,8 +25,9 @@ async function uploadCanaryForCurrentArch(currentGitSha: string) {\n }\n \n async function uploadCanaryLatest(currentGitSha: string) {\n- const latestCanaryHash = $`gsutil cat gs://dl.deno.land/canary-latest.txt`\n- .text();\n+ con... | 2025-05-09T20:55:01 |
golang/go | 456a90aa1618a6c3aa49ecba46969128e2bfa26f | 1cf6386b5ee1ba7d367b6456c2c6888ab68c3ec8 | runtime: add missing unlock in sysReserveAlignedSbrk
sysReserveAlignedSbrk locks memlock at entry, but it is not
unlocked at one of the return path. Add the missing unlock.
Fixes #74339.
Change-Id: Ib641bc348aca41494ec410e2c4eb9857f3362484
Reviewed-on: https://go-review.googlesource.com/c/go/+/683295
LUCI-TryBot-Res... | [
{
"path": "src/runtime/mem_sbrk.go",
"patch": "@@ -231,6 +231,7 @@ func sysReserveAlignedSbrk(size, align uintptr) (unsafe.Pointer, uintptr) {\n \t\t\tmemFree(unsafe.Pointer(end), endLen)\n \t\t}\n \t\tmemCheck()\n+\t\tunlock(&memlock)\n \t\treturn unsafe.Pointer(pAligned), size\n \t}\n ",
"additions": ... | 2025-06-22T19:01:27 |
vuejs/vue | ca81482c62d3fc5ed618ed252e309d73cb10259b | 583a7bb0d155faff16a1b73b835b5a79907ed2c9 | fix attr codegen | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -92,7 +92,7 @@ function genData (el) {\n }\n // attributes\n if (el.attrs) {\n- data += `attrs:{${genProps(el.attrs)}}`\n+ data += `attrs:{${genProps(el.attrs)}},`\n }\n // hooks\n if (el.hooks) {",
"additions": 1,
"deletions"... | 2016-04-16T22:30:16 |
mrdoob/three.js | 0319a2a421aea8ea3aa4b45235ce06da7be8235f | 6d7566e5e47ab387d5d36e2c87fac7ba605818cb | WebGLRenderer: Add initial support for multi draw BatchedMesh (#27111)
* Add support for multi draw
* Fix multidraw | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -113,6 +113,9 @@ 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._multiDrawCount = 0;\n \n \t\t// Local... | 2023-11-05T03:23:42 |
denoland/deno | 6bbba3c348ea258b10737cc9de7e30cc631ea28c | 784be1511be60248728a00e8fa13b1840005774f | fix(ext/node): add assert.CallTracker (#29226) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -579,6 +579,7 @@ deno_core::extension!(deno_node,\n \"internal_binding/udp_wrap.ts\",\n \"internal_binding/util.ts\",\n \"internal_binding/uv.ts\",\n+ \"internal/assert/calltracker.js\",\n \"internal/assert.mjs\",\n \"internal/async_hooks.ts\"... | 2025-05-09T14:55:28 |
mrdoob/three.js | 6d7566e5e47ab387d5d36e2c87fac7ba605818cb | 15d3a1d73f632380b2a3445ae8e9c3c14c1cfa28 | Renderer: Call ID (#27101)
* Renderer Call ID
* Update Animation.js
update after init
* Replace requestAnimationFrame() -> setAnimationLoop()
* fix screenshots
* show grid
* add shadertoy screenshot
* preserve screenshot but ignore webgpu_particles for now
* using time instead of frame
* add... | [
{
"path": "examples/jsm/renderers/common/Animation.js",
"patch": "@@ -1,44 +1,39 @@\n class Animation {\n \n-\tconstructor() {\n+\tconstructor( nodes, info ) {\n \n-\t\tthis.nodes = null;\n+\t\tthis.nodes = nodes;\n+\t\tthis.info = info;\n \n \t\tthis.animationLoop = null;\n \t\tthis.requestId = null;\n \n-... | 2023-11-04T21:13:00 |
denoland/deno | 784be1511be60248728a00e8fa13b1840005774f | 9538acb68d21fee57e72dd7f8ffd3b29bef2999b | test: Capture output of failing node compat tests (#29227)
Will actually show test error instead of "error: Test failed" | [
{
"path": "tests/node_compat/run_all_test_unmodified.ts",
"patch": "@@ -277,9 +277,10 @@ async function runSingle(testPath: string, retry = 0): Promise<SingleResult> {\n if (result.code === 0) {\n return [true];\n } else {\n+ const output = usesNodeTest ? result.stdout : result.stderr;\n ... | 2025-05-09T14:16:25 |
vuejs/vue | 583a7bb0d155faff16a1b73b835b5a79907ed2c9 | d018a726a63ae9fc7dfc815d560e1987032a6eac | fix root instance ready | [
{
"path": "src/runtime/instance/lifecycle.js",
"patch": "@@ -1,14 +1,12 @@\n import Watcher from '../observer/watcher'\n-import { defineReactive } from '../observer/index'\n-import { set, query, toArray } from '../util/index'\n+import { query, toArray } from '../util/index'\n \n export function initLifecycl... | 2016-04-16T22:29:15 |
mrdoob/three.js | 15d3a1d73f632380b2a3445ae8e9c3c14c1cfa28 | 38990d843601d64706d3dfbff8b0f92904256033 | GLTFLoader: Fix use of setPath with external resources (#27106)
* Fix for dispose error
sampleRenderTarget is being deleted and set to null by super.dispose();
the check for undefined was incorrect causing an attempt to call dispose on a null object.
* Removed disposal of sampleRenderTarget entierly
* Fix for ... | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -183,7 +183,13 @@ class GLTFLoader extends Loader {\n \n \t\t} else if ( this.path !== '' ) {\n \n-\t\t\tresourcePath = this.path;\n+\t\t\t// If a base path is set, resources will be relative paths from that plus the relative path of the gltf file... | 2023-11-04T10:26:36 |
denoland/deno | 9538acb68d21fee57e72dd7f8ffd3b29bef2999b | 5cd03feb0df4ec62669ef509cbfe0c2e83cf362a | ci: fix uploading canary, again (#29234) | [
{
"path": "tools/release/upload_canary.ts",
"patch": "@@ -5,14 +5,15 @@\n \n import { $ } from \"jsr:@david/dax@0.41.0\";\n \n-async function uploadCanaryForCurrentArch(currentGitSha) {\n+async function uploadCanaryForCurrentArch(currentGitSha: string) {\n const currentGitRev = await $`git rev-parse HEAD`... | 2025-05-09T14:14:13 |
mrdoob/three.js | 5642032303ada3bb3578c029cc6d602fe63733c3 | 834d77de4055ee81afa78ad8141447460501daf5 | BatchedMesh: Fix getIndexCount, getVertexCount functions (#27099)
* BatchedMesh: Fix getVertexCount and getIndexCount functions
* BatchedMesh: Fix index offset | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -114,8 +114,6 @@ class BatchedMesh extends Mesh {\n \n \t\tthis._geometryInitialized = false;\n \t\tthis._geometryCount = 0;\n-\t\tthis._vertexCount = 0;\n-\t\tthis._indexCount = 0;\n \n \t\t// Local matrix per geometry by using data texture\n \t... | 2023-11-01T23:07:38 |
vuejs/vue | 403e2380b8d3c430ac67e6a072f159bcf8c00b5e | 09a4ba84a9e4a0219423c85599fea87c1d34737d | fix toString | [
{
"path": "src/compiler/parser/text-parser.js",
"patch": "@@ -15,7 +15,7 @@ export function parseText (text) {\n }\n // tag token\n const exp = match[1].trim()\n- tokens.push(`((${exp})==null?'':__s__(${exp}))`)\n+ tokens.push(`__s__(${exp})`)\n lastIndex = index + match[0].length\n ... | 2016-04-16T21:34:07 |
golang/go | 49cdf0c42e320dfed044baa551610f081eafb781 | 3bf1eecbd30f48851c35f608aa265c978b2cf301 | testing, testing/synctest: handle T.Helper in synctest bubbles
Fixes #74199
Change-Id: I6a15fbd59a3a3f8c496440f56d09d695e1504e4e
Reviewed-on: https://go-review.googlesource.com/c/go/+/682576
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Alan Donovan <adonovan@g... | [
{
"path": "src/testing/synctest/helper_test.go",
"patch": "@@ -0,0 +1,15 @@\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 synctest_test\n+\n+import \"testing\"\n+\n+// helperLo... | 2025-06-20T13:44:09 |
denoland/deno | 67c7f1ba177cc2c13b9371af21fe8143498c8126 | cd877fd16f54ee47f6d7d6bdbe14d8bd267dde89 | ci: fix uploading canary (#29223) | [
{
"path": "tools/release/upload_canary.ts",
"patch": "@@ -6,7 +6,7 @@\n import { $ } from \"jsr:@david/dax@0.41.0\";\n \n async function uploadCanaryForCurrentArch(currentGitSha) {\n- const currentGitRev = await $`git rev-parse HEAD`;\n+ const currentGitRev = await $`git rev-parse HEAD`.text();\n await ... | 2025-05-08T23:57:19 |
vuejs/vue | f135891f4d5d19e0b9e52b420e6011008238614f | 472784226d7ff2347ef972ed9b01e09b38340c9e | fix prop unsetting in phantomjs 2 | [
{
"path": "src/runtime/vdom/modules/props.js",
"patch": "@@ -5,8 +5,8 @@ function updateProps (oldVnode, vnode) {\n const props = vnode.data.props || {}\n \n for (key in oldProps) {\n- if (!props[key]) {\n- delete elm[key]\n+ if (props[key] == null) {\n+ elm[key] = undefined\n }\n ... | 2016-04-16T07:53:22 |
golang/go | 4150372a5d2c3b70591efe1ce208f0a92747f1dc | 1b87d52549677a1ab3dfc05bb00eb568d81f6a5c | [dev.simd] cmd/compile: don't treat devel compiler as a released compiler
The compiler has a logic to print different messages on internal
compiler error depending on whether this is a released version of
Go. It hides the panic stack trace if it is a released version. It
does this by checking the version and see if it... | [
{
"path": "src/cmd/compile/internal/base/print.go",
"patch": "@@ -220,7 +220,7 @@ func FatalfAt(pos src.XPos, format string, args ...interface{}) {\n \t\tfmt.Printf(\"\\n\")\n \n \t\t// If this is a released compiler version, ask for a bug report.\n-\t\tif Debug.Panic == 0 && strings.HasPrefix(buildcfg.Vers... | 2025-06-20T16:02:18 |
denoland/deno | cd877fd16f54ee47f6d7d6bdbe14d8bd267dde89 | 9188c79ab4cb010e4aae988529be3843179e43f0 | fix(node/test): basic support for t.skip and t.todo (#29222)
Adds basic support for `t.skip` and `t.todo` | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -7,8 +7,9 @@ const {\n ArrayPrototypeForEach,\n SafePromiseAll,\n SafePromisePrototypeFinally,\n+ Symbol,\n } = primordials;\n-import { notImplemented, warnNotImplemented } from \"ext:deno_node/_utils.ts\";\n+import { notImplemented } from \"ext... | 2025-05-08T23:40:16 |
vuejs/vue | 472784226d7ff2347ef972ed9b01e09b38340c9e | 32ca8e7722cc46e0e24b812c893c5c7dc2108b8f | fix e2e tree | [
{
"path": "examples/tree/tree.js",
"patch": "@@ -2,7 +2,29 @@\n var data = {\n name: 'My Tree',\n children: [\n- { name: 'hello' }\n+ { name: 'hello' },\n+ { name: 'wat' },\n+ {\n+ name: 'child folder',\n+ children: [\n+ {\n+ name: 'child folder',\n+ childr... | 2016-04-16T07:08:23 |
denoland/deno | 9188c79ab4cb010e4aae988529be3843179e43f0 | a834d6ad960ad66b43777bcac6e1bfe3bb99e0a5 | fix(cli/hmr): print compile error with exception details (#27597)
Fix https://github.com/denoland/deno/issues/27577
---------
Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "cli/cdp.rs",
"patch": "@@ -291,8 +291,10 @@ pub type UnserializableValue = String;\n \n /// <https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setScriptSource>\n #[derive(Debug, Deserialize)]\n+#[serde(rename_all = \"camelCase\")]\n pub struct SetScriptSourceResponse {\n p... | 2025-05-08T23:39:31 |
golang/go | 3bf1eecbd30f48851c35f608aa265c978b2cf301 | 8ed23a2936dc5f3cf070c52043dcc0e92563e62b | runtime: fix struct comment
Change-Id: I0c33830b13c8a187ac82504c7653abb8f8cf7530
Reviewed-on: https://go-review.googlesource.com/c/go/+/681655
Reviewed-by: Sean Liao <sean@liao.dev>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang... | [
{
"path": "src/runtime/mheap.go",
"patch": "@@ -312,8 +312,10 @@ type heapArena struct {\n \t// during marking.\n \tpageSpecials [pagesPerArena / 8]uint8\n \n-\t// pageUseSpanDartboard is a bitmap that indicates which spans are\n-\t// heap spans and also gcUsesSpanDartboard.\n+\t// pageUseSpanInlineMarkBits... | 2025-06-14T11:37:47 |
vuejs/vue | 32ca8e7722cc46e0e24b812c893c5c7dc2108b8f | 119286fb090796cd4a70802f84c0c3d98b181386 | fix svg e2e | [
{
"path": "examples/svg/index.html",
"patch": "@@ -38,7 +38,7 @@\n <label>{{stat.label}}</label>\n <input type=\"range\" v-model=\"stat.value\" min=\"0\" max=\"100\">\n <span>{{stat.value}}</span>\n- <button @click=\"remove(stat)\">X</button>\n+ <button @click=\"remove(... | 2016-04-16T07:07:08 |
mrdoob/three.js | 834d77de4055ee81afa78ad8141447460501daf5 | af6593d55846677445878000fed50cf00d59f6c8 | WebGLNodes: Fix usage with `overrideMaterial`. (#27097)
* WebGLNodes: Fix usage with `overrideMaterial`.
* follow the material choice by the renderer
* WebGLNodes: Simpify `onBuild()`.
---------
Co-authored-by: sunag <sunagbrasil@gmail.com> | [
{
"path": "examples/jsm/renderers/webgl-legacy/nodes/WebGLNodes.js",
"patch": "@@ -8,21 +8,11 @@ export const nodeFrame = new NodeFrame();\n \n Material.prototype.onBuild = function ( object, parameters, renderer ) {\n \n-\tif ( Array.isArray( object.material ) ) {\n+\tconst material = this;\n \n-\t\tfor ( ... | 2023-11-01T22:17:48 |
denoland/deno | a834d6ad960ad66b43777bcac6e1bfe3bb99e0a5 | f8615e404c379c6da38bdf30ae9c0de61f6e3dc5 | fix(npm): add some context to errors on tarball extraction failure (#29145)
Noticed this while working on a different PR. | [
{
"path": "resolvers/npm_cache/tarball_extract.rs",
"patch": "@@ -192,11 +192,39 @@ fn verify_tarball_integrity(\n Ok(())\n }\n \n+#[derive(Debug, Copy, Clone)]\n+pub enum IoErrorOperation {\n+ Creating,\n+ Canonicalizing,\n+}\n+\n+impl std::fmt::Display for IoErrorOperation {\n+ fn fmt(&self, f: &mut ... | 2025-05-08T22:06:19 |
golang/go | 8ed23a2936dc5f3cf070c52043dcc0e92563e62b | ef60769b46c5ef796876c6b4407562646fb27d15 | crypto/cipher: fix link to crypto/aes
Fixes #74309
Change-Id: I4d97514355d825124a8d879c2590b45b039f5fd1
Reviewed-on: https://go-review.googlesource.com/c/go/+/682596
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>... | [
{
"path": "src/crypto/cipher/gcm.go",
"patch": "@@ -82,7 +82,7 @@ func newGCM(cipher Block, nonceSize, tagSize int) (AEAD, error) {\n \n // NewGCMWithRandomNonce returns the given cipher wrapped in Galois Counter\n // Mode, with randomly-generated nonces. The cipher must have been created by\n-// [aes.NewCi... | 2025-06-20T11:04:22 |
vuejs/vue | 849e9ba364f55b45c5ec6871087655b9f1569cb2 | 4d508dcbfa440459fb6bc331537c0c90278aa3a8 | fix ready hook | [
{
"path": "src/runtime/vdom/component.js",
"patch": "@@ -30,7 +30,7 @@ function init (vnode) {\n }\n \n function insert (vnode) {\n- callHook(vnode.child, 'ready')\n+ callHook(vnode.data.child, 'ready')\n }\n \n function prepatch (oldVnode, vnode) {",
"additions": 1,
"deletions": 1,
"language"... | 2016-04-16T06:17:16 |
mrdoob/three.js | 79cc152ddfa7fdd2265782732bcbfdb42b07391e | 5a25a00c6e3e97a4d2363628f389b7246406074d | ViewportNode revision (#27096)
* ViewportNode revision
* remove depth
* Revert "remove depth"
This reverts commit d20b0f7f643352eeef0fbc4cfc62ee79f49e5017.
* revision shadowmap
* fix screenshot | [
{
"path": "examples/jsm/nodes/accessors/TextureNode.js",
"patch": "@@ -117,7 +117,10 @@ class TextureNode extends UniformNode {\n \n \tgenerate( builder, output ) {\n \n-\t\tconst { uvNode, levelNode } = builder.getNodeProperties( this );\n+\t\tconst properties = builder.getNodeProperties( this );\n+\n+\t\t... | 2023-11-01T06:40:27 |
golang/go | 8552bcf7c261cd150d0074c4ec7e2412b20af0a5 | 4c7567290ced9c4dc629f2386f2eebfebba95ce6 | cmd/go/internal/fips140: ignore GOEXPERIMENT on error
During toolchain selection, the GOEXPERIMENT value may not be valid for
the current version (but it is valid for the selected version). In this
case, cfg.ExperimentErr is set and cfg.Experiment is nil.
Normally cmd/go main exits when ExperimentErr is set, so Exper... | [
{
"path": "src/cmd/go/internal/fips140/fips140.go",
"patch": "@@ -114,7 +114,11 @@ func Init() {\n \t\tfsys.Bind(Dir(), filepath.Join(cfg.GOROOT, \"src/crypto/internal/fips140\"))\n \t}\n \n-\tif cfg.Experiment.BoringCrypto && Enabled() {\n+\t// ExperimentErr != nil if GOEXPERIMENT failed to parse. Typicall... | 2025-06-11T20:46:21 |
mrdoob/three.js | 5a25a00c6e3e97a4d2363628f389b7246406074d | 0403020848c26a9605eb91c99a949111ad4a532e | FBXLoader: Fix polygon triangulation (#27094)
* Correctly triangulate polygons with 3+ vertices in FBXLoader
* Use ShapeUtils instead of directly using Earcut in FBXLoader
* Update FBXLoader.js
Update import.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "examples/jsm/loaders/FBXLoader.js",
"patch": "@@ -36,10 +36,12 @@ import {\n \tTexture,\n \tTextureLoader,\n \tUint16BufferAttribute,\n+\tVector2,\n \tVector3,\n \tVector4,\n \tVectorKeyframeTrack,\n-\tSRGBColorSpace\n+\tSRGBColorSpace,\n+\tShapeUtils\n } from 'three';\n import * as fflate from '... | 2023-10-31T15:42:15 |
vuejs/vue | 4d508dcbfa440459fb6bc331537c0c90278aa3a8 | af1f1d349f8276d3fe0c38af34eafab2b0c50424 | fix things | [
{
"path": "src/runtime/instance/lifecycle.js",
"patch": "@@ -1,3 +1,6 @@\n+import Watcher from '../observer/watcher'\n+import { query, toArray } from '../util/index'\n+\n export function callHook (vm, hook) {\n vm.$emit('pre-hook:' + hook)\n var handlers = vm.$options[hook]\n@@ -25,6 +28,26 @@ export fu... | 2016-04-16T06:05:56 |
denoland/deno | f8615e404c379c6da38bdf30ae9c0de61f6e3dc5 | ef315b56c26c9ef5f25284a5100d2ed525a148cf | fix(fmt): indent width should be ignored when formatting with use tabs set to true (#29205) | [
{
"path": "Cargo.lock",
"patch": "@@ -3273,9 +3273,9 @@ dependencies = [\n \n [[package]]\n name = \"dprint-plugin-typescript\"\n-version = \"0.95.0\"\n+version = \"0.95.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"1731810813ff84535e59390a75c42dea5fc312832e4aade1d3... | 2025-05-08T22:00:13 |
mrdoob/three.js | baf354647c6fd405c00e5121d67f9c796281bf41 | d1770206d06889ceec0f4197b0b5d2221e23c8d3 | BatchedMesh: Add setGeometryAt, addGeometry functions (#27078)
* BatchedMesh: Remove unused fields
* BatchedMesh: Add thrown errors in unimplemented functions
* Add PURE and glsl identifiers
* Add more error handling
* More errors
* Fix batched index overrun
* BatchedMesh: Check for normalized, as we... | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -103,6 +103,7 @@ class BatchedMesh extends Mesh {\n \t\tthis._vertexCounts = [];\n \t\tthis._indexStarts = [];\n \t\tthis._indexCounts = [];\n+\t\tthis._reservedRanges = [];\n \n \t\tthis._visible = [];\n \t\tthis._active = [];\n@@ -247,6 +248,50... | 2023-10-31T08:39:21 |
denoland/deno | ef315b56c26c9ef5f25284a5100d2ed525a148cf | 2211bb4e67e12c8aef81e7515a1091e4fee3999d | fix: handling of contradictory global permission flags (#29213) | [
{
"path": "runtime/permissions/lib.rs",
"patch": "@@ -410,6 +410,8 @@ impl<TQuery: QueryDescriptor> UnaryPermission<TQuery> {\n \n pub fn is_allow_all(&self) -> bool {\n self.granted_global\n+ && !self.flag_denied_global\n+ && !self.prompt_denied_global\n && self.flag_denied_list.is_em... | 2025-05-08T21:24:35 |
vuejs/vue | 61a5249a0e71008d7560d188b62efe36788619c1 | c16fc2c427b221510b51d98c1051460d2ffbe02e | remove log, fix logic | [
{
"path": "src/runtime/instance/render.js",
"patch": "@@ -68,8 +68,9 @@ export function renderMixin (Vue) {\n return () => {\n const prev = renderState.context\n renderState.context = this\n- return fn()\n+ const children = fn()\n renderState.context = prev\n+ return chi... | 2016-04-16T04:07:26 |
golang/go | 4c7567290ced9c4dc629f2386f2eebfebba95ce6 | c6ac7362888c25dd1251adaa11e1503cf78ec26d | runtime: set mspan limit field early and eagerly
Currently the mspan limit field is set after allocSpan returns, *after*
the span has already been published to the GC (including the
conservative scanner). But the limit field is load-bearing, because it's
checked to filter out invalid pointers. A stale limit value coul... | [
{
"path": "src/runtime/arena.go",
"patch": "@@ -1052,10 +1052,18 @@ func (h *mheap) allocUserArenaChunk() *mspan {\n \th.initSpan(s, spanAllocHeap, spc, base, userArenaChunkPages)\n \ts.isUserArenaChunk = true\n \ts.elemsize -= userArenaChunkReserveBytes()\n-\ts.limit = s.base() + s.elemsize\n \ts.freeindex... | 2025-06-18T17:42:16 |
mrdoob/three.js | 8611778e049fa7933ed30dd20f9368e0ad0200aa | 2a50f4b1a4eaa1ec43d1907f5d8c34025cd1cb0e | Renderer: `.setRenderObjectFunction()` (#27068)
* Renderer.setRenderObject()
* Fix .castShadow
* Rename `setRenderObject()` to `setRenderObjectFunction()`
* rename parameter | [
{
"path": "examples/jsm/nodes/lighting/AnalyticLightNode.js",
"patch": "@@ -167,9 +167,25 @@ class AnalyticLightNode extends LightingNode {\n \n \t\tlight.shadow.updateMatrices( light );\n \n+\t\tconst currentRenderTarget = renderer.getRenderTarget();\n+\t\tconst currentRenderObjectFunction = renderer.getRe... | 2023-10-30T05:54:44 |
denoland/deno | 2211bb4e67e12c8aef81e7515a1091e4fee3999d | c28cb56357510219a9ad649642d9915f0141635a | fix(dts): add `Atomics.pause`, `Promise.try` and `RegExp.escape` (#29186) | [
{
"path": "cli/build.rs",
"patch": "@@ -115,9 +115,11 @@ fn compress_decls(out_dir: &Path) {\n \"lib.esnext.d.ts\",\n \"lib.esnext.decorators.d.ts\",\n \"lib.esnext.disposable.d.ts\",\n+ \"lib.esnext.float16.d.ts\",\n \"lib.esnext.full.d.ts\",\n \"lib.esnext.intl.d.ts\",\n \"lib.e... | 2025-05-08T21:16:35 |
vuejs/vue | 38204b747dad3c05c63401e2a27ef846bcb998bc | 542035f3c1550bf4d733a7b9c161cdb8db63740f | fix event update | [
{
"path": "src/runtime/instance/events.js",
"patch": "@@ -1,7 +1,15 @@\n import { toArray } from '../util/index'\n+import { updateListeners } from '../vdom/index'\n \n export function initEvents (vm) {\n vm._events = Object.create(null)\n+ // init parent attached events\n+ const parentData = vm.$options... | 2016-04-16T02:22:57 |
golang/go | c6ac7362888c25dd1251adaa11e1503cf78ec26d | 53af292aed21c3f6ea75d16e5b25f660b2c028fb | runtime: prevent mutual deadlock between GC stopTheWorld and suspendG
Almost everywhere we stop the world we casGToWaitingForGC to prevent
mutual deadlock with the GC trying to scan our stack. This historically
was only necessary if we weren't stopping the world to change the GC
phase, because what we were worried abo... | [
{
"path": "src/runtime/mgc.go",
"patch": "@@ -1048,7 +1048,7 @@ func gcMarkTermination(stw worldStop) {\n \t// N.B. The execution tracer is not aware of this status\n \t// transition and handles it specially based on the\n \t// wait reason.\n-\tcasGToWaitingForGC(curgp, _Grunning, waitReasonGarbageCollectio... | 2025-06-14T02:45:08 |
mrdoob/three.js | e8ad12d2fa4611665713e4a984c5b00374613159 | 43093ba8ff31bedeb5aaaa0e1a7b59c178d48947 | Fixed typo in TSLEncoder.js (#27075) | [
{
"path": "examples/jsm/transpiler/TSLEncoder.js",
"patch": "@@ -57,7 +57,7 @@ class TSLEncoder {\n \t\tthis.uniqueNames = false;\n \n \t\tthis._currentProperties = {};\n-\t\tthis._lastStatment = null;\n+\t\tthis._lastStatement = null;\n \n \t}\n \n@@ -533,13 +533,13 @@ ${ this.tab }} );\\n\\n`;\n \n \tsetL... | 2023-10-28T06:00:30 |
vuejs/vue | d1fc82dbba86a91704269e62699f63d645dd8baf | 11a4addc1b50835ce55fb31f583e8f71bf54d45d | fix parent data merge | [
{
"path": "src/runtime/instance/render.js",
"patch": "@@ -1,5 +1,5 @@\n import Watcher from '../observer/watcher'\n-import { query, resolveAsset, hasOwn } from '../util/index'\n+import { extend, query, resolveAsset, hasOwn } from '../util/index'\n import { createElement, patch, updateListeners } from '../vd... | 2016-04-15T23:36:58 |
denoland/deno | c28cb56357510219a9ad649642d9915f0141635a | c015b8affdfb96cf336aafe2275834dc46a1fb25 | fix: inspector rewrite resource name to url (#29216)
Fixes: https://github.com/denoland/deno/issues/27003 | [
{
"path": "Cargo.lock",
"patch": "@@ -1763,9 +1763,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.346.0\"\n+version = \"0.347.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7aa52a258b569fd6ab2756d2435a56c82a4dc6cb749d8cf7957ffacdf293334... | 2025-05-08T21:12:54 |
golang/go | 1be5eb2686d8050c7067897b1ed98446ff8566c5 | 3a4d10bfca5cca54b69c50123d1245604c334e0f | [dev.simd] cmd/compile: fix signature error of PairDotProdAccumulate.
This CL is generated by CL 682135.
Change-Id: I6f004b2eca6323f1ff22555c85db993386f24c6c
Reviewed-on: https://go-review.googlesource.com/c/go/+/682155
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -1115,9 +1115,9 @@\n (MaskedSaturatedSubUint8x16 x y mask) => (VPSUBSBMasked128 x y (VPMOVVec8x16ToM <types.TypeMask> mask))\n (MaskedSaturatedSubUint8x32 x y mask) => (VPSUBSBMasked256 x y (VPMOVVec8x32ToM <types.TypeMask> mask))\n... | 2025-06-16T22:53:36 |
mrdoob/three.js | e8c33fd6770edd700f9d5fc55476055fe06efcfb | 4527c3e8498ebdc42e7eb40fcfa90435b9c95514 | BatchedMesh: Fix failure with MeshBasicMaterial (#27074)
* Fix BatchedMesh failing with MeshBasicMaterial
* Fix indentation | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -173,10 +173,14 @@ class BatchedMesh extends Mesh {\n \t\t\t\t\t'#include <skinning_pars_vertex>\\n'\n \t\t\t\t\t\t+ batchingParsVertex\n \t\t\t\t)\n+\t\t\t\t.replace(\n+\t\t\t\t\t'#include <uv_vertex>',\n+\t\t\t\t\t'#include <uv_vertex>\\n'\n+\t... | 2023-10-27T16:04:02 |
vuejs/vue | 0e940ac5af072e1c85b6346c43c20d0a66c75393 | fdfcb9319970298e0c2f4318e6360db1b8dd3d8e | fix update props | [
{
"path": "src/runtime/instance/render.js",
"patch": "@@ -72,7 +72,7 @@ function updateParentCallbacks (vm, data, parentData) {\n function updateProps (vm, data) {\n if (data.attrs || data.props) {\n for (let key in vm.$options.props) {\n- let newVal = getPropValue(data)\n+ let newVal = getP... | 2016-04-15T21:45:14 |
denoland/deno | 9d0a833e7b5574e664a3d4088dbe4e6436a71e04 | ed55e915a2ea6b835a4b1416b6759b8ab23e2304 | fix: bump default @types/node version range to 22.15.14 (#28407)
Fixes https://github.com/denoland/deno/pull/28168#discussion_r1982740706
---------
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "cli/npm/installer/resolution.rs",
"patch": "@@ -111,7 +111,7 @@ async fn add_package_reqs_to_snapshot(\n fn get_types_node_version() -> VersionReq {\n // WARNING: When bumping this version, check if anything needs to be\n // updated in the `setNodeOnlyGlobalNames` call in 99_main_compil... | 2025-05-08T17:44:22 |
golang/go | 53af292aed21c3f6ea75d16e5b25f660b2c028fb | d05825468921f8d0e54c81f59330d3b263057a54 | encoding/json/jsontext: fix spelling error
Change-Id: Ic1f385afbe35addba8b3c439ccb64c56b1d300c9
Reviewed-on: https://go-review.googlesource.com/c/go/+/681795
Reviewed-by: Sean Liao <sean@liao.dev>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Joseph Tsai <joetsa... | [
{
"path": "src/encoding/json/jsontext/doc.go",
"patch": "@@ -10,7 +10,7 @@\n // primitive data types such as booleans, strings, and numbers,\n // in addition to structured data types such as objects and arrays.\n //\n-// This package (encoding/json/jsontxt) is experimental,\n+// This package (encoding/json/... | 2025-06-16T05:51:57 |
mrdoob/three.js | 5e43514cf618cd45ef99d45c93535cd05a7b9bd8 | b1ff9598d9fccaa025405944b946b76cac5fbb7a | BatchedMesh: Make data copying more robust, handle interleaved attributes (#27066)
* BatchedMesh: Remove unused fields
* BatchedMesh: Add thrown errors in unimplemented functions
* Add PURE and glsl identifiers
* Add more error handling
* More errors
* Fix batched index overrun
* BatchedMesh: Check f... | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -64,6 +64,36 @@ const batchingVertex = /* glsl */`\n // @TODO: SkinnedMesh support?\n // @TODO: Future work if needed. Move into the core. Can be optimized more with WEBGL_multi_draw.\n \n+// copies data from attribute \"src\" into \"target\" sta... | 2023-10-27T08:14:28 |
vuejs/vue | 054c2c3de2976c8f87b7a52980bc89c12d3d90ee | b6a1db88b87fb88b1317f4046df19d94623b672d | fix attr merging | [
{
"path": "src/runtime/instance/render.js",
"patch": "@@ -42,9 +42,10 @@ function resolveSlots (vm, children) {\n function mergeParentAttrs (vm, data, parentData) {\n if (parentData.attrs) {\n const props = vm.$options.props\n+ const attrs = data.attrs || (data.attrs = [])\n for (let key in par... | 2016-04-15T19:35:47 |
denoland/deno | ed55e915a2ea6b835a4b1416b6759b8ab23e2304 | e2047941f7418f0eb887c0d3a8d913c5ff302924 | fix(node:http): `ServerResponse.req` not set (#29211)
This PR sets `ServerRsposne.req` properly. See
https://github.com/nodejs/node/blob/e38ce27f3ca0a65f68a31cedd984cddb927d4002/lib/_http_server.js#L201
Fixes https://github.com/denoland/deno/issues/29209 | [
{
"path": "ext/node/polyfills/http.ts",
"patch": "@@ -1397,6 +1397,7 @@ function onError(self, error, cb) {\n }\n \n export type ServerResponse = {\n+ req: IncomingMessageForServer;\n statusCode: number;\n statusMessage?: string;\n \n@@ -1461,9 +1462,11 @@ type ServerResponseStatic = {\n \n export cons... | 2025-05-08T16:42:04 |
mrdoob/three.js | b1ff9598d9fccaa025405944b946b76cac5fbb7a | d2f7811e9625ceb0850a0fa9764cb6460228c331 | XRButton: allow specifying optional and required features (#27030)
* Update WebXRManager and XRButton to offer light estimation
Update the XRButton so that it can be passed optional and required
features to be enabled on the XRSession. This is useful for enabling
light estimation.
Update the WebXRManager inter... | [
{
"path": "examples/jsm/webxr/XRButton.js",
"patch": "@@ -1,6 +1,6 @@\n class XRButton {\n \n-\tstatic createButton( renderer ) {\n+\tstatic createButton( renderer, sessionInit = {} ) {\n \n \t\tconst button = document.createElement( 'button' );\n \n@@ -56,16 +56,18 @@ class XRButton {\n \n \t\t\t\tif ( cur... | 2023-10-27T08:13:37 |
golang/go | 3254c2bb8308690a88a9f62b7f51c84d80325e79 | 816199e421f743324e9c1c82bda22d1d0f53845c | internal/reflectlite: fix comment about meaning of flag field
Copied current (presumably correct) comment text from reflect package.
Change-Id: I19582b3675fbcb96a925002498d24ad2b7bc6178
Reviewed-on: https://go-review.googlesource.com/c/go/+/681935
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUC... | [
{
"path": "src/internal/reflectlite/value.go",
"patch": "@@ -43,17 +43,19 @@ type Value struct {\n \tptr unsafe.Pointer\n \n \t// flag holds metadata about the value.\n-\t// The lowest bits are flag bits:\n+\t//\n+\t// The lowest five bits give the Kind of the value, mirroring typ.Kind().\n+\t//\n+\t// The ... | 2025-06-14T23:38:26 |
mrdoob/three.js | 3c217831c01c1334f98504cf99379b8fa7b3d19d | 43a993f54c31e10a0d4bb0f160163db4e403f2c5 | WebXR: Add docs page for XREstimatedLight (#27041)
* Add docs page for XREstimatedLight
* Fix link in list json and copy in docs page
* Update XREstimatedLight.html
Fix indentations.
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "docs/examples/en/webxr/XREstimatedLight.html",
"patch": "@@ -0,0 +1,122 @@\n+<!DOCTYPE html>\n+<html lang=\"en\">\n+\t<head>\n+\t\t<meta charset=\"utf-8\" />\n+\t\t<base href=\"../../../\" />\n+\t\t<script src=\"page.js\"></script>\n+\t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"page.css\... | 2023-10-27T07:04:42 |
denoland/deno | e2047941f7418f0eb887c0d3a8d913c5ff302924 | 5f139910a1a79d8b75654d410faed8dd95f62d86 | fix(ext/node): dgram multicast group membership (#29207)
Closes https://github.com/denoland/deno/issues/28421
Ref https://github.com/denoland/deno/issues/18324 | [
{
"path": "ext/net/01_net.js",
"patch": "@@ -379,11 +379,16 @@ class Listener {\n }\n \n const _setBroadcast = Symbol(\"setBroadcast\");\n+const _dropMembership = Symbol(\"dropMembership\");\n \n function setDatagramBroadcast(conn, broadcast) {\n return conn[_setBroadcast](broadcast);\n }\n \n+function dr... | 2025-05-08T16:37:40 |
golang/go | 816199e421f743324e9c1c82bda22d1d0f53845c | ea00461b17c7579d1c9aff2398953b61747ce642 | runtime: don't let readTrace spin on trace.shutdown
Issue #74045 describes a scenario in which gopark is inlined into
readTrace, such that there are no preemption points. This is only a
problem because readTrace spins if trace.shutdown is set, through
traceReaderAvailable. However, trace.shutdown is almost certainly
o... | [
{
"path": "src/runtime/trace.go",
"patch": "@@ -956,7 +956,7 @@ func traceReader() *g {\n // scheduled and should be. Callers should first check that\n // (traceEnabled() || traceShuttingDown()) is true.\n func traceReaderAvailable() *g {\n-\t// There are three conditions under which we definitely want to s... | 2025-06-10T21:44:56 |
mrdoob/three.js | 43a993f54c31e10a0d4bb0f160163db4e403f2c5 | 0a948793553e749a4ba28ca95656d83cfe70238a | WebGPURenderer: Use common clearing code and fix depth state for WebGLBackend (#27065)
* fix clearing
* add ;
---------
Co-authored-by: aardgoose <angus.sawyer@email.com> | [
{
"path": "examples/jsm/renderers/webgl/WebGLBackend.js",
"patch": "@@ -63,34 +63,7 @@ class WebGLBackend extends Backend {\n \n \t\tthis._setFramebuffer( renderContext );\n \n-\t\tlet clear = 0;\n-\n-\t\tif ( renderContext.clearColor ) clear |= gl.COLOR_BUFFER_BIT;\n-\t\tif ( renderContext.clearDepth ) cle... | 2023-10-27T00:29:39 |
denoland/deno | 5f139910a1a79d8b75654d410faed8dd95f62d86 | 59ffc1987c67f570e2081457c898efe51c872945 | fix(ext/node): support http over unix sockets (#29182)
Closes https://github.com/denoland/deno/issues/20255
---------
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com> | [
{
"path": "ext/node/ops/http.rs",
"patch": "@@ -139,6 +139,10 @@ pub enum ConnError {\n #[class(generic)]\n #[error(transparent)]\n ReuniteTcp(#[from] tokio::net::tcp::ReuniteError),\n+ #[cfg(unix)]\n+ #[class(generic)]\n+ #[error(transparent)]\n+ ReuniteUnix(#[from] tokio::net::unix::ReuniteError... | 2025-05-08T16:37:28 |
golang/go | ea00461b17c7579d1c9aff2398953b61747ce642 | 96a6e147b2b02b1f070d559cb2c8e1c25c9b78c3 | internal/trace: make Value follow reflect conventions
A previous change renamed Value.Uint64 to Value.ToUint64 to accomodate
string values. The method for a string value is then Value.ToString,
while the method for a debug string (for example, for fmt) is just
called String, as per fmt.Stringer.
This change follows a... | [
{
"path": "src/cmd/trace/gen.go",
"patch": "@@ -283,11 +283,11 @@ func (g *globalMetricGenerator) GlobalMetric(ctx *traceContext, ev *trace.Event)\n \tm := ev.Metric()\n \tswitch m.Name {\n \tcase \"/memory/classes/heap/objects:bytes\":\n-\t\tctx.HeapAlloc(ctx.elapsed(ev.Time()), m.Value.ToUint64())\n+\t\tc... | 2025-06-11T21:35:29 |
vuejs/vue | e9ae8187c2be7e03da425a23545b4523eca70c45 | 57f4b73005fe355d43ebea7b0e933dd16c6ef9fb | fix children flattening | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -3,6 +3,7 @@ import { genDirectives } from './directives/index'\n \n export function generate (ast) {\n const code = ast ? genElement(ast) : '__h__(\"div\")'\n+ console.log(code)\n return `with (this) { return ${code}}`\n }\n \n@@ -32,7 +33,7 @@ f... | 2016-04-15T02:27:37 |
mrdoob/three.js | 64087651614f07334f60838f6910c71a718d87aa | 23379064eb890924bbd5699b7d9464f7aad28823 | CSS3DRenderer: Fix positioning bugs in Chrome and Firefox (#27017) | [
{
"path": "examples/jsm/renderers/CSS3DRenderer.js",
"patch": "@@ -95,7 +95,7 @@ class CSS3DRenderer {\n \t\tlet _widthHalf, _heightHalf;\n \n \t\tconst cache = {\n-\t\t\tcamera: { fov: 0, style: '' },\n+\t\t\tcamera: { style: '' },\n \t\t\tobjects: new WeakMap()\n \t\t};\n \n@@ -129,13 +129,6 @@ class CSS3... | 2023-10-26T09:49:50 |
denoland/deno | 59ffc1987c67f570e2081457c898efe51c872945 | fc74cfe885bee70372a4c98942910a0bc18e742d | fix(lsp): discard quick fixes importing /node_modules/ paths (#29194) | [
{
"path": "cli/lsp/analysis.rs",
"patch": "@@ -594,7 +594,16 @@ impl<'a> TsResponseImportMapper<'a> {\n resolution_mode,\n NodeResolutionKind::Types,\n )\n- .is_ok()\n+ .ok()\n+ .filter(|s| {\n+ let specifier = self\n+ .tsc_specifier_map\n+ .norm... | 2025-05-08T16:08:10 |
vuejs/vue | 57f4b73005fe355d43ebea7b0e933dd16c6ef9fb | dca992ab95f181b8817dc8e33b6c5cdd717f5762 | fix watch option string | [
{
"path": "src/runtime/instance/state.js",
"patch": "@@ -120,6 +120,9 @@ function initWatch (vm) {\n options = handler\n handler = handler.handler\n }\n+ if (typeof handler === 'string') {\n+ handler = vm[handler]\n+ }\n vm.$watch(key, handler, options)\n }\n... | 2016-04-15T02:18:23 |
mrdoob/three.js | 23379064eb890924bbd5699b7d9464f7aad28823 | b37d24e9da8f9c2a6c819a320b9a1f87104dd9cd | BatchedMesh: Add thrown errors (#27060)
* BatchedMesh: Remove unused fields
* BatchedMesh: Add thrown errors in unimplemented functions
* Add PURE and glsl identifiers
* Add more error handling
* More errors
* Fix batched index overrun
* BatchedMesh: Check for normalized, as well
* Fix screenshot
... | [
{
"path": "examples/jsm/objects/BatchedMesh.js",
"patch": "@@ -19,7 +19,7 @@ const _zeroScaleMatrix = new Matrix4().set(\n );\n \n // Custom shaders\n-const batchingParsVertex = `\n+const batchingParsVertex = /* glsl */`\n #ifdef BATCHING\n \tattribute float ${ ID_ATTR_NAME };\n \tuniform highp sampler2D ba... | 2023-10-26T08:36:20 |
golang/go | b9a548775fda6a74de8ab2020b2b95b4ebf1a2a9 | ca01eab9c7c9c4987a36f6887e332a1fcba757f0 | cmd/compile: add up-to-date test for generated files
This runs the ssa/_gen generator writing files into
a temporary directory, and then checks that there are
no differences with what is currently in the ssa directory,
and also checks that any file with the "generated from
_gen/..." header was actually generated, and ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/README",
"patch": "@@ -9,3 +9,8 @@ more information.\n \n To regenerate everything, run \"go generate\" on the ssa package\n in the parent directory.\n+\n+The parent directory contains a test in generate_test.go that will fail\n+if the generated files are not up-... | 2025-06-10T18:15:46 |
denoland/deno | fc74cfe885bee70372a4c98942910a0bc18e742d | ac428431573d924baa908ad035298136a85f974b | fix(lsp): use correct resolution kind when checking for no-export-npm (#29180) | [
{
"path": "cli/lsp/diagnostics.rs",
"patch": "@@ -25,6 +25,7 @@ use deno_core::unsync::spawn_blocking;\n use deno_core::unsync::JoinHandle;\n use deno_core::url::Url;\n use deno_core::ModuleSpecifier;\n+use deno_graph::source::ResolutionKind;\n use deno_graph::source::ResolveError;\n use deno_graph::Resolut... | 2025-05-08T15:30:15 |
vuejs/vue | dca992ab95f181b8817dc8e33b6c5cdd717f5762 | 4e86d3aba9d734bf2b50327933d221f3ceb522f2 | fix lint | [
{
"path": "src/runtime/vdom/patch.js",
"patch": "@@ -193,11 +193,12 @@ export default function createPatchFunction (modules, api) {\n }\n \n function patchVnode (oldVnode, vnode, insertedVnodeQueue) {\n- let i, j, hook\n+ let i, hook\n if (isDef(i = vnode.data) && isDef(hook = i.hook) && isDef... | 2016-04-15T01:47:44 |
mrdoob/three.js | 9b302a919b90b10c4593e81413ceeaabb0638a99 | 84cd768c7c42ebbd89699319b6c338456dad45d3 | WebGPU: Compute Rain (#27053)
* compute rain
* fix title
* Update puppeteer.js
* fix for 120Hz or differents frame rate screen
* forceSinglePass for optimization
* cleanup
* improved random
* cleanup
* ripple pivot offset
* update
* TODO: Fix .castShadow and remove it
* cleanup
* up... | [
{
"path": "examples/files.json",
"patch": "@@ -315,6 +315,7 @@\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_compute_audio\",\n \t\t\"webgpu_compute_particles\",\n+\t\t\"webgpu_compute_particles_rain\",\n \t\t\"webgpu_compute_points\",\n \t\t\"webgpu_compute_texture\",\n \t\t\"webgpu_compute_texture_pingpong\"... | 2023-10-26T00:30:52 |
golang/go | 5a08865de339b5eeb8ad1c52635ea8ba505aafec | d166a0b03e88e3ffe17a5bee4e5405b5091573c6 | net: remove some BUG entries
A few methods that were not implemented on Windows are implemented
in CL 668195.
Change-Id: I35423792a5af00f29fcd24e56a6dfcf013669371
Reviewed-on: https://go-review.googlesource.com/c/go/+/680180
Reviewed-by: Quim Muntal <quimmuntal@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@lu... | [
{
"path": "src/net/iprawsock.go",
"patch": "@@ -24,9 +24,6 @@ import (\n // BUG(mikio): On JS and Plan 9, methods and functions related\n // to IPConn are not implemented.\n \n-// BUG(mikio): On Windows, the File method of IPConn is not\n-// implemented.\n-\n // IPAddr represents the address of an IP end po... | 2025-06-09T20:59:00 |
denoland/deno | ac428431573d924baa908ad035298136a85f974b | 53b51113f5df9245670bfc85e1e23b2ccf5a4dd6 | fix(ext/node): use primordials in `ext/node/polyfills/internal/dgram.ts` (#29204)
Towards #24236. Replaces `Symbol` as well as as `Function` and `Map`
instance methods with the primordial equivalents. A "prefer-primordial"
ignore comment was added to the `handle.bind` method call within the
`_createSocketHandle` funct... | [
{
"path": "ext/node/polyfills/internal/dgram.ts",
"patch": "@@ -20,9 +20,6 @@\n // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-p... | 2025-05-08T14:03:55 |
mrdoob/three.js | 2755feafd60b0cff4cca341ff98d725969b51154 | 6fb6f43a67b62691d150ffb3c75a16e47e385219 | Add KTX2 Texture support for editor (#27016)
* Add KTX2 Texture support for editor
* remove debug log
* Fixed image checks
* image check
* Update ui.three.js
* minor refactor
---------
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "editor/js/libs/ui.three.js",
"patch": "@@ -1,5 +1,6 @@\n import * as THREE from 'three';\n \n+import { KTX2Loader } from 'three/addons/loaders/KTX2Loader.js';\n import { RGBELoader } from 'three/addons/loaders/RGBELoader.js';\n import { TGALoader } from 'three/addons/loaders/TGALoader.js';\n \n@@... | 2023-10-25T08:58:04 |
vuejs/vue | 4e86d3aba9d734bf2b50327933d221f3ceb522f2 | be9e16e20fce0d6c9b5ab72be02894dc05a2734f | fix child component keys | [
{
"path": "src/runtime/instance/render.js",
"patch": "@@ -10,10 +10,7 @@ export const renderState = {\n export function initRender (vm) {\n vm._vnode = null\n vm._mounted = false\n- vm._renderData = vm.$options._renderData\n vm.$slots = {}\n- // props are set in initState\n- resolveSlots(vm, vm.$op... | 2016-04-15T01:44:45 |
golang/go | d4c6effaa7b95a2ea149ece4a400c0ace2773839 | 7fa2c736b3dbcc741b4575f4df758532aaee34f7 | cmd/compile: add up-to-date test for generated files
This runs the ssa/_gen generator writing files into
a temporary directory, and then checks that there are
no differences with what is currently in the ssa directory,
and also checks that any file with the "generated from
_gen/..." header was actually generated, and ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/README",
"patch": "@@ -9,3 +9,8 @@ more information.\n \n To regenerate everything, run \"go generate\" on the ssa package\n in the parent directory.\n+\n+The parent directory contains a test in generate_test.go that will fail\n+if the generated files are not up-... | 2025-06-10T18:15:46 |
mrdoob/three.js | 7905b2b4de3ece9dbf3f2c2cc8f704c0434c36da | 280b907208fc55f2256055b59b998d9281ed7adb | BatchedMesh Example: fix floating point error in rotation (#27046)
* Batched Mesh Example: fix case where decomposing caused rotation to settle on rotating on x axis
* Store matrices instead of euler objects | [
{
"path": "examples/webgl_mesh_batch.html",
"patch": "@@ -41,7 +41,7 @@\n \t\tlet camera, controls, scene, renderer;\n \t\tlet geometries, mesh;\n \t\tconst ids = [];\n-\t\tconst dummy = new THREE.Object3D();\n+\t\tconst matrix = new THREE.Matrix4();\n \n \t\t//\n \n@@ -172,6 +172,7 @@\n \t\t\tconst vertexC... | 2023-10-25T08:34:01 |
vuejs/vue | 1cbaeb7d67d68bd0b67383c5e19f9b9551b0c648 | 56073ca8532d90706cd50b8a3177011093b01675 | fix child patching | [
{
"path": "src/runtime/instance/state.js",
"patch": "@@ -29,7 +29,7 @@ function initProps (vm) {\n if (props) {\n withoutConversion(() => {\n for (let key in props) {\n- defineReactive(vm, key, attrs[key], true /* immutable */)\n+ defineReactive(vm, key, attrs[key])\n }\n ... | 2016-04-14T22:27:07 |
denoland/deno | 53b51113f5df9245670bfc85e1e23b2ccf5a4dd6 | f334f903efc9a09d1fe6354a5ec077294307646e | fix(ext/canvas): `createImageBitmap` must ignore the `Blob.type` value (#28741)
fixes https://github.com/denoland/deno/issues/28723
I might misunderstood the spec. We should always sniff the MIME type
from the byte sequence when the input is `Blob`. | [
{
"path": "ext/canvas/01_image.js",
"patch": "@@ -250,7 +250,9 @@ function createImageBitmap(\n if (isBlob) {\n imageBitmapSource = 0;\n buf = new Uint8Array(await image.arrayBuffer());\n- const mimeTypeString = sniffImage(image.type);\n+ // NOTE: The MIME type of image/svg+xml can... | 2025-05-08T13:57:28 |
mrdoob/three.js | 7d4628dade519c19f7c53c3f26ac6c7a43c68272 | 9d26154320c58c2cfb7e5fe1a83dfd951a211220 | Editor: Remove `Fix Color Maps` script. (#27033)
* Editor: Remove `Fix Color Maps` script.
* Editor: Clean up. | [
{
"path": "editor/js/Menubar.Edit.js",
"patch": "@@ -149,71 +149,6 @@ function MenubarEdit( editor ) {\n \t} );\n \toptions.add( option );\n \n-\t//\n-\n-\toptions.add( new UIHorizontalRule() );\n-\n-\t// Set textures to sRGB. See #15903\n-\n-\toption = new UIRow();\n-\toption.setClass( 'option' );\n-\topti... | 2023-10-23T15:57:57 |
golang/go | 7fa2c736b3dbcc741b4575f4df758532aaee34f7 | 281cfcfc1b15fbb87fd32660b0a1d50be996d108 | os: disallow Root.Remove(".") on Plan 9, js, and Windows
Windows already forbids this, since removing the root causes a
sharing violation (can't delete the directory while the os.Root
has a handle open to it), but add a more explicit check for
attempts to delete "." and return EINVAL.
Note that this change to Windows... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -192,6 +192,11 @@ func Mkdirat(dirfd syscall.Handle, name string, mode uint32) error {\n }\n \n func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n+\tif name == \".\" {\n+\t\t// NtOpenFile's documentation isn't expli... | 2025-06-05T21:27:45 |
vuejs/vue | 5970dbd2f5694efb1328789f4f0f83d89a5e4beb | e223b87bd390e99061d4a742424455b7da316be2 | fix dynamic props | [
{
"path": "src/runtime/instance/render.js",
"patch": "@@ -20,16 +20,6 @@ export function initRender (vm) {\n }\n }\n \n-export function setProps (vm, data) {\n- const attrs = (data && data.attrs) || {}\n- const props = vm.$options.props\n- if (props) {\n- for (let key in props) {\n- vm[key] = a... | 2016-04-14T13:04:17 |
mrdoob/three.js | 45b985db325fcfaa448f1d89970912af9d2450f3 | 0a612e365596c0fadecac7c020b21c82a88ee00b | WebGPURenderer: Fix color mask setting in WebGLBackend (#27026)
Co-authored-by: aardgoose <angus.sawyer@email.com> | [
{
"path": "examples/jsm/renderers/webgl/utils/WebGLState.js",
"patch": "@@ -30,6 +30,7 @@ class WebGLState {\n \t\tthis.currentPremultipledAlpha = null;\n \t\tthis.currentPolygonOffsetFactor = null;\n \t\tthis.currentPolygonOffsetUnits = null;\n+\t\tthis.currentColorMask = null;\n \t\tthis.currentDepthFunc ... | 2023-10-23T03:30:20 |
denoland/deno | f334f903efc9a09d1fe6354a5ec077294307646e | 802826e54ed1c5f25081c37e3c2d01a0f217b99c | fix(ext/node): `arrayBufferViewHasBuffer` internal util (#28827) | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -458,6 +458,7 @@ deno_core::extension!(deno_node,\n ops::require::op_require_package_imports_resolve<P, TInNpmPackageChecker, TNpmPackageFolderResolver, TSys>,\n ops::require::op_require_break_on_next_statement,\n ops::util::op_node_guess_handle_type,\n+... | 2025-05-08T04:28:08 |
golang/go | 281cfcfc1b15fbb87fd32660b0a1d50be996d108 | 4f86f2267167a63b673c4a2a2994e008b32c90ea | runtime: handle system goroutines later in goroutine profiling
Before CL 650697, there was only one system goroutine that could
dynamically change between being a user goroutine and a system
goroutine, and that was the finalizer/cleanup goroutine. In goroutine
profiles, it was handled explicitly. It's status would be ... | [
{
"path": "src/runtime/mprof.go",
"patch": "@@ -1431,10 +1431,6 @@ func tryRecordGoroutineProfile(gp1 *g, pcbuf []uintptr, yield func()) {\n \t\t// so here we check _Gdead first.\n \t\treturn\n \t}\n-\tif isSystemGoroutine(gp1, false) {\n-\t\t// System goroutines should not appear in the profile.\n-\t\tretu... | 2025-06-10T16:42:59 |
vuejs/vue | f5fcfb63f23a3cadad4da6a3ec465bb87429949d | 058c555dac875d1c979b92ccaeb36412d6912c82 | fix child component destroy | [
{
"path": "src/runtime/instance/lifecycle.js",
"patch": "@@ -19,7 +19,7 @@ export function lifecycleMixin (Vue) {\n if (this._isDestroyed) {\n return\n }\n- this._callHook('beforeDestroy')\n+ callHook(this, 'beforeDestroy')\n this._isBeingDestroyed = true\n // teardown watchers\n... | 2016-04-14T10:40:37 |
mrdoob/three.js | 4f65c54d0f80ba52ca245703228013b76a2dfe11 | b8d9e02151f90a698bd2535995636a646204fea7 | fix: grammatical mistakes in README.md (#27024)
fixed some grammatical mistakes | [
{
"path": "README.md",
"patch": "@@ -8,7 +8,7 @@\n \n #### JavaScript 3D library\n \n-The aim of the project is to create an easy to use, lightweight, cross-browser, general purpose 3D library. The current builds only include a WebGL renderer but WebGPU (experimental), SVG and CSS3D renderers are also avail... | 2023-10-23T01:38:52 |
denoland/deno | 802826e54ed1c5f25081c37e3c2d01a0f217b99c | d67da9d4e7c81db4a768c730e3cd9cfad0fd3824 | fix(ext/node): implement dgram setBroadcast (#29195) | [
{
"path": "ext/net/01_net.js",
"patch": "@@ -27,6 +27,7 @@ import {\n op_net_recv_unixpacket,\n op_net_send_udp,\n op_net_send_unixpacket,\n+ op_net_set_broadcast_udp,\n op_net_set_multi_loopback_udp,\n op_net_set_multi_ttl_udp,\n op_set_keepalive,\n@@ -377,6 +378,12 @@ class Listener {\n }\n... | 2025-05-08T03:33:43 |
golang/go | 4f86f2267167a63b673c4a2a2994e008b32c90ea | 773701a853a3105696c59c2b92b2eff35e0e055b | testing/synctest, runtime: avoid panic when using linker-alloc WG from bubble
We associate WaitGroups with synctest bubbles by attaching a
special to the WaitGroup. It is not possible to attach a special
to a linker-allocated value, such as:
var wg sync.WaitGroup
Avoid panicking when accessing a linker-allocated... | [
{
"path": "src/internal/synctest/synctest.go",
"patch": "@@ -8,6 +8,7 @@\n package synctest\n \n import (\n+\t\"internal/abi\"\n \t\"unsafe\"\n )\n \n@@ -22,14 +23,25 @@ func Wait()\n //go:linkname IsInBubble\n func IsInBubble() bool\n \n-// Associate associates p with the current bubble.\n-// It returns fa... | 2025-06-05T20:47:06 |
vuejs/vue | 5c3edf850bcf7dacf0fd4d6b625fce2e937ebe93 | 5ce49792e29827d4b7964fe5fa94453fef88faa6 | fix child update check | [
{
"path": "src/runtime/instance/render.js",
"patch": "@@ -39,7 +39,7 @@ export function renderMixin (Vue) {\n }\n // check props\n const props = this.$options.props\n- if (props && data.attrs) {\n+ if (props && data && data.attrs) {\n for (let key in props) {\n let oldVal = t... | 2016-04-14T09:34:16 |
mrdoob/three.js | 9e29fbb6548af97343c56e69da992d36f0607763 | 328ec21f594fd7cff73a7476f0960b70625ef2ce | Chore: Typo fixed- (#27020) | [
{
"path": "docs/api/en/extras/core/Curve.html",
"patch": "@@ -77,7 +77,7 @@ <h3>[method:Array getLengths]( [param:Integer divisions] )</h3>\n \n \t\t<h3>[method:undefined updateArcLengths]()</h3>\n \t\t<p>\n-\t\t\tUpdate the cumlative segment distance cache. The method must be called\n+\t\t\tUpdate the cumu... | 2023-10-21T08:22:37 |
denoland/deno | d67da9d4e7c81db4a768c730e3cd9cfad0fd3824 | d372c0d60724c69da06770da4e29c0a069af6866 | feat(ext/fetch): support custom DNS resolver (#27740)
- Declare a new trait `Resolve` whose only method resolves a `Name` into
`Result<SocketAddrs, io::Error>` asynchronously.
- Add a new variant to `Resolver` encapsulating a custom DNS resolver,
and modify `Resolver`'s implementation of `Service<Name>` accordingly.
-... | [
{
"path": "ext/fetch/dns.rs",
"patch": "@@ -3,6 +3,7 @@ use std::future::Future;\n use std::io;\n use std::net::SocketAddr;\n use std::pin::Pin;\n+use std::sync::Arc;\n use std::task::Poll;\n use std::task::{self};\n use std::vec;\n@@ -19,6 +20,24 @@ pub enum Resolver {\n Gai(GaiResolver),\n /// hickory... | 2025-05-07T17:21:42 |
vuejs/vue | 55faec9fe56db7a13756d1e143ff3423fbe26421 | 3e39d7647d68169fac97f0f34c01d962200480e3 | fix runtime directive unbind | [
{
"path": "src/runtime/vdom/modules/directives.js",
"patch": "@@ -5,8 +5,8 @@ export default {\n update: function (oldVnode, vnode) {\n applyDirectives(oldVnode, vnode, 'update', true)\n },\n- destroy: function (oldVnode, vnode) {\n- applyDirectives(oldVnode, vnode, 'unbind')\n+ destroy: functi... | 2016-04-14T01:04:38 |
mrdoob/three.js | 328ec21f594fd7cff73a7476f0960b70625ef2ce | 872f962253dee75ca908a82dec9567f2151b6663 | TSL Transpiler: GLSL -> TSL (#26982)
* tsl transpiler - initial version
* update syntax
* fix names
* fix title
* update thumbnail
* more operators and initial boolean
* update primitives
* cleanup
* cleanup
* update
* conditional
* unary, qualifier
* update test
* unary before
... | [
{
"path": "examples/files.json",
"patch": "@@ -343,12 +343,14 @@\n \t\t\"webgpu_particles\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",\n+\t\t\"webgpu_shadertoy\",\n \t\t\"webgpu_shadowmap\",\n \t\t\"webgpu_skinning\",\n \t\t\"webgpu_skinning_instancing\",\n \t\t\"webgpu_skinning_points\",\n \t\t\"webg... | 2023-10-21T05:07:13 |
denoland/deno | 49d19d718e99a680f24e62379d92712055072110 | 4c8b208c6cf7c07860aefc82374936f1f171ad4e | fix(types): Change ffi native type from `Uint8Array` -> `Uint8Array<ArrayBuffer>` (#29127)
This was missed in the TypeScript 5.7 migration PR
(https://github.com/denoland/deno/pull/27857). | [
{
"path": "cli/tsc/dts/lib.deno.ns.d.ts",
"patch": "@@ -5671,7 +5671,7 @@ declare namespace Deno {\n * @category FFI\n */\n export type FromNativeType<T extends NativeType = NativeType> = T extends\n- NativeStructType ? Uint8Array\n+ NativeStructType ? Uint8Array<ArrayBuffer>\n : T extends... | 2025-05-07T15:53:27 |
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.