repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
mrdoob/three.js | a8536871e792cc9a8329634d4345ea83a07bc235 | 1d6ae39f9dee179404133e3d1b65d4c7286577be | Docs: Fix typo. (#31046) | [
{
"path": "examples/jsm/postprocessing/AfterimagePass.js",
"patch": "@@ -91,7 +91,7 @@ class AfterimagePass extends Pass {\n \n \t/**\n \t * The damping intensity, from 0.0 to 1.0. A higher value means a stronger after image effect.\n-\t * \n+\t *\n \t * @type {number}\n \t */\n \tget damp() {\n@@ -154,7 +1... | 2025-05-05T07:38:24 |
denoland/deno | 60814fb3995f096bab2713f052e740b2049ef41d | 4a9ae62b521f06b57b923e48a15113274cc897a6 | fix(node/crypto): randomBytes returns buffer with dedicated ArrayBuffer (#32048)
Fixes denoland/deno#32047
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com>
Co-authored-by: littledivy <34997667+lit... | [
{
"path": "ext/node/polyfills/internal/crypto/_randomBytes.ts",
"patch": "@@ -24,7 +24,7 @@ function generateRandomBytes(size: number) {\n );\n }\n \n- const bytes = Buffer.allocUnsafe(size);\n+ const bytes = Buffer.allocUnsafeSlow(size);\n \n //Work around for getRandomValues max generation\n i... | 2026-02-04T16:13:36 |
golang/go | 8564fede8929df5bbf9f10d35ff9d3620683ca80 | eecdb61eebabc083f588a349d4ce5ac2defaf2ca | cmd/go: remove reference to no longer existing -i flag
The flag was removed in CL 416094.
Fixes #76850
Change-Id: Ia219b4d2d8391f08487b4ff1bbec43766a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/730721
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1954,7 +1954,7 @@\n //\n //\t-o file\n //\t Save a copy of the test binary to the named file.\n-//\t The test still runs (unless -c or -i is specified).\n+//\t The test still runs (unless -c is specified).\n //\t If file ends in a slash or names a... | 2025-12-17T16:30:52 |
mrdoob/three.js | 1d6ae39f9dee179404133e3d1b65d4c7286577be | 868d7d837dd440725c015a2314c7efbc632fb383 | Examples: Make point lights demo more interesting. (#31040)
* Examples: Make point lights demo more interesting.
* Docs: Fix links.
* E2E: Update screenshot. | [
{
"path": "docs/api/ar/lights/PointLight.html",
"patch": "@@ -30,7 +30,7 @@ <h2>مثال للكود</h2>\n \t\t<h2>أمثلة (Examples)</h2>\n \t\t\t\n \t\t<p>\n-\t\t[example:webgl_lights_pointlights lights / pointlights ]<br />\n+\t\t[example:webgpu_lights_pointlights lights / pointlights ]<br />\n \t\t[example:webgl_e... | 2025-05-04T19:54:51 |
vuejs/vue | eaf6b54a389dd6e316df932b3fe3a5d6579e2499 | 04da767d10038d355b67778173ccf66ea74211c5 | chore: fix another link | [
{
"path": "BACKERS.md",
"patch": "@@ -41,7 +41,7 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n </tr><tr></tr>\n <tr>\n <td align=\"center\" valign=\"middle\">\n- <a href=\"https://datacamp.com/careers?utm_source=vuejs&utm_medium=sidebar\" target=\"... | 2018-01-12T14:47:00 |
mrdoob/three.js | 0455c67bc796a01fcfe47172d07b32c3bdf9ba0f | f54e8d39084396d06eb83ac5e328c0578fb16510 | Update bug_report.yml
Shorten name. | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -74,7 +74,7 @@ body:\n - Firefox\n - Safari\n - Edge\n- - Meta Quest Browser\n+ - Quest Browser\n - type: dropdown\n id: os\n attributes:",
"additions": 1,
"deletions": 1,
"language": ... | 2025-05-01T09:12:47 |
denoland/deno | 4a9ae62b521f06b57b923e48a15113274cc897a6 | 1b424993ce6e2fa5f7c89a691dd5d13f77977103 | fix: unstable_cron_socket_serve_reject flakiness caused by control socket coordination (#32053) | [
{
"path": "tests/specs/run/unstable_cron_socket_serve_reject/test_runner.js",
"patch": "@@ -23,8 +23,21 @@ const mainProcess = new Deno.Command(Deno.execPath(), {\n },\n }).spawn();\n \n-// Give Deno a moment to start and create its control socket\n-await new Promise((resolve) => setTimeout(resolve, 100))... | 2026-02-04T15:45:31 |
golang/go | 516699848b7c19b2b7f80de82c66012719f6835b | 8c28ab936a1042fad8531583ff7737aa361e324a | runtime/secret: warn users about allocations, loosen guarantees
The discussion at #76477 warranted some stronger documentation about
what is expected from users of the secret package. In addition, #76764
presented a problem about when a user can expect their secrets to be
deleted.
Fix by loosening the guarantee to wh... | [
{
"path": "src/runtime/secret/doc.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+//go:build goexperiment.runtimesecret\n+\n+// Package secret contains he... | 2025-12-10T10:13:05 |
vuejs/vue | 04da767d10038d355b67778173ccf66ea74211c5 | f0e9dc44672c6b68d919f26f5ccc49af21385a59 | chore: fix sponsor link | [
{
"path": "BACKERS.md",
"patch": "@@ -72,8 +72,8 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n </a>\n </td>\n <td align=\"center\" valign=\"middle\">\n- <a href=\"https://starter.someline.com/\" target=\"_blank\">\n- <img width=\"148... | 2018-01-12T14:45:34 |
mrdoob/three.js | 62244320918e55a9effd0713abab039e783d0bf6 | f00d971c7b57aefe36bf4bf8bdf7af5c01da89e1 | WebGPURenderer: Introduce `ProjectorLight` (#31022)
* Texture: Introduce `width`, `height`, `depth`
* Fix `lightShadowMatrix()` if `renderer.shadowMap.enabled` is `false`
* Remove `spotLight.attenuationNode`
* Introduce `ProjectorLight`
* add `webgpu_lights_projector` example
* Update webgpu_lights_projector.jpg
... | [
{
"path": "examples/files.json",
"patch": "@@ -342,6 +342,7 @@\n \t\t\"webgpu_lights_ies_spotlight\",\n \t\t\"webgpu_lights_phong\",\n \t\t\"webgpu_lights_physical\",\n+\t\t\"webgpu_lights_projector\",\n \t\t\"webgpu_lights_rectarealight\",\n \t\t\"webgpu_lights_selective\",\n \t\t\"webgpu_lights_spotlight\... | 2025-04-30T16:12:48 |
golang/go | 8c28ab936a1042fad8531583ff7737aa361e324a | 65b71c11d469029f755328c5e51742139f6b8686 | cmd/cgo: don't emit C local if it is not used
Fixes #76861
Change-Id: Icc8452e48ed736e8240f8afea18637c33b8e3ef8
Reviewed-on: https://go-review.googlesource.com/c/go/+/730600
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chase <drchase@google.com>
Reviewed... | [
{
"path": "src/cmd/cgo/internal/test/issue76861.go",
"patch": "@@ -0,0 +1,12 @@\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+//go:build cgo\n+\n+package cgotest\n+\n+// Issue 43639: N... | 2025-12-17T00:00:36 |
denoland/deno | 1b424993ce6e2fa5f7c89a691dd5d13f77977103 | 12134b0c470607fe4483a6188c2b02b19ca5a2a0 | fix(audit): make 'Path' property more readable (#32049)
Makes report more readable by adding spaces in `Path` property.
Before:
```
╭ @denotest/with-vuln2 can steal crypto keys
│ Severity: critical
│ Package: @edenotest/with-vuln2
│ Vulnerable: <2.0.0
│ Patched: >=2.0.0
│ Path: @denotest/using-vuln>@den... | [
{
"path": "cli/tools/pm/audit.rs",
"patch": "@@ -404,7 +404,11 @@ mod npm {\n if let Some(finding) = adv.findings.first()\n && let Some(path) = finding.paths.first()\n {\n- _ = writeln!(stdout, \"│ {} {}\", colors::gray(\"Path:\"), path);\n+ let path_fmt = path\n+ ... | 2026-02-04T13:34:47 |
vuejs/vue | 5191f13472d1fc37bdd601079970201fde6bf13e | 05299610ea3e89ddbcfe4d8ede0c298223766423 | fix(transition): should not add transition class when cancelled (#7391)
fix #7390 | [
{
"path": "src/platforms/web/runtime/modules/transition.js",
"patch": "@@ -149,13 +149,15 @@ export function enter (vnode: VNodeWithData, toggleDisplay: ?() => void) {\n addTransitionClass(el, startClass)\n addTransitionClass(el, activeClass)\n nextFrame(() => {\n- addTransitionClass(el, to... | 2018-01-05T22:45:59 |
denoland/deno | 12134b0c470607fe4483a6188c2b02b19ca5a2a0 | 9aca4f6c5331f0ced1ae1071211056608572932a | fix(ext/node): fix multiple node:zlib compatibility issues (#32039)
These fixes bring back number of failing `node:zlib` tests down to 8. | [
{
"path": "ext/node/ops/zlib/mod.rs",
"patch": "@@ -357,6 +357,22 @@ impl Zlib {\n Ok(zlib.err)\n }\n \n+ #[fast]\n+ pub fn params(\n+ &self,\n+ #[smi] level: i32,\n+ #[smi] strategy: i32,\n+ ) -> Result<(), ZlibError> {\n+ let mut zlib = self.inner.borrow_mut();\n+ let zlib = zlib.a... | 2026-02-04T11:57:41 |
vuejs/vue | 05299610ea3e89ddbcfe4d8ede0c298223766423 | 6ee684983b1f3384a4050d7c47cee7c6a325db8b | fix(vdom): svg inside foreignObject should be rendered with correct namespace (fix #7330) (#7350)
* add failed test case
* fix failed test case
* fix(vdom): svg inside foreignObject should be rendered with correct namespace
* adjust comments | [
{
"path": "src/core/vdom/create-element.js",
"patch": "@@ -139,7 +139,8 @@ function applyNS (vnode, ns, force) {\n if (isDef(vnode.children)) {\n for (let i = 0, l = vnode.children.length; i < l; i++) {\n const child = vnode.children[i]\n- if (isDef(child.tag) && (isUndef(child.ns) || isTru... | 2018-01-05T22:44:44 |
golang/go | 65b71c11d469029f755328c5e51742139f6b8686 | ea1aa765540e17043f817919febad262cf061ad8 | crypto/internal/fips140only: test fips140=only mode
Fixes #70514
Updates #70878
Change-Id: I6a6a46561d872c8f7e9ea333ff208064b0bd44c1
Reviewed-on: https://go-review.googlesource.com/c/go/+/728506
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Filippo Valsorda <fi... | [
{
"path": "src/crypto/internal/fips140only/fips140only_test.go",
"patch": "@@ -0,0 +1,408 @@\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 fips140only_test\n+\n+import (\n+\t\"... | 2024-12-28T21:32:59 |
vuejs/vue | 6ee684983b1f3384a4050d7c47cee7c6a325db8b | 5b4e6679cbfabd7a6229e86f10c300bcc1b2f815 | fix(types): contravariant generic default in ComponentOption (#7369) | [
{
"path": "types/options.d.ts",
"patch": "@@ -6,16 +6,17 @@ type Constructor = {\n }\n \n // we don't support infer props in async component\n-export type Component<Data=DefaultData<Vue>, Methods=DefaultMethods<Vue>, Computed=DefaultComputed, Props=DefaultProps> =\n+// N.B. ComponentOptions<V> is contravari... | 2018-01-03T06:33:48 |
denoland/deno | 9aca4f6c5331f0ced1ae1071211056608572932a | 72b9709c7d70ed059d1afc45c68736e930de5266 | fix(ext/node): add hasColors() to process.stdout and process.stderr (#31985)
## Summary
- Adds `hasColors()` method to `process.stdout` and `process.stderr`
- Fixes Node.js compatibility issue where packages like Commander.js
check color support
Fixes #27278
## Changes
- Modified `ext/node/polyfills/_process/streams... | [
{
"path": "ext/node/polyfills/_process/streams.mjs",
"patch": "@@ -25,6 +25,7 @@ import { Duplex, Readable, Writable } from \"node:stream\";\n import * as io from \"ext:deno_io/12_io.js\";\n import { guessHandleType } from \"ext:deno_node/internal_binding/util.ts\";\n import { op_bootstrap_color_depth } fro... | 2026-02-04T10:48:08 |
mrdoob/three.js | f00d971c7b57aefe36bf4bf8bdf7af5c01da89e1 | 6b9622144c7ff9400b7baf4c926274170cd7aeb1 | Update bug_report.yml | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -74,6 +74,7 @@ body:\n - Firefox\n - Safari\n - Edge\n+ - Meta Quest Browser\n - type: dropdown\n id: os\n attributes:",
"additions": 1,
"deletions": 0,
"language": "YAML"
}
] | 2025-04-30T09:46:22 |
golang/go | ea1aa765540e17043f817919febad262cf061ad8 | 5046bdf8a612b35a2c1a9e168054c1d5c65e7dd7 | go/doc: exclude examples with results
Fixes #36185
Change-Id: I7634744e62e00023367ed48a4700b61a6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/729902
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by... | [
{
"path": "src/go/doc/example.go",
"patch": "@@ -74,6 +74,9 @@ func Examples(testFiles ...*ast.File) []*Example {\n \t\t\tif params := f.Type.Params; len(params.List) != 0 {\n \t\t\t\tcontinue // function has params; not a valid example\n \t\t\t}\n+\t\t\tif results := f.Type.Results; results != nil && len(r... | 2025-12-14T20:02:33 |
vuejs/vue | 400aa651ba1648185274c10aa83c94cb9d8eac56 | 6be9fdbc8374225b98620cae6d87d97d861913cc | chore: fix setup script (#7364) | [
{
"path": "scripts/setup.js",
"patch": "@@ -2,9 +2,9 @@ const { test, ln, chmod } = require('shelljs')\n \n function installHooks () {\n if (test('-e', '.git/hooks')) {\n- ln('-sf', '../../build/git-hooks/pre-commit', '.git/hooks/pre-commit')\n+ ln('-sf', '../../scripts/git-hooks/pre-commit', '.git/... | 2018-01-02T16:21:05 |
denoland/deno | 72b9709c7d70ed059d1afc45c68736e930de5266 | b2690b072780c79e3584406f8f9891e201734f00 | fix(ext/node): implement Node worker BroadcastChannel ref/unref (#32036)
All except one test case in
`parallel/test-worker-broadcastchannel-wpt.js` passes. Node.js message
dispatch ordering is not same as the Web api as explained in this
comment:
```js
// Messages are delivered in port creation order.
// TODO(@jas... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -26,7 +26,10 @@ import {\n import * as webidl from \"ext:deno_webidl/00_webidl.js\";\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import { EventEmitter } from \"node:events\";\n-import { BroadcastChannel } from \"ext:deno_web/... | 2026-02-04T10:43:35 |
mrdoob/three.js | 84b6feb7837d02cd445cfe2b17f2e5453c053a80 | d088fc1bf1a94474a2edcc64f1386ebb07c26863 | WebGPURenderer: Array-Based RenderTarget Refactor (#30959)
* ShadowNode: Inherit camera.layers only if shadow.layers is not set
* Fix layers check
* invert condition
* restore after render
* move array creation to module scope
* WebGPURenderer: Refactor Texture Arrays
* fix conflicts
* cleanup and fix multiview... | [
{
"path": "examples/jsm/helpers/TextureHelperGPU.js",
"patch": "@@ -51,7 +51,7 @@ class TextureHelper extends Mesh {\n \n \t\t\tcolorNode = texture3D( texture ).sample( uvw );\n \n-\t\t} else if ( texture.isDataArrayTexture || texture.isCompressedArrayTexture ) {\n+\t\t} else if ( texture.isArrayTexture || ... | 2025-04-30T02:44:16 |
vuejs/vue | f8cb3a239332804808ca058d45609a860dbda55a | dccd182b6763d8ef1871949029c85495ca958246 | chore: fix lint | [
{
"path": "test/unit/modules/compiler/compiler-options.spec.js",
"patch": "@@ -9,58 +9,58 @@ describe('compile options', () => {\n <input type=\"text\" v-model=\"msg\" required max=\"8\" v-validate:field1.group1.group2>\n </div>\n `, {\n- directives: {\n- validate (el, dir) {\n... | 2017-12-25T16:05:54 |
golang/go | 5046bdf8a612b35a2c1a9e168054c1d5c65e7dd7 | 3f6eabdf09cd660c7881b75c5dfaef09609ba7e6 | crypto/tls: reject trailing messages after client/server hello
For TLS 1.3, after procesesing the server/client hello, if there isn't a
CCS message, reject the trailing messages which were appended to the
hello messages. This prevents an on-path attacker from injecting
plaintext messages into the handshake.
Additiona... | [
{
"path": "src/crypto/tls/conn.go",
"patch": "@@ -224,6 +224,9 @@ func (hc *halfConn) changeCipherSpec() error {\n \treturn nil\n }\n \n+// setTrafficSecret sets the traffic secret for the given encryption level. setTrafficSecret\n+// should not be called directly, but rather through the Conn setWriteTraffi... | 2025-11-24T22:03:10 |
denoland/deno | b2690b072780c79e3584406f8f9891e201734f00 | 929ab331a754c695fb1c2fbb0182a2260f7b0d34 | fix(ext/node): implement `DatabaseSync.setAuthorizer()` (#32009) | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -516,6 +516,7 @@ pub struct DatabaseSync {\n options: DatabaseSyncOptions,\n location: String,\n ignore_next_sqlite_error: Rc<Cell<bool>>,\n+ authorizer_data: Rc<RefCell<Option<*mut AuthorizerData>>>,\n }\n \n // SAFETY: we're sure this can be... | 2026-02-04T10:42:44 |
mrdoob/three.js | 48712b710468cf29cac9775f030c2b8f50f328a9 | 03e41eaa874d6923cc326bfaa0188d9b88138e5c | TSL: Fix `lightShadowMatrix()` if `renderer.shadowMap.enabled` is `false` (#31024) | [
{
"path": "src/nodes/accessors/Lights.js",
"patch": "@@ -30,9 +30,9 @@ export function lightShadowMatrix( light ) {\n \n \tconst data = getLightData( light );\n \n-\treturn data.shadowMatrix || ( data.shadowMatrix = uniform( 'mat4' ).setGroup( renderGroup ).onRenderUpdate( () => {\n+\treturn data.shadowMatr... | 2025-04-29T01:40:53 |
vuejs/vue | dccd182b6763d8ef1871949029c85495ca958246 | 44420b7bbcd9f6f4b0df3263e19ad19a974fa7f1 | fix: allow codebase to be inlined directly in HTML (#7314)
escape - to avoid regex being parsed as HTML comment when entire codebase is inlined.
fix #7298 | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -22,7 +22,8 @@ const startTagOpen = new RegExp(`^<${qnameCapture}`)\n const startTagClose = /^\\s*(\\/?)>/\n const endTag = new RegExp(`^<\\\\/${qnameCapture}[^>]*>`)\n const doctype = /^<!DOCTYPE [^>]+>/i\n-const comment = /^<!--/\n+// #7298: esc... | 2017-12-25T15:50:36 |
golang/go | 3f6eabdf09cd660c7881b75c5dfaef09609ba7e6 | a4b5b92055d24da007ae13c4586aa0a229fa337b | cmd/compile: use unsigned constant when folding loads for SIMD ops with constants
When folding loads into a SIMD op with a constant, in the SSA
rules we use makeValAndOff to create an AuxInt for the constant
and the offset. For the SIMD ops of concern (for now), the
constants are always unsigned. So pass the constant ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -2511,30 +2511,30 @@\n (VPANDNQMasked128 x l:(VMOVDQUload128 {sym} [off] ptr mem) mask) && canMergeLoad(v, l) && clobber(l) => (VPANDNQMasked128load {sym} [off] x ptr mask mem)\n (VPANDNQMasked256 x l:(VMOVDQUload256 {sym} [off] ptr... | 2025-12-16T16:16:47 |
denoland/deno | 929ab331a754c695fb1c2fbb0182a2260f7b0d34 | d9bd0545a4c01a0b348a70b5dcee3d7cf56e33ce | fix(flags): extra trailing space in zsh directory completions (#32042)
Fixes https://github.com/denoland/deno/issues/31809
Ref
https://github.com/clap-rs/clap/commit/5571b83c8a322ee2cf4342402d930cf2806fa2f1 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -6844,7 +6844,25 @@ function _clap_dynamic_completer_NAME() {\n )}\")\n \n if [[ -n $completions ]]; then\n- _describe -V 'values' completions -o nosort\n+ local -a dirs=()\n+ local -a other=()\n+ local completion\n+ for completion in ... | 2026-02-04T10:07:53 |
mrdoob/three.js | 03e41eaa874d6923cc326bfaa0188d9b88138e5c | 8ee79cfe9433485c8e2cdccbef51466c0f110d4a | Add dev builds to speed up dev iteration (#30865)
* done
* fix promise | [
{
"path": "package.json",
"patch": "@@ -48,8 +48,10 @@\n \"build\": \"rollup -c utils/build/rollup.config.js\",\n \"build-module\": \"rollup -c utils/build/rollup.config.js --configOnlyModule\",\n \"build-docs\": \"jsdoc -c utils/docs/jsdoc.config.json\",\n- \"dev\": \"concurrently --names \\... | 2025-04-28T19:59:37 |
vuejs/vue | 60fb8143f1235d0ae19d56939c424ad46bb33e61 | c05bbdfc36d0a2777c5721932a06f098860536b9 | chore: fix OpenCollective links | [
{
"path": "BACKERS.md",
"patch": "@@ -43,8 +43,8 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n \n <h2 align=\"center\">Platinum via OpenCollective</h2>\n \n-<a href=\"https://opencollective.com/vuejs/tiers/platinumsponsors/0/website\" target=\"_blank\"><img src=\"https... | 2017-12-22T19:48:21 |
golang/go | 9ba0948172cbb05308fb2a9db823a720f8ffb9ad | b7944a5f80b5aa7ad43730064cf4ebc8c473df47 | cmd/link: don't create __x86.get_pc_thunk symbol if it already exists
On 386, in some build modes we need to create the __x86.get_pc_thunk
symbols, to support PC-relative addressing. In some situation
the thunk symbols may already exist, e.g. loaded from a C object
in internal linking mode. In this case, we should use... | [
{
"path": "src/cmd/link/internal/x86/asm.go",
"patch": "@@ -72,6 +72,9 @@ func gentext(ctxt *ld.Link, ldr *loader.Loader) {\n \t\t{\"di\", 7},\n \t} {\n \t\tthunkfunc := ldr.CreateSymForUpdate(\"__x86.get_pc_thunk.\"+r.name, 0)\n+\t\tif t := thunkfunc.Type(); t != 0 && t != sym.SXREF && t != sym.SDYNIMPORT ... | 2025-12-15T18:45:28 |
denoland/deno | 478bc5a905048f3ccafc51369e61b4bdeffe5b5b | cec91f6c0e1e5e3259161e6d33365f6d790e1b8b | fix(ext/node): add stub for ServerResponse.writeEarlyHints (#32029)
Ref https://github.com/denoland/deno/issues/31176 | [
{
"path": "ext/node/polyfills/http.ts",
"patch": "@@ -1572,6 +1572,10 @@ export type ServerResponse = {\n end(chunk?: any, encoding?: any, cb?: any): void;\n \n flushHeaders(): void;\n+ writeEarlyHints(\n+ hints: Record<string, string | string[]>,\n+ callback?: () => void,\n+ ): void;\n _impli... | 2026-02-03T17:35:08 |
mrdoob/three.js | 8ee79cfe9433485c8e2cdccbef51466c0f110d4a | 817c791b01e050d08473b86437ed42fae5762243 | SpotLightShadow: Introduce `aspect` property (#31020)
* TSL: Fix convert `.set*()` value to node-object
* SpotLightShadow: Introduce `aspect`
* improve custom aspect example
* cleanup
* Update webgpu_lights_spotlight.html
* Update webgpu_lights_spotlight.html | [
{
"path": "examples/webgpu_lights_spotlight.html",
"patch": "@@ -26,7 +26,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { Fn, vec2, length, abs, max, min, div, mul, clamp, acos } from 'three/tsl';\n+\t\t\timport { Fn, vec2, length, uniform, abs, max, min, sub,... | 2025-04-28T18:14:41 |
vuejs/vue | c05bbdfc36d0a2777c5721932a06f098860536b9 | 144a4dd860b20ca48263bac150286f627e08d953 | chore: fixes gold / platinum sponsors on open collective (#7311)
Fixes https://github.com/opencollective/opencollective/issues/777 | [
{
"path": "README.md",
"patch": "@@ -143,16 +143,16 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n \n <h4 align=\"center\">Platinum</h4>\n \n-<a href=\"https://opencollective.com/vuejs/tiers/platinumsponsors/0/website\" target=\"_blank\"><img src=\"https://opencollectiv... | 2017-12-22T19:46:01 |
golang/go | b7944a5f80b5aa7ad43730064cf4ebc8c473df47 | 6713f46426c70f601ac33471d16be7b0e1aae349 | text/template: fix slice builtin for pointers to arrays
The slice function now properly handles pointers to arrays by calling
indirect() to dereference pointers, matching the behavior of the index
function.
Fixes #39596
Change-Id: Id4920edbfd8fd3df3a181b59a61733f88b0f104d
Reviewed-on: https://go-review.googlesource.... | [
{
"path": "src/text/template/exec_test.go",
"patch": "@@ -43,7 +43,8 @@ type T struct {\n \tSIEmpty []int\n \tSB []bool\n \t// Arrays\n-\tAI [3]int\n+\tAI [3]int\n+\tPAI *[3]int // pointer to array\n \t// Maps\n \tMSI map[string]int\n \tMSIone map[string]int // one element, for deterministic ou... | 2025-12-05T20:50:24 |
mrdoob/three.js | 817c791b01e050d08473b86437ed42fae5762243 | 09fcd038e5a86c26ae40cda5a101e6a38f885704 | FBXLoader: Improve error handling. (#31017) | [
{
"path": "examples/jsm/loaders/FBXLoader.js",
"patch": "@@ -477,6 +477,13 @@ class FBXTreeParser {\n \n \t\t}\n \n+\t\tif ( fileName === undefined ) {\n+\n+\t\t\tconsole.warn( 'FBXLoader: Undefined filename, creating placeholder texture.' );\n+\t\t\treturn new Texture();\n+\n+\t\t}\n+\n \t\tconst texture =... | 2025-04-28T09:49:41 |
denoland/deno | cec91f6c0e1e5e3259161e6d33365f6d790e1b8b | b486c63f282fe6c294097aaea9c809305bf7bea8 | fix(cli): pull in tunnel fix for windows (#32033) | [
{
"path": "Cargo.lock",
"patch": "@@ -3047,14 +3047,15 @@ dependencies = [\n \n [[package]]\n name = \"deno_tunnel\"\n-version = \"0.8.0\"\n+version = \"0.8.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"cbe45dacb6e0d2a646b22a12fea81ba2f7128202f9ee91602782b9208da123b... | 2026-02-03T16:21:25 |
vuejs/vue | d8b08387a293c99b95c1efcf2517447335a618db | 956756b1be7084daf8b6afb92ac0da7c24cde2a5 | fix: clean up custom events when patched component no longer have events
fix #7294 | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -257,11 +257,10 @@ export function updateChildComponent (\n }\n \n // update listeners\n- if (listeners) {\n- const oldListeners = vm.$options._parentListeners\n- vm.$options._parentListeners = listeners\n- updateComponentListeners(vm, l... | 2017-12-21T15:36:03 |
mrdoob/three.js | 617ed86064333f5254ca1f364d7065fe86470480 | 68c274e9841d3c3f1b127b4f2dd5a6aeadbecb57 | Examples: Fix `webgpu_water` GUI (#31014) | [
{
"path": "examples/webgpu_water.html",
"patch": "@@ -149,7 +149,7 @@\n \t\t\t\t// gui\n \n \t\t\t\tconst gui = new GUI();\n-\t\t\t\tconst waterNode = water.material.fragmentNode;\n+\t\t\t\tconst waterNode = water.material.colorNode;\n \n \t\t\t\tgui.addColor( params, 'color' ).onChange( function ( value ) ... | 2025-04-28T04:02:50 |
golang/go | 6713f46426c70f601ac33471d16be7b0e1aae349 | 388eb10f50f2b693fb68897dd0ddf627b512a885 | archive/tar, compress/bzip2: base64 some troublesome testdata files
This avoids complaints from scanners that look for and open
tar and bz2 files, and complain if they look weird.
In this case, they do look weird, because they are intentionally strange.
This kind of thing shouldn't be necessary, but we already have th... | [
{
"path": "src/archive/tar/reader_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"hash/crc32\"\n+\t\"internal/obscuretestdata\"\n \t\"io\"\n \t\"maps\"\n \t\"math\"\n@@ -25,10 +26,11 @@ import (\n \n func TestReader(t *testing.T) {\n \tvectors := []struct {\n-\t\tfile stri... | 2025-12-12T22:18:13 |
denoland/deno | b486c63f282fe6c294097aaea9c809305bf7bea8 | 0aa1fe12be1e3e71934eaf51037db67dcad00f37 | fix(ext/node): add zstd compression support to node:zlib (#32025)
This commit improves impl of `node:zlib` module by adding zstd
compression support.
Several Node compat tests were enabled, more will be enabled in a follow
up.
---------
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> | [
{
"path": "Cargo.lock",
"patch": "@@ -2552,6 +2552,7 @@ dependencies = [\n \"x25519-dalek\",\n \"x509-parser\",\n \"yoke 0.7.4\",\n+ \"zstd\",\n ]\n \n [[package]]",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "ext/node/Cargo.toml",
"patch": "@@ -104,6 +104,... | 2026-02-03T15:35:17 |
mrdoob/three.js | 5cadd4f4c2c1f061bdad178358f404c50f04685b | 6e737338308332b4a2ed93b47d77ea1bdb46c8b5 | Examples: WebGPU Compute Water Adjustment (#30985)
* init branch
* fix duck material
* bounds checks fixed still something off with velocity on height change | [
{
"path": "examples/webgpu_compute_water.html",
"patch": "@@ -31,28 +31,48 @@\n \t\t\timport { color, instanceIndex, struct, If, varyingProperty, uint, int, negate, floor, float, length, clamp, vec2, cos, vec3, vertexIndex, Fn, uniform, instancedArray, min, max, positionLocal, transformNormalToView } from '... | 2025-04-27T17:56:28 |
vuejs/vue | 956756b1be7084daf8b6afb92ac0da7c24cde2a5 | 8335217cb4bd13fb07e08a76c07df0fceed6c197 | refactor: use more efficient on-demand clone to handle reused node edge cases
removes unnecessary slot/static node clones, fix #7292 | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -239,7 +239,7 @@ export function updateChildComponent (\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n- vm.$attrs = (parentVnode.data && parentVno... | 2017-12-21T00:44:24 |
golang/go | 388eb10f50f2b693fb68897dd0ddf627b512a885 | 1b291b70dff51732415da5b68debe323704d8e8d | cmd/go: show comparable in go doc interface output
The go doc command now displays the comparable constraint when embedded
in an interface, matching the existing behavior for the error type.
Previously, when an interface embedded comparable, it was not shown in
the documentation and incorrectly triggered the "Has une... | [
{
"path": "src/cmd/go/internal/doc/doc_test.go",
"patch": "@@ -629,6 +629,35 @@ var tests = []test{\n \t\t\t`Has unexported methods`,\n \t\t},\n \t},\n+\t// Interface with comparable constraint.\n+\t{\n+\t\t\"interface type with comparable\",\n+\t\t[]string{p, `ExportedComparableInterface`},\n+\t\t[]string{... | 2025-12-05T08:25:33 |
denoland/deno | 0aa1fe12be1e3e71934eaf51037db67dcad00f37 | c006bba8061e2d96004823c64287515937b0897d | fix: add raw.esm.sh to default `--allow-import` list (#32030)
Closes https://github.com/denoland/deno/issues/31015 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -4574,7 +4574,7 @@ fn permission_args(app: Command, requires: Option<&'static str>) -> Command {\n <g>-W, --allow-write[=<<PATH>...]</> Allow file system write access. Optionally specify allowed paths.\n <p... | 2026-02-03T15:21:29 |
mrdoob/three.js | 6e737338308332b4a2ed93b47d77ea1bdb46c8b5 | 25873ff60e19b24e2cb71a01778363f7b969194a | MaterialNode: Fix `dashOffset` with `LineDashedMaterial`. (#31008)
* MaterialNode: Fix `dashOffset` with `LineDashedMaterial`.
* Examples: Fix dash scale property. | [
{
"path": "examples/webgpu_lines_fat_wireframe.html",
"patch": "@@ -220,7 +220,7 @@\n \n \t\t\t\tgui.add( param, 'dash scale', 0.5, 1, 0.1 ).onChange( function ( val ) {\n \n-\t\t\t\t\tmatLine.dashScale = val;\n+\t\t\t\t\tmatLine.scale = val;\n \t\t\t\t\tmatLineDashed.scale = val;\n \n \t\t\t\t} );",
"a... | 2025-04-27T15:56:28 |
vuejs/vue | 8335217cb4bd13fb07e08a76c07df0fceed6c197 | 49aae6bb157e0650507974b7a9a1b0f2215e400b | fix(core): handle edge cases for functional component returning arrays
fix #7282 | [
{
"path": "src/core/vdom/create-component.js",
"patch": "@@ -107,7 +107,7 @@ export function createComponent (\n context: Component,\n children: ?Array<VNode>,\n tag?: string\n-): VNode | void {\n+): VNode | Array<VNode> | void {\n if (isUndef(Ctor)) {\n return\n }",
"additions": 1,
"d... | 2017-12-20T16:02:42 |
golang/go | 63fced531c0d702554fcfda41f9016701a6859c6 | 6455afbc6f93e7ddc5ffde38b563c4e1a6821d22 | runtime/secret: restore goroutine behavior to proposal
During review of CL 704615, a suggestion was made that spawning a
goroutine inside a call to secret.Do result in a panic. I agreed with
this at the time, but had missed that this had been extensively
discussed on the proposal. Revert the behavior back to what was ... | [
{
"path": "src/runtime/proc.go",
"patch": "@@ -5286,10 +5286,6 @@ func malg(stacksize int32) *g {\n // The compiler turns a go statement into a call to this.\n func newproc(fn *funcval) {\n \tgp := getg()\n-\tif goexperiment.RuntimeSecret && gp.secret > 0 {\n-\t\tpanic(\"goroutine spawned while running in s... | 2025-12-10T10:07:56 |
mrdoob/three.js | 25873ff60e19b24e2cb71a01778363f7b969194a | dcabbf7343b09d5314c62d5ce7aa4fa82b0a236c | PMREMGenerator: Fix usage with `PMREMNode`. (#31001) | [
{
"path": "src/renderers/common/extras/PMREMGenerator.js",
"patch": "@@ -161,7 +161,7 @@ class PMREMGenerator {\n \n \t\t\tconsole.warn( 'THREE.PMREMGenerator: .fromScene() called before the backend is initialized. Try using .fromSceneAsync() instead.' );\n \n-\t\t\tconst cubeUVRenderTarget = renderTarget |... | 2025-04-27T01:00:29 |
vuejs/vue | 49aae6bb157e0650507974b7a9a1b0f2215e400b | e055df82fec0e76e4bc65e5a265b42e208595430 | fix(types): make VNodeChildrenArrayContents type more accurate (#7287) | [
{
"path": "types/test/options-test.ts",
"patch": "@@ -1,4 +1,4 @@\n-import Vue from \"../index\";\n+import Vue, { VNode } from \"../index\";\n import { AsyncComponent, ComponentOptions, FunctionalComponentOptions } from \"../index\";\n import { CreateElement } from \"../vue\";\n \n@@ -277,6 +277,19 @@ Vue.c... | 2017-12-20T14:09:23 |
denoland/deno | 13a5674462ab9e7d8c532f5a85f2e5b9c2445ce2 | 0b38d25ba7c1893757e15fbb2a68537b0191321f | fix: flaky cron socket tests (#32023) | [
{
"path": "tests/specs/run/unstable_cron_socket_basic/server.js",
"patch": "@@ -45,8 +45,8 @@ outer: while (true) {\n setTimeout(async () => {\n const invocation =\n JSON.stringify({ kind: \"invoke\", name: firstCronName }) + \"\\n\";\n+ console.error(\"[CRON SERVER] I... | 2026-02-03T11:34:54 |
golang/go | 6455afbc6f93e7ddc5ffde38b563c4e1a6821d22 | 8f45611e78095c05075b4cc49e44aabde064e134 | runtime: dropg after emitting trace event in preemptPark
Because we dropg before emitting a trace event in preemptPark, we end up
failing to emit a status for the goroutine if this happens to be the
first event for it in the generation. We only really see this with
multiple subscribers in TestSubscribers.
This is for... | [
{
"path": "src/runtime/proc.go",
"patch": "@@ -4385,7 +4385,6 @@ func preemptPark(gp *g) {\n \t// up. Hence, we set the scan bit to lock down further\n \t// transitions until we can dropg.\n \tcasGToPreemptScan(gp, _Grunning, _Gscan|_Gpreempted)\n-\tdropg()\n \n \t// Be careful about ownership as we trace t... | 2025-12-11T19:23:19 |
mrdoob/three.js | dcabbf7343b09d5314c62d5ce7aa4fa82b0a236c | a3fe811aa493ca75d11f451f954f664f627d9c88 | Manual: Fix primitives page. (#30997) | [
{
"path": "manual/resources/lesson.js",
"patch": "@@ -48,15 +48,22 @@\n \n \t}\n \n-\tlet text = document.body.innerHTML;\n+\tconst parts = window.location.href.split( '/' );\n+\tconst filename = parts[ parts.length - 1 ];\n \n-\ttext = text.replace( /\\[link:([\\w\\:\\/\\.\\-\\_\\(\\)\\?\\#\\=\\!\\~]+)\\]/... | 2025-04-25T11:38:28 |
vuejs/vue | e055df82fec0e76e4bc65e5a265b42e208595430 | 7cc0b559e9e57fcb3baeae5d8d4c8964aa335b5e | fix(weex): default value for editor, fix #7165 (#7286)
* fix(weex): default value for editor, fix #7165
/cc Hanks10100
* fix(weex): recycle-list test | [
{
"path": "test/weex/cases/recycle-list/components/editor.vue",
"patch": "@@ -10,7 +10,7 @@\n props: ['message'],\n data () {\n return {\n- output: this.message | ''\n+ output: this.message || ''\n }\n }\n }",
"additions": 1,
"deletions": 1,
"language": "U... | 2017-12-20T14:05:21 |
denoland/deno | 0b38d25ba7c1893757e15fbb2a68537b0191321f | cfc0451d9552d374441b73f322e99a0c3518a5e6 | fix(ext/node): make `child_process` stdio streams Socket instances (#31975)
This PR fixes child process stdio streams (`stdin`, `stdout`, `stderr`)
to be instances of `Socket` from `node:net`, matching Node.js behavior. | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -156,6 +156,8 @@ function flushStdio(subprocess: ChildProcess) {\n // StreamBase, so it can be used with node streams\n class StreamResource implements StreamBase {\n #rid: number;\n+ #isUnref = false;\n+ #pendingPromises: Set<Promis... | 2026-02-02T18:25:21 |
golang/go | 8f45611e78095c05075b4cc49e44aabde064e134 | 34af879dde2cfc2688b486399e9fc7e60d1e96fc | runtime/pprof: deflake TestGoroutineLeakProfileConcurrency
Issue #76540 reports failures in this test from the leaked goroutine
count being too small. The test makes an effort to wait for the
goroutines to leak, but there's no guarantee.
This change instead changes TestGoroutineLeakProfileConcurrency to wait
for the ... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -1590,14 +1590,30 @@ func TestGoroutineLeakProfileConcurrency(t *testing.T) {\n \tgoroutineProf := Lookup(\"goroutine\")\n \tgoroutineLeakProf := goroutineLeakProfile\n \n-\t// Check that a profile with debug information contains\n-\tincludesLeak := ... | 2025-12-11T17:19:19 |
mrdoob/three.js | a3fe811aa493ca75d11f451f954f664f627d9c88 | df905b3bcb2922089a0db0139c5df7b7b0821aef | Examples: Fix shadows in physics instancing demos. (#30988)
* Examples: Fix shadows in physics instancing demos.
* Clean up. | [
{
"path": "examples/physics_ammo_instancing.html",
"patch": "@@ -60,14 +60,24 @@\n \t\t\t\tdirLight.shadow.camera.zoom = 2;\n \t\t\t\tscene.add( dirLight );\n \n-\t\t\t\tconst floor = new THREE.Mesh(\n+\t\t\t\tconst shadowPlane = new THREE.Mesh(\n+\t\t\t\t\tnew THREE.PlaneGeometry( 10, 10 ),\n+\t\t\t\t\tnew... | 2025-04-24T17:11:27 |
vuejs/vue | bacb911f7df09ff4868b4c848a6d7778872dff5c | c0d516c283aa1a1c238b6eb8b8e55f64770d27e8 | fix(warning): allow symbol as vdom key (#7271) | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -270,7 +270,7 @@ export function createPatchFunction (backend) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true)\n }\n } else if (isPrimitive(vnode.text)) {\n- nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(vn... | 2017-12-19T14:35:50 |
denoland/deno | cfc0451d9552d374441b73f322e99a0c3518a5e6 | 22a5f7109df9c124c14fe90da6e4f054f974dc8a | fix: support DENO_SERVE_ADDRESS not being applied to the first server (#31982) | [
{
"path": "ext/http/00_serve.ts",
"patch": "@@ -733,7 +733,6 @@ function serve(arg1, arg2) {\n if (serveAddressOverrideConsumed) {\n return serveInner(options, handler);\n }\n- serveAddressOverrideConsumed = true;\n \n const {\n 0: overrideKind,\n@@ -742,6 +741,8 @@ function serve(arg1, arg2)... | 2026-02-02T15:42:38 |
mrdoob/three.js | 6e564589c5bc5a374295f1218fd95b2645e577c6 | 72df8dad84961480911166d82029d7f5b2f6170d | Examples: Fixed imports. | [
{
"path": "examples/webgpu_shadowmap_array.html",
"patch": "@@ -14,12 +14,11 @@\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n-\t\t\t\t\t\"three\": \"../build/Three.WebGPU.js\",\n-\t\t\t\t\t\"three/webgpu\": \"../build/Three.WebGPU.js\",\n-\t\t\t\t\t\"three/tsl\": \"../build/Three.TS... | 2025-04-23T09:25:40 |
golang/go | e8a83788a475544ab9a153bad4be4b796bc77ccc | 927c89bbc5cc7366e86ecbb0f77267435b1d6d2c | go/doc: reuse import name logic for examples
Examples resolved imports based on just the path name,
but this doesn't work for go-name or modules on v2+.
Updates #12794
Fixes #45110
Fixes #56740
Fixes #62059
Change-Id: I8c71b1e5311df04bccbdf319d759d3176a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/72... | [
{
"path": "src/go/doc/example.go",
"patch": "@@ -11,7 +11,6 @@ import (\n \t\"go/ast\"\n \t\"go/token\"\n \t\"internal/lazyregexp\"\n-\t\"path\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -221,7 +220,7 @@ func playExample(file *ast.File, f *ast.FuncDecl) *ast.File {\n \t\t\t// because the package sy... | 2025-12-08T20:48:09 |
vuejs/vue | c0d516c283aa1a1c238b6eb8b8e55f64770d27e8 | 01c07503bf6af902dde06fafa8a0008ee3e303aa | feat(types): extract VueConfiguration type for easy expansion (#7273) (#7274)
fix #7273 | [
{
"path": "types/vue.d.ts",
"patch": "@@ -64,6 +64,18 @@ export interface Vue {\n export type CombinedVueInstance<Instance extends Vue, Data, Methods, Computed, Props> = Data & Methods & Computed & Props & Instance;\n export type ExtendedVue<Instance extends Vue, Data, Methods, Computed, Props> = VueConstr... | 2017-12-19T14:34:35 |
denoland/deno | 22a5f7109df9c124c14fe90da6e4f054f974dc8a | 7ab62a769be154c0926fe8be640d48674eb79614 | fix: run on pre-Windows 10 version 1709 (#32002) | [
{
"path": "Cargo.lock",
"patch": "@@ -3920,7 +3920,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d\"\n dependencies = [\n \"libc\",\n- \"windows-sys 0.59.0\",\n+ \"windows-sys 0.52.0\",\n ]\n \n [[packag... | 2026-02-02T15:40:35 |
mrdoob/three.js | 7fe67ee3d9fc790adb6d5f7018d9b602535e1dc4 | 98a7c923df9db67ad3726c52ee2d1677d248389e | webgpu_sandbox: fix commented line | [
{
"path": "examples/webgpu_sandbox.html",
"patch": "@@ -227,7 +227,9 @@\n \n \t\t\t}\n \n-\t\t\t/** Correct UVs to be compatible with `flipY=false` textures. */\n+\t\t\t/*\n+\t\t\t * Correct UVs to be compatible with `flipY=false` textures.\n+\t\t\t */\n \t\t\tfunction flipY( geometry ) {\n \n \t\t\t\tconst... | 2025-04-22T18:20:41 |
golang/go | 89614ad264803558cfa36d460d431f7cbd4bae47 | bb2337f24c8d774ef122e2251f02c5e512c77a55 | runtime/trace: fix broken TestSubscribers
Currently we don't break out of the loop on a failure. This is
leading to timeouts trying to parse a broken trace over and over,
forever.
But there's another issue where when we try to dump the trace, we pass
only the unread portion of the bytes.Buffer.
Change-Id: I1a338eea0... | [
{
"path": "src/runtime/trace/subscribe_test.go",
"patch": "@@ -16,15 +16,15 @@ import (\n )\n \n func TestSubscribers(t *testing.T) {\n-\tvalidate := func(t *testing.T, source string, tr *bytes.Buffer) {\n+\tvalidate := func(t *testing.T, source string, tr []byte) {\n \t\tdefer func() {\n \t\t\tif t.Failed(... | 2025-12-11T18:02:36 |
denoland/deno | 9132ad958c83a0d0b199de12b69b877f63edab4c | b51441cc1bf99a0ccc66ff706a1887ee0a933d46 | fix(ext/node): escape more shell args (#31999)
Follow up to https://github.com/denoland/deno/pull/31838 | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -968,7 +968,16 @@ export function normalizeSpawnArguments(\n ]);\n \n if (options.shell) {\n- let command = ArrayPrototypeJoin([file, ...args], \" \");\n+ // When args are provided, escape them to prevent shell injection.\n+ ... | 2026-02-02T13:17:42 |
mrdoob/three.js | 0c69d146740e67594d9ffe701588e38cb691f272 | 0eddad5dd751edcf0b5ca8d833a656ce9a8b46b2 | fix: change increment to decrement in documentation (#30978) | [
{
"path": "docs/api/en/constants/Materials.html",
"patch": "@@ -155,7 +155,7 @@ <h2>Stencil Operations</h2>\n \t\t\tvalue by `1`.<br />\n \t\t\t[page:Materials IncrementWrapStencilOp] will increment the current stencil\n \t\t\tvalue by `1`. If the value increments past `255` it will be set to `0`.<br />\n-\... | 2025-04-22T11:55:48 |
vuejs/vue | d544d052a9c5ec113c253895211296120d58b6ab | b8d33ecd9ab8b7a46d8558b4e2caf506235cd165 | fix(weex): append as tree by default for recycle-list and cell-slot (#7216) | [
{
"path": "src/platforms/weex/compiler/modules/append.js",
"patch": "@@ -1,7 +1,13 @@\n /* @flow */\n \n+import { makeMap } from 'shared/util'\n+\n+// The \"unitary tag\" means that the tag node and its children\n+// must be sent to the native together.\n+const isUnitaryTag = makeMap('cell,header,cell-slot,... | 2017-12-11T14:48:36 |
golang/go | bb2337f24c8d774ef122e2251f02c5e512c77a55 | 2622d2955bf1753f548c6ff46d471478933012d5 | cmd/go: set GOOS in vet_asm test
Not every OS (e.g. aix) supports ARCH=amd64.
Fixes #76792
Change-Id: Id92cd247f1e36574192a6079990c686f9ab55910
Reviewed-on: https://go-review.googlesource.com/c/go/+/729220
Commit-Queue: Alan Donovan <adonovan@google.com>
TryBot-Bypass: Alan Donovan <adonovan@google.com>
Reviewed-by:... | [
{
"path": "src/cmd/go/testdata/script/vet_asm.txt",
"patch": "@@ -2,6 +2,7 @@\n \n env GO111MODULE=off\n env GOARCH=amd64\n+env GOOS=linux\n \n ! go vet -asmdecl a\n stderr 'f: invalid MOVW of x'",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
}
] | 2025-12-11T14:45:33 |
mrdoob/three.js | 91476495947035dd18f215ddc1e8102ba08a18cc | bfb46e53d365b3f2d053e285d313bb82db709cc3 | TSL: Improve `debug()` callback changing to `( builder, code )` function signature (#30976)
* improve debug callback
* Update DebugNode.js
* Update DebugNode.js
* Update DebugNode.js
* Update DebugNode.js | [
{
"path": "src/nodes/utils/DebugNode.js",
"patch": "@@ -52,7 +52,7 @@ class DebugNode extends TempNode {\n \n \t\tif ( callback !== null ) {\n \n-\t\t\tcallback( code );\n+\t\t\tcallback( builder, code );\n \n \t\t} else {\n \n@@ -68,6 +68,15 @@ class DebugNode extends TempNode {\n \n export default DebugNo... | 2025-04-22T08:56:44 |
denoland/deno | b51441cc1bf99a0ccc66ff706a1887ee0a933d46 | a7ddc6dea129c68250a84ac470d19f8b74d4f672 | fix: upgrade deno_core to 0.383.0 (#32014)
Closes https://github.com/denoland/deno/issues/32011 | [
{
"path": "Cargo.lock",
"patch": "@@ -1887,9 +1887,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.382.0\"\n+version = \"0.383.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ff4bdf251dc4597ba3f646e2f007208c475e40b5a412c039b7c75ff277fe7b3... | 2026-02-02T12:33:42 |
vuejs/vue | 5c2ce0017ff8929e70ce9f701b91d950fb351adb | 801f793625273b39fd3f25abbaa04508d6651563 | feat(weex): WIP fix flow + handle errors in recycle-list template render | [
{
"path": "flow/compiler.js",
"patch": "@@ -21,9 +21,6 @@ declare type CompilerOptions = {\n shouldDecodeNewlinesForHref?: boolean;\n optimize?: boolean;\n \n- // support <recycle-list> in weex\n- recyclable?: boolean;\n-\n // for ssr optimization compiler\n scopeId?: string;\n \n@@ -37,7 +34,6 @@... | 2017-11-29T15:35:20 |
mrdoob/three.js | bfb46e53d365b3f2d053e285d313bb82db709cc3 | d79728c5e0e60e785ca6c73f5096e014e6a25fb6 | TSL: Fix `denoise()` sampler texture (#30975)
* remove layout
* rename | [
{
"path": "examples/jsm/tsl/display/DenoiseNode.js",
"patch": "@@ -1,5 +1,5 @@\n import { DataTexture, RepeatWrapping, Vector2, Vector3, TempNode } from 'three/webgpu';\n-import { texture, getNormalFromDepth, getViewPosition, convertToTexture, nodeObject, Fn, float, NodeUpdateType, uv, uniform, Loop, lumina... | 2025-04-22T08:22:54 |
vuejs/vue | c1743a9dd7eaffa67f9a9c21b6940f167ba7590d | 0ee81b24b5146bca315503e2f5aa3b01832735f1 | test(weex): use done.fail for reporting errors | [
{
"path": "test/weex/cases/cases.spec.js",
"patch": "@@ -21,10 +21,7 @@ function createRenderTestCase (name) {\n expect(getRoot(instance)).toEqual(target)\n done()\n }, 50)\n- }).catch(err => {\n- expect(err).toBe(null)\n- done()\n- })\n+ }).catch(done.fail)\n }\n ... | 2017-11-28T19:50:41 |
denoland/deno | 7c5447f08306f777a46dbb209faed3d02d67e64d | c78df6f9888b422e44a26ebb5ae2561d5ac5c752 | fix(ext/node): error formatting compatibility (#31970)
Towards #29801
Gives better error formating based on [Node's
implementation](https://github.com/nodejs/node/blob/70f6b58ac655234435a99d72b857dd7b316d34bf/lib/internal/util/inspect.js#L1661),
especially on `AggregateError` instance / nested errors. This in turn
al... | [
{
"path": "ext/web/01_console.js",
"patch": "@@ -35,38 +35,54 @@ import {\n } from \"ext:core/ops\";\n import * as ops from \"ext:core/ops\";\n const {\n+ AggregateError,\n+ AggregateErrorPrototype,\n Array,\n ArrayBufferPrototypeGetByteLength,\n+ ArrayBuffer,\n+ ArrayBufferPrototype,\n+ ArrayFrom,... | 2026-02-02T09:45:07 |
mrdoob/three.js | d79728c5e0e60e785ca6c73f5096e014e6a25fb6 | 6a74721a5b0ba361ec56df4d8e08930686a425c8 | NodeMaterial: Fix alpha of vertex-color (#30974)
* fix vertex-color
* Update AttributeNode.js
* Update NodeMaterial.js | [
{
"path": "src/materials/nodes/NodeMaterial.js",
"patch": "@@ -2,7 +2,6 @@ import { Material } from '../Material.js';\n import { NormalBlending } from '../../constants.js';\n \n import { getNodeChildren, getCacheKey } from '../../nodes/core/NodeUtils.js';\n-import { attribute } from '../../nodes/core/Attrib... | 2025-04-22T07:44:54 |
golang/go | 5818c9d714f1a8abeb76ec5d75ad0e0560e8d780 | 9de6468701f4def1bbdc737e8ad1327f2cfaecc8 | encoding/json/jsontext: add symbolic Kind constants
Add constants for each possible Kind value (KindNull, KindTrue, etc.).
Leave the values unchanged ('n', 't', etc.).
Update documentation to reference the symbols.
Fixes #71756
Change-Id: Ib33b2ad9ee55f6f547d9e6a1c5a7f00c8400d3d3
Reviewed-on: https://go-review.googl... | [
{
"path": "src/encoding/json/jsontext/decode.go",
"patch": "@@ -306,7 +306,7 @@ func (d *decodeBuffer) PreviousTokenOrValue() []byte {\n \n // PeekKind retrieves the next token kind, but does not advance the read offset.\n //\n-// It returns 0 if an error occurs. Any such error is cached until\n+// It retur... | 2025-12-08T22:22:12 |
vuejs/vue | 0ee81b24b5146bca315503e2f5aa3b01832735f1 | 3b32652aa68a06d881e3149bb21ac8711887e7f6 | fix(weex): update recycle-list v-for transform | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -23,7 +23,7 @@ export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n export const forAliasRE = /(.*?)\\s+(?:in|of)\\s+(.*)/\n export const forIteratorRE = /,([^,\\}\\]]*)(?:,([^,\\}\\]]*))?$/\n-const stripParensRE = /^\\(|\\)$/g\n+export ... | 2017-11-27T22:48:46 |
denoland/deno | c78df6f9888b422e44a26ebb5ae2561d5ac5c752 | d6fa98554f2e6f693730c1520a7d7d5add4995d0 | fix(ext/node): use primordials in `_fs_fchown.ts` (#32007)
Ref #24236
It doesn't seem like there's any tests for `fchown`? | [
{
"path": "ext/node/polyfills/_fs/_fs_fchown.ts",
"patch": "@@ -1,8 +1,5 @@\n // Copyright 2018-2026 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 {\n type CallbackWithError,\n makeCallback... | 2026-02-01T11:15:23 |
mrdoob/three.js | 3bdd4382058a748be339974a147d4705ee87782a | 51f4b78bcacff076f52abc828c6adfab12eb94c0 | TSL: Fixes the return value of `atomic*` nodes (#30971)
* add `parents` properties
* TSL: Fixes the return value of `atomic*` nodes | [
{
"path": "src/nodes/core/Node.js",
"patch": "@@ -87,6 +87,14 @@ class Node extends EventDispatcher {\n \t\t */\n \t\tthis.global = false;\n \n+\t\t/**\n+\t\t * Create a list of parents for this node during the build process.\n+\t\t *\n+\t\t * @type {boolean}\n+\t\t * @default false\n+\t\t */\n+\t\tthis.par... | 2025-04-22T03:40:48 |
golang/go | 00642ee23b614d5314604b6b4d25c671f82c26b2 | 7b60d0673910a6527eb3d401b8a4e90c59cf70bd | encoding/json: report true from v2 Decoder.More when an error is pending
Historically, Decoder.More reports true when the next read will
return an error. Adjust the v2 Decoder to follow this behavior.
Fixes #76467
Change-Id: I03bfa391e4e89ada8ca869db43c1d0bb63cc0413
Reviewed-on: https://go-review.googlesource.com/c/... | [
{
"path": "src/encoding/json/stream_test.go",
"patch": "@@ -459,6 +459,9 @@ func TestDecodeInStream(t *testing.T) {\n \t\t{CaseName: Name(\"\"), json: ` \\a`, expTokens: []any{\n \t\t\t&SyntaxError{\"invalid character '\\\\\\\\' looking for beginning of value\", 1},\n \t\t}},\n+\t\t{CaseName: Name(\"\"), js... | 2025-12-08T21:09:05 |
vuejs/vue | 2cb8ea3fee741807a15bf8f3049ab062a7d9508c | ac999573ea6e4be3a421cdff79d66a5274ec58eb | feat(weex): support compiling `v-on` in the weex native directive (#6892)
* refactor(compiler): move postTransforms to after children are processed
* feat(weex): recycle-list support WIP
* refactor: fix types
* feat(weex): split text into separate module
* feat($compiler): supports compiling v-bind to the ... | [
{
"path": "flow/compiler.js",
"patch": "@@ -56,6 +56,7 @@ declare type ASTIfConditions = Array<ASTIfCondition>;\n \n declare type ASTElementHandler = {\n value: string;\n+ params?: Array<any>;\n modifiers: ?ASTModifiers;\n };\n ",
"additions": 1,
"deletions": 0,
"language": "JavaScript"
}... | 2017-10-31T00:28:40 |
denoland/deno | d6fa98554f2e6f693730c1520a7d7d5add4995d0 | 51bd0803b8fe56ff20d054b54e9029acd3fb9f04 | fix(ext/node): enable defensive option on `DatabaseSync` (#32004)
Allows
https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-sqlite-config.js
to pass | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -23,6 +23,7 @@ use deno_core::v8_static_strings;\n use deno_permissions::OpenAccessKind;\n use deno_permissions::PermissionsContainer;\n use rusqlite::ffi as libsqlite3_sys;\n+use rusqlite::ffi::SQLITE_DBCONFIG_DEFENSIVE;\n use rusqlite::ffi::SQLITE_... | 2026-01-31T12:24:18 |
mrdoob/three.js | 51f4b78bcacff076f52abc828c6adfab12eb94c0 | 0ff094ec34706ebfa3fce7ff0cb98b5a271023e6 | Examples: Add `webgpu_caustics` and shadow revisions (#30962)
* `material.shadowPositionNode` renamed to `material.receivedShadowPositionNode`
* add `shadow.mapType`
* add `material.castShadowPositionNode`
* add `webgpu_caustics` example
* update title
* add stats
* use webgpu
* add `webgpu_volumetric_caustics`... | [
{
"path": "examples/files.json",
"patch": "@@ -307,6 +307,7 @@\n \t\t\"webgpu_camera\",\n \t\t\"webgpu_camera_array\",\n \t\t\"webgpu_camera_logarithmicdepthbuffer\",\n+\t\t\"webgpu_caustics\",\n \t\t\"webgpu_centroid_sampling\",\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_clipping\",\n@@ -453,6 +454,7 @@\n ... | 2025-04-22T03:34:54 |
golang/go | 1de9585be24aaa11ecc79a5fe976713b8e7fd446 | e38c38f0e539f599216247b5293d5c78aa82468b | runtime: prevent calls to GOMAXPROCS while clearing P trace state
Currently, between the forEachP that ensures every P has a status in the
trace and readying dead Ps for the next generation, there's a big window
where GOMAXPROCS could run and change the number of Ps. In such
circumstances, P state will not get properl... | [
{
"path": "src/runtime/trace.go",
"patch": "@@ -440,11 +440,6 @@ func StartTrace() error {\n \n \t// Record the heap goal so we have it at the very beginning of the trace.\n \ttl.HeapGoal()\n-\n-\t// Make sure a ProcStatus is emitted for every P, while we're here.\n-\tfor _, pp := range allp {\n-\t\ttl.writ... | 2025-12-11T02:51:27 |
vuejs/vue | 08660e876d5fbdbeed7e1c779c902969814af3e6 | 5254ee31c481ac16cf8f822b0b4df0f7815ffff3 | refactor: fix types | [
{
"path": "src/platforms/weex/compiler/modules/recycle-list/index.js",
"patch": "@@ -33,9 +33,11 @@ function postTransformNode (el: ASTElement) {\n function genText (node) {\n const value = node.type === 3\n ? node.text\n- : node.tokens.length === 1\n- ? node.tokens[0]\n- : node.tokens\n+... | 2017-09-06T09:48:01 |
mrdoob/three.js | 2b8b7aa4bb12db5fa8bf7b7ccca971d21e8321d3 | b730a2048c220fb8e7776fe1a887248ce0beabc8 | BatchedMesh: Fix toJSON, ObjectLoader integration (#30965)
* BatchedMesh: fix copy function
* BatchedMesh: Update toJSON function
* BatchedMesh.toJSON: small cleanup
* ObjectLoader: Fix BatchedMesh support
* BatchedMesh.copy: Remove redundant field
* Object3D, ObjectLoader: adjust serialized definitions
* Object... | [
{
"path": "src/core/Object3D.js",
"patch": "@@ -1294,43 +1294,56 @@ class Object3D extends EventDispatcher {\n \t\t\tobject.drawRanges = this._drawRanges;\n \t\t\tobject.reservedRanges = this._reservedRanges;\n \n-\t\t\tobject.visibility = this._visibility;\n-\t\t\tobject.active = this._active;\n-\t\t\tobje... | 2025-04-20T08:07:05 |
denoland/deno | 51bd0803b8fe56ff20d054b54e9029acd3fb9f04 | 7e2abb4c3165af017b49b0ef102c9e4691510676 | fix: Reload the `CronHandlerImpl` if necessary when the control socket receives new envs (#31996) | [
{
"path": "ext/cron/handler_impl.rs",
"patch": "@@ -24,6 +24,40 @@ impl CronHandlerImpl {\n Err(_) => Self::Local(LocalCronHandler::new()),\n }\n }\n+\n+ /// Check if the handler needs to be reloaded based on current environment.\n+ /// Returns a new handler if reload is needed, None otherwise... | 2026-01-30T21:59:25 |
vuejs/vue | 3f0c628e2c0fe6bfaecc521c96c6cc12ff24c7c4 | 90ed48224e0ae281a2579b997e4bd5a150b80413 | fix: avoid unnecessary lowercase coersion in component name validation
close #7237 | [
{
"path": "src/core/util/options.js",
"patch": "@@ -260,8 +260,7 @@ export function validateComponentName (name: string) {\n 'and must start with a letter.'\n )\n }\n- const lower = name.toLowerCase()\n- if (isBuiltInTag(lower) || config.isReservedTag(lower)) {\n+ if (isBuiltInTag(name) || co... | 2017-12-14T16:52:37 |
golang/go | e38c38f0e539f599216247b5293d5c78aa82468b | c0ba519764536b8ce7ba2a7fe3748f07672f7b6e | internal/trace: correctly handle GoUndetermined for GoroutineSummary
Currently the trace summarization incorrectly handles GoUndetermined by
treating it too much like GoNotExist. In particular, it should be
accumulating all the time since the start of the trace in a particular
bucket, but it doesn't, so that instead g... | [
{
"path": "src/internal/trace/summary.go",
"patch": "@@ -321,16 +321,47 @@ func (s *Summarizer) Event(ev *Event) {\n \t\t\t// Handle transition out.\n \t\t\tg := s.gs[id]\n \t\t\tswitch old {\n-\t\t\tcase GoUndetermined, GoNotExist:\n+\t\t\tcase GoUndetermined:\n \t\t\t\tg = &GoroutineSummary{ID: id, gorout... | 2025-12-10T02:50:56 |
mrdoob/three.js | 74e6eed1858a18bd4322b937743e3c5b7f59d456 | 92e6962e054c12a6c8a6437559f2d2dcd9f0e397 | LineSegments2: Fix typo. (#30953) | [
{
"path": "examples/jsm/lines/webgpu/LineSegments2.js",
"patch": "@@ -94,9 +94,10 @@ function raycastWorldUnits( lineSegments, intersects ) {\n function raycastScreenSpace( lineSegments, camera, intersects ) {\n \n \tconst projectionMatrix = camera.projectionMatrix;\n-\tconst resolution = lineSegments.resol... | 2025-04-18T10:01:58 |
denoland/deno | 3246e10ded5bcc989498d80f48785f0f7be3f832 | f4c20db6c9277582963ed441d69f91b532bf6404 | fix(ext/node): implement `sqlite`' `SQLTagStore` (#31945)
Implementation is based on Node.js v24.12.0
It passes test cases on
https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-sqlite-template-tag.js,
but since we don't yet implement `beforeEach` of `node:test` the test
will fail. I ported the tests to o... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -410,6 +410,7 @@ deno_core::extension!(deno_node,\n ops::perf_hooks::EldHistogram,\n ops::sqlite::DatabaseSync,\n ops::sqlite::Session,\n+ ops::sqlite::SQLTagStore,\n ops::handle_wrap::AsyncWrap,\n ops::handle_wrap::HandleWrap,\n ops::sqli... | 2026-01-30T10:01:23 |
mrdoob/three.js | 5b83e73a7cf8b738ff96a78368df22c771cc20a1 | 55e9cc201e6d965375986b21533704a8c0c9a60e | IFFParser: Fix missing Debbuger attribute declarations (#30946)
Co-authored-by: Samuel Rigaud <rigaud@gmail.com> | [
{
"path": "examples/jsm/loaders/lwo/IFFParser.js",
"patch": "@@ -86,7 +86,7 @@ class IFFParser {\n \n \t\tthis.debugger.offset = this.reader.offset;\n \n-\t\tvar topForm = this.reader.getIDTag();\n+\t\tconst topForm = this.reader.getIDTag();\n \n \t\tif ( topForm !== 'FORM' ) {\n \n@@ -95,12 +95,12 @@ class... | 2025-04-18T09:40:24 |
golang/go | f105dfd048ce6ca9a8115d7fdd7a4cb60e84ba40 | af14f6791108ece9661590cbf922806492954ea6 | lib/fips140: freeze v1.1.0-rc1 FIPS 140 module zip file
Fixes #76769
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest
Change-Id: I16b0e9463e2e10ee5a6f20967fb6377b6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/729180
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gs... | [
{
"path": "lib/fips140/fips140.sum",
"patch": "@@ -10,3 +10,4 @@\n #\tgo test cmd/go/internal/fips140 -update\n #\n v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b\n+v1.1.0-rc1.zip ea94f8c3885294c9efe1bd8f9b6e86daeb25b6aff2aeb20707cd9a5101f6f54e",
"additions": 1,
... | 2025-12-10T21:49:31 |
vuejs/vue | 14f7015578db8a740450b8f1f45e74b1604ff173 | 531371b818b0e31a989a06df43789728f23dc4e8 | test: fix ssr test due to webpack asset emit order change | [
{
"path": "test/ssr/ssr-template.spec.js",
"patch": "@@ -227,8 +227,8 @@ describe('SSR: template option', () => {\n `<link rel=\"preload\" href=\"/0.js\" as=\"script\">` +\n `<link rel=\"preload\" href=\"/test.css\" as=\"style\">` +\n // images and fonts are only preloaded when explicitly ... | 2017-12-13T00:16:17 |
denoland/deno | f4c20db6c9277582963ed441d69f91b532bf6404 | fae7b29aacf26a94ef44302f18f0ef652ab6417d | fix(flags): correct zsh completions for script arg (#31994)
Closes https://github.com/denoland/deno/issues/31989
Closes https://github.com/denoland/deno/issues/29625
Closes https://github.com/denoland/deno/issues/25710 | [
{
"path": "Cargo.lock",
"patch": "@@ -894,18 +894,18 @@ dependencies = [\n \n [[package]]\n name = \"clap\"\n-version = \"4.5.47\"\n+version = \"4.5.56\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931\"\n+c... | 2026-01-30T00:03:12 |
mrdoob/three.js | 55e9cc201e6d965375986b21533704a8c0c9a60e | b2e0b0ce5cd1aee526a93c60b08ea5510e33eda0 | Fix using with BatchedMesh (#30952) | [
{
"path": "examples/jsm/postprocessing/OutlinePass.js",
"patch": "@@ -558,7 +558,8 @@ class OutlinePass extends Pass {\n \t\t\t},\n \n \t\t\tvertexShader:\n-\t\t\t\t`#include <morphtarget_pars_vertex>\n+\t\t\t\t`#include <batching_pars_vertex>\n+\t\t\t\t#include <morphtarget_pars_vertex>\n \t\t\t\t#include ... | 2025-04-18T09:39:18 |
vuejs/vue | 8936b8d9c147441555fcfd4ac748d817ba5ff60e | 86e4d7566e685f1a98ffab1777fa7d07603c994a | fix(ssr): properly handle errors in async component
fix #6778 | [
{
"path": "src/server/create-renderer.js",
"patch": "@@ -78,11 +78,15 @@ export function createRenderer ({\n return false\n }, cb)\n try {\n- render(component, write, context, () => {\n+ render(component, write, context, err => {\n if (template) {\n re... | 2017-12-12T23:12:02 |
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.