repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
electron/electron
deb7ccbef384cd41d58a37f633b051354ca772e0
bb153ee79e6bb4e54d4d075f64a448f498fbeff8
fix lint error
[ { "path": "docs/api/browser-window.md", "patch": "@@ -410,7 +410,7 @@ window.onbeforeunload = (e) => {\n // a non-void value will silently cancel the close.\n // It is recommended to use the dialog API to let the user confirm closing the\n // application.\n-  e.returnValue = false // equivalent to ...
2017-08-25T21:24:50
facebook/react
6b593083edc55d0c37b5e074f416f0b0613fda33
fa8961118a89d660ffb50ad5b0f635c1b55ae134
check that console exists before warning Console is undefined in earlier versions of IE when it is not open. This causes an uncaught exception, and breaks applications in these versions of IE when attempting to warn when the console is closed. Admittedly, console will usually be open when testing in development, but ...
[ { "path": "src/vendor/core/warning.js", "patch": "@@ -45,7 +45,9 @@ if (__DEV__) {\n if (!condition) {\n var argIndex = 0;\n var message = 'Warning: ' + format.replace(/%s/g, () => args[argIndex++]);\n- console.warn(message);\n+ if (typeof console !== 'undefined') {\n+ conso...
2015-03-04T15:43:20
golang/go
fbf763fd1d6be3c162ea5ff3c8843171ef937c3a
531ba0c8aae9efe25e33bf0bfa40f4941d8c5ab8
net: unify TCP keepalive behavior CL 107196 introduced a default TCP keepalive interval for Dialer and TCPListener (used by both ListenConfig and ListenTCP). Leaving DialTCP out was likely an oversight. DialTCP's documentation says it "acts like Dial". Therefore it's natural to also expect DialTCP to enable TCP keepa...
[ { "path": "src/net/dial.go", "patch": "@@ -437,21 +437,7 @@ func (d *Dialer) DialContext(ctx context.Context, network, address string) (Conn\n \t\tprimaries = addrs\n \t}\n \n-\tc, err := sd.dialParallel(ctx, primaries, fallbacks)\n-\tif err != nil {\n-\t\treturn nil, err\n-\t}\n-\n-\tif tc, ok := c.(*TCPCo...
2022-11-10T08:20:29
vercel/next.js
a1610fecd8ad090e3bf5040e8b7a5dbb37ef4d20
43227c0dd50348f19cc38376c277927145429c23
Fix basic-app benchmark application (#60842) Fairly basic PR that just fixes the `basic-app` benchmark application. The api route was throwing an error since it wasn't returning a `Response`, and renamed some `pages/` directory routes so they become available.
[ { "path": "bench/basic-app/app/api/app/route.js", "patch": "@@ -1,5 +1,5 @@\n export function GET() {\n- return { name: 'John Doe' }\n+ return Response.json({ name: 'John Doe' })\n }\n \n export const dynamic = 'force-dynamic'", "additions": 1, "deletions": 1, "language": "JavaScript" } ]
2024-01-21T02:35:20
nodejs/node
a7572d1422488231c65f1195bb6f97367e03da74
565d9939684c21ea9d121eb77ced43592b73e7c3
doc: fix broken markdown/display in cli.html The `<` character is interpreted as the start of an HTML tag, making the word `address` not render and the rest of the document rendered with a grey background and in italics. Use `&lt;` instead. PR-URL: https://github.com/nodejs/node/pull/34892 Reviewed-By: Luigi Pinca <l...
[ { "path": "doc/api/cli.md", "patch": "@@ -887,14 +887,14 @@ Print short summaries of calls to [`Atomics.wait()`][] to stderr.\n The output could look like this:\n \n ```text\n-(node:15701) [Thread 0] Atomics.wait(<address> + 0, 1, inf) started\n-(node:15701) [Thread 0] Atomics.wait(<address> + 0, 1, inf) di...
2020-08-23T17:37:58
electron/electron
65eb4e1994ca3b7cebf93775402aba9a929fc869
f984bd2ff5301421292d612aeaa1e1be28ce6bb8
fix compile error
[ { "path": "atom/renderer/renderer_client_base.cc", "patch": "@@ -202,9 +202,9 @@ void RendererClientBase::AddSupportedKeySystems(\n v8::Local<v8::Context> RendererClientBase::GetContext(\n blink::WebFrame* frame, v8::Isolate* isolate) {\n if (isolated_world())\n- return frame->worldScriptContext(is...
2017-08-24T21:31:25
facebook/react
e8ffb80586288acba07d8782b6d8b2459e86ac1d
e114988a2c7e9d60690d1332f1ee49775cce4eee
[lint] fix errors from new test
[ { "path": "vendor/fbtransform/transforms/__tests__/jsx-test.js", "patch": "@@ -9,6 +9,8 @@\n * @emails react-core\n */\n \n+'use strict';\n+\n require('mock-modules').autoMockOff();\n \n describe('jsx', function() {\n@@ -138,4 +140,3 @@ describe('jsx', function() {\n expect(state.g.buffer).toBe('/*com...
2015-03-03T19:23:45
nodejs/node
565d9939684c21ea9d121eb77ced43592b73e7c3
c6b96895cc74bc6bd658b4c6d5ea152d6e686d20
errors: use `ErrorPrototypeToString` from `primordials` object PR-URL: https://github.com/nodejs/node/pull/34891 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Lui...
[ { "path": "lib/internal/errors.js", "patch": "@@ -13,6 +13,7 @@\n const {\n ArrayIsArray,\n Error,\n+ ErrorPrototypeToString,\n JSONStringify,\n Map,\n MathAbs,\n@@ -47,7 +48,6 @@ const kTypes = [\n ];\n \n const MainContextError = Error;\n-const ErrorToString = Error.prototype.toString;\n const ...
2020-08-23T15:40:00
vercel/next.js
7b9e711ed50a7a7615c1220fbb072cb12f557dde
f6da5a0fe2aba64ed68fcf1f08b246bc30ed3bf2
Report HMR latency as trace spans for Turbopack (#60799) This: - Makes makes reporting hmr changes more accurate by emitting an explicit start event and lowering the aggregation period for reporting completed turbo tasks - Parameterizes the aggregation period, allowing JS subscribers to request different intervals, su...
[ { "path": "packages/next-swc/crates/napi/src/next_api/project.rs", "patch": "@@ -696,6 +696,32 @@ pub fn project_hmr_identifiers_subscribe(\n )\n }\n \n+enum UpdateMessage {\n+ Start,\n+ End(UpdateInfo),\n+}\n+\n+#[napi(object)]\n+struct NapiUpdateMessage {\n+ pub update_type: String,\n+ pub...
2024-01-19T23:34:17
electron/electron
bf07c5aebd1e12d36231f627982003ba8e14af2f
485b9099f15424886090baf3e4bf1fb34a60a31c
fix contextIsolation issue while webPreference sandbox is on contextIsolation didn't work while sandbox is on. The fix is contextIsolation picked up while sandbox on
[ { "path": "atom/renderer/atom_renderer_client.cc", "patch": "@@ -41,8 +41,6 @@ AtomRendererClient::AtomRendererClient()\n : node_integration_initialized_(false),\n node_bindings_(NodeBindings::Create(NodeBindings::RENDERER)),\n atom_bindings_(new AtomBindings(uv_default_loop())) {\n- isolat...
2017-07-28T00:08:24
golang/go
531ba0c8aae9efe25e33bf0bfa40f4941d8c5ab8
eca7754148613dfbf542bbfac5392b5f0d85ea6a
net/http: build error chains in transport that can be unwrapped In some places of the HTTP transport errors were constructed that wrapped other errors without providing the ability to call `errors.Unwrap` on them to get the underlying error. These places have been fixed to use `%w` when using `fmt.Errorf` or to implem...
[ { "path": "src/net/http/transport.go", "patch": "@@ -2057,7 +2057,7 @@ func (pc *persistConn) mapRoundTripError(req *transportRequest, startBytesWritte\n \t\tif pc.nwrite == startBytesWritten {\n \t\t\treturn nothingWrittenError{err}\n \t\t}\n-\t\treturn fmt.Errorf(\"net/http: HTTP/1.x transport connection ...
2022-11-09T10:37:28
vercel/next.js
6217e3fb1097552d6056e36fab7bbfa0dcdbde5d
dc109bf6c9197f41736e5e26eb86411f305900cc
chore: fix core team members (#60900) ### What? Removing an outdated entry, and fixing the casing of another so Workflow runs are auto-approved. ### Why? https://github.com/vercel/next.js/pull/60574 fails the CI Workflow Run, because of a mismatch in GitHub actor and the actual username set in `labeler.jso...
[ { "path": ".github/labeler.json", "patch": "@@ -40,15 +40,12 @@\n { \"type\": \"user\", \"pattern\": \"molebox\" },\n { \"type\": \"user\", \"pattern\": \"delbaoliveira\" },\n { \"type\": \"user\", \"pattern\": \"lydiahallie\" },\n- { \"type\": \"user\", \"pattern\": \"steven-tey\" },...
2024-01-19T18:19:32
golang/go
1309f0c51d730c87337a167acb70c86da4bb04be
d931b3b771ebd9cc0f77d3a002ff6cfb9f4d9c8b
os: document that WriteFile is not atomic Fixes #56173 Change-Id: I03a3ad769c99c0bdb78b1d757173d630879fd4dd GitHub-Last-Rev: e3e31fa0b95aba363b13c45f562e3a4c8b31f2cc GitHub-Pull-Request: golang/go#56282 Reviewed-on: https://go-review.googlesource.com/c/go/+/443495 TryBot-Result: Gopher Robot <gobot@golang.org> Review...
[ { "path": "src/os/file.go", "patch": "@@ -710,6 +710,8 @@ func ReadFile(name string) ([]byte, error) {\n // WriteFile writes data to the named file, creating it if necessary.\n // If the file does not exist, WriteFile creates it with permissions perm (before umask);\n // otherwise WriteFile truncates it bef...
2022-11-10T00:04:07
facebook/react
7ebf7c46f5521e5e03eefc9f5e0899131bc0a7db
de1f8682d506775b14276fcf111933308ec910ca
ReactFragment counts as a node without warning Fixes #3286.
[ { "path": "src/addons/ReactFragment.js", "patch": "@@ -141,7 +141,8 @@ var ReactFragment = {\n warning(\n didWarnForFragment(fragment),\n 'Any use of a keyed object should be wrapped in ' +\n- 'React.addons.createFragment(object) before passed as a child.'\n+ ...
2015-03-01T19:49:17
nodejs/node
62443686d9cf0915186d696ba48a0ae1f4926625
010383a1745a989d27d3462a3beb9fc159000cb4
deps: upgrade to libuv 1.39.0 Notable changes: - uv_metrics_idle_time() and UV_METRICS_IDLE_TIME have been added for measuring the amount of time the event loop spends idle. - uv_udp_using_recvmmsg() has been added to determine if a buffer is large enough for multiple datagrams should be allocated in the alloca...
[ { "path": "deps/uv/.mailmap", "patch": "@@ -27,6 +27,7 @@ Maciej Małecki <maciej.malecki@notimplemented.org> <me@mmalecki.com>\n Marc Schlaich <marc.schlaich@googlemail.com> <marc.schlaich@gmail.com>\n Michael <michael_dawson@ca.ibm.com>\n Michael Neumann <mneumann@think.localnet> <mneumann@ntecs.de>\n+Mich...
2020-08-25T00:34:47
rust-lang/rust
56bc9c35b9f625154f42f53f4b1e7843f02533ad
80f4a79023739d092dd0d504e0a85fe1ede1e925
Fix ExprStmt delete semicolon for toggle_macro_delimiter
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/toggle_macro_delimiter.rs", "patch": "@@ -1,6 +1,6 @@\n use ide_db::assists::AssistId;\n use syntax::{\n- AstNode, T,\n+ AstNode, SyntaxToken, T,\n ast::{self, syntax_factory::SyntaxFactory},\n };\n \n@@ -39,7 +39,7 @@ pub(crate) f...
2025-08-25T08:44:42
golang/go
d931b3b771ebd9cc0f77d3a002ff6cfb9f4d9c8b
fd0c0db4a411eae0483d1cb141e801af401e43d3
net: add support for /etc/hosts aliases using go resolver It adds support for /etc/hosts aliases and fixes the difference between the glibc cgo and the go DNS resolver. Examples: https://pastebin.com/Fv6UcAVr Fixes #44741 Change-Id: I98c484fced900731fbad800278b296028a45f044 GitHub-Last-Rev: 3d47e44f11c350df906d0c986...
[ { "path": "src/net/dnsclient_unix.go", "patch": "@@ -559,7 +559,7 @@ func (r *Resolver) goLookupHost(ctx context.Context, name string) (addrs []strin\n func (r *Resolver) goLookupHostOrder(ctx context.Context, name string, order hostLookupOrder) (addrs []string, err error) {\n \tif order == hostLookupFilesD...
2022-11-10T18:07:57
nodejs/node
b8ab49fc53b4d6c5bbae9a639103da058beaa84a
c3d337db5d4535840cd4dfaf438d6062eec6d60c
src: fix abort on uv_loop_init() failure Fixes: https://github.com/nodejs/node/issues/34855 PR-URL: https://github.com/nodejs/node/pull/34874 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrot...
[ { "path": "src/spawn_sync.cc", "patch": "@@ -457,9 +457,17 @@ Maybe<bool> SyncProcessRunner::TryInitializeAndRunLoop(Local<Value> options) {\n SetError(UV_ENOMEM);\n return Just(false);\n }\n- CHECK_EQ(uv_loop_init(uv_loop_), 0);\n+\n+ r = uv_loop_init(uv_loop_);\n+ if (r < 0) {\n+ delete uv...
2020-08-22T08:40:05
rust-lang/rust
17c866780e4f60c4b5ce0c0925557949c9c8d8b1
ee361e8fca1c30e13e7a31cc82b64c045339d3a8
fix(std): Add __my_thread_exit stub for QNX 8 This commit adds an empty stub for the function for QNX 8 targets. This symbol is required by the unwinder but is not present, causing a linking failure when building with the standard library. Address review feedback: use whitelist for QNX versions
[ { "path": "library/std/src/sys/backtrace.rs", "patch": "@@ -113,7 +113,7 @@ unsafe fn _print_fmt(fmt: &mut fmt::Formatter<'_>, print_fmt: PrintFmt) -> fmt::\n res = bt_fmt.frame().symbol(frame, symbol);\n }\n });\n- #[cfg(target_os =...
2025-07-23T10:25:20
facebook/react
0e355fc8c47fce9dc5e43b7cfef8a1ffb98d54bb
77ec7da124216f0cf331821dd678229a970652d4
Fixed the url in community-roundup-9 using http resulted in an error, changing it to https fixes it
[ { "path": "docs/_posts/2013-10-3-community-roundup-9.md", "patch": "@@ -29,7 +29,7 @@ We organized a React hackathon last week-end in the Facebook Seattle office. 50\n \n The video will be available soon on the [JSConf EU website](http://2013.jsconf.eu/speakers/pete-hunt-react-rethinking-best-practices.html...
2015-02-27T22:43:50
golang/go
05cc8b5369b4c3571f0fb2aeed67f9229301b382
b820fb8df11e5ab4068b4ed9522a96bf52cf8b4d
go/build: omit PkgObj for packages "unsafe" and "builtin" Package "builtin" is not a real, importable package; it exists only for documentation. Package "unsafe" is not compiled into an object file from its source code; instead, imports of "unsafe" are handled specially by the compiler. (In Go 1.19.3, package "unsafe...
[ { "path": "src/cmd/go/internal/modindex/read.go", "patch": "@@ -436,7 +436,7 @@ func (rp *IndexPackage) Import(bctxt build.Context, mode build.ImportMode) (p *b\n \t\t\t\tp.PkgTargetRoot = ctxt.joinPath(p.Root, pkgtargetroot)\n \n \t\t\t\t// Set the install target if applicable.\n-\t\t\t\tif strings.ToLower...
2022-11-10T15:03:21
nodejs/node
22e3ada0c12e61d17e9bbd28a3ab456daec17d75
9c55970c332eb60046419d7854a3c7009b973b02
doc: rename module pages Using a "Modules:" prefix groups all the related pages together when using alphabetical order. Refs: https://github.com/nodejs/modules/issues/539 PR-URL: https://github.com/nodejs/node/pull/34663 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> R...
[ { "path": "doc/api/esm.md", "patch": "@@ -1,4 +1,4 @@\n-# ECMAScript modules\n+# Modules: ECMAScript modules\n \n <!--introduced_in=v8.5.0-->\n <!-- type=misc -->", "additions": 1, "deletions": 1, "language": "Markdown" }, { "path": "doc/api/index.md", "patch": "@@ -25,7 +25,6 @@\n *...
2020-08-07T08:40:45
rust-lang/rust
baff99c556a22c962c15cfb9f79a0dcb1d467b20
a1dbb443527bd126452875eb5d5860c1d001d761
Remove bug comments from Repeat variant Removed comments related to a bug in Repeat variant.
[ { "path": "compiler/rustc_middle/src/mir/syntax.rs", "patch": "@@ -1371,12 +1371,7 @@ pub enum Rvalue<'tcx> {\n \n /// Creates an array where each element is the value of the operand.\n ///\n- /// This is the cause of a bug in the case where the repetition count is zero because the value\n- //...
2025-08-25T06:49:10
facebook/react
77ec7da124216f0cf331821dd678229a970652d4
94fa077a76526cba4de064235464bae0d24047c1
Fixed the url in community-roundup-5 using http resulted in an error, changing it to https fixes it
[ { "path": "docs/_posts/2013-07-23-community-roundup-5.md", "patch": "@@ -68,7 +68,7 @@ React.renderComponent(\n \n [Domenic Denicola](http://domenicdenicola.com/) wrote a slide deck about the great applications of ES6 features and one slide shows how we could use Template Strings to compile JSX at run-time ...
2015-02-27T22:42:14
electron/electron
de67e42fc90f5065b73bb89ca5ce39648fee1be6
136857952ebf6812533a1fb1466b8cc6e4e23c1e
Update breakpad for ia32/arm fix
[ { "path": "vendor/breakpad", "patch": "@@ -1 +1 @@\n-Subproject commit c566c50d81f7b1edeaee9f11f5d07bda858d6b64\n+Subproject commit 82f0452e6b687b3c1e14e08d172b2f3fb79ae91a", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2017-08-08T13:41:49
golang/go
d33043d37dc8cc5d691ff590ebcd2fd42e356a66
271f139f17c8ec5895bde52dac4056f99768e258
cmd/compile: add ability to hash-debug on file:line, including inlining Modified the fmahash gc debug flag to use this, and modified the test to check for a hash match that includes inlining. Also made the test non-short to ensure portability. Note fma.go has been enhanced into an FMA test that requires two separate...
[ { "path": "src/cmd/compile/internal/base/hashdebug.go", "patch": "@@ -5,7 +5,10 @@\n package base\n \n import (\n+\t\"bytes\"\n \t\"cmd/internal/notsha256\"\n+\t\"cmd/internal/obj\"\n+\t\"cmd/internal/src\"\n \t\"fmt\"\n \t\"io\"\n \t\"os\"\n@@ -27,13 +30,15 @@ type hashAndMask struct {\n }\n \n type HashDe...
2022-11-07T16:02:08
nodejs/node
f5102fbcf4d959629413e7b8ddb37275286a50d8
ac3049d3312732da97a80f7db9572e846e13b7ee
http2: fix Http2Response.sendDate The `sendDate` flag was not being respected by the current implementation and the `Date` header was being sent regardless of the config. This commit fixes that and adds tests for this case. Fixes: https://github.com/nodejs/node/issues/34841 PR-URL: https://github.com/nodejs/node/pul...
[ { "path": "lib/internal/http2/compat.js", "patch": "@@ -590,6 +590,13 @@ class Http2ServerResponse extends Stream {\n throw new ERR_HTTP2_HEADERS_SENT();\n \n name = name.trim().toLowerCase();\n+\n+ if (name === 'date') {\n+ this[kState].sendDate = false;\n+\n+ return;\n+ }\n+\n ...
2020-08-20T03:01:57
vercel/next.js
dc109bf6c9197f41736e5e26eb86411f305900cc
f3e6755356cb377447a7d0752a6374c39ac58fee
chore: indicate staleness more prominently in `next info` output (#60376) ### What? Improve the `next info` output. <details> <summary>Before: </summary> <img src="https://github.com/vercel/next.js/assets/18369201/735da72f-6746-42a0-838d-e10db78b2db3"> </details> <details> <summary>After: </summary> <...
[ { "path": ".github/ISSUE_TEMPLATE/1.bug_report.yml", "patch": "@@ -40,13 +40,6 @@ body:\n placeholder: 'Following the steps from the previous section, I expected A to happen, but I observed B instead'\n validations:\n required: true\n- - type: checkboxes\n- attributes:\n- label: Ver...
2024-01-19T17:36:19
facebook/react
94fa077a76526cba4de064235464bae0d24047c1
de1f8682d506775b14276fcf111933308ec910ca
Changed the url of the video in community-round-up-4 The url was using http instead of https, which results in an error.
[ { "path": "docs/_posts/2013-07-03-community-roundup-4.md", "patch": "@@ -47,7 +47,7 @@ Over the past several weeks, members of our team, [Pete Hunt](http://www.petehun\n \n [Pete Hunt](http://www.petehunt.net/) recorded himself implementing a simple `<Blink>` tag in React.\n \n-<figure><iframe src=\"http://...
2015-02-27T22:39:17
golang/go
271f139f17c8ec5895bde52dac4056f99768e258
d3726f346925e8a6ef30b2db9de013fa314492e2
internal/types: fix the iota value in error code declarations The new "InvalidSyntaxTree" node in the error code declaration inadvertently incremented the value of iota by 1. Fix this by moving it to its own declaration. Change-Id: I34b33a8caddbbb9e41f431321ec0e5863dc15055 Reviewed-on: https://go-review.googlesource....
[ { "path": "src/internal/types/errors/codes.go", "patch": "@@ -34,7 +34,9 @@ const (\n \t// InvalidSyntaxTree occurs if an invalid syntax tree is provided\n \t// to the type checker. It should never happen.\n \tInvalidSyntaxTree Code = -1\n+)\n \n+const (\n \t// The zero Code value indicates an unset (invali...
2022-11-10T16:15:26
vercel/next.js
6d63641a517ee611453244091b7861bdda534d62
b8a6c4c696a256f75d38c15c27f75d167ce4198e
fix: add missing layer ident modifier to asset with inner assets (vercel/turbo#7028) ### Description This is causing some chunk items to be loaded twice.
[ { "path": "crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -509,6 +509,7 @@ impl Module for EcmascriptModuleAsset {\n ident.add_asset(Vc::cell(name.clone()), asset.ident());\n }\n ident.add_modifier(modifier());\n+ ident.layer = Some(self.asset_contex...
2024-01-19T15:48:17
facebook/react
de1f8682d506775b14276fcf111933308ec910ca
1c697ab1413f0db7e79de8f1a685c071128807fe
Add note about enter/leave bubbling Fixes #2826.
[ { "path": "docs/docs/ref-05-events.md", "patch": "@@ -117,6 +117,8 @@ onDragOver onDragStart onDrop onMouseDown onMouseEnter onMouseLeave\n onMouseMove onMouseOut onMouseOver onMouseUp\n ```\n \n+The `onMouseEnter` and `onMouseLeave` events propagate from the component being left to the one being entered in...
2015-02-27T00:29:18
nodejs/node
ac3049d3312732da97a80f7db9572e846e13b7ee
44e6a6af67fe5038540af73f5e3456bc29243550
doc: fix ESM/CJS wrapper example PR-URL: https://github.com/nodejs/node/pull/34853 Refs: https://github.com/nodejs/node/issues/34714 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "doc/api/esm.md", "patch": "@@ -689,6 +689,12 @@ CommonJS entry point for `require`.\n }\n ```\n \n+The above example uses explicit extensions `.mjs` and `.cjs`.\n+If your files use the `.js` extension, `\"type\": \"module\"` will cause such files\n+to be treated as ES modules, just as `\"type\": ...
2020-08-20T13:44:38
golang/go
d3726f346925e8a6ef30b2db9de013fa314492e2
a11cd6f69aec5c783656601fbc7b493e0d63f605
cmd/compile/internal/importer: turn off debugging output Also, remove `debug` constant. Was not used. Follow-up on CL 442303. Fixes #56681. Change-Id: Ia1499511ba553670617bcb9b7c699412e8df0669 Reviewed-on: https://go-review.googlesource.com/c/go/+/449238 Reviewed-by: Robert Griesemer <gri@google.com> TryBot-Result: ...
[ { "path": "src/cmd/compile/internal/importer/gcimporter.go", "patch": "@@ -20,9 +20,6 @@ import (\n \t\"cmd/compile/internal/types2\"\n )\n \n-// debugging/development support\n-const debug = false\n-\n func lookupGorootExport(pkgpath, srcRoot, srcDir string) (string, bool) {\n \tpkgpath = filepath.ToSlash(...
2022-11-10T00:41:05
rust-lang/rust
40ff07622e5122aecc2cc03a61152782bc2a0568
03978193a5900c0d4767891eee408a54aaf1915c
fix: `never_loop` forget to remove break in nested loop
[ { "path": "clippy_lints/src/loops/never_loop.rs", "patch": "@@ -22,7 +22,10 @@ pub(super) fn check<'tcx>(\n for_loop: Option<&ForLoop<'_>>,\n ) {\n match never_loop_block(cx, block, &mut Vec::new(), loop_id) {\n- NeverLoopResult::Diverging { ref break_spans } => {\n+ NeverLoopResult::D...
2025-07-27T10:06:59
facebook/react
feae9ad0a82b3e4f5755a8dc5607005c4cb0441b
1c697ab1413f0db7e79de8f1a685c071128807fe
Add regression test for scry order Fixes #2978.
[ { "path": "src/test/__tests__/ReactTestUtils-test.js", "patch": "@@ -152,4 +152,31 @@ describe('ReactTestUtils', function() {\n expect(scryResults.length).toBe(0);\n \n });\n+\n+ it('traverses children in the correct order', function() {\n+ var container = document.createElement('div');\n+\n+ R...
2015-02-26T23:54:27
vercel/next.js
2de7f953b16b0834f14f64f42d0aab1f6b99f9c9
0fc29480fc7635333ff23c2b1fc1fce7a45902b9
correct description of `skipMiddlewareUrlNormalize` in advanced middleware flags (#60841) I think there's some form of typographical error in the `skipMiddlewareUrlNormalize` line under the advanced middleware flags section of the docs. This is the line from the docs [Source link](https://nextjs.org/docs/app/bui...
[ { "path": "docs/02-app/01-building-your-application/01-routing/13-middleware.mdx", "patch": "@@ -413,7 +413,7 @@ export default async function middleware(req) {\n }\n ```\n \n-`skipMiddlewareUrlNormalize` allows disabling the URL normalizing Next.js does to make handling direct visits and client-transitions...
2024-01-19T06:06:42
nodejs/node
2a807372782470698ec8ecb216589c30ff0723cf
c6e1edcc2802224cb9b312e9051e6bcdfc7935e4
quic: fixups after ngtcp2/nghttp3 update Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/34752 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/quic/node_quic_crypto.cc", "patch": "@@ -164,13 +164,22 @@ bool GenerateRetryToken(\n return false;\n }\n \n+ ngtcp2_crypto_aead_ctx aead_ctx;\n+ if (NGTCP2_ERR(ngtcp2_crypto_aead_ctx_encrypt_init(\n+ &aead_ctx,\n+ &ctx.aead,\n+ token_key,\n+ ivlen)...
2020-08-12T19:35:08
golang/go
c3d444d09852981daa6ed9e0ba65d90c89a7d917
d2aa787f2a925a97dad11b1acb2a065f52b097f8
os/user: allocate buffers in Go memory, not C memory Since the first implementation of os/user, it's called C malloc to allocate memory for buffers. However, the buffers are just used for temporary storage, and we can just a []byte instead. To make this work without causing cgo pointer errors, we move the pwd and grp...
[ { "path": "src/os/user/cgo_lookup_unix.go", "patch": "@@ -22,24 +22,36 @@ import (\n #include <grp.h>\n #include <stdlib.h>\n \n-static int mygetpwuid_r(int uid, struct passwd *pwd,\n-\tchar *buf, size_t buflen, struct passwd **result) {\n-\treturn getpwuid_r(uid, pwd, buf, buflen, result);\n+static struct ...
2022-11-10T04:55:17
facebook/react
d5fa14de1a7babf4e80288f6914e94d160667af9
1c697ab1413f0db7e79de8f1a685c071128807fe
Don't use undefined as parent name in key warning Fixes #3222.
[ { "path": "src/classic/element/ReactElementValidator.js", "patch": "@@ -134,7 +134,8 @@ function validatePropertyKey(name, element, parentType) {\n */\n function warnAndMonitorForKeyUse(message, element, parentType) {\n var ownerName = getCurrentOwnerDisplayName();\n- var parentName = parentType.display...
2015-02-26T23:20:37
vercel/next.js
3734ae889047c1dd9efafd75435408fd2a291833
f000352723bf9298380ab1238ed370c99f57d3d8
fix: added @sentry/profiling-node to sep list to prevent build/bundle breakage (#60855) Issue: https://github.com/vercel/next.js/issues/60853 ### What? Added `@sentry/profiling-node` to the server-external-package object so that sentry users who want to use this package don't have to manually add this package in...
[ { "path": "packages/next/src/lib/server-external-packages.json", "patch": "@@ -3,13 +3,14 @@\n \"@aws-sdk/s3-presigned-post\",\n \"@blockfrost/blockfrost-js\",\n \"@highlight-run/node\",\n- \"@libsql/client\",\n \"@jpg-store/lucid-cardano\",\n+ \"@libsql/client\",\n \"@mikro-orm/core\",\n \"@m...
2024-01-19T05:16:03
nodejs/node
acd423b45edad27427a6c4faa5bbed624983ae51
f862bcb6f97f96c292369efaf7da8d57dc3d4bdb
n-api: handle weak no-finalizer refs correctly When deleting a weak reference that has no finalizer we must not defer deletion until the non-existent finalizer gets called. Fixes: https://github.com/nodejs/node/issues/34731 Signed-off-by: Gabriel Schulhof <gabriel.schulhof@intel.com> PR-URL: https://github.com/nodej...
[ { "path": "src/js_native_api_v8.cc", "patch": "@@ -228,9 +228,10 @@ class RefBase : protected Finalizer, RefTracker {\n // from one of Unwrap or napi_delete_reference.\n //\n // When it is called from Unwrap or napi_delete_reference we only\n- // want to do the delete if the finalizer has already run...
2020-08-19T06:00:37
golang/go
db259cdd80eff527e8f344d678031c516167d258
cb6e4f08c2e760c4eb90f3ed50eca3177b7ff6ff
cmd/go: cache compiler flag info When you run 'go env' or any command that needs to consider what the default gcc flags are (such as 'go list net' or 'go list <any package with net as a dependency>'), the go command runs gcc (or clang) a few times to see what flags are available. These runs can be quite expensive on ...
[ { "path": "src/cmd/go/internal/envcmd/env.go", "patch": "@@ -58,6 +58,7 @@ For more about environment variables, see 'go help environment'.\n func init() {\n \tCmdEnv.Run = runEnv // break init cycle\n \tbase.AddChdirFlag(&CmdEnv.Flag)\n+\tbase.AddBuildFlagsNX(&CmdEnv.Flag)\n }\n \n var (", "additions":...
2022-02-11T22:17:54
facebook/react
ce7190537ff50bc544e2fb246f7c4eb0f00e228b
63146e1f162195c3911c784227eeea7123f2e4da
beta1 blog entry: Fix CoffeeScript example Fix the constructor call and make code more idiomatic.
[ { "path": "docs/_posts/2015-01-27-react-v0.13.0-beta-1.md", "patch": "@@ -135,17 +135,20 @@ You can also use CoffeeScript classes:\n div = React.createFactory 'div'\n \n class Counter extends React.Component\n- @propTypes =\n- initialCount: React.PropTypes.number\n- @defaultProps =\n- initialCount: ...
2015-02-25T17:46:32
electron/electron
70fd42808e0017b34e2bc48a87f96218890debbd
19323c88f90c92936ac717f3b05aa664a6305a07
Fix build on Linux
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -309,9 +309,11 @@ NativeWindowViews::NativeWindowViews(\n // we should check whether setting it in InitParams can work.\n window_->set_frame_type(views::Widget::FrameType::FRAME_TYPE_FORCE_NATIVE);\n window_->FrameTypeChanged();\n+#if...
2017-08-21T08:42:45
facebook/react
63146e1f162195c3911c784227eeea7123f2e4da
72694228258d55af02912673a16865c716972319
v0.13 RC blog post Note: we need to manually specify date in these files so that the sort order is correct (2 posts on the same day). Otherwise it will just be ABC order, which is wrong. Closes: #3256
[ { "path": "docs/_posts/2015-02-24-react-v0.13-rc1.md", "patch": "@@ -0,0 +1,78 @@\n+---\n+title: \"React v0.13 RC\"\n+author: Paul O'Shannessy\n+date: 2015-02-24 14:00\n+---\n+\n+Over the weekend we pushed out our first (and hopefully only) release candidate for React v0.13!\n+\n+We've talked a little bit a...
2015-02-24T21:55:37
golang/go
e48fc2665e2e95eddea612fa315403d50c7beb2b
89332e037aeaf1223de4c24805719f733e4c0977
crypto: allow hash.Hash for OAEP and MGF1 to be specified independently crypto/rsa assumes RSA OAEP uses the same hash to be used for both the label and the mask generation function. However, implementations in other languages, such as Java and Python, allow these parameters to be specified independently. This change...
[ { "path": "api/next/19974.txt", "patch": "@@ -0,0 +1 @@\n+pkg crypto/rsa, type OAEPOptions struct, MGFHash crypto.Hash #19974", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "src/crypto/internal/boring/notboring.go", "patch": "@@ -73,7 +73,7 @@ func VerifyECDS...
2022-07-21T18:19:42
vercel/next.js
4f07843de58afd581996809841e07687b23a6d8f
cb4241798553424098456d2e2aa8c23481052098
docs: another fix for code block (#60856)
[ { "path": "errors/missing-suspense-with-csr-bailout.mdx", "patch": "@@ -1,5 +1,5 @@\n ---\n-title: Missing Suspense with CSR Bailout\n+title: Missing Suspense boundary with useSearchParams\n ---\n \n #### Why This Error Occurred\n@@ -10,7 +10,29 @@ Reading search parameters through `useSearchParams()` witho...
2024-01-19T00:09:11
nodejs/node
796317fb6552053846a96d02d6b36113cb7accc6
9fd71a9964a9fdfd3647ae99097e10df634bb1ed
test: fix test-cluster-net-listen-relative-path.js to run in / test-cluster-net-listen-relative-path fails if run from the root directory on POSIX because the socket filename isn't quite long enough. Increase it by 2 so that the path length always exceeds 100 characters. PR-URL: https://github.com/nodejs/node/pull/34...
[ { "path": "test/parallel/test-cluster-net-listen-relative-path.js", "patch": "@@ -17,7 +17,7 @@ const tmpdir = require('../common/tmpdir');\n \n // Choose a socket name such that the absolute path would exceed 100 bytes.\n const socketDir = './unix-socket-dir';\n-const socketName = 'A'.repeat(100 - socketDi...
2020-08-18T05:33:22
electron/electron
19323c88f90c92936ac717f3b05aa664a6305a07
c0331673dac6f82ad2d0e282aa0df3bb5a166a9d
win: Fix "thickFrame: false" not working for normal window
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -304,11 +304,14 @@ NativeWindowViews::NativeWindowViews(\n ::SetWindowLong(GetAcceleratedWidget(), GWL_EXSTYLE, ex_style);\n #endif\n \n- // TODO(zcbenz): This was used to force using native frame on Windows 2003, we\n- // should check whethe...
2017-08-21T08:21:59
facebook/react
72694228258d55af02912673a16865c716972319
888daccf9f4c58a93a0947941191930bf2cadbeb
Fix typo (cherry picked from commit 4d90b9bdf3fc4ccfd2ccbaf9a590b16f06746b55)
[ { "path": "docs/_posts/2015-02-24-streamlining-react-elements.md", "patch": "@@ -23,7 +23,7 @@ The problem is that we don’t have a convenient way to tell when you’re done\n \n ### Problem: Mutating Props You Don’t Own\n \n-If you mutate something, you destroy the original value. Therefore, there is nothing ...
2015-02-24T20:46:15
golang/go
89332e037aeaf1223de4c24805719f733e4c0977
bef5eca118fab6b7dd56c31fd1957c5edc214021
encoding/xml: error when more than one colon in qualified names Add test. Fixes #20396 Change-Id: I89e9013eb338f831e1908e390b284794df78fb6b Reviewed-on: https://go-review.googlesource.com/c/go/+/103875 Auto-Submit: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Ian Lanc...
[ { "path": "src/encoding/xml/xml.go", "patch": "@@ -1167,7 +1167,7 @@ func (d *Decoder) nsname() (name Name, ok bool) {\n \t\treturn\n \t}\n \tif strings.Count(s, \":\") > 1 {\n-\t\tname.Local = s\n+\t\treturn name, false\n \t} else if space, local, ok := strings.Cut(s, \":\"); !ok || space == \"\" || local ...
2022-07-23T07:11:32
rust-lang/rust
ca42d0775a33ae6f977e4cd42fab17f9aced6a59
80f4a79023739d092dd0d504e0a85fe1ede1e925
Fix rust-analyzer-contributors reference Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com>
[ { "path": "src/tools/rust-analyzer/docs/book/src/contributing/README.md", "patch": "@@ -276,7 +276,7 @@ There are two sets of people with extra permissions:\n Feel free to request a review or assign any PR to a reviewer with the relevant expertise to bring the work to their attention.\n Don't feel press...
2025-08-24T15:03:02
vercel/next.js
1cafe945ab11e4e4965b43dc488769f7798cad46
fcfa45cd8e67ef84b5833bfe17710a452f3114b3
docs: fix JS/TS code block (#60854) And also making it more clear it doesn't have to be two separate files.
[ { "path": "errors/missing-suspense-with-csr-bailout.mdx", "patch": "@@ -10,28 +10,25 @@ Reading search parameters through `useSearchParams()` without a Suspense boundar\n \n Ensure that calls to `useSearchParams()` are wrapped in a Suspense boundary.\n \n-```tsx title=\"app/page.tsx\"\n-import { SearchBar }...
2024-01-18T23:48:24
nodejs/node
9fd71a9964a9fdfd3647ae99097e10df634bb1ed
9d81d1266cc6062418812357115cd647a473bfbc
doc: fix bulleted list punctuation in BUILDING.md Remove/add periods as appropriate in bulleted lists in BUILDING.md. PR-URL: https://github.com/nodejs/node/pull/34849 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -237,7 +237,7 @@ test with Python 3.\n * GNU Make 3.81 or newer\n * Python (see note above)\n * Python 2.7\n- * Python 3.5, 3.6, 3.7, and 3.8.\n+ * Python 3.5, 3.6, 3.7, and 3.8\n \n Installation via Linux package manager can be achieved with:\n \n@@ -256,7 +256,7 @...
2020-08-20T02:16:44
electron/electron
39c2a4721bcbe9c0d6dc40bda8f611c3f12f8da9
15db4ee4506068615a48d5e02d0915c68a253523
:memo: Fix markdown syntax Also fix some grammar and syntax typing mistakes. [ci skip]
[ { "path": "docs-translations/fr-FR/tutorial/quick-start.md", "patch": "@@ -13,7 +13,7 @@ Chromium, contrôlé par JavaScript.\n ### Processus principal\n \n Dans Electron, le processus qui exécute le script `main` de` package.json`\n-est appelé __ le processus principal__. Le script qui s'exécute dans le\n+es...
2017-08-19T20:29:34
rust-lang/rust
5ddf6846d5659ed28e1ea25e273e4c84082cf730
80f4a79023739d092dd0d504e0a85fe1ede1e925
fix: Masquerade as nightly cargo when invoking flycheck with `-Zscript`
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs", "patch": "@@ -588,6 +588,7 @@ impl FlycheckActor {\n cmd.arg(\"--manifest-path\");\n cmd.arg(manifest_path);\n if manifest_path.extension() == Some(\"rs\") {\n+ ...
2025-08-24T14:17:23
golang/go
bef5eca118fab6b7dd56c31fd1957c5edc214021
e70f74b0aa125a4e017f2b0a81e10ac41d0fd71c
encoding/xml: disallow empty namespace when prefix is set Non-regression tests are added. Fixes #8068 Change-Id: Icb36c910bbf4955743b7aa8382002b2d9246fadc Reviewed-on: https://go-review.googlesource.com/c/go/+/105636 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.com> Ru...
[ { "path": "src/encoding/xml/xml.go", "patch": "@@ -302,6 +302,10 @@ func (d *Decoder) Token() (Token, error) {\n \t\t// the translations first.\n \t\tfor _, a := range t1.Attr {\n \t\t\tif a.Name.Space == xmlnsPrefix {\n+\t\t\t\tif a.Value == \"\" {\n+\t\t\t\t\td.err = d.syntaxError(\"empty namespace with p...
2018-08-20T18:29:30
vercel/next.js
1941fc1672697f158ad7fcae52dc94c0244e7c8c
a90e5d6e4bdfb98a8ce2264a92e161b2fb52a7bf
docs: Improve `useSearchParams` bailout error page (#60852)
[ { "path": "errors/missing-suspense-with-csr-bailout.mdx", "patch": "@@ -4,13 +4,52 @@ title: Missing Suspense with CSR Bailout\n \n #### Why This Error Occurred\n \n-Certain methods like `useSearchParams()` opt Next.js into client-side rendering. Without a suspense boundary, this will opt the entire page in...
2024-01-18T23:12:50
nodejs/node
de565ad1b2de6d173a9ea5e1932e3d85472d4c23
03293aa3a1e810c5ae6938cae41bf62ae418bb5f
process: correctly parse Unicode in NODE_OPTIONS Fixes an issue on Windows, where Unicode in NODE_OPTIONS was not parsed correctly. Fixes: https://github.com/nodejs/node/issues/34399 PR-URL: https://github.com/nodejs/node/pull/34476 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell...
[ { "path": "src/node_credentials.cc", "patch": "@@ -57,8 +57,20 @@ bool SafeGetenv(const char* key, std::string* text, Environment* env) {\n \n {\n Mutex::ScopedLock lock(per_process::env_var_mutex);\n- if (const char* value = getenv(key)) {\n- *text = value;\n+\n+ size_t init_sz = 256;\n+ ...
2020-07-22T10:55:11
facebook/react
99d23a54bc5186a309fb92ba1c24d5796791ad7f
2f20091520b168e7563a577e87a52d7afef4d879
[Blog] Fix post code snippet display I think nokogiri (is that what we use?) accidentally escaped this snippet. Simply putting spaces between braces fixes it.
[ { "path": "docs/_posts/2015-02-24-streamlining-react-elements.md", "patch": "@@ -162,7 +162,7 @@ In 0.13 we introduced a new callback-refs API that doesn’t suffer from these p\n In React 0.12, and earlier, you could use keyed objects to provide an external key to an element or a set. This pattern isn’t actu...
2015-02-24T20:22:25
electron/electron
869567208261a5c82e55fd03c86bc9f9e627bcb9
15db4ee4506068615a48d5e02d0915c68a253523
fix typo
[ { "path": "docs-translations/jp/api/session.md", "patch": "@@ -187,7 +187,7 @@ cookieの有効期限をUNIX時間で何秒かを示します。セッションc\n \n `pacScript` と `proxyRules`が一緒に渡されたら、`proxyRules`オプションは無視され、`pacScript`設定が適用されます。\n \n- `proxyRules`はつふぃのルールに従います。\n+ `proxyRules`は次のルールに従います。\n \n ```\n proxyRules = schemeProxies[\";\"<sch...
2017-08-19T06:37:07
rust-lang/rust
03505e815c9c3f159febcd57e7d6dca19b0cc605
cdab4cc90ead3845ac3c78a3c6a2a01299281684
Fix rustc test suite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -62,7 +62,7 @@ rm -r tests/run-make/embed-source-dwarf # embedding sources in debuginfo\n rm -r tests/run-make/used-proc-macro # used(linker) isn't supported yet\n rm tests/ui/linking/no-gc-encapsulation-symbols.rs # same\n rm tests/ui/attributes/fn-alig...
2025-08-24T13:49:04
golang/go
61c57575cd01940d06a327ce61b8923bf4a7553a
be9d78c9c5905fbc10d8cd6a4714dd4ad1c91674
os: remove special casing of NUL in Windows file operations Some file operations, notably Stat and Mkdir, special cased their behavior when operating on a file named "NUL" (case-insensitive). This check failed to account for the many other names of the NUL device, as well as other non-NUL device files: "./nul", "//./n...
[ { "path": "src/os/file.go", "patch": "@@ -254,9 +254,6 @@ func (f *File) WriteString(s string) (n int, err error) {\n // bits (before umask).\n // If there is an error, it will be of type *PathError.\n func Mkdir(name string, perm FileMode) error {\n-\tif runtime.GOOS == \"windows\" && isWindowsNulName(name...
2022-11-09T00:10:47
vercel/next.js
a90e5d6e4bdfb98a8ce2264a92e161b2fb52a7bf
75f73fe93dab8ebc74b75e8cac9886a65598e9c8
Fix last stable tag for release stats (#60850) x-ref: https://github.com/vercel/next.js/actions/runs/7576301894/job/20635069339 Closes NEXT-2159
[ { "path": ".github/actions/next-stats-action/src/prepare/repo-setup.js", "patch": "@@ -27,7 +27,9 @@ module.exports = (actionInfo) => {\n )\n }\n // last stable tag will always be 1 patch less than canary\n- return `${major}.${minor}.${Number(patch) - 1}`\n+ return `${major}.${...
2024-01-18T22:50:31
facebook/react
29f6c7e774d4f6bcfadd9f8eabefde7014beaf3d
44d91295cb1ad52852cd687ea8182597b969bed3
Fix comment to reflect the new (non-deprecated) way of accessing a class type.
[ { "path": "src/classic/element/ReactElement.js", "patch": "@@ -203,7 +203,7 @@ ReactElement.createElement = function(type, config, children) {\n ReactElement.createFactory = function(type) {\n var factory = ReactElement.createElement.bind(null, type);\n // Expose the type on the factory and the prototyp...
2015-02-24T19:18:17
golang/go
be9d78c9c5905fbc10d8cd6a4714dd4ad1c91674
575964d42c7b3001c09f2676d0ee9d520debb5eb
path/filepath: detect all forms of \\ volume paths on Windows Previously, the volumeNameLen function checked for UNC paths starting with two slashes, a non-'.' character, and another slash. This misses volume names such as "\\.\C:\". The previous check for volume names rejects paths beginning with "\\.". This is inco...
[ { "path": "src/path/filepath/path.go", "patch": "@@ -91,7 +91,7 @@ func Clean(path string) string {\n \tvolLen := volumeNameLen(path)\n \tpath = path[volLen:]\n \tif path == \"\" {\n-\t\tif volLen > 1 && originalPath[1] != ':' {\n+\t\tif volLen > 1 && os.IsPathSeparator(originalPath[0]) && os.IsPathSeparato...
2022-10-19T21:41:03
vercel/next.js
75f73fe93dab8ebc74b75e8cac9886a65598e9c8
16e7a5bd9323a49a0b3770a6636bfe9970af5fd1
Update build worker warning to use debug (#60847) Since we are enabling `webpackBuildWorker` by default now we should move this warning to debug since it can be confusing without additional context. x-ref: [slack thread](https://vercel.slack.com/archives/C04KC8A53T7/p1705612748627769?thread_ts=1705599489.811039&...
[ { "path": "packages/next/src/build/webpack-build/index.ts", "patch": "@@ -58,7 +58,7 @@ async function webpackBuildWithWorker(\n }[]) {\n worker._child.on('exit', (code, signal) => {\n if (code || (signal && signal !== 'SIGINT')) {\n- console.error(\n+ debug(\n ...
2024-01-18T22:35:13
rust-lang/rust
0415c11726b80534deb06fba1b210c40f1968115
e6eb52121365920fd112d9a3ed52c82d682b3944
Directly raise fatal errors inside the codegen backends As opposed to passing it around through Result.
[ { "path": "src/back/lto.rs", "patch": "@@ -29,7 +29,7 @@ use rustc_codegen_ssa::back::write::{CodegenContext, FatLtoInput};\n use rustc_codegen_ssa::traits::*;\n use rustc_codegen_ssa::{ModuleCodegen, ModuleKind, looks_like_rust_object_file};\n use rustc_data_structures::memmap::Mmap;\n-use rustc_errors::{D...
2025-08-24T10:47:04
electron/electron
81f7b422e4d4f2835345c658492aa6869ddaaffa
ac6a44f0acea5726081bab903891930e5e9d2eb0
:memo: Fix desktopCapturer example (#10303) [ci skip] Based on MDN example: https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia#Examples
[ { "path": "docs/api/desktop-capturer.md", "patch": "@@ -28,14 +28,18 @@ desktopCapturer.getSources({types: ['window', 'screen']}, (error, sources) => {\n maxHeight: 720\n }\n }\n- }, handleStream, handleError)\n+ })\n+ .then((stream) => handleStream(stream))\n+ ...
2017-08-18T19:32:03
golang/go
575964d42c7b3001c09f2676d0ee9d520debb5eb
0521a12401887a0e84c1c913d1af50c647efaf8b
cmd/go: improve handling of os.DevNull on Windows The "go test" and "go build" commands have special-case behavior when passed "-o /dev/null". These checks are case-sensitive and assume that os.DevNull is an absolute path. Windows filesystems are case-insensitive and os.DevNull is NUL, which is not an absolute path. ...
[ { "path": "src/cmd/go/internal/base/path.go", "patch": "@@ -7,6 +7,7 @@ package base\n import (\n \t\"os\"\n \t\"path/filepath\"\n+\t\"runtime\"\n \t\"strings\"\n \t\"sync\"\n )\n@@ -54,3 +55,17 @@ func IsTestFile(file string) bool {\n \t// We don't cover tests, only the code they test.\n \treturn strings.H...
2022-11-09T17:42:04
vercel/next.js
02c2f11ec969d2c5767f9dfbec275bbc65171e66
2096dfa687be61953fe7ccc6b54deea313a517d9
Enable missing suspense bailout by default (#60840) `experimental.missingSuspenseWithCSRBailout` should be enabled by default to help users to disciver unwrapped suspense boundaries. Add more notes in the error doc about deprecation and temporary workaround to disable it. Closes NEXT-2157 --------- Co-au...
[ { "path": "errors/missing-suspense-with-csr-bailout.mdx", "patch": "@@ -10,6 +10,8 @@ Certain methods like `useSearchParams()` opt Next.js into client-side rendering.\n \n Make sure that the method is wrapped in a suspense boundary. This way Next.js will only opt the component into client-side rendering up ...
2024-01-18T20:11:22
rust-lang/rust
525c6a356284ea47587f0316cec23cab290b986e
46a7d28a7d6a2ed007f9463afe763b6a53f5828e
Directly raise fatal errors inside the codegen backends As opposed to passing it around through Result.
[ { "path": "compiler/rustc_codegen_gcc/src/back/lto.rs", "patch": "@@ -29,7 +29,7 @@ use rustc_codegen_ssa::back::write::{CodegenContext, FatLtoInput};\n use rustc_codegen_ssa::traits::*;\n use rustc_codegen_ssa::{ModuleCodegen, ModuleKind, looks_like_rust_object_file};\n use rustc_data_structures::memmap::M...
2025-08-24T10:47:04
nodejs/node
6f0b87d6c9beaa4d425a6032aa9c48cd0f14b162
ffa5b068ce8ba9b10749bb6edb1d65a3e63a92c9
doc: remove space above version picker PR-URL: https://github.com/nodejs/node/pull/34768 Fixes: https://github.com/nodejs/node/issues/34767 Fixes: https://github.com/nodejs/node/issues/34447 Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Harshitha K...
[ { "path": "doc/api_assets/style.css", "patch": "@@ -145,7 +145,7 @@ ol.version-picker {\n list-style: none;\n position: absolute;\n right: 0;\n- top: 1.25rem;\n+ top: 100%;\n width: 100%;\n }\n ", "additions": 1, "deletions": 1, "language": "CSS" } ]
2020-08-14T02:03:10
golang/go
d02fceb95e185478ba04bad3a2f9bd8f1d427e1e
f5d21ffc816760813079d4429060a6c03f643b55
cmd/go: mod vendor: emit error if any replacement in vendor directory Fixes #29169 Change-Id: I3a0fd506c45ad999a2fc6f75f9b3e8a5118ad91b Reviewed-on: https://go-review.googlesource.com/c/go/+/156400 Auto-Submit: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Robert Findley...
[ { "path": "src/cmd/go/internal/modcmd/vendor.go", "patch": "@@ -211,6 +211,9 @@ func moduleLine(m, r module.Version) string {\n \t\tb.WriteString(m.Version)\n \t}\n \tif r.Path != \"\" {\n+\t\tif strings.HasPrefix(r.Path, \"./vendor\") || strings.HasPrefix(r.Path, \".\\vendor\") {\n+\t\t\tbase.Fatalf(\"go: ...
2019-01-06T06:23:36
vercel/next.js
2227ae5f344f84b3a325d1a9604617876b0df333
b7f5107544199a91c42066be615685a9baf228ee
Revert "Fix: Throw an error for empty array return in `generateStaticParams` with `output:export`" (#60831) Reverts vercel/next.js#57053 per this comment: https://github.com/vercel/next.js/pull/57053#issuecomment-1892747474 Instead of erroring, we should warn (and only in dev mode). That can be added in a future ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -1887,19 +1887,15 @@ export default async function build(\n const isDynamic = isDynamicRoute(page)\n const hasGenerateStaticParams =\n !!workerResult.prerenderRout...
2024-01-18T17:02:07
nodejs/node
24cc4a6e7d24c8a5c7847d5e7b0bafa6621c4cb9
42b5f5f1bdf8d5168f9200d6f49477915a7713e5
net: validate custom lookup() output This commit adds validation to the IP address returned by the net module's custom DNS lookup() function. PR-URL: https://github.com/nodejs/node/pull/34813 Fixes: https://github.com/nodejs/node/issues/34812 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell...
[ { "path": "lib/net.js", "patch": "@@ -1039,6 +1039,9 @@ function lookupAndConnect(self, options) {\n // calls net.Socket.connect() on it (that's us). There are no event\n // listeners registered yet so defer the error event to the next tick.\n process.nextTick(connectErrorNT, self, e...
2020-08-17T18:59:58
golang/go
4f13067f8ac7f2c64a093ef4125cfa03dd67a0a5
2f4d5c3b791b9b78c32ad587a70adfc1b46f29e0
internal/fsys: follow root symlink in fsys.Walk If fsys.Walk is called with a root directory that is a symlink, follow the symlink when doing the walk. This allows for users setting their current directory to a symlink to a module. Fixes #50807 Change-Id: Ie65a7cb804b87dea632ea6c758c20adcfa62fcd4 Reviewed-on: https:...
[ { "path": "src/cmd/go/internal/fsys/fsys.go", "patch": "@@ -474,19 +474,23 @@ func IsDirWithGoFiles(dir string) (bool, error) {\n \n // walk recursively descends path, calling walkFn. Copied, with some\n // modifications from path/filepath.walk.\n-func walk(path string, info fs.FileInfo, walkFn filepath.Wal...
2022-11-07T19:30:45
rust-lang/rust
3f339ab84926eaf34d2caaa7394bb84744017960
6d6a08cf590ec26296447b8d2cf2329bb64c303a
Dial down detail of B-tree description fixes 134088, though it is a shame to lose some of this wonderful detail.
[ { "path": "library/alloc/src/collections/btree/map.rs", "patch": "@@ -40,30 +40,10 @@ pub(super) const MIN_LEN: usize = node::MIN_LEN_AFTER_SPLIT;\n \n /// An ordered map based on a [B-Tree].\n ///\n-/// B-Trees represent a fundamental compromise between cache-efficiency and actually minimizing\n-/// the am...
2025-01-20T09:59:42
vercel/next.js
b7f5107544199a91c42066be615685a9baf228ee
752c15e7984a6eae5ccf32eb572fe0fe767324d3
Fix: respect init.cache if fetch input is request instance (#60821) When there’s a request input instance and init object present the same time, we should respect init as preferred Closes NEXT-2149
[ { "path": "packages/next/src/server/lib/patch-fetch.ts", "patch": "@@ -236,8 +236,9 @@ export function patchFetch({\n typeof (input as Request).method === 'string'\n \n const getRequestMeta = (field: string) => {\n- let value = isRequestInput ? (input as any)[field] : null\n- ...
2024-01-18T16:54:36
electron/electron
01f549628fe8c129b793016854156e013538d467
2edf4da8590b257a9bd9695516a5256586d6dcfd
fix signature of <webview>.executeJavaScript
[ { "path": "docs/api/webview-tag.md", "patch": "@@ -402,7 +402,7 @@ Returns `String` - The user agent for guest page.\n \n Injects CSS into the guest page.\n \n-### `<webview>.executeJavaScript(code, userGesture, callback)`\n+### `<webview>.executeJavaScript(code[, userGesture, callback])`\n \n * `code` Stri...
2017-08-17T08:06:30
nodejs/node
42b5f5f1bdf8d5168f9200d6f49477915a7713e5
21abb2545fdb9745cdd9e1ac718213719fbaae49
test: modernize test-cluster-master-error Some stylistic changes to bring this more in line with what our tests currently look like, and add a note about general flakiness. PR-URL: https://github.com/nodejs/node/pull/34685 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
[ { "path": "test/parallel/test-cluster-master-error.js", "patch": "@@ -29,16 +29,11 @@ const totalWorkers = 2;\n // Cluster setup\n if (cluster.isWorker) {\n const http = require('http');\n- http.Server(() => {\n-\n- }).listen(0, '127.0.0.1');\n-\n+ http.Server(() => {}).listen(0, '127.0.0.1');\n } else...
2020-08-08T21:44:08
facebook/react
362e9595c46c0a2079cd7bfbdbb93f8ea7b2f5f7
a3ee6a95481e9411b82b1a30cb29f32eb82441d4
Fix long lines in vendor/fbtransform/visitors I meant to do this with #3206 but forgot to add them.
[ { "path": "vendor/fbtransform/visitors.js", "patch": "@@ -2,14 +2,19 @@\n \n 'use strict';\n \n-var es6ArrowFunctions = require('jstransform/visitors/es6-arrow-function-visitors');\n+var es6ArrowFunctions =\n+ require('jstransform/visitors/es6-arrow-function-visitors');\n var es6Classes = require('jstransf...
2015-02-20T02:43:06
rust-lang/rust
46a7d28a7d6a2ed007f9463afe763b6a53f5828e
4eedad312695d773b6e2e17a4f8082660470c101
Handle unwinding fatal errors in codegen workers
[ { "path": "compiler/rustc_codegen_ssa/src/back/write.rs", "patch": "@@ -1,5 +1,6 @@\n use std::assert_matches::assert_matches;\n use std::marker::PhantomData;\n+use std::panic::AssertUnwindSafe;\n use std::path::{Path, PathBuf};\n use std::sync::Arc;\n use std::sync::mpsc::{Receiver, Sender, channel};\n@@ -...
2025-08-24T10:09:51
golang/go
2f4d5c3b791b9b78c32ad587a70adfc1b46f29e0
cd8d1bca2cc2ec228b21e5df893fec7a2e766e08
net/http: add Transport.OnProxyConnectResponse Fixes #54299 Change-Id: I3a29527bde7ac71f3824e771982db4257234e9ef Reviewed-on: https://go-review.googlesource.com/c/go/+/447216 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: xie cui <523516579@qq.com> TryBot-Result: Gopher Robot <gobot@golang.org> Revie...
[ { "path": "api/next/54299.txt", "patch": "@@ -0,0 +1 @@\n+pkg net/http, type Transport struct, OnProxyConnectResponse func(context.Context, *url.URL, *Request, *Response) error #54299\n\\ No newline at end of file", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "s...
2022-11-02T13:07:46
vercel/next.js
ecbc36cdd24084d9e0d7b9e27264726f65d92e44
c2473471e231d17d96f9aade245baef67dfd3c38
Fix error from the auth docs. (#60829)
[ { "path": "docs/02-app/01-building-your-application/09-authentication/index.mdx", "patch": "@@ -5,15 +5,15 @@ description: Learn how to implement authentication in Next.js, covering best pra\n \n To implement authentication in Next.js, familiarize yourself with three foundational concepts:\n \n-- **[Authent...
2024-01-18T16:24:39
electron/electron
9c552644d8dedd302ff063e6f6593394b905f491
f6792c02326f0511e1201882222230feb164ee6d
Fix compilation on mac
[ { "path": "atom/browser/native_window_mac.h", "patch": "@@ -85,7 +85,7 @@ class NativeWindowMac : public NativeWindow,\n std::string GetRepresentedFilename() override;\n void SetDocumentEdited(bool edited) override;\n bool IsDocumentEdited() override;\n- void SetIgnoreMouseEvents(bool ignore) overrid...
2017-08-17T07:47:12
nodejs/node
6e97a735c881b079b16bcaabf4ff59dd0cb85387
a0846326dd42bf4ec2f91df9cade762283567511
doc: fix file name to main.mjs and not main.js in esm.md PR-URL: https://github.com/nodejs/node/pull/34786 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Revi...
[ { "path": "doc/api/esm.md", "patch": "@@ -1506,8 +1506,8 @@ console.log(VERSION);\n \n With this loader, running:\n \n-```console\n-node --experimental-loader ./https-loader.mjs ./main.js\n+```bash\n+node --experimental-loader ./https-loader.mjs ./main.mjs\n ```\n \n Will print the current version of Coffee...
2020-08-15T07:45:43
facebook/react
ed6d02e1a82707b2aff7b714cc1af8168e4bf3db
1876bc2432286b0378ee48449ca5bf9145e6691f
fix .eslintignore
[ { "path": ".eslintignore", "patch": "@@ -7,7 +7,11 @@ src/**/__tests__/**\n # This should be enabled but that folder has too much in it that doesn't belong\n src/test\n test/the-files-to-test.generated.js\n-vendor/\n+# This is synced with a different file internally, don't want to lint it yet\n+vendor/fbtra...
2015-02-20T01:31:21
golang/go
cd8d1bca2cc2ec228b21e5df893fec7a2e766e08
7a92c4fc637621368eb26a7e72bb027b29568e50
cmd/go: more informative test failures when GOROOT is stale If GOROOT is stale, test fail when commands unexpectedly write to GOROOT. Include an message in the test failure indicating that this is a possible and expected reason for the failure, and how to fix it. For #48698. Change-Id: I057c20260bab09aebf684e8f20794...
[ { "path": "src/cmd/go/go_test.go", "patch": "@@ -129,7 +129,8 @@ func TestMain(m *testing.M) {\n \t\t\t\t\t}\n \t\t\t\t\tcallerPos = fmt.Sprintf(\"%s:%d: \", file, line)\n \t\t\t\t}\n-\t\t\t\treturn fmt.Errorf(\"%stestgo must not write to GOROOT (installing to %s)\", callerPos, filepath.Join(\"GOROOT\", rel...
2022-11-09T01:02:49
vercel/next.js
c2473471e231d17d96f9aade245baef67dfd3c38
cb71d8087940a43b6bf20a7562ba1d035adcc86c
feat: support custom image loaders in turbopack (#60736) ### What? We were missing the alias (and config field) for custom image loaders. Closes PACK-2190 Fixes #60097
[ { "path": "packages/next-swc/crates/next-core/js/src/entry/config/next.js", "patch": "@@ -2,6 +2,7 @@ import loadConfig from 'next/dist/server/config'\n import loadCustomRoutes from 'next/dist/lib/load-custom-routes'\n import { PHASE_DEVELOPMENT_SERVER } from 'next/dist/shared/lib/constants'\n import assert...
2024-01-18T16:23:06
nodejs/node
a0846326dd42bf4ec2f91df9cade762283567511
f39a12113a96d8bbc08aac55dec25437a5958dde
esm: improve error message of ERR_UNSUPPORTED_ESM_URL_SCHEME Refs: https://github.com/nodejs/node/issues/34765 PR-URL: https://github.com/nodejs/node/pull/34795 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Jan Krems <jan.krems@gmail.com> Rev...
[ { "path": "lib/internal/errors.js", "patch": "@@ -26,6 +26,8 @@ const {\n WeakMap,\n } = primordials;\n \n+const isWindows = process.platform === 'win32';\n+\n const messages = new Map();\n const codes = {};\n \n@@ -1429,8 +1431,15 @@ E('ERR_UNKNOWN_MODULE_FORMAT', 'Unknown module format: %s', RangeError)...
2020-08-16T09:28:54
golang/go
9ff2a6677fd34084295172aff0848ab9a4f5b76e
821e31042a47a9f65529c16f76b392428329c20b
crypto/x509: allow BoringCrypto to use 4096-bit keys FIPS-140 has been updated to allow 4096-bit RSA keys. Allow them in certificate processing. Fixes #41147. Change-Id: I4c6bcb1b137a200dfe70cebc605ae57f49871184 Reviewed-on: https://go-review.googlesource.com/c/go/+/447655 Run-TryBot: Russ Cox <rsc@golang.org> TryBo...
[ { "path": "src/crypto/tls/boring_test.go", "patch": "@@ -16,6 +16,7 @@ import (\n \t\"crypto/x509/pkix\"\n \t\"encoding/pem\"\n \t\"fmt\"\n+\t\"internal/obscuretestdata\"\n \t\"math/big\"\n \t\"net\"\n \t\"runtime\"\n@@ -311,7 +312,7 @@ func TestBoringCertAlgs(t *testing.T) {\n \t// Set up some roots, inter...
2022-11-03T17:08:52
vercel/next.js
d450ff787de7d42a12c8d8bed1fdc09838ea3b0d
afcafcdd293d8dc6e4d55b471c9c6beda7b36b27
docs: add build worker optout error back with upgrade advice (#60826) x-ref: https://github.com/vercel/next.js/pull/60820/files#r1457566492 Closes NEXT-2151
[ { "path": "errors/webpack-build-worker-opt-out.mdx", "patch": "@@ -0,0 +1,19 @@\n+---\n+title: Webpack Build Worker automatic opt-out\n+---\n+\n+## Webpack Build Worker Opt-out\n+\n+#### Why This Error Occurred\n+\n+The Next.js config contains custom webpack configuration, as a result, the webpack build wor...
2024-01-18T15:43:19
facebook/react
60e96edce2ec46743eb926df5bc07ee97ab1271a
d69329a17c384c2ea64eb08785d7c931aa21774b
Fix a doc. cloneWithProps clones a ReactElement.
[ { "path": "docs/docs/10.5-clone-with-props.md", "patch": "@@ -1,23 +1,23 @@\n ---\n id: clone-with-props\n-title: Cloning Components\n+title: Cloning ReactElement\n permalink: clone-with-props.html\n prev: test-utils.html\n next: update.html\n ---\n \n-In rare situations a component may want to change the p...
2015-02-15T14:50:52
electron/electron
9120774c0084d9447e78eeb4d95b33b49607493d
a419fe75ca76c8edcbd80692038749001ac9fe63
Fixing uncaught exception on window close
[ { "path": "lib/browser/rpc-server.js", "patch": "@@ -465,6 +465,10 @@ ipcMain.on('ELECTRON_BROWSER_WINDOW_CONFIRM', function (event, message, title) {\n \n // Implements window.close()\n ipcMain.on('ELECTRON_BROWSER_WINDOW_CLOSE', function (event) {\n- event.sender.getOwnerBrowserWindow().close()\n- event...
2017-08-15T21:59:48
nodejs/node
68ccd16ed4257ed43f0f8041e6865459841557fd
76f86c3ed4512ea9882b7a8b383fc8480d1b54e5
doc: fix some typos and grammar mistakes PR-URL: https://github.com/nodejs/node/pull/34800 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Harshitha K P <harshitha014@gmail.com> Reviewed-By: Anna Henningsen <a...
[ { "path": "doc/guides/contributing/issues.md", "patch": "@@ -100,8 +100,8 @@ on the README.md of this project with: i) a request to be added as a triager,\n ii) the motivation for becoming a triager, and iii) agreement on reading,\n understanding, and adhering to the project's [Code Of Conduct](https://gith...
2020-08-16T18:52:01
rust-lang/rust
5d41f7ccb87996b2ca22b4ad42570f65f13c40bc
4eedad312695d773b6e2e17a4f8082660470c101
Fix some minor issues in comments Signed-off-by: houpo-bob <houpocun@outlook.com>
[ { "path": "src/build_helper/src/npm.rs", "patch": "@@ -27,7 +27,7 @@ pub fn install(src_root_path: &Path, out_dir: &Path, npm: &Path) -> Result<PathB\n }\n // disable a bunch of things we don't want.\n // this makes tidy output less noisy, and also significantly improves runtime\n- // of repe...
2025-08-24T08:58:22
golang/go
6b45863e47ad1a27ba3051ce0407f0bdc7b46113
27c38142756902c9a2e281ff1dd0f2e0a7273f75
all: fix some comments Change-Id: I163ea3a770f2228f67d4fb1374653566e64b91f7 Reviewed-on: https://go-review.googlesource.com/c/go/+/448575 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang....
[ { "path": "src/cmd/compile/internal/ir/cfg.go", "patch": "@@ -5,12 +5,12 @@\n package ir\n \n var (\n-\t// maximum size variable which we will allocate on the stack.\n+\t// MaxStackVarSize is the maximum size variable which we will allocate on the stack.\n \t// This limit is for explicit variable declaratio...
2022-11-08T03:37:59
vercel/next.js
afcafcdd293d8dc6e4d55b471c9c6beda7b36b27
7472cefb42423378218cd8245ab352747c94b037
chore(docs): fix example documentation for Art Direction (#60823) This PR fixes a few typos in the docs from https://github.com/vercel/next.js/pull/60739
[ { "path": "docs/02-app/02-api-reference/01-components/image.mdx", "patch": "@@ -733,7 +733,7 @@ Try it out:\n \n - [Demo the `fill` prop](https://image-component.nextjs.gallery/fill)\n \n-## Theme Detection\n+## Theme Detection CSS\n \n If you want to display a different image for light and dark mode, you c...
2024-01-18T15:31:00