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 |
|---|---|---|---|---|---|
electron/electron | e9ba5876d1c38de916eb7246c4011d1650d92187 | 02be7c11858a172eb398ea0886a27a98d06384cc | fix: osr stutter fix backport for electron. (#45572) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -141,3 +141,4 @@ ignore_parse_errors_for_pkey_appusermodel_toastactivatorclsid.patch\n feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch\n feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n cherry-pick-dd8e2822e507.pa... | 2025-02-17T21:13:44 |
facebook/react | 56ae4b8d22f773c961c6f57946e648de0879c7f1 | d5e8f79cf4d11fa7eee263b3f937deecbe65ffd7 | Remove unused field _debugIsCurrentlyTiming (#31753)
This field is unused. It's not there at runtime. It's just legacy from
the type. | [
{
"path": "packages/react-reconciler/src/ReactInternalTypes.js",
"patch": "@@ -210,7 +210,6 @@ export type Fiber = {\n _debugOwner?: ReactComponentInfo | Fiber | null,\n _debugStack?: string | Error | null,\n _debugTask?: ConsoleTask | null,\n- _debugIsCurrentlyTiming?: boolean,\n _debugNeedsRemoun... | 2024-12-13T04:53:37 |
nodejs/node | 9fe3316280c61d9dfb8428866a8e9c0834443fe1 | d824914e61e0d75e2487066bc6d5de28ad7f2041 | repl: fix eval errors thrown after close throwing `ERR_USE_AFTER_CLOSE`
prevent incorrect throws of `ERR_USE_AFTER_CLOSE` errors when the eval
function of a repl server returns an error after the repl server
has been closed
PR-URL: https://github.com/nodejs/node/pull/58791
Reviewed-By: Luigi Pinca <luigipinca@gmail.c... | [
{
"path": "lib/repl.js",
"patch": "@@ -748,7 +748,9 @@ function REPLServer(prompt,\n process.emit('uncaughtException', e);\n self.clearBufferedCommand();\n self.lines.level = [];\n- self.displayPrompt();\n+ if (!self.closed) {\n+ self.displayPrompt();\n+ ... | 2025-06-28T18:51:41 |
golang/go | cdf64106f621b47987f332d5003afaefd9204b08 | a0eb4548cfcf803da087b7ca461a2d48b9f17a58 | go/types, types2: first argument to append must never be be nil
The current implementation followed the spec faithfully for
the special case for append. Per the spec:
As a special case, append also accepts a first argument assignable to
type []byte with a second argument of string type followed by ... .
As it happen... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -91,6 +91,17 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t// to type []byte with a second argument of string type followed by ... .\n \t\t// This form appends the bytes of the string.\"\n \n+\t... | 2025-11-07T23:50:14 |
vercel/next.js | b2cc3a20cf0e41483594069b11820d26351a6c7f | 3606db59ded25e8d738c035d41ca3131cdf20535 | Turbopack: fix race condition when invalidating (#86859)
### What?
Fixes a race condition where invalidations got lost, especially after restoring from persistent cache.
Theoretically when executing a task again we would remove all dependencies and they would be slowly added again while outputs/cells are read du... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -2176,15 +2176,17 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n span.record(\"result\", \"once task\");\n continue;\n }\n+ let mut make_stale = true;\n ... | 2025-12-05T14:08:39 |
electron/electron | 02be7c11858a172eb398ea0886a27a98d06384cc | 7dfcec931a31d7eada23932b6b11542708f32954 | feat: add excludeUrls and modify urls in WebRequestFilter for better URL filtering (#44692)
* feat: add excludeUrls to web request filter
* refactor: add deprecated field
* test: update tests
* lint: newline
* docs: improve API doc
* fix: add is filter defined property to match all urls
* refactor: r... | [
{
"path": "docs/api/structures/web-request-filter.md",
"patch": "@@ -1,4 +1,5 @@\n # WebRequestFilter Object\n \n-* `urls` string[] - Array of [URL patterns](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Match_patterns) that will be used to filter out the requests that do not match ... | 2025-02-17T20:40:47 |
facebook/react | d5e8f79cf4d11fa7eee263b3f937deecbe65ffd7 | 7130d0c6cf1f604badc5e479a944bda2c19ba971 | [Fiber] Use hydration lanes when scheduling hydration work (#31751)
When scheduling the initial root and when using
`unstable_scheduleHydration` we should use the Hydration Lanes rather
than the raw update lane. This ensures that we're always hydrating using
a Hydration Lane or the Offscreen Lane rather than other ... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzShellHydration-test.js",
"patch": "@@ -255,6 +255,39 @@ describe('ReactDOMFizzShellHydration', () => {\n },\n );\n \n+ // @gate enableHydrationLaneScheduling\n+ it(\n+ 'updating the root at same priority as initial hydration does not ' +\n+ ... | 2024-12-13T04:06:07 |
nodejs/node | eaebfab2998e2ce9fedd51e8343df5d18aaebdcb | cdadb20ae1903aaf0a301b52aaab6dc033c648aa | doc: fix jsdoc definition of assert.ifError() fn in lib/assert.js
PR-URL: https://github.com/nodejs/node/pull/58573
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Rev... | [
{
"path": "lib/assert.js",
"patch": "@@ -682,7 +682,7 @@ assert.doesNotReject = async function doesNotReject(fn, ...args) {\n };\n \n /**\n- * Throws `value` if the value is not `null` or `undefined`.\n+ * Throws `AssertionError` if the value is not `null` or `undefined`.\n * @param {any} err\n * @returns... | 2025-06-27T13:30:51 |
golang/go | 052c192a4cf853f0a613eacc623beca35f8c0e24 | bc5ffe5c79d45447648a012465e158f29ff5efa2 | runtime: fix lock rank for work.spanSPMCs.lock
Currently this lock is treated like a leaf lock, but it's not one. It
can acquire the globalAlloc lock via fixalloc and persistentalloc.
This means we need to figure out where it can be acquired. In general,
it can be acquired by any write barrier, which is already incre... | [
{
"path": "src/runtime/lockrank.go",
"patch": "@@ -71,6 +71,7 @@ const (\n \t// WB\n \tlockRankWbufSpans\n \tlockRankXRegAlloc\n+\tlockRankSpanSPMCs\n \tlockRankMheap\n \tlockRankMheapSpecial\n \tlockRankGlobalAlloc\n@@ -145,6 +146,7 @@ var lockNames = []string{\n \tlockRankHchanLeaf: \"hchanLeaf\... | 2025-11-03T21:40:33 |
facebook/react | e854ce3b1551a4ac97012336c2e2076ab0cc0636 | c86542b240375f95dfd14af5b8ec39e29881e74d | Fix canary version strings (#31721)
We're still publishing RCs and creating canary version strings using the
RC naming convention. Setting the `canaryChannelLabel` back to canary
fixes the version names and tags after the 19 stable release. | [
{
"path": "ReactVersions.js",
"patch": "@@ -26,11 +26,11 @@ const ReactVersion = '19.1.0';\n //\n // It only affects the label used in the version string. To customize the\n // npm dist tags used during publish, refer to .github/workflows/runtime_prereleases_*.yml.\n-const canaryChannelLabel = 'rc';\n+const... | 2024-12-12T19:11:24 |
vercel/next.js | 551b32d8fc26f801a396391c002eea06ab963c31 | 45f0c79076d3e8280666aaeaab77eeebb12049b4 | [test] Fix external rewrite target URL origin (#86863)
Switching to the assigned custom domain because the project has now
Standard Protection enabled, which requires authentication for all other
deployments.
[x-ref](https://github.com/vercel/next.js/actions/runs/19954917697/job/57223360201) | [
{
"path": "test/e2e/skip-trailing-slash-redirect/app/middleware.js",
"patch": "@@ -35,11 +35,11 @@ export default function handler(req) {\n }\n \n console.log(\n- `rewriting to https://middleware-external-rewrite-target-epsp8idgo-uncurated-tests.vercel.app${pathname}`\n+ `rewriting to http... | 2025-12-05T09:39:52 |
electron/electron | 137a5526411fc987271623eed8d80d208e1beaaa | a841d6484c9856c41df52bcd38e2a56ab9f3e4ae | fix: support for v8.setHeapSnapshotNearHeapLimit api (#45606)
* fix: support for v8.setHeapSnapshotNearHeapLimit api
* docs: add support | [
{
"path": "docs/api/command-line-switches.md",
"patch": "@@ -313,6 +313,12 @@ Set the default value of the `verbatim` parameter in the Node.js [`dns.lookup()`\n \n The default is `verbatim` and `dns.setDefaultResultOrder()` have higher priority than `--dns-result-order`.\n \n+### `--diagnostic-dir=directory... | 2025-02-14T16:00:39 |
nodejs/node | db8ca623d47287316f4cc2b402897be053c2a91a | 94f7568e5c105a1a26958eb07000a00182328598 | doc: add array type in http request headers
Document that the headers option in http.request() can be either an
object or an array of strings, similar to message.rawHeaders.
PR-URL: https://github.com/nodejs/node/pull/58049
Fixes: https://github.com/nodejs/node/issues/57986
Reviewed-By: Luigi Pinca <luigipinca@gmail.... | [
{
"path": "doc/api/http.md",
"patch": "@@ -3820,7 +3820,8 @@ changes:\n * `family` {number} IP address family to use when resolving `host` or\n `hostname`. Valid values are `4` or `6`. When unspecified, both IP v4 and\n v6 will be used.\n- * `headers` {Object} An object containing request headers... | 2025-06-27T13:14:37 |
facebook/react | a4964987dc140526702e996223fe7ee293def8ac | 92b62f500c3fca44a9dc9ead936ef3bf19481f02 | Make enableOwnerStacks dynamic (#31661)
following up on https://github.com/facebook/react/pull/31287, fixing
tests
---------
Co-authored-by: Rick Hanlon <rickhanlonii@fb.com> | [
{
"path": "packages/react/index.fb.js",
"patch": "@@ -7,6 +7,8 @@\n * @flow\n */\n \n+import {enableOwnerStacks} from 'shared/ReactFeatureFlags';\n+import {captureOwnerStack as captureOwnerStackImpl} from './src/ReactClient';\n export {\n __CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\... | 2024-12-11T17:00:25 |
vercel/next.js | 45f0c79076d3e8280666aaeaab77eeebb12049b4 | 6ff2d98c3823974991b4f98ddc066559f1b3de44 | Introduce NextConfigRuntime (#86812)
To only include the keys we actually at runtime in the server in `required-server-files.json` and in `.next/standalone/server.js`
There is some chance I missed some property that's needed at runtime (and is incorrectly filtered out by `getNextConfigRuntime`) | [
{
"path": "packages/next/errors.json",
"patch": "@@ -964,5 +964,6 @@\n \"963\": \"Fast setImmediate is not available in the edge runtime.\",\n \"964\": \"An unexpected error occurred while starting to capture immediates\",\n \"965\": \"Expected setImmediate to reject invalid arguments\",\n- \"966\": ... | 2025-12-05T09:24:48 |
golang/go | 771a1dc216ff02dd23c78ada35a207a363690d11 | 972732b245399097e1e59aa2e35c47ef5efbf394 | [dev.simd] cmd/compile: add peepholes for all masked ops and bug fixes
For 512-bits they are unchanged. This CL adds the optimization rules for
128/256-bits under feature check.
This CL also fixed a bug for masked load variant of instructions and
make them zeroing by default as well.
Change-Id: I6fe395541c0cd509984a... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1993,38 +1993,65 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPABSWMasked256,\n \t\tssa.OpAMD64VPABSWMasked512,\n \t\tssa.OpAMD64VPABSDMasked128,\n+\t\tssa.OpAMD64VPABSDMasked128load,\n \t\tssa.OpAMD64VPA... | 2025-11-04T21:46:06 |
nodejs/node | 94f7568e5c105a1a26958eb07000a00182328598 | 488febf856633cc55598c0bc2c7641b8b2362938 | test_runner: fix timeout not propagated to the child process in run
PR-URL: https://github.com/nodejs/node/pull/58831
Fixes: https://github.com/nodejs/node/issues/58802
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Adrian Estrada <edsadr@gmail.com> | [
{
"path": "lib/internal/test_runner/runner.js",
"patch": "@@ -145,6 +145,7 @@ function getRunArgs(path, { forceExit,\n only,\n argv: suppliedArgs,\n execArgv,\n+ root: { timeout },\n ... | 2025-06-27T11:50:17 |
facebook/react | 92b62f500c3fca44a9dc9ead936ef3bf19481f02 | 79ddf5b574db085104d917c24a964cbd5b824e09 | Remove comment syntax from ReactNativeTypes (#31457)
# Summary
I'm working to get the main `react-native` package parsable by modern
Flow tooling (both `flow-bundler`, `flow-api-translator`).
This diff trivially removes some redundant Flow comment syntax in
`ReactNativeTypes.js`, which fixes parsing under thes... | [
{
"path": "packages/react-native-renderer/src/ReactNativeTypes.js",
"patch": "@@ -132,9 +132,10 @@ declare const ensureNativeMethodsAreSynced: NativeMethods;\n (ensureNativeMethodsAreSynced: INativeMethods);\n \n export type HostInstance = NativeMethods;\n-/*::\n-export type HostComponent<Config: {...}> = c... | 2024-12-11T16:55:11 |
electron/electron | a841d6484c9856c41df52bcd38e2a56ab9f3e4ae | 2af57c4b6a8d9093f39208bda56b2527b5ea9c74 | chore: bump node to v22.14.0 (main) (#45578)
* chore: bump node in DEPS to v22.14.0
* src: move more crypto impl detail to ncrypto dep
https://github.com/nodejs/node/pull/56421
* test: move crypto related common utilities in common/crypto
https://github.com/nodejs/node/pull/56714
* module: add findPackageJSON uti... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '134.0.6998.10',\n 'node_version':\n- 'v22.13.1',\n+ 'v22.14.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language... | 2025-02-14T10:05:01 |
golang/go | bc5ffe5c79d45447648a012465e158f29ff5efa2 | 32f8d6486f02d5820977180c52889ec72c799d58 | internal/runtime/sys,math/bits: eliminate bounds checks on len8tab
The compiler cannot currently determine that the accesses to len8tab
are within bounds. Cast to uint8 to avoid unnecessary bounds checks.
Fixes #76166
Change-Id: I1fd930bba2b20d3998252c476308642e08ce00b4
Reviewed-on: https://go-review.googlesource.co... | [
{
"path": "src/internal/runtime/sys/intrinsics.go",
"patch": "@@ -109,7 +109,7 @@ func Len64(x uint64) (n int) {\n \t\tx >>= 8\n \t\tn += 8\n \t}\n-\treturn n + int(len8tab[x])\n+\treturn n + int(len8tab[uint8(x)])\n }\n \n // --- OnesCount ---",
"additions": 1,
"deletions": 1,
"language": "Go"
... | 2025-11-05T14:05:29 |
nodejs/node | 5b0c7dba0ecc6c6e3812ed0a3a6ba959c9f81404 | dbd24b165128affb7468ca42f69edaf7e0d85a9a | test_runner: correct "already mocked" error punctuation placement
PR-URL: https://github.com/nodejs/node/pull/58840
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/test_runner/mock/mock.js",
"patch": "@@ -671,7 +671,7 @@ class MockTracker {\n \n if (baseURL.searchParams.has(kMockSearchParam)) {\n throw new ERR_INVALID_STATE(\n- `Cannot mock '${specifier}.' The module is already mocked.`,\n+ `Cannot mock '${specifier}'. T... | 2025-06-26T20:01:15 |
vercel/next.js | b35713c4b5aa922fef5442d002d43c72b7d13838 | dfb0b8e6e489a4640c984797cac76e2dd90e61a3 | Turbopack: bincode: Use bincode to store the contents of value cells (#86338)
This PR switches `turbo-tasks-backend` to use `bincode` instead of serde for cell contents. To keep PR size manageable, `TaskInput`s are still serialized using serde and a compatibility shim. The next PR fixes that.
See https://github.com/v... | [
{
"path": ".cargo/config.toml",
"patch": "@@ -73,4 +73,4 @@ rustflags = [\n linker = \"arm-linux-gnueabihf-gcc\"\n \n [target.wasm32-unknown-unknown]\n-rustflags = [\"-Zshare-generics=y\", \"--cfg\", 'getrandom_backend=\"wasm_js\"']\n\\ No newline at end of file\n+rustflags = [\"-Zshare-generics=y\", \"--cf... | 2025-12-05T06:36:23 |
facebook/react | 79ddf5b574db085104d917c24a964cbd5b824e09 | 7c4a7c9ddf2f1c8e223565af1256ea201ec0f303 | [Flight] Track Timing Information (#31716)
Stacked on #31715.
This adds profiling data for Server Components to the RSC stream (but
doesn't yet use it for anything). This is on behind
`enableProfilerTimer` which is on for Dev and Profiling builds. However,
for now there's no Profiling build of Flight so in pract... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -48,6 +48,8 @@ import {\n enableFlightReadableStream,\n enableOwnerStacks,\n enableServerComponentLogs,\n+ enableProfilerTimer,\n+ enableComponentPerformanceTrack,\n } from 'shared/ReactFeatureFlags';\n \n import {\n@@ -286,6 +... | 2024-12-11T01:46:19 |
golang/go | 32f8d6486f02d5820977180c52889ec72c799d58 | 1c1c1942ba5b596ade56c983e0ab75f0a237ad15 | runtime: document that tracefpunwindoff applies to some profilers
The tracefpunwindoff GODEBUG applies to all the places where we use
frame pointer unwinding. Originally that was just the execution tracer,
but now we also use it for the block and mutex profilers.
Change-Id: I6a6a69641fede668d96335582dba6d43e62f6a51
R... | [
{
"path": "src/runtime/extern.go",
"patch": "@@ -211,10 +211,11 @@ It is a comma-separated list of name=val pairs setting these named variables:\n \treport. This also extends the information returned by runtime.Stack.\n \tSetting N to 0 will report no ancestry information.\n \n-\ttracefpunwindoff: setting t... | 2025-11-06T14:40:21 |
electron/electron | 2af57c4b6a8d9093f39208bda56b2527b5ea9c74 | 47dbab3856d1a33b8de51e8c189827ef3a6359ea | fix: osr crash on window close (#45573) | [
{
"path": "shell/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -208,8 +208,8 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n compositor_->SetRootLayer(root_layer_.get());\n \n ResizeRootLayer(false);\n+\n render_widget_host_->SetView(this);\n- render_widget_host_->rende... | 2025-02-14T10:01:00 |
nodejs/node | dbd24b165128affb7468ca42f69edaf7e0d85a9a | b4c5fb4ffbec9f27ba5799070c2e0588b7c7ff0e | doc: fix `stream.md` section order
For some reason, `stream.isErrored` and `stream.isReadable` sections
were in between `stream.Readable` static methods sections.
PR-URL: https://github.com/nodejs/node/pull/58811
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Re... | [
{
"path": "doc/api/stream.md",
"patch": "@@ -3050,6 +3050,44 @@ console.log(res); // prints 'HELLOWORLD'\n \n See [`readable.compose(stream)`][] for `stream.compose` as operator.\n \n+### `stream.isErrored(stream)`\n+\n+<!-- YAML\n+added:\n+ - v17.3.0\n+ - v16.14.0\n+changes:\n+ - version:\n+ - v24.... | 2025-06-26T12:10:39 |
facebook/react | 16367ceb02faf5673e0380dec4c4928dfa37f17b | 7cb356e8622e6413671bc22ea273ea39b0b265e4 | [compiler] Fix dropped ref with spread props in InlineJsxTransform (#31726)
When supporting ref as prop in
https://github.com/facebook/react/pull/31558, I missed fixing the
optimization to pass a spread-props-only props object in without an
additional object copy. In the case that we have only a ref along with a
s... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/InlineJsxTransform.ts",
"patch": "@@ -546,16 +546,14 @@ function createPropsProperties(\n let refProperty: ObjectProperty | undefined;\n let keyProperty: ObjectProperty | undefined;\n const props: Array<ObjectProperty | SpreadPa... | 2024-12-10T21:11:17 |
rust-lang/rust | e09936e820524a32544a3681e259d8127d02b596 | b91901d7513b98172420a6a5c860ecf68473efbb | Add codegen tidy check enforcing FIXME over TODO | [
{
"path": "src/tools/tidy/src/codegen.rs",
"patch": "@@ -0,0 +1,60 @@\n+//! Tidy check for codegen backend TODO policy.\n+\n+use std::ffi::OsStr;\n+use std::path::Path;\n+\n+use crate::diagnostics::{CheckId, TidyCtx};\n+use crate::walk::walk;\n+\n+fn is_codegen_repo_path(path: &Path) -> bool {\n+ const C... | 2026-03-06T06:26:50 |
golang/go | 3b3d6b9e5d9898810ee13e739f3ad759ab104fdb | 5f4b5f1a196774e45bc50de0729973119eb7bf07 | cmd/internal/obj/arm64: shorten constant integer loads
Large integer constants can take up to 4 instructions to encode.
We can encode some large constants with a single instruction, namely
those which are bit patterns (repetitions of certain runs of 0s and 1s).
Often the constants we want to encode are *close* to th... | [
{
"path": "src/cmd/asm/internal/asm/testdata/arm64.s",
"patch": "@@ -400,6 +400,8 @@ TEXT\tfoo(SB), DUPOK|NOSPLIT, $-8\n \tMOVD\t$0x11110000, R1 // MOVD\t$286326784, R1 // 2122a2d2\n \tMOVD\t$0xaaaa0000aaaa1111, R1 // MOVD\t$-6149102338357718767, R1 // 212282d24155b5f24155... | 2025-11-04T23:15:16 |
vercel/next.js | 2931550ebbf8b547304d3bccebcb5606700460fc | 5118c41567cde92c4db3077c3b656447c57603ef | Turbopack: bincode: Implement bincode Encode/Decode traits on all turbo task values (#85580)
It looks like bincode should reduce the filesystem cache size by ~10% versus pot, because its not a self-describing format. This attempts to add the `bincode::Encode`/`bincode::Decode` traits everywhere, so that we can use tho... | [
{
"path": "Cargo.lock",
"patch": "@@ -394,6 +394,7 @@ checksum = \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\"\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n dependencies = [\n+ \"bincode 2.0.1\",\n \"hashbrown 0.14.5\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n@@ -4261,6 +4262,7 ... | 2025-12-05T01:47:19 |
nodejs/node | b4c5fb4ffbec9f27ba5799070c2e0588b7c7ff0e | 2e9e844d99d7880099736829f1c19b939a2436e3 | lib: fix `getTypeScriptParsingMode` jsdoc
PR-URL: https://github.com/nodejs/node/pull/58681
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "lib/internal/modules/typescript.js",
"patch": "@@ -30,7 +30,7 @@ const {\n \n /**\n * The TypeScript parsing mode, either 'strip-only' or 'transform'.\n- * @type {string}\n+ * @type {function(): TypeScriptMode}\n */\n const getTypeScriptParsingMode = getLazy(() =>\n (getOptionValue('--experim... | 2025-06-26T07:04:40 |
facebook/react | 7cb356e8622e6413671bc22ea273ea39b0b265e4 | 4a8fc0f92e0f75257962522b51a938bf4dfda77a | [Flight] rename `prerender` to `unstable_prerender` and include in stable channel (#31724)
We added an experimental `prerender` API to flight. This change exposes
this API in stable channels prefixed as `unstable_prerender`. We have
high confidence this API should exist but because we have not yet
settled on how to... | [
{
"path": "fixtures/flight/server/region.js",
"patch": "@@ -106,7 +106,7 @@ async function renderApp(res, returnValue, formState) {\n }\n \n async function prerenderApp(res, returnValue, formState) {\n- const {prerenderToNodeStream} = await import(\n+ const {unstable_prerenderToNodeStream: prerenderToNode... | 2024-12-10T19:51:39 |
rust-lang/rust | e485708b84b357a8fc40d7e0550042f0ca6c2920 | 801bc19d6089fed18b1ffa2f496d154da30f7a18 | Point turbofish inference errors at the uninferred generic arg | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs",
"patch": "@@ -1260,21 +1260,33 @@ impl<'a, 'tcx> Visitor<'tcx> for FindInferSourceVisitor<'a, 'tcx> {\n have_turbofish,\n } = args;\n let generics = tcx.generics_of(generics_def_id... | 2026-03-12T21:39:29 |
electron/electron | 47dbab3856d1a33b8de51e8c189827ef3a6359ea | a1e4550c9e5b2b220530a9238795286bd028dbfb | fix: pointer lock permission after focus loss and regain (#45574) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1608,6 +1608,12 @@ void WebContents::LostPointerLock() {\n ->ExitExclusiveAccessToPreviousState();\n }\n \n+bool WebContents::IsWaitingForPointerLockPrompt(\n+ content::WebContents* web_contents) {\n+ return exclusive_access... | 2025-02-14T09:22:13 |
golang/go | 5f4b5f1a196774e45bc50de0729973119eb7bf07 | 0fe6c8e8c878c44d4466f07ddd0a5b2cd07650c7 | runtime/msan: use different msan routine for copying
__msan_memmove records the fact that we're copying memory, and
actually does the copy. Use instead __msan_copy_shadow, which
records the fact that we're copying memory, but doesn't actually
do the copy itself.
We're doing the copy ourselves, so we don't need msan t... | [
{
"path": "src/runtime/msan/msan.go",
"patch": "@@ -13,8 +13,6 @@ package msan\n #include <stdint.h>\n #include <sanitizer/msan_interface.h>\n \n-extern void __msan_memmove(void*, const void*, uintptr_t);\n-\n void __msan_read_go(void *addr, uintptr_t sz) {\n \t__msan_check_mem_is_initialized(addr, sz);\n }... | 2025-11-08T19:11:10 |
facebook/react | 4a8fc0f92e0f75257962522b51a938bf4dfda77a | 3b597c0576977773910c77e075cc6d6308decb04 | [Flight] Don't call onError/onPostpone when halting and unify error branches (#31715)
We shouldn't call onError/onPostpone when we halt a stream because that
node didn't error yet. Its digest would also get lost.
We also have a lot of error branches now for thenables and streams. This
unifies them under erroredTa... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js",
"patch": "@@ -2870,7 +2870,7 @@ describe('ReactFlightDOM', () => {\n resolveGreeting();\n const {prelude} = await pendingResult;\n \n- expect(errors).toEqual(['boom']);\n+ expect(errors).toEqual([]);\n \n c... | 2024-12-10T16:59:50 |
nodejs/node | 8ba66c5e7b367d640a98265ad4b1c7d54bf8005f | a705e240b197262d5a8eee39f11797d14cfc94cb | repl: improve tab completion on computed properties
improve the tab completion capabilities around computed properties
by replacing the use of brittle and error prone Regex checks with
more robust AST based analysis
PR-URL: https://github.com/nodejs/node/pull/58775
Reviewed-By: James M Snell <jasnell@gmail.com>
Revie... | [
{
"path": "lib/repl.js",
"patch": "@@ -1225,8 +1225,6 @@ REPLServer.prototype.setPrompt = function setPrompt(prompt) {\n const importRE = /\\bimport\\s*\\(\\s*['\"`](([\\w@./:-]+\\/)?(?:[\\w@./:-]*))(?![^'\"`])$/;\n const requireRE = /\\brequire\\s*\\(\\s*['\"`](([\\w@./:-]+\\/)?(?:[\\w@./:-]*))(?![^'\"`])$... | 2025-06-26T01:50:46 |
vercel/next.js | dfc51d0f40c25bd42f1362e6186c706e4bad5603 | 3a323194341a6554147d832cf6bca26e7140bd49 | fix(next/image): handle `?dpl` for src without protocol (#86836)
Follow up to previous PR based on this comment:
https://github.com/vercel/next.js/pull/86485#discussion_r2589758455
We want to avoid adding `?dpl` when the deployment is an absolute url
missing the protocol which is allowed when `unoptimized=true`. | [
{
"path": "packages/next/src/shared/lib/get-img-props.ts",
"patch": "@@ -232,7 +232,7 @@ function generateImgAttrs({\n }: GenImgAttrsData): GenImgAttrsResult {\n if (unoptimized) {\n const deploymentId = getDeploymentId()\n- if (src.startsWith('/') && deploymentId) {\n+ if (src.startsWith('/') &... | 2025-12-04T20:51:51 |
rust-lang/rust | c6c150b0e0fba4a46a900c887d8e75e35f8a942d | 1d7b33214316140dc51f725e417a4180a3d49497 | Remove `CycleErrorHandling`.
Currently if a cycle error occurs the error is created, then handled
according to `CycleErrorHandling` (which comes from the
`cycle_delay_bug` query modifer, or lack thereof), and then
`value_from_cycle_error` is called.
This commit changes things so the error is created and then just pas... | [
{
"path": "compiler/rustc_macros/src/query.rs",
"patch": "@@ -143,7 +143,6 @@ struct QueryModifiers {\n anon: Option<Ident>,\n arena_cache: Option<Ident>,\n cache_on_disk_if: Option<CacheOnDiskIf>,\n- cycle_delay_bug: Option<Ident>,\n depth_limit: Option<Ident>,\n desc: Desc,\n ev... | 2026-03-11T09:37:22 |
electron/electron | aa06b065c06e2e7fa1ac88e402d9113ca9c1bc39 | 9f47c9a0513aae375729dd2c97f2bb10bcd8b8c0 | chore: bump chromium to 134.0.6998.10 (main) (#45564)
* chore: bump chromium to 134.0.6992.0
* chore: add BrowserProcessImpl::CreateGlobalFeaturesForTesting() stub
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/6216193
Remove GlobalFeatures from TestingBrowserProcess::Init
* chore: bump ch... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '134.0.6990.0',\n+ '134.0.6998.10',\n 'node_version':\n 'v22.13.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patch... | 2025-02-11T23:26:39 |
golang/go | 95a0e5adc1e6c27769591de1bfaf520a3265adda | e8ed85d6c22d9530523315c3048ed0455d205bff | sync: don't call Done when f() panics in WaitGroup.Go
This change is based on
https://github.com/golang/go/issues/76126#issuecomment-3473417226
by adonovan.
Fixes #76126
Fixes #74702
Change-Id: Ie404d8204be8917fa8a7b414bb6d319238267c83
GitHub-Last-Rev: b1beddcd725e9168d4d544a9d0322a5a6d8d65b2
GitHub-Pull-Request: go... | [
{
"path": "src/sync/waitgroup.go",
"patch": "@@ -236,7 +236,25 @@ func (wg *WaitGroup) Wait() {\n func (wg *WaitGroup) Go(f func()) {\n \twg.Add(1)\n \tgo func() {\n-\t\tdefer wg.Done()\n+\t\tdefer func() {\n+\t\t\tif x := recover(); x != nil {\n+\t\t\t\t// f panicked, which will be fatal because\n+\t\t\t\t... | 2025-11-10T09:28:16 |
facebook/react | 372ec00c0384cd2089651154ea7c67693ee3f2a5 | 3d2ab01a559943b3f041f841dc0d796d92be0a87 | Update ReactDebugInfo types to declare timing info separately (#31714)
This clarifies a few things by ensuring that there is always at least
one required field. This can be used to refine the object to one of the
specific types. However, it's probably just a matter of time until we
make this tagged unions instead. ... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -11,7 +11,9 @@ import type {\n Thenable,\n ReactDebugInfo,\n ReactComponentInfo,\n+ ReactEnvironmentInfo,\n ReactAsyncInfo,\n+ ReactTimeInfo,\n ReactStackTrace,\n ReactCallSite,\n } from 'shared/ReactTypes';\n@@ -2460,7 +... | 2024-12-10T00:47:43 |
vercel/next.js | 3a323194341a6554147d832cf6bca26e7140bd49 | f9fdf6e97b196d225e2a181cb902274ab77ed176 | Turbopack: bincode: Add traits for types that require `TurboBincodeEncoder` or `TurboBincodeDecoder` (#86633)
**Example usage:** See `CachedTaskType` in `turbopack/crates/turbo-tasks/src/backend.rs` on https://github.com/vercel/next.js/pull/86631 for an example of how this is used. That needs to call the encoder/dec... | [
{
"path": "Cargo.lock",
"patch": "@@ -9096,6 +9096,7 @@ dependencies = [\n \"serde\",\n \"serde_json\",\n \"smallvec\",\n+ \"unty\",\n ]\n \n [[package]]",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "Cargo.toml",
"patch": "@@ -470,6 +470,7 @@ tracing = \"0.... | 2025-12-04T20:34:34 |
nodejs/node | a705e240b197262d5a8eee39f11797d14cfc94cb | f08e0a0fa05d36c1f131fb7a888725e2a0fa1b3c | module: convert schema-only core module on `convertCJSFilenameToURL`
Co-authored-by: Joyee Cheung <joyeec9h3@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/58612
Fixes: https://github.com/nodejs/node/issues/58607
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "lib/internal/modules/customization_hooks.js",
"patch": "@@ -6,6 +6,7 @@ const {\n ArrayPrototypeSplice,\n ObjectAssign,\n ObjectFreeze,\n+ StringPrototypeSlice,\n StringPrototypeStartsWith,\n Symbol,\n } = primordials;\n@@ -126,9 +127,12 @@ function registerHooks(hooks) {\n */\n funct... | 2025-06-25T16:49:56 |
electron/electron | 46d316692d79aa988f1bb29c198da099d5221bbd | 2f288bc7ccfff4e2cae5c4d19cef9eef3e5ec54c | fix: asan build on macOS (#45541)
* fix: asan build on macOS
* chore: fix build | [
{
"path": "patches/node/.patches",
"patch": "@@ -38,3 +38,4 @@ build_use_third_party_simdutf.patch\n fix_remove_fastapitypedarray_usage.patch\n test_handle_explicit_resource_management_globals.patch\n linux_try_preadv64_pwritev64_before_preadv_pwritev_4683.patch\n+build_remove_explicit_linker_call_to_libm_o... | 2025-02-11T06:04:07 |
golang/go | b76103c08e72ac34db2092d2cf1a3c1ec6adf451 | 47a63a331daa96de55562fbe0fa0201757c7d155 | cmd/go: output missing GoDebug entries
The `go help mod edit` command references the GoDebug struct, but `go
mod edit -json` was not displaying them when appropriate.
Fixes #75105
Change-Id: Iec987882941e01b0cf4d4fe31dda9e7a6e2dde87
Reviewed-on: https://go-review.googlesource.com/c/go/+/706757
LUCI-TryBot-Result: Go... | [
{
"path": "src/cmd/go/internal/modcmd/edit.go",
"patch": "@@ -584,8 +584,9 @@ func flagDropIgnore(arg string) {\n // fileJSON is the -json output data structure.\n type fileJSON struct {\n \tModule editModuleJSON\n-\tGo string `json:\",omitempty\"`\n-\tToolchain string `json:\",omitempty\"`\n+\tGo... | 2025-09-25T15:07:17 |
facebook/react | 226b85926a70a9b258583c234bd4e143e6bb42e4 | 7283a213dbbc31029e65005276f12202558558fc | [compiler] Support for context variable loop iterators
Summary:
Fixing a compiler todo
ghstack-source-id: c4d9226b1745d003dc9945df1ac5c5a01712f909
Pull Request resolved: https://github.com/facebook/react/pull/31709 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -1354,20 +1354,6 @@ function codegenForInit(\n init: ReactiveValue,\n ): t.Expression | t.VariableDeclaration | null {\n if (init.kind === 'SequenceExpression') {\n- for (const instr ... | 2024-12-09T18:15:20 |
vercel/next.js | f9fdf6e97b196d225e2a181cb902274ab77ed176 | 38ef2360e1e133f329a9061ce17aad8aaab33cb2 | Turbopack: bincode: Add custom bincode reader/writer implementations (#86632)
- We need a custom writer because we want to write to a `SmallVec`, and I don't want to go through `std::io::Write` to do that, as there's potential error checking overhead that's not needed (might compile away, but I don't want to take any... | [
{
"path": "turbopack/crates/turbo-bincode/src/lib.rs",
"patch": "@@ -1,11 +1,120 @@\n+use std::ptr::copy_nonoverlapping;\n+\n use ::smallvec::SmallVec;\n use bincode::{\n BorrowDecode, Decode, Encode,\n- de::{BorrowDecoder, Decoder},\n- enc::Encoder,\n+ de::{BorrowDecoder, Decoder, DecoderImpl,... | 2025-12-04T19:40:45 |
nodejs/node | 2bb7667475e9aad2fe95d60c0d24b1688d6c8f61 | 100c6da238bec44ea0b18a3df4e82080a8ae05b3 | fs: move FileHandle close on GC to EOL
Automatically closing a FileHandle on garbage collection
has been deprecated for some time now. We've said that
it will eventually be removed and become and error.
PR-URL: https://github.com/nodejs/node/pull/58536
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-B... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -2865,16 +2865,18 @@ To maintain existing behavior `response.finished` should be replaced with\n \n <!-- YAML\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/58536\n+ description: End-of-Life.\n - version: v14.0.0\n... | 2025-05-31T19:42:27 |
electron/electron | 2f288bc7ccfff4e2cae5c4d19cef9eef3e5ec54c | f5025b624670e5039d7736c82be2e1ce0743fac8 | docs: fix grammar in preload tutorial summary (#45522) | [
{
"path": "docs/tutorial/tutorial-3-preload.md",
"patch": "@@ -252,7 +252,7 @@ apps often use the preload script to set up inter-process communication (IPC) in\n to pass arbitrary messages between the two kinds of processes.\n \n In the next part of the tutorial, we will be showing you resources on adding m... | 2025-02-10T21:15:32 |
golang/go | 7995751d3ae20f82cbd6ef2a893c35bb92f8d2e6 | 66c7ca7fb3f2e51c39b6b29c8ea9ade62cd08ec5 | cmd/go: copy git reuse and support repos to hg
The reuse_hg.txt is reuse_git.txt with a skip at the top
and a global substitute of git->hg and fetch->pull.
The prefixtagtests.txt and tagtests.txt are straight
copies of the git equivalents.
This is to set up a readable diff in the followup CL
that turns it into a reu... | [
{
"path": "src/cmd/go/testdata/script/reuse_hg.txt",
"patch": "@@ -0,0 +1,483 @@\n+skip\n+\n+[short] skip\n+[!hg] skip\n+\n+env GO111MODULE=on\n+env GOPROXY=direct\n+env GOSUMDB=off\n+\n+# go mod download with the pseudo-version should invoke hg but not have a TagSum or Ref.\n+go mod download -x -json vcs-t... | 2025-11-05T23:19:20 |
facebook/react | 7283a213dbbc31029e65005276f12202558558fc | 65ba3e87e49f7ea1bac04e1ed938debdbafcf30a | Fix headings in React 19 CHANGELOG (#31683)
Co-authored-by: eps1lon <sebastian.silbermann@vercel.com> | [
{
"path": "CHANGELOG.md",
"patch": "@@ -1,12 +1,12 @@\n-## 19.0.0 (December 5, 2024\\)\n+## 19.0.0 (December 5, 2024)\n \n Below is a list of all new features, APIs, deprecations, and breaking changes. Read [React 19 release post](https://react.dev/blog/2024/04/25/react-19) and [React 19 upgrade guide](http... | 2024-12-06T15:55:53 |
vercel/next.js | 38ef2360e1e133f329a9061ce17aad8aaab33cb2 | e01d3f2e7c06fe814a07c28d8e41d6913fe63445 | Add Firebase App Hosting to the deployment guide (#86832)
Add Firebase App Hosting to the list of adapters in the [deployment
guide](https://nextjs.org/docs/app/getting-started/deploying#adapters).
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as poss... | [
{
"path": "docs/01-app/01-getting-started/17-deploying.mdx",
"patch": "@@ -76,6 +76,7 @@ Refer to each provider's documentation for information on supported Next.js feat\n - [AWS Amplify Hosting](https://docs.amplify.aws/nextjs/start/quickstart/nextjs-app-router-client-components)\n - [Cloudflare](https://d... | 2025-12-04T19:06:04 |
nodejs/node | ac540c03e5e2e5350b93a1da8aa1c56fb7383bc3 | 22d30618d1e6d59f4dc152fa0b9820388bea3861 | 2025-06-24, Version 22.17.0 'Jod' (LTS)
Notable changes:
assert:
* (SEMVER-MINOR) mark `partialDeepStrictEqual()` as stable (Ruben Bridgewater) https://github.com/nodejs/node/pull/57370
doc:
* deprecate instantiating `node:http` classes without new (Yagiz Nizipli) https://github.com/nodejs/node/pull/58518
* dep... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -47,7 +47,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.0\">24.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.16.0\">22.16.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.17.0\">22.17.0... | 2025-06-10T18:43:50 |
electron/electron | f5025b624670e5039d7736c82be2e1ce0743fac8 | e055ce7c39c80e38321769df78b7323b9a00e52b | fix: avoid IPC for renderer `webFrame.getZoom...` APIs (#45499)
* fix: avoid IPC for renderer `webFrame.getZoom...` APIs
* Remove `DoGetZoomLevel` IPC
* Fix synchronous behavior & nullptr deref
* Use local root | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3693,12 +3693,6 @@ void WebContents::SetTemporaryZoomLevel(double level) {\n zoom_controller_->SetTemporaryZoomLevel(level);\n }\n \n-void WebContents::DoGetZoomLevel(\n- electron::mojom::ElectronWebContentsUtility::DoGetZoomLeve... | 2025-02-10T21:09:11 |
facebook/react | 65ba3e87e49f7ea1bac04e1ed938debdbafcf30a | c56c6234328a29930487295afe61597db48f058c | docs: use diff codeblock for `useReducer` typings change (#31685)
## Summary
This PR updates the 19.0.0 changelog to use diff-styled code blocks for
illustrating changes to `useReducer` typings. Also removes the incorrect
square brackets in the second diff, it should be `Action` instead of
`[Action]`.
## Ho... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -97,11 +97,15 @@ The most common changes can be codemodded with `npx types-react-codemod@latest p\n * JSX namespace in TypeScript: The global `JSX` namespace is removed to improve interoperability with other libraries using JSX. Instead, the JSX namespace is available ... | 2024-12-06T15:12:38 |
golang/go | 5cd1b73772e339e3b460d53ba37630704a323ca7 | 91ca80f970c2a20d1ed6603281c97e7e617b87e8 | runtime: correctly print panics before fatal-ing on defer
Fixes #67792
Change-Id: I93d16580cb31e54cee7c8490212404e4d0dec446
Reviewed-on: https://go-review.googlesource.com/c/go/+/613757
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Michael Pratt <mpratt@google.co... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -1235,10 +1235,12 @@ func throw(s string) {\n //\n //go:nosplit\n func fatal(s string) {\n+\tp := getg()._panic\n \t// Everything fatal does should be recursively nosplit so it\n \t// can be called even when it's unsafe to grow the stack.\n \tprintlock() // Pre... | 2024-09-17T12:10:20 |
vercel/next.js | 4c99cf39f41fa6deba237caaa6bb5e31307f2f42 | be0d24ad6d95f250fc7cc27ed454f1fd441a68c4 | Turbopack: bincode: Add crate with bincode serialization helpers (#85878)
Add helpers for using bincode with various commonly-used foreign types that do not implement `bincode::Encode`/`bincode::Decode`. We can't implement the bincode traits on these types ourselves because of the orphan rules.
This is pulled out of ... | [
{
"path": "Cargo.lock",
"patch": "@@ -572,6 +572,24 @@ dependencies = [\n \"serde\",\n ]\n \n+[[package]]\n+name = \"bincode\"\n+version = \"2.0.1\"\n+source = \"git+https://github.com/bgw/bincode.git?branch=bgw%2Fpatches#19f09c5f6895d769883c10b3d374f761ab7fe83d\"\n+dependencies = [\n+ \"bincode_derive\",\... | 2025-12-04T18:55:47 |
electron/electron | 70168c8bdcafcbf70b33230cbf9fdc82a969870a | e4cd162433927de69943fab3ad13bd9b9c396ec6 | fix: fix mksnapshot gen/v8 path (#45488)
* fix: fix mksnapshot gen/v8 path
* build: use 7z compression
* build: unzip mksnapshot on Windows and update zip
* chore: escape backslashes
* chore: try another attempt
* chore: remove rmdir for now
---------
Co-authored-by: John Kleinschmidt <jkleinsc@el... | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -108,7 +108,9 @@ runs:\n if [ \"${{ inputs.target-platform }}\" = \"win\" ]; then\n cd out/Default\n powershell Compress-Archive -update mksnapshot_args mksnapshot.zip\n- powershell Compress-Archive -upd... | 2025-02-10T15:21:29 |
rust-lang/rust | bf631b32835bc0a24e2c496cddba9a473ad37e8a | 2d76d9bc76f27b03b4899e72ce561c7ac2c5cf6b | compiletest: Use PYTHONPATH for lldb too, not only gdb
That allows you to e.g. run debuginfo tests with lldb-15 on Ubuntu 24.04 like this:
sudo apt install lldb-15 python3-six
PYTHONPATH=/usr/lib/python3/dist-packages ./x --set build.lldb=lldb-15 test tests/debuginfo/basic-stepping.rs | [
{
"path": "src/tools/compiletest/src/runtest/debuginfo.rs",
"patch": "@@ -310,12 +310,7 @@ impl TestCx<'_> {\n \n let mut gdb = Command::new(self.config.gdb.as_ref().unwrap());\n \n- // FIXME: we are propagating `PYTHONPATH` from the environment, not a compiletest flag!\n- ... | 2026-03-13T05:41:11 |
facebook/react | c56c6234328a29930487295afe61597db48f058c | d27fa084f66b2e47933e7760a1e78c6d101dda5b | docs: fix capitalization of TypeScript (#31682) | [
{
"path": "CHANGELOG.md",
"patch": "@@ -77,7 +77,7 @@ React 19 brings in a number of breaking changes, including the removals of long-\n * Diffs for hydration errors: In the case of a mismatch, React 19 logs a single error with a diff of the mismatched content. \n * Compatibility with third-party scripts a... | 2024-12-05T23:04:11 |
nodejs/node | 22d30618d1e6d59f4dc152fa0b9820388bea3861 | 6ce6fdbf219a72ecdbe5e65d0259f1072304b1d9 | 2025-06-24, Version 24.3.0 (Current)
Notable changes:
doc:
* add islandryu to collaborators (Shima Ryuhei) https://github.com/nodejs/node/pull/58714
fs:
* (SEMVER-MINOR) allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) https://github.com/nodejs/node/pull/58490
module:
* (SEMVER-M... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -39,7 +39,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.2.0\">24.2.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.3.0\">24.3.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.2.0\">2... | 2025-06-24T18:48:53 |
golang/go | 91ca80f970c2a20d1ed6603281c97e7e617b87e8 | d36e88f21f56dcf45fed2231fe28f948a31c936b | runtime/cgo: improve error messages after pointer panic
This CL improves the error messages after panics due to the
sharing of an unpinned Go pointer (or a pointer to an unpinned Go
pointer) between Go and C.
This occurs when it is:
1. returned from Go to C (through cgoCheckResult)
2. passed as argument to a C functi... | [
{
"path": "src/cmd/cgo/internal/testerrors/ptr_test.go",
"patch": "@@ -14,6 +14,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"slices\"\n \t\"strings\"\n \t\"sync/atomic\"\n@@ -24,15 +25,16 @@ var tmp = flag.String(\"tmp\", \"\", \"use `dir` for temporary files and do no... | 2025-11-05T21:00:52 |
vercel/next.js | 12a80b453ef7871cf9e9ef486a216e0b93b2ca5c | 1b3c51aa68046f5c83f489fc5e57e4f4eed96eaa | fix(next/image): add `?dpl` query string for local images (without static import) (#86485)
In a previous PR https://github.com/vercel/next.js/pull/73184 the `?dpl`
query string was added to local images from static imports but not to
images without the static import.
This was a subtle change based on malte's PR revie... | [
{
"path": "packages/next/src/shared/lib/get-img-props.ts",
"patch": "@@ -1,4 +1,5 @@\n import { warnOnce } from './utils/warn-once'\n+import { getDeploymentId } from './deployment-id'\n import { getImageBlurSvg } from './image-blur-svg'\n import { imageConfigDefault } from './image-config'\n import type {\n... | 2025-12-04T16:35:02 |
rust-lang/rust | 49163144b19ea28f8c656090918e75345e1fb032 | c7b206bba4434ed928e9615f31082a9ef3f67c27 | Fix grammar in Pin documentation | [
{
"path": "library/core/src/pin.rs",
"patch": "@@ -600,7 +600,7 @@\n //! automatically called [`Pin::get_unchecked_mut`].\n //!\n //! This can never cause a problem in purely safe code because creating a pinning pointer to\n-//! a type which has an address-sensitive (thus does not implement `Unpin`) require... | 2026-03-08T13:35:28 |
facebook/react | d27fa084f66b2e47933e7760a1e78c6d101dda5b | 52685a75039846fafec16d174e743d4525591ce7 | Fix two typos in CHANGELOG.md (#31678) | [
{
"path": "CHANGELOG.md",
"patch": "@@ -8,7 +8,7 @@ Below is a list of all new features, APIs, deprecations, and breaking changes. R\n \n ### React\n \n-* Actions: `startTransition` can now accept async functions. Functions passed to `startTranstion` are called “Actions”. A given Transition can include one ... | 2024-12-05T23:03:24 |
electron/electron | e4cd162433927de69943fab3ad13bd9b9c396ec6 | 4085185e2dd56cd691ba3c8ece36f63c969563b0 | docs: fix powerMonitor event types (#45518)
* fix: powerMonitor event types
* fix: thermal-state-change missing Returns | [
{
"path": "docs/api/power-monitor.md",
"patch": "@@ -26,7 +26,10 @@ Emitted when system changes to battery power.\n \n ### Event: 'thermal-state-change' _macOS_\n \n-* `state` string - The system's new thermal state. Can be `unknown`, `nominal`, `fair`, `serious`, `critical`.\n+Returns:\n+\n+* `details` Eve... | 2025-02-10T15:13:11 |
nodejs/node | 6ce6fdbf219a72ecdbe5e65d0259f1072304b1d9 | d08513dfc7d7fe2e1d89bf5f283a30a006b990ff | module: update tests for combined ambiguous module syntax error
PR-URL: https://github.com/nodejs/node/pull/55874
Fixes: https://github.com/nodejs/node/issues/55776
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "lib/internal/modules/esm/module_job.js",
"patch": "@@ -73,9 +73,16 @@ const isCommonJSGlobalLikeNotDefinedError = (errorMessage) =>\n * @param {string} url\n * @returns {void}\n */\n-const explainCommonJSGlobalLikeNotDefinedError = (e, url) => {\n+const explainCommonJSGlobalLikeNotDefinedError... | 2025-06-24T21:49:31 |
golang/go | 43b91e7abd1c3b84c919c97bca30480d2610f9ec | 48c7fa13c63761c8b52cbfac1f9eab062d475c0c | iter: fix a tiny doc comment bug
Use the right name for method Pos.Value in a sample doc comment in the package overview.
Fixes #76187.
Change-Id: Id1f5b0ca4ea39493b10140bc304c57c081c805ee
GitHub-Last-Rev: 7bf5d0774749111cd13e40700b31a5a83c288db9
GitHub-Pull-Request: golang/go#76195
Reviewed-on: https://go-review.go... | [
{
"path": "src/iter/iter.go",
"patch": "@@ -188,7 +188,7 @@ For example, a tree implementation might provide:\n \t// It is only valid during the yield call it is passed to.\n \ttype Pos[V any] struct { ... }\n \n-\t// Pos returns the value at the cursor.\n+\t// Value returns the value at the cursor.\n \tfun... | 2025-11-06T05:18:46 |
vercel/next.js | 809649db516dfc45a5e8d0182c2dd8c8b2319884 | 80791c019fa76c66c3f6a108b14651bcf5e7c031 | [test] fix missing nft file (#86817) | [
{
"path": "test/production/next-server-nft/next-server-nft.test.ts",
"patch": "@@ -296,6 +296,7 @@ const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n \"/node_modules/next/dist/server/lib/trace/tracer.js\",\n \"/node_modules/next/dist/server/load-manifest.external.js\"... | 2025-12-04T12:18:17 |
rust-lang/rust | ea674ecb09a9d6ecd08c3c209b56e3abe084b5cf | 4efe3dc40fdd5ed3d001e7736ff384f2d21d7361 | core: lift FIXME comment from option.rs to iter::try_process
This FIXME is relevant not only to Option but other similar cases that
use iter::try_process(). The referenced issue 11084 was closed in 2021,
and the related PR 59605 was not merged due to inconclusive results. | [
{
"path": "library/core/src/iter/adapters/mod.rs",
"patch": "@@ -155,6 +155,9 @@ where\n for<'a> F: FnMut(GenericShunt<'a, I, R>) -> U,\n R: Residual<U>,\n {\n+ // FIXME(#11084): we might be able to get rid of GenericShunt in favor of\n+ // Iterator::scan, as performance should be comparable\n... | 2026-03-04T19:09:56 |
electron/electron | 4085185e2dd56cd691ba3c8ece36f63c969563b0 | a141f68c83bcb4f45138379436f8e5d6baa39ca6 | docs: `transactions-updated` event type (#45527)
fix: `transactions-updated` event type | [
{
"path": "docs/api/in-app-purchase.md",
"patch": "@@ -10,13 +10,13 @@ The `inAppPurchase` module emits the following events:\n \n ### Event: 'transactions-updated'\n \n-Emitted when one or more transactions have been updated.\n-\n Returns:\n \n * `event` Event\n * `transactions` Transaction[] - Array of [`... | 2025-02-10T15:12:17 |
facebook/react | 16d2bbbd1f1617d636ea0fd271b902a12a763c27 | 6bcf0d20dae349bba428d8f73dbcf0284b0acb10 | Client render dehydrated Suspense boundaries on document load (#31620)
When streaming SSR while hydrating React will wait for Suspense
boundaries to be revealed by the SSR stream before attempting to hydrate
them. The rationale here is that the Server render is likely further
ahead of whatever the client would prod... | [
{
"path": "packages/internal-test-utils/ReactJSDOM.js",
"patch": "@@ -0,0 +1,20 @@\n+const JSDOMModule = jest.requireActual('jsdom');\n+\n+const OriginalJSDOM = JSDOMModule.JSDOM;\n+\n+module.exports = JSDOMModule;\n+module.exports.JSDOM = function JSDOM() {\n+ let result;\n+ if (new.target) {\n+ resul... | 2024-12-03T21:13:35 |
nodejs/node | 057b4b5d301bc26a6c011f2f32f15b54d335613c | 8204eeb2686f2254932c8e5aee71389ddf7b0396 | http: fix keep-alive not timing out after post-request empty line
Fixes: https://github.com/nodejs/node/issues/58140
PR-URL: https://github.com/nodejs/node/pull/58178
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "lib/_http_server.js",
"patch": "@@ -918,8 +918,6 @@ function socketOnError(e) {\n }\n \n function onParserExecuteCommon(server, socket, parser, state, ret, d) {\n- resetSocketTimeout(server, socket, state);\n-\n if (ret instanceof Error) {\n prepareError(ret, parser, d);\n debug('parse... | 2025-06-24T12:37:20 |
golang/go | f01a1841fd9aff9229b27e3e1d3b8b4ee349cbc3 | 8cf7a0b4c956aad5a8b98efde8ea6b7cde173902 | cmd/compile: fix error message on loong64
Change-Id: I90428330b17ab9f93ae94a77cefc24464e225df5
Reviewed-on: https://go-review.googlesource.com/c/go/+/717700
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Meidan Li <l... | [
{
"path": "src/cmd/compile/internal/loong64/ssa.go",
"patch": "@@ -692,7 +692,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t\t// vs\n \t\t\t// 16 instructions in the straightline code\n \t\t\t// Might as well use straightline code.\n-\t\t\tv.Fatalf(\"ZeroLoop size too small %d\", n)\n... | 2025-11-04T09:22:24 |
vercel/next.js | bf23890a91f1ee3ccb2b1246dc075ca7a56693b4 | 59beba7cf075f477d91c18deac1cabef474f70ef | [Cache Components] Fast setImmediate (#86018)
> This place is not a place of honor... no highly esteemed deed is
commemorated here... nothing valued is here.
> What is here was dangerous and repulsive to us. This message is a
warning about danger.
you think you know when setImmediate is supposed to run? no you don't
... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -951,5 +951,18 @@\n \"950\": \"The manifests singleton was not initialized.\",\n \"951\": \"The client reference manifest for route \\\"%s\\\" does not exist.\",\n \"952\": \"Cannot access \\\"%s\\\" without a work store.\",\n- \"953\": \"This is a ... | 2025-12-03T17:32:05 |
facebook/react | 5b0ef217ef32333a8e56f39be04327c89efa346f | 7670501b0dc1a97983058b5217a205b62e2094a1 | s/server action/server function (#31005)
## Overview
Changes the error message to say "Server Functions" instead of "Server
Actions" since this error can fire in cases like:
```
<button onClick={serverFunction} />
```
Which is calling a server function, not a server action. | [
{
"path": "packages/react-client/src/ReactFlightReplyClient.js",
"patch": "@@ -693,7 +693,7 @@ export function processReply(\n ) {\n if (temporaryReferences === undefined) {\n throw new Error(\n- 'Only plain objects, and a few built-ins, can be passed to Server Actions. ' ... | 2024-12-02T15:02:31 |
electron/electron | 9199d5c610c399d612dd938c87e2a92de56ec68c | 96460becf9ab0bf49d7d556a5c567da3c4217701 | fix: window maximizing with Mica (#45456)
* fix: window maximizing with Mica
* Fix rounded corners after restore | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -642,8 +642,22 @@ void NativeWindowViews::SetEnabledInternal(bool enable) {\n #endif\n }\n \n-#if BUILDFLAG(IS_LINUX)\n void NativeWindowViews::Maximize() {\n+#if BUILDFLAG(IS_WIN)\n+ if (IsTranslucent()) {\n+ // If a window is translucent b... | 2025-02-07T20:00:36 |
golang/go | 8cf7a0b4c956aad5a8b98efde8ea6b7cde173902 | 2dd7e94e163f172472273b81846e6e3add412bc6 | cmd/link: support weak binding on darwin
Symbols loaded from host files can have the N_WEAK_REF bit set,
which is used to instruct the loader to not fail if that symbol
can't be resolved.
The Go internal linker should honor this information by setting the
BIND_SYMBOL_FLAGS_WEAK_IMPORT flag in the corresponding bind t... | [
{
"path": "src/cmd/cgo/internal/test/cgo_darwin_test.go",
"patch": "@@ -0,0 +1,11 @@\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 && darwin\n+\n+package cgotest\n+\n+im... | 2025-10-22T14:33:18 |
facebook/react | aba370f1e45d21f19f33c04c33fc99fb3d0109e5 | 1345c37941d4e2e29034bb0fc0cfb6d01bb1d841 | Add moveBefore Experiment (#31596)
A long standing issue for React has been that if you reorder stateful
nodes, they may lose their state and reload. The thing moving loses its
state. There's no way to solve this in general where two stateful nodes
swap.
The [`moveBefore()`
proposal](https://chromestatus.com/fe... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -93,6 +93,7 @@ import {\n enableTrustedTypesIntegration,\n enableAsyncActions,\n disableLegacyMode,\n+ enableMoveBefore,\n } from 'shared/ReactFeatureFlags';\n import {\n HostComponent,\n@@ -525,6 +526,7 @@ expo... | 2024-11-22T18:24:29 |
vercel/next.js | 654cd8e431e32c631a978c6acc79c78fb550786f | c964caa5ebf3d280f287adabaed4771dce52a3d7 | Fix typo in fetching data documentation (#86758)
Corrects a grammatical error in the data preloading explanation. The
phrase "an utility function" was updated to "a utility function" because
"utility" begins with a consonant sound. This improves clarity and
maintains consistency with standard English usage throughout ... | [
{
"path": "docs/01-app/01-getting-started/07-fetching-data.mdx",
"patch": "@@ -569,7 +569,7 @@ export default async function Page({ params }) {\n \n ### Preloading data\n \n-You can preload data by creating an utility function that you eagerly call above blocking requests. `<Item>` conditionally renders bas... | 2025-12-03T13:27:49 |
nodejs/node | d8de8f3d6b4ae5ff06b27ff041a0acd3209d1f20 | 5f3262add6f481f4f91075dc40885c9bd9cded15 | doc: fix stability 1.x links excluding the decimal digit
PR-URL: https://github.com/nodejs/node/pull/58783
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "tools/doc/html.mjs",
"patch": "@@ -206,10 +206,11 @@ function linkJsTypeDocs(text) {\n \n const isJSFlavorSnippet = (node) => node.lang === 'cjs' || node.lang === 'mjs';\n \n+const STABILITY_RE = /(.*:)\\s*(\\d(?:\\.\\d)?)([\\s\\S]*)/;\n+\n // Preprocess headers, stability blockquotes, and YAML b... | 2025-06-23T22:30:45 |
golang/go | 2dd7e94e163f172472273b81846e6e3add412bc6 | 28f1ad5782d80a0a3f95b004c6a822003fd0b1a1 | cmd/go: use go.dev instead of golang.org in flag errors
Also add the URL to the one possible error that didn't have it.
It looks like CL 93836 just missed the third error case when
adding the URL.
Change-Id: I837f8a730b25adb42909c9dfbde0dad2f664fec5
Reviewed-on: https://go-review.googlesource.com/c/go/+/718220
Review... | [
{
"path": "src/cmd/go/internal/work/security.go",
"patch": "@@ -375,13 +375,13 @@ Args:\n \t\t\t\t}\n \n \t\t\t\tif i+1 < len(list) {\n-\t\t\t\t\treturn fmt.Errorf(\"invalid flag in %s: %s %s (see https://golang.org/s/invalidflag)\", source, arg, list[i+1])\n+\t\t\t\t\treturn fmt.Errorf(\"invalid flag in %s... | 2025-11-05T20:02:52 |
facebook/react | a9f14cb44e58c13843cdeacc7dc352562cb3b976 | c11c9510fa14bbd87053685c19bfdfec2f427f49 | Fix Logging of Immediately Resolved Promises (#31610)
This avoid re-emitting the yellow "Event" log when we ping inside the
original event. Instead of treating events as repeated when we get
repeated updates, we treat them as repeated if we've ever logged out
this event before.
Additionally, in the case the prer... | [
{
"path": "packages/react-reconciler/src/ReactFiberWorkLoop.js",
"patch": "@@ -265,7 +265,6 @@ import {\n startProfilerTimer,\n stopProfilerTimerIfRunningAndRecordDuration,\n stopProfilerTimerIfRunningAndRecordIncompleteDuration,\n- markUpdateAsRepeat,\n trackSuspendedTime,\n startYieldTimer,\n ... | 2024-11-21T22:16:54 |
electron/electron | 96460becf9ab0bf49d7d556a5c567da3c4217701 | d7c6fb8250ad4839172b96193810956ce897c24e | fix: Update widget visibility in `NativeWindowMac::ShowInactive` (#45427)
When using `views::WebView` on macOS `NativeWidgetMacNSWindowHost`
contains a layer and compositor responsible for drawing web contents.
To trigger drawing `NativeWidgetMacNSWindowHost::OnVisibilityChanged`
needs to be called and `[NSWindow o... | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -429,7 +429,13 @@ static bool FromV8(v8::Isolate* isolate,\n if (parent())\n InternalSetParentWindow(parent(), true);\n \n+ // Triggers `NativeWidgetMacNSWindowHost::OnVisibilityChanged`.\n+ widget()->ShowInactive();\n+ // `Widget::ShowIn... | 2025-02-07T19:31:08 |
vercel/next.js | b3e51f8bfe6eb8be915ef43c78b3226362ff8c71 | 78a802cb1ed4730992855d7df88652a4727d5f71 | Turbopack: Use TransientCellData for non-serializable cells (#86069)
Use TransientCellData for non-serializable cells
use SharedReference to reduce size
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklis... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -817,9 +817,15 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n }\n }\n \n+ let ReadCellOptions {\n+ is_serializable_cell_content,\n+ tracking,\n+ final_read_... | 2025-12-03T12:20:58 |
nodejs/node | 32be16bca2a12eb1bc8a1b9d468f7a4ec4a6522f | 04cb57249adffe17fe0a4c0048dd64c4b1fc68f0 | build: fix typo 'Stoage' to 'Storage' in help text
PR-URL: https://github.com/nodejs/node/pull/58777
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-B... | [
{
"path": "configure.py",
"patch": "@@ -868,7 +868,7 @@\n action='store_true',\n dest='without_sqlite',\n default=None,\n- help='build without SQLite (disables SQLite and Web Stoage API)')\n+ help='build without SQLite (disables SQLite and Web Storage API)')\n \n parser.add_argument('--nin... | 2025-06-23T15:23:47 |
golang/go | 28f1ad5782d80a0a3f95b004c6a822003fd0b1a1 | daa220a1c952b50a05a3a9411f122689247881b8 | cmd/go: fix TestScript/govcs
On my Mac, TestScript/govcs was failing because hg prints a URL
using 1.0.0.127.in-addr.arpa instead of 127.0.0.1, and my Mac
cannot resolve that name back into an IP address.
% host 127.0.0.1
1.0.0.127.in-addr.arpa domain name pointer localhost.
% host 1.0.0.127.in-addr.arpa
%
Change-Id... | [
{
"path": "src/cmd/go/internal/vcweb/hg.go",
"patch": "@@ -109,6 +109,13 @@ func (h *hgHandler) Handler(dir string, env []string, logger *log.Logger) (http.\n \t\t\twg.Done()\n \t\t}()\n \n+\t\t// On some systems,\n+\t\t// hg serve --address=localhost --print-url prints in-addr.arpa hostnames\n+\t\t// even ... | 2025-11-05T19:46:35 |
rust-lang/rust | 772e4560ed4a1c58c36288407df0eac6686e02ea | 3102493c71626b5912d11d06c393b013569beb52 | Compiletest: Fix compare-output-by-lines directive
Fixes: https://github.com/rust-lang/rust/issues/148235
This was checking that the blessed stderr was a
subset of the stderr. Additionally, when re-blessing
it would re-bless the subset that matched. So, when
an extra line or comment was added and the line
numbers cha... | [
{
"path": "src/tools/compiletest/src/runtest.rs",
"patch": "@@ -2718,18 +2718,19 @@ impl<'test> TestCx<'test> {\n // Wrapper tools set by `runner` might provide extra output on failure,\n // for example a WebAssembly runtime might print the stack trace of an\n // `unreachable` instru... | 2026-03-12T22:36:14 |
facebook/react | c11c9510fa14bbd87053685c19bfdfec2f427f49 | 64f89510af244b1d812de7a74e161975d99ad3e1 | [crud] Fix deps comparison bug (#31599)
Fixes a bug with the experimental `useResourceEffect` hook where we
would compare the wrong deps when there happened to be another kind of
effect preceding the ResourceEffect. To do this correctly we need to add
a pointer to the ResourceEffect's identity on the update.
I also u... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -253,6 +253,7 @@ export type ResourceEffectUpdate = {\n update: ((resource: mixed) => void) | void,\n deps: Array<mixed> | void | null,\n next: Effect,\n+ identity: ResourceEffectIdentity,\n };\n \n type StoreInstance<T> = {\n... | 2024-11-20T21:54:41 |
electron/electron | 67f5ac5bbc1779c9ab896d0cf76e18e31251549e | 517935cd551c15384cfb6d058e00e549fa6f981d | fix: RenderFrameHost nullptr dereference (#45487)
* fix: add nullptr tests before using render_frame_
* refactor: extract-method HasRenderFrame() | [
{
"path": "shell/browser/api/electron_api_web_frame_main.cc",
"patch": "@@ -183,7 +183,7 @@ void WebFrameMain::UpdateRenderFrameHost(content::RenderFrameHost* rfh) {\n }\n \n bool WebFrameMain::CheckRenderFrame() const {\n- if (render_frame_disposed_) {\n+ if (!HasRenderFrame()) {\n v8::Isolate* isola... | 2025-02-07T04:02:57 |
vercel/next.js | 4795a00b60de95a33a9184d54f9dc39cef302e3d | 3b6f016f7707d8a1b5ba4d1a49d27d5d9d795dc8 | Turbopack: Split AggregatedDirtyContainerCount (#86072)
Split AggregatedDirtyContainerCount
improve test case to test session dependent and restoring
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist s... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -48,8 +48,8 @@ use crate::backend::operation::TaskDirtyCause;\n use crate::{\n backend::{\n operation::{\n- AggregatedDataUpdate, AggregationUpdateJob, AggregationUpdateQueue,\n- CleanupOldEdg... | 2025-12-03T08:21:46 |
nodejs/node | 04cb57249adffe17fe0a4c0048dd64c4b1fc68f0 | bf86e025a58e65b9f00e9e8e5698e9909fb51bbf | test: fix test-timeout-flag after revert of auto subtest wait
PR-URL: https://github.com/nodejs/node/pull/58282
Fixes: https://github.com/nodejs/node/issues/58227
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name> | [
{
"path": "test/fixtures/test-runner/output/test-timeout-flag.js",
"patch": "@@ -1,19 +1,39 @@\n-// Flags: --test-timeout=20\n 'use strict';\n-const { describe, test } = require('node:test');\n-const { setTimeout } = require('node:timers/promises');\n+const { describe, it, after } = require('node:test');\n+... | 2025-05-14T14:07:04 |
golang/go | daa220a1c952b50a05a3a9411f122689247881b8 | 3ae9e950021d79134146a751531f151a1f02d9bd | cmd/go: silence TLS handshake errors during test
We don't need to see messages like "TLS handshake error: EOF"
during go test.
Change-Id: If6bf51e655119914f337b9e61448c99485af34f2
Reviewed-on: https://go-review.googlesource.com/c/go/+/718183
Reviewed-by: Michael Matloob <matloob@google.com>
LUCI-TryBot-Result: Go LUC... | [
{
"path": "src/cmd/go/internal/vcweb/vcstest/vcstest.go",
"patch": "@@ -7,6 +7,7 @@\n package vcstest\n \n import (\n+\t\"bytes\"\n \t\"cmd/go/internal/vcs\"\n \t\"cmd/go/internal/vcweb\"\n \t\"cmd/go/internal/web/intercept\"\n@@ -70,7 +71,9 @@ func NewServer() (srv *Server, err error) {\n \t\t}\n \t}()\n \... | 2025-11-05T19:45:36 |
facebook/react | 7558ffe84df6bab5d701fd90de1c6313f9a1c066 | 7c254b65761c56951a67d965461b0174f224a7e9 | [crud] Fix copy paste typo (#31588)
Happens to the best of us. | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -5241,8 +5241,8 @@ if (__DEV__) {\n return mountEvent(callback);\n };\n }\n- if (InvalidNestedHooksDispatcherOnMountInDEV) {\n- (HooksDispatcherOnRerenderInDEV: Dispatcher).useResourceEffect =\n+ if (enableUseRes... | 2024-11-19T22:13:01 |
vercel/next.js | 3b6f016f7707d8a1b5ba4d1a49d27d5d9d795dc8 | a682261c910063351219f116188c453c8eeb55e7 | Turbopack: Split AggregatedDirtyContainer (#86606)
Split AggregatedDirtyContainer
rename and helper
update from_task
add dirty_container_count method
Allow infinite test runs
improve test case to test session dependent and restoring
improve names
<!-- Thanks for opening a PR! Your contribution is much appreciat... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -592,14 +592,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n .set_active_until_clean();\n if ctx.should_track_activeness() {\n // A newly added Act... | 2025-12-03T06:04:36 |
nodejs/node | bf86e025a58e65b9f00e9e8e5698e9909fb51bbf | 9a1c0bc07adbdc6b298b3585a7f46dd46c3d01e0 | Revert "test_runner: remove promises returned by t.test()"
This reverts commit 1a2eb15bc610926789a8a3a002ec722c39768c20.
PR-URL: https://github.com/nodejs/node/pull/58282
Fixes: https://github.com/nodejs/node/issues/58227
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.n... | [
{
"path": "doc/api/test.md",
"patch": "@@ -105,11 +105,11 @@ top level test with two subtests.\n \n ```js\n test('top level test', async (t) => {\n- t.test('subtest 1', (t) => {\n+ await t.test('subtest 1', (t) => {\n assert.strictEqual(1, 1);\n });\n \n- t.test('subtest 2', (t) => {\n+ await t.te... | 2025-05-11T17:23:20 |
rust-lang/rust | cc2c5f9b8d19bae79ed8f1671c9ea4feea9f76a2 | 84a2d2a92c1f3c9f79cf632eaf2d6498e031dec5 | Fix mcount name for *-windows-gnu targets
mingw exposes the `_mcount` symbol for profiling. | [
{
"path": "compiler/rustc_target/src/spec/base/windows_gnu.rs",
"patch": "@@ -106,6 +106,7 @@ pub(crate) fn opts() -> TargetOptions {\n // FIXME(davidtwco): Support Split DWARF on Windows GNU - may require LLVM changes to\n // output DWO, despite using DWARF, doesn't use ELF..\n supp... | 2026-03-12T14:14:06 |
facebook/react | eaf2d5c670c84124618977156d81946435922eb3 | c866d7506086140aaa79a015f4a7b2cf20c51905 | fix[eslint-plugin-react-hooks]: Fix error when callback argument is an identifier with an `as` expression (#31119) | [
{
"path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js",
"patch": "@@ -7088,18 +7088,7 @@ const tests = {\n errors: [\n {\n message:\n- \"React Hook useEffect has a missing dependency: 'myEffect'. \" +\n- 'Either include it or r... | 2024-11-19T09:36:30 |
golang/go | 3ae9e950021d79134146a751531f151a1f02d9bd | a494a26bc2d0ad52e0e265c2a1b9a3a964118699 | cmd/go: fix TestCgoPkgConfig on darwin with pkg-config installed
Most darwin systems don't have pkg-config installed and skip this test.
(And it doesn't run in all.bash because it is skipped during -short.)
But for those systems that have pkg-config and run the non-short tests,
it fails because the code was not writi... | [
{
"path": "src/cmd/go/go_test.go",
"patch": "@@ -1506,15 +1506,17 @@ func main() {\n \ttg.setenv(\"PKG_CONFIG_PATH\", tg.path(\".\"))\n \ttg.run(\"run\", tg.path(\"foo.go\"))\n \n-\tif runtime.GOOS != \"darwin\" { // darwin doesn't like these ldflags\n-\t\t// test for ldflags\n-\t\ttg.tempFile(\"bar.pc\", `... | 2025-11-05T18:42:44 |
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.