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 | 77f7ba96ca8cb6248291cfb78bb66384d6e983b3 | af58931efa834e78fd21eba2670c3f70d9ebb7f8 | fix: -Wunsafe-buffer-usage in electron::SetFontDefaults() (#44014)
* refactor: reduce code duplication in WebContentsPreferences::OverrideWebkitPrefs()
* refactor: limit scope of web_preferences temporary in ElectronBrowserClient::OverrideWebkitPrefs()
* chore: savepoint
* chore: savepoint
* chore: savepoi... | [
{
"path": "shell/browser/font_defaults.cc",
"patch": "@@ -4,12 +4,12 @@\n \n #include \"shell/browser/font_defaults.h\"\n \n-#include <array>\n #include <string>\n #include <string_view>\n \n-#include \"base/strings/strcat.h\"\n-#include \"base/strings/utf_string_conversions.h\"\n+#include \"base/containers... | 2024-09-30T13:09:36 |
golang/go | fe3ba74b9e6e3385cbf7c2f3a9c0b72baeac4b01 | d42d56b764f4c8b06aaa2de2dc9c1d2171e79490 | cmd/link: skip TestFlagW on platforms without DWARF symbol table
As with other DWARF tests, don't run TestFlagW on platforms
where executables don't have a DWARF symbol table.
Fixes #75585
Change-Id: I81014bf59b15e30ac1b2a7d24a52f9647db46c26
Reviewed-on: https://go-review.googlesource.com/c/go/+/706418
Reviewed-by: ... | [
{
"path": "src/cmd/link/dwarf_test.go",
"patch": "@@ -364,6 +364,10 @@ func TestFlagW(t *testing.T) {\n \tif runtime.GOOS == \"aix\" {\n \t\tt.Skip(\"internal/xcoff cannot parse file without symbol table\")\n \t}\n+\tif !platform.ExecutableHasDWARF(runtime.GOOS, runtime.GOARCH) {\n+\t\tt.Skipf(\"skipping on... | 2025-09-27T18:45:36 |
vercel/next.js | b95dbe6a3a79a459173557a3b670eb6cb2c6d060 | b0837e0f2451bfe420b082109f259122bf676298 | fix: Proxy not picked up on Windows (#85443)
Proxy is not being picked up during prod on Windows. It is because of
two reasons:
1. `isAtConventionLevel` condition was false as the dir was `\\` in
Windows, but was checking with explicit `/`.
2. `page` value passed to `getStaticInfoIncludingLayouts` function was
in `\\... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -764,6 +764,7 @@ jobs:\n node run-tests.js \\\n test/e2e/app-dir/app/index.test.ts \\\n test/e2e/app-dir/app-edge/app-edge.test.ts \\\n+ test/e2e/app-dir/proxy-runtime-nodejs/proxy-runtime-nodejs.test.ts \\\n... | 2025-10-28T13:44:12 |
nodejs/node | b39699100e7847e46b4af86b3a61868290cb6413 | 1e95107b163ae3ea4c75bab7be6e67a1142ad1dc | doc: clarify examples section in REPL doc
The current examples presented at the bottom
of the REPL doc have two issues:
- they look like they're part of the section
above (on how to run multiple REPL instances
in the same process) but they are not
- the alert informing readers not to use the
second example ... | [
{
"path": "doc/api/repl.md",
"patch": "@@ -909,30 +909,204 @@ to connect to both Unix and TCP sockets.\n By starting a REPL from a Unix socket-based server instead of stdin, it is\n possible to connect to a long-running Node.js process without restarting it.\n \n-For an example of running a \"full-featured\... | 2025-04-08T18:25:41 |
facebook/react | fbfe37ee4010d36dad795d9144bb88fbeb8e1419 | 77f438931f3da3bfe3dff91825737f06f2637f79 | [compiler] Test fixture: non-reactive phi creates 'dangling ref' scope (#31103) | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-invalid-phi-as-dependency.expect.md",
"patch": "@@ -0,0 +1,91 @@\n+\n+## Input\n+\n+```javascript\n+import {CONST_TRUE, Stringify, mutate, useIdentity} from 'shared-runtime';\n+\n+/**\n+ * Fixture showing an edge ca... | 2024-10-10T16:23:44 |
nodejs/node | 1540fc6a37e42fe002d3061a516431741e8e6d3d | b2ab1a2c417a575cbcd3f05d0a65677fd8cb02c0 | src: improve error handling in `node_env_var.cc`
PR-URL: https://github.com/nodejs/node/pull/57767
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/node_env_var.cc",
"patch": "@@ -436,15 +436,14 @@ static Intercepted EnvGetter(Local<Name> property,\n MaybeLocal<String> value_string =\n env->env_vars()->Get(env->isolate(), property.As<String>());\n \n- bool has_env = !value_string.IsEmpty();\n TraceEnvVar(env, \"get\", property... | 2025-04-07T22:37:25 |
vercel/next.js | 456d8e7b8c0f1f11fa9d290ccc916c6c686d5081 | 0b6fe158c61fec5f30289856a3d1c078b0be7022 | fix: ensure req.query is writable (#81573)
### What?
- Upgrade development dependency **Express** to the latest version
(5.1.0).
- Replace direct assignment of `apiReq.query` with
`Object.defineProperty` to ensure the property is writable, enumerable,
and configurable.
### Why?
- To use the most up-to-date and suppor... | [
{
"path": "packages/next/src/server/api-utils/node/api-resolver.ts",
"patch": "@@ -355,8 +355,14 @@ export async function apiResolver(\n \n // Parsing of cookies\n setLazyProp({ req: apiReq }, 'cookies', getCookieParser(req.headers))\n- // Parsing query string\n- apiReq.query = query\n+ // ... | 2025-10-28T11:15:05 |
golang/go | 5500cbf0e420a6d643835ec05f35abb170e3e443 | 34e67623a81e9e93c3d7d0f0cb257d7d722939f2 | debug/elf: prevent offset overflow
When applying relocations, a malformed ELF file can provide an offset
that, when added to the relocation size, overflows. This wrapped-around
value could then incorrectly pass the bounds check, leading to a panic
when the slice is accessed with the original large offset.
This change... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -25,6 +25,7 @@ import (\n \t\"internal/saferio\"\n \t\"internal/zstd\"\n \t\"io\"\n+\t\"math\"\n \t\"os\"\n \t\"strings\"\n \t\"unsafe\"\n@@ -830,17 +831,9 @@ func (f *File) applyRelocationsAMD64(dst []byte, rels []byte) error {\n \n \t\tswitch t {\n \t\tcase ... | 2025-09-25T04:41:12 |
electron/electron | af58931efa834e78fd21eba2670c3f70d9ebb7f8 | eb40d2cbfafea4ae8dfac9090d099b368f4ed3eb | chore: bump chromium to 131.0.6744.0 (main) (#43948)
* chore: bump chromium in DEPS to 131.0.6738.0
* chore: bump chromium in DEPS to 131.0.6740.0
* 5889025: [LaCrOS] Remove LaCrOS screen capturer. | https://chromium-review.googlesource.com/c/chromium/src/+/5889025
* https://boringssl.googlesource.com/borings... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '131.0.6734.0',\n+ '131.0.6744.0',\n 'node_version':\n 'v20.17.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2024-09-30T12:54:44 |
vercel/next.js | 0b6fe158c61fec5f30289856a3d1c078b0be7022 | 61b285e52842e3a458b5efb442f71123d8813ae8 | [test] Exclude Next.js internal stack frames from cache-component-error CLI output assertions (#85421) | [
{
"path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts",
"patch": "@@ -226,44 +226,15 @@ describe('Cache Components Errors', () => {\n }\n } else {\n if (isDebugPrerender) {\n- // expect(output).toMatchInlineSnapshot(`\n- ... | 2025-10-28T09:21:26 |
nodejs/node | 08a7df83379a9d222d21dad86c05320b3e4baab4 | e06a2ad21f84fef3fa06f6a3e664296e89c4d72e | src: improve error handling in node_http2
PR-URL: https://github.com/nodejs/node/pull/57764
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/node_http2.cc",
"patch": "@@ -426,8 +426,13 @@ Http2Priority::Http2Priority(Environment* env,\n Local<Value> weight,\n Local<Value> exclusive) {\n Local<Context> context = env->context();\n- int32_t parent_ = parent->Int32Value(cont... | 2025-04-05T18:40:07 |
golang/go | 34e67623a81e9e93c3d7d0f0cb257d7d722939f2 | af6999e60d498887fceaeca89f4aa88ff35c91df | all: fix typos
Change-Id: I290812905b6b5c52f289f7f8524f93aef19e6efe
Reviewed-on: https://go-review.googlesource.com/c/go/+/706775
Auto-Submit: Sean Liao <sean@liao.dev>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed... | [
{
"path": "src/crypto/tls/handshake_server_tls13.go",
"patch": "@@ -35,7 +35,7 @@ type echServerContext struct {\n \tconfigID uint8\n \tciphersuite echCipher\n \ttranscript hash.Hash\n-\t// inner indicates that the initial client_hello we recieved contained an\n+\t// inner indicates that the initial cli... | 2025-09-25T14:38:19 |
nodejs/node | e06a2ad21f84fef3fa06f6a3e664296e89c4d72e | 588770630da693d26e25361f66f6fd245b0a41c1 | src: improve error handing in node_messaging
PR-URL: https://github.com/nodejs/node/pull/57760
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "src/node_messaging.cc",
"patch": "@@ -491,8 +491,12 @@ Maybe<bool> Message::Serialize(Environment* env,\n Local<Object> entry = entry_val.As<Object>();\n // See https://github.com/nodejs/node/pull/30339#issuecomment-552225353\n // for details.\n- if (entry->HasPrivate(context, env-... | 2025-04-05T18:07:52 |
electron/electron | eb40d2cbfafea4ae8dfac9090d099b368f4ed3eb | 27d2a8f9e28715c3da6e8570bbc12d89cfa88178 | fix: FTBFS when building with `enable_plugins = false` (#44003)
* fix: do not build electron_plugin_info_host_impl.cc when plugins are disabled
it fails to build from source with this error:
../../content/public/browser/plugin_service.h:17:2: error: "Plugins should be enabled"
17 | #error "Plugins should be ... | [
{
"path": "BUILD.gn",
"patch": "@@ -674,6 +674,8 @@ source_set(\"electron_lib\") {\n \n if (enable_plugins) {\n sources += [\n+ \"shell/browser/electron_plugin_info_host_impl.cc\",\n+ \"shell/browser/electron_plugin_info_host_impl.h\",\n \"shell/common/plugin_info.cc\",\n \"shell... | 2024-09-29T22:10:34 |
golang/go | 25c36b95d1523f22d4c46ec237acc03e00540e0a | f0e281e693685954df71374c9a9fb856e8745519 | [dev.simd] simd, cmd/compile: add 128 bit select-from-pair
Using this name until a better one appears:
x.Select128FromPair(3, 2, y)
Includes test for constant and variable case.
Checks for unexpected immediates (using the zeroing flag,
which is not supported for this intrinsic) and panics.
Change-Id: I9249475d657... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1053,6 +1053,8 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB128,\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB256,\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB512,\n+\t\tssa.OpAMD64VPERM2F128256,\n+\t\tssa.OpA... | 2025-09-19T17:07:59 |
vercel/next.js | 333c30b86b593f3d4e2e2864317fbb0aea580cd0 | c72b4263af70bda1cf0a70ccdfd25c34e10c72a5 | fix(next/image): swap dependencies (#85419)
Swapping `is-local-address` for `ipaddr.js` | [
{
"path": "packages/next/package.json",
"patch": "@@ -270,8 +270,8 @@\n \"icss-utils\": \"5.1.0\",\n \"ignore-loader\": \"0.1.2\",\n \"image-size\": \"1.2.1\",\n+ \"ipaddr.js\": \"2.2.0\",\n \"is-docker\": \"2.0.0\",\n- \"is-local-address\": \"2.2.2\",\n \"is-wsl\": \"2.2.0\",\n ... | 2025-10-28T00:08:01 |
nodejs/node | 588770630da693d26e25361f66f6fd245b0a41c1 | a5877d014c7214807a80369d0e90b30417c9b993 | src: improve error handling in crypto_x509
Avoiding use of ToLocalChecked
PR-URL: https://github.com/nodejs/node/pull/57757
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "src/crypto/crypto_x509.cc",
"patch": "@@ -854,7 +854,20 @@ MaybeLocal<Object> X509Certificate::New(Environment* env,\n if (!ctor->NewInstance(env->context()).ToLocal(&obj))\n return MaybeLocal<Object>();\n \n- new X509Certificate(env, obj, std::move(cert), issuer_chain);\n+ Local<Object> ... | 2025-04-05T17:17:27 |
vercel/next.js | 5e282808c0d5dd72124c718e54e863b7ace4b623 | 1b45163bce3dab30d7a79dff95238b84016b54c2 | remove unstable_forceStale prefetch option & restore `prefetch={true}` functionality (#85411)
`prefetch={true}` with `cacheComponents` was opting into runtime
prefetching, with `unstable_forceStale` preserving the old behavior of
fetching the full (stale) data. However we only intended to expose
runtime prefetching vi... | [
{
"path": "packages/next/src/client/app-dir/link.tsx",
"patch": "@@ -153,7 +153,7 @@ type InternalLinkProps = {\n * </Link>\n * ```\n */\n- prefetch?: boolean | 'auto' | null | 'unstable_forceStale'\n+ prefetch?: boolean | 'auto' | null\n \n /**\n * (unstable) Switch to a full prefetch on ho... | 2025-10-27T19:59:45 |
rust-lang/rust | 1f94e979fb9b09f4df5483ce549fb96574be1e6e | f8704be04fe1150527fc2cf21dd44327f0fe87fb | Fix some comments about dataflow analysis.
Mostly in the examples in `initialized.rs`. In particular, the
`EverInitializedPlaces` example currently doesn't cover how it's
initialization sites that are tracked, rather than local variables
(that's the `b_0`/`b_1` distinction in the example.) | [
{
"path": "compiler/rustc_middle/src/mir/basic_blocks.rs",
"patch": "@@ -65,7 +65,7 @@ impl<'tcx> BasicBlocks<'tcx> {\n \n /// Returns basic blocks in a reverse postorder.\n ///\n- /// See [`traversal::reverse_postorder`]'s docs to learn what is preorder traversal.\n+ /// See [`traversal::reve... | 2025-10-22T03:28:05 |
nodejs/node | a5877d014c7214807a80369d0e90b30417c9b993 | b6a10f75b3d3fcc770750281e2bcdc9bf205de11 | src: improve error handling in callback.cc
Avoiding use of v8 `Checked()` APIs where appropriate.
Few other style cleanups
PR-URL: https://github.com/nodejs/node/pull/57758
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "src/api/callback.cc",
"patch": "@@ -13,6 +13,7 @@ using v8::HandleScope;\n using v8::Isolate;\n using v8::Local;\n using v8::MaybeLocal;\n+using v8::Number;\n using v8::Object;\n using v8::String;\n using v8::Undefined;\n@@ -51,7 +52,7 @@ InternalCallbackScope::InternalCallbackScope(Environment* ... | 2025-04-05T17:43:33 |
electron/electron | d4e4cdee6cfecad6be4741d3f5aaccdc5b3ef86b | f68184a9f927ef94107e83227116114fdf32114b | fix: remove resize listener when BrowserWindow closed (#43972) | [
{
"path": "lib/browser/api/browser-view.ts",
"patch": "@@ -68,10 +68,7 @@ export default class BrowserView {\n // a webContents can be closed by the user while the BrowserView\n // remains alive and attached to a BrowserWindow.\n set ownerWindow (w: BrowserWindow | null) {\n- if (this.#ownerWindow ... | 2024-09-27T14:34:00 |
golang/go | 3e4540b49d3066ee3fd57f3456506f6d09d0129b | 15fbe3480b1c44113e9cdb26008da9f66d4e57b2 | os/user: use getgrouplist on illumos && cgo
The getgrouplist call is available on Illumos since December 2020:
https://github.com/illumos/illumos-gate/commit/f2c438c5058c64b7373448f239156bf60009abcb
We can assume it is available for users now. Let's switch to using it
when cgo is enabled.
Since neither LUCY nor... | [
{
"path": "src/os/user/cgo_listgroups_unix.go",
"patch": "@@ -2,7 +2,7 @@\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) && !osusergo && (darwin || dragonfly || freebsd || (linux && !android) || netbsd || openbsd ||... | 2025-09-11T16:57:00 |
facebook/react | 2ef407937b724a3af5b8ca4d082ecee5005d731b | 16ac71a650d8ec9f24cd0bd6ebbe9c6d2edf9cb8 | [compiler] Scaffold fixture apps (#31164)
Scaffold empty apps to consume the fixture lib.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31164).
* #31167
* #31166
* #31165
* __->__ #31164
* ... | [
{
"path": "compiler/fixtures/runtime-compat/app-18/.gitignore",
"patch": "@@ -0,0 +1,24 @@\n+# Logs\n+logs\n+*.log\n+npm-debug.log*\n+yarn-debug.log*\n+yarn-error.log*\n+pnpm-debug.log*\n+lerna-debug.log*\n+\n+node_modules\n+dist\n+dist-ssr\n+*.local\n+\n+# Editor directories and files\n+.vscode/*\n+!.vscod... | 2024-10-10T15:33:02 |
rust-lang/rust | e26974ca33aa322bbc60db5d1010899e40f6d624 | b55e20ad905a336395ca80863488d0827712d067 | bootstrap: minimal fix for ./x install src with build.docs = false
When running the `install src` command I'm seeing failures as the
`builder.doc_out(host)` directory does not exist. This is because
`match_paths_to_steps_and_run()` doesn't actually build any
documentation as the `paths.is_empty()` causes an early retu... | [
{
"path": "src/bootstrap/src/core/build_steps/dist.rs",
"patch": "@@ -87,6 +87,12 @@ impl Step for Docs {\n // from a shared directory.\n builder.run_default_doc_steps();\n \n+ // In case no default doc steps are run for host, it is possible that `<host>/doc` directory\n+ // is... | 2026-01-08T22:35:43 |
electron/electron | f68184a9f927ef94107e83227116114fdf32114b | 8397fef3ef5bebb8a4ee7bb50d8ce6a4b19c5fdc | feat: add error event for utility process (#43774)
* feat: add error event for utility process
* chore: use public report api
* chore: fix lint
* doc: mark error event as experimental
---------
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> | [
{
"path": "docs/api/utility-process.md",
"patch": "@@ -116,6 +116,17 @@ When the child process exits, then the value is `null` after the `exit` event is\n \n Emitted once the child process has spawned successfully.\n \n+#### Event: 'error' _Experimental_\n+\n+Returns:\n+\n+* `type` string - Type of error. O... | 2024-09-27T01:17:06 |
nodejs/node | b85505d450e3a401cf0d13c096abfc75a7932105 | a2de5b9150da60c77144bb5333371eaca3fab936 | dns: restore dns query cache ttl
Fixes: https://github.com/nodejs/node/issues/57636
Co-authored-by: Robert Nagy <ronagy@icloud.com>
PR-URL: https://github.com/nodejs/node/pull/57640
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Tim Perry <pimterry@gma... | [
{
"path": "src/cares_wrap.cc",
"patch": "@@ -778,6 +778,7 @@ void ChannelWrap::Setup() {\n options.sock_state_cb_data = this;\n options.timeout = timeout_;\n options.tries = tries_;\n+ options.qcache_max_ttl = 0;\n \n int r;\n if (!library_inited_) {",
"additions": 1,
"deletions": 0,
... | 2025-04-07T11:43:14 |
facebook/react | 16ac71a650d8ec9f24cd0bd6ebbe9c6d2edf9cb8 | b781c9f564d05c7ceaf5d8af2e26966601c0a669 | Fix prepare-prerelease script (#31159) | [
{
"path": "scripts/release/prepare-release-from-npm-commands/confirm-stable-version-numbers.js",
"patch": "@@ -30,9 +30,7 @@ const run = async ({skipPackages}, versionsMap) => {\n \n let version = bestGuessVersion;\n if (\n- skipPackages.some(skipPackageName =>\n- packageNames.includes(s... | 2024-10-10T15:24:51 |
golang/go | 16ae11a9e1ca064718303f11d30110cf4e4dbbbc | 459f3a3adc131d9bb829efe0add27327a29b9c88 | runtime: move TestReadMetricsSched to testprog
There are just too many flakes resulting from background pollution by
the testing package and other tests. Run in a subprocess where at least
the environment can be more tightly controlled.
Fixes #75049.
Change-Id: Iad59edaaf31268f1fcb77273f01317d963708fa6
Reviewed-on: ... | [
{
"path": "src/runtime/metrics_test.go",
"patch": "@@ -22,7 +22,6 @@ import (\n \t\"strings\"\n \t\"sync\"\n \t\"sync/atomic\"\n-\t\"syscall\"\n \t\"testing\"\n \t\"time\"\n \t\"unsafe\"\n@@ -1578,211 +1577,10 @@ func TestReadMetricsFinalizers(t *testing.T) {\n }\n \n func TestReadMetricsSched(t *testing.T)... | 2025-09-26T17:05:43 |
electron/electron | a974b74e8226c7c655130c9e1b3a15a42c651044 | da6ab9235391966a3a82ae9e23e33956b26b9d1c | fix: replace deprecated libnotify API calls (#43962)
notify_notification_set_hint_string() is deprecated, so let's use
notify_notification_set_hint() instead.
Xref: https://github.com/GNOME/libnotify/commit/2fe1748295c97cd8251e1711e0f54c4d65633d48 | [
{
"path": "BUILD.gn",
"patch": "@@ -74,7 +74,6 @@ if (is_linux) {\n \"notify_notification_set_image_from_pixbuf\",\n \"notify_notification_set_timeout\",\n \"notify_notification_set_urgency\",\n- \"notify_notification_set_hint_string\",\n \"notify_notification_set_hint\",\n ... | 2024-09-26T16:21:45 |
facebook/react | b781c9f564d05c7ceaf5d8af2e26966601c0a669 | 0f1127b552790e6dc0b65650680237ba4c94d977 | [compiler] Scaffold fixture library (#31148)
Scaffolds an empty library to test backwards compatibility with the
compiler enabled.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31148).
* #3116... | [
{
"path": "compiler/fixtures/runtime-compat/README.md",
"patch": "@@ -0,0 +1 @@\n+Reference library compiled with React Compiler.",
"additions": 1,
"deletions": 0,
"language": "Markdown"
},
{
"path": "compiler/fixtures/runtime-compat/lib/index.js",
"patch": "@@ -0,0 +1 @@\n+throw new... | 2024-10-10T14:53:58 |
nodejs/node | 93644d512694fd9f4a3b25f50c918fff455e42fd | 7d45c346bbdf643a93d0247fee9f91c06b24aec7 | src: improve StringBytes error handling
PR-URL: https://github.com/nodejs/node/pull/57706
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/api/encoding.cc",
"patch": "@@ -8,6 +8,8 @@ namespace node {\n using v8::HandleScope;\n using v8::Isolate;\n using v8::Local;\n+using v8::MaybeLocal;\n+using v8::TryCatch;\n using v8::Value;\n \n enum encoding ParseEncoding(const char* encoding,\n@@ -133,20 +135,30 @@ enum encoding ParseEncod... | 2025-04-06T17:19:44 |
golang/go | 4631a2d3c6a30956f5cffb71583eb97276bcc9b5 | 0f31d742cdfda3af6b56c61a765c8df76053cf0a | cmd/link: skip TestFlagW on AIX
The internal/xcoff can only parse XCOFF with symbol table. This
test creates executables without symbol table. Skip the test.
(It might be possible to make internal/xcoff work with binaries
without symbol table? Leave it for the future.)
Fixes #75618.
Change-Id: I273ffefee5376d987acc... | [
{
"path": "src/cmd/link/dwarf_test.go",
"patch": "@@ -361,6 +361,9 @@ func TestDWARFLocationList(t *testing.T) {\n \n func TestFlagW(t *testing.T) {\n \ttestenv.MustHaveGoBuild(t)\n+\tif runtime.GOOS == \"aix\" {\n+\t\tt.Skip(\"internal/xcoff cannot parse file without symbol table\")\n+\t}\n \tt.Parallel()\... | 2025-09-26T13:38:23 |
vercel/next.js | 68e60c33ca7d67cc3fb93c57597b1870c98b8eba | 2a4737927b553b652eb47f5f65829d3a3b624ea2 | Fix grammatical errors in updating data documentation (#85067)
<!-- 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 C... | [
{
"path": "docs/01-app/01-getting-started/08-updating-data.mdx",
"patch": "@@ -14,7 +14,7 @@ You can update data in Next.js using React's [Server Functions](https://react.de\n \n ## What are Server Functions?\n \n-A **Server Function** is an asynchronous function that runs on the server. They can be called ... | 2025-10-27T18:16:05 |
electron/electron | da6ab9235391966a3a82ae9e23e33956b26b9d1c | ddd45db6ca602a925432895eebdffa828c01edfd | fix: ensure correct `WebContents` when checking `PDFReadyToPrint` (#43943)
* fix: ensure correct WebContents when checking PDFReadyToPrint
* test: fix paths on Windows | [
{
"path": "shell/browser/electron_pdf_document_helper_client.cc",
"patch": "@@ -27,13 +27,23 @@ void ElectronPDFDocumentHelperClient::UpdateContentRestrictions(\n // allowed there won't be a printing restriction passed, so we can use this\n // second call to notify that the pdf document is ready to prin... | 2024-09-26T14:54:13 |
facebook/react | 38af456a494acb34931c71e31efbccdb53e11174 | 566b0b0f14356f6e1a13722cac005c2f94f4c3f9 | [Flight] don't emit chunks for rejected thenables after abort (#31169)
When aborting we emit chunks for each pending task. However there was a
bug where a thenable could also reject before we could flush and we end
up with an extra chunk throwing off the pendingChunks bookeeping. When a
task is retried we skip it i... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js",
"patch": "@@ -3084,4 +3084,54 @@ describe('ReactFlightDOM', () => {\n </div>,\n );\n });\n+\n+ it('rejecting a thenable after an abort before flush should not lead to a frozen readable', async () => {\n+ cons... | 2024-10-10T13:47:32 |
nodejs/node | 33f6e1ea296cd20366ab94e666b03899a081af94 | 8456a1245902b159a9178e168e5216071aa32319 | test: update expected error message for macOS
PR-URL: https://github.com/nodejs/node/pull/57742
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-module-loading-error.js",
"patch": "@@ -28,7 +28,7 @@ const errorMessagesByPlatform = {\n win32: ['is not a valid Win32 application'],\n linux: ['file too short', 'Exec format error'],\n sunos: ['unknown file type', 'not an ELF file'],\n- darwin: ['file too short', 'not ... | 2025-04-06T14:20:04 |
golang/go | 0f31d742cdfda3af6b56c61a765c8df76053cf0a | 7d7cd6e07b65d7583f1c7648fc042fbe30352313 | cmd/compile: fix ICE with new(<untyped expr>)
Fixes #75617
Change-Id: Iaee7d4556db54b9999f5ba8458e7c05c11ccfc36
Reviewed-on: https://go-review.googlesource.com/c/go/+/707075
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Aut... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -2434,6 +2434,7 @@ func (r *reader) expr() (res ir.Node) {\n \t\tif r.Bool() {\n \t\t\t// new(expr) -> tmp := expr; &tmp\n \t\t\tx := r.expr()\n+\t\t\tx = typecheck.DefaultLit(x, nil) // See TODO in exprConvert case.\n \t\t\tvar init ir.Node... | 2025-09-26T11:07:18 |
vercel/next.js | 2a4737927b553b652eb47f5f65829d3a3b624ea2 | 777b8fa227702c341f82c4bbc5b6f1085b56d6bd | Fix typo in Fast Refresh documentation (#85352)
Small grammar fix for fast-refresh.mdx
<!-- 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... | [
{
"path": "docs/03-architecture/fast-refresh.mdx",
"patch": "@@ -3,7 +3,7 @@ title: Fast Refresh\n description: Fast Refresh is a hot module reloading experience that gives you instantaneous feedback on edits made to your React components.\n ---\n \n-Fast refresh is a React feature integrated into Next.js t... | 2025-10-27T18:14:45 |
electron/electron | ddd45db6ca602a925432895eebdffa828c01edfd | 40cae71df88156036fecc36008c86ee4639c3d9e | fix: -Wunsafe-buffer-usage warnings in GdkPixbufFromSkBitmap() (#43956)
* fix: -Wunsafe-buffer-usage warnings in GdkPixbufFromSkBitmap()
* refactor: don't change previous behavior for 0-height images
Is a 0x0 image even a thing? I'm not sure; but just in case, let's
treat it the same way the previous implementa... | [
{
"path": "shell/browser/ui/gtk_util.cc",
"patch": "@@ -9,6 +9,7 @@\n #include <stdint.h>\n \n #include <string>\n+#include <vector>\n \n #include \"base/no_destructor.h\"\n #include \"base/strings/string_number_conversions.h\"\n@@ -68,42 +69,30 @@ const char* GetYesLabel() {\n \n GdkPixbuf* GdkPixbufFromSk... | 2024-09-26T13:32:43 |
facebook/react | d5bba18b5d81f234657586865248c5b6849599cd | bfe91fbecf183f85fc1c4f909e12a6833a247319 | fix[react-devtools]: record timeline data only when supported (#31154)
Stacked on https://github.com/facebook/react/pull/31132. See last
commit.
There are 2 issues:
1. We've been recording timeline events, even if Timeline Profiler was
not supported by the Host. We've been doing this for React Native, for
examp... | [
{
"path": "packages/react-devtools-shared/src/backend/agent.js",
"patch": "@@ -153,12 +153,17 @@ export default class Agent extends EventEmitter<{\n _persistedSelection: PersistedSelection | null = null;\n _persistedSelectionMatch: PathMatch | null = null;\n _traceUpdatesEnabled: boolean = false;\n- ... | 2024-10-09T14:27:04 |
golang/go | 7d7cd6e07b65d7583f1c7648fc042fbe30352313 | 41cba31e66c979c413a4368c4f3d82ebadf0fb5b | internal/poll: don't call SetFilePointerEx in Seek for overlapped handles
Overlapped handles don't have the file pointer updated when performing
I/O operations, so there is no need to call syscall.SetFilePointerEx in
FD.Seek. Updating the in-memory offset is sufficient.
Updates #74951 (provides a more complete fix)
... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -1165,11 +1165,29 @@ func (fd *FD) Seek(offset int64, whence int) (int64, error) {\n \t}\n \tdefer fd.readWriteUnlock()\n \n-\tif !fd.isBlocking && whence == io.SeekCurrent {\n-\t\t// Windows doesn't keep the file pointer for overlapped file handles.... | 2025-08-21T08:45:23 |
nodejs/node | 8456a1245902b159a9178e168e5216071aa32319 | 8c254658bb4f06152ed41d2d777e6d9fd88e3355 | watch: check parent and child path properly
Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/57425
Fixes: https://github.com/nodejs/node/issues/57422
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-... | [
{
"path": "lib/internal/watch_mode/files_watcher.js",
"patch": "@@ -7,6 +7,7 @@ const {\n SafeMap,\n SafeSet,\n SafeWeakMap,\n+ StringPrototypeEndsWith,\n StringPrototypeStartsWith,\n } = primordials;\n \n@@ -18,12 +19,19 @@ const EventEmitter = require('events');\n const { addAbortListener } = req... | 2025-04-06T07:48:53 |
vercel/next.js | 777b8fa227702c341f82c4bbc5b6f1085b56d6bd | f6d171968a2aa1e30b314ca20adb14fce27bb43e | docs: Fix typo in SEO section of loading.mdx (#85301)
The second “used” seems unnecessary.
<!-- 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) ... | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/loading.mdx",
"patch": "@@ -86,7 +86,7 @@ In the same folder, `loading.js` will be nested inside `layout.js`. It will auto\n ### SEO\n \n - For bots that only scrape static HTML, and cannot execute JavaScript like a full browser, such as Twitterbot... | 2025-10-27T18:08:14 |
electron/electron | 40cae71df88156036fecc36008c86ee4639c3d9e | b60013fcf1eecfe97b8772f1eb04633d7a51ba76 | test: re-enable tests that were disabled in chromium rolls (#43968)
* test: fix should support base url for data urls test
Caused by https://chromium-review.googlesource.com/c/chromium/src/+/5802682
* test: fixup extensions can cancel http requests
* chore: document custom protocol handling on Windows change ... | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -14,6 +14,33 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (33.0)\n \n+### Behavior Changed: custom protocol URL handling on Windows\n+\n+Due to changes made in Chromium to support [Non-S... | 2024-09-26T12:53:27 |
golang/go | 41cba31e66c979c413a4368c4f3d82ebadf0fb5b | dd1d597c3ac049de7865a9cb98627fde0baacc69 | mime/multipart: percent-encode CR and LF in header values to avoid CRLF injection
When provided with a field or file name containing newlines,
multipart.FileContentDisposition and other header-producing functions
could create an invalid header value.
In some scenarios, this could permit a malicious input to perform
a... | [
{
"path": "src/mime/multipart/writer.go",
"patch": "@@ -125,8 +125,20 @@ func (w *Writer) CreatePart(header textproto.MIMEHeader) (io.Writer, error) {\n \treturn p, nil\n }\n \n-var quoteEscaper = strings.NewReplacer(\"\\\\\", \"\\\\\\\\\", `\"`, \"\\\\\\\"\")\n+var quoteEscaper = strings.NewReplacer(\"\\\\... | 2025-09-25T20:24:01 |
facebook/react | 1d8d12005fc9d856c4c936b269adb4f52bf82e47 | 4a86ec5a66d0dd375f8433d380f71ade3e67d5d0 | fix[react-devtools]: remove all listeners when Agent is shutdown (#31151)
Based on https://github.com/facebook/react/pull/31049, credits to
@EdmondChuiHW.
What is happening here:
1. Once Agent is destroyed, unsubscribe own listeners and bridge
listeners.
2. [Browser extension only] Once Agent is destroyed, unsu... | [
{
"path": "packages/react-devtools-extensions/src/contentScripts/backendManager.js",
"patch": "@@ -16,6 +16,7 @@ import {COMPACT_VERSION_NAME} from 'react-devtools-extensions/src/utils';\n import {getIsReloadAndProfileSupported} from 'react-devtools-shared/src/utils';\n \n let welcomeHasInitialized = false;... | 2024-10-09T12:34:01 |
nodejs/node | e6a0d77d57a1dade108f05f1fe8b617af38d636f | 74722a55a6cea73b6dcaa3e4adc7ba8e9268b2db | util: fix parseEnv incorrectly splitting multiple ‘=‘ in value
Previously, parseEnv would create multiple environment
variables if a single line contained multiple ‘=‘ characters
(e.g. A=B=C would become { A: ‘B=C’, B: ‘C’ }).
This commit ensures that only the first ‘=‘ is used as
the key-value delimiter, and the rest... | [
{
"path": "benchmark/fixtures/valid.env",
"patch": "@@ -6,6 +6,8 @@ BASIC=basic\n \n # previous line intentionally left blank\n AFTER_LINE=after_line\n+A=\"B=C\"\n+B=C=D\n EMPTY=\n EMPTY_SINGLE_QUOTES=''\n EMPTY_DOUBLE_QUOTES=\"\"",
"additions": 2,
"deletions": 0,
"language": "Unknown"
},
{
... | 2025-04-06T07:47:28 |
vercel/next.js | 87fc1b9d455f639b5fa39c87f1aaa96236b242c2 | 8cdd4eada78bb8894a9007ccac37fe0828a6f83c | Fix duplicate .next/types `include` on Windows (#85400) | [
{
"path": "packages/next/src/lib/typescript/writeConfigurationDefaults.ts",
"patch": "@@ -1,4 +1,5 @@\n import { readFileSync, writeFileSync } from 'fs'\n+import * as path from 'path'\n import { bold, cyan, white } from '../picocolors'\n import * as CommentJson from 'next/dist/compiled/comment-json'\n impor... | 2025-10-27T17:08:15 |
electron/electron | 74af96da16f9d47bddb6e41df74e387a6254352d | 15db63e26df3e3d59ce6281f030624f746518511 | build: update some build dependencies (#43882)
* build: update some build dependencies
* build: fix eslint issues after updating
* build: disable ts check on busted js example
* build: update internal types for stricter event handling
* restore url.parse behavior
* fix typing issues
* sigh
* build... | [
{
"path": ".eslintrc.json",
"patch": "@@ -19,7 +19,7 @@\n \"prefer-const\": [\"error\", {\n \"destructuring\": \"all\"\n }],\n- \"standard/no-callback-literal\": \"off\"\n+ \"n/no-callback-literal\": \"off\"\n },\n \"parserOptions\": {\n \"ecmaVersion\": 6,",
"additions": 1,
... | 2024-09-26T07:12:11 |
facebook/react | 4a86ec5a66d0dd375f8433d380f71ade3e67d5d0 | 389a2deebc2dc41deb268f4b543709989d688d69 | fix[react-devtools]: removed redundant startProfiling call (#31131)
Stacked on https://github.com/facebook/react/pull/31118. See last
commit.
We don't need to call `startProfiling()` here, because we delegate this
to the Renderer itself:
https://github.com/facebook/react/blob/830e823cd2c6ee675636d31320b10350e8... | [
{
"path": "packages/react-devtools-shared/src/backend/agent.js",
"patch": "@@ -714,10 +714,6 @@ export default class Agent extends EventEmitter<{\n ) {\n this._rendererInterfaces[rendererID] = rendererInterface;\n \n- if (this._isProfiling) {\n- rendererInterface.startProfiling(this._recordCha... | 2024-10-09T12:32:04 |
golang/go | dd1d597c3ac049de7865a9cb98627fde0baacc69 | 45d6bc76af641853a0bea31c77912bf9fd52ed79 | Revert "cmd/internal/obj/loong64: use the MOVVP instruction to optimize prologue"
This reverts commit eb7c67fdc9e17959647a15db9e7781b9d447061a.
Reason for revert: Causes x/tools/gopls/internal/filecache/TestConcurrency failures, See issue 75571.
Fixes #75571
Fixes #75572
Change-Id: Ife328dce917c63c872da35f4a9e9f7ef... | [
{
"path": "src/cmd/internal/obj/loong64/obj.go",
"patch": "@@ -324,7 +324,7 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\tq = c.ctxt.StartUnsafePoint(q, c.newprog)\n \n \t\t\t\tq = obj.Appendp(q, newprog)\n-\t\t\t\tq.As = AMOVVP\n+\t\t\t\tq.As = mov\n \t\t\t\tq.Pos ... | 2025-09-23T03:24:56 |
nodejs/node | 13e3aef053776be9be262f210dc438ecec4a3c8d | 214e3d4affabc48a53b6db8ab1f2e2bc7d343653 | doc: update example of using `await` in REPL
Clarify that the lexical scope of `const` is
invalidated when using top-level `await` in REPL.
As part of this change also add tests for the
documented behavior
Fixes: https://github.com/nodejs/node/issues/45918
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.... | [
{
"path": "doc/api/repl.md",
"patch": "@@ -258,8 +258,7 @@ undefined\n ```\n \n One known limitation of using the `await` keyword in the REPL is that\n-it will invalidate the lexical scoping of the `const` and `let`\n-keywords.\n+it will invalidate the lexical scoping of the `const` keywords.\n \n For examp... | 2025-04-05T22:06:45 |
vercel/next.js | ec0d1661058833bf6d159ce057b7db862bab5a1a | 0bcdbe488f66761f669806b503e67762579b689b | docs: fix proxy matcher overflow (#85337)
Also closes: https://github.com/vercel/next.js/issues/85344 | [
{
"path": "docs/01-app/01-getting-started/16-proxy.mdx",
"patch": "@@ -22,10 +22,7 @@ Some common scenarios where Proxy is effective include:\n - Rewriting to different pages based on A/B tests or experiments\n - Modifying headers for all pages or a subset of pages\n \n-Proxy is _not_ a good fit for:\n-\n--... | 2025-10-27T16:29:13 |
electron/electron | 15db63e26df3e3d59ce6281f030624f746518511 | ff36ff84b7f929e9aac5a3328e94e6351286aed8 | fix: SCContentSharingPicker crash in iframes (#43905)
When running `getDisplayMedia` from an `iframe` and then destroying that
`iframe`, the destrutcor for ScreenCaptureKitDeviceMac gets run, but it
doesn't clean up the observers for the shared macOS picker.
In this change we remove the observer on cleanup and fi... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -131,4 +131,3 @@ feat_enable_customizing_symbol_color_in_framecaptionbutton.patch\n build_expose_webplugininfo_interface_to_electron.patch\n osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_p... | 2024-09-25T23:43:23 |
facebook/react | dbf80c8d7a823041d83baff8b0dca8892ce27411 | bf0c054649f0573c184499bd571f08150152c086 | fix[react-devtools]: update profiling status before receiving response from backend (#31117)
We can't wait for a response from Backend, because it might take some
time to actually finish profiling.
We should keep a flag on the frontend side, so user can quickly see the
feedback in the UI. | [
{
"path": "packages/react-devtools-shared/src/devtools/ProfilerStore.js",
"patch": "@@ -11,6 +11,7 @@ import EventEmitter from '../events';\n import {prepareProfilingDataFrontendFromBackendAndStore} from './views/Profiler/utils';\n import ProfilingCache from './ProfilingCache';\n import Store from './store'... | 2024-10-09T12:23:23 |
golang/go | e8a4f508d1140eef70463c6c085c352418e03d9c | 9b7a3280895277471f53a4168439094e22a32390 | lib/fips140: re-seal v1.0.0
Exceptionally, we decided to make a compliance-related change following
CMVP's updated Implementation Guidance on September 2nd.
The Security Policy will be updated to reflect the new zip hash.
mkzip.go has been modified to accept versions of the form vX.Y.Z-hash,
where the -hash suffix i... | [
{
"path": "lib/fips140/fips140.sum",
"patch": "@@ -9,4 +9,4 @@\n #\n #\tgo test cmd/go/internal/fips140 -update\n #\n-v1.0.0.zip b50508feaeff05d22516b21e1fd210bbf5d6a1e422eaf2cfa23fe379342713b8\n+v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b",
"additions": 1,
"... | 2025-09-07T14:52:08 |
nodejs/node | 214e3d4affabc48a53b6db8ab1f2e2bc7d343653 | f31c88021b5b815bf776066c8eca510696b8c744 | src: improve error handling in process.env handling
PR-URL: https://github.com/nodejs/node/pull/57707
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/node_env_var.cc",
"patch": "@@ -26,7 +26,6 @@ using v8::Maybe;\n using v8::MaybeLocal;\n using v8::Name;\n using v8::NamedPropertyHandlerConfiguration;\n-using v8::NewStringType;\n using v8::Nothing;\n using v8::Object;\n using v8::ObjectTemplate;\n@@ -45,7 +44,7 @@ class RealEnvStore final :... | 2025-04-01T14:19:44 |
vercel/next.js | 0bcdbe488f66761f669806b503e67762579b689b | 69e19895e33598c9dc2613f8e26d82b3d1450dfb | Ensure getServerInsertedHTML skips rendering correctly (#85394)
### Problem
Both `polyfillTags` and `traceMetaTags` are only rendered if they
haven't already been flushed, however the current check to skip
rendering (lines 81-89) doesn't take this into account – only the render
logic does (lines 93-98).
This results... | [
{
"path": "packages/next/src/server/app-render/make-get-server-inserted-html.tsx",
"patch": "@@ -26,12 +26,14 @@ export function makeGetServerInsertedHTML({\n basePath: string\n }) {\n let flushedErrorMetaTagsUntilIndex = 0\n- // flag for static content that only needs to be flushed once\n- let hasFlu... | 2025-10-27T16:24:49 |
electron/electron | c8895d0547bc7711d2bdf232470bb655c3e90112 | 1d3b1284c46b8a9db3a16da090675a7882c86e4f | fix: close all open sheets before closing window on macOS (#43706) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -352,8 +352,11 @@ static bool FromV8(v8::Isolate* isolate,\n // [window_ performClose:nil], the window won't close properly\n // even after the user has ended the sheet.\n // Ensure it's closed before calling [window_ performClose:nil].\n- ... | 2024-09-25T11:23:49 |
golang/go | 9b7a3280895277471f53a4168439094e22a32390 | 7f9ab7203fd874f23f3881470ce5686391530c1a | crypto/internal/fips140: remove key import PCTs, make keygen PCTs fatal
CMVP clarified with the September 2nd changes to IG 10.3.A that PCTs
don't need to run on imported keys.
However, PCT failure must enter the error state (which for us is fatal).
Thankfully, now that PCTs only run on key generation, we can be ass... | [
{
"path": "src/crypto/internal/fips140/cast.go",
"patch": "@@ -56,27 +56,34 @@ func CAST(name string, f func() error) {\n }\n \n // PCT runs the named Pairwise Consistency Test (if operated in FIPS mode) and\n-// returns any errors. If an error is returned, the key must not be used.\n+// aborts the program ... | 2025-09-05T02:19:18 |
nodejs/node | b1402835a512f14fa9f8dd23d3e0cee8cfe888a2 | e2c8a0f9b81603c54eab174b2fe630a17ca06652 | http2: skip writeHead if stream is closed
Fixes: https://github.com/nodejs/node/issues/57416
PR-URL: https://github.com/nodejs/node/pull/57686
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rafael Gonzaga <... | [
{
"path": "lib/internal/http2/compat.js",
"patch": "@@ -706,7 +706,7 @@ class Http2ServerResponse extends Stream {\n writeHead(statusCode, statusMessage, headers) {\n const state = this[kState];\n \n- if (state.closed || this.stream.destroyed)\n+ if (state.closed || this.stream.destroyed || this... | 2025-04-04T15:07:09 |
vercel/next.js | 8de423c9f7b6507b49769c0408c317069abb008b | 498349c375e2602f526f64e8366992066cfa872c | Fix types of @next/mdx (#82238)
### What?
This fixes a couple of things:
- Although it’s rare for MDX plugins to accept more than 1 option, they
may accept any number of arguments.
- In addition to `remarkPlugins` and `rehypePlugins`, now `recmaPlugins`
is also patched to accept strings
- TypeScript property Descript... | [
{
"path": "packages/next-mdx/index.d.ts",
"patch": "@@ -4,6 +4,8 @@ import type { RuleSetConditionAbsolute } from 'webpack'\n \n type WithMDX = (config: NextConfig) => NextConfig\n \n+type PluggableListName = 'remarkPlugins' | 'rehypePlugins' | 'recmaPlugins'\n+\n declare namespace nextMDX {\n interface N... | 2025-10-27T10:12:35 |
facebook/react | bf0c054649f0573c184499bd571f08150152c086 | ed966dac4a025fd37580e8197e5b271044ffbd9f | fix[react-devtools]: wrap key string in preformatted text html element (#31153)
Fixes https://github.com/facebook/react/issues/28984. | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/Element.js",
"patch": "@@ -166,7 +166,7 @@ export default function Element({data, index, style}: Props): React.Node {\n className={styles.KeyValue}\n title={key}\n onDoubleClick={handleKeyDouble... | 2024-10-09T08:54:34 |
electron/electron | 1d3b1284c46b8a9db3a16da090675a7882c86e4f | 30fbeec036f8481ba9eba9cb01af0236ed0d28ff | test: ensure `sender-pid` hint is set in Linux notifications (#43928)
test: expect a `sender-pid` hint in Linux notifications.
This PR ensures that the `sender-pid` hint is set for new notifications.
It also updates the spec to confirm that DBus receives the hint and that
it has the correct value.
This fixes a... | [
{
"path": "BUILD.gn",
"patch": "@@ -75,6 +75,7 @@ if (is_linux) {\n \"notify_notification_set_timeout\",\n \"notify_notification_set_urgency\",\n \"notify_notification_set_hint_string\",\n+ \"notify_notification_set_hint\",\n \"notify_notification_show\",\n \"notify_notifi... | 2024-09-25T11:20:36 |
golang/go | 7f9ab7203fd874f23f3881470ce5686391530c1a | fb5719cbda01c64f2f8d2eeed8592a494de59d65 | crypto/internal/fips140: update frozen module version to "v1.0.0"
We are re-sealing the .zip file anyway for another reason, might as well
take the opportunity to fix the "v1.0" mistake.
Note that the actual returned version change will happen when re-sealing
the .zip, as the latest mkzip.go will inject "v1.0.0" inst... | [
{
"path": "src/crypto/internal/cryptotest/hash.go",
"patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {... | 2025-09-10T10:19:49 |
nodejs/node | 87f8d3c8dea267dd28656853821f40fd6573de1e | caf478b72eb75b6f7ee2cea33195d48fb0479077 | tools: enable linter in `test/fixtures/source-map/output`
PR-URL: https://github.com/nodejs/node/pull/57700
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "eslint.config.mjs",
"patch": "@@ -62,6 +62,14 @@ export default [\n '!test/fixtures/console',\n '!test/fixtures/errors',\n '!test/fixtures/eval',\n+ '!test/fixtures/source-map',\n+ 'test/fixtures/source-map/*',\n+ '!test/fixtures/source-map/output',\n+ ...filterFilesInDir(... | 2025-04-04T13:56:39 |
vercel/next.js | 3cf4b17ba8c4305974fc122bea839f901f8f478f | a135a7d51374eff46bf9337eeaf1811bd0c3fe05 | fix(static-paths): add depth tracking to parallel route param resolution (#85319)
### What?
Adds depth-aware parameter resolution to `resolveParallelRouteParams` by
migrating from simplified parallel route segments to LoaderTree
structure.
### Why?
Dynamic and intercepted parameters in parallel routes were not bein... | [
{
"path": "packages/next/src/build/static-paths/app.test.ts",
"patch": "@@ -1309,19 +1309,20 @@ describe('calculateFallbackMode', () => {\n })\n \n describe('resolveParallelRouteParams', () => {\n- function createParallelRouteSegment(\n- paramName: string,\n- paramType: DynamicParamTypes\n- ): {\n- ... | 2025-10-24T20:07:37 |
facebook/react | ed966dac4a025fd37580e8197e5b271044ffbd9f | f74f6cd945675158eb40402041305e7af4ce731c | [compiler] Fix busted postinstall script (#31147) | [
{
"path": "compiler/packages/babel-plugin-react-compiler/package.json",
"patch": "@@ -8,9 +8,8 @@\n \"dist\"\n ],\n \"scripts\": {\n- \"postinstall\": \"./scripts/link-react-compiler-runtime.sh\",\n \"build\": \"rimraf dist && rollup --config --bundleConfigAsCjs\",\n- \"test\": \"yarn snap... | 2024-10-08T00:37:41 |
vercel/next.js | 4b4597935192d2c07593d83850a868a86087529b | 0b9512280c437883420134918838f873f1a4c1b7 | Docs/use cache feedback 2 (#85222)
- [x] Update Error | [
{
"path": "docs/01-app/01-getting-started/06-cache-components.mdx",
"patch": "@@ -48,7 +48,7 @@ When a user visits a route:\n \n > **🎥 Watch:** Why PPR and how it works → [YouTube (10 minutes)](https://www.youtube.com/watch?v=MTcPrTIBkpA).\n \n-## How it Works\n+## How it works\n \n Cache Components gives ... | 2025-10-22T14:35:44 |
nodejs/node | caf478b72eb75b6f7ee2cea33195d48fb0479077 | 274898af4c788fa0f48ab28326d4917a87773af8 | tools: enable linter in `test/fixtures/errors`
PR-URL: https://github.com/nodejs/node/pull/57701
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "eslint.config.mjs",
"patch": "@@ -60,6 +60,7 @@ export default [\n // We want to lint only a few specific fixtures folders\n 'test/fixtures/*',\n '!test/fixtures/console',\n+ '!test/fixtures/errors',\n '!test/fixtures/eval',\n '!test/fixtures/test-runner',\n 'test/fixtu... | 2025-04-04T13:41:48 |
facebook/react | 68d59d43d5640f7e44b46bfa7ee758de063767b4 | 91c42a14c7a698fe6baeab770d3c2548fcdf32b4 | [compiler][ez] Fix reanimated custom type defs for imports (#31137)
When we added support for Reanimated, we didn't distinguish between true
globals (i.e. identifiers with no static resolutions), module types, and
imports #29188. For the past 3-4 months, Reanimated imports were not
being matched to the correct hook... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -16,7 +16,7 @@ import {\n DEFAULT_SHAPES,\n Global,\n GlobalRegistry,\n- installReAnimatedTypes,\n+ getReanimatedModuleType,\n installTypeConfig,\n } from './Globals';\n import {\n@@ -688,7 +688,8 @@ exp... | 2024-10-07T17:09:39 |
rust-lang/rust | bd8c9f38e5e1838c6b1f7838273939a0d716b071 | debbabedb3637aa7643f012019e85a5c40fc43f8 | Do not use PostAnalysis TypingMode for IDE method resolution
As explained in the comments, PostAnalysis is good for most IDE things but not method resolution.
This fixes a bug which should not be impacted by this at all - return position impl trait in trait. It is currently lowered to an opaque, while it should be lo... | [
{
"path": "src/tools/rust-analyzer/crates/hir/src/lib.rs",
"patch": "@@ -5952,7 +5952,16 @@ impl<'db> Type<'db> {\n ) -> R {\n let module = resolver.module();\n let interner = DbInterner::new_with(db, module.krate(db));\n- let infcx = interner.infer_ctxt().build(TypingMode::PostAn... | 2026-03-04T20:06:36 |
electron/electron | 30fbeec036f8481ba9eba9cb01af0236ed0d28ff | af54c5a4b6c9d022045d6f01a068fe62cb196565 | chore: bump chromium to 131.0.6734.0 (main) (#43769)
* chore: bump chromium in DEPS to 130.0.6723.4
* chore: bump chromium in DEPS to 131.0.6724.0
* chore: update patches
* chore: update libc++ filenames
* 5844369: controlledframe: Disable Web Bluetooth for <webview> & <controlledframe>
https://chromium-r... | [
{
"path": ".github/actions/install-build-tools/action.yml",
"patch": "@@ -6,6 +6,6 @@ runs:\n - name: Install Build Tools\n shell: bash\n run: |\n- export BUILD_TOOLS_SHA=d5b87591842be19058e8d75d2c5b7f1fabe9f450\n+ export BUILD_TOOLS_SHA=33dc5186556bfbf7b0121a00cdd89ed3802e47da\n n... | 2024-09-25T11:19:39 |
nodejs/node | 274898af4c788fa0f48ab28326d4917a87773af8 | ad078696026f42605a37a65702a1467968030ae0 | doc: remove link to `QUIC.md`
PR-URL: https://github.com/nodejs/node/pull/57729
Fixes: https://github.com/nodejs/node/issues/57252
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
R... | [
{
"path": "doc/api/index.md",
"patch": "@@ -49,7 +49,6 @@\n * [Process](process.md)\n * [Punycode](punycode.md)\n * [Query strings](querystring.md)\n-* [QUIC](quic.md)\n * [Readline](readline.md)\n * [REPL](repl.md)\n * [Report](report.md)",
"additions": 0,
"deletions": 1,
"language": "Markdown"... | 2025-04-04T12:53:31 |
vercel/next.js | b66c1d61765df684ad6e58f60c209b0b587a4908 | 96754b605fad930dcf2db1384e5afa21f7ebf57c | Remove layout-router sticky/fixed debug warning (#85193)
Fixes an issue that reproduces due to a combination of the log
forwarding logic alongside logging out an explicit element. We can add
this back in the future once our log forwarding library properly ignores
non-enumerable properties. | [
{
"path": "packages/next/src/client/components/layout-router.tsx",
"patch": "@@ -140,12 +140,6 @@ function shouldSkipElement(element: HTMLElement) {\n // and will result in a situation we bail on scroll because of something like a fixed nav,\n // even though the actual page content is offscreen\n if (... | 2025-10-21T23:04:25 |
electron/electron | bcf4095aceac261fd716b9372d071b5de31a1c00 | 500d4f0d05130aeaf26c01da9dde72b5a9d0d65a | fix: crash when focusing `WebView` `webContents` (#43921)
fix: crash when focusing WebView | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3339,6 +3339,12 @@ void WebContents::Focus() {\n if (owner_window())\n owner_window()->Focus(true);\n #endif\n+\n+ // WebView uses WebContentsViewChildFrame, which doesn't have a Focus impl\n+ // and triggers a fatal NOTREACHE... | 2024-09-24T23:19:04 |
facebook/react | 1460d67c5b9a0d4498b4d22e1a5a6c0ccac85fdd | edacbde73f50cc9dc00819d61275cd43f12665c1 | [compiler][hir] Only hoist always-accessed PropertyLoads from function decls (#31066)
Stack from [ghstack](https://github.com/ezyang/ghstack) (oldest at
bottom):
* __->__ #31066
* #31032
Prior to this PR, we consider all of a nested function's accessed paths
as 'hoistable' (to the basic block in which the funct... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts",
"patch": "@@ -7,6 +7,7 @@ import {\n Set_union,\n getOrInsertDefault,\n } from '../Utils/utils';\n+import {collectOptionalChainSidemap} from './CollectOptionalChainDependencies';\n import {\n BasicBlock... | 2024-10-03T18:41:32 |
golang/go | d70ad4e740e24b4b76961c4b56d698fa23668aa2 | d7abfe4f0dc91568648a66495b9f5d7ebc0f22b5 | sync/atomic: correct Uintptr.Or return doc
Uintptr.Or returns the old value, just like all of the other Or
functions. This was a typo in the original CL 544455.
Fixes #75607.
Change-Id: I260959e7e32e51f1152b5271df6cc51adfa02a4d
Reviewed-on: https://go-review.googlesource.com/c/go/+/706816
Reviewed-by: Michael Knysze... | [
{
"path": "src/sync/atomic/type.go",
"patch": "@@ -232,7 +232,7 @@ func (x *Uintptr) Add(delta uintptr) (new uintptr) { return AddUintptr(&x.v, del\n func (x *Uintptr) And(mask uintptr) (old uintptr) { return AndUintptr(&x.v, mask) }\n \n // Or atomically performs a bitwise OR operation on x using the bitma... | 2025-09-25T17:12:12 |
vercel/next.js | 96754b605fad930dcf2db1384e5afa21f7ebf57c | 48bb490d6396a8db09811bf21997ab6c5a38c0b8 | Tweaks to blocking route error message (#85191)
Makes it more clear that `<Suspense>` and "use cache" are separate
approaches for fixing the error, not requirements.
<img width="969" height="711" alt="Screenshot 2025-10-21 at 3 09 57 PM"
src="https://github.com/user-attachments/assets/34bd2efc-9fee-4aba-82eb-6b395663... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/container/errors.tsx",
"patch": "@@ -67,22 +67,28 @@ function BlockingPageLoadErrorDescription() {\n experience. Next.js uses this error to ensure your app loads instantly\n on every navigation.\n </p>\n- <p>To fix this, you c... | 2025-10-21T22:24:29 |
nodejs/node | ad078696026f42605a37a65702a1467968030ae0 | 633ba0079e245bbe5360f2fe9af7ec6b784cf126 | tools: enable linter in `test/fixtures/test-runner/output`
PR-URL: https://github.com/nodejs/node/pull/57698
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> | [
{
"path": "eslint.config.mjs",
"patch": "@@ -1,3 +1,4 @@\n+import { readdirSync } from 'node:fs';\n import Module from 'node:module';\n import { fileURLToPath, URL } from 'node:url';\n \n@@ -25,6 +26,12 @@ const { default: stylisticJs } = await importEslintTool('@stylistic/eslint-plugi\n \n nodeCore.RULES_D... | 2025-04-04T08:44:21 |
electron/electron | 500d4f0d05130aeaf26c01da9dde72b5a9d0d65a | e64a66bfd31dce94b2754579678a49f97c349129 | fix: -Wunsafe-buffer-usage warning in asar_util's ReadFileToString() (#43896) | [
{
"path": "shell/common/asar/asar_util.cc",
"patch": "@@ -126,11 +126,8 @@ bool ReadFileToString(const base::FilePath& path, std::string* contents) {\n return false;\n \n contents->resize(info.size);\n- if (static_cast<int>(info.size) !=\n- src.Read(info.offset, const_cast<char*>(contents->data(... | 2024-09-24T20:41:24 |
facebook/react | 99c056abb0dac0e1a15b2c85b620b72c625e065b | d8c90fa48d3addefe4b805ec56a3c65e4ee39127 | [Flight] Allow aborting encodeReply (#31106)
Allow aborting encoding arguments to a Server Action if a Promise
doesn't resolve. That way at least part of the arguments can be used on
the receiving side. This leaves it unresolved in the stream rather than
encoding an error.
This should error on the receiving side... | [
{
"path": "packages/react-client/src/ReactFlightReplyClient.js",
"patch": "@@ -185,7 +185,7 @@ export function processReply(\n temporaryReferences: void | TemporaryReferenceSet,\n resolve: (string | FormData) => void,\n reject: (error: mixed) => void,\n-): void {\n+): (reason: mixed) => void {\n let... | 2024-10-01T18:28:51 |
golang/go | d7abfe4f0dc91568648a66495b9f5d7ebc0f22b5 | 393d91aea060e5b379e7913e524026d0672a96a7 | runtime: acquire/release C TSAN lock when calling cgo symbolizer/tracebacker
When calling into C via cmd/cgo, the generated code calls
_cgo_tsan_acquire / _cgo_tsan_release around the C call to report a
dummy lock to the C/C++ TSAN runtime. This is necessary because the
C/C++ TSAN runtime does not understand synchroni... | [
{
"path": "src/cmd/cgo/internal/testsanitizers/testdata/tsan_tracebackctxt/main.go",
"patch": "@@ -0,0 +1,78 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package main\n+\n+/*\n+// ... | 2025-05-30T21:05:41 |
nodejs/node | 633ba0079e245bbe5360f2fe9af7ec6b784cf126 | 9de01cc4d1cdb7e0b2f84c5d0cf7f3d50efcfb0f | tools: enable linter in `test/fixtures/eval`
PR-URL: https://github.com/nodejs/node/pull/57699
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "eslint.config.mjs",
"patch": "@@ -53,6 +53,7 @@ export default [\n // We want to lint only a few specific fixtures folders\n 'test/fixtures/*',\n '!test/fixtures/console',\n+ '!test/fixtures/eval',\n '!test/fixtures/v8',\n '!test/fixtures/vm',\n ]),",
"additions": 1,
... | 2025-04-04T08:39:36 |
vercel/next.js | 077da103745e9e582d0d069c752369f8aca677fe | 409b28106e3724fc66e4d4eef54770fe5994e239 | Fix Activity boundary names (#85185)
Follow-up to #85155. Made a mistake in the context-passing logic. | [
{
"path": "packages/next/src/client/components/layout-router.tsx",
"patch": "@@ -44,7 +44,6 @@ import { hasInterceptionRouteInCurrentTree } from './router-reducer/reducers/has\n import { dispatchAppRouterAction } from './use-action-queue'\n import { useRouterBFCache, type RouterBFCacheEntry } from './bfcach... | 2025-10-21T21:40:00 |
electron/electron | e64a66bfd31dce94b2754579678a49f97c349129 | 7222a9fe1f874d094e63e15f62f95d505e332140 | fix: detach native view when its removed from parent on macOS (#43627)
Right now DelayedNativeViewHost attaches its underlying native view
when it's being attached to a widget but it doesn't detach it when
it's being detached. It may lead to use-after-free and crash. | [
{
"path": "shell/browser/ui/cocoa/delayed_native_view_host.mm",
"patch": "@@ -15,6 +15,8 @@\n \n void DelayedNativeViewHost::ViewHierarchyChanged(\n const views::ViewHierarchyChangedDetails& details) {\n+ if (!details.is_add && native_view())\n+ Detach();\n NativeViewHost::ViewHierarchyChanged(det... | 2024-09-24T13:28:36 |
facebook/react | d8c90fa48d3addefe4b805ec56a3c65e4ee39127 | 6e612587ecfca0ea2e331300635d497d54437930 | Disable infinite render loop detection (#31088)
We're seeing issues with this feature internally including bugs with
sibling prerendering and errors that are difficult for developers to
action on. We'll turn off the feature for the time being until we can
improve the stability and ergonomics.
This PR does two th... | [
{
"path": "packages/react-dom/src/__tests__/ReactLegacyUpdates-test.js",
"patch": "@@ -1427,7 +1427,7 @@ describe('ReactLegacyUpdates', () => {\n }\n }\n \n- let limit = 105;\n+ let limit = 55;\n await expect(async () => {\n await act(() => {\n ReactDOM.render(<EventuallyTe... | 2024-10-01T15:00:57 |
vercel/next.js | 409b28106e3724fc66e4d4eef54770fe5994e239 | e2262334f8e7ba0050d74d4fe9ea7f9cd7b7033d | Improve Proxy invalid export error message (#84887)
Improve invalid Proxy/Middleware export error message to:
```
> Build error occurred
Error: The file "./proxy.ts" must export a function, either as a default export or as a named "proxy" export.
This function is what Next.js runs for every request handled by th... | [
{
"path": "Cargo.lock",
"patch": "@@ -4322,6 +4322,7 @@ dependencies = [\n \"next-custom-transforms\",\n \"next-taskless\",\n \"once_cell\",\n+ \"pathdiff\",\n \"percent-encoding\",\n \"qstring\",\n \"react_remove_properties\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
... | 2025-10-21T20:54:58 |
golang/go | 393d91aea060e5b379e7913e524026d0672a96a7 | 6dceff8bad6213bca76361462c99b0d06fd0a8f9 | cmd/fix: remove all functionality
The buildtag fixer has been incorporated into the vet analyzer
of the same name; all other fixers were already no-ops since
CL 695855.
Fixes #73605
Updates #71859
Change-Id: I90b6c730849a5ecbac3e6fb6fc0e062b5de74831
Reviewed-on: https://go-review.googlesource.com/c/go/+/706758
Revie... | [
{
"path": "src/cmd/fix/buildtag.go",
"patch": "@@ -1,52 +0,0 @@\n-// Copyright 2020 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-package main\n-\n-import (\n-\t\"go/ast\"\n-\t\"go/version\"\n-\t\"strings... | 2025-09-25T16:41:08 |
facebook/react | 9ea5ffa9cba4869474a1d5d53e7d6c135be6adf7 | 40357fe63071950b0bba304657a003755aec4e30 | chore[react-devtools]: add legacy mode error message to the ignore list for tests (#31060)
Without this, the console gets spammy whenever we run React DevTools
tests against React 18.x, where this deprecation message was added. | [
{
"path": "packages/react-devtools-shared/src/__tests__/setupTests.js",
"patch": "@@ -150,7 +150,10 @@ function patchConsoleForTestingBeforeHookInstallation() {\n firstArg.startsWith(\n 'The current testing environment is not configured to support act',\n ) ||\n- firstArg.st... | 2024-10-01T13:04:05 |
electron/electron | ceea1225a211526d6b5b9bcffd47c65ec8b54d4c | 517d04de16701f0cf2a6ffe5d08adcc2c68c45f7 | docs: navigation history example (#42980)
* docs: add fiddle example
* docs: add tutorial guide
* refactor: PR review comments
* refactor: add eof
* refactor: render navigation history and make demo better.
* refactor: fix broken links
* refactor: add eof newline
* docs: review feedback :)
* ch... | [
{
"path": "docs/README.md",
"patch": "@@ -37,6 +37,7 @@ an issue:\n * [Offline/Online Detection](tutorial/online-offline-events.md)\n * [Represented File for macOS BrowserWindows](tutorial/represented-file.md)\n * [Native File Drag & Drop](tutorial/native-file-drag-drop.md)\n+ * [Navigation History](... | 2024-09-23T17:18:26 |
golang/go | 6dceff8bad6213bca76361462c99b0d06fd0a8f9 | 76d088eb74115ea14f774d1940557ca3047e1ebb | cmd/link: handle -w flag in external linking mode
Currently, when the -w flag is set, it doesn't actually disable
the debug info generation with in external linking mode. (It does
make the Go object have no debug info, but C objects may still
have.) Pass "-Wl,-S" to let the external linker disable debug info
generatio... | [
{
"path": "src/cmd/link/dwarf_test.go",
"patch": "@@ -370,14 +370,26 @@ func TestFlagW(t *testing.T) {\n \t\tt.Fatal(err)\n \t}\n \n-\ttests := []struct {\n+\ttype testCase struct {\n \t\tflag string\n \t\twantDWARF bool\n-\t}{\n+\t}\n+\ttests := []testCase{\n \t\t{\"-w\", false}, // -w flag disabl... | 2025-09-16T17:34:19 |
vercel/next.js | e2262334f8e7ba0050d74d4fe9ea7f9cd7b7033d | f50c769fa2034a5702f6a61ea56e0ba1af3859fd | [turbopack] Implement improved deobfuscation for free calls and module identifiers. (#85060)
Improve deobfuscation of 'imported module identifier' and attempt to deobfuscate error messages logged by the server.
Before
```
⨯ TypeError: (0 , __TURBOPACK__imported__module__$5b$project$5d2f$examples$2f$with$2d$turbopack... | [
{
"path": "examples/basic-css/tsconfig.json",
"patch": "@@ -21,6 +21,12 @@\n \"strictNullChecks\": true,\n \"target\": \"ES2017\"\n },\n- \"include\": [\"next-env.d.ts\", \".next/types/**/*.ts\", \"**/*.ts\", \"**/*.tsx\"],\n+ \"include\": [\n+ \"next-env.d.ts\",\n+ \".next/types/**/*.ts\"... | 2025-10-21T20:54:28 |
facebook/react | 40357fe63071950b0bba304657a003755aec4e30 | 654e387d7eac113ddbf85f8a9029d1af7117679e | fix[react-devtools]: request hook initialization inside http server response (#31102)
Fixes https://github.com/facebook/react/issues/31100.
There are 2 things:
1. In https://github.com/facebook/react/pull/30987, we've introduced a
breaking change: importing `react-devtools-core` is no longer enough for
installin... | [
{
"path": "packages/react-devtools-core/src/standalone.js",
"patch": "@@ -17,7 +17,6 @@ import {registerDevToolsEventLogger} from 'react-devtools-shared/src/registerDev\n import {Server} from 'ws';\n import {join} from 'path';\n import {readFileSync} from 'fs';\n-import {installHook} from 'react-devtools-sh... | 2024-10-01T13:03:48 |
vercel/next.js | f50c769fa2034a5702f6a61ea56e0ba1af3859fd | 0a3f1e45f4896626c5691330bf69b246a3f2911c | fix: add backwards compat for middleware → proxy field renames (#85183)
### What?
These config keys were recently soft-renamed with forward compatibility
on the _resolved_ config object:
- `experimental.proxyPrefetch` → `experimental.middlewarePrefetch`
- `experimental.externalProxyRewritesResolve` →
`experimental.e... | [
{
"path": "packages/next/src/server/config.test.ts",
"patch": "@@ -134,4 +134,77 @@ describe('loadConfig', () => {\n )\n })\n })\n+\n+ describe('middleware to proxy config key rename backward/forward compatibility', () => {\n+ it('should copy `skipMiddlewareUrlNormalize value` to `skipProxyU... | 2025-10-21T20:00:52 |
electron/electron | e894839709406101c54a067b6e1848ff294f17a5 | f89bd745d5ac168665a09b0fc6f3a565b3fb40be | fix: -Wunsafe-buffer-usage warnings in GetNextZoomLevel() (#43803) | [
{
"path": "shell/browser/ui/inspectable_web_contents.cc",
"patch": "@@ -6,6 +6,7 @@\n #include \"shell/browser/ui/inspectable_web_contents.h\"\n \n #include <algorithm>\n+#include <array>\n #include <memory>\n #include <string_view>\n #include <utility>\n@@ -69,10 +70,6 @@ namespace electron {\n \n namespac... | 2024-09-21T22:21:02 |
golang/go | 5225e9dc497408c06e7e5c917081887cc9b2e321 | 81a83bba216a1382e53216f6535f3035c4a1ec4e | doc/next: document new image/jpeg DCT in release notes
Fixes #75603.
Change-Id: I0b4b93af467b97c2d4b5703e31605ff4f7970260
Reviewed-on: https://go-review.googlesource.com/c/go/+/706736
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "doc/next/6-stdlib/99-minor/image/jpeg/75603.md",
"patch": "@@ -0,0 +1,2 @@\n+The JPEG encoder and decoder have been replaced with new, faster, more accurate implementations.\n+Code that expects specific bit-for-bit outputs from the encoder or decoder may need to be updated.",
"additions": 2,
... | 2025-09-25T15:13:45 |
golang/go | 81a83bba216a1382e53216f6535f3035c4a1ec4e | 6b32c613ca2e69449b66ed552b93562e6be70577 | cmd: update x/tools@4df13e3
This includes only a couple of minor cmd/vet fixes for new(expr).
export GOWORK=off
cd src/cmd
go get golang.org/x/tools@4df13e3
go mod tidy
go mod vendor
For #45624
Change-Id: Iafba4350d321d6cd1fcc91a062e2c150e3f4d553
Reviewed-on: https://go-review.googlesource.com/c... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.36.0\n \tgolang.org/x/telemetry v0.0.0-20250908211612-aef8a434d053\n \tgolang.org/x/term v0.34.0\n-\tgolang.org/x/tools v0.37.1-0.20250915202913-9fccddc465ef\n+\tgolang.org/x/tools v0.37.1-0.20250924232827-4df13e317ce4... | 2025-09-25T14:30:14 |
rust-lang/rust | 098b1b98f5ebb4e8790c663f27746e9d323cc63c | 72de815eb2284b5eec85a56664fa08ba62d19f93 | make path separators available in const context
* consolidate various representations of separators in std::sys::path
into a single macro_rules invocation per platform to save
transcription errors
* make `std::path::is_separator()` const
* new constants `std::path::{SEPARATORS, SEPARATORS_STR}` | [
{
"path": "library/std/src/path.rs",
"patch": "@@ -266,22 +266,33 @@ impl<'a> Prefix<'a> {\n /// ```\n #[must_use]\n #[stable(feature = \"rust1\", since = \"1.0.0\")]\n-pub fn is_separator(c: char) -> bool {\n+#[rustc_const_unstable(feature = \"const_path_separators\", issue = \"153106\")]\n+pub const fn is... | 2026-02-27T18:22:37 |
electron/electron | f89bd745d5ac168665a09b0fc6f3a565b3fb40be | bcb7362ab9807cc5e1a6efc262ff9fdb746498d5 | fix: `createWindow` shouldn't load URL for `webContents` (#43775)
* fix: createWindow shouldn't load URL for webContents
* chore: add non about blank test | [
{
"path": "lib/browser/guest-window-manager.ts",
"patch": "@@ -71,14 +71,6 @@ export function openGuestWindow ({ embedder, guest, referrer, disposition, postD\n throw new Error('Invalid webContents. Created window should be connected to webContents passed with options object.');\n }\n \n- ... | 2024-09-20T07:56:03 |
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.