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
golang/go
2c5b1746164581c7393a7a7f7ba796e823af0248
03fb5d7574eaceb26e99586dec20691663fe6b82
cmd/link: recognize the new R_LARCH_32_PCREL type on loong64 Due to the latest binutils change [1], at least for certain 32-bit relocs in .eh_frame section, this new type of relocation record is emitted, leading to breakage on systems with bleeding-edge toolchain when trying to link with object(s) with such new-style ...
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -1002,7 +1002,8 @@ func relSize(arch *sys.Arch, pn string, elftype uint32) (uint8, uint8, error) {\n \t\tLOONG64 | uint32(elf.R_LARCH_MARK_LA)<<16,\n \t\tLOONG64 | uint32(elf.R_LARCH_SOP_POP_32_S_0_10_10_16_S2)<<16,\n \t\tLOONG64 | uint32(elf....
2022-08-03T11:43:49
vercel/next.js
8074fc171fd603c452067d0b76b6a152b3a75157
85c3ea8e5b7c03fd9d122d212e90a64be2034aed
Leverage defineEnv for all environment variables in Turbopack (#57196) This ensures all `process.env` replacement comes from define-env in Next.js, instead of also applying it partially on the Rust side. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly...
[ { "path": "packages/next-swc/crates/next-api/src/project.rs", "patch": "@@ -475,7 +475,6 @@ impl Project {\n #[turbo_tasks::function]\n pub(super) async fn client_compile_time_info(&self) -> Result<Vc<CompileTimeInfo>> {\n Ok(get_client_compile_time_info(\n- self.mode,\n ...
2023-10-22T22:37:48
nodejs/node
2fa74e3e38bb028339e48763138456b3ed10ed97
388cef61e8a4859b7505f7b5cf988eba27ce17b4
report: handle on-fatalerror better --report-on-fatalerror was not honored properly, as there was no way to check the value which was stored in the Environment pointer which can be inaccessible under certain fatal error situations. Move the flag out of Environment pointer so that this is doable. Co-authored-by: Shob...
[ { "path": "src/node_errors.cc", "patch": "@@ -406,7 +406,7 @@ void OnFatalError(const char* location, const char* message) {\n \n Isolate* isolate = Isolate::GetCurrent();\n Environment* env = Environment::GetCurrent(isolate);\n- if (env == nullptr || env->isolate_data()->options()->report_on_fatalerro...
2020-03-16T06:13:10
facebook/react
0c366ce6484a5128d9fadbc3471438d86f375fbf
1b477fa40c2146d9f938524275ed6e1ff9f79c82
fix lint
[ { "path": "grunt/config/complexity.js", "patch": "@@ -1,3 +1,4 @@\n+\"use strict\";\n var grunt = require('grunt');\n \n module.exports.generic = {", "additions": 1, "deletions": 0, "language": "JavaScript" } ]
2013-12-06T20:46:14
golang/go
45c748f7e61a4044a1f79516746d5851113de251
7acbbbee947626d9d411f8b3398400413d0fd0ce
test: add test case for issue 53702 The issue is expected to be fixed when Unified IR is enabled by default, so adding a test to make sure thing works correctly. Updates #53702 Change-Id: Id9d7d7ca4506103df0d10785ed5ee170d69988ba Reviewed-on: https://go-review.googlesource.com/c/go/+/423434 TryBot-Result: Gopher Rob...
[ { "path": "test/fixedbugs/issue53702.go", "patch": "@@ -0,0 +1,39 @@\n+// run\n+\n+// Copyright 2022 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+type Elem struct{}\n+\n+func (*Elem) Wa...
2022-08-12T17:44:08
vercel/next.js
df5beda191bc1a8200852153a9ff4c130e325131
73c2db690317eae09650d343d782da5fcf065819
fix symlink handling (vercel/turbo#6246) ### Description Incorrect handling of symlinks caused a race condition in resolving which causes weird resolving problems when a symlink is present in the same directory. ### Testing Instructions <!-- Give a quick description of steps to test your changes. --> ...
[ { "path": "crates/turbopack-core/src/resolve/pattern.rs", "patch": "@@ -898,6 +898,7 @@ pub async fn read_matches(\n prefix.truncate(len)\n }\n DirectoryEntry::Symlink(fs_path) => {\n+ let len = prefix.len...
2023-10-22T22:06:28
nodejs/node
05f1df520064475a255d8956f9e1b6f4bf4c8543
9e3eddc75dde9df9356264b42bd30facb82583cd
stream: fix pipeline with dest in objectMode pipeline did not support destination with generator that does not return strings or buffers. PR-URL: https://github.com/nodejs/node/pull/32414 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell ...
[ { "path": "lib/internal/streams/pipeline.js", "patch": "@@ -240,7 +240,9 @@ function pipeline(...streams) {\n // always returns a stream which can be further\n // composed through `.pipe(stream)`.\n \n- const pt = new PassThrough();\n+ const pt = new PassThrough({\n+ o...
2020-03-21T21:15:40
facebook/react
8e3cb7bd9dfc890a973a47b8de959b9eaf2aa529
c6f99c3a8421294dd785bae21f0b9c1d599c7eed
tests fail in Safai now. unblocking for now. Add these back in as build blockers once those issues are fixed.
[ { "path": ".travis.yml", "patch": "@@ -31,6 +31,7 @@ env:\n - TEST_TYPE=test:webdriver:saucelabs BROWSER_NAME=ie9\n - TEST_TYPE=test:webdriver:saucelabs BROWSER_NAME=ie8\n - TEST_TYPE=test:webdriver:saucelabs BROWSER_NAME=ios6\n+ - TEST_TYPE=test:webdriver:saucelabs BROWSER_NAME=safari\n global:\n ...
2013-12-04T20:04:48
electron/electron
f104e019beb087821f3cebb8013b6e3d1cc76faa
8e39aea34acdcaccbe9cd5a09cc32ff960c4fc92
Run crash reporter server specs on CI
[ { "path": "spec/api-crash-reporter-spec.js", "patch": "@@ -10,8 +10,6 @@ const {closeWindow} = require('./window-helpers')\n const {remote} = require('electron')\n const {app, BrowserWindow, crashReporter} = remote.require('electron')\n \n-const isCI = remote.getGlobal('isCi')\n-\n describe('crashReporter m...
2017-01-24T22:12:35
golang/go
59865f1420b2b2c67ac31f88375c142713d1fac9
2f6783c098696790223eae6986700868e9da0472
internal/cpu: fix cpu cacheLineSize for arm64 darwin(a.k.a. M1) The existing value for M1 is 64, which is the same as other arm64 cpus. But the correct cacheLineSize for M1 should be 128, which can be verified using the following command: $ sysctl -a hw | grep cachelinesize hw.cachelinesize: 128 Fixes #53075 Change...
[ { "path": "src/internal/cpu/cpu_arm64.go", "patch": "@@ -4,7 +4,10 @@\n \n package cpu\n \n-const CacheLinePadSize = 64\n+// CacheLinePadSize is used to prevent false sharing of cache lines.\n+// We choose 128 because Apple Silicon, a.k.a. M1, has 128-byte cache line size.\n+// It doesn't cost much and is m...
2022-05-26T06:10:56
facebook/react
c6f99c3a8421294dd785bae21f0b9c1d599c7eed
b8ee94d99937ffb31896f0ba2257b3651082cc3f
iOS is failing again. Will debug separately
[ { "path": ".travis.yml", "patch": "@@ -30,8 +30,7 @@ env:\n - TEST_TYPE=test:webdriver:saucelabs BROWSER_NAME=ie10\n - TEST_TYPE=test:webdriver:saucelabs BROWSER_NAME=ie9\n - TEST_TYPE=test:webdriver:saucelabs BROWSER_NAME=ie8\n- - TEST_TYPE=test:webdriver:saucelabs BROWSER_NAME=ios4\n- - TEST_TYPE=...
2013-12-04T19:48:10
nodejs/node
9e3eddc75dde9df9356264b42bd30facb82583cd
f4153c2fe7b54744e2201e397e1ac8345f222432
stream: add pipeline test for destroy of returned stream Adds a test to ensure that destroying the returned stream of pipeline will cause a premature close error. PR-URL: https://github.com/nodejs/node/pull/32425 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "test/parallel/test-stream-pipeline.js", "patch": "@@ -1048,3 +1048,20 @@ const { promisify } = require('util');\n }));\n src.push(null);\n }\n+\n+{\n+ const src = new PassThrough();\n+ const dst = pipeline(\n+ src,\n+ async function * (source) {\n+ for await (const chunk of sourc...
2020-03-22T16:43:49
electron/electron
d8a16a8ffb37cfce8aa0aff780be1799fedc9898
593a3de8509eb50432079f826c68ae6e476f7cab
fix spec
[ { "path": "spec/api-browser-window-spec.js", "patch": "@@ -225,8 +225,8 @@ describe('BrowserWindow module', function () {\n assert.equal(isMainFrame, true)\n done()\n })\n- let data = new Buffer(2 * 1024 * 1024).toString('base64')\n- w.loadURL('data:image/png;base64,' + data)...
2017-01-25T08:50:33
facebook/react
7325189890d3f2ff5f4ff8f5acb594cbd7ed6fe3
9270d3d56ea3b196acc099409a38e6c07b191e46
Fix scrollLeft/scrollTop warning in latest Chrome Chrome gives the warnings ``` body.scrollLeft is deprecated in strict mode. Please use 'documentElement.scrollLeft' if in strict mode and 'body.scrollLeft' only if in quirks mode. body.scrollTop is deprecated in strict mode. Please use 'documentElement.scrollTop' if i...
[ { "path": "src/vendor/core/dom/getUnboundedScrollPosition.js", "patch": "@@ -32,8 +32,8 @@\n function getUnboundedScrollPosition(scrollable) {\n if (scrollable === window) {\n return {\n- x: document.documentElement.scrollLeft || document.body.scrollLeft,\n- y: document.documentElement.scrol...
2013-12-07T23:57:23
golang/go
2f6783c098696790223eae6986700868e9da0472
ea9c3fd42d94182ce6f87104b68a51ea92f1a571
runtime: fix a comment typo in runqget() Change-Id: I79695e1cfda3b4cd911673f6e14dc316c451e2ed Reviewed-on: https://go-review.googlesource.com/c/go/+/423436 Reviewed-by: Michael Knyszek <mknyszek@google.com> Auto-Submit: Michael Knyszek <mknyszek@google.com> Run-TryBot: Michael Knyszek <mknyszek@google.com> Reviewed-by...
[ { "path": "src/runtime/proc.go", "patch": "@@ -5992,7 +5992,7 @@ func runqget(pp *p) (gp *g, inheritTime bool) {\n \tnext := pp.runnext\n \t// If the runnext is non-0 and the CAS fails, it could only have been stolen by another P,\n \t// because other Ps can race to set runnext to 0, but only the current P ...
2022-08-12T19:56:02
nodejs/node
066bdec64352278ed324a1bb680f5422e00a3aa5
d0c0e20bc2b2e122919b05697df7b4874678be3b
doc: fix lint warning in doc/api/esm.md Signed-off-by: Richard Lau <riclau@uk.ibm.com> PR-URL: https://github.com/nodejs/node/pull/32462 Refs: https://github.com/nodejs/node/pull/31479 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> Reviewed-By: Trivikram Kamat <tr...
[ { "path": "doc/api/esm.md", "patch": "@@ -917,8 +917,8 @@ It is also possible to\n \n ### `import()` expressions\n \n-[Dynamic `import()`][] is supported in both CommonJS and ES modules. It can be used\n-to include ES module files from CommonJS code.\n+[Dynamic `import()`][] is supported in both CommonJS an...
2020-03-24T17:17:05
electron/electron
1f5518b91efad274e75000313727f936c4fbfbe8
fb741285c673b856ee05e2e419ea6a2effd97c12
throw an error for out of bounds window levels
[ { "path": "atom/browser/api/atom_api_window.cc", "patch": "@@ -513,9 +513,16 @@ bool Window::IsClosable() {\n void Window::SetAlwaysOnTop(bool top, mate::Arguments* args) {\n std::string level = \"floating\";\n int relativeLevel = 0;\n+ std::string error;\n+\n args->GetNext(&level);\n args->GetNext...
2017-01-25T04:08:08
facebook/react
a42b61fa858020f6dfa1d92d9d381ac15e44402f
ce0f244c543424192c67607d7900e98189e4b4bb
Fix botched rebase
[ { "path": "package.json", "patch": "@@ -39,7 +39,6 @@\n },\n \"devDependencies\": {\n \"browserify\": \"~2.36.1\",\n- \"browserify\": \"~2.34.1\",\n \"envify\": \"~0.2.0\",\n \"populist\": \"~0.1.5\",\n \"grunt-cli\": \"~0.1.9\",", "additions": 0, "deletions": 1, "language...
2013-12-06T23:10:57
golang/go
ea9c3fd42d94182ce6f87104b68a51ea92f1a571
b6f87b0755f9705ce7d1c11c1b5354e8400ca7aa
runtime/trace: add missing events for the locked g in extra M. Extra Ms may lead to the "no consistent ordering of events possible" error when parsing trace file with cgo enabled, since: 1. The gs in the extra Ms may be in `_Gdead` status while starting trace by invoking `runtime.StartTrace`, 2. and these gs will trig...
[ { "path": "src/internal/trace/goroutines.go", "patch": "@@ -187,7 +187,7 @@ func GoroutineStats(events []*Event) map[uint64]*GDesc {\n \t\t\tgs[g.ID] = g\n \t\tcase EvGoStart, EvGoStartLabel:\n \t\t\tg := gs[ev.G]\n-\t\t\tif g.PC == 0 {\n+\t\t\tif g.PC == 0 && len(ev.Stk) > 0 {\n \t\t\t\tg.PC = ev.Stk[0].PC...
2022-08-12T02:28:43
vercel/next.js
85c3ea8e5b7c03fd9d122d212e90a64be2034aed
cf79cbf3b3604961cb59450cefccdb2f8748fb8e
fix(next-core): align edge chunking context's asset root (#57022) ### What? If there's a static asset with edge runtime config, turbopack will bail with ``` ⨯ ModuleBuildError: Code generation for chunk item errored An error occurred while generating the chunk item [project]/test/e2e/app-dir/metadata/app/icon.svg (...
[ { "path": "packages/next-swc/crates/next-api/src/project.rs", "patch": "@@ -534,7 +534,6 @@ impl Project {\n get_edge_chunking_context(\n self.project_path(),\n self.node_root(),\n- self.client_relative_path(),\n self.edge_compile_time_info().environmen...
2023-10-22T19:15:09
facebook/react
ce0f244c543424192c67607d7900e98189e4b4bb
9fdf5899761b3ceaae6ef274365bba35c6428dea
Move npm-react-core to npm-react, fix tasks accordingly
[ { "path": "Gruntfile.js", "patch": "@@ -9,7 +9,7 @@ var webdriverJasmineTasks = require('./grunt/tasks/webdriver-jasmine');\n var sauceTunnelTask = require('./grunt/tasks/sauce-tunnel');\n var npmTask = require('./grunt/tasks/npm');\n var releaseTasks = require('./grunt/tasks/release');\n-var reactCoreTasks...
2013-12-06T20:11:40
vercel/next.js
7445c35aa45a37d3094483d0b7a6757166bfb348
e5c082418de35e065649a6c26bfdfdd7535e9bf3
Polish the error message when using "use client" from a client action (#57164) Fixes NEXT-1605 - explained in the error message.
[ { "path": "packages/next/src/build/webpack/loaders/next-flight-loader/index.ts", "patch": "@@ -1,4 +1,7 @@\n-import { RSC_MOD_REF_PROXY_ALIAS } from '../../../../lib/constants'\n+import {\n+ RSC_MOD_REF_PROXY_ALIAS,\n+ WEBPACK_LAYERS,\n+} from '../../../../lib/constants'\n import { RSC_MODULE_TYPES } from...
2023-10-22T16:55:18
golang/go
7f3569c33acb2e1a23c55a29ddff2203e39c0176
ebbf2b44c59e2c473ed4ed6b0e044f5daee75e54
cmd/compile/internal/ssa: include "ppc64" in has-regabi arches list While here, rename helper function to follow Go naming idioms: https://github.com/golang/go/wiki/CodeReviewComments#initialisms Fixes #53456. Change-Id: I041dd25968e192ea2b430d58e3348626a970f92b Reviewed-on: https://go-review.googlesource.com/c/go/+...
[ { "path": "src/cmd/compile/internal/ssa/debug_lines_test.go", "patch": "@@ -45,9 +45,9 @@ func testGoArch() string {\n \treturn *testGoArchFlag\n }\n \n-func hasRegisterAbi() bool {\n+func hasRegisterABI() bool {\n \tswitch testGoArch() {\n-\tcase \"amd64\", \"arm64\", \"ppc64le\", \"riscv\":\n+\tcase \"amd...
2022-08-11T22:05:59
facebook/react
5466d0a06382892106da7e237f3330b43a60cc95
9270d3d56ea3b196acc099409a38e6c07b191e46
first work: __DEV__ fix invariant Get browserify working remove dead code elimination step since it is not needed due to minifier use industry standard NODE_ENV
[ { "path": "grunt/config/browserify.js", "patch": "@@ -3,6 +3,7 @@\n \n 'use strict';\n \n+var envify = require('envify/custom');\n var grunt = require('grunt');\n var UglifyJS = require('uglify-js');\n \n@@ -59,13 +60,15 @@ var basic = {\n outfile: './build/react.js',\n debug: false,\n standalone: 'Re...
2013-12-02T09:21:28
electron/electron
108a3473ed8d0d096cf8aa1be84dd7373c5dc3c7
4985e073c4ec0807ebb36be7ee5e74ff6ce87e8a
Use crashesDirectory in example
[ { "path": "docs/api/crash-reporter.md", "patch": "@@ -57,14 +57,14 @@ along with an additional one called `crashesDirectory` that should point to a di\n reports temporarily. You can test this out by calling `process.crash()` to crash the child process.\n \n **Note:** To collect crash reports from child proc...
2017-01-24T22:07:00
golang/go
1513e57b704056b794f0706362fa3c949f2972a4
2cf49a76b674ee5075f3ed6ff857c5b3e7a8109a
net/http/httputil: add X-Forwarded-{Host,Proto} headers in ReverseProxy X-Forwarded-Host contains the original request's host. X-Forwarded-Proto contains "http" or "https", depending on whether the original request was made on a TLS-secured connection. Setting either header to nil in Director disables adding the hea...
[ { "path": "src/net/http/httputil/reverseproxy.go", "patch": "@@ -28,14 +28,18 @@ import (\n // sends it to another server, proxying the response back to the\n // client.\n //\n-// ReverseProxy by default sets the client IP as the value of the\n-// X-Forwarded-For header.\n+// ReverseProxy by default sets\n+...
2022-05-19T20:20:21
vercel/next.js
3c3744631e6442661511f4531681c927f611075f
8502d0aab0fbbe31a2e1a0e6e76308746c70699c
fix(loader_tree): propagate metadata to corresponding layout (#56956) ### What? - fixes test https://github.com/vercel/next.js/blob/17553c5e25c824ce04045066c24a8f138881473d/test/e2e/app-dir/metadata/metadata.test.ts#L487 The way next.js collects static metadata is read static metadata, and then read layout metadata ...
[ { "path": "packages/next-swc/crates/next-core/src/app_structure.rs", "patch": "@@ -168,6 +168,15 @@ pub struct Metadata {\n pub open_graph: Vec<MetadataWithAltItem>,\n #[serde(skip_serializing_if = \"Option::is_none\")]\n pub sitemap: Option<MetadataItem>,\n+ // The page indicates where the m...
2023-10-21T21:24:40
nodejs/node
668bc11c1bbca429281ffdc78a9d4dda3d34af30
f2b0fb270d23489524a66812642964b0bd3c21bc
src: delete BaseObjectWeakPtr data when pointee is gone Fix the condition for deleting the underlying data pointed to by a `BaseObjectWeakPtr`, which erroneously skipped that deletion when `ptr->get()` was `nullptr`. This fixes a memory leak reported by some of the tests. Refs: https://github.com/nodejs/node/pull/303...
[ { "path": "src/base_object-inl.h", "patch": "@@ -234,13 +234,13 @@ BaseObject* BaseObjectPtrImpl<T, kIsWeak>::get_base_object() const {\n \n template <typename T, bool kIsWeak>\n BaseObjectPtrImpl<T, kIsWeak>::~BaseObjectPtrImpl() {\n- if (get() == nullptr) return;\n if (kIsWeak) {\n- if (--pointer_da...
2020-03-20T18:58:57
rust-lang/rust
b4d923cea0509933b1fb859930cb20784251f9be
868bdde25b030e0b71a29a5dbc04a891036e702e
Embed GDB pretty printers in rlibs and dylibs Instead of collecting pretty printers transitively when building executables/staticlibs/cdylibs, let the debugger find each crate's pretty printers via its .debug_gdb_scripts section. This covers the case where libraries defining custom pretty printers are loaded dynamical...
[ { "path": "compiler/rustc_codegen_llvm/src/debuginfo/gdb.rs", "patch": "@@ -1,13 +1,13 @@\n // .debug_gdb_scripts binary section.\n \n+use std::collections::BTreeSet;\n use std::ffi::CString;\n \n-use rustc_codegen_ssa::base::collect_debugger_visualizers_transitive;\n use rustc_codegen_ssa::traits::*;\n use...
2025-08-01T11:22:06
golang/go
57c1edcaec010874ed4a8491ca4ba3a2dda77339
a2af095699f5ec330ff2f012ea3a16d74cc4c3f9
runtime: mark atomic methods which call nosplit functions as nosplit Fixes #54411 Change-Id: I482ebca7365862bfb82a9daf8111c6f395aa1170 Reviewed-on: https://go-review.googlesource.com/c/go/+/423255 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> Run-TryBot: Cuong Manh ...
[ { "path": "src/runtime/internal/atomic/types.go", "patch": "@@ -100,6 +100,8 @@ type Uint8 struct {\n }\n \n // Load accesses and returns the value atomically.\n+//\n+//go:nosplit\n func (u *Uint8) Load() uint8 {\n \treturn Load8(&u.value)\n }\n@@ -136,6 +138,8 @@ type Bool struct {\n }\n \n // Load accesse...
2022-08-12T09:38:56
vercel/next.js
23bcfffad236b6115a937779006a6ee3d7f1f387
2bb9b2a7c265cc04d44e5c844905c7844387ed28
Fix SCSS and SCSS loader handling tests for Turbopack (#57192) These tests depend on the order of test runs in order to run, so they fail if the first test has not run. This ensures it's skipped for the others.
[ { "path": "test/integration/scss/test/basic-scss.test.js", "patch": "@@ -19,17 +19,16 @@ import { quote as shellQuote } from 'shell-quote'\n const fixturesDir = join(__dirname, '../..', 'scss-fixtures')\n \n describe('SCSS Support', () => {\n- describe('Friendly Webpack Error', () => {\n- const appDir =...
2023-10-21T20:45:57
facebook/react
7d8190f56e1501baf6b5d049a7c50ea85d270657
c313a1045db0a81a704df14f5da60f3690441fbf
Updated the animation-fix to account for transitionEnter being false.
[ { "path": "src/addons/transitions/ReactTransitionableChild.js", "patch": "@@ -130,15 +130,16 @@ var ReactTransitionableChild = React.createClass({\n if (!nextProps.children && this.props.children) {\n this.savedChildren = this.props.children;\n } else if (nextProps.children && !this.props.chil...
2013-12-06T14:37:38
rust-lang/rust
962836dfd3afeeeccb3ae58e0f3ff7de70a1be75
7f20ad86ba273315252c44adbce3ad99b6651863
remove redundant _toml suffix and other misc changes
[ { "path": "src/bootstrap/src/core/config/config.rs", "patch": "@@ -43,7 +43,7 @@ use crate::core::config::toml::install::Install;\n use crate::core::config::toml::llvm::Llvm;\n use crate::core::config::toml::rust::{\n LldMode, Rust, RustOptimize, check_incompatible_options_for_ci_rustc,\n- default_ll...
2025-08-04T16:06:37
nodejs/node
678e1be6aa145b99397342bb4a00440ba4bf4999
f2cc28aec3e7e938d070f04466055509961d7acb
src: delete CallbackInfo when cleared from cleanup hook Fixes: https://github.com/nodejs/node/issues/32400 PR-URL: https://github.com/nodejs/node/pull/32405 Reviewed-By: Matheus Marchini <mat@mmarchini.me> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-B...
[ { "path": "src/node_buffer.cc", "patch": "@@ -163,14 +163,14 @@ void CallbackInfo::WeakCallback(\n const WeakCallbackInfo<CallbackInfo>& data) {\n CallbackInfo* self = data.GetParameter();\n self->WeakCallback(data.GetIsolate());\n- delete self;\n }\n \n \n void CallbackInfo::WeakCallback(Isolate* ...
2020-03-21T09:08:08
electron/electron
795b674996297c0f6c8a7daaf45cc783483efca7
170c51ae85bd9806e9656bc2b1f3f62bc986f28e
Add StartInstance helper on CrashReporter
[ { "path": "atom/app/node_main.cc", "patch": "@@ -8,6 +8,7 @@\n #include \"atom/browser/javascript_environment.h\"\n #include \"atom/browser/node_debugger.h\"\n #include \"atom/common/api/atom_bindings.h\"\n+#include \"atom/common/crash_reporter/crash_reporter.h\"\n #include \"atom/common/native_mate_convert...
2017-01-24T21:53:05
vercel/next.js
2bb9b2a7c265cc04d44e5c844905c7844387ed28
eae65fa7b957b84a1efca9c71efaf91b8dd423cc
Fix two tests that use exportPathMap for Turbopack (#57194) More Turbopack test fixes. <!-- 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": "packages/next/src/lib/turbopack-warning.ts", "patch": "@@ -45,6 +45,9 @@ const supportedTurbopackNextConfigOptions = [\n 'webpack',\n 'onDemandEntries',\n 'experimental.cpus',\n+ 'serverRuntimeConfig',\n+ 'publicRuntimeConfig',\n+ 'exportPathMap',\n \n // Experimental options that affe...
2023-10-21T20:32:48
facebook/react
c313a1045db0a81a704df14f5da60f3690441fbf
1be9a9e98662f95296942eea76b3e39a5a09fab0
Nodes that have had their child removed already, but then get given a new one no longer bug-out. In the case of having an animated node which is, after the leave-transition has been activated, then re-added in a render call causes React to 'break'. This is especially noticeable if you spam to removal and re-addition ...
[ { "path": "src/addons/transitions/ReactTransitionableChild.js", "patch": "@@ -129,6 +129,17 @@ var ReactTransitionableChild = React.createClass({\n componentWillReceiveProps: function(nextProps) {\n if (!nextProps.children && this.props.children) {\n this.savedChildren = this.props.children;\n+ ...
2013-12-06T13:46:33
nodejs/node
f2cc28aec3e7e938d070f04466055509961d7acb
6b5f82d7f8fd865f2a009a58dcad1af3adf464c8
test: use InitializeNodeWithArgs in cctest Refs: https://github.com/nodejs/node/commit/d7f11077f15f52a2db191d3a5bcc41581cb7361f Fixes: https://github.com/nodejs/node/issues/30257 PR-URL: https://github.com/nodejs/node/pull/32406 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmai...
[ { "path": "test/cctest/node_test_fixture.h", "patch": "@@ -72,11 +72,13 @@ class NodeZeroIsolateTestFixture : public ::testing::Test {\n if (!node_initialized) {\n uv_os_unsetenv(\"NODE_OPTIONS\");\n node_initialized = true;\n- int argc = 1;\n- const char* argv0 = \"cctest\";\n- ...
2020-03-21T10:25:14
golang/go
8cb350d69a1b0765c1c81301583d6fd99fb9d74b
54cf1b107d24e135990314b56b02264dba8620fc
runtime: synchronize P wakeup and dropping Ps CL 310850 dropped work re-checks on non-spinning Ms to fix #43997. This introduced a new race condition: a non-spinning M may drop its P and then park at the same time a spinning M attempts to wake a P to handle some new work. The spinning M fails to find an idle P (becau...
[ { "path": "src/runtime/proc.go", "patch": "@@ -73,7 +73,7 @@ var modinfo string\n // If there is at least one spinning thread (sched.nmspinning>1), we don't\n // unpark new threads when submitting work. To compensate for that, if the last\n // spinning thread finds work and stops spinning, it must unpark a ...
2022-03-01T20:06:37
facebook/react
1be9a9e98662f95296942eea76b3e39a5a09fab0
12e765dd27ed484e462723419ec269e404349ea6
Bump version of wd wd 0.2.2 gives `TypeError: Cannot call method 'jsCondition' of undefined` since #551; 0.2.6 is the latest and works so switch to that.
[ { "path": "package.json", "patch": "@@ -57,7 +57,7 @@\n \"jasmine-tapreporter\": \"~0.2.2\",\n \"grunt-contrib-connect\": \"~0.5.0\",\n \"es5-shim\": \"~2.1.0\",\n- \"wd\": \"~0.2.2\",\n+ \"wd\": \"~0.2.6\",\n \"sauce-tunnel\": \"~1.1.0\",\n \"coverify\": \"~0.1.1\",\n \"grunt-...
2013-12-06T01:13:52
vercel/next.js
eae65fa7b957b84a1efca9c71efaf91b8dd423cc
c43c9159615f722d8c0e3a0d172cd70d424e1df8
improve server actions error when on unsupported node version (#57191) When using server actions on an unsupported version of Node, you might see the following errors: > NotSupportedError: multipart/form-data not supported Support in Undici was landed in 5.11.0 which made it into Node v18.11.0 > TypeError: e._formD...
[ { "path": "packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts", "patch": "@@ -33,6 +33,7 @@ import { traverseModules, forEachEntryModule } from '../utils'\n import { normalizePathSep } from '../../../shared/lib/page-path/normalize-path-sep'\n import { getProxiedPluginState } from '../../b...
2023-10-21T19:32:46
rust-lang/rust
04e794a0b98fa782e4eeb955205828a57ae8e7de
7673826138e7fee1534b7bbf7bf4d8651c924166
Fix CSS indent
[ { "path": "util/gh-pages/style.css", "patch": "@@ -31,11 +31,11 @@ blockquote { font-size: 1em; }\n }\n \n .container > * {\n- margin-bottom: 20px;\n- border-radius: 4px;\n- background: var(--bg);\n- border: 1px solid var(--theme-popup-border);\n- box-shadow: 0 1px 1px rgba(0,0,0,.05);\n+ margin-bot...
2025-07-11T09:59:28
electron/electron
170c51ae85bd9806e9656bc2b1f3f62bc986f28e
241773f2f00908bc06bbe0dbeb007d5d259bd05a
Add spec for crashing node process
[ { "path": "spec/api-crash-reporter-spec.js", "patch": "@@ -1,4 +1,5 @@\n const assert = require('assert')\n+const childProcess = require('child_process')\n const http = require('http')\n const multiparty = require('multiparty')\n const path = require('path')\n@@ -40,51 +41,34 @@ describe('crashReporter modu...
2017-01-24T21:49:45
nodejs/node
6b5f82d7f8fd865f2a009a58dcad1af3adf464c8
3d0f2257be48eb881c30c14e2bd7275533be3011
test: end tls connection with some data In openssl-1.1.1e the client doesn't seem to like having the TLS connection shut down with no data sent, so send an empty string. A number of related issues showed up in the TLS1.3 port, so this is not entirely surprising. PR-URL: https://github.com/nodejs/node/pull/32328 Fixes...
[ { "path": "test/parallel/test-tls-session-cache.js", "patch": "@@ -65,7 +65,7 @@ function doTest(testOptions, callback) {\n throw er;\n });\n ++requestCount;\n- cleartext.end();\n+ cleartext.end('');\n });\n server.on('newSession', function(id, data, cb) {\n ++newSessionCount;"...
2020-03-20T04:07:36
facebook/react
12e765dd27ed484e462723419ec269e404349ea6
a7f6082c9cff74ece353c3b97ff0397d7f94e90a
Revert "Don't mutate passed-in props" This reverts https://github.com/facebook/react/pull/576 This approach mutates the default props for the instance on each update, which causes incorrect behavior. discussed with @balpert. can look into cloning but this unbreaks.
[ { "path": "src/core/ReactCompositeComponent.js", "patch": "@@ -676,7 +676,7 @@ var ReactCompositeComponentMixin = {\n this._compositeLifeCycleState = CompositeLifeCycle.MOUNTING;\n \n this._defaultProps = this.getDefaultProps ? this.getDefaultProps() : null;\n- this.props = this._processPro...
2013-12-06T00:50:10
golang/go
bd302502d39b6172bf3db6abfa49fdcaa124ee50
7666ec1c99b2f8c88b42fb5462510cafce120a6f
runtime: convert panicking to atomic type For #53821. Change-Id: I93409f377881a3c029b41b0f1fbcef5e21091f2f Reviewed-on: https://go-review.googlesource.com/c/go/+/419438 Reviewed-by: Austin Clements <austin@google.com> Run-TryBot: Michael Pratt <mpratt@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
[ { "path": "src/runtime/mgc.go", "patch": "@@ -546,7 +546,7 @@ const (\n // that the exit condition for the _GCoff phase has been met. The exit\n // condition should be tested when allocating.\n func (t gcTrigger) test() bool {\n-\tif !memstats.enablegc || panicking != 0 || gcphase != _GCoff {\n+\tif !memsta...
2022-07-14T21:36:59
vercel/next.js
d99602da8742c70c637a60be1318c9f15aa4a513
a383b93556cd6123c06c2d92086ac36637324217
Remove printing fixed issues for Turbopack (#57188) We'll revisit this after Turbopack is stable.
[ { "path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts", "patch": "@@ -348,11 +348,12 @@ async function startWatcher(opts: SetupOpts) {\n relevantIssues.add(formatted)\n }\n \n- for (const issue of oldSet.keys()) {\n- if (!newSet.has(issue)) {\n- console...
2023-10-21T18:30:23
rust-lang/rust
bcefc2ee977e38a4a5ecd0956e19b0968d33052b
ec7c02612527d185c379900b613311bc1dcbf7dc
Add annotations to the graphviz region graph on region origins This adds - (ex) for regions whose origin is existential, - (p) for regoins whose origin is a placeholder, and - (p for <name>) if the originating placeholder is named. This has helped _my_ debugging and it doesn't create too bad clutter, I feel. The cha...
[ { "path": "compiler/rustc_borrowck/src/region_infer/graphviz.rs", "patch": "@@ -41,7 +41,21 @@ fn render_region_vid<'tcx>(\n \"\".to_string()\n };\n \n- format!(\"{:?}{universe_str}{external_name_str}\", rvid)\n+ let extra_info = match regioncx.region_definition(rvid).origin {\n+ Nl...
2025-08-06T09:12:51
electron/electron
241773f2f00908bc06bbe0dbeb007d5d259bd05a
d453dbdb404d41200e8b657dbebaebc782950e8a
Clean up testing code written for crash for children
[ { "path": "default_app/default_app.js", "patch": "@@ -1,4 +1,4 @@\n-const {app, BrowserWindow, crashReporter} = require('electron')\n+const {app, BrowserWindow} = require('electron')\n const path = require('path')\n \n let mainWindow = null\n@@ -20,11 +20,6 @@ exports.load = (appUrl) => {\n if (process....
2017-01-18T01:01:56
facebook/react
2ebbbc51456bf54060124fe5a83c5be391c0d1b7
7db8f818bc5553c20c02c9c8fe4a8dde4f249b5b
Followup fix for lint
[ { "path": "src/core/__tests__/ReactComponentLifeCycle-test.js", "patch": "@@ -405,7 +405,7 @@ describe('ReactComponentLifeCycle', function() {\n valueToUseInOnDOMReady=\"goodbye\"\n />;\n expect(function() {\n- ReactTestUtils.renderIntoDocument(instance)\n+ ReactTestUtils.renderI...
2013-12-05T23:55:49
nodejs/node
3d0f2257be48eb881c30c14e2bd7275533be3011
ec144d562825a042b4002951035f844920c16bd9
test: discard data received by client This test was timing out after update to OpenSSL-1.1.1e. PR-URL: https://github.com/nodejs/node/pull/32328 Fixes: https://github.com/nodejs/node/issues/32210 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/sequential/test-tls-psk-client.js", "patch": "@@ -37,6 +37,7 @@ const timeout = setTimeout(() => cleanUp('Timeouted'), 5000);\n \n function waitForPort(port, cb) {\n const socket = net.connect(common.PORT, () => {\n+ socket.on('data', () => {});\n socket.end();\n socket.on('end'...
2020-03-19T07:35:34
golang/go
7666ec1c99b2f8c88b42fb5462510cafce120a6f
40fa2dabe0ee3a163c338dab1ea6036037287507
runtime: convert runningPanicDefers to atomic type For #53821. Change-Id: Ib48a1f2ff85d667c86dbd0b7662efab5a0abd837 Reviewed-on: https://go-review.googlesource.com/c/go/+/419437 Run-TryBot: Michael Pratt <mpratt@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Austin Clements <austin@google.com...
[ { "path": "src/runtime/panic.go", "patch": "@@ -837,7 +837,7 @@ func gopanic(e any) {\n \tp.link = gp._panic\n \tgp._panic = (*_panic)(noescape(unsafe.Pointer(&p)))\n \n-\tatomic.Xadd(&runningPanicDefers, 1)\n+\trunningPanicDefers.Add(1)\n \n \t// By calculating getcallerpc/getcallersp here, we avoid scanni...
2022-07-14T21:29:29
vercel/next.js
9a8b14632c813e3931c8eb50e4c851afcd6cef8f
4e27b908fe76d49cbe7295a64a757b7b68786f59
chore: Add condition to skip update-fonts workflow on forks (#57165) <!-- 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: ...
[ { "path": ".github/workflows/update_fonts_data.yml", "patch": "@@ -13,6 +13,7 @@ env:\n jobs:\n create-pull-request:\n runs-on: ubuntu-latest\n+ if: github.repository_owner == 'vercel'\n steps:\n - name: Checkout\n uses: actions/checkout@v3", "additions": 1, "deletions": 0...
2023-10-21T07:50:36
rust-lang/rust
2cd5b4928da9fae414c32e4a421701be8b1a7ceb
ec7c02612527d185c379900b613311bc1dcbf7dc
Fix some doc links for intrinsics This fixes a few intrinsic docs that had a link directly to itself instead of to the correct function in the `mem` module.
[ { "path": "library/core/src/intrinsics/mod.rs", "patch": "@@ -2667,7 +2667,7 @@ pub unsafe fn vtable_align(ptr: *const ()) -> usize;\n /// More specifically, this is the offset in bytes between successive\n /// items of the same type, including alignment padding.\n ///\n-/// The stabilized version of this i...
2025-08-06T00:02:01
vercel/next.js
4e27b908fe76d49cbe7295a64a757b7b68786f59
1ffef0f1a3f0cba029483bc5b62a44bf204965f5
misc: fix injecting --inspect with NODE_OPTIONS (#57159) This PR fixes the passing of the `--inspect` option when calling Next.js with it. It's still not great because you need to target the next file in node_modules directly but I'll add a `next --inspect` option in the future.
[ { "path": "packages/next/src/cli/next-dev.ts", "patch": "@@ -2,7 +2,14 @@\n \n import '../server/lib/cpu-profile'\n import type { StartServerOptions } from '../server/lib/start-server'\n-import { RESTART_EXIT_CODE, getPort, printAndExit } from '../server/lib/utils'\n+import {\n+ RESTART_EXIT_CODE,\n+ chec...
2023-10-21T00:49:41
golang/go
a5cd894318677359f6d07ee74f9004d28b4d164c
d88d91e32e1440307369d50ba17ce622399a8bc1
crypto/ecdh,crypto/internal/nistec: enable pruning of unused curves If a program only uses ecdh.P256(), the implementation of the other curves shouldn't end up in the binary. This mostly required moving some operations from init() time. Small performance hit in uncompressed Bytes/SetBytes, but not big enough to show u...
[ { "path": "src/crypto/ecdh/ecdh_test.go", "patch": "@@ -12,7 +12,13 @@ import (\n \t\"crypto/rand\"\n \t\"encoding/hex\"\n \t\"fmt\"\n+\t\"internal/testenv\"\n \t\"io\"\n+\t\"os\"\n+\t\"os/exec\"\n+\t\"path/filepath\"\n+\t\"regexp\"\n+\t\"strings\"\n \t\"testing\"\n \n \t\"golang.org/x/crypto/chacha20\"\n@@...
2022-04-20T17:12:18
facebook/react
d0883c8cc74ba7253123cfe482ad993647b6693a
09bdcefd4f246eb49b82aa5bfece8d40cb8a2fca
Use depth (not owner) to check for root components Fixes #557.
[ { "path": "src/core/ReactComponent.js", "patch": "@@ -260,17 +260,17 @@ var ReactComponent = {\n */\n replaceProps: function(props, callback) {\n invariant(\n- !this._owner,\n+ this.isMounted(),\n+ 'replaceProps(...): Can only update a mounted component.'\n+ );\n+ ...
2013-11-17T21:38:40
electron/electron
d453dbdb404d41200e8b657dbebaebc782950e8a
2814e04e7dc1e34a81755f64541de319cb5febae
Support crash reporting from child process in Windows
[ { "path": "default_app/forkedProcess.js", "patch": "@@ -1,14 +1,31 @@\n const os = require('os')\n const path = require('path')\n+const {spawn} = require('child_process')\n \n+let submitURL = 'http://localhost:1127/post'\n let productName = 'Child Product'\n let companyName = 'Child Company'\n let tmpPath =...
2016-12-31T04:55:42
vercel/next.js
1ffef0f1a3f0cba029483bc5b62a44bf204965f5
0d2edbb23f00c2d094882597a3477a4f5b63a941
Turbopack: support more server code in tracing error stack frames (#57156) This: - Uses `isServer` to use the appropriate Turbopack `FileSystem` when creating `FileSystemPath`s - Properly uri decodes path segments originating from `file://` uris - Correctly reads chunks starting at the project path instead of the ...
[ { "path": "Cargo.lock", "patch": "@@ -3493,6 +3493,7 @@ dependencies = [\n \"turbo-tasks\",\n \"turbopack-binding\",\n \"url\",\n+ \"urlencoding\",\n ]\n \n [[package]]", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "packages/next-swc/crates/napi/Cargo.toml", ...
2023-10-21T00:09:10
nodejs/node
ec144d562825a042b4002951035f844920c16bd9
425b9620310f182d0a1f0126500b6de2b061255b
deps: update archs files for OpenSSL-1.1.1e After an OpenSSL source update, all the config files need to be regenerated and comitted by: $ cd deps/openssl/config $ make $ git add deps/openssl/config/archs $ git add deps/openssl/include PR-URL: https://github.com/nodejs/node/pull/32328 Fixes: https://g...
[ { "path": "deps/openssl/config/archs/BSD-x86/asm/crypto/buildinf.h", "patch": "@@ -11,7 +11,7 @@\n */\n \n #define PLATFORM \"platform: BSD-x86\"\n-#define DATE \"built on: Fri Sep 13 15:57:16 2019 UTC\"\n+#define DATE \"built on: Wed Mar 18 21:04:48 2020 UTC\"\n \n /*\n * Generate compiler_flags as an ar...
2020-03-18T05:09:37
facebook/react
2807202ee728ac9940e18e4dcac1e3ff514438a2
60f2e45d2d9a87c5421b74bc1450009353ccab13
bump webdriver timeouts fixes #634 fixes #551
[ { "path": "grunt/tasks/webdriver-jasmine.js", "patch": "@@ -73,11 +73,11 @@ module.exports = function(){\n \n function getJSReport(browser){\n return browser\n- .waitForCondition(\"typeof window.jasmine != 'undefined'\", 5e3)\n+ .waitFor(wd.asserters.jsCondition(\"typeof window.jasmine != 'undefined...
2013-12-04T22:14:49
golang/go
d88d91e32e1440307369d50ba17ce622399a8bc1
0b79abc27e1e4ea4ef3c299206f49e0724b03d57
crypto/ecdh: new package We use crypto/internal/edwards25519/field to implement X25519 directly, so that golang.org/x/crypto/curve25519 can be dropped from the src module dependencies, and eventually replaced with a crypto/ecdh wrapper, removing the need to keep golang.org/x/crypto/curve25519/internal/field in sync wi...
[ { "path": "api/next/52221.txt", "patch": "@@ -0,0 +1,19 @@\n+pkg crypto/ecdh, func P256() Curve #52221\n+pkg crypto/ecdh, func P384() Curve #52221\n+pkg crypto/ecdh, func P521() Curve #52221\n+pkg crypto/ecdh, func X25519() Curve #52221\n+pkg crypto/ecdh, method (*PrivateKey) Bytes() []uint8 #52221\n+pkg cr...
2022-04-07T19:15:31
rust-lang/rust
fbc700f92bdb008a9fd76e2a02230cea6c23d2c4
ecf6d3c6ced41d71a09248fdc679309e39bae318
configure: Use `CARGO_CFG_*_{F16,F128}` rather than invoking rustc Currently we run the `rustc` from the `RUSTC` environment variable to figure out whether or not to enable `f16` and `f128`, based on the `target_has_reliable_{f16,f128}` config. However, this does not know about the codegen backend used, and the backen...
[ { "path": "library/compiler-builtins/compiler-builtins/configure.rs", "patch": "@@ -1,6 +1,5 @@\n // Configuration that is shared between `compiler_builtins` and `builtins_test`.\n \n-use std::process::{Command, Stdio};\n use std::{env, str};\n \n #[derive(Debug)]\n@@ -35,26 +34,6 @@ impl Target {\n ...
2025-08-05T20:56:27
electron/electron
2814e04e7dc1e34a81755f64541de319cb5febae
f1cd1c6dff127c67577887eccad7346bc3dda496
Getting rid of linting errors
[ { "path": "default_app/default_app.js", "patch": "@@ -21,9 +21,9 @@ exports.load = (appUrl) => {\n options.icon = path.join(__dirname, 'icon.png')\n }\n crashReporter.start({\n- submitURL: \"http://localhost:8080/uploadDump/mainDump\",\n- companyName: \"Main Company\",\n- produc...
2016-12-13T05:32:58
facebook/react
60f2e45d2d9a87c5421b74bc1450009353ccab13
09bdcefd4f246eb49b82aa5bfece8d40cb8a2fca
fixes test runner for IE8
[ { "path": "test/index.html", "patch": "@@ -24,7 +24,7 @@\n urls.unshift('../node_modules/es5-shim/es5-shim.js');\n }\n \n- var cacheBust = '?_=' + Date.now().toString(36);\n+ var cacheBust = '?_=' + (+new Date).toString(36);\n \n for (var urls_index = -1, urls_length = urls.length; ++urls_index < ...
2013-12-04T22:13:01
vercel/next.js
8afbce84dec3e3fcfd5494ca8894a155481cd71c
d0a1199a36c15e91ef7fa38f55766c6c3251b964
Cleanup Request Meta (#57144) This cleans up the meta for requests by removing the legacy `_next` prefixes and removing some unused ones.
[ { "path": "packages/next/src/export/worker.ts", "patch": "@@ -172,7 +172,7 @@ async function exportPageImpl(\n dl.defaultLocale === locale || dl.locales?.includes(locale || '')\n )\n ) {\n- addRequestMeta(req, '__nextIsLocaleDomain', true)\n+ addRequestMeta(req, 'isLocaleDomain...
2023-10-20T23:40:37
nodejs/node
425b9620310f182d0a1f0126500b6de2b061255b
116a30b04f2ee254c0f9a7d1b747580affa4bd0e
deps: adjust openssl configuration for 1.1.1e The scripts used by make were modified to correctly reference the source files that were originially in crypto/include/internal, but got moved to include/crypto. The base path has been left unaltered since that would require too many changes PR-URL: https://github.com/no...
[ { "path": "deps/openssl/config/Makefile", "patch": "@@ -38,7 +38,7 @@ OPSSL_SRC = ../openssl\n CFG = opensslconf.h\n SRC_CFG = $(OPSSL_SRC)/include/openssl/$(CFG)\n INT_CFGS = bn_conf.h dso_conf.h\n-INT_CFG_DIR = $(OPSSL_SRC)/crypto/include/internal\n+INT_CFG_DIR = $(OPSSL_SRC)/include/crypto\n \n PHONY = a...
2020-03-18T05:17:22
golang/go
0b79abc27e1e4ea4ef3c299206f49e0724b03d57
7367aedfd2b787cff5ea0f883ed7805ead4d4ba6
cmd/compile: avoid copying Pos from ONAME when creating converts for maps ONAME nodes are shared, so using their position for anything is almost always a mistake. There are probably more instances of this mistake elsewhere. For now, handle the case of map key temporaries, where it's been a problem. Fixes #53456. C...
[ { "path": "src/cmd/compile/internal/ssa/debug_lines_test.go", "patch": "@@ -45,28 +45,40 @@ func testGoArch() string {\n \treturn *testGoArchFlag\n }\n \n+func hasRegisterAbi() bool {\n+\tswitch testGoArch() {\n+\tcase \"amd64\", \"arm64\", \"ppc64le\", \"riscv\":\n+\t\treturn true\n+\t}\n+\treturn false\n+...
2022-07-13T18:27:45
rust-lang/rust
6a20b6d0221e4a311d61ad4f39827d6c30dca48f
5ba502fcd39365727cb999135a76d4c46d101094
fix external docs for exported macros add test
[ { "path": "src/tools/rust-analyzer/crates/ide/src/doc_links.rs", "patch": "@@ -390,7 +390,8 @@ fn get_doc_links(\n \n let (mut web_url, mut local_url) = get_doc_base_urls(db, target, target_dir, sysroot);\n \n- if let Some(path) = mod_path_of_def(db, target) {\n+ let append_mod = !matches!(def, De...
2025-08-04T16:13:07
electron/electron
91f8d6092b183b35d4143c0d08491ac1b0b95074
1f07cf2545a68a2f9234c776515a8ab85a40bcfe
Take options object in process.crashReporter.start
[ { "path": "atom/common/api/atom_bindings.cc", "patch": "@@ -6,7 +6,6 @@\n \n #include <algorithm>\n #include <iostream>\n-#include <map>\n #include <string>\n \n #include \"atom/common/atom_version.h\"\n@@ -157,28 +156,14 @@ void AtomBindings::Log(const base::string16& message) {\n std::cout << message <<...
2016-12-12T22:35:59
facebook/react
4d6d4b54d67478623b58f5f6c0eca49401b5b4f1
e060eabb0116e80ab516c3483027e5938bbb8410
Fix ReactDOMTextarea missing "rows" and "cols" attribute, incorrect "size" property
[ { "path": "src/dom/DefaultDOMPropertyConfig.js", "patch": "@@ -26,6 +26,7 @@ var MUST_USE_ATTRIBUTE = DOMProperty.injection.MUST_USE_ATTRIBUTE;\n var MUST_USE_PROPERTY = DOMProperty.injection.MUST_USE_PROPERTY;\n var HAS_BOOLEAN_VALUE = DOMProperty.injection.HAS_BOOLEAN_VALUE;\n var HAS_SIDE_EFFECTS = DOMPr...
2013-11-12T10:25:59
vercel/next.js
4d31506960a04169d83b206d3e5a718d6c9494e9
354705d1c356de8ef3663556b322ccc76a102733
Revert "Add retry for fetching subsetted Google Fonts" (#57154) Reverts vercel/next.js#56583 due to missing dependency ``` app/layout.jsx An error occured in 'next/font'. Error: Cannot find module 'async-retry' Require stack: - node_modules/•pnpm/next@13.5.7-canary.12_react-dom@18.2.0_react@18.2.0/node_modules/next/d...
[ { "path": "packages/font/package.json", "patch": "@@ -20,10 +20,8 @@\n \"ncc-fontkit\": \"ncc build ./fontkit.js -o dist/fontkit\"\n },\n \"devDependencies\": {\n- \"@types/async-retry\": \"1.4.2\",\n \"@types/fontkit\": \"2.0.0\",\n \"@vercel/ncc\": \"0.34.0\",\n- \"async-retry\": \"1...
2023-10-20T22:14:24
rust-lang/rust
d8e8a5e8b4867cdc48b98c0126807267a6258e70
213d946a384b46989f6fd9c8ae9c547b4e354455
add code example showing that file_prefix treats dotfiles as the name of a file, not an extension
[ { "path": "library/std/src/path.rs", "patch": "@@ -2683,6 +2683,8 @@ impl Path {\n ///\n /// assert_eq!(\"foo\", Path::new(\"foo.rs\").file_prefix().unwrap());\n /// assert_eq!(\"foo\", Path::new(\"foo.tar.gz\").file_prefix().unwrap());\n+ /// assert_eq!(\".config\", Path::new(\".config\").fi...
2025-08-05T20:56:43
golang/go
7367aedfd2b787cff5ea0f883ed7805ead4d4ba6
502b6057d2a30b284a3889e4439b47289244382b
debug/elf: use saferio to read section data For #47653 Fixes #45599 Fixes #52522 Change-Id: Id6a80186434080cb0a205978ad7f224252674604 Reviewed-on: https://go-review.googlesource.com/c/go/+/408679 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Than McIntosh <thanm@google.com> Reviewed-by: Ian Lance Taylo...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"encoding/binary\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"internal/saferio\"\n \t\"io\"\n \t\"os\"\n \t\"strings\"\n@@ -102,9 +103,7 @@ type Section struct {\n // Even if the section is stored compressed in the ELF file,\n // Data return...
2022-05-29T02:23:11
facebook/react
bf24dc33f7ef77a0b768f0c6885923d79184a99f
e3ad088ff317410fc562b559bebae210909749e0
Separate replaceState invariant violations It'd be nice if we knew which error we were hitting when this invariant hit.
[ { "path": "src/core/ReactCompositeComponent.js", "patch": "@@ -424,11 +424,14 @@ function validateLifeCycleOnReplaceState(instance) {\n compositeLifeCycleState === CompositeLifeCycle.MOUNTING,\n 'replaceState(...): Can only update a mounted or mounting component.'\n );\n- invariant(\n- compo...
2013-12-05T01:47:11
electron/electron
1f07cf2545a68a2f9234c776515a8ab85a40bcfe
d4b44d8b69c157d3f6f54b8875cf1f15ea345ba3
Add crashReporter property to process
[ { "path": "atom/app/node_main.cc", "patch": "@@ -62,9 +62,13 @@ int NodeMain(int argc, char *argv[]) {\n #if defined(OS_WIN)\n process.SetMethod(\"log\", &AtomBindings::Log);\n #endif\n- process.SetMethod(\"startCrashReporter\", &AtomBindings::StartCrashReporter);\n process.SetMethod(\"crash\", &...
2016-12-09T09:44:12
rust-lang/rust
34b358d52aa6842e512dacbf97c7d3a9e18795e6
213d946a384b46989f6fd9c8ae9c547b4e354455
rustdoc: fix caching of intra-doc links on reexports
[ { "path": "src/librustdoc/clean/types.rs", "patch": "@@ -480,10 +480,28 @@ impl Item {\n }\n }\n \n+ /// If the item has doc comments from a reexport, returns the item id of that reexport,\n+ /// otherwise returns returns the item id.\n+ ///\n+ /// This is used as a key for caching i...
2025-08-05T20:23:14
vercel/next.js
aa1ee5995cdd92cc9a2236ce4b6aa2b67c9d32b2
5528cc6d4e096cdf0800198644b6561af1fa7bfe
Mark most GTMParams as optional (#57153) Fixes #57126 The `<GoogleTagManager>` types in `@next/third-parties` seem incorrect compared to [e2e test usage](https://github.com/vercel/next.js/blob/canary/test/e2e/third-parties/pages/gtm.js#L11) where only the `gtmId` is shown/needed. ``` <GoogleTagManager gtmId="GTM-XYZ...
[ { "path": "packages/third-parties/src/google/gtm.tsx", "patch": "@@ -12,10 +12,10 @@ declare global {\n \n type GTMParams = {\n gtmId: string\n- dataLayer: string[]\n- dataLayerName: string\n- auth: string\n- preview: string\n+ dataLayer?: string[]\n+ dataLayerName?: string\n+ auth?: string\n+ pre...
2023-10-20T21:04:00
golang/go
cc8bac88353d8067244a196f70b2fe9475f4336e
6c2e327e35b6fe838b496ec1e8fb2f597c5bd59a
runtime: move trace locks to the leaf of the lock graph Now that trace.lock cannot be held over a stack split, we can move that lock and traceStackTab to the leaf of the lock graph. We add a couple edges to STACKGROW that were previously passing through trace. Fixes #53979. Change-Id: Ie664ff7bb33973745f991f7516dc61...
[ { "path": "src/runtime/lockrank.go", "patch": "@@ -47,9 +47,6 @@ const (\n \tlockRankProfBlock\n \tlockRankProfMemActive\n \tlockRankProfMemFuture\n-\t// TRACE\n-\tlockRankTrace\n-\tlockRankTraceStackTab\n \t// STACKGROW\n \tlockRankGscan\n \tlockRankStackpool\n@@ -59,6 +56,9 @@ const (\n \tlockRankWbufSpan...
2022-07-21T19:53:25
facebook/react
cd3bfe64d412a75aa894ff82db684f25d5ddc68b
241f4d29b2caab806c35ce7b3ee1d1a7e8881cd2
Fix blog pagination I missed this in the Jekyll upgrade.
[ { "path": "docs/blog/index.html", "patch": "@@ -20,7 +20,7 @@ <h1><a href=\"/react{{ page.url }}\">{{ page.title }}</a></h1>\n \n <div class=\"pagination\">\n {% if paginator.previous_page %}\n- <a href=\"/react/{{ paginator.previous_page }}\" class=\"previous\">\n+ <a href=\"/react/...
2013-12-02T23:46:20
electron/electron
d4b44d8b69c157d3f6f54b8875cf1f15ea345ba3
61aff5ed35d4b4ffc29745feefe6a1d2dc41bc47
Expose crash reporter start for child node processes
[ { "path": "atom/app/node_main.cc", "patch": "@@ -14,11 +14,11 @@\n #include \"gin/public/isolate_holder.h\"\n #include \"gin/v8_initializer.h\"\n \n-#if defined(OS_WIN)\n+\n #include \"atom/common/api/atom_bindings.h\"\n #include \"atom/common/native_mate_converters/string16_converter.h\"\n #include \"nativ...
2016-12-02T02:19:57
rust-lang/rust
9c0cfd262f4c1197d9993a78ad0fbfc04a9c774c
213d946a384b46989f6fd9c8ae9c547b4e354455
Fix description of unsigned `checked_exact_div` Like its signed counterpart, this function does not panic. Also, fix the examples to document how it returns Some/None.
[ { "path": "library/core/src/num/uint_macros.rs", "patch": "@@ -1103,23 +1103,17 @@ macro_rules! uint_impl {\n self / rhs\n }\n \n- /// Checked integer division without remainder. Computes `self / rhs`.\n- ///\n- /// # Panics\n- ///\n- /// This function ...
2025-08-05T08:59:08
golang/go
6c2e327e35b6fe838b496ec1e8fb2f597c5bd59a
9923162f1cb88295bccb4d86ccc6829931199fdf
runtime: only acquire trace.lock on the system stack Currently, trace.lock can be acquired while on a user G and stack splits can happen while holding trace.lock. That means every lock used by the stack allocator must be okay to acquire while holding trace.lock, including various locks related to span allocation. In t...
[ { "path": "src/runtime/trace.go", "patch": "@@ -109,6 +109,8 @@ const (\n \n // trace is global tracing context.\n var trace struct {\n+\t// trace.lock must only be acquired on the system stack where\n+\t// stack splits cannot happen while it is held.\n \tlock mutex // protects the following ...
2022-07-21T19:43:11
vercel/next.js
c84f5ed794217009410d22373098075b6e38cdf5
0a7dd4ac8a09db6d6c6b18b9252546549d4dd5e0
Add retry for fetching subsetted Google Fonts (#56583) ### What? Add the same re-retrieval process for subseted font files of Google Font as for CSS files. + make use of [async-retry](https://github.com/vercel/async-retry) ### Why? It was reported in #45080 that Japanese fonts such as Noto Sans JP were frequently `F...
[ { "path": "packages/font/package.json", "patch": "@@ -20,8 +20,10 @@\n \"ncc-fontkit\": \"ncc build ./fontkit.js -o dist/fontkit\"\n },\n \"devDependencies\": {\n+ \"@types/async-retry\": \"1.4.2\",\n \"@types/fontkit\": \"2.0.0\",\n \"@vercel/ncc\": \"0.34.0\",\n+ \"async-retry\": \"1...
2023-10-20T17:10:53
nodejs/node
116a30b04f2ee254c0f9a7d1b747580affa4bd0e
07a1fb953e1ecbd98c93cde96b6b0bca7e3aecbd
deps: upgrade openssl sources to 1.1.1e This updates all sources in deps/openssl/openssl by: $ cd deps/openssl/ $ rm -rf openssl $ tar zxf ~/tmp/openssl-1.1.1e.tar.gz $ mv openssl-1.1.1e openssl $ git add --all openssl $ git commit openssl PR-URL: https://github.com/nodejs/node/pull/32328 Fixe...
[ { "path": "deps/openssl/openssl/CHANGES", "patch": "@@ -7,6 +7,73 @@\n https://github.com/openssl/openssl/commits/ and pick the appropriate\n release branch.\n \n+ Changes between 1.1.1d and 1.1.1e [17 Mar 2020]\n+ *) Properly detect EOF while reading in libssl. Previously if we hit an EOF\n+ while r...
2020-03-17T17:14:56
facebook/react
241f4d29b2caab806c35ce7b3ee1d1a7e8881cd2
3851462b80be1fb7da328b364014b06cc1a85f2f
[docs] Fix download links to addons builds
[ { "path": "docs/downloads.md", "patch": "@@ -28,14 +28,14 @@ The uncompressed, development version of React core with inline documentation.\n <script src=\"http://fb.me/react-{{site.react_version}}.js\"></script>\n ```\n \n-#### <a href=\"http://fb.me/react-{{site.react_version}}.min.js\">React With Add-Ons...
2013-12-02T23:13:49
golang/go
9923162f1cb88295bccb4d86ccc6829931199fdf
b648591b705490d14147f3beb66c68be9a97c5b5
runtime: don't use trace.lock for trace reader parking We're about to require that all uses of trace.lock be on the system stack. That's mostly easy, except that it's involving parking the trace reader. Fix this by changing that parking protocol so it instead synchronizes through an atomic. For #53979. Change-Id: Ic...
[ { "path": "src/runtime/proc.go", "patch": "@@ -2351,7 +2351,7 @@ func handoffp(pp *p) {\n \t\treturn\n \t}\n \t// if there's trace work to do, start it straight away\n-\tif (trace.enabled || trace.shutdown) && traceReaderAvailable() {\n+\tif (trace.enabled || trace.shutdown) && traceReaderAvailable() != nil...
2022-07-21T18:54:34
vercel/next.js
50866c631442eca90f285b0f0fce83a0bdf57e23
5d12db9a1b239a2e670a508877aee49411cd1afa
fix chunking for build chunking context (vercel/turbo#6227) ### Description We were missing to chunk all modules passed to `entry_chunk_group` ### Testing Instructions <!-- Give a quick description of steps to test your changes. -->
[ { "path": "crates/turbopack-build/src/chunking_context.rs", "patch": "@@ -1,3 +1,5 @@\n+use std::iter::once;\n+\n use anyhow::{bail, Context, Result};\n use serde::{Deserialize, Serialize};\n use turbo_tasks::{trace::TraceRawVcs, TaskInput, Value, Vc};\n@@ -164,8 +166,17 @@ impl BuildChunkingContext {\n ...
2023-10-20T16:17:33
nodejs/node
0e576740dc9ef10203884fd631cef4456b0f3a7c
887b6a143b132b1820d161c50d439db38d09aeb1
src: fix what a dispose without checking If created platform with CreatePlatform, the crash occurs because it does not check if it was initialized to v8_platform when DisposePlatform was called. Refs: https://github.com/nodejs/node/pull/31260 Co-authored-by: Anna Henningsen <anna@addaleax.net> PR-URL: https://github....
[ { "path": "src/node_v8_platform-inl.h", "patch": "@@ -12,6 +12,7 @@\n #include \"tracing/node_trace_writer.h\"\n #include \"tracing/trace_event.h\"\n #include \"tracing/traced_value.h\"\n+#include \"util.h\"\n \n namespace node {\n \n@@ -79,8 +80,12 @@ class NodeTraceStateObserver\n };\n \n struct V8Platfor...
2020-01-08T12:36:05
facebook/react
3851462b80be1fb7da328b364014b06cc1a85f2f
76e3294c8f4b1835bd25e7cd7a7247e05435b75e
Fix lint warnings
[ { "path": "src/addons/transitions/__tests__/ReactTransitionGroup-test.js", "patch": "@@ -85,7 +85,7 @@ describe('ReactTransitionGroup', function() {\n \n describe('with an undefined child', function () {\n it('should fail silently', function () {\n- var a = React.renderComponent(\n+ React.re...
2013-12-02T21:30:36
golang/go
db84f5315ff19fd2ad70f07193749ef377a028e2
87431981522981bc69b1eccc392e101df3318c2e
cmd/compile/internal/noder: fix implicit conversion position In go.dev/cl/413396, I implemented implicit conversions by setting the conversion's position to the enclosing statement that necessitated the conversion. However, users actually want the position information to be at the expression itself, and this seems sen...
[ { "path": "src/cmd/compile/internal/noder/writer.go", "patch": "@@ -1060,7 +1060,7 @@ func (w *writer) stmt1(stmt syntax.Stmt) {\n \t\t\tif stmt.Op != syntax.Shl && stmt.Op != syntax.Shr {\n \t\t\t\ttyp = w.p.typeOf(stmt.Lhs)\n \t\t\t}\n-\t\t\tw.implicitConvExpr(stmt, typ, stmt.Rhs)\n+\t\t\tw.implicitConvEx...
2022-08-11T17:48:12
vercel/next.js
5d6592d8958db553ed2bf4c300c3f9758c2f65f2
6ad017d23fa59d6d7fa90050f30da48603dbe6a2
Upgrade edge-runtime/cookies (#57124) Backport fix on 13.5.6 to canary x-ref: #57021
[ { "path": "packages/next/package.json", "patch": "@@ -137,7 +137,7 @@\n \"@babel/traverse\": \"7.22.5\",\n \"@babel/types\": \"7.22.5\",\n \"@capsizecss/metrics\": \"1.1.0\",\n- \"@edge-runtime/cookies\": \"4.0.1\",\n+ \"@edge-runtime/cookies\": \"4.0.2\",\n \"@edge-runtime/ponyfill\":...
2023-10-20T13:56:04
nodejs/node
288382a4ce4c1eb5d6eaccf698099804f6a3697d
d7bc5816a5d88e18d7ede081042d87f48a2bc54b
src: fix memory leak in CreateEnvironment when bootstrap fails PR-URL: https://github.com/nodejs/node/pull/30467 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
[ { "path": "src/api/environment.cc", "patch": "@@ -349,8 +349,10 @@ Environment* CreateEnvironment(IsolateData* isolate_data,\n Environment::kOwnsProcessState |\n Environment::kOwnsInspector));\n env->InitializeLibuv(per_process::v...
2019-11-11T12:29:07
electron/electron
33820ffb850b4d34c489e057a2cbcffb2d422410
91ed9aeeee1452b8d708759ede3ee1dd63bb6efe
Upgrade multiparty for os.tmpdir fix
[ { "path": "spec/package.json", "patch": "@@ -8,7 +8,7 @@\n \"graceful-fs\": \"^4.1.9\",\n \"mkdirp\": \"^0.5.1\",\n \"mocha\": \"^3.1.0\",\n- \"multiparty\": \"^4.1.2\",\n+ \"multiparty\": \"^4.1.3\",\n \"q\": \"^1.4.1\",\n \"send\": \"^0.14.1\",\n \"temp\": \"^0.8.3\",", "...
2017-01-21T17:58:31
vercel/next.js
c41debd23a9c3d8eca66909ea04ce34ce534656e
6d2df8636a019f0c420397284001f6f5e8b4e4e6
Expose Experimental Taint APIs (#56507) Exposes the new experimental Taint APIs using the `taint` flag which enables experimental React. As an example for how we can use it, I use it to taint `process.env` with a better error message. I'm not sure where this should live since it's a global init but it needs acce...
[ { "path": "packages/next-swc/crates/next-core/src/next_config.rs", "patch": "@@ -486,6 +486,7 @@ pub struct ExperimentalConfig {\n /// Using this feature will enable the `react@experimental` for the `app`\n /// directory.\n ppr: Option<bool>,\n+ taint: Option<bool>,\n proxy_timeout: Optio...
2023-10-20T02:02:37
nodejs/node
b8a794d72bad66f25ce645d08defb41bd57c3371
131b50d1878924291e4a7e3304e180494d5a3e0f
deps: minor ICU fixes: maint docs/tool, downloader - Docs used the word "copy" when it really meant a tool is needed. - README-FULL-ICU.txt was generated in binary mode, but it's a text file. This breaks on Python3 for maintaining ICU - The ICU downloader was broken (also probably python3). It's basically dead code si...
[ { "path": "doc/guides/maintaining-icu.md", "patch": "@@ -97,7 +97,7 @@ new Intl.DateTimeFormat('es', { month: 'long' }).format(new Date(9E8));\n \n …Should return `enero` not `January`.\n \n-* Now, copy `deps/icu` over to `deps/icu-small`\n+* Now, run the shrink tool to update `deps/icu-small` from `deps/ic...
2020-03-18T17:42:06
facebook/react
00adabc20dfcffb379b7f0b06fa2729ae1bff2a0
e923e22c16cf528ab11ecc7fb19feacc3011a6c7
Fix frontpage example to retain selection
[ { "path": "docs/_js/examples/timer.js", "patch": "@@ -18,7 +18,7 @@ var Timer = React.createClass({\\n\\\n },\\n\\\n render: function() {\\n\\\n return React.DOM.div({},\\n\\\n- 'Seconds Elapsed: ' + this.state.secondsElapsed\\n\\\n+ 'Seconds Elapsed: ', this.state.secondsElapsed\\n\\\n ...
2013-12-02T12:04:45
electron/electron
05b6f95ab80f784efd26ec3ac5a917b1e3c3d25e
edcea3e800efd05ec9d887be4e5dbd9799dc5a80
Fix Japanese translation
[ { "path": "docs-translations/jp/api/synopsis.md", "patch": "@@ -2,7 +2,7 @@\n \n > どうやってNode.jsとElectronのAPIを使うか。\n \n-Electron では全ての [Node.js のビルトインモジュール](http://nodejs.org/api/) 利用可能です。また、サードパーティの Node モジュール ([ネイティブモジュール](../tutorial/using-native-node-modules.md)も含む) も完全にサポートされています。\n+Electron では全ての [Node...
2017-01-23T02:35:06
rust-lang/rust
7a113811fab70d9d1932ad32ea392b9f100186ef
264bc97b2623f29109e0ecb91d66cdb6c7b10a43
fix &str type check in `from_str_radix_10` changelog: none Signed-off-by: Zihan <zihanli0822@gmail.com>
[ { "path": "clippy_lints/src/from_str_radix_10.rs", "patch": "@@ -1,6 +1,6 @@\n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::sugg::Sugg;\n-use clippy_utils::ty::{is_type_diagnostic_item, is_type_lang_item};\n+use clippy_utils::ty::is_type_lang_item;\n use clippy_utils::{is_in_const_...
2025-08-05T01:44:16
vercel/next.js
6d2df8636a019f0c420397284001f6f5e8b4e4e6
040a4f75e896f5070a592e3b886e9fef4a3ab9da
build: don't error when bundling optional peer deps (#57073) This PR adds a resolver plugin to verify during bundling that when a module is unresolved, that it is not an optional peer dependency specified in the package.json of the caller. An error would happen if you try to bundle packages like `typeorm` since there ...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -78,6 +78,7 @@ import {\n getMainField,\n edgeConditionNames,\n } from './webpack-config-rules/resolve'\n+import { OptionalPeerDependencyResolverPlugin } from './webpack/plugins/optional-peer-dependency-resolve-plugin'\n \n type Exclude...
2023-10-20T00:57:06