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
d6bb9b40b036c8e000b6edfe1c2f81bac1702510
2c03b8fd6be5029dce0a78849860e5f57a3b3026
feat: add webUtils module with getPathForFile method (#38776) * feat: add blinkUtils module with getPathForFile method This is designed to replace the File.path augmentation we currently have in place to allow apps to get the filesystem path for a file that blink has a representation of. File.path is non-stand...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -2165,7 +2165,7 @@ jobs:\n <<: *env-ninja-status\n <<: *env-macos-build\n <<: *env-apple-silicon\n- GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=True --custom-var=host_os=mac'\n+ GCLIENT_EXTRA_ARGS: '--custom-var=checkout_mac=...
2023-11-20T23:59:36
facebook/react
89f2f7fcef11aeaa1abf947a274275fc8a91f472
08b777d6dc0c1261d344e7807738ffc0a7794c7c
Make DropManualMemoization error message more accurate This was probably a leftover from a previous time, but since this error message throws when the dependency list is not an array literal, and not just when its a rest spread, this PR updates the message to match. ghstack-source-id: 28f2338212e56a67d3d477cea5abb6e9...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/DropManualMemoization.ts", "patch": "@@ -301,7 +301,7 @@ function extractManualMemoizationArgs(\n );\n if (maybeDepsList == null) {\n CompilerError.throwInvalidReact({\n- reason: `Expected the dependency list to be an ...
2024-04-25T14:19:29
rust-lang/rust
1994230db1b142789786ec38165ec07b5e38b2e9
e299e18e546bee90c64eba55f4276cd62633b4c0
fix(str_to_string): false positive non-str types
[ { "path": "clippy_lints/src/strings.rs", "patch": "@@ -417,6 +417,8 @@ impl<'tcx> LateLintPass<'tcx> for StrToString {\n && args.iter().any(|a| a.hir_id == expr.hir_id)\n && let Res::Def(DefKind::AssocFn, def_id) = expr.res(cx)\n && cx.tcx.is_diagnostic_item(sym::to_strin...
2026-02-15T03:28:06
golang/go
f8c51b1a6c3d6ebfdbeab3c81d4157aefe0e8b71
263bc50c90ff8e0bcd55765819056807acfd20ab
go/doc: NewFromFiles: fix panic on Files with SkipObjectResolution This CL fixes a panic in NewFromFiles when it is provided files produced by the parser in SkipObjectResolution mode, which skips the step of connecting ast.Idents to (deprecated) ast.Objects. Instead of calling ast.NewPackage, which performs a number o...
[ { "path": "src/go/doc/doc.go", "patch": "@@ -188,6 +188,7 @@ func (p *Package) collectFuncs(funcs []*Func) {\n //\n // The package is specified by a list of *ast.Files and corresponding\n // file set, which must not be nil.\n+//\n // NewFromFiles uses all provided files when computing documentation,\n // so...
2025-05-21T15:21:31
vercel/next.js
902ad4ad5001da899f5f38a49168ce0f0641cae5
bdce43d249da7be5eb1a67c4892289d07d7308ef
fix: missing `next/link` types with `typedRoutes` (#82814) # Problem When `typedRoutes` is enabled, some of the types are missing. For example, doing `import { useLinkStatus } from 'next/link'` will receive a type error where the `useLinkStatus` cannot be found from `next/link`. <img width="824" height="141" alt="i...
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -292,6 +292,8 @@ declare module 'next' {\n }\n \n declare module 'next/link' {\n+ export { useLinkStatus } from 'next/dist/client/link.js'\n+\n import type { LinkProps as OriginalLinkProps } from 'next/dist/client/link.js'\n ...
2025-08-20T20:03:36
nodejs/node
e32521a7b9a800728b2ed5337070628043a3d418
28c7394319bb200bc13d1f64b6da3dd04d81c1a5
test_runner: close and flush destinations on forced exit This commit updates the test runner to explicitly close and flush all destination file streams when the --test-force-exit flag is used. Fixes: https://github.com/nodejs/node/issues/54327 PR-URL: https://github.com/nodejs/node/pull/55099 Reviewed-By: Chemi Atlow...
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -14,12 +14,14 @@ const {\n NumberPrototypeToFixed,\n ObjectDefineProperty,\n ObjectSeal,\n+ Promise,\n PromisePrototypeThen,\n PromiseResolve,\n ReflectApply,\n RegExpPrototypeExec,\n SafeMap,\n SafePromiseAll,\n+ SafePromiseAllR...
2024-09-28T13:59:06
rust-lang/rust
f067c75ffcd33e428a409dacee08593b9b95e77b
dfbfbf785f46d10103e80735a9ccb4765bd6dfe2
fix typo in `carryless_mul` macro invocation
[ { "path": "library/core/src/num/uint_macros.rs", "patch": "@@ -17,8 +17,8 @@ macro_rules! uint_impl {\n fsh_op = $fsh_op:literal,\n fshl_result = $fshl_result:literal,\n fshr_result = $fshr_result:literal,\n- clmul_lhs = $clmul_rhs:literal,\n- clmul_rhs = $clmul_lhs:lit...
2026-02-17T19:40:21
electron/electron
2c03b8fd6be5029dce0a78849860e5f57a3b3026
67894f1493ca5bdbd5c3f22d6ea8f5db7f283950
fix: ShowItemUsingFileManager should escape path in Linux (#40527)
[ { "path": "shell/common/platform_util_linux.cc", "patch": "@@ -21,6 +21,7 @@\n #include \"base/posix/eintr_wrapper.h\"\n #include \"base/process/kill.h\"\n #include \"base/process/launch.h\"\n+#include \"base/strings/escape.h\"\n #include \"base/strings/string_util.h\"\n #include \"base/threading/thread_res...
2023-11-20T00:00:56
golang/go
dbaa2d3e6525a29defdff16f354881a93974dd2e
6160fa59b6523e781db47eb1ee8f929398f2bb78
cmd/compile: do nil check before calling duff functions, on arm64 and amd64 On these platforms, we set up a frame pointer record below the current stack pointer, so when we're in duffcopy or duffzero, we get a reasonable traceback. See #73753. But because this frame pointer record is below SP, it is vulnerable. Anyth...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64Ops.go", "patch": "@@ -897,8 +897,8 @@ func init() {\n \t\t\t\tinputs: []regMask{buildReg(\"DI\")},\n \t\t\t\tclobbers: buildReg(\"DI\"),\n \t\t\t},\n-\t\t\tfaultOnNilArg0: true,\n-\t\t\tunsafePoint: true, // FP maintenance around DUFFCOPY can be clobbe...
2025-05-29T00:09:05
vercel/next.js
7a59a7904a42012602ac3861ec2497594cf204d0
50c172daa94e6c73d623214caa047e3fb1dffef3
[test] fix cache components build error in next-form tests (#82841)
[ { "path": "test/cache-components-tests-manifest.json", "patch": "@@ -33,10 +33,11 @@\n ]\n },\n \"test/e2e/next-form/default/next-form-prefetch.test.ts\": {\n- \"passed\": [],\n- \"failed\": [\n- \"app dir - form prefetching should not prefetch when prefetch is set to false`\"...
2025-08-20T17:21:01
rust-lang/rust
f72e055625674d8fb2a7da4f6d484738db122ffd
e299e18e546bee90c64eba55f4276cd62633b4c0
Add unnecessary_trailing_comma lint Suggest removing an unnecessary trailing comma before the closing parenthesis in single-line format-like macro invocations (e.g. println!, format!, write!). The lint currently only runs on format-like macros because it relies on format-argument parsing; arbitrary user macros are not...
[ { "path": "CHANGELOG.md", "patch": "@@ -8,6 +8,11 @@ document.\n \n [92b4b68...master](https://github.com/rust-lang/rust-clippy/compare/92b4b68...master)\n \n+### New Lints\n+\n+* Added [`unnecessary_trailing_comma`] to `style` (single-line format-like macros only)\n+ [#13965](https://github.com/rust-lang/...
2026-02-06T19:26:36
nodejs/node
28c7394319bb200bc13d1f64b6da3dd04d81c1a5
bf11e5793bc3124cc9c16e532a10eeb7ecfdb29b
test: fix typos PR-URL: https://github.com/nodejs/node/pull/55063 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "test/addons/non-node-context/test-make-buffer.js", "patch": "@@ -6,7 +6,7 @@ const {\n makeBufferInNewContext,\n } = require(`./build/${common.buildType}/binding`);\n \n-// Because the `Buffer` function and its protoype property only (currently)\n+// Because the `Buffer` function and its protot...
2024-09-28T13:58:55
electron/electron
dec96acf14f6bf18aa20d38610d2f4feb625675c
d2b07a484d04ea3c447fa96a1543777f361197cb
fix: add patch for simdutf base64 crash (#40536)
[ { "path": "patches/node/.patches", "patch": "@@ -55,3 +55,4 @@ win_process_avoid_assert_after_spawning_store_app_4152.patch\n test_fix_edge_snapshot_stack_traces.patch\n chore_remove_use_of_deprecated_kmaxlength.patch\n api_remove_allcan_read_write.patch\n+fix_avx_detection.patch", "additions": 1, "...
2023-11-16T04:11:08
golang/go
18ad74dd36a9bbdc6a95a9de398b3cd8917898ae
70109eb32625487d9c774d602a4fa2422e218f1b
go/types, types2: dump position stack for non-bailout panics We make sure to dump to stderr since that's where the panic information ends up. Long traces get truncated with a "..." in the middle. We pick an arbitrary limit of 10 positions, but this could be changed. For #51603 Change-Id: I02326a93181e94e1c48afc05684...
[ { "path": "src/cmd/compile/internal/types2/check.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"fmt\"\n \t\"go/constant\"\n \t. \"internal/types/errors\"\n+\t\"os\"\n \t\"sync/atomic\"\n )\n \n@@ -419,7 +420,24 @@ func (check *Checker) handleBailout(err *error) {\n \t\t// normal return or early exit\n \t\t...
2025-05-28T15:10:53
vercel/next.js
ed5d085fb182364414b8ca0e8baa2e1988e629d6
8dd5f48611c9d1022cef73b0a194c775ac5ef580
[Cache Components] Error for Sync IO in Server Components during Static Prerender (#82500) Currently we error if you cannot produce a shell unless you have a Suspense boundary above the root. This is fine for normal IO but sync IO like Math.random() and new Date() have much more significant bad consequences for preren...
[ { "path": "errors/next-prerender-crypto.mdx", "patch": "@@ -1,15 +1,17 @@\n ---\n-title: Cannot access `crypto.getRandomValue()`, `crypto.randomUUID()`, or another web or node crypto API that generates random values synchronously in a Server Component\n+title: Cannot access `crypto.getRandomValue()`, `crypt...
2025-08-20T15:23:31
nodejs/node
7fe5bcd29e799eb523751b0e21d34f0392c77d4d
2d77ba5d30b591a9e4aa7726468452642f19151c
fs: check subdir correctly in cpSync PR-URL: https://github.com/nodejs/node/pull/55033 Fixes: https://github.com/nodejs/node/issues/54285 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -3206,9 +3206,12 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n }\n \n std::u8string dest_path_str = dest_path.u8string();\n-\n+ std::u8string src_path_str = src_path.u8string();\n+ if (!src_path_str.ends_with(std::filesystem::pa...
2024-09-28T13:50:53
rust-lang/rust
061b5225f4c06d3d8055d3517c6094564e2ea4d4
72adcde31d33f626a6860b264be88c3d60747a4e
fix interleaving read/write not roundtripping on aarch64_be
[ { "path": "library/stdarch/crates/core_arch/src/aarch64/neon/generated.rs", "patch": "@@ -11962,28 +11962,12 @@ pub unsafe fn vld2q_p64(a: *const p64) -> poly64x2x2_t {\n #[doc = \"## Safety\"]\n #[doc = \" * Neon intrinsic unsafe\"]\n #[inline(always)]\n-#[cfg(target_endian = \"little\")]\n #[target_featu...
2026-02-17T17:18:10
electron/electron
371bca69b69351dc47d4b4dcfdf9a626f43b3b51
088affd4a4311e03b8ed400cdf5d82f1db2125a4
refactor: use new extensions Messaging API IPC (#40511) * refactor: use new extensions Messaging API IPC Refs CRBUG:993189 Incorporates changes from: * Bind ServiceWorker associated interfaces on Worker Thread (CL:4929154) * [extensions] Move WakeEventPage to mojom::RendererHost (CL:4902564) * [extensions] Co...
[ { "path": "build/args/all.gn", "patch": "@@ -60,8 +60,3 @@ enable_dangling_raw_ptr_checks = false\n # This flag speeds up the performance of fork/execve on linux systems.\n # Ref: https://chromium-review.googlesource.com/c/v8/v8/+/4602858\n v8_enable_private_mapping_fork_optimization = true\n-\n-# https://c...
2023-11-15T14:30:47
facebook/react
6304e98902a451b53f3e2ce9315584252443e6ac
f8c0363a92d909fbd0dd9b407e3e8e299d1123d9
Repro for for..of scoping bug ghstack-source-id: 6147b6e70d24203350664e8ab24691d1ec5c5b2a Pull Request resolved: https://github.com/facebook/react-forget/pull/2891
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/for-of-immutable-collection.expect.md", "patch": "@@ -0,0 +1,81 @@\n+\n+## Input\n+\n+```javascript\n+function Router({ title, mapping }) {\n+ const array = [];\n+ for (let [, entry] of mapping) {\n+ array.push([titl...
2024-04-24T21:59:07
vercel/next.js
8dd5f48611c9d1022cef73b0a194c775ac5ef580
df5bc544760bb3b6b65f05511245379095240088
fix: update @types/node to resolve Vite 7.x peer dependency conflict (#82794) ## Problem The project was experiencing npm dependency resolution conflicts when running `npm install`, caused by incompatible @types/node versions between Vite 7.1.3 and the existing project dependencies. Fixes: https://github.com/vercel/n...
[ { "path": "examples/with-vitest/package.json", "patch": "@@ -8,17 +8,18 @@\n },\n \"dependencies\": {\n \"next\": \"latest\",\n- \"react\": \"^18.2.0\",\n- \"react-dom\": \"^18.2.0\",\n+ \"react\": \"^19.1.1\",\n+ \"react-dom\": \"^19.1.1\",\n \"server-only\": \"^0.0.1\"\n },\n \...
2025-08-20T12:57:22
nodejs/node
2d77ba5d30b591a9e4aa7726468452642f19151c
e8127db032d3b1a33400ed5d63611c65b8394ce5
Revert "console: colorize console error and warn" This reverts commit a833c9e0bed85214884d6650fe344d5896c9e67a. PR-URL: https://github.com/nodejs/node/pull/54677 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": "lib/internal/console/constructor.js", "patch": "@@ -8,7 +8,6 @@ const {\n ArrayIsArray,\n ArrayPrototypeForEach,\n ArrayPrototypePush,\n- ArrayPrototypeSome,\n ArrayPrototypeUnshift,\n Boolean,\n ErrorCaptureStackTrace,\n@@ -60,7 +59,6 @@ const {\n const {\n CHAR_UPPERCASE_C: kTrac...
2024-09-28T13:50:39
golang/go
70109eb32625487d9c774d602a4fa2422e218f1b
eff328804253e40a2de9c5d89cf7a7c1e23aa11d
cmd/link: allow linkname reference to a TEXT symbol regardless of size In CL 660696, we made the linker to choose the symbol of the larger size in case there are multiple contentless declarations of the same symbol. We also made it emit an error in the case that there are a contentless declaration of a larger size and...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -452,33 +452,50 @@ func (st *loadState) addSym(name string, ver int, r *oReader, li uint32, kind in\n \tif oldsym.Dupok() {\n \t\treturn oldi\n \t}\n-\t// If one is a DATA symbol (i.e. has content, DataSize != 0)\n-\t// and the other is BSS, t...
2025-05-21T18:32:21
facebook/react
b21ca44efc75178d797a6bd0427f83c966b2a00a
896d1b00273958ddad6cb8b1fafae3cd13cced5a
[repro] bug repro ghstack-source-id: 64d3266bf39ce5b1b9e9b9470910e029f0e951eb Pull Request resolved: https://github.com/facebook/react-forget/pull/2849
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-invalid-reactivity-value-block.expect.md", "patch": "@@ -0,0 +1,97 @@\n+\n+## Input\n+\n+```javascript\n+import {\n+ CONST_TRUE,\n+ identity,\n+ makeObject_Primitives,\n+ useNoAlias,\n+} from \"shared-runtime\";\n...
2024-04-23T09:18:47
electron/electron
088affd4a4311e03b8ed400cdf5d82f1db2125a4
0e4e9dc98c5b15442659d44cfca678c01c15f26d
fix: emit will-navigate for links in chrome: pages (#40390) * fix: emit will-navigate for links in chrome: pages * test: will-navigate emitted from chrome: pages * Update shell/browser/electron_navigation_throttle.cc Co-authored-by: Charles Kerr <charles@charleskerr.com> --------- Co-authored-by: Charle...
[ { "path": "shell/browser/electron_navigation_throttle.cc", "patch": "@@ -4,9 +4,11 @@\n \n #include \"shell/browser/electron_navigation_throttle.h\"\n \n+#include \"content/browser/renderer_host/render_frame_host_impl.h\" // nogncheck\n #include \"content/public/browser/navigation_handle.h\"\n #include \"s...
2023-11-14T22:09:44
vercel/next.js
bed08dd1cce19209af9b64534aa4804f85aa76a5
58d85ae99cfcd8cc8691130663987b09269b0ffd
docs: fix typo in `Image#priority` (#82806) `s/isused/is used` <!-- 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 sections below. Choose the right checklist for the change(s) that you're making: ## For ...
[ { "path": "docs/01-app/03-api-reference/02-components/image.mdx", "patch": "@@ -277,7 +277,7 @@ A boolean that indicates if the image should be preloaded.\n \n **When not to use it:**\n \n-- When the `loading` prop isused (will trigger warnings).\n+- When the `loading` prop is used (will trigger warnings).\...
2025-08-20T01:11:34
nodejs/node
18acff0d01f7c5e29b0f39cc9ca9ec5671b958b7
1398c04c47a31eb5d2429a38ff3eea140f76b769
doc: put --env-file-if-exists=config right under --env-file=config PR-URL: https://github.com/nodejs/node/pull/55131 Fixes: https://github.com/nodejs/node/issues/55129 Refs: https://github.com/nodejs/node/pull/53060 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -894,6 +894,15 @@ export USERNAME=\"nodejs\" # will result in `nodejs` as the value.\n If you want to load environment variables from a file that may not exist, you\n can use the [`--env-file-if-exists`][] flag instead.\n \n+### `--env-file-if-exists=config`\n+\n+<!-...
2024-09-28T00:01:43
golang/go
11d2b28bffb82e0ad0bc102812bed86ce81a1959
04b1030ae488851278257bac66ccf9925f1b87fb
[dev.simd] cmd/compile: add and fix k register supports This CL marks the "mask" ssa type as a simd type. This will make the last return of `simdMov` reachable and the spilling of K register correct. This CL also makes `simdReg` able to return K registers. Change-Id: Ia66230d3e5425d9e8bdd0081b008e098382d3827 Reviewe...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1671,6 +1671,8 @@ func simdReg(v *ssa.Value) int16 {\n \t\tpanic(\"simdReg: not a simd type\")\n \t}\n \tswitch t.Size() {\n+\tcase 8:\n+\t\treturn v.Reg() // K registers\n \tcase 16:\n \t\treturn v.Reg()\n \tcase 32:", "additions": 2, ...
2025-05-28T17:00:59
facebook/react
3b551c82844bcfde51f0febb8e42c1a0d777df2c
db913d8e17db25045e0518f3621f1640f2390525
Rename the react.element symbol to react.transitional.element (#28813) We have changed the shape (and the runtime) of React Elements. To help avoid precompiled or inlined JSX having subtle breakages or deopting hidden classes, I renamed the symbol so that we can early error if private implementation details are use...
[ { "path": "packages/react-devtools-shared/src/__tests__/legacy/inspectElement-test.js", "patch": "@@ -290,9 +290,23 @@ describe('InspectedElementContext', () => {\n \"preview_long\": {boolean: true, number: 123, string: \"abc\"},\n },\n },\n- \"react_element\": Dehydrate...
2024-04-22T16:39:56
electron/electron
0e4e9dc98c5b15442659d44cfca678c01c15f26d
b639fa4626a78872b64462f52ee0fb8925148676
chore: bump chromium to 121.0.6116.0 (main) (#40490) * chore: bump chromium in DEPS to 121.0.6116.0 * chore: update patches * Update webIDL to support close event. Refs https://chromium-review.googlesource.com/c/chromium/src/+/4970653 * Remove uses of implicit conversion of ScopedTypeRef Refs https://bu...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '121.0.6110.0',\n+ '121.0.6116.0',\n 'node_version':\n 'v18.18.2',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "appvey...
2023-11-14T21:21:32
vercel/next.js
533bcd1485a731ade68a4fe6ea6aeffc2030cce2
e6718d699d1d188fdff8a98191d1e6f69a8604fb
docs: Route props helpers, typegen and next lint deprecation (#82784) As this lands and people learn about the new Route Props helpers, I think we will have this period where the TypeScript snippets show the manual typing, but in key places we introduce the helpers usage. We can then follow up updating all TypeScript ...
[ { "path": "docs/01-app/01-getting-started/03-layouts-and-pages.mdx", "patch": "@@ -324,3 +324,37 @@ export default async function Post({ post }) {\n ```\n \n > **Good to know**: `<Link>` is the primary way to navigate between routes in Next.js. You can also use the [`useRouter` hook](/docs/app/api-reference...
2025-08-19T21:32:52
nodejs/node
b5fb2ff81e20d239ca0e4e4c8bd8d25d0cc33e4e
fd787c96e1c6b24e6345b017a78f48a30fce5f75
src: fix typos PR-URL: https://github.com/nodejs/node/pull/55064 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "src/aliased_buffer.h", "patch": "@@ -111,7 +111,7 @@ class AliasedBufferBase : public MemoryRetainer {\n };\n \n /**\n- * Get the underlying v8 TypedArray overlayed on top of the native buffer\n+ * Get the underlying v8 TypedArray overlaid on top of the native buffer\n */\n v8::Loc...
2024-09-27T15:34:48
rust-lang/rust
257a415e05ca85f156f549604952040fd9e496fe
c73b3d20c669aba4d10f5681e954e4a5b8b41d06
Make suggestion verbose and fix incorrect suggestion usage
[ { "path": "compiler/rustc_resolve/src/diagnostics.rs", "patch": "@@ -32,7 +32,7 @@ use rustc_span::edit_distance::find_best_match_for_name;\n use rustc_span::edition::Edition;\n use rustc_span::hygiene::MacroKind;\n use rustc_span::source_map::{SourceMap, Spanned};\n-use rustc_span::{BytePos, Ident, Span, S...
2026-02-13T23:15:09
golang/go
ed08d2ad0928c0fc77cc2053863616ffb58c5aac
fce9d4515defec0473ca3a685408ef5304d23aa9
os: don't follow symlinks on Windows when O_CREATE|O_EXCL and read-only Fix a bug in CL 672396, where we add FILE_FLAG_OPEN_REPARSE_POINT to the attributes passed to CreateFile, but then overwrite the attributes with FILE_ATTRIBUTE_READONLY when opening a file with a read-only permissions mode. For #73702 Change-Id:...
[ { "path": "src/os/os_test.go", "patch": "@@ -2309,9 +2309,9 @@ func TestOpenFileCreateExclDanglingSymlink(t *testing.T) {\n \t\tvar f *File\n \t\tvar err error\n \t\tif r == nil {\n-\t\t\tf, err = OpenFile(link, O_WRONLY|O_CREATE|O_EXCL, 0o666)\n+\t\t\tf, err = OpenFile(link, O_WRONLY|O_CREATE|O_EXCL, 0o444...
2025-05-27T21:16:17
facebook/react
896d1b00273958ddad6cb8b1fafae3cd13cced5a
b11074772b39c65189d9e923f5830f727b1ee06d
[dx] Improve error message from InferReferenceEffects ghstack-source-id: 06265d9676b671a5b02ca05433a219dd219be4f1 Pull Request resolved: https://github.com/facebook/react-forget/pull/2883
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts", "patch": "@@ -541,8 +541,9 @@ class InferenceState {\n error: {\n reason,\n description:\n- place.identifier.name !== null\n- ? `Found mutat...
2024-04-22T15:14:35
electron/electron
7981d955b8f84e2129f5a907445fbc0aea6b9fe8
cf5f0419f11516937e43e8259204339dffa22aa4
fix: `chrome.action` API registration (#40500)
[ { "path": "shell/browser/extensions/api/BUILD.gn", "patch": "@@ -11,6 +11,7 @@ assert(enable_extensions,\n \n function_registration(\"api_registration\") {\n sources = [\n+ \"//electron/shell/common/extensions/api/action.json\",\n \"//electron/shell/common/extensions/api/extension.json\",\n \"/...
2023-11-13T07:27:18
rust-lang/rust
b8e86e69efba07012da8b8dd21a73c144a2d4ba2
d5643a0e2de47b7c6deb04f506dc97e7f2077c25
Unify wording of resolve error Remove "failed to resolve" and use the same format we use in other resolution errors "cannot find `name`". ``` error[E0433]: cannot find `nonexistent` in `existent` --> $DIR/custom_attr_multisegment_error.rs:5:13 | LL | #[existent::nonexistent] | ^^^^^^^^^^^ could no...
[ { "path": "tests/ui/crashes/unreachable-array-or-slice.rs", "patch": "@@ -2,7 +2,7 @@ struct Foo(isize, isize, isize, isize);\n \n pub fn main() {\n let Self::anything_here_kills_it(a, b, ..) = Foo(5, 5, 5, 5);\n- //~^ ERROR: failed to resolve\n+ //~^ ERROR: cannot find `Self` in this scope\n ...
2025-08-12T22:27:45
vercel/next.js
e6718d699d1d188fdff8a98191d1e6f69a8604fb
91da00336c244858f2503b57aa29805e3ae24aa1
docs: fix TS error in Node.js runtime local assets example (#82672) ## What? Updated the documentation for `opengraph-image` / `twitter-image` to fix the **Node.js runtime with local assets** example. ## Why? The existing snippet did not type-check cleanly with Next.js 15+ and could confuse developers. This updat...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/01-metadata/opengraph-image.mdx", "patch": "@@ -402,7 +402,59 @@ export default async function Image({ params }) {\n \n #### Using Node.js runtime with local assets\n \n-This example uses the Node.js runtime to fetch a local image on the file syste...
2025-08-19T21:28:18
nodejs/node
fd787c96e1c6b24e6345b017a78f48a30fce5f75
87a79cd8a1d02316978a643c459174eac3a436c8
doc: fix the require resolve algorithm in `modules.md` Before the fix, the pseudocode was describing an infinite loop. PR-URL: https://github.com/nodejs/node/pull/55117 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "doc/api/modules.md", "patch": "@@ -333,7 +333,7 @@ NODE_MODULES_PATHS(START)\n 2. let I = count of PARTS - 1\n 3. let DIRS = []\n 4. while I >= 0,\n- a. if PARTS[I] = \"node_modules\" CONTINUE\n+ a. if PARTS[I] = \"node_modules\", GOTO d.\n b. DIR = path join(PARTS[0 .. I] + \"node_modules...
2024-09-27T15:34:38
golang/go
b78e38065efd5f4079564b9e8e3529950ba0dd52
961818e0131aaa7468616a90ce9ebf00111ccdaa
runtime: define lock ranking between weak pointers and synctest Fixes #73817 Change-Id: I0101bdc797237b4c7eb58b414c71b009b0b44447 Reviewed-on: https://go-review.googlesource.com/c/go/+/675176 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@g...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -9,11 +9,13 @@ import (\n \t\"internal/synctest\"\n \t\"iter\"\n \t\"reflect\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n \t\"sync\"\n \t\"testing\"\n \t\"time\"\n+\t\"weak\"\n )\n \n func TestNow(t *testing.T) {\n@@ -625,6 +627,17 @@ fu...
2025-05-21T20:02:59
facebook/react
857ee8cdf9af81bc94a7f04528fbda7fb2510eb4
ea26e38e33bffeba1ecc42688d7e8cd7e0da1c02
Don't minify symbols in production builds (#28881) This disables symbol renaming in production builds. The original variable and function names are preserved. All other forms of compression applied by Closure (dead code elimination, inlining, etc) are unchanged — the final program is identical to what we were produ...
[ { "path": "dangerfile.js", "patch": "@@ -43,8 +43,8 @@ const SIGNIFICANCE_THRESHOLD = 0.002;\n const CRITICAL_ARTIFACT_PATHS = new Set([\n // We always report changes to these bundles, even if the change is\n // insignificant or non-existent.\n- 'oss-stable/react-dom/cjs/react-dom.production.min.js',\n...
2024-04-20T15:23:46
vercel/next.js
91da00336c244858f2503b57aa29805e3ae24aa1
e3e21977ede164c4a9983d4c437d4b64d44559fa
fix: remove a few old references to 'next lint' (#82800)
[ { "path": "docs/01-app/01-getting-started/01-installation.mdx", "patch": "@@ -66,7 +66,7 @@ Then, add the following scripts to your `package.json` file:\n \"dev\": \"next dev\",\n \"build\": \"next build\",\n \"start\": \"next start\",\n- \"lint\": \"next lint\"\n+ \"lint\": \"eslint\"\n ...
2025-08-19T20:56:46
electron/electron
cf5f0419f11516937e43e8259204339dffa22aa4
262723e3948197b26f9c2b9bc245ca0bb7e31f36
chore: fix some typos (#40506)
[ { "path": "docs/api/structures/user-default-types.md", "patch": "@@ -9,4 +9,4 @@\n * `array` Array\\<unknown>\n * `dictionary` Record\\<string, unknown>\n \n-This type is a helper alias, no object will never exist of this type.\n+This type is a helper alias, no object will ever exist of this type.", "ad...
2023-11-13T03:51:56
nodejs/node
66a2cb210a6b95a5b09b459edd85b1220137105a
668e52339261ec21c7388884620987914c833395
test: deflake test/pummel/test-timers.js PR-URL: https://github.com/nodejs/node/pull/55098 Fixes: https://github.com/nodejs/node/issues/55092 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "test/pummel/test-timers.js", "patch": "@@ -36,7 +36,7 @@ const WINDOW = 200; // Why does this need to be so big?\n assert.ok(diff > 0);\n console.error(`diff: ${diff}`);\n \n- assert.ok(1000 <= diff && diff < 1000 + WINDOW);\n+ assert.ok(Math.abs(diff - 1000) < WINDOW);\n }), 1000...
2024-09-27T06:16:20
facebook/react
9f9f4a9f1138eabdc466cc10544d6b0727dca027
07ba52bc1a09d7650685fab1c0da01e208ea96b9
Fix gating mode hoisting check to skip type references ghstack-source-id: f83e9e28c1cdf31dba718e62db12aaa3a5f9ddab Pull Request resolved: https://github.com/facebook/react-forget/pull/2876
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -758,6 +758,18 @@ function checkFunctionReferencedBeforeDeclarationAtTopLevel(\n const errors = new CompilerError();\n \n program.traverse({\n+ TypeAnnotation(path) {\n+ path.skip();\n+ },\n+ TS...
2024-04-19T22:16:19
vercel/next.js
408920c566e3419d24488d9770d64eb22217c24b
4e9cc18917a3cc300b8a8b21e1b570ab775edb2b
fix: possible null access (#82799) <!-- 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 sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving D...
[ { "path": "packages/next-codemod/transforms/next-lint-to-eslint-cli.ts", "patch": "@@ -484,9 +484,10 @@ function updateExistingFlatConfig(\n exportedArray.value.elements.splice(insertIndex, 0, ignoresConfig)\n } else {\n // Merge with existing ignores\n- const existingIgnoresObj =\n- expor...
2025-08-19T20:40:56
rust-lang/rust
c73b3d20c669aba4d10f5681e954e4a5b8b41d06
3f6250a7bb79e600d9036bbc7c8f65af43933643
Unify wording of resolve error Remove "failed to resolve" and use the same format we use in other resolution errors "cannot find `name`". ``` error[E0433]: cannot find `nonexistent` in `existent` --> $DIR/custom_attr_multisegment_error.rs:5:13 | LL | #[existent::nonexistent] | ^^^^^^^^^^^ could no...
[ { "path": "compiler/rustc_resolve/src/build_reduced_graph.rs", "patch": "@@ -469,9 +469,15 @@ impl<'a, 'ra, 'tcx> BuildReducedGraphVisitor<'a, 'ra, 'tcx> {\n PathResult::NonModule(partial_res) => {\n expected_found_error(partial_res.expect_full_res())\n ...
2025-08-12T22:27:45
electron/electron
262723e3948197b26f9c2b9bc245ca0bb7e31f36
6697042c0ab61ac55e91251427a131792de0358e
build: fix building content_unittests (#40491) chore: fix building content_unittests
[ { "path": "patches/chromium/allow_disabling_blink_scheduler_throttling_per_renderview.patch", "patch": "@@ -5,6 +5,23 @@ Subject: allow disabling blink scheduler throttling per RenderView\n \n This allows us to disable throttling for hidden windows.\n \n+diff --git a/content/browser/renderer_host/navigation...
2023-11-10T16:50:28
nodejs/node
17fd32790ad5e229c54617dc36de434fbf41a199
da5887d8e9910b8eb0cfd7ddbf762fbe6928d0df
buffer: make File cloneable Fixes: https://github.com/nodejs/node/issues/47612 PR-URL: https://github.com/nodejs/node/pull/47613 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina...
[ { "path": "doc/api/buffer.md", "patch": "@@ -5094,6 +5094,9 @@ added:\n - v19.2.0\n - v18.13.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/47613\n+ description: Makes File instances cloneable.\n - version: v20.0.0\n pr-url: https://github.com/nodejs/nod...
2024-09-26T08:24:39
facebook/react
0e0b69321a6fcfe8a3eaae3b1016beb110437b38
f5ce642deed7c74c5ae5df54ec4340a8d028eac9
Run Closure on non-minified prod builds, too (#28827) In #26446 we started publishing non-minified versions of our production build artifacts, along with source maps, for easier debugging of React when running in production mode. The way it's currently set up is that these builds are generated *before* Closure c...
[ { "path": "package.json", "patch": "@@ -94,6 +94,7 @@\n \"shelljs\": \"^0.8.5\",\n \"signedsource\": \"^2.0.0\",\n \"targz\": \"^1.0.1\",\n+ \"terser\": \"^5.30.3\",\n \"through2\": \"^3.0.1\",\n \"tmp\": \"^0.1.0\",\n \"typescript\": \"^3.7.5\",", "additions": 1, "deletio...
2024-04-19T18:22:38
vercel/next.js
4e9cc18917a3cc300b8a8b21e1b570ab775edb2b
c57fe2561cda36f8a5abb41a94ea1a3f0a094226
fix: don't fail with amp config in JS (#82798) Because tsc doesn't infer string literal types in JS files --------- Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "packages/next/src/server/lib/router-utils/typegen.ts", "patch": "@@ -475,7 +475,7 @@ export function generateValidatorFile(\n * Validated at build-time by parsePagesSegmentConfig.\n */\n config?: {\n- amp?: boolean | 'hybrid'\n+ amp?: boolean | 'hybrid' | string // necessary for JS\...
2025-08-19T20:40:39
electron/electron
1ba535296efe87ecf0362759d2fab29b2af8b755
e8d9294d9d51ca0e2eaae22d4f57561e79a08833
docs: fix `hid-device-{added|removed|revoked}` event types (#40462) docs: fix hid-device-{added|removed|revoked} types
[ { "path": "docs/api/session.md", "patch": "@@ -266,7 +266,7 @@ Returns:\n \n * `event` Event\n * `details` Object\n- * `device` [HIDDevice[]](structures/hid-device.md)\n+ * `device` [HIDDevice](structures/hid-device.md)\n * `frame` [WebFrameMain](web-frame-main.md)\n \n Emitted after `navigator.hid.requ...
2023-11-07T22:26:35
nodejs/node
da5887d8e9910b8eb0cfd7ddbf762fbe6928d0df
9bb6a1a790beb9c6a046750b36f953d50791066b
buffer: extract Blob's .arrayBuffer() & webidl changes - Extracts Blob.prototype.arrayBuffer so it cannot be overridden in .text(), etc. - Make .bytes() enumerable. I guess the WPT runner is not running the idlharness tests? - Make .text() return a Promise, rather than being explicitly async. This is a non-docum...
[ { "path": "lib/internal/blob.js", "patch": "@@ -273,54 +273,32 @@ class Blob {\n if (!isBlob(this))\n return PromiseReject(new ERR_INVALID_THIS('Blob'));\n \n- const { promise, resolve, reject } = createDeferredPromise();\n- const reader = this[kHandle].getReader();\n- const buffers = [];...
2024-09-26T05:53:58
golang/go
961818e0131aaa7468616a90ce9ebf00111ccdaa
c8c3d661b084c01242fa7837e3853d7492ba1717
cmd/compile/internal/walk: use original type for composite literals in addrTemp When creating a new *ir.Name or *ir.LinksymOffsetExpr to represent a composite literal stored in the read-only data section, we should use the original type of the expression that was found via ir.ReassignOracle.StaticValue. (This is neede...
[ { "path": "src/cmd/compile/internal/ir/expr.go", "patch": "@@ -853,6 +853,10 @@ func IsAddressable(n Node) bool {\n //\n // calling StaticValue on the \"int(y)\" expression returns the outer\n // \"g()\" expression.\n+//\n+// NOTE: StaticValue can return a result with a different type than\n+// n's type bec...
2025-05-27T17:32:36
facebook/react
682f5a920a238ff87a317689d3f7e20fb3117fa6
a9732d65b48b73c1dabb3e3d218eed7d3a1885cc
[dx] Update capitalized call error messages ghstack-source-id: dbc012018ecc73007dfb3e745615605512ab6867 Pull Request resolved: https://github.com/facebook/react-forget/pull/2870
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateNoCapitalizedCalls.ts", "patch": "@@ -49,7 +49,8 @@ export function validateNoCapitalizedCalls(fn: HIRFunction): void {\n const calleeName = capitalLoadGlobals.get(calleeIdentifier);\n if (calleeName != null) {...
2024-04-18T18:07:10
rust-lang/rust
12cacac0fb9efc0e5802b4584f380df24f6394c0
14e6fe0c4b5c682cb5f3d3c386dff659f588af44
fix: Ensure cpu_profiler feature compiles on Rust edition 2024 Without `unsafe` on this block, this feature didn't compile.
[ { "path": "src/tools/rust-analyzer/crates/profile/src/google_cpu_profiler.rs", "patch": "@@ -9,7 +9,7 @@ use std::{\n \n #[link(name = \"profiler\")]\n #[allow(non_snake_case)]\n-extern \"C\" {\n+unsafe extern \"C\" {\n fn ProfilerStart(fname: *const c_char) -> i32;\n fn ProfilerStop();\n }", "a...
2026-02-17T15:43:36
vercel/next.js
c57fe2561cda36f8a5abb41a94ea1a3f0a094226
ad48b8f42c2fd0ed31e3f0f57906b351c51316f4
feat: add a codemod to migrate from the deprecated "next lint" command (#82685) ## Add codemod to migrate from `next lint` to ESLint CLI This PR introduces a new codemod `next-lint-to-eslint-cli` that helps users migrate away from the deprecated `next lint` command to using ESLint directly, in preparation for Next.js...
[ { "path": "docs/01-app/02-guides/upgrading/codemods.mdx", "patch": "@@ -24,6 +24,73 @@ Replacing `<transform>` and `<path>` with appropriate values.\n \n ## Codemods\n \n+### 16.0\n+\n+#### Migrate from `next lint` to ESLint CLI\n+\n+##### `next-lint-to-eslint-cli`\n+\n+```bash filename=\"Terminal\"\n+npx @...
2025-08-19T20:27:17
electron/electron
b55d7f4a16293164693618b8a0822370f7f4d46c
7999ea39e2ee9702e64e4125e8e89c314e9f468f
fix: Do not activate app when calling focus on inactive panel window (#40307) * fix: Do not activate app when calling focus on inactive panel window * Use activate * Use "activate" for all windows
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -469,7 +469,20 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n return;\n \n if (focus) {\n- [[NSApplication sharedApplication] activateIgnoringOtherApps:NO];\n+ // On macOS < Sonoma, \"activateIgnori...
2023-11-06T21:38:12
nodejs/node
02cdf7b8098baf5c22d35a1eecfa0a009dcc1709
0f7bdcc17fbc7098b89f238f4bd8ecad9367887b
src: decode native error messages as UTF-8 The native error messages can sometimes contain e.g. path content that are typically passed in as chars with UTF8-encoded code points. The native error throwing code previously always decode the chars as Latin-1, which would be incorrect. PR-URL: https://github.com/nodejs/no...
[ { "path": "src/node_errors.h", "patch": "@@ -119,7 +119,11 @@ void OOMErrorHandler(const char* location, const v8::OOMDetails& details);\n std::string message = SPrintF(format, std::forward<Args>(args)...); \\\n v8::Local<v8::String> js_code = OneByteString(isolate, #code); \\\n ...
2024-09-25T21:56:35
golang/go
0e1b14bc2e13aed697854e3859f73ba4dba9fb22
09f1546cba2998a8d89f4506c16ba3bff115071d
cmd/go: fix get with the new 'work' pattern Before this change, go get didn't have support for the work pattern. The work pattern is new in Go 1.25 and evaluates to the packages in the work (also called main) modules. 'go get work' would cause a panic because 'work' would be incorrectly considered a path pattern and t...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -337,6 +337,7 @@ func runGet(ctx context.Context, cmd *base.Command, args []string) {\n \tr.performLocalQueries(ctx)\n \tr.performPathQueries(ctx)\n \tr.performToolQueries(ctx)\n+\tr.performWorkQueries(ctx)\n \n \tfor {\n \t\tr.performWildcardQueri...
2025-05-23T17:19:44
facebook/react
a9732d65b48b73c1dabb3e3d218eed7d3a1885cc
da6c4612a36d8358fc735f75bbe2e7d9ff64a3c4
[dx] Improve error messages for unpreserved memoization ghstack-source-id: ff5bcaa7ab219035f57dc3dc3396c9a324896d4b Pull Request resolved: https://github.com/facebook/react-forget/pull/2869
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -23,7 +23,7 @@ export enum ErrorSeverity {\n */\n InvalidConfig = \"InvalidConfig\",\n /**\n- * Code that can reasonably occur and that doesn't break any rules, but is unsafe to perserve\n+ * Code that can ...
2024-04-18T16:49:27
electron/electron
5b18d90597a4a9fd837125786ac29af2151d6931
f501dabc8064fa441e959d2203c706801aa21a22
fix: crash when unloading some WebViews (#40400)
[ { "path": "shell/browser/web_view_guest_delegate.cc", "patch": "@@ -40,10 +40,6 @@ void WebViewGuestDelegate::AttachToIframe(\n \n content::WebContents* guest_web_contents = api_web_contents_->web_contents();\n \n- // Force a refresh of the webPreferences so that OverrideWebkitPrefs runs on\n- // the ne...
2023-11-03T14:36:25
nodejs/node
0f7bdcc17fbc7098b89f238f4bd8ecad9367887b
2118e32d9b6c0fa1eea852b3114d65706f33cc51
test: fix test-tls-junk-closes-server Refs: https://github.com/nodejs/node/issues/53382 TLS spec seems to indicate there should should be a response sent when TLS handshake fails. See https://datatracker.ietf.org/doc/html/rfc8446#page-85 When compiled with OpenSSL32 we see the the following response '15 03 03 00 02 ...
[ { "path": "test/parallel/test-tls-junk-closes-server.js", "patch": "@@ -39,6 +39,22 @@ const server = tls.createServer(options, common.mustNotCall());\n server.listen(0, common.mustCall(function() {\n const c = net.createConnection(this.address().port);\n \n+ c.on('data', function() {\n+ // We must co...
2024-09-25T21:28:05
golang/go
09f1546cba2998a8d89f4506c16ba3bff115071d
de05282a2c3bba1d869f8686e7b38d582af17a0a
log/slog: fix longtests with empty source Tests broken by CL 674875 Updates #73808 Change-Id: I7ad93e4a8ba1977d136f99b9d4963fa8a9c159ff Reviewed-on: https://go-review.googlesource.com/c/go/+/676595 Auto-Submit: Michael Knyszek <mknyszek@google.com> TryBot-Bypass: Michael Knyszek <mknyszek@google.com> Reviewed-by: Mi...
[ { "path": "src/log/slog/logger_test.go", "patch": "@@ -315,7 +315,7 @@ func TestCallDepthConnection(t *testing.T) {\n \t\t\tgot := string(firstLine)\n \n \t\t\twant := fmt.Sprintf(\n-\t\t\t\t`source=:0 msg=\"logger_test.go:%d: %s\"`,\n+\t\t\t\t`msg=\"logger_test.go:%d: %s\"`,\n \t\t\t\tline+i, tt.name,\n \t...
2025-05-27T18:11:28
vercel/next.js
523ae09b0b684f4795f231feae49f90df9844d97
c970d95136dbff4a11b8a096372a7ddfee561618
[Cache Components] Faster partial hydration in PPR resumes (#82742) This PR fixes some HTML/RSC stream interleaving logic that, under some circumstances, resulted in hydration of a resumed page being delayed unnecessarily. Fixes NAR-284 --- When SSRing a page, we're mixing two streams -- the HTML stream, and the RS...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -107,6 +107,7 @@ import {\n import {\n DynamicState,\n type PostponedState,\n+ DynamicHTMLPreludeState,\n parsePostponedState,\n } from './postponed-state'\n import {\n@@ -2291,8 +2292,8 @@ async function renderToStream(\n ...
2025-08-19T18:31:28
facebook/react
da6c4612a36d8358fc735f75bbe2e7d9ff64a3c4
e3d0f4bce842e8687f2bb2032b167549d30126fb
[dx] Consistently use backticks for quoting input in error messages ghstack-source-id: 34e5507c08fb883c987c88f415158fac781a5f8e Pull Request resolved: https://github.com/facebook/react-forget/pull/2863
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -494,7 +494,7 @@ function getReactFunctionType(\n default: {\n assertExhaustive(\n pass.opts.compilationMode,\n- `Unexpected compilationMode '${pass.opts.compilationMode}'`\n+ `Une...
2024-04-18T16:21:24
golang/go
ae0824883e7f851173ff1855ad1c638bec87a426
8dd7d2111b8622dac4b0127fa1d26da3c1c4c274
go/ast: deprecate FilterPackage, PackageExports, MergePackageFiles (More symbols that belong to the ast.Object deprecation.) Fixes #73088 Fixes #7124 Updates #52463 Updates #71122 Change-Id: I10e3ef35b587da2f3f0a65e9154e33bd53e7a093 Reviewed-on: https://go-review.googlesource.com/c/go/+/674176 LUCI-TryBot-Result: Go...
[ { "path": "api/next/73088.txt", "patch": "@@ -0,0 +1,7 @@\n+pkg go/ast, const FilterFuncDuplicates //deprecated #73088\n+pkg go/ast, const FilterImportDuplicates //deprecated #73088\n+pkg go/ast, const FilterUnassociatedComments //deprecated #73088\n+pkg go/ast, func FilterPackage //deprecated #73088\n+pkg ...
2025-05-19T18:11:51
nodejs/node
2118e32d9b6c0fa1eea852b3114d65706f33cc51
5ed32960512dca80e6c4e1489568d88c6ac3e0ea
test: fix more tests that fail when path contains a space PR-URL: https://github.com/nodejs/node/pull/55088 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "test/parallel/test-child-process-execfile.js", "patch": "@@ -10,7 +10,7 @@ const os = require('os');\n \n const fixture = fixtures.path('exit.js');\n const echoFixture = fixtures.path('echo.js');\n-const execOpts = { encoding: 'utf8', shell: true };\n+const execOpts = { encoding: 'utf8', shell: t...
2024-09-25T21:27:50
facebook/react
e3d0f4bce842e8687f2bb2032b167549d30126fb
8c8bd00c04177eedebf31b3284f9c2a2b4958d66
[dx] Update NoRefAccessInRender error messages ghstack-source-id: a5623aa4f29e15c89d2dfbe855bab9843e240a8a Pull Request resolved: https://github.com/facebook/react-forget/pull/2862
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateNoRefAccesInRender.ts", "patch": "@@ -120,7 +120,7 @@ function validateNoRefAccessInRenderImpl(\n errors.push({\n severity: ErrorSeverity.InvalidReact,\n reason:\n- \"This fun...
2024-04-18T16:21:23
vercel/next.js
64b69ff0a6faafc6859db4ce84fe48bf37e50018
b6b629441d0df6ebf5cea1c58fd46d8c01f471fc
Avoid duplicate WebSocket connection for global error pages (#82788) When we're rendering a global error page (something with `<html id="__next_error__">`), we are wrapping the root element in a component that renders a top-level dev overlay to show the global error. The function that's wrapping this element was previ...
[ { "path": "packages/next/src/client/app-index.tsx", "patch": "@@ -276,11 +276,13 @@ export function hydrate(\n let element = reactEl\n // Server rendering failed, fall back to client-side rendering\n if (process.env.NODE_ENV !== 'production') {\n- const { createRootLevelDevOverlayElement } ...
2025-08-19T16:47:29
electron/electron
bc1ba1fe9d34044ffc6e7422e85e2dc4e7e1eafe
83892ab995fb7a0b60ebc0c8837b2dba35ec5262
chore: bump chromium to 120.0.6099.0 (main) (#40316) * chore: bump chromium in DEPS to 120.0.6086.0 * chore: update patches * chore: rename FrameSubscriber::OnNewCropVersion() Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4905819 just a simple renaming * chore: rename ToJsTime() to .In...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '120.0.6078.0',\n+ '120.0.6099.0',\n 'node_version':\n 'v18.18.2',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "docs/a...
2023-11-01T14:02:12
golang/go
3a3c006ac07886aa923a8aad0a4b3ed954640973
ed70477909c97f86f8d73bee2d8680b6788acec7
crypto/tls: enable signature algorithm BoGo tests (and fix two bugs) The two bugs are very minor: - We were trying to set the ConnectionState CurveID field even if the RSA key exchange was in use - We were sending the wrong alert from TLS 1.2 clients if none of the certificate signature algorithms were supported...
[ { "path": "src/crypto/tls/auth.go", "patch": "@@ -149,20 +149,18 @@ func legacyTypeAndHashFromPublicKey(pub crypto.PublicKey) (sigType uint8, hash c\n var rsaSignatureSchemes = []struct {\n \tscheme SignatureScheme\n \tminModulusBytes int\n-\tmaxVersion uint16\n }{\n \t// RSA-PSS is used with ...
2025-05-23T16:04:36
nodejs/node
bdddc04dff8cc1868c6e9d6bf97f62e0d3dff371
18800da280f87ebc8ad60afcbd8ce48fa2127bf6
test: fix `assertSnapshot` when path contains a quote PR-URL: https://github.com/nodejs/node/pull/55087 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
[ { "path": "test/common/assertSnapshot.js", "patch": "@@ -25,7 +25,7 @@ function replaceWindowsPaths(str) {\n }\n \n function replaceFullPaths(str) {\n- return str.replaceAll(path.resolve(__dirname, '../..'), '');\n+ return str.replaceAll('\\\\\\'', \"'\").replaceAll(path.resolve(__dirname, '../..'), '');\...
2024-09-25T19:42:12
facebook/react
8c8bd00c04177eedebf31b3284f9c2a2b4958d66
c84ff16afba0d5b72d0252e0e96be71fcb16848f
[dx] Update error messages for manual memo validation ghstack-source-id: 1a88145049d7f7acb01748ad6ec4dd1500781766 Pull Request resolved: https://github.com/facebook/react-forget/pull/2861
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/DropManualMemoization.ts", "patch": "@@ -282,14 +282,14 @@ function extractManualMemoizationArgs(\n >;\n if (fnPlace == null) {\n CompilerError.throwInvalidReact({\n- reason: `Expected ${kind} call to pass a callback function`...
2024-04-18T16:21:22
rust-lang/rust
224eef62e84fba78d963129061e61c41bda8be90
7964c1b78d41e211207b7c8a6ea152ae39c42dc1
Fix rustc test suite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -41,6 +41,7 @@ rm -r tests/run-make/naked-symbol-visibility\n # variadic arguments\n rm tests/ui/abi/mir/mir_codegen_calls_variadic.rs # requires float varargs\n rm tests/ui/c-variadic/naked.rs # same\n+rm tests/ui/consts/const-eval/c-variadic.rs # same\...
2026-02-17T11:07:43
vercel/next.js
71f323d07b63e29fa183fcd7346332550f5c93b0
a745826b2cb0192db9ae8c404dc75e2c6f39b6f9
[Cache Components] Fix HMR for nested pages (#82776) To bypass existing caches when editing server components, we store an HMR hash in a session cookie. The cookie is sent to the server when refetching the RSC, and included in the cache key of all `'use cache'` functions (see #75474). Before this fix, we weren't sett...
[ { "path": "packages/next/src/client/dev/hot-reloader/app/hot-reloader-app.tsx", "patch": "@@ -389,7 +389,7 @@ function processMessage(\n \n // Store the latest hash in a session cookie so that it's sent back to the\n // server with any subsequent requests.\n- document.cookie = `${NEXT_HMR_R...
2025-08-19T14:13:54
electron/electron
83892ab995fb7a0b60ebc0c8837b2dba35ec5262
39d36e4462a0b84c469c72ddcfcf5c426a58482d
refactor: ensure IpcRenderer is not bridgable (#40330) * refactor: ensure IpcRenderer is not bridgable * chore: add notes to breaking-changes * spec: fix test that bridged ipcrenderer
[ { "path": "docs/breaking-changes.md", "patch": "@@ -14,6 +14,19 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (29.0)\n \n+### Behavior Changed: `ipcRenderer` can no longer be sent over the `contextBridge`\n+\n+Attempting to send `ipcRende...
2023-10-31T21:29:40
golang/go
ed70477909c97f86f8d73bee2d8680b6788acec7
787362327fbc2ec010659cd9067cc899cc15203c
errors: add joinError Unwrap example Change-Id: Id7489247e9bdd413f82fdf5a70197856c47abfb5 Reviewed-on: https://go-review.googlesource.com/c/go/+/674336 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservice...
[ { "path": "src/errors/example_test.go", "patch": "@@ -66,11 +66,13 @@ func ExampleJoin() {\n \tif errors.Is(err, err2) {\n \t\tfmt.Println(\"err is err2\")\n \t}\n+\tfmt.Println(err.(interface{ Unwrap() []error }).Unwrap())\n \t// Output:\n \t// err1\n \t// err2\n \t// err is err1\n \t// err is err2\n+\t// ...
2025-05-20T05:40:18
facebook/react
36e62c6034281f23e5eb5aac776f5835faf06bfb
4fdbac075fd1e804080068b3fd0e86528bf1c9b0
delete useless eslint-disable-next-line (#28859) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, pleas...
[ { "path": "packages/react-reconciler/src/ReactFiberCompleteWork.js", "patch": "@@ -329,7 +329,6 @@ function appendAllChildrenToContainer(\n // children to find all the terminal nodes.\n let node = workInProgress.child;\n while (node !== null) {\n- // eslint-disable-next-line no-labels\n ...
2024-04-18T15:49:55
rust-lang/rust
e0d9d470df00ecbe07bb5ddfec2ab6083aa3025f
466ea4e6c39f8a43727edcc726ca86b499e14d83
Fix invalid `mut T` suggestion for `&mut T` in missing lifetime error * Find ref prefix span for owned suggestions * Improve missing lifetime suggestions for `&mut str`
[ { "path": "compiler/rustc_resolve/src/late/diagnostics.rs", "patch": "@@ -3837,25 +3837,32 @@ impl<'ast, 'ra, 'tcx> LateResolutionVisitor<'_, 'ast, 'ra, 'tcx> {\n \"instead, you are more likely to want\"\n };\n let mut owned_sugg = ...
2026-02-17T10:18:08
nodejs/node
aac8ba7bd7a361e06f6c08978644b9904c81bcb6
7d0ce254e8849f8f1fd05c966de998bbee458491
test_runner: fix mocking modules with quote in their URL PR-URL: https://github.com/nodejs/node/pull/55083 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "lib/internal/test_runner/mock/loader.js", "patch": "@@ -139,7 +139,7 @@ async function createSourceFromMock(mock, format) {\n const { exportNames, hasDefaultExport, url } = mock;\n const useESM = format === 'module' || format === 'module-typescript';\n const source = `${testImportSource(use...
2024-09-25T17:34:58
vercel/next.js
73fadcac70aeda0766fa45134f557816cf336c89
bccdb3fd1135644aa70a5a8483a63024ce7bbe33
Turbopack: don't look into fallback import map twice (#82786) Fixes a panic where we tried to lookup a `Pattern::Alternatives` in a `fallback_import_map.lookup()` (but the API is that the caller is in charge of unwrapping the alternative and calling lookup multiple times). We can completely skip this in this case, bec...
[ { "path": "turbopack/crates/turbopack-core/src/resolve/mod.rs", "patch": "@@ -2094,27 +2094,31 @@ async fn resolve_internal_inline(\n }\n };\n \n- // Apply fallback import mappings if provided\n- if let Some(import_map) = &options_value.fallback_import_map\n- && ...
2025-08-19T13:02:08
electron/electron
39d36e4462a0b84c469c72ddcfcf5c426a58482d
f5262060957b7e32b33d64b3529a69417bdb5c26
build: actually show github upload output if verbose is true. (#40393) * build: actually show github upload output if verbose is true. * chore: fixup lint
[ { "path": "script/release/uploaders/upload.py", "patch": "@@ -363,8 +363,10 @@ def upload_io_to_github(release, filename, filepath, version):\n (filename))\n script_path = os.path.join(\n ELECTRON_DIR, 'script', 'release', 'uploaders', 'upload-to-github.ts')\n- execute([TS_NODE, script_path, fi...
2023-10-31T21:05:16
golang/go
3fd729b2a14a7efcf08465cbea60a74da5457f06
c07ffe980a52b309d48d33265cfee438a01cb513
log/slog: make TextHandler discard empty Source Fixes #73808 Change-Id: Ica4b7a63eebbf0fff41d68f4de928f9da90c8ada Reviewed-on: https://go-review.googlesource.com/c/go/+/674875 Reviewed-by: Jonathan Amsterdam <jba@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Sean Liao <sean@liao.dev> LU...
[ { "path": "src/log/slog/handler.go", "patch": "@@ -492,6 +492,9 @@ func (s *handleState) appendAttr(a Attr) bool {\n \t// Special case: Source.\n \tif v := a.Value; v.Kind() == KindAny {\n \t\tif src, ok := v.Any().(*Source); ok {\n+\t\t\tif src.isEmpty() {\n+\t\t\t\treturn false\n+\t\t\t}\n \t\t\tif s.h.js...
2025-05-21T09:58:13
facebook/react
c84ff16afba0d5b72d0252e0e96be71fcb16848f
87993f333adf28003bca97a24507be6ddc13a2f4
[dx] Update error message for reassigning globals ghstack-source-id: 48ce4b55a8b4b5a22c8ec29f6787732ab2a67778 Pull Request resolved: https://github.com/facebook/react-forget/pull/2860
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -16,7 +16,7 @@ import {\n } from \"../CompilerError\";\n import { Err, Ok, Result } from \"../Utils/Result\";\n import { assertExhaustive, hasNode } from \"../Utils/utils\";\n-import { Environment } from \"./Environmen...
2024-04-18T14:46:22
vercel/next.js
49371dc364eecca41e52dfc5f6bf1b6cda3ed83d
15653f3a280b61734ba6ec80542284ed06ba23cf
[sourcemaps] Fix sourcemapping in Redbox on Windows (#82078)
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -41,7 +41,7 @@ use turbo_tasks_backend::{BackingStorage, db_invalidation::invalidation_reasons}\n use turbo_tasks_fs::{\n DiskFileSystem, FileContent, FileSystem, FileSystemPath, util::uri_from_file,\n };\n-use turbo_unix_path::get_relative_p...
2025-08-19T09:18:19
nodejs/node
7d0ce254e8849f8f1fd05c966de998bbee458491
00d4f8073cf4c436ac6647431d15f91d8a4750b0
test: fix some tests when path contains `%` Tests should pass even if the path where the repo is cloned contains URL-significant chars. PR-URL: https://github.com/nodejs/node/pull/55082 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh...
[ { "path": "test/common/inspector-helper.js", "patch": "@@ -255,8 +255,8 @@ class InspectorSession {\n const callFrame = message.params.callFrames[0];\n const location = callFrame.location;\n const scriptPath = this._scriptsIdsByUrl.get(location.scriptId);\n- assert.strictEqual(scriptP...
2024-09-25T17:25:33
electron/electron
e1c413c845a8fa62e9ffd8f566d23ff968968df2
fcdd5cba71b82c13c4f64a3e529dea91ed72d23c
build: update deps to fix yarn audit (#40376)
[ { "path": "yarn.lock", "patch": "@@ -2062,14 +2062,7 @@ debug@2.6.9:\n dependencies:\n ms \"2.0.0\"\n \n-debug@^3.1.0:\n- version \"3.2.6\"\n- resolved \"https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b\"\n- integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBb...
2023-10-31T18:05:12
golang/go
c07ffe980a52b309d48d33265cfee438a01cb513
3db50924e2c74dfa0cb9295215529a65880eb708
testing/synctest: correct duration in doc example Fixes #73839 Change-Id: I961641c6d8244cdeb101a3c9ae91931828a893ad Reviewed-on: https://go-review.googlesource.com/c/go/+/676035 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com...
[ { "path": "src/testing/synctest/synctest.go", "patch": "@@ -24,11 +24,11 @@\n //\t\tsynctest.Test(t, func(t *testing.T) {\n //\t\t\tstart := time.Now() // always midnight UTC 2001-01-01\n //\t\t\tgo func() {\n-//\t\t\t\ttime.Sleep(1 * time.Nanosecond)\n-//\t\t\t\tt.Log(time.Since(start)) // always logs \"1n...
2025-05-24T11:10:12
facebook/react
496e8733bb7fdee8f8678100c8b601ead8a2d23b
b5e5ce8e0a899345dab1ce71c74bc1d1c28c6a0d
convert circleci workflow devtools_regression_tests to github actions (#27800) ## Summary This pull request converts the CircleCI workflows to GitHub actions workflows. [Github Actions Importer](https://github.com/github/gh-actions-importer) was used to convert the workflows initially, then I edited them manuall...
[ { "path": ".github/workflows/devtools_regression_tests.yml", "patch": "@@ -0,0 +1,137 @@\n+name: facebook/react/devtools_regression_tests\n+on:\n+ schedule:\n+ - cron: 0 0 * * *\n+ push:\n+ branches:\n+ - main\n+ workflow_dispatch:\n+ inputs:\n+ prerelease_commit_sha:\n+ required:...
2024-04-18T14:04:27
rust-lang/rust
cbfa215893bbe80d773d97cfd2e450805137a155
139651428df86cf88443295542c12ea617cbb587
fix ICE in suggest_param_env_shadowing with incompatible args remove comments
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs", "patch": "@@ -301,6 +301,9 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n let rebased_args = alias.args.rebase_onto(tcx, trait_def_id, impl_substs);\n \n let impl_item_def_id = leaf_def.item.def_id;\n+ ...
2026-02-17T07:33:21
vercel/next.js
15653f3a280b61734ba6ec80542284ed06ba23cf
929d6fa37b066a4bbb72687c313d002afa68114f
Use `jsx` extension instead of `js` in global-error documentation (#82710)
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/error.mdx", "patch": "@@ -153,9 +153,9 @@ export default function Error({ error, reset }) {\n \n ### Global Error\n \n-While less common, you can handle errors in the root layout or template using `global-error.js`, located in the root app director...
2025-08-19T00:44:01
nodejs/node
4c045351c12e1960a2f79befea1fcc4008400a86
7f480818b78602b4fc6ca704758befd5bed4c010
lib: fix typos PR-URL: https://github.com/nodejs/node/pull/55065 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/internal/crypto/keys.js", "patch": "@@ -88,7 +88,7 @@ for (const m of [[kKeyEncodingPKCS1, 'pkcs1'], [kKeyEncodingPKCS8, 'pkcs8'],\n encodingNames[m[0]] = m[1];\n \n // Creating the KeyObject class is a little complicated due to inheritance\n-// and the fact that KeyObjects should be transf...
2024-09-25T14:35:18
electron/electron
fcdd5cba71b82c13c4f64a3e529dea91ed72d23c
4b1c31e4dbd00cd58e159cbc2ab41de3b1ce3a86
fix: `navigator.keyboard.lock()` fullscreen exit handling (#40365) fix: navigator.keyboard.lock() fullscreen exit handling
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1334,12 +1334,6 @@ bool WebContents::HandleKeyboardEvent(\n bool WebContents::PlatformHandleKeyboardEvent(\n content::WebContents* source,\n const content::NativeWebKeyboardEvent& event) {\n- // Escape exits tabbed fullscreen...
2023-10-31T15:59:39
golang/go
8cb0941a85de6ddbd6f49f8e7dc2dd3caeeee61c
68f4434df02c3d1bde5b42c9adeaf79d15858ff3
net: use runtime.AddCleanup instead of runtime.SetFinalizer Adds TODO for replacement of runtime.SetFinalizer. Fixes #70907 Change-Id: Ic009018a93ccc46a776ae34afac44635d2340cbf Reviewed-on: https://go-review.googlesource.com/c/go/+/638557 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golan...
[ { "path": "src/net/fd_fake.go", "patch": "@@ -104,13 +104,15 @@ func (fd *netFD) accept() (netfd *netFD, err error) {\n func (fd *netFD) setAddr(laddr, raddr Addr) {\n \tfd.laddr = laddr\n \tfd.raddr = raddr\n+\t// TODO Replace with runtime.AddCleanup.\n \truntime.SetFinalizer(fd, (*netFD).Close)\n }\n \n f...
2024-12-23T16:52:43
facebook/react
87993f333adf28003bca97a24507be6ddc13a2f4
4666bf8c17b7af893157d91e7eeafed0d1a87b61
[dx] Update suppression error messages ghstack-source-id: 0c362a349de86a07b4e9e381b942939ce4a24e69 Pull Request resolved: https://github.com/facebook/react-forget/pull/2859
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Suppression.ts", "patch": "@@ -164,12 +164,13 @@ export function suppressionsToCompilerError(\n switch (suppressionRange.source) {\n case \"Eslint\":\n reason =\n- \"React Compiler has bailed out of optimizing t...
2024-04-18T01:25:40
nodejs/node
61ad74fb0f2a9c4c5fb08f79f3dc2df1da9cd501
5c22d19f4430fcc2db0e4fb6547165e9973a4b56
Revert "test: mark test-fs-watch-non-recursive flaky on Windows" This reverts commit 2a871df3dfb8ea663ef5e1f8f62701ec51384ecb. It has been almost three years since the test was marked flaky. Remove the unstable designation to see if the problem persists on Windows. Fixes: https://github.com/nodejs/node/issues/40728 ...
[ { "path": "test/pummel/pummel.status", "patch": "@@ -7,8 +7,6 @@ prefix pummel\n [true] # This section applies to all platforms\n \n [$system==win32]\n-# https://github.com/nodejs/node/issues/40728\n-test-fs-watch-non-recursive: PASS,FLAKY\n \n [$system==macos]\n ", "additions": 0, "deletions": 2, ...
2024-09-25T13:18:52
vercel/next.js
8c11037ea6fe78d6717d25615b5d5a43728d8120
4efa10f051b6e13748cdcc9673c452d506dcc0cf
fix: make sure validator.ts uses relative paths for imports (#82761) Previously, `.next/types/validator.ts` looked like this after a build: ```typescript // Validate /Users/you/code/next.js/test/e2e/app-dir/typed-routes/app/dashboard/@team/page.tsx { const handler = {} as typeof import("/Users/you/code/next.js/test...
[ { "path": "packages/next/src/server/lib/router-utils/route-types-utils.ts", "patch": "@@ -179,29 +179,50 @@ export async function createRouteTypesManifest({\n appRouteHandlerRoutes: {},\n redirectRoutes: {},\n rewriteRoutes: {},\n- appRouteHandlers: new Set(appRouteHandlers.map(({ filePath })...
2025-08-18T22:59:29
electron/electron
4b1c31e4dbd00cd58e159cbc2ab41de3b1ce3a86
8210d0f90e1ea057f87c9dd1fedaaa8954942a17
fix: implement missing applicationSupportsSecureRestorableState (#40296)
[ { "path": "shell/browser/mac/electron_application_delegate.mm", "patch": "@@ -198,4 +198,12 @@ - (void)application:(NSApplication*)application\n }\n }\n \n+// This only has an effect on macOS 12+, and requests any state restoration\n+// archive to be created with secure encoding. See the article at\n+// h...
2023-10-31T14:22:58
facebook/react
4666bf8c17b7af893157d91e7eeafed0d1a87b61
fc7467ac0ed735aefbfdddc7889d9f1b7aefccf1
[dx] Improve BuildHIR error messages ghstack-source-id: cbf62aec4e768249a8c7f44fe6f3852183127415 Pull Request resolved: https://github.com/facebook/react-forget/pull/2858
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -184,8 +184,9 @@ export function lower(\n directives = body.get(\"directives\").map((d) => d.node.value.value);\n } else {\n builder.errors.push({\n- reason: `Unexpected function body kind: ${body.type}}...
2024-04-18T01:16:33
golang/go
c0e149b6b1aa2daca64c00804809bc2279e21eee
db3e02994c98f1d6dc00f7df807579c4619885c7
net/http: document that ServeMux.Handler can also synthetize a 405 Also, fix a minor typo in ServeMux.Handle and ServeMux.HandleFunc. Change-Id: I6a6a46565719104cb8f2484daf0e39f35b55a078 Reviewed-on: https://go-review.googlesource.com/c/go/+/675835 Reviewed-by: David Chase <drchase@google.com> Auto-Submit: Filippo Va...
[ { "path": "src/net/http/server.go", "patch": "@@ -2674,7 +2674,8 @@ func stripHostPort(h string) string {\n // the path that will match after following the redirect.\n //\n // If there is no registered handler that applies to the request,\n-// Handler returns a “page not found” handler and an empty pattern....
2025-05-23T10:44:24