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 |
|---|---|---|---|---|---|
facebook/react | 0c866672b07ae47d8d6f80d1aac9029e5ae73d90 | 8e4d2fb69d690695db0a33001fb1aee586bde15f | Fix false positive on preserving memo of non-escaping values
Fixes the false positive in the previous PR. When we prune a scope because it's
values are non-escaping, we now also remove any `Memoize` instructions for that
scope. The intuition being that we're actively removing unnecessary memoization,
so we don't n... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PruneNonEscapingScopes.ts",
"patch": "@@ -871,6 +871,8 @@ class CollectDependenciesVisitor extends ReactiveFunctionVisitor<State> {\n class PruneScopesTransform extends ReactiveFunctionTransform<\n Set<IdentifierId>\n > {\n+ pruned... | 2024-01-12T01:13:41 |
vercel/next.js | 42bcacd9a1127bac3b018e134312e60d25117cbf | 10e0798fc9a43dc34f8d49c6b805d8a54af6d91b | Remove useMDXComponents argument (#80871)
### What?
Fix the signatures of `useMDXComponents`.
### Why?
The `useMDXComponents` function is always called without any arguments.
It’s also always supposed to be a named export, not a default export.
It’s also called during render. Defining React components during render... | [
{
"path": "docs/01-app/02-guides/mdx.mdx",
"patch": "@@ -77,18 +77,18 @@ Create an `mdx-components.tsx` (or `.js`) file in the root of your project to de\n ```tsx filename=\"mdx-components.tsx\" switcher\n import type { MDXComponents } from 'mdx/types'\n \n-export function useMDXComponents(components: MDXCo... | 2025-07-29T20:45:08 |
rust-lang/rust | caf7cdf55895eeacc8b8efca54bdd28c0ebdd3a8 | 605f49b27444a738ea4032cb77e3bdc4eb811bab | Improve code suggestion for incorrect macro_rules! usage | [
{
"path": "compiler/rustc_parse/src/parser/item.rs",
"patch": "@@ -534,7 +534,7 @@ impl<'a> Parser<'a> {\n match self.parse_delim_args() {\n // `( .. )` or `[ .. ]` (followed by `;`), or `{ .. }`.\n Ok(args) => {\n- self.eat_semi_for_macro_if_needed(&args);\n+ ... | 2026-01-31T06:36:07 |
facebook/react | c3a947643fae3fbbbda42a676c1b89dfd5d21945 | f6f042d747be336e272c6b0d205fb15b6e7de8f6 | Update hoisting error message to allow error aggregation
Interpolating values into the `reason` field of an error breaks our error
aggregation. This PR moves the offending function name into the `description`
field which isn't used for aggregation. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -646,9 +646,8 @@ function checkFunctionReferencedBeforeDeclarationAtTopLevel(\n if (scope === null) {\n errors.pushErrorDetail(\n new CompilerErrorDetail({\n- reason: `Encounter... | 2024-01-11T23:54:55 |
golang/go | 7b4a3d93d7783e2c4593e604bedc6ffda64f2225 | d681270714bc91b28a2cd97c3eae138b3112ff1d | crypto/tls: fix bogo IgnoreClientVersionOrder skip reason
The BoGo IgnoreClientVersionOrder test checks that a client that sends
a supported_versions extension with the list [TLS 1.2, TLS 1.3] ends up
negotiating TLS 1.3.
However, the crypto/tls module treats this list as being in client
preference order, and so nego... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -66,7 +66,7 @@\n \"SupportTicketsWithSessionID\": \"TODO: first pass, this should be fixed\",\n \"NoNullCompression-TLS12\": \"TODO: first pass, this should be fixed\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this shou... | 2025-05-09T14:29:47 |
nodejs/node | 6cc4d5fc87503a6bc033b70f125d319d46f1c01e | 9db6327af3272c4125d20c078010600629506a26 | doc, meta: fix broken link in `onboarding.md`
PR-URL: https://github.com/nodejs/node/pull/54886
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com... | [
{
"path": "onboarding.md",
"patch": "@@ -117,7 +117,7 @@ The project has a venue for real-time discussion:\n * You can always refer to the\n [full moderation policy](https://github.com/nodejs/admin/blob/main/Moderation-Policy.md).\n * You can contact someone in the\n- [full list of moderation tea... | 2024-09-12T06:35:07 |
rust-lang/rust | ab08cc9950bae44f119f97cef2d760ffcf0d16c7 | 9e1e35d779aa4de0892a6f9511e065df3858cb63 | Fix rustfmt
Co-authored-by: Michael Goulet <michael@errs.io> | [
{
"path": "src/items.rs",
"patch": "@@ -319,12 +319,13 @@ impl<'a> FnSig<'a> {\n method_sig: &'a ast::FnSig,\n generics: &'a ast::Generics,\n visibility: &'a ast::Visibility,\n+ defaultness: ast::Defaultness,\n ) -> FnSig<'a> {\n FnSig {\n safety: metho... | 2026-01-28T14:12:13 |
vercel/next.js | 9da129108d8b7b6294dd3338075a2bda5006169c | 14be7505c61dc9c1631dc0b1da2d444b15ca5e82 | Turbopack: Fix accidental doctest in globset module license (#82127)
The code block syntax in a documentation comment is interpreted as a doctest: https://doc.rust-lang.org/rustdoc/write-documentation/documentation-tests.html
Tested with:
```
cargo test -p turbo-tasks-fs
``` | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/globset.rs",
"patch": "@@ -2,18 +2,17 @@\n /// After discussing upstreaming our usecase with the authors of `globset`, we decided that a\n /// fork was appropriate given our divergent usecases. See discussion https://github.com/BurntSushi/ripgrep/issues/3049\n ... | 2025-07-29T17:37:45 |
facebook/react | f6f042d747be336e272c6b0d205fb15b6e7de8f6 | 8a634bc1c0a3658a23f50662d1c0225ae6212720 | Switch test262 submodule to https url
I had trouble checking out the repo using Sapling because the submodule couldn't
clone properly. I got
> Error: Permission denied (publickey)
In my branch I tested that the https URL format seems to work okay with Sapling. | [
{
"path": "compiler/.gitmodules",
"patch": "@@ -1,4 +1,4 @@\n [submodule \"test262\"]\n \tpath = test262\n-\turl = git@github.com:tc39/test262.git\n+\turl = https://github.com/tc39/test262\n \tshallow = true",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2024-01-12T20:07:24 |
electron/electron | f7a7085019bf757700df3c2f8714e0de356203cd | 0c45d160d669356c70bb0df50ebbd250fc6fd562 | docs: fix typo in open-url API docs (#39513)
* Fix typo in open-url API docs
* Update app.md | [
{
"path": "docs/api/app.md",
"patch": "@@ -128,9 +128,8 @@ Emitted when the user wants to open a URL with the application. Your application\n set `NSPrincipalClass` to `AtomApplication`.\n \n As with the `open-file` event, be sure to register a listener for the `open-url`\n-event early in your application s... | 2023-08-16T10:26:02 |
nodejs/node | d9ca8b018efd172a99365ada8f536491b19bd87b | 8eb9353b037f1b494f70ba6dd446471672a7034a | test: fix test-tls-client-mindhsize for OpenSSL32
Refs: https://github.com/nodejs/node/issues/53382
- OpenSSL32 has a minimum dh key size by 2048 by
default.
- Create larter 3072 dh key needed for testing and
adjust tests to use it for builds with OpenSSL32
Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-... | [
{
"path": "test/fixtures/keys/Makefile",
"patch": "@@ -24,6 +24,7 @@ all: \\\n dh512.pem \\\n dh1024.pem \\\n dh2048.pem \\\n+ dh3072.pem \\\n dherror.pem \\\n dh_private.pem \\\n dh_public.pem \\\n@@ -596,6 +597,9 @@ dh1024.pem:\n dh2048.pem:\n \topenssl dhparam -out dh2048.pem 2048\n \n+dh307... | 2024-09-03T16:27:53 |
golang/go | 11fa0de475f9446870bc086bfb42cb67bac40634 | fc641e7fae1b09e25402bc73660d2deea51c2ad6 | cmd/compile: use OpMove instead of memmove more on arm64
OpMove is faster for small moves of fixed size.
For safety, we have to rewrite the Move rewrite rules a bit so that
all the loads are done before any stores happen.
Also use an 8-byte move instead of a 16-byte move if the tail is
at most 8 bytes.
Change-Id: I... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules",
"patch": "@@ -472,26 +472,39 @@\n \t\t(MOVDstore dst (MOVDload src mem) mem))\n (Move [16] dst src mem) =>\n \t(STP dst (Select0 <typ.UInt64> (LDP src mem)) (Select1 <typ.UInt64> (LDP src mem)) mem)\n-(Move [32] dst src mem) =>\n-\t(STP [16] dst (Se... | 2025-04-24T21:34:10 |
rust-lang/rust | ae2d679bdd62227f6eaad47c37022221226e70ad | 99e47220fcf7135b052f4ceaf36b217030074127 | Fix clippy ast utils
Co-authored-by: Michael Goulet <michael@errs.io> | [
{
"path": "clippy_utils/src/ast_utils/mod.rs",
"patch": "@@ -819,7 +819,9 @@ pub fn eq_use_tree_kind(l: &UseTreeKind, r: &UseTreeKind) -> bool {\n pub fn eq_defaultness(l: Defaultness, r: Defaultness) -> bool {\n matches!(\n (l, r),\n- (Defaultness::Final, Defaultness::Final) | (Defaultne... | 2026-01-28T14:45:25 |
vercel/next.js | 14be7505c61dc9c1631dc0b1da2d444b15ca5e82 | 541902e380dbe79cfa3fa16b0faf31e1df02dc3c | Revert "Fix tracing of server actions imported by client components (#78968) (#82161)
It seems these additional fs operations/transforms on client components
while tracing dependencies is causing a big perf hit which is not worth
the edge case of catching fs dependencies in server actions from client
components.
A wo... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -2036,7 +2036,6 @@ export default async function getBaseWebpackConfig(\n appDirEnabled: hasAppDir,\n traceIgnores: [],\n compilerType,\n- swcLoaderConfig: swcDefaultLoader,\n }\n ... | 2025-07-29T17:37:17 |
facebook/react | 8a634bc1c0a3658a23f50662d1c0225ae6212720 | c80f0f022c135704e955d36516bf81d071f40ba6 | Add frozen reason for props and hook arguments
Add frozen reason for props and hook arguments
Improves the error message when mutating props or hook arguments.
Previously, this would print a generic error about mutating global variables. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/HIR.ts",
"patch": "@@ -982,6 +982,11 @@ export enum ValueReason {\n */\n Context = \"context\",\n \n+ /**\n+ * Props of a component or arguments of a hook.\n+ */\n+ ReactiveFunctionArgument = \"reactive-function-argument\",\n+\n Oth... | 2024-01-12T19:51:59 |
electron/electron | 1d20ec5b990085fb38cc0494435cd6f57e0e8b3e | 22c359ac4f2c3bfa3c0c4b03543007dc6c5942da | ci: fix @electron/github-app-auth CLI usage (#39507) | [
{
"path": ".github/workflows/branch-created.yml",
"patch": "@@ -64,7 +64,7 @@ jobs:\n env:\n RELEASE_BOARD_GH_APP_CREDS: ${{ secrets.RELEASE_BOARD_GH_APP_CREDS }}\n run: |\n- TOKEN=$(npx @electron/github-app-auth --creds=$RELEASE_BOARD_GH_APP_CREDS --org electron)\n+ ... | 2023-08-15T18:41:29 |
nodejs/node | 37834997ff16d3f9e6d654b1efd9365635d65da6 | 53cdffea20d45346d4db34c01225cd58f2d04f5e | test: reduce stack size for test-error-serdes
Hopefully reduces the run time and the likelihood of the test
failing with a flaky timeout error.
remove test-error-serdes from flaky list
move test-error-serdes to sequential
PR-URL: https://github.com/nodejs/node/pull/54840
Refs: https://github.com/nodejs/node/issues/... | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -16,9 +16,6 @@ test-worker-arraybuffer-zerofill: PASS, FLAKY\n # https://github.com/nodejs/node/issues/51862\n test-fs-read-stream-concurrent-reads: PASS, FLAKY\n \n-# https://github.com/nodejs/node/issues/52630\n-test-error-serdes: PASS, FLAKY\n-\n # ... | 2024-09-07T20:50:25 |
golang/go | fc641e7fae1b09e25402bc73660d2deea51c2ad6 | 6df855ebac86499402cfd31d92256592c3b2a233 | cmd/compile: create LSym for closures with type conversion
Follow-up to #54959 with another failing case.
The linker needs FuncInfo metadata for all inlined functions. CL 436240 explicitly creates LSym for direct closure calls to ensure we keep the FuncInfo metadata.
However, CL 436240 won't work if the direct closu... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -1117,12 +1117,18 @@ func mkinlcall(callerfn *ir.Func, n *ir.CallExpr, fn *ir.Func, bigCaller, closur\n \t\t\t// Not a standard call.\n \t\t\treturn\n \t\t}\n-\t\tif n.Fun.Op() != ir.OCLOSURE {\n-\t\t\t// Not a direct closure call.\n+\n+\t\tva... | 2025-05-15T13:53:23 |
rust-lang/rust | 2e0ff1fb1eaf7405ff19c544bf296a8e59c595ae | f0a019bf9036fa9f14e7cee662d2c01dcbc6f6d2 | Fix clippy ast utils
Co-authored-by: Michael Goulet <michael@errs.io> | [
{
"path": "src/tools/clippy/clippy_utils/src/ast_utils/mod.rs",
"patch": "@@ -819,7 +819,9 @@ pub fn eq_use_tree_kind(l: &UseTreeKind, r: &UseTreeKind) -> bool {\n pub fn eq_defaultness(l: Defaultness, r: Defaultness) -> bool {\n matches!(\n (l, r),\n- (Defaultness::Final, Defaultness::Fi... | 2026-01-28T14:45:25 |
vercel/next.js | 541902e380dbe79cfa3fa16b0faf31e1df02dc3c | e5c1dff8262b4d7dcef5bda0af9d9171196457bd | Ensure setAssetPrefix updates config instance (#82160)
This ensures we update `nextConfig.assetPrefix` instead of `renderOpts`
as we aren't relying on `renderOpts` for these values anymore.
Closes: https://github.com/vercel/next.js/issues/82150 | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -1652,7 +1652,7 @@ export default abstract class Server<\n ): Promise<void>\n \n public setAssetPrefix(prefix?: string): void {\n- this.renderOpts.assetPrefix = prefix ? prefix.replace(/\\/$/, '') : ''\n+ this.nextConfig.assetPrefix... | 2025-07-29T17:12:49 |
facebook/react | 0ac3ea471fbcb7d79bc7d36179e960c72c779e76 | 6639ed3b3a44f7736beb629144a7996145008f09 | Use getComponentNameFromType for debug info for the key warning (#27930)
If this is a client reference we shouldn't dot into it, which would
throw in the proxy.
Interestingly our client references don't really have a `name`
associated with them for debug information so a component type doesn't
show up in error l... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -1009,6 +1009,22 @@ describe('ReactFlight', () => {\n ReactNoopFlightClient.read(transport);\n });\n \n+ it('should warn in DEV a child is missing keys', () => {\n+ function ParentClient({children}) {\n+ return ... | 2024-01-11T22:24:26 |
nodejs/node | 53cdffea20d45346d4db34c01225cd58f2d04f5e | cc780ddf1e657e1f0104b7be86572f09218726d6 | esm: throw `ERR_REQUIRE_ESM` instead of `ERR_INTERNAL_ASSERTION`
PR-URL: https://github.com/nodejs/node/pull/54868
Fixes: https://github.com/nodejs/node/issues/54773
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -326,8 +326,6 @@ class ModuleLoader {\n * @returns {ModuleJobBase}\n */\n getModuleJobForRequire(specifier, parentURL, importAttributes) {\n- assert(getOptionValue('--experimental-require-module'));\n-\n const parsed = URLParse(spec... | 2024-09-11T21:48:02 |
golang/go | 6df855ebac86499402cfd31d92256592c3b2a233 | fac2ccbed320ef9fdca251d63b759b61bbc21f2a | testing: fix panic in t.Log
If a testing.TB is no longer on the stack, t.Log would panic because
its outputWriter is nil. Check for nil and drop the write, which
is the previous behavior.
Change-Id: Ifde97997a3aa26ae604ac9c218588c1980110cbf
Reviewed-on: https://go-review.googlesource.com/c/go/+/673215
LUCI-TryBot-Res... | [
{
"path": "src/testing/sub_test.go",
"patch": "@@ -280,7 +280,6 @@ func TestTRun(t *T) {\n \t\t\t\t\tt.Run(\"c\", func(t *T) {\n \t\t\t\t\t\tt.Parallel()\n \t\t\t\t\t})\n-\n \t\t\t\t})\n \t\t\t})\n \t\t},\n@@ -305,7 +304,6 @@ func TestTRun(t *T) {\n \t\t\t\t\t\t\t\t\ttime.Sleep(time.Nanosecond)\n \t\t\t\t\t... | 2025-05-15T15:16:34 |
rust-lang/rust | f0e1c8f416f45225db02355fb4969c6e3ade9ddb | 3572d482a0ddd0b5bd91deb18e618ff254dee3cb | Fix rustfmt
Co-authored-by: Michael Goulet <michael@errs.io> | [
{
"path": "src/tools/rustfmt/src/items.rs",
"patch": "@@ -319,12 +319,13 @@ impl<'a> FnSig<'a> {\n method_sig: &'a ast::FnSig,\n generics: &'a ast::Generics,\n visibility: &'a ast::Visibility,\n+ defaultness: ast::Defaultness,\n ) -> FnSig<'a> {\n FnSig {\n ... | 2026-01-28T14:12:13 |
vercel/next.js | 5321ba84c30aac57c55e39ed13b2f6356db20cd7 | c9e5069ee1924b3ddd2282b065e64092751e1b88 | [segment explorer] normalize path when running inside monorepo (#82146)
When you running `pnpm next <project path>` from the monorepo root with turbopack and the `<project path>` is not same as your root directory, this lead the unrelated paths outside of the next.js project are also included into the segment explorer... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -4145,9 +4145,9 @@ const getGlobalErrorStyles = async (\n }\n if (ctx.renderOpts.dev) {\n const dir =\n- process.env.NEXT_RUNTIME === 'edge'\n- ? process.env.__NEXT_EDGE_PROJECT_DIR!\n- : ctx.renderOpts.d... | 2025-07-29T16:13:31 |
facebook/react | c80f0f022c135704e955d36516bf81d071f40ba6 | 7ca3b004aee982ee637dc06ccb5fe890c9f6e5ba | useContext returns frozen values
This was an oversight in the original definition of useContext (oops my bad).
Context values are owned by React and should not be modified. I found this
because some cases of existing useMemo were not preserved (tested via the
validatePreserveExistingManualMemo flag) due to functio... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/Globals.ts",
"patch": "@@ -5,7 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { Effect, ValueKind } from \"./HIR\";\n+import { Effect, ValueKind, ValueReason } from \"./HIR\";\n import {\n BUILTIN_SHAPES... | 2024-01-11T00:12:17 |
electron/electron | c3036d455741b693b6cc70b2fd037af9401d97e9 | bee5d94886c91f7d5ca3e1cab9a4d2cdfac8d268 | chore: bump chromium to 117.0.5938.0 (main) (#39375)
* chore: bump chromium in DEPS to 117.0.5929.0
* chore: bump chromium in DEPS to 117.0.5931.0
* chore: bump chromium in DEPS to 117.0.5932.0
* chore: update patches
* 4728317: Prevent PrintRenderFrameHelper from printing when already printing
| https:/... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -1432,6 +1432,8 @@ commands:\n - src/build/linux\n - src/buildtools/third_party/libc++\n - src/buildtools/third_party/libc++abi\n+ - src/third_party/libc++\n+ ... | 2023-08-15T15:49:41 |
nodejs/node | 123bb4cb22e739a039392d83d512601982f40fc0 | 94a457a1ebebbe854ca7a8d9b430a61b04439638 | test_runner: improve code coverage cleanup
The test runner's code coverage leaves old coverage data in the
temp directory. This commit updates the cleanup logic to:
- Stop code collection. Otherwise V8 would write collection data
again when the process exits.
- Remove the temp directory containing the coverage data... | [
{
"path": "lib/internal/test_runner/coverage.js",
"patch": "@@ -23,6 +23,7 @@ const {\n mkdtempSync,\n opendirSync,\n readFileSync,\n+ rmSync,\n } = require('fs');\n const { setupCoverageHooks } = require('internal/util');\n const { tmpdir } = require('os');\n@@ -272,28 +273,35 @@ class TestCoverage ... | 2024-09-11T02:50:28 |
golang/go | 01e0e8b6b397f2e775d9ccbfcde104d025464382 | b338f6bfa68da6fc8dfb7a38a975337e659424dc | runtime/pprof: include PCs for deduplication in TestMutexBlockFullAggregation
TestMutexBlockFullAggregation aggregates stacks by function, file, and
line number. But there can be multiple function calls on the same line,
giving us different sequences of PCs. This causes the test to spuriously
fail in some cases. Inclu... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -2632,7 +2632,7 @@ func produceProfileEvents(t *testing.T, depth int) {\n \tgoroutineDeep(t, depth-4) // -4 for produceProfileEvents, **, chanrecv1, chanrev, gopark\n }\n \n-func getProfileStacks(collect func([]runtime.BlockProfileRecord) (int, bool)... | 2025-05-15T11:01:14 |
facebook/react | 9c08b96a788196e6ed42c9e6c934b0296a8bcd99 | 31603f19d7114b751e89846d6eec73a8fbcdae71 | Bump follow-redirects from 1.7.0 to 1.15.4 (#27909)
Bumps
[follow-redirects](https://github.com/follow-redirects/follow-redirects)
from 1.7.0 to 1.15.4.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/follow-redirects/follow-redirects/commit/65858205e59f1e23c9bf173348a7a7cbb8ac47f5"><c... | [
{
"path": "yarn.lock",
"patch": "@@ -6082,13 +6082,6 @@ debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:\n dependencies:\n ms \"^2.1.1\"\n \n-debug@^3.2.6:\n- version \"3.2.6\"\n- resolved \"https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b\"\n- integri... | 2024-01-09T17:05:06 |
vercel/next.js | c9e5069ee1924b3ddd2282b065e64092751e1b88 | 8d937e712bccf79fe25a7c7aad05d39bf81b3c45 | Fix i18n fallback: false collision (#82136)
This fixes a case with i18n in pages router with deeply nested mixed
`fallback: false` and `fallback: 'blocking'` routes where the internal
`NoFallbackError` would be bubbled outside of the server handler causing
the invariant to leak instead of rendering the 404 page like e... | [
{
"path": "packages/next/src/server/lib/i18n-provider.ts",
"patch": "@@ -118,8 +118,8 @@ export class I18NProvider {\n // query and strip it from the pathname.\n if (analysis.detectedLocale) {\n if (analysis.detectedLocale !== detectedLocale) {\n- throw new Error(\n- ... | 2025-07-29T15:54:13 |
electron/electron | 127584dc377e19c4605a9be51a8e262f9e1a2fdf | 8e3dcc8b179c0cd38dbd367b123e31af0ba3cfb9 | feat: add a 'title' parameter to `openDevTools()` (#39047)
* [Feature Request]: Add a parameter to openDevTools() that sets the DevTools window title bar
* all titles->title
* add GetDevToolsTitle(),update docs
* fix:lint error
* fix:lint error
* add setDevToolTitle
* lint errror
* lint errror
... | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -1777,6 +1777,7 @@ app.whenReady().then(() => {\n In `undocked` mode it's possible to dock back. In `detach` mode it's not.\n * `activate` boolean (optional) - Whether to bring the opened devtools window\n to the foreground. The default is `true`.... | 2023-08-15T05:32:53 |
nodejs/node | 2ef33af16ebc5da9bd1b7261ee88add0ae9a835a | 5c8d0ebf305bc4bc5a5adc293977389df4d5b222 | esm: fix support for `URL` instances in `import.meta.resolve`
PR-URL: https://github.com/nodejs/node/pull/54690
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: James M... | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -512,6 +512,7 @@ class ModuleLoader {\n * @returns {{ format: string, url: URL['href'] }}\n */\n resolve(originalSpecifier, parentURL, importAttributes) {\n+ originalSpecifier = `${originalSpecifier}`;\n if (this.#customizations) {\... | 2024-09-09T23:00:33 |
golang/go | b338f6bfa68da6fc8dfb7a38a975337e659424dc | 8105ea53c3d17546a35709d51e6e0993b1d0c261 | cmd/link: fix outdated output mmap check
Outbuf.View used to perform a mmap check by default
and return an error if the check failed,
this behavior has been changed so that now
the View never returns any error,
so the usage needs to be modified accordingly.
Change-Id: I76ffcda5476847f6fed59856a5a5161734f47562
GitHub-... | [
{
"path": "src/cmd/link/internal/ld/asmb.go",
"patch": "@@ -195,10 +195,7 @@ func relocSectFn(ctxt *Link, relocSect func(*Link, *OutBuf, *sym.Section, []load\n \t\tfn = func(ctxt *Link, sect *sym.Section, syms []loader.Sym) {\n \t\t\twg.Add(1)\n \t\t\tsem <- 1\n-\t\t\tout, err := ctxt.Out.View(sect.Reloff)\... | 2025-05-15T10:50:40 |
facebook/react | 31603f19d7114b751e89846d6eec73a8fbcdae71 | 531c7ad21e8d48badab910deda6154e3d3977d91 | Bump follow-redirects from 1.14.0 to 1.15.4 in /fixtures/concurrent/time-slicing (#27907)
Bumps
[follow-redirects](https://github.com/follow-redirects/follow-redirects)
from 1.14.0 to 1.15.4.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/follow-redirects/follow-redirects/commit/65858... | [
{
"path": "fixtures/concurrent/time-slicing/yarn.lock",
"patch": "@@ -3372,9 +3372,9 @@ flatten@^1.0.2:\n integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==\n \n follow-redirects@^1.0.0:\n- version \"1.14.0\"\n- resolved \"https://registry.yarnpkg.c... | 2024-01-09T16:05:08 |
vercel/next.js | 9484919a6278d03174cf3f675711e6e3afc0f487 | 0bcb25fcdb331320806361d568813c74cc1b5718 | [CacheComponents] Use fallback params when validating dynamic routes in dev (#82069)
When validating a dynamic route in dev with Cache Components we must not
use more params than would be know at build time because we want to
ensure dev acts as an appropriate debug environment for build validation
issues. Any time a v... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -195,6 +195,7 @@ import {\n import { isReactLargeShellError } from './react-large-shell-error'\n import type { GlobalErrorComponent } from '../../client/components/builtin/global-error'\n import { normalizeConventionFilePath } from... | 2025-07-28T23:13:20 |
electron/electron | cf658b700d6108847ce62e5e4779bec298ce2d12 | 08bbff5361defb863409efbdbb16479e93f5981f | fix: use nested run loop in clipboard.readImage (#39466) | [
{
"path": "shell/common/api/electron_api_clipboard.cc",
"patch": "@@ -9,6 +9,7 @@\n #include \"base/containers/contains.h\"\n #include \"base/run_loop.h\"\n #include \"base/strings/utf_string_conversions.h\"\n+#include \"shell/browser/browser.h\"\n #include \"shell/common/gin_converters/image_converter.h\"\... | 2023-08-14T08:35:37 |
nodejs/node | c3a7b29e56a5ada6327ebb622ba746d022685742 | 2ef4b15604082abfd7aa26a4619a46802258ff3c | tls: add `allowPartialTrustChain` flag
This commit exposes the `X509_V_FLAG_PARTIAL_CHAIN` OpenSSL flag to
users. This is behavior that has been requested repeatedly in the
Github issues, and allows aligning behavior with other TLS libraries
and commonly used applications (e.g. `curl`).
As a drive-by, simplify the `S... | [
{
"path": "doc/api/tls.md",
"patch": "@@ -1856,6 +1856,9 @@ argument.\n <!-- YAML\n added: v0.11.13\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/54790\n+ description: The `allowPartialTrustChain` option has been added.\n - version:\n - v22.4.0\n - v20.16... | 2024-09-05T14:31:24 |
golang/go | 8105ea53c3d17546a35709d51e6e0993b1d0c261 | bb0c14b895d90bb5941e0463ba6c3564fc504e4f | net: avoid windows hang in TestCloseWrite
On Windows, reading from a socket at the same time as the other
end is closing it will occasionally hang. This is a Windows issue, not
a Go issue, similar to what happens in macOS (see #49352).
Work around this condition by adding a brief sleep before the read.
Fixes #73140.... | [
{
"path": "src/net/net_test.go",
"patch": "@@ -98,12 +98,12 @@ func TestCloseWrite(t *testing.T) {\n \t\t\t\t}\n \n \t\t\t\t// Workaround for https://go.dev/issue/49352.\n-\t\t\t\t// On arm64 macOS (current as of macOS 12.4),\n+\t\t\t\t// On Windows and arm64 macOS (current as of macOS 12.4),\n \t\t\t\t// r... | 2025-05-13T12:28:01 |
facebook/react | 531c7ad21e8d48badab910deda6154e3d3977d91 | f9dddcbbb1c0b73f974e78b9488927b778630682 | Bump follow-redirects from 1.13.3 to 1.15.4 in /fixtures/ssr (#27906)
Bumps
[follow-redirects](https://github.com/follow-redirects/follow-redirects)
from 1.13.3 to 1.15.4.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/follow-redirects/follow-redirects/commit/65858205e59f1e23c9bf17334... | [
{
"path": "fixtures/ssr/yarn.lock",
"patch": "@@ -2771,9 +2771,9 @@ flatten@^1.0.2:\n integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==\n \n follow-redirects@^1.0.0:\n- version \"1.13.3\"\n- resolved \"https://registry.yarnpkg.com/follow-redirects/... | 2024-01-09T16:04:58 |
vercel/next.js | 0bcb25fcdb331320806361d568813c74cc1b5718 | 08cdc9ad5a9bf678cb2e40d48a891de0d0522c4f | [turbopack] Improve our `const` compatible hash routine performance (#82088)
The explicit operators can apparently not be folded by the compiler.
This is the const compatible way to take a slice and convert a slice to an array... sigh.
https://godbolt.org/z/Wedn7hWvb shows the 3 possible implementations.
The `std`... | [
{
"path": "turbopack/crates/turbo-rcstr/src/dynamic.rs",
"patch": "@@ -172,24 +172,31 @@ const fn multiply_mix(x: u64, y: u64) -> u64 {\n }\n }\n \n-// Const compatible helper function to read a u64 from a byte array at a given offset\n-const fn read_u64_le(bytes: &[u8], offset: usize) -> u64 {\n- (b... | 2025-07-28T22:23:43 |
electron/electron | f16dffccd01f5d65f55d8ab464cdd167f5b326e1 | 255064659fb22d144c72fe79eb31c0a13c846bd6 | ci: fixup known hosts for linux publish (#39437)
* ci: fixup known hosts for linux publish
* build: use 2023 known hosts
* build: use rebuilt docker image
* Revert "build: use rebuilt docker image"
This reverts commit f9506a9cc04c1fa2ecf26436372f1bb2a44937a5.
---------
Co-authored-by: Samuel Attard <... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -1568,6 +1568,7 @@ commands:\n - *step-minimize-workspace-size-from-checkout\n - *step-fix-sync\n - *step-setup-env-for-build\n+ - *step-fix-known-hosts-linux\n - *step-setup-goma-for-build\n - *step-wait-for-goma\n... | 2023-08-10T16:40:58 |
nodejs/node | 79a33a7433b55de4f5e749524b9a22f7b72b5f4e | 9404d3aaaf0a8264ee08ba169ec24685bf8d487d | build,win: enable clang-cl compilation
This uses the backported ICU fix needed for compiling with ClangCL.
Refs: https://github.com/nodejs/node/pull/54502
Fixes: https://github.com/nodejs/node/issues/34201
PR-URL: https://github.com/nodejs/node/pull/54655
Refs: https://github.com/nodejs/node/issues/52809
Reviewed-By:... | [
{
"path": "tools/icu/icu-generic.gyp",
"patch": "@@ -139,20 +139,43 @@\n # full data - just build the full data file, then we are done.\n 'sources': [ '<(SHARED_INTERMEDIATE_DIR)/icudt<(icu_ver_major)<(icu_endianness)_dat.<(icu_asm_ext)' ],\n 'dependencies': [ 'genc... | 2024-09-09T10:26:00 |
golang/go | bb0c14b895d90bb5941e0463ba6c3564fc504e4f | 3be537e663c39ead4c82ca4047d248ff66e132c3 | os: don't fallback to the Stat slow path if file doesn't exist on Windows
os.Stat and os.Lstat first try stating the file without opening it. If
that fails, then they open the file and try again, operations that tends
to be slow. There is no point in trying the slow path if the file
doesn't exist, we should just retur... | [
{
"path": "src/os/stat_test.go",
"patch": "@@ -361,3 +361,18 @@ func TestClosedStat(t *testing.T) {\n \t\tt.Errorf(\"error from Stat on closed file did not match ErrClosed: %q, type %T\", err, err)\n \t}\n }\n+\n+func TestStatNotExist(t *testing.T) {\n+\tt.Parallel()\n+\tname := filepath.Join(t.TempDir(), \... | 2025-05-13T15:26:06 |
electron/electron | 1ce2fdd63d2cff52adbc18fdef6830a0f31e765f | c4d417b6f69624828b4a109312aa718c7b54c238 | docs: fix take-screenshot fiddle to use desktopCapturer in main.js (#39420) | [
{
"path": "docs/fiddles/media/screenshot/take-screenshot/main.js",
"patch": "@@ -1,11 +1,15 @@\n-const { BrowserWindow, app, screen, ipcMain } = require('electron')\n+const { BrowserWindow, app, screen, ipcMain, desktopCapturer } = require('electron')\n \n let mainWindow = null\n \n ipcMain.handle('get-scre... | 2023-08-10T08:53:23 |
nodejs/node | e1e312d7f0c45f5e280c0b34ecf7e506bdcaba28 | 533853337381cd73104c04c2f404e8960061dc21 | test: fix Windows async-context-frame memory failure
PR-URL: https://github.com/nodejs/node/pull/54823
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": "test/parallel/test-async-context-frame.mjs",
"patch": "@@ -42,7 +42,8 @@ const tests = testSets.reduce((m, v) => {\n }, []);\n \n describe('AsyncContextFrame', {\n- concurrency: tests.length\n+ // TODO(qard): I think high concurrency causes memory problems on Windows\n+ // concurrency: tests.l... | 2024-09-08T14:21:18 |
golang/go | 3be537e663c39ead4c82ca4047d248ff66e132c3 | a197a471b9c67af4881e0d9c48e4bd3cff4992c2 | net: use closesocket when closing socket os.File's on Windows
The WSASocket documentation states that the returned socket must be
closed by calling closesocket instead of CloseHandle. The different
File methods on the net package return an os.File that is not aware
that it should use closesocket. Ideally, os.NewFile s... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -318,7 +318,7 @@ type FD struct {\n \t// message based socket connection.\n \tZeroReadIsEOF bool\n \n-\t// Whether this is a file rather than a network socket.\n+\t// Whether the handle is owned by os.File.\n \tisFile bool\n \n \t// The kind of this ... | 2025-05-13T11:31:22 |
electron/electron | a0effaf9b85b8efbec819d3d5a18851a3a9a3e5c | d9329042e2cb68db888d4acf36a87da5ab6e99d2 | fix: promise resolved to early when browser initiated in-page navigation (#39260) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -446,6 +446,7 @@ WebContents.prototype.loadURL = function (url, options) {\n };\n \n let navigationStarted = false;\n+ let browserInitiatedInPageNavigation = false;\n const navigationListener = (event: Electron.Event, url: string, isSa... | 2023-08-09T14:06:39 |
nodejs/node | 67357ba8ff3d71f837a100aacd76e5ed3b15592b | 3d410f863508107c9e1d61cb06db13b7d6f1789d | doc: add `ERR_INVALID_ADDRESS` to `errors.md`
PR-URL: https://github.com/nodejs/node/pull/54661
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1855,6 +1855,12 @@ the worker thread.\n There was a bug in Node.js or incorrect usage of Node.js internals.\n To fix the error, open an issue at <https://github.com/nodejs/node/issues>.\n \n+<a id=\"ERR_INVALID_ADDRESS\"></a>\n+\n+### `ERR_INVALID_ADDRESS`\n+\n+T... | 2024-09-07T23:16:40 |
golang/go | c31a5c571f32f350a0a1b30f2b0e85576096e14c | de86d02c32f6690391ed79b99d0f763bb06606d5 | cmd/compile: fold negation into addition/subtraction on loong64
This change also avoid double negation, and add loong64 codegen for arithmetic tests.
Reduce the number of go toolchain instructions on loong64 as follows.
file before after Δ %
addr2line 279972 279896 -76 -0.0271%
as... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules",
"patch": "@@ -776,12 +776,22 @@\n \n // generic simplifications\n (ADDV x (NEGV y)) => (SUBV x y)\n+(SUBV x (NEGV y)) => (ADDV x y)\n (SUBV x x) => (MOVVconst [0])\n (SUBV (MOVVconst [0]) x) => (NEGV x)\n (AND x x) => x\n (OR x x) => x\n (XOR x x... | 2025-05-14T06:35:41 |
facebook/react | f9dddcbbb1c0b73f974e78b9488927b778630682 | f1039be4a48384e7e4b0a87d4d92c48e900053b9 | [Fizz] Fix Client Render after Postpone (#27905)
If we end up client rendering a boundary due to an error after we have
already injected a postponed hole in that boundary we'll end up trying
to target a missing segment. Since we never insert segments for an
already errored boundary into the HTML. Normally an errore... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -7178,6 +7178,141 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ // @gate enablePostpone\n+ it('can client render a boundary after having already postponed', async () => {\n+ let prerendering = true;... | 2024-01-09T04:52:33 |
vercel/next.js | 08cdc9ad5a9bf678cb2e40d48a891de0d0522c4f | c49b7b11e85d64e5cefa79dc3372437fab451e4f | [turbopack] Documentation fixes for rcstr! and a tiny improvement to `hash` (#82084)
Fix safety comment and hash implementation in turbo-rcstr
Noticed this while porting https://github.com/vercel/next.js/pull/81994 to swc | [
{
"path": "turbopack/crates/turbo-rcstr/src/dynamic.rs",
"patch": "@@ -93,7 +93,7 @@ pub(crate) fn new_static_atom(string: &'static PrehashedString) -> RcStr {\n // Tag it as a static pointer\n entry = ((entry as usize) | STATIC_TAG as usize) as *mut PrehashedString;\n let ptr: NonNull<Prehashed... | 2025-07-28T22:19:04 |
electron/electron | d9329042e2cb68db888d4acf36a87da5ab6e99d2 | 0425454687715f89a1a13f0b84a9b13fbd9bc722 | feat: add support for `chrome.tabs.query` (#39330)
* feat: add support for tabs.query
* fix: scope to webContents in current session
* test: add test for session behavior | [
{
"path": "docs/api/extensions.md",
"patch": "@@ -91,8 +91,9 @@ The following events of `chrome.runtime` are supported:\n \n ### `chrome.storage`\n \n-Only `chrome.storage.local` is supported; `chrome.storage.sync` and\n-`chrome.storage.managed` are not.\n+The following methods of `chrome.storage` are suppo... | 2023-08-09T12:47:19 |
nodejs/node | eab9729d166311d0e3da512bfb3da0f8ae245160 | 46c6f8ce26ce1223b0e8e1442d7193529932481d | src: fix unhandled error in structuredClone
Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/54764
Fixes: https://github.com/nodejs/node/issues/54602
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/node_messaging.cc",
"patch": "@@ -567,7 +567,9 @@ Maybe<bool> Message::Serialize(Environment* env,\n if (host_object &&\n host_object->GetTransferMode() == TransferMode::kTransferable) {\n delegate.AddHostObject(host_object);\n- continue;\n+ } else {\n+ ThrowDat... | 2024-09-07T23:05:00 |
facebook/react | f1039be4a48384e7e4b0a87d4d92c48e900053b9 | 1d5667a1273386f84e416059af7b6aba069e068e | Fix: useDeferredValue initialValue suspends forever without switching to final (#27888)
Fixes a bug in the experimental `initialValue` option for
`useDeferredValue` (added in #27500).
If rendering the `initialValue` causes the tree to suspend, React should
skip it and switch to rendering the final value instead. ... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzDeferredValue-test.js",
"patch": "@@ -85,6 +85,38 @@ describe('ReactDOMFizzForm', () => {\n expect(container.textContent).toEqual('Final');\n });\n \n+ // @gate enableUseDeferredValueInitialArg\n+ // @gate enablePostpone\n+ it(\n+ 'if initi... | 2024-01-08T04:17:20 |
golang/go | ac341b8e6bc1eb99ddd62c3dea293e41bc582c10 | 12e11e75235a7df2f118becac997a0aca3bb73b0 | cmd/go/internal/pkg: fail on bad filenames
Unhidden filenames with forbidden characters in subdirectories now
correctly fail the build instead of silently being skipped.
Previously this behavior would only trigger on files in the root of
the embedded directory.
Fixes #54003
Change-Id: I52967d90d6b7929e4ae474b78d3f887... | [
{
"path": "src/cmd/go/internal/load/pkg.go",
"patch": "@@ -2227,12 +2227,20 @@ func resolveEmbed(pkgdir string, patterns []string) (files []string, pmap map[st\n \t\t\t\t\trel := filepath.ToSlash(str.TrimFilePathPrefix(path, pkgdir))\n \t\t\t\t\tname := d.Name()\n \t\t\t\t\tif path != file && (isBadEmbedNam... | 2025-05-06T19:16:03 |
vercel/next.js | c49b7b11e85d64e5cefa79dc3372437fab451e4f | 5c25087d57a919f3eb363f21cf4235918fd76167 | fix(next/image): improve and simplify detect-content-type (#82118)
Add support for detecting more src image formats via magic number. The
src image formats are handled as follows:
- `image/jxl` - serve as is (since safari can render it)
- `image/heic` - serve as is (since safari can render it)
- `image/jp2` - serve a... | [
{
"path": "packages/next/src/server/image-optimizer.ts",
"patch": "@@ -36,15 +36,19 @@ const AVIF = 'image/avif'\n const WEBP = 'image/webp'\n const PNG = 'image/png'\n const JPEG = 'image/jpeg'\n+const JXL = 'image/jxl'\n+const JP2 = 'image/jp2'\n+const HEIC = 'image/heic'\n const GIF = 'image/gif'\n const... | 2025-07-28T20:20:55 |
electron/electron | d24d8f1f78f6843f3983613ab833be78dcf686f2 | ab08803959f363cc4f23435d263baaab95529ea7 | fix: avoid package.json check on built-in modules (#39418) | [
{
"path": "patches/node/fix_do_not_resolve_electron_entrypoints.patch",
"patch": "@@ -6,19 +6,42 @@ Subject: fix: do not resolve electron entrypoints\n This wastes fs cycles and can result in strange behavior if this path actually exists on disk\n \n diff --git a/lib/internal/modules/run_main.js b/lib/inter... | 2023-08-09T07:32:00 |
facebook/react | bd37fbe06acca8e11a00ea48752fb5e86146f42f | bf859705b55a8ccaedbed8546cd4d9c6c003bf62 | [wip] Fix phi inference, expose InferMutableRange issue
> Update: this is now passing all tests. The approach is likely wrong, and even
if it's fine it needs some cleanup. Putting up for review as folks (esp
@gsathya) have time.
## Background
InferTypes was intended to infer types for phi identifiers, but by ac... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/AlignReactiveScopesToBlockScopes.ts",
"patch": "@@ -10,8 +10,10 @@ import {\n Place,\n ReactiveBlock,\n ReactiveFunction,\n+ ReactiveInstruction,\n ReactiveScope,\n ScopeId,\n+ makeInstructionId,\n } from \"../HIR/HIR\";\n... | 2024-01-02T23:31:57 |
nodejs/node | 38974a2eb3609cac6417d15ada264f87a0ffc940 | 8882a21b04ceba1030e961aedf009e2d2abec6b4 | test: fix volatile for CauseSegfault with clang
PR-URL: https://github.com/nodejs/node/pull/54325
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/node_process_methods.cc",
"patch": "@@ -73,7 +73,7 @@ static void Abort(const FunctionCallbackInfo<Value>& args) {\n // For internal testing only, not exposed to userland.\n static void CauseSegfault(const FunctionCallbackInfo<Value>& args) {\n // This should crash hard all platforms.\n- v... | 2024-09-07T22:29:24 |
golang/go | 12e11e75235a7df2f118becac997a0aca3bb73b0 | a24f4db2a2bd3e897d466a11d269ac7e618a6f8a | cmd/go: fix not print GCCGO when it's not the default
Fixes #69994
Change-Id: I2a23e5998b7421fd5ae0fdb68303d3244361b341
Reviewed-on: https://go-review.googlesource.com/c/go/+/671635
Reviewed-by: Michael Matloob <matloob@golang.org>
Reviewed-by: Michael Matloob <matloob@google.com>
Reviewed-by: Sean Liao <sean@liao.de... | [
{
"path": "src/cmd/go/internal/envcmd/env.go",
"patch": "@@ -142,7 +142,7 @@ func MkEnv() []cfg.EnvVar {\n \tif work.GccgoBin != \"\" {\n \t\tenv = append(env, cfg.EnvVar{Name: \"GCCGO\", Value: work.GccgoBin, Changed: true})\n \t} else {\n-\t\tenv = append(env, cfg.EnvVar{Name: \"GCCGO\", Value: work.Gccgo... | 2025-05-10T17:09:16 |
vercel/next.js | 5c25087d57a919f3eb363f21cf4235918fd76167 | 92d1f0d915b4ea2f97dcace7133f1eaacc3db616 | Fix validateRSCRequestHeaders incorrect redirect (#82119)
Found during dogfooding on Vercel that sometimes the RSC validation
fails incorrectly. The root cause was that headers like
`Next-Router-Prefetch` were absent from the header and transferred to
request meta. Eventually we should improve how we retrieve these fi... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -2013,9 +2013,18 @@ export default abstract class Server<\n isRSCRequest\n ) {\n const headers = req.headers\n+\n+ const isPrefetchRSCRequest =\n+ headers[NEXT_ROUTER_PREFETCH_HEADER.toLowerCase()] ||\n+ get... | 2025-07-28T19:18:20 |
facebook/react | 45d61cf7effdba6bbd9835bb427c99c95beb7e17 | c5b9375767e2c4102d7e5559d383523736f1c902 | [flow] upgrade to 0.225.1 (#27871)
This Flow upgrade includes 2 fixes:
- Remove `React$StatelessFunctionalComponent` as that was replaced by
just `React$AbstractComponent` as Flow doesn't make any guarantees, see
the Flow change here:
https://github.com/facebook/flow/commit/521317c48f44ffb5eac072a7b2548a72b0745095... | [
{
"path": ".eslintrc.js",
"patch": "@@ -504,7 +504,6 @@ module.exports = {\n React$Node: 'readonly',\n React$Portal: 'readonly',\n React$Ref: 'readonly',\n- React$StatelessFunctionalComponent: 'readonly',\n ReadableStreamController: 'readonly',\n RequestInfo: 'readonly',\n Request... | 2024-01-02T19:39:14 |
nodejs/node | 17b49bd7d370b9973eeebe7ef87c6242c6ce42d4 | 6c85d40593735a1dd4186a27425a091ed0788b9c | sqlite: fix segfault in expandedSQL
The call to sqlite3_expanded_sql() may return NULL depending on various
factors. Handle this case instead of running into a segmentation fault.
PR-URL: https://github.com/nodejs/node/pull/54687
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonma... | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -52,18 +52,23 @@ using v8::Value;\n } \\\n } while (0)\n \n-inline Local<Value> CreateSQLiteError(Isolate* isolate, sqlite3* db) {\n- int errcode = sqlite3_extended_errcode(db);\n- c... | 2024-09-07T09:20:45 |
vercel/next.js | 6b12c60c61ee80cb0443ccd20de82ca9b4422ddd | 742a2c78dfe7c90f1dccc3608933b28e64cd0249 | fix(next/image): fix image-optimizer.ts headers (#82114)
The headers were forwarded to the serverless function for "internal"
images but not "external" images.
This changes the behavior to be the same for both such that neither
receive headers. | [
{
"path": "packages/next/src/server/image-optimizer.ts",
"patch": "@@ -634,7 +634,6 @@ export async function fetchInternalImage(\n const mocked = createRequestResponseMocks({\n url: href,\n method: _req.method || 'GET',\n- headers: _req.headers,\n socket: _req.socket,\n })\n "... | 2025-07-28T13:06:33 |
electron/electron | ab08803959f363cc4f23435d263baaab95529ea7 | 5e59ddca1ab75e6092737b4bcd09c099eb25fd85 | chore: bump node to v18.17.0 (main) (#39154)
* chore: bump node in DEPS to v18.17.0
* chore: update build_modify_js2c_py_to_allow_injection_of_original-fs_and_custom_embedder_js.patch
Xref: https://github.com/nodejs/node/pull/46930
manually sync patch to minor upstream code shear
* chore: update build_ensu... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '117.0.5921.0',\n 'node_version':\n- 'v18.16.1',\n+ 'v18.17.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2023-08-08T22:52:51 |
golang/go | adcad7bea9f6933a219c7b05d8173cf8a4586092 | 14fc54fc5735163abf7694b4efa2b7998c6696e2 | os: don't follow symlinks on Windows when O_CREATE|O_EXCL
Match standard Unix behavior: Symlinks are not followed when
O_CREATE|O_EXCL is passed to open.
Thanks to Junyoung Park and Dong-uk Kim of KAIST Hacking Lab
for discovering this issue.
Fixes #73702
Fixes CVE-2025-0913
Change-Id: Ieb46a6780c5e9a6090b09cd34290... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -94,6 +94,7 @@ func Openat(dirfd syscall.Handle, name string, flag uint64, perm uint32) (_ sysc\n \tswitch {\n \tcase flag&(syscall.O_CREAT|syscall.O_EXCL) == (syscall.O_CREAT | syscall.O_EXCL):\n \t\tdisposition = FILE_CREATE\n+\t\toption... | 2025-05-13T22:35:19 |
facebook/react | fcc2182641b628cd6fcf46d2ea59c2cc05f7ddb8 | a753a326ad77145e4d8eb6a44e40758d82869669 | Handle scopes with only early return and no decls/deps/reassigns
Fixes the case from the previous PR by using a different sentinel for
uninitialized cache values and early returns. I confirmed with console.log that
the reactive scope for `x` only evaluates on the first execution, after which we
figure out that we ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -42,6 +42,9 @@ import { buildReactiveFunction } from \"./BuildReactiveFunction\";\n import { SINGLE_CHILD_FBT_TAGS } from \"./MemoizeFbtOperandsInSameScope\";\n import { ReactiveFunctionVisito... | 2023-12-20T21:52:42 |
electron/electron | dcf1c65426a88d55a626ace08b00f2b9a631d10f | 24c9cbcc0a6feaf45de70233a75fb7c2bdc69149 | chore: fix ipcRenderer.sendTo deprecation warning (#39342) | [
{
"path": "lib/renderer/api/ipc-renderer.ts",
"patch": "@@ -18,8 +18,9 @@ ipcRenderer.sendToHost = function (channel, ...args) {\n return ipc.sendToHost(channel, args);\n };\n \n+const sendToDeprecated = deprecate.warnOnce('ipcRenderer.sendTo');\n ipcRenderer.sendTo = function (webContentsId, channel, ...... | 2023-08-08T11:49:56 |
nodejs/node | 6c85d40593735a1dd4186a27425a091ed0788b9c | dcc2ed944f641004c0339bf76db58ccfefedd138 | esm: use Undici/`fetch` `data:` URL parser
Fixes: https://github.com/nodejs/node/issues/53775
PR-URL: https://github.com/nodejs/node/pull/54748
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/data_url.js",
"patch": "@@ -0,0 +1,352 @@\n+'use strict';\n+\n+const {\n+ RegExpPrototypeExec,\n+ RegExpPrototypeSymbolReplace,\n+ StringFromCharCodeApply,\n+ StringPrototypeCharCodeAt,\n+ StringPrototypeIndexOf,\n+ StringPrototypeSlice,\n+ TypedArrayPrototypeSubarray,\n+ Uin... | 2024-09-07T08:22:03 |
vercel/next.js | 29ae22be86bfb2a13bc5c3f5a3d0348398615657 | 14c5d673283d19a92186459d6cfec332e19bf2d8 | fix(Rspack): use loaderContext.utils.contextify to replace ModuleFilenameHelpers.createFilename (#82104)
Co-authored-by: Sebastian Sebbie Silbermann <sebastian.silbermann@vercel.com> | [
{
"path": "packages/next/src/build/webpack/loaders/next-flight-loader/index.ts",
"patch": "@@ -1,8 +1,9 @@\n-import type {\n- javascript,\n- LoaderContext,\n- NormalModule,\n- webpack,\n+import {\n+ ModuleFilenameHelpers,\n+ type javascript,\n+ type LoaderContext,\n+ type NormalModule,\n+ type webp... | 2025-07-28T11:23:12 |
rust-lang/rust | 200968c81db4920f6d2f1546c476a00ab6ea98af | 15d02fc0d71f86fe09a882ed16a541b3f4de4ca0 | ci: Pin Miri to the 2026-02-11 nightly
CI is failing with:
error: failed to run custom build command for `quote v1.0.44`
Caused by:
process didn't exit successfully: `/home/runner/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/cargo-miri runner /home/runner/work/compiler-builtins/compiler-buil... | [
{
"path": "library/compiler-builtins/.github/workflows/main.yaml",
"patch": "@@ -303,7 +303,9 @@ jobs:\n steps:\n - uses: actions/checkout@v4\n - name: Install Rust (rustup)\n- run: rustup update nightly --no-self-update && rustup default nightly\n+ # FIXME(ci): not working in the 2026... | 2026-02-12T02:55:17 |
golang/go | 9856afa77042d901288845f31c79885ba68da464 | 5bbac667c5c7bd1bde1750586c92f5932134c871 | cmd/internal/script: fix copying directory when symlink fails
The change fixes `linkOrCopy` to work on systems wihtout symlinks,
when copying directories. This was originally noticed on Windows
systems when the user did not have admin privs.
Fixes #73692
Change-Id: I8ca66d65e99433ad38e70314abfabafd43794b79
Reviewed-... | [
{
"path": "src/cmd/internal/script/scripttest/setup.go",
"patch": "@@ -114,6 +114,16 @@ func linkOrCopy(t *testing.T, src, dst string) {\n \tif err == nil {\n \t\treturn\n \t}\n+\tfi, err := os.Stat(src)\n+\tif err != nil {\n+\t\tt.Fatalf(\"copying %s to %s: %v\", src, dst, err)\n+\t}\n+\tif fi.IsDir() {\n+... | 2025-05-13T16:41:36 |
facebook/react | a753a326ad77145e4d8eb6a44e40758d82869669 | ad57e661f49f1a340a437a597bef2214c017eabb | Fixture for only early return without decls/deps/reassigns | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/early-return-no-declarations-reassignments-dependencies.expect.md",
"patch": "@@ -0,0 +1,135 @@\n+\n+## Input\n+\n+```javascript\n+// @enableEarlyReturnInReactiveScopes\n+import { makeArray } from \"shared-runtime\";\n+\n... | 2023-12-20T21:52:41 |
rust-lang/rust | 461e7b14e627957a659dea69c14b17fd5c58a380 | 53e39cceb48b5e42cbde66162895b6a2148be959 | fix: properly wrap long `impl trait` function parameters
Before we weren't taking the length of `impl ` into account so the trait
thought it had more room than it actually did to format itself on a
single line. | [
{
"path": "src/types.rs",
"patch": "@@ -1016,9 +1016,14 @@ impl Rewrite for ast::Ty {\n }\n let rw = if context.config.style_edition() <= StyleEdition::Edition2021 {\n it.rewrite_result(context, shape)\n+ } else if context.config.style_editi... | 2026-02-11T02:19:55 |
electron/electron | eecfaec8c94b2490cff8ae09219d3c16ec2b4c88 | 8f4f82618c51029f91cfb6516bc9c75164bfee9a | fix: crash when closing active macOS native tab (#39394)
fix: crash when closing current active macOS native tab | [
{
"path": "shell/browser/ui/inspectable_web_contents_view_mac.mm",
"patch": "@@ -24,6 +24,7 @@\n initWithInspectableWebContentsViewMac:this]) {}\n \n InspectableWebContentsViewMac::~InspectableWebContentsViewMac() {\n+ [[NSNotificationCenter defaultCenter] removeObserver:view_];\n CloseDevTools... | 2023-08-08T08:45:03 |
vercel/next.js | 14c5d673283d19a92186459d6cfec332e19bf2d8 | c081cf7c88c25bc581e5e67baf31c9afce2b31de | docs: Update styling example links (#82111)
Fixes: https://github.com/vercel/next.js/issues/82098 | [
{
"path": "docs/01-app/02-guides/css-in-js.mdx",
"patch": "@@ -126,7 +126,7 @@ export default function RootLayout({ children }) {\n }\n ```\n \n-[View an example here](https://github.com/vercel/app-playground/tree/main/app/styling/styled-jsx).\n+[View an example here](https://github.com/vercel/next.js/tree/... | 2025-07-28T11:00:04 |
golang/go | 5bbac667c5c7bd1bde1750586c92f5932134c871 | c62099cfac6b0fd46efbdab7205bb17597096472 | runtime: increase freebsd/amd64 pointer size from 48 to 57 bits
Because freebsd is now enabling la57 by default.
Fixes #49405
Change-Id: I30f7bac8b8a9baa85e0c097e06072c19ad474e5a
Reviewed-on: https://go-review.googlesource.com/c/go/+/670715
Auto-Submit: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@... | [
{
"path": "src/runtime/tagptr_64bit.go",
"patch": "@@ -34,13 +34,16 @@ const (\n \t// We use one bit to distinguish between the two ranges.\n \taixAddrBits = 57\n \n+\t// Later versions of FreeBSD enable amd64's la57 by default.\n+\tfreebsdAmd64AddrBits = 57\n+\n \t// riscv64 SV57 mode gives 56 bits of user... | 2025-05-07T21:34:30 |
facebook/react | 4c68da2e60d2c5de46097eab914e6874806bf385 | f504eaa16ecbfc1000d9fc9fc007b2ec313f7dda | Todo for early return within reactive scopes
Adds a new compiler pass that will eventually actually handle early returns
within reactive scopes. For now it just detects them and throws a Todo error. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -49,6 +49,7 @@ import {\n mergeOverlappingReactiveScopes,\n mergeReactiveScopesThatInvalidateTogether,\n promoteUsedTemporaries,\n+ propagateEarlyReturns,\n propagateScopeDependencies,\n pruneAllReact... | 2023-12-20T21:52:37 |
rust-lang/rust | 07537b403fad8720003aab23bc763796f2a28c02 | 23e44f65aa6703c4ff7690eb3ba66ed684d1b72e | num: Move user-public float parsing items directly under core::num
Follow up to the previous commit refactoring `core::num` by moving the
user-facing error types and trait implementations back out of `imp` and
into a new module under `core::num`. | [
{
"path": "library/core/src/num/float_parse.rs",
"patch": "@@ -0,0 +1,133 @@\n+//! User-facing API for float parsing.\n+\n+use crate::error::Error;\n+use crate::fmt;\n+use crate::num::imp::dec2flt;\n+use crate::str::FromStr;\n+\n+macro_rules! from_str_float_impl {\n+ ($t:ty) => {\n+ #[stable(featu... | 2026-01-31T10:24:47 |
electron/electron | 8f4f82618c51029f91cfb6516bc9c75164bfee9a | 1548a2f9fb6d9bf9e0c4f6ace595189cf84b38e9 | fix: `removeBrowserView` draggable region removal (#39387)
fix: removeBrowserView draggable region removal
Closes https://github.com/electron/electron/issues/39377. | [
{
"path": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -780,8 +780,8 @@ void BaseWindow::RemoveBrowserView(gin::Handle<BrowserView> browser_view) {\n browser_view.ToV8());\n \n if (iter != browser_views_.end()) {\n- window_->RemoveBrowserView(browser_view->view(... | 2023-08-08T08:23:14 |
golang/go | 9e026bf9cc1dcb6ef24d26398182a22d9d6cd2d2 | c44c4de51b68a88e2b8e4a0ae102f941155522d0 | testing: add Output
Output is a method on T, B and F. It provides an io.Writer that writes
to the same test output stream as TB.Log. The new output writer is
used to refactor the implementation of Log. It maintains the formatting
provided by Log while making call site information optional.
Additionally, it provides bu... | [
{
"path": "api/next/59928.txt",
"patch": "@@ -0,0 +1,3 @@\n+pkg testing, method (*B) Output() io.Writer #59928\n+pkg testing, method (*F) Output() io.Writer #59928\n+pkg testing, method (*T) Output() io.Writer #59928",
"additions": 3,
"deletions": 0,
"language": "Plain Text"
},
{
"path":... | 2025-05-13T21:30:35 |
facebook/react | 3e00e58a6ac7f73a3660f31d3129fb06d344167e | 8b1547b671f9ea9a2db38f2404557fb59b84afc0 | fix[devtools/e2e]: add fallback for act in integration tests (#27842)
https://github.com/facebook/react/pull/27805 broke integration tests for
React DevTools with React 17, these changes introduce a fallback for
such case when `act` is not available in `react`, but available in
`react-dom`, like before. | [
{
"path": "packages/react-devtools-shared/src/__tests__/utils.js",
"patch": "@@ -19,7 +19,9 @@ export function act(\n recursivelyFlush: boolean = true,\n ): void {\n const {act: actTestRenderer} = require('react-test-renderer');\n- const actDOM = require('react').unstable_act;\n+ // Use `require('reac... | 2023-12-17T13:17:45 |
vercel/next.js | 0464eae4c948308289a333ea2e11ea4be546901a | 34233054b3812af90bda47be62b02d3f42b8cab3 | Revert "Upgrade vercel og and remove yoga type patching (#81937)" (#82066)
This reverts commit 89a8b65341af7652ea781fab35a0381ccd4daa57.
x-ref:
https://github.com/vercel/next.js/actions/runs/16532118100/job/46759737328#step:33:329
This is causing issues when deployed
```sh
[warning] Aborted(CompileError: WebAsse... | [
{
"path": "package.json",
"patch": "@@ -146,7 +146,7 @@\n \"@typescript-eslint/parser\": \"^8.36.0\",\n \"@vercel/devlow-bench\": \"workspace:*\",\n \"@vercel/fetch\": \"6.1.1\",\n- \"@vercel/og\": \"0.8.5\",\n+ \"@vercel/og\": \"0.7.2\",\n \"abort-controller\": \"3.0.0\",\n \"alex... | 2025-07-25T23:41:42 |
rust-lang/rust | 0bcec3760467995fb08e55ef6e7be697d13490a5 | 7057231bd78d6c7893f905ea1832365d4c5efe17 | Improve write! and writeln! error when called without destination | [
{
"path": "library/core/src/macros/mod.rs",
"patch": "@@ -611,6 +611,9 @@ macro_rules! write {\n ($dst:expr, $($arg:tt)*) => {\n $dst.write_fmt($crate::format_args!($($arg)*))\n };\n+ ($($arg:tt)*) => {\n+ compile_error!(\"requires a destination and format arguments, like `write!(d... | 2026-02-12T01:37:45 |
nodejs/node | c4c580bfd596a440f2de722bd32608ec8ee5c7b5 | c813de46fc17dea8eb724f115fa1860d14bba694 | test: set `test-debugger-heap-profiler` as flaky
PR-URL: https://github.com/nodejs/node/pull/54802
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com> | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -52,6 +52,8 @@ test-crypto-dh-stateless: SKIP\n test-crypto-keygen: SKIP\n # https://github.com/nodejs/node/issues/52963\n test-pipe-file-to-http: PASS, FLAKY\n+# https://github.com/nodejs/node/issues/54801\n+test-debugger-heap-profiler: PASS, FLAKY\n ... | 2024-09-06T14:40:06 |
facebook/react | 8b1547b671f9ea9a2db38f2404557fb59b84afc0 | 8b8d265bd9a4cab7bbd04a9a13950fdc946ea51c | docs: fix typo in README.md (#27841) | [
{
"path": "README.md",
"patch": "@@ -30,7 +30,7 @@ The documentation is divided into several sections:\n * [Installation](https://react.dev/learn/installation)\n * [Describing the UI](https://react.dev/learn/describing-the-ui)\n * [Adding Interactivity](https://react.dev/learn/adding-interactivity)\n-* [Man... | 2023-12-16T23:37:42 |
golang/go | 9bba799955e68972041c4f340ee4ea2d267e5c0e | 76f63ee890170f4884f4d213e8150d39d6758ad3 | crypto/x509: decouple key usage and policy validation
Disabling key usage validation (by passing ExtKeyUsageAny)
unintentionally disabled policy validation. This change decouples these
two checks, preventing the user from unintentionally disabling policy
validation.
Thanks to Krzysztof Skrzętnicki (@Tener) of Telepor... | [
{
"path": "src/crypto/x509/verify.go",
"patch": "@@ -841,31 +841,45 @@ func (c *Certificate) Verify(opts VerifyOptions) (chains [][]*Certificate, err e\n \t\t}\n \t}\n \n-\tif len(opts.KeyUsages) == 0 {\n-\t\topts.KeyUsages = []ExtKeyUsage{ExtKeyUsageServerAuth}\n+\tchains = make([][]*Certificate, 0, len(ca... | 2025-05-06T16:27:10 |
vercel/next.js | a6f10c98c379db9e5a6b8cb92879f3811fbaef7d | 261a5c3e1d41347e43973065cf3d072223e20e1c | Fix API stripping JSON incorrectly (#82061)
This ensures we don't normalize unless it's actually a `_next/data`
request.
Fixes: https://github.com/vercel/next.js/issues/81936 | [
{
"path": "packages/next/src/shared/lib/page-path/normalize-data-path.ts",
"patch": "@@ -1,7 +1,12 @@\n+import { pathHasPrefix } from '../router/utils/path-has-prefix'\n+\n /**\n * strip _next/data/<build-id>/ prefix and .json suffix\n */\n export function normalizeDataPath(pathname: string) {\n+ if (!pa... | 2025-07-25T20:30:19 |
electron/electron | 67523a47b46b21281dc32432da9ae1aaa51d1956 | 330c775252670a4e3a912d05871da1d5a3eab1e5 | fix: `chrome.tabs.update` return value (#39365)
fix: chrome.tabs.update return value | [
{
"path": "shell/browser/extensions/api/tabs/tabs_api.cc",
"patch": "@@ -57,6 +57,14 @@ void ZoomModeToZoomSettings(WebContentsZoomController::ZoomMode zoom_mode,\n break;\n }\n }\n+\n+api::tabs::MutedInfo CreateMutedInfo(content::WebContents* contents) {\n+ DCHECK(contents);\n+ api::tabs::MutedIn... | 2023-08-07T08:03:45 |
nodejs/node | f061210819669931fbb5fc96fc1a5ca175bd240f | 18101d83a158b877ac765936aba973c664130ea2 | doc: fix typo in recognizing-contributors
PR-URL: https://github.com/nodejs/node/pull/54822
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "doc/contributing/recognizing-contributors.md",
"patch": "@@ -47,7 +47,7 @@ by the Node.js social media accounts. They can request that a post highlighting\n that they are speaking at the event be amplified by the Node.js accounts by\n making a request in the #nodejs-social channel in the OpenJS F... | 2024-09-06T22:31:12 |
facebook/react | 8b8d265bd9a4cab7bbd04a9a13950fdc946ea51c | 63310df2b243b6c3b2f01e8b121e7d115e839cfb | [Flight] Wire up async_hooks in Node.js DEV for inspecting Promises (#27840)
This wires up the use of `async_hooks` in the Node build (as well as the
Edge build when a global is available) in DEV mode only. This will be
used to track debug info about what suspended during an RSC pass.
Enabled behind a flag for no... | [
{
"path": ".eslintrc.js",
"patch": "@@ -532,6 +532,7 @@ module.exports = {\n trustedTypes: 'readonly',\n IS_REACT_ACT_ENVIRONMENT: 'readonly',\n AsyncLocalStorage: 'readonly',\n+ async_hooks: 'readonly',\n globalThis: 'readonly',\n },\n };",
"additions": 1,
"deletions": 0,
"... | 2023-12-16T02:38:01 |
vercel/next.js | 1c426482c3054b998c9e11f59c2f7e43e1ef5a58 | 62856be393812274fdd110adaa5674ab82ad3180 | Adjusted the warning message to be more descriptive (#82054)
<!-- 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 Con... | [
{
"path": "packages/next/src/lib/find-root.ts",
"patch": "@@ -42,12 +42,11 @@ export function findRootDir(cwd: string) {\n \n Log.warnOnce(\n `Warning: Next.js inferred your workspace root, but it may not be correct.\\n` +\n- `We detected multiple lockfiles and selected ${lockFiles[lockFile... | 2025-07-25T15:15:46 |
golang/go | 4aeb9ba0deac4eced472a8fc7869a14fb9340d04 | a632009c4a0b0826871baae7e7ce7804b4089d93 | runtime/pprof: return errors from writing profiles
Fixes #73107
Change-Id: I41f3e1bd1fdaca2f0e94151b2320bd569e258a51
Reviewed-on: https://go-review.googlesource.com/c/go/+/671576
Reviewed-by: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Rev... | [
{
"path": "src/runtime/pprof/pprof.go",
"patch": "@@ -446,8 +446,7 @@ func printCountCycleProfile(w io.Writer, countName, cycleName string, records []\n \t\tlocs = b.appendLocsForStack(locs[:0], expandedStack[:n])\n \t\tb.pbSample(values, locs, nil)\n \t}\n-\tb.build()\n-\treturn nil\n+\treturn b.build()\n ... | 2025-05-11T20:55:57 |
electron/electron | 330c775252670a4e3a912d05871da1d5a3eab1e5 | dc707ee93835b279ff67dbd5f80ce28a4b9df3e1 | docs: fix description of pageRanges (#39378)
Co-authored-by: Alain BUFERNE <albu.consult@gmail.com> | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -1631,7 +1631,7 @@ win.webContents.print(options, (success, errorType) => {\n * `bottom` number (optional) - Bottom margin in inches. Defaults to 1cm (~0.4 inches).\n * `left` number (optional) - Left margin in inches. Defaults to 1cm (~0.4 inches).... | 2023-08-07T07:56:36 |
facebook/react | 63310df2b243b6c3b2f01e8b121e7d115e839cfb | 493610f299ddf7d06e147e60dc4f2b97482982d2 | [Fizz] Add Component Stacks to `onError` and `onPostpone` when in dev mode or during prerenders in prod mode (#27761)
Historically React would produce component stacks for dev builds only.
There is a cost to tracking component stacks and given the prod builds
try to optimize runtime performance these stacks were lef... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -734,7 +734,7 @@ describe('ReactDOMFizzServer', () => {\n \n const theError = new Error('Test');\n const loggedErrors = [];\n- function onError(x) {\n+ function onError(x, errorInfo) {\n loggedErrors.pu... | 2023-12-16T02:06:35 |
nodejs/node | 18101d83a158b877ac765936aba973c664130ea2 | c046c9b3d8bc933b1c9760ad5663c365785ceac7 | crypto: reject dh,x25519,x448 in {Sign,Verify}Final
Fixes: https://github.com/nodejs/node/issues/53742
PR-URL: https://github.com/nodejs/node/pull/53774
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de> | [
{
"path": "src/crypto/crypto_sig.cc",
"patch": "@@ -92,12 +92,15 @@ std::unique_ptr<BackingStore> Node_SignFinal(Environment* env,\n sig = ArrayBuffer::NewBackingStore(env->isolate(), sig_len);\n }\n EVPKeyCtxPointer pkctx(EVP_PKEY_CTX_new(pkey.get(), nullptr));\n- if (pkctx &&\n- EVP_PKEY_sig... | 2024-09-06T22:07:16 |
vercel/next.js | 0b0e242821687832e02a205d6b050ed327498df1 | 025a98a9fd6a85df0fcaa7397ef41a79033d4c34 | [devtools] Fix various `exhaustive-deps` violations (#82010)
These fixes are pretty local and isolated so I felt safe bundling them up. | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/dialog/dialog.tsx",
"patch": "@@ -7,7 +7,6 @@ export type DialogProps = {\n 'aria-describedby': string\n className?: string\n onClose?: () => void\n- dialogResizerRef?: React.RefObject<HTMLDivElement | null>\n } & React.HTMLAttributes<... | 2025-07-25T12:33:38 |
golang/go | a632009c4a0b0826871baae7e7ce7804b4089d93 | 698f86139bf72bcf7cbf08accc1c34394cb57acb | cmd/go: support -json flag in go version
It supports features described in the issue:
* add -json flag for 'go version -m' to print json encoding of
runtime/debug.BuildSetting to standard output.
* report an error when specifying -json flag without -m.
* print build settings on seperated line for each binary
Fixes... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1967,7 +1967,7 @@\n //\n // Usage:\n //\n-//\tgo version [-m] [-v] [file ...]\n+//\tgo version [-m] [-v] [-json] [file ...]\n //\n // Version prints the build information for Go binary files.\n //\n@@ -1986,6 +1986,9 @@\n // information consists of multiple l... | 2024-10-14T11:11:53 |
electron/electron | dc707ee93835b279ff67dbd5f80ce28a4b9df3e1 | 1eb6e45a365fd7b73b23302662f29e465a698719 | fix: macOS tray button selection with VoiceOver (#39352) | [
{
"path": "shell/browser/ui/tray_icon_cocoa.mm",
"patch": "@@ -54,7 +54,12 @@ - (id)initWithIcon:(electron::TrayIconCocoa*)icon {\n NSStatusItem* item = [[NSStatusBar systemStatusBar]\n statusItemWithLength:NSVariableStatusItemLength];\n statusItem_ = item;\n- [[statusItem_ button] addSub... | 2023-08-07T07:52:18 |
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.