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
nodejs/node
1274f89b8c51c64fb6e8ac25d2498dd540fab472
725cf4764acb515be56b5e414b62f4cf92cf8ecd
worker: fix nested uncaught exception handling We are using `ObjectPrototypeToString()` as a cross-context brand check for built-in errors, but weren’t making sure to set that when deserializing errors back into JS objects. Fix that by setting `[Symbol.toStringTag]` manually, to make sure that multiple serialize-and-...
[ { "path": "lib/internal/error_serdes.js", "patch": "@@ -14,6 +14,7 @@ const {\n ObjectKeys,\n ObjectPrototypeToString,\n SafeSet,\n+ SymbolToStringTag,\n } = primordials;\n \n const kSerializedError = 0;\n@@ -116,6 +117,10 @@ function deserializeError(error) {\n case kSerializedError:\n con...
2020-07-11T12:19:38
electron/electron
8d080b36e67c008c736606eebb4fd740b6cd46c8
3f8b9536165b1b9f7b4ab4a2582d0dd1fdad5ca0
Fix hyperlink text containing space
[ { "path": "docs-translations/de-DE/project/README.md", "patch": "@@ -8,8 +8,8 @@\n :memo: Verfügbare Sprachen: [Korean](https://github.com/electron/electron/tree/master/docs-translations/ko-KR/project/README.md) | [Simplified Chinese](https://github.com/electron/electron/tree/master/docs-translations/zh-CN/...
2017-06-16T23:21:37
rust-lang/rust
f3c8b7ad40c405989be968dc170e487d360fd6da
b65fab62999e96acd3683826ffd4140091f185f2
Split `rustc_hir_id` out of `rustc_hir` Some crates depend on `rustc_hir` but only want `HirId` and similar id types. `rustc_hir` is a heavy dependency, since it pulls in `rustc_target`. Split these types out into their own crate `rustc_hir_id`. This allows `rustc_errors` to drop its direct dependency on `rustc_hir`....
[ { "path": "Cargo.lock", "patch": "@@ -3803,7 +3803,7 @@ dependencies = [\n \"rustc_error_messages\",\n \"rustc_fluent_macro\",\n \"rustc_hashes\",\n- \"rustc_hir\",\n+ \"rustc_hir_id\",\n \"rustc_index\",\n \"rustc_lexer\",\n \"rustc_lint_defs\",\n@@ -3899,6 +3899,7 @@ dependencies = [\n \"rustc_data...
2025-08-14T08:33:59
vercel/next.js
48355fdc25d2a5d8aab5113778aa864b1530373f
09af522f8b1c3b97ae1e7849ceccfc233a072390
Add writeStandaloneDirectory (#60162) ## What? Moves the creation of the `standalone` directory when using `output: 'standalone'` into a separate function. Also added a type for `RequiredServerFilesManifest` as it was missing. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure y...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -9,7 +9,7 @@ import type { Revalidate } from '../server/lib/revalidate'\n \n import '../lib/setup-exception-listeners'\n \n-import { loadEnvConfig } from '@next/env'\n+import { loadEnvConfig, type LoadedEnvFiles } from '@next/env'\n import { bold, y...
2024-01-04T10:23:30
golang/go
8dc08394f0d5f83523080e4dd99fded26b7c1ceb
9fedc481ea09a0539cd2669312429ef5416a8949
internal/godebug: remove dependency on os The immediate reason is that we want to use godebug from math/rand, and math/rand importing godebug importing os causes an import cycle in package testing. More generally, the new approach to backward compatibility outlined in discussion #55090 will require using this package...
[ { "path": "src/go/build/deps_test.go", "patch": "@@ -52,9 +52,13 @@ var depsRules = `\n \tinternal/goarch, unsafe\n \t< internal/abi;\n \n+\tunsafe\n+\t< internal/godebug;\n+\n \t# RUNTIME is the core runtime group of packages, all of them very light-weight.\n \tinternal/abi, internal/cpu, internal/goarch,\...
2022-10-17T19:34:50
nodejs/node
18667ac6f54a4a2a781f1cf6380ac0660196e5e5
460c81dc0e088e696e9a7a476254ff381e8474ce
test: add regression tests for HTTP parser crash Since the tests only crash on v12.x, this commit adds separate regression tests. Refs: https://github.com/nodejs/node/issues/15102 PR-URL: https://github.com/nodejs/node/pull/34250 Refs: https://github.com/nodejs/node/issues/34016 Reviewed-By: Luigi Pinca <luigipinca@...
[ { "path": "test/parallel/test-http-sync-write-error-during-continue.js", "patch": "@@ -0,0 +1,53 @@\n+'use strict';\n+const common = require('../common');\n+const assert = require('assert');\n+const http = require('http');\n+const MakeDuplexPair = require('../common/duplexpair');\n+\n+// Regression test for...
2020-07-07T21:28:07
electron/electron
4bed74341767ea3d07542126e7688b922c81a5c7
493cfd38d66d8411f00d56a8d73582aad6d81c5e
Extra properties must be less than 63 characters I found out that after trying to putting some long text in my extra properties that it was truncated, digging around I found these: https://github.com/electron/electron/blob/897d58bde1414d73529a526a4f3fbc237683d9be/atom/common/crash_reporter/crash_reporter_win.cc co...
[ { "path": "docs/api/crash-reporter.md", "patch": "@@ -45,7 +45,7 @@ The `crashReporter` module has the following methods:\n * `ignoreSystemCrashHandler` Boolean (optional) - Default is `false`.\n * `extra` Object (optional) - An object you can define that will be sent along with the\n report. Only s...
2017-06-16T12:41:12
rust-lang/rust
b65fab62999e96acd3683826ffd4140091f185f2
040a98af70f0a7da03f3d5356531b28a2a7a77e4
Move `IntoDiagArg` earlier in the dependency chains `rustc_errors` depends on numerous crates, solely to implement its `IntoDiagArg` trait on types from those crates. Many crates depend on `rustc_errors`, and it's on the critical path. We can't swap things around to make all of those crates depend on `rustc_errors` i...
[ { "path": "Cargo.lock", "patch": "@@ -3367,6 +3367,7 @@ dependencies = [\n \"rand 0.9.2\",\n \"rand_xoshiro\",\n \"rustc_data_structures\",\n+ \"rustc_error_messages\",\n \"rustc_hashes\",\n \"rustc_index\",\n \"rustc_macros\",\n@@ -3779,6 +3780,8 @@ dependencies = [\n \"icu_locid\",\n \"icu_provide...
2025-08-14T07:28:44
facebook/react
0d308add09df27456d2cd0bf99848d43b0115388
903db8bd14e0aaa8a2db3527f60102f9341dbd42
Update stripTypes transform to use fixed up jstransform transform
[ { "path": "main.js", "patch": "@@ -2,6 +2,7 @@\n \n var visitors = require('./vendor/fbtransform/visitors');\n var transform = require('jstransform').transform;\n+var typesSyntax = require('jstransform/visitors/type-syntax');\n var Buffer = require('buffer').Buffer;\n \n module.exports = {\n@@ -37,7 +38,11 ...
2014-11-15T01:58:51
vercel/next.js
09af522f8b1c3b97ae1e7849ceccfc233a072390
5aaeb8517021c9922ebf1d7f9826abea5c0f97da
Add writePrerenderManifest (#60158) ## What? Ensures the duplicated code in the if/else branch just uses a function so that the logic is shared. <!-- 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...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -315,34 +315,6 @@ export function buildCustomRoute(\n }\n }\n \n-async function generateClientSsgManifest(\n- prerenderManifest: PrerenderManifest,\n- {\n- buildId,\n- distDir,\n- locales,\n- }: { buildId: string; distDir: string; loca...
2024-01-04T10:21:23
golang/go
26b48442569102226baba1d9b4a83aaee3d06611
834858fa5f6ecf980116c9ab7a2927931fe54c85
errors: add test for Join Change-Id: I77c61211a488c66f1d445c0bf01e35aaf4f83565 GitHub-Last-Rev: c411a56a3b5215e6dd093be7069affb176b48dfd GitHub-Pull-Request: golang/go#56279 Reviewed-on: https://go-review.googlesource.com/c/go/+/443316 Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Ian Lance Taylor <iant@...
[ { "path": "src/errors/join_test.go", "patch": "@@ -47,3 +47,26 @@ func TestJoin(t *testing.T) {\n \t\t}\n \t}\n }\n+\n+func TestJoinErrorMethod(t *testing.T) {\n+\terr1 := errors.New(\"err1\")\n+\terr2 := errors.New(\"err2\")\n+\tfor _, test := range []struct {\n+\t\terrs []error\n+\t\twant string\n+\t}{{\n...
2022-10-17T18:32:36
nodejs/node
8da0ae2526ffcd8981d4d0f0a9d3888ec398fbb9
f902170af6e19ab0f2d5cefdf7111580238cbeb7
build,tools: fix cmd_regen_makefile Currently, after having configured and built node and then updating a dependent target the following error is produced when trying to rebuild the project: $ ./configure && make -j8 $ touch node.gypi $ make -j8 configure: error: no such option: -f make[1]: *** [Makefile:685: Makefil...
[ { "path": "tools/gyp_node.py", "patch": "@@ -51,6 +51,12 @@ def run_gyp(args):\n args.append('-Dlinux_use_bundled_gold=0')\n args.append('-Dlinux_use_gold_flags=0')\n \n+ # Set the current program to this module. This is done because gyp\n+ # will use the program path in targets it generates. If this ...
2020-07-08T06:05:43
electron/electron
12b90a23049e583c1b8b2d8ed8b8443b1148bf66
373decd07e3a14652d97ca0b85da3d9f472dd8ce
:bug: store current level fix
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -208,7 +208,7 @@ - (void)windowDidMove:(NSNotification*)notification {\n - (void)windowWillMiniaturize:(NSNotification*)notification {\n NSWindow* window = shell_->GetNativeWindow();\n // store the current status window level to be restored in ...
2017-06-15T22:05:58
facebook/react
903db8bd14e0aaa8a2db3527f60102f9341dbd42
22da7b6fa568a905fbd3f9cb4362cffff3f37f8b
Stop treating key={null} as an unspecified key This reverts commit dd92786fb038c4eb7c6545928646ec8aa9ecfa36, which was intended to be temporary for the 0.12 release. Fixes #2394.
[ { "path": "src/core/ReactElement.js", "patch": "@@ -141,16 +141,7 @@ ReactElement.createElement = function(type, config, children) {\n \n if (config != null) {\n ref = config.ref === undefined ? null : config.ref;\n- if (__DEV__) {\n- warning(\n- config.key !== null,\n- 'createEl...
2014-11-12T10:37:02
vercel/next.js
5aaeb8517021c9922ebf1d7f9826abea5c0f97da
25d7e3d89e986b544971dbc9fdf940f8f65a6ba6
Add writeManifest (#60138) ## What? Follow-up to `readManifest` this adds `writeManifest`. <!-- 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/build/index.ts", "patch": "@@ -393,14 +393,21 @@ function getNumberOfWorkers(config: NextConfigComplete) {\n return 4\n }\n \n-async function writeFileUtf8(filePath: string, content: string) {\n+async function writeFileUtf8(filePath: string, content: string): Promise<void> {\n...
2024-01-04T10:11:53
golang/go
834858fa5f6ecf980116c9ab7a2927931fe54c85
07c57aff5d6d8f1df96eb99507bd04c57d0616ca
cmd/go: fix TestScript/test_fuzz_mutate_crash for shorter fuzz names Fixes longtest builders. Change-Id: I8b375bcfc91695d5810493b972801df82c6c1b7c Reviewed-on: https://go-review.googlesource.com/c/go/+/443381 Auto-Submit: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Russ...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt", "patch": "@@ -20,7 +20,7 @@ go run check_testdata.go FuzzWithBug\n # Now, the failing bytes should have been added to the seed corpus for\n # the target, and should fail when run without fuzzing.\n ! go test\n-stdout 'FuzzWithBug/[a-f0-9]{64...
2022-10-17T20:25:33
nodejs/node
9a0aaa610706bfe7aeb2234b085cdcb912403c90
b1a0efacf2ed5f8d0c0a5066289a9e5e3035acc1
test: remove test/v8-updates/test-postmortem-metadata.js The postmortem metadata test is no longer used to maintain postmortem debugging tools. Since it frequently breaks on V8 updates, it makes more sense to just remove it. PR-URL: https://github.com/nodejs/node/pull/33579 Reviewed-By: Matteo Collina <matteo.collina...
[ { "path": "test/v8-updates/test-postmortem-metadata.js", "patch": "@@ -1,204 +0,0 @@\n-'use strict';\n-\n-// This test verifies that expected postmortem debugging metadata is present\n-// in the Node.js binary. These constants are used by tools such as llnode and\n-// mdb_v8, so this test ensures that they ...
2020-06-29T15:18:23
facebook/react
22da7b6fa568a905fbd3f9cb4362cffff3f37f8b
0db323e42adae6506cc8bec3dc094dc81c80612c
Warn when casing CSS vendor prefixes incorrectly Fixes #2487. Test Plan: jest
[ { "path": "src/browser/ui/dom/CSSPropertyOperations.js", "patch": "@@ -34,6 +34,9 @@ if (ExecutionEnvironment.canUseDOM) {\n }\n \n if (__DEV__) {\n+ // 'msTransform' is correct, but the other prefixes should be capitalized\n+ var badVendoredStyleNamePattern = /^(?:webkit|moz|o)[A-Z]/;\n+\n var warnedSt...
2014-11-12T09:51:46
vercel/next.js
a2f4ca52e4d7052d68a265db4ba43179205d8fd1
28fdc367b1f6d41245ea036bc40d1035a8a4d0e4
fix: cache next font during development to avoid FOUC (#60175) In fact, this is an issue that has been solved in #52033, but it seems #52492 introduced it again. > During development, for fonts created via next/font the file path is already containing the hash so we can always have them cached. This fixes the pr...
[ { "path": "packages/next/src/server/lib/router-server.ts", "patch": "@@ -35,6 +35,8 @@ import { DevBundlerService } from './dev-bundler-service'\n import { type Span, trace } from '../../trace'\n \n const debug = setupDebug('next:router-server:main')\n+const isNextFont = (pathname: string | null) =>\n+ pat...
2024-01-04T08:54:23
rust-lang/rust
f34fa22740a4ebeb81aaa12cb5666cee51e42111
e8a792daf500b5ff8097896ddb6cc037abe92487
fix: typo The return type is correct in the source code but incorrect in the docstring
[ { "path": "library/core/src/task/poll.rs", "patch": "@@ -125,7 +125,7 @@ impl<T, E> Poll<Result<T, E>> {\n }\n }\n \n- /// Maps a `Poll::Ready<Result<T, E>>` to `Poll::Ready<Result<T, F>>` by\n+ /// Maps a `Poll::Ready<Result<T, E>>` to `Poll::Ready<Result<T, U>>` by\n /// applying a f...
2025-08-20T19:03:26
nodejs/node
61c618d54f02f4f5c64330328ba4d96cd18387fa
03cc3fd47834d383a9e2a72d8993390aeeddc5e2
deps: V8: backport 2d5017a0fc02 Original commit message: [coverage] remove the last continuation range before synthetic return Rather than only removing the continuation range for the last return statement prior to a synthetic return statement, remove the continuation tracking for whatever statement ...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.12',\n+ 'v8_embedder_string': '-node.13',\n \n ##### V8 defaults for Node.js #####\n...
2020-07-09T02:53:16
golang/go
07c57aff5d6d8f1df96eb99507bd04c57d0616ca
b65e259e56a326295250f037efbd31f64bcdfbfe
all: use Go 1.17.13 for bootstrap Previously we used Go 1.17, but we realized thanks to tickling a pre-Go1.17.3 bug that if we are going to change the bootstrap toolchain that we should default to the latest available point release at the time we make the switch, not the initial major release, so as to avoid bugs that...
[ { "path": "doc/go1.20.html", "patch": "@@ -85,7 +85,7 @@ <h2 id=\"linker\">Linker</h2>\n <h2 id=\"bootstrap\">Bootstrap</h2>\n \n <p><!-- https://go.dev/issue/44505 -->\n- TODO: <a href=\"https://go.dev/issue/44505\">https://go.dev/issue/44505</a>: adopt Go 1.17 as bootstrap toolchain for Go 1.20\n+ TODO:...
2022-10-06T01:13:08
electron/electron
36696dbbba799fc38d58739131831a9b7bb539d8
7587fc22f1ebb863b30ea1b1668b599a3067d364
mention ARM and FIXME in breaking changes doc
[ { "path": "docs/tutorial/planned-breaking-changes.md", "patch": "@@ -188,3 +188,27 @@ command line flag when building native Node modules.\n Deprecated: https://atom.io/download/atom-shell\n \n Replace with: https://atom.io/download/electron\n+\n+## Duplicate ARM Assets\n+\n+Each Electron release includes t...
2017-06-15T19:46:25
rust-lang/rust
f177835f549e0ee47dd53d522b86add750b94a7c
6de463c41141a0d68747f2b8742ed3236ffe1100
fix whatever this is
[ { "path": "clippy_lints/src/len_zero.rs", "patch": "@@ -176,12 +176,11 @@ impl<'tcx> LateLintPass<'tcx> for LenZero {\n if let ExprKind::Let(lt) = expr.kind\n && match lt.pat.kind {\n PatKind::Slice([], None, []) => true,\n- PatKind::Expr(lit) => match lit....
2025-08-20T18:46:44
vercel/next.js
28fdc367b1f6d41245ea036bc40d1035a8a4d0e4
36a1ec62c4a012cdd8a5bf26cdf4505dd82743b5
[Docs] small correction in 11-middleware.mdx (#60189) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contr...
[ { "path": "docs/02-app/01-building-your-application/01-routing/11-middleware.mdx", "patch": "@@ -225,7 +225,7 @@ export function middleware(request: NextRequest) {\n })\n cookie = response.cookies.get('vercel')\n console.log(cookie) // => { name: 'vercel', value: 'fast', Path: '/' }\n- // The outgoin...
2024-01-03T23:43:55
nodejs/node
03cc3fd47834d383a9e2a72d8993390aeeddc5e2
e432470ed2ea5210cc4b70cedab2aaec6addfbe6
deps: update V8 postmortem metadata script This commit updates V8's gen-postmortem-metadata.py script to fix SmartOS compilation for V8 8.4. PR-URL: https://github.com/nodejs/node/pull/33579 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Michael ...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.11',\n+ 'v8_embedder_string': '-node.12',\n \n ##### V8 defaults for Node.js #####\n...
2020-07-04T16:34:50
golang/go
d5ba1d8d6fe1d36294fa639f2d4936b331a543ea
3e100a22e57106021df57ff95a0a1ae6ddab2e39
cmd/compile: fix a typo in comment Change-Id: I9b18b29e14a47765dc09ac401989e0439fbf7d03 GitHub-Last-Rev: 7d9792ccb97f8e20bc5300cb4fa29a0c49d9934b GitHub-Pull-Request: golang/go#56267 Reviewed-on: https://go-review.googlesource.com/c/go/+/443296 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <kh...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n //\n-// The inlining facility makes 2 passes: first caninl determines which\n+// The inlining facility makes 2 passes: f...
2022-10-17T11:28:52
rust-lang/rust
d216ca0506d6a70ca70fc29974ed9155beaabf7a
c018ae5389c49cc4bcb8343d80dd8e7323325410
Detect missing `if let` or `let-else` During `let` binding parse error and encountering a block, detect if there is a likely missing `if` or `else`: ``` error: expected one of `.`, `;`, `?`, `else`, or an operator, found `{` --> $DIR/missing-if-let-or-let-else.rs:14:25 | LL | let Some(x) = foo() { | ...
[ { "path": "compiler/rustc_parse/src/lib.rs", "patch": "@@ -6,6 +6,7 @@\n #![feature(assert_matches)]\n #![feature(box_patterns)]\n #![feature(debug_closure_helpers)]\n+#![feature(default_field_values)]\n #![feature(if_let_guard)]\n #![feature(iter_intersperse)]\n #![recursion_limit = \"256\"]", "additio...
2025-08-18T16:52:02
vercel/next.js
4865acc25723ea22ba3a8b087ece550d8fa2f5ee
6d0eef601ff6d9e7261c615825023302b11f9de5
docs: Fix typo on generate-sitemaps.mdx (#60188) ### Improving Documentation Fix typo for the function `generateSitemaps`. It had incorrect casing: `generateSiteMaps` in the docs page.
[ { "path": "docs/02-app/02-api-reference/04-functions/generate-sitemaps.mdx", "patch": "@@ -9,7 +9,7 @@ related:\n - app/api-reference/file-conventions/metadata/sitemap\n ---\n \n-You can use the `generateSiteMaps` function to generate multiple sitemaps for your application.\n+You can use the `generateSi...
2024-01-03T22:30:41
electron/electron
f9f697298d9c384b87e220cf645080321e8f5bea
626a1550dc3cd37cb151aff8b9a651bfb9289bd6
Add FIXME link to #6828
[ { "path": "lib/browser/guest-view-manager.js", "patch": "@@ -144,6 +144,7 @@ const createGuest = function (embedder, params) {\n })\n \n // Notify guest of embedder window visibility when it is ready\n+ // FIXME Remove once https://github.com/electron/electron/issues/6828 is fixed\n guest.on('dom-rea...
2017-06-14T21:12:51
nodejs/node
d7905fcc518d18c5719208387432aaaf4df585cd
87933b5885350ef417324704c203ae6da0e88593
deps: V8: backport 22014de00115 Original commit message: Reland "[snapshot] rehash JSMap and JSSet during deserialization" This is a reland of 8374feed55a5b3010f2e9593560a2d84f9f6725f. Fixed rehashing of global proxy keys by creating its identity hash early, before the deserialization of the context...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ...
2020-05-29T12:51:31
golang/go
da6042e82eb7fe5ba40a5c17959a31e19a44c3e8
c83d4fba0791927e9a0b66729ee886e0f8d15249
cmd/compile: fix position of fake receivers; be more careful in logopt The src.NoXPos in fake receivers was leaking, through a series of mishaps, all the way to logopt. If done just so, this can lead to a compiler crash. This makes logopt crash-proof and eliminates the root cause as well. I'm reluctant to write a t...
[ { "path": "src/cmd/compile/internal/logopt/log_opts.go", "patch": "@@ -405,6 +405,9 @@ func uriIfy(f string) DocumentURI {\n // Return filename, replacing a first occurrence of $GOROOT with the\n // actual value of the GOROOT (because LSP does not speak \"$GOROOT\").\n func uprootedPath(filename string) str...
2022-10-14T20:24:44
facebook/react
042c6c794c12b9f8d7cc7470736db896a5fc12a3
c10a39e82b1be68877f83edab668f828547112f6
Fix some minor typos in doc comments / code comments.
[ { "path": "src/browser/ui/ReactDOMComponent.js", "patch": "@@ -285,7 +285,7 @@ ReactDOMComponent.Mixin = {\n // superfluous reconcile. It's possible for state to be mutable but such\n // change should trigger an update of the owner which would recreate\n // the element. We explicitly check...
2014-11-07T17:07:07
vercel/next.js
6d0eef601ff6d9e7261c615825023302b11f9de5
5a10d2566b7e5a47a2ae532034430aca8b9ae0f0
Update route-segment-config.mdx (#60179) Fixing copy in the description of the route segment config Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "docs/02-app/02-api-reference/02-file-conventions/route-segment-config.mdx", "patch": "@@ -3,7 +3,7 @@ title: Route Segment Config\n description: Learn about how to configure options for Next.js route segments.\n ---\n \n-The Route Segment options allows you configure the behavior of a [Page](/doc...
2024-01-03T21:34:42
golang/go
c83d4fba0791927e9a0b66729ee886e0f8d15249
1e9a7550a846366eda7aaf0b3ebf870791875c17
os/signal: pass *int32 to ioctl that expects pid_t Fixes #56233 Change-Id: I1cf176bc2f39c5e41d5a390ec6893426cdd39be0 Reviewed-on: https://go-review.googlesource.com/c/go/+/443175 Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Joel Sing <joel@sing.id.au> Reviewed-by: Bryan Mills <bcmills@google.com> TryBo...
[ { "path": "src/os/signal/signal_cgo_test.go", "patch": "@@ -21,14 +21,14 @@ import (\n \t\"runtime\"\n \t\"strconv\"\n \t\"syscall\"\n-\t\"unsafe\"\n \t\"testing\"\n \t\"time\"\n+\t\"unsafe\"\n )\n \n const (\n-\tptyFD = 3 // child end of pty.\n-\tcontrolFD = 4 // child end of control pipe.\n+\tptyFD ...
2022-10-14T23:19:11
nodejs/node
87933b5885350ef417324704c203ae6da0e88593
32eb50aeec5b37951efc9038972b9fd4a4426488
deps: V8: fix compilation on VS2017 PR-URL: https://github.com/nodejs/node/pull/33579 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Shelley Vohr <c...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "...
2020-06-02T08:10:47
facebook/react
a1dcdf1a64fc125d7653be413c131b07438f83a0
c10a39e82b1be68877f83edab668f828547112f6
Fix odd formatting in ReactDOMComponent-test Test Plan: Crossed fingers.
[ { "path": "src/browser/ui/__tests__/ReactDOMComponent-test.js", "patch": "@@ -175,8 +175,10 @@ describe('ReactDOMComponent', function() {\n \n it(\"should transition from innerHTML to string content\", function() {\n var container = document.createElement('div');\n- React.render(<div dangerou...
2014-11-07T07:10:17
vercel/next.js
6bde3e50822c119177a1c9269d10634ab10ecf4e
37a09891f38dd161b3bb8be9c7a14cd76f771f59
Fix invalid comment (#60182) Noticed this comment conflicts with actual behavior so fixing for posterity. Closes NEXT-1972
[ { "path": "packages/next/src/server/lib/incremental-cache/fetch-cache.ts", "patch": "@@ -159,7 +159,7 @@ export default class FetchCache implements CacheHandler {\n \n let data = memoryCache?.get(key)\n \n- // memory cache data is only leveraged for up to 1 seconds\n+ // memory cache data is only ...
2024-01-03T19:56:02
golang/go
1e9a7550a846366eda7aaf0b3ebf870791875c17
03272d14edc48783581058f06b6c17855cb5bd90
misc/cgo/fortran: convert to Go test Currently, the entry-point to this test is a Bash script that smoke tests the FORTRAN compiler and then runs a FORTRAN-containing Go test. This CL rearranges things so a pure Go Go test smoke tests the FORTRAN compiler and then runs a non-test FORTRAN-containing Go binary. While w...
[ { "path": "misc/cgo/fortran/fortran_test.go", "patch": "@@ -1,13 +1,81 @@\n-// Copyright 2016 The Go Authors. All rights reserved.\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...
2022-10-14T13:51:52
nodejs/node
32eb50aeec5b37951efc9038972b9fd4a4426488
edaa56bb60eac20554de807cfcd9d873081b0ab6
deps: V8: cherry-pick 9868b2aefa1a Original commit message: Fix SmartOS compilation errors This commit resolves compilation errors on SmartOS that were found while upgrading Node.js. See: https://github.com/nodejs/node/pull/32831 Change-Id: Ia2a2e028ba4f5bfd69c050cab4fb4e13af5eefd9 Reviewed-...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "...
2020-06-02T08:06:37
vercel/next.js
37a09891f38dd161b3bb8be9c7a14cd76f771f59
df16698a8ccb26c833edd81ec6c4c9829702b6eb
fix: `<Script>` with `beforeInteractive` strategy ignores additional attributes in App Router (#59779) ### What? Currently, `next/script` in the App Router does not behave as the docs describe in the [Additional Attributes](https://nextjs.org/docs/app/building-your-application/optimizing/scripts#additional-attrib...
[ { "path": "packages/next/src/client/script.tsx", "patch": "@@ -334,7 +334,7 @@ function Script(props: ScriptProps): JSX.Element | null {\n dangerouslySetInnerHTML={{\n __html: `(self.__next_s=self.__next_s||[]).push(${JSON.stringify([\n 0,\n- { ...res...
2024-01-03T19:48:55
golang/go
a81da928b4891f111e40dfca677d3c90d1411f0d
dacf88e40a0a3d395988d226b5e43e046dd7e68f
runtime: improve coverage of TestCgoSigfwd Currently, TestCgoSigfwd will pass incorrectly if the SIGSEGV that originates in Go mistakenly goes to the C SIGSEGV handler. Fix this by adding a signal-atomic variable that tracks what the expected behavior is. Change-Id: Id2a9fa3b209299dccf90bb60720b89ad96838a9c Reviewed-...
[ { "path": "src/runtime/testdata/testprogcgo/sigfwd.go", "patch": "@@ -17,15 +17,22 @@ import (\n #include <stdio.h>\n #include <string.h>\n \n+sig_atomic_t expectCSigsegv;\n int *sigfwdP;\n+\n static void sigsegv() {\n+\texpectCSigsegv = 1;\n \t*sigfwdP = 1;\n \tfprintf(stderr, \"ERROR: C SIGSEGV not thrown...
2022-10-14T19:36:58
electron/electron
112f4656c3271342aa0a6b3c9f741abef9f986d1
909344415ef1f31615a725b1430bdbc0e7942975
:shirt: fix lint warning
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -512,7 +512,7 @@ void NativeWindowViews::SetFullScreen(bool fullscreen) {\n // else a non-responsive window shell could be rendered.\n // (this situation may arise when app starts with fullscreen: true)\n // Note: the following must be afte...
2017-06-14T00:55:55
facebook/react
1adbc22fdeb6dce5a6628fd7cb4a7dc2883e25fc
a7f157ebb15cacf8dc9e274f390f96ff92f2e3a6
bugfix: remove conflict comment
[ { "path": "docs/docs/02.1-jsx-in-depth.md", "patch": "@@ -201,5 +201,4 @@ var content = (\n \n > NOTE:\n > \n-> JSX is similar to HTML, but not exactly the same. See [JSX gotchas](/react/docs/jsx-gotchas.html) for some key differences.\n->>>>>>> master\n+> JSX is similar to HTML, but not exactly the same. S...
2014-11-06T03:23:51
rust-lang/rust
e1045c219b2d4b1ec87a8406f9faea8aebbec541
22a86f8280becb12c34ee3efd952baf5cf086fa0
Fix JS search scripts path
[ { "path": "src/librustdoc/html/static/js/search.js", "patch": "@@ -5252,7 +5252,7 @@ if (typeof window !== \"undefined\") {\n },\n loadTreeByHash: hashHex => {\n const script = document.createElement(\"script\");\n- script.src = `${ROOT_PATH}/search.index/${hashHex}.js...
2025-08-20T10:15:33
nodejs/node
edaa56bb60eac20554de807cfcd9d873081b0ab6
106a4f4be5e07de364083cea5b995a82044faf16
deps: patch V8 to run on Xcode 8 Patch V8 (wasm/wasm-module.cc) to remove const qualifier from type passed to template call of `OwnedVector::Of`. Xcode 8 can't convert 'OwnedVector<unsigned char>' to 'OwnedVector<const unsigned char>' when returning from a function (which is likely a bug on Xcode, considering this wor...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "...
2020-03-10T23:58:15
electron/electron
de066b8d1384fb89546295d0e53f0c3c8cda79ff
014aaccfc6cab7937e7d872cdc497469328ebe37
Make clearStorageData options object's property optional Fixes #9749
[ { "path": "docs/api/session.md", "patch": "@@ -109,12 +109,12 @@ Clears the session’s HTTP cache.\n #### `ses.clearStorageData([options, callback])`\n \n * `options` Object (optional)\n- * `origin` String - Should follow `window.location.origin`’s representation\n+ * `origin` String - (Optional) Should fo...
2017-06-13T18:34:13
golang/go
dacf88e40a0a3d395988d226b5e43e046dd7e68f
abd592b3d7c3e05eaa9dd6a69749e497b1973002
misc/cgo/testsigfwd: move to runtime/testprog/testprogcgo This migrates testsigfwd, which uses some one-off build infrastructure, to be part of the runtime's testprogcgo. The test is largely unchanged. Because it's part of a larger binary, this CL renames a few things and gates the constructor-time signal handler reg...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -831,9 +831,6 @@ func (t *tester) registerTests() {\n \t\tif t.hasBash() && goos != \"android\" && !t.iOS() && gohostos != \"windows\" {\n \t\t\tt.registerHostTest(\"cgo_errors\", \"../misc/cgo/errors\", \"misc/cgo/errors\", \".\")\n \t\t}\n-\t\tif gohostos == ...
2022-10-14T18:50:19
facebook/react
a3509e5b423ff3db1c5a1df5f68a0480c466fdc4
1fd187b9947fc708d7be9129d2a3b4836a831915
Fixing some newline-preserving issues Done internally as part of https://github.com/facebook/jstransform/commit/f9836a39126675fd37b40a3598c539b50a1ec69b
[ { "path": "vendor/fbtransform/transforms/xjs.js", "patch": "@@ -214,6 +214,7 @@ function renderXJSLiteral(object, isLast, state, start, end) {\n function renderXJSExpressionContainer(traverse, object, isLast, path, state) {\n // Plus 1 to skip `{`.\n utils.move(object.range[0] + 1, state);\n+ utils.cat...
2014-11-04T22:46:29
nodejs/node
b1456e3a7bee9733720081843711cc943f031abc
5682e6eed74a9c9f6b185c0e9472e08345a9d356
deps: make v8.h compatible with VS2015 There is a bug in the most recent version of VS2015 that affects v8.h and therefore prevents compilation of addons. Refs: https://stackoverflow.com/q/38378693 PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawe...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.4',\n+ 'v8_embedder_string': '-node.5',\n \n ##### V8 defaults for Node.js #####\n "...
2019-11-01T07:39:18
golang/go
7ffc1e47b4e3b163f06fc33c9adbc29cb1622d47
9abcc487f8b04db8fd46eaa429a7eef5a5228241
reflect: panic when Value.Equal using two non-comparable values Assuming the two values are valid and non-comparable, Equal should panic. x := reflect.ValueOf([]int{1, 2, 3}) x.Equal(x) // can not report false, should panic Assuming one of them is non-comparable and the other is invalid, it should always report fa...
[ { "path": "src/reflect/all_test.go", "patch": "@@ -8244,16 +8244,6 @@ var valueEqualTests = []ValueEqualTest{\n \t\ttrue,\n \t\ttrue, false,\n \t},\n-\t{\n-\t\t&equalSlice, []int{1},\n-\t\tfalse,\n-\t\ttrue, false,\n-\t},\n-\t{\n-\t\tmap[int]int{}, map[int]int{},\n-\t\tfalse,\n-\t\tfalse, false,\n-\t},\n \t...
2022-10-07T14:42:15
nodejs/node
34d8c079886efeae41ba190559da98fbd313e3a2
b78847c99acd2f5342a1d40f422a24ab420a127f
deps: V8: patch register-arm64.h Fixes a compilation issue on some platforms PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.2',\n+ 'v8_embedder_string': '-node.3',\n \n ##### V8 defaults for Node.js #####\n "...
2019-05-22T15:33:02
golang/go
9abcc487f8b04db8fd46eaa429a7eef5a5228241
3d92205ef5ed42147376d929e0f59c765974e345
flag: remove "// BUG" comment Remove a vestigial " // BUG" comment as there is no bug in the relevant code section and comment predated other changes. Also removed a needless allocation and conformed to the "v, ok := a[x]" standard convention. Tests are passing. Change-Id: Id28ad1baf77447052b54b341f018e573bac0c11a ...
[ { "path": "src/flag/flag.go", "patch": "@@ -1056,9 +1056,9 @@ func (f *FlagSet) parseOne() (bool, error) {\n \t\t\tbreak\n \t\t}\n \t}\n-\tm := f.formal\n-\tflag, alreadythere := m[name] // BUG\n-\tif !alreadythere {\n+\n+\tflag, ok := f.formal[name]\n+\tif !ok {\n \t\tif name == \"help\" || name == \"h\" {...
2022-10-14T03:10:28
vercel/next.js
4e9a3ba3003fead764d919f3f6825e0c66bf9094
930f82028d7bc22cf3118ea24bdd20e9036e4892
Refactor to unify writeFile, readFile, and add readManifest (#60137) ## What? Consolidates similar function calls, sets up `readManifest` and the foundation for `writeManifest` too. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we r...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -337,7 +337,7 @@ async function generateClientSsgManifest(\n ssgPages\n )};self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()`\n \n- await fs.writeFile(\n+ await writeFileUtf8(\n path.join(distDir, CLIENT_STATIC_FILES_PATH, buildId, '_ssgM...
2024-01-03T17:59:35
electron/electron
96484405dad5c32c6e44f39ffc492b87ec38aa2d
a6ea316a5de1964761a82d9376c23e99eff16d25
Upgrade crashpad for http status fix
[ { "path": "vendor/crashpad", "patch": "@@ -1 +1 @@\n-Subproject commit 2871326543ea0e01488f034bb660bf5a39f55c0c\n+Subproject commit f7c320766756a8aaa45ccbcff2945053d9f7e109", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2017-06-12T16:54:34
nodejs/node
95743dcd2501f104ecce104bdc9bf91932bd4b92
b7cf8234100b0527cae325b5470f03dd137e3a94
deps: V8: un-cherry-pick bd019bd Original commit message: [testrunner] delete ancient junit compatible format support Testrunner has ancient support for JUnit compatible XML output. This CL removes this old feature. R=mstarzinger@chromium.org,jgruber@chromium.org,jkummerow@chromium.org CC=​mach...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.0',\n+ 'v8_embedder_string': '-node.1',\n \n ##### V8 defaults for Node.js #####\n "...
2019-03-27T14:32:10
golang/go
61f0409c31cad8729d7982425d353d7b2ea80534
9ddb8ea73724d717a9bbf44be7d585ba5587504f
reflect: add Value.Grow The Grow method is like the proposed slices.Grow function in that it ensures that the slice has enough capacity to append n elements without allocating. The implementation of Grow is a thin wrapper over runtime.growslice. This also changes Append and AppendSlice to use growslice under the hood...
[ { "path": "api/next/48000.txt", "patch": "@@ -0,0 +1 @@\n+pkg reflect, method (Value) Grow(int) #48000", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "src/reflect/all_test.go", "patch": "@@ -739,25 +739,88 @@ func TestFunctionValue(t *testing.T) {\n \tassert(...
2022-03-02T21:01:48
vercel/next.js
930f82028d7bc22cf3118ea24bdd20e9036e4892
7bb7f535146fe1c13e86f85593f29d5b87efaffd
Updating example with required content type in header (#59990) <!-- 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": "docs/02-app/01-building-your-application/01-routing/10-route-handlers.mdx", "patch": "@@ -622,7 +622,8 @@ You can use Route Handlers to return non-UI content. Note that [`sitemap.xml`](/\n export const dynamic = 'force-dynamic' // defaults to auto\n \n export async function GET() {\n- return new...
2024-01-03T17:20:55
nodejs/node
2e6c3e2301cb443a72c3659fffa24815b4660815
eabe22b73371e59838f5ff501804aca3aae9f4a9
tls: make 'createSecureContext' honor more options Added options: `ticketKeys` and `sessionTimeout`, that are honored by `createServer`, that calls `createSecureContext`. This also introduces a minor code simplification. PR-URL: https://github.com/nodejs/node/pull/33974 Fixes: https://github.com/nodejs/node/issues/2...
[ { "path": "doc/api/tls.md", "patch": "@@ -1630,6 +1630,11 @@ changes:\n **Default:** none, see `minVersion`.\n * `sessionIdContext` {string} Opaque identifier used by servers to ensure\n session state is not shared between applications. Unused by clients.\n+ * `ticketKeys`: {Buffer} 48-bytes of c...
2020-06-19T16:41:00
electron/electron
18dec9c39c519ef08903a3120b4945cd364be3d7
a6ea316a5de1964761a82d9376c23e99eff16d25
fix typo in jp docs
[ { "path": "docs-translations/jp/api/app.md", "patch": "@@ -134,7 +134,7 @@ Windowsでは、ファイルパスを取得するために、 `process.argv` を\n `url` の `certificate` 検証に失敗したときに発生します。証明書を信頼するために`event.preventDefault()` と `callback(true)`をコールして既定の動作を止める必要があります。\n \n ```javascript\n-session.on('certificate-error', function (event, ...
2017-06-10T19:21:53
golang/go
4e3d805a015153ca4e3382415c2474e4f954ddee
ae60636ab14e1bd49a8e5d818a5da8a526e59969
runtime/internal/startlinetest: add NO_LOCAL_POINTERS macro to asm function Should fix the mayMoreStack test. Change-Id: Iab99192629ab62ced81e95d756f2dd15f9b7e869 Reviewed-on: https://go-review.googlesource.com/c/go/+/443064 Auto-Submit: Austin Clements <austin@google.com> Reviewed-by: Michael Pratt <mpratt@google.co...
[ { "path": "src/runtime/internal/startlinetest/func_amd64.s", "patch": "@@ -2,6 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+#include \"funcdata.h\"\n #include \"textflag.h\"\n \n // Assembly function for runtime_test.TestStartLineAs...
2022-10-14T17:21:35
facebook/react
a3608d27ab657ab15809c969a97c3977a0f85b80
cb50a8698b3e8aef4e96fed09a4c8e0ec193af72
[traverseAllChildren] fix out-of-scope var use. Dear ES6 gods, bring us `let` soon. This fixes an issue where non-keyed iterables are used as children and the value of `i` would be undefined because its used out of scope. This adds a separately scoped iteration index value and appropriately increments it as iteration...
[ { "path": "src/utils/__tests__/traverseAllChildren-test.js", "patch": "@@ -288,7 +288,58 @@ describe('traverseAllChildren', function() {\n );\n });\n \n- it('should be called for each child in an iterable', function() {\n+ it('should be called for each child in an iterable without keys', function() ...
2014-11-04T02:16:52
nodejs/node
4e3f6f355b892d047e7e5a8ef5a65fb189e47f89
375166290681b209c7465d250dcd1e95543945f5
stream: cleanup and fix Readable.wrap Cleans up Readable.wrap and also ensures destroy is called for certain events. PR-URL: https://github.com/nodejs/node/pull/34204 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/_stream_readable.js", "patch": "@@ -26,6 +26,7 @@ const {\n NumberIsInteger,\n NumberIsNaN,\n ObjectDefineProperties,\n+ ObjectKeys,\n ObjectSetPrototypeOf,\n Set,\n SymbolAsyncIterator,\n@@ -1007,83 +1008,49 @@ function flow(stream) {\n // This is *not* part of the readable stre...
2020-07-04T16:55:50
vercel/next.js
7bb7f535146fe1c13e86f85593f29d5b87efaffd
b6c7183b06944a2f8c726da150b5a2063a47cc15
Fix config code in the CSS-in-JS chapter (#60164) Just a minor typo in the example config. Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "docs/02-app/01-building-your-application/05-styling/03-css-in-js.mdx", "patch": "@@ -138,7 +138,6 @@ First, enable styled-components in `next.config.js`.\n module.exports = {\n compiler: {\n styledComponents: true,\n- },\n },\n }\n ```", "additions": 0, "deletions": 1, "lan...
2024-01-03T17:10:59
golang/go
15e26698cc206661063c07cf7f0353391604001e
8826bdd143314895230776e582043d34ea635a33
cmd/link: return correct default linker for the platform If no external linker was passed with -extld, link currently assumes that it is "gcc" which is not correct for platforms that use clang toolchain. Return "clang" for platforms that use it, this fixes dir tests on freebsd/riscv64. For #53466 Change-Id: Ie3bce1b...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -473,7 +473,15 @@ func loadinternal(ctxt *Link, name string) *sym.Library {\n // extld returns the current external linker.\n func (ctxt *Link) extld() []string {\n \tif len(flagExtld) == 0 {\n-\t\tflagExtld = []string{\"gcc\"}\n+\t\t// Return the de...
2022-09-22T11:59:42
facebook/react
2601b6a0b0c2b0bccaca67fbbfab6987ac5bef30
cb50a8698b3e8aef4e96fed09a4c8e0ec193af72
ReactDOMSelect makeover, fix edge-case inconsistencies and remove state
[ { "path": "src/browser/ui/dom/components/ReactDOMSelect.js", "patch": "@@ -22,11 +22,14 @@ var assign = require('Object.assign');\n \n var select = ReactElement.createFactory('select');\n \n-function updateWithPendingValueIfMounted() {\n+function updateOptionsIfPendingUpdateAndMounted() {\n /*jshint valid...
2014-09-25T09:59:19
nodejs/node
375166290681b209c7465d250dcd1e95543945f5
b0d4eb37c728d36f6942c878d253607e4323b66e
deps: upgrade to libuv 1.38.1 Notable changes: - A probable compiler bug in VS2019 was causing a failed assertion in libuv which appeared to the user as though the system clock was drifting. The `uv_hrtime()` code on Windows has been rearranged to work around the issue. - On Linux, `uv_loadavg()` attempts to ...
[ { "path": "deps/uv/AUTHORS", "patch": "@@ -432,3 +432,6 @@ Philip Chimento <philip.chimento@gmail.com>\n Michal Artazov <michal@artazov.cz>\n Jeroen Roovers <jer@gentoo.org>\n MasterDuke17 <MasterDuke17@users.noreply.github.com>\n+Alexander Tokmakov <avtokmakov@yandex-team.ru>\n+Arenoros <arenoros@gmail.com...
2020-07-03T15:38:15
vercel/next.js
b6c7183b06944a2f8c726da150b5a2063a47cc15
c42c7cd001bb843e55438e655c425352871377ad
Move cacheDir logic to getCacheDir (#60133) ## What? Similar to #60132 but for `cacheDir`, allows moving it to a separate place later. <!-- 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 ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -353,6 +353,22 @@ function pageToRoute(page: string) {\n }\n }\n \n+function getCacheDir(distDir: string): string {\n+ const cacheDir = path.join(distDir, 'cache')\n+ if (ciEnvironment.isCI && !ciEnvironment.hasNextSupport) {\n+ const hasCach...
2024-01-03T15:40:55
electron/electron
254dcdaa458b449d0e8e2e0c6dc0f991527761cc
4c00176599918bb9a44518f5d9d39897e023ed6f
add tray icon workaround for newer Ubuntu releases (fixes #9046)
[ { "path": "lib/browser/init.js", "patch": "@@ -162,8 +162,8 @@ require('./api/protocol')\n // Set main startup script of the app.\n const mainStartupScript = packageJson.main || 'index.js'\n \n-// Workaround for electron/electron#5050\n-if (process.platform === 'linux' && process.env.XDG_CURRENT_DESKTOP ===...
2017-06-09T13:22:18
golang/go
8826bdd143314895230776e582043d34ea635a33
e9cdca9a24b63cba0560978fb48773b83805be25
debug/elf: fix inccorrect value in COMPRESS_ZLIB string name LLVM recently introduced ZSTD compression for ELF sections. The error message when failing to read the compressed section calls this COMPRESS_ZLIB+2 while it should report it as COMPRESS_ZLIB+1. Change-Id: I869aa69baf0c8c86665475b47343c790587cb39b Reviewed-...
[ { "path": "src/debug/elf/elf.go", "patch": "@@ -735,7 +735,7 @@ const (\n )\n \n var compressionStrings = []intName{\n-\t{0, \"COMPRESS_ZLIB\"},\n+\t{1, \"COMPRESS_ZLIB\"},\n \t{0x60000000, \"COMPRESS_LOOS\"},\n \t{0x6fffffff, \"COMPRESS_HIOS\"},\n \t{0x70000000, \"COMPRESS_LOPROC\"},", "additions": 1, ...
2022-10-14T09:13:38
nodejs/node
5e769b2eaf4595e9c8c429c8ae9bb4b32e6a7c8f
d36e832a32dfb0c0c49bf9e3dee93ff231c97eb0
quic: use less specific error codes Stop the madness. Only you can prevent excessive error code proliferation. PR-URL: https://github.com/nodejs/node/pull/34262 Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/api/errors.md", "patch": "@@ -1440,6 +1440,16 @@ type for one of its returned object properties on execution.\n Thrown in case a function option does not return an expected value\n type on execution, such as when a function is expected to return a promise.\n \n+<a id=\"ERR_INVALID_STATE\"></a...
2020-07-08T18:18:25
facebook/react
4b3b32e4180ff4b59652b1c43cfde176d8f8693a
881c9b5be885b612b3da5ae3f7cce008c43c77eb
Fix typo in If/Else JSX doc.
[ { "path": "docs/tips/03-if-else-in-JSX.md", "patch": "@@ -24,7 +24,7 @@ This means that `if` statements don't fit in. Take this example:\n <div id={if (condition) { 'msg' }}>Hello World!</div>\n \n // Is transformed to this JS:\n-React.createElement(\"dov\", {id: if (condition) { 'msg' }}, \"Hello World!\")...
2014-10-31T16:52:44
electron/electron
3ee55d9cd35584cd174533c7d51fdf8d9a1f8e1c
7bdd259d2e731abdc60d6987ea2734e78fac0459
lint error
[ { "path": "atom/app/atom_main_delegate.cc", "patch": "@@ -128,7 +128,7 @@ void AtomMainDelegate::PreSandboxStartup() {\n \n if (!command_line->HasSwitch(switches::kEnableMixedSandbox)) {\n if (command_line->HasSwitch(switches::kEnableSandbox)) {\n- // Disable setuid sandbox since it is not longer...
2017-06-09T06:46:37
vercel/next.js
c42c7cd001bb843e55438e655c425352871377ad
2d52962dfd37c2c52765fbad744680f5a050623d
Fix emitting ESM swc helpers for 3rd parties CJS libs in bundle (#60169) Previously in #58967 we set all the module type as `'es6'` to let swc parse app router code as ESM and output as ESM due to the incorrect detection of CJS module by auto-cjs plugin, but this is not accurate when the external library bundle is ...
[ { "path": "packages/next/src/build/swc/options.ts", "patch": "@@ -16,19 +16,33 @@ const regeneratorRuntimePath = require.resolve(\n 'next/dist/compiled/regenerator-runtime'\n )\n \n+function isTypeScriptFile(filename: string) {\n+ return filename.endsWith('.ts') || filename.endsWith('.tsx')\n+}\n+\n+func...
2024-01-03T15:04:08
golang/go
201759f959a6182215efe6070cf94dd4610cb3e9
a8ca70ff98dd088ff6afe57eafd553aa79732086
cmd/go/internal/modload: return error when tidyRoots fail Fixes #51589 Change-Id: Ie9c56110754f4a435b22e2d7a86ae34b0bd28909 Reviewed-on: https://go-review.googlesource.com/c/go/+/427054 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Gopher Robot <...
[ { "path": "src/cmd/go/internal/modload/load.go", "patch": "@@ -1151,22 +1151,23 @@ func loadFromRoots(ctx context.Context, params loaderParams) *loader {\n \t\trs, err := tidyRoots(ctx, ld.requirements, ld.pkgs)\n \t\tif err != nil {\n \t\t\tld.errorf(\"go: %v\\n\", err)\n-\t\t}\n-\n-\t\tif ld.requirements....
2022-08-31T15:34:26
rust-lang/rust
ca7a0aff74668ec62f4eb84a6b7655a2dfb821e2
ba5def8a85bc983460f65f889510accbc7b743ae
Fix some typos
[ { "path": "library/compiler-builtins/compiler-builtins/src/float/add.rs", "patch": "@@ -130,7 +130,7 @@ where\n return F::from_bits(MinInt::ZERO);\n }\n \n- // If partial cancellation occured, we need to left-shift the result\n+ // If partial cancellation occurred, we need ...
2025-08-19T23:03:18
nodejs/node
1198aebd2db710b22bfed003edcf8cca2db8a174
99f0404646e9e264c11bedd2bdf70fa0a1247199
deps: V8: backport 2d5017a0fc02 Original commit message: [coverage] remove the last continuation range before synthetic return Rather than only removing the continuation range for the last return statement prior to a synthetic return statement, remove the continuation tracking for whatever statement ...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.20',\n+ 'v8_embedder_string': '-node.21',\n \n ##### V8 defaults for Node.js #####\n...
2020-07-09T02:53:16
electron/electron
7bdd259d2e731abdc60d6987ea2734e78fac0459
cbbd4a4a3b7b4dfd02dfb729cd18c4f106d6b730
Lint error
[ { "path": "atom/app/atom_main_delegate.cc", "patch": "@@ -125,11 +125,11 @@ void AtomMainDelegate::PreSandboxStartup() {\n // Only append arguments for browser process.\n if (!IsBrowserProcess(command_line))\n return;\n- \n+\n if (!command_line->HasSwitch(switches::kEnableMixedSandbox)) {\n i...
2017-06-09T06:39:53
vercel/next.js
7818c2d73645f0496d090f668617097db20fc0e4
a1d2d91076c40e05f9b23813cd5ad2eb0abffe0d
Allow using ESM pkg with custom incremental cache (#59863) Use dynamic import instead of require to load the incremental cache handled, so when using ESM it will still work. Updated the tests and merged them into new test suite, include 3 cases of custom cache definition: - CJS with `module.exports` - CJS with ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -163,6 +163,7 @@ import { formatManifest } from './manifests/formatter/format-manifest'\n import { getStartServerInfo, logStartInfo } from '../server/lib/app-info-log'\n import type { NextEnabledDirectories } from '../server/base-server'\n import { ...
2024-01-03T13:22:50
golang/go
a8ca70ff98dd088ff6afe57eafd553aa79732086
cba63ac03833c6eeaf4184ca2022d014b84db455
os/signal: rewrite TestTerminalSignal without bash The existing version of this test contains several races it tries to control with sleeps. Unfortunately, it is still flaky on darwin because writing `fg` in bash too early can apparently result in failure to actually continue the stopped child. Rather than continuing...
[ { "path": "src/os/signal/signal_cgo_test.go", "patch": "@@ -11,52 +11,72 @@\n package signal_test\n \n import (\n-\t\"bufio\"\n-\t\"bytes\"\n \t\"context\"\n+\t\"encoding/binary\"\n \t\"fmt\"\n-\t\"io\"\n-\t\"io/fs\"\n \t\"os\"\n \t\"os/exec\"\n+\t\"os/signal\"\n \tptypkg \"os/signal/internal/pty\"\n+\t\"ru...
2022-10-04T16:50:03
rust-lang/rust
555986d8ac187601970a7f439b73dad305cb2d81
8c32e313cccf7df531e2d49ffb8227bb92304aee
Fix some doc typos
[ { "path": "RELEASES.md", "patch": "@@ -1778,7 +1778,7 @@ Language\n - [Undeprecate lint `unstable_features` and make use of it in the compiler.](https://github.com/rust-lang/rust/pull/118639/)\n - [Make inductive cycles in coherence ambiguous always.](https://github.com/rust-lang/rust/pull/118649/)\n - [Get...
2025-08-19T21:53:45
nodejs/node
99f0404646e9e264c11bedd2bdf70fa0a1247199
f98a441bf75f2b0b698a0f9dace218f56386ec4a
doc: specify encoding in text/html examples Fixes: https://github.com/nodejs/node/issues/29739 PR-URL: https://github.com/nodejs/node/pull/34222 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "doc/api/http2.md", "patch": "@@ -51,7 +51,7 @@ server.on('error', (err) => console.error(err));\n server.on('stream', (stream, headers) => {\n // stream is a Duplex\n stream.respond({\n- 'content-type': 'text/html',\n+ 'content-type': 'text/html; charset=utf-8',\n ':status': 200\n ...
2020-07-06T19:27:57
golang/go
c79b2009ef0b82e9c50ced139b2fd752018da0dd
005c78d8bbf6389d482a0bbb4e6c46719d77f59f
cmd/link: define ELF .note section on FreeBSD Write .note signature section when targeting FreeBSD, similar to NetBSD and OpenBSD. This allows binaries to declare the ABI version they were compiled for and opt out of ASLR when compiled with -race. Fixes #48164 Change-Id: Ie54dd5c70697a3f42a75fd640540350fd8a4dc71 Rev...
[ { "path": "src/cmd/link/elf_test.go", "patch": "@@ -204,8 +204,8 @@ func TestMergeNoteSections(t *testing.T) {\n \texpected := 1\n \n \tswitch runtime.GOOS {\n-\tcase \"linux\", \"freebsd\", \"dragonfly\":\n-\tcase \"openbsd\", \"netbsd\":\n+\tcase \"linux\", \"dragonfly\":\n+\tcase \"openbsd\", \"netbsd\",...
2022-06-15T19:50:19
vercel/next.js
a1d2d91076c40e05f9b23813cd5ad2eb0abffe0d
4c2120d70100e6236b595b02bee27f7873fe6855
Fix start build log being overwritten by logs from page (#60122) The start line of build logging `Creating an optimized production build ...` was logged by spinner, and when all build is finished we stop that spinner. But the problem is all the logs from a page such as warnings will be also leaded by it since they ...
[ { "path": "packages/next/src/build/build-context.ts", "patch": "@@ -1,5 +1,4 @@\n import type { LoadedEnvFiles } from '@next/env'\n-import type { Ora } from 'next/dist/compiled/ora'\n import type { Rewrite, Redirect } from '../lib/load-custom-routes'\n import type { __ApiPreviewProps } from '../server/api-u...
2024-01-03T13:07:58
rust-lang/rust
d0841c7decfa4a9cda77c0078c9140036273133f
16ad385579cebb6f7d53367c552661b6b51a4a02
Fix typos in LocalKey documentation
[ { "path": "library/std/src/thread/local.rs", "patch": "@@ -24,10 +24,10 @@ use crate::fmt;\n /// [`with`]) within a thread, and values that implement [`Drop`] get\n /// destructed when a thread exits. Some platform-specific caveats apply, which\n /// are explained below.\n-/// Note that, should the destruct...
2025-08-19T20:47:25
nodejs/node
f98a441bf75f2b0b698a0f9dace218f56386ec4a
a720c0edcc40a86bee9a696cd791df3420c398ad
doc: document the ready event for Http2Stream Fixes: https://github.com/nodejs/node/issues/22804 PR-URL: https://github.com/nodejs/node/pull/34221 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/http2.md", "patch": "@@ -984,6 +984,15 @@ argument identifying the frame type, and an integer argument identifying the\n error code. The `Http2Stream` instance will be destroyed immediately after the\n `'frameError'` event is emitted.\n \n+#### Event: `'ready'`\n+<!-- YAML\n+added: v8.4.0...
2020-07-06T19:09:35
golang/go
005c78d8bbf6389d482a0bbb4e6c46719d77f59f
498ee73a4b9f48c0916bb5a2bdd22ddf6aca79c6
cmd/go: avoid setting mod=vendor in workspace mode Workspaces with a single module would enter mod=vendor mode even when in workspace mode. Fix that by explicitly checking that we're not in workspace mode when deciding whether to enter vendor mode. Fixes #54130 Change-Id: I03fcd9db4160c9872aa2b7957a80f24d49f787d0 Re...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -1154,7 +1154,7 @@ func setDefaultBuildMod() {\n \t\treturn\n \t}\n \n-\tif len(modRoots) == 1 {\n+\tif len(modRoots) == 1 && !inWorkspaceMode() {\n \t\tindex := MainModules.GetSingleIndexOrNil()\n \t\tif fi, err := fsys.Stat(filepath.Join(modRoo...
2022-10-05T23:06:23
vercel/next.js
a31f7c7c60c2ba0164fcc9d7516ffb835491d25f
e334859f21dba6555a5d556ca8b237a26e589937
fix(turbopack-ecmascript): make sure async module wrapper is always generated (vercel/turbo#6832) ### Description The esm check for `EcmascriptModuleContent` was not the same as the check to add async modules during analysis. This makes sure both are the same. Specifically `import *` was not checked and the `Spe...
[ { "path": "crates/turbopack-ecmascript/src/analyzer/imports.rs", "patch": "@@ -123,7 +123,7 @@ pub(crate) struct ImportMapReference {\n \n impl ImportMap {\n pub fn is_esm(&self) -> bool {\n- self.has_exports || !self.imports.is_empty()\n+ self.has_exports || !self.imports.is_empty() || !s...
2024-01-03T09:32:49
facebook/react
93ac4d09a10774c7ff214c263c6be9ab7b00b3f4
ce1b394529e75430e5c71928d2bc4f457520c3ad
React.renderComponent --> React.render Also fixed a spelling mistake.
[ { "path": "docs/docs/02.2-jsx-spread.md", "patch": "@@ -6,7 +6,7 @@ prev: jsx-in-depth.html\n next: jsx-gotchas.html\n ---\n \n-If you know all the properties that you want to place on a component a head of time, it is easy to use JSX:\n+If you know all the properties that you want to place on a component a...
2014-10-29T18:05:16
rust-lang/rust
ffd8320d9e19dc43906bce6226e3adb928c74556
92c2bda4239f071c192e8487cd5fd374b9943a7d
[std][BTree] Fix behavior of `::append` to match documentation and `::insert`
[ { "path": "library/alloc/src/collections/btree/append.rs", "patch": "@@ -107,6 +107,11 @@ where\n /// If two keys are equal, returns the key-value pair from the right source.\n fn next(&mut self) -> Option<(K, V)> {\n let (a_next, b_next) = self.0.nexts(|a: &(K, V), b: &(K, V)| K::cmp(&a.0, ...
2025-08-19T18:43:38
nodejs/node
a720c0edcc40a86bee9a696cd791df3420c398ad
14ac6e42262fa89440be17122421d7f1fac7feb8
doc: add comment to example about 2xx status codes Fixes: https://github.com/nodejs/node/issues/29714 PR-URL: https://github.com/nodejs/node/pull/34223 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/http.md", "patch": "@@ -2236,6 +2236,8 @@ http.get('http://nodejs.org/dist/index.json', (res) => {\n const contentType = res.headers['content-type'];\n \n let error;\n+ // Any 2xx status code signals a successful response but\n+ // here we're only checking for 200.\n if (statusCod...
2020-07-06T19:33:10
golang/go
9fe17a0340b1609355aa5ce1828a0cf39e0a8092
36ca37f3a04aac4b67aa7fe3cfe480c891d0d53f
cmd/link: don't reset variable size when handling -X flag The linker's -X flag allows setting/changing a string variable's content at link time. Currently it resets its size then write a new string header pointing to the new content. This mostly works. But under ASAN build the string variable can have larger size than...
[ { "path": "misc/cgo/testsanitizers/asan_test.go", "patch": "@@ -5,6 +5,7 @@\n package sanitizers_test\n \n import (\n+\t\"fmt\"\n \t\"strings\"\n \t\"testing\"\n )\n@@ -97,3 +98,44 @@ func TestASAN(t *testing.T) {\n \t\t})\n \t}\n }\n+\n+func TestASANLinkerX(t *testing.T) {\n+\t// Test ASAN with linker's -X...
2022-10-12T20:24:34
facebook/react
ce1b394529e75430e5c71928d2bc4f457520c3ad
a54ed49eb05200dcdc2f27ba9437d17e37571547
Followup fix for React.PropTypes.node This should have gone in as a part of #2343
[ { "path": "src/addons/link/__tests__/ReactLinkPropTypes-test.js", "patch": "@@ -95,7 +95,7 @@ describe('ReactLink', function() {\n {value: 42, requestChange: emptyFunction}\n );\n typeCheckPass(\n- LinkPropTypes.link(React.PropTypes.renderable),\n+ LinkPropTypes.link(React.PropTypes....
2014-10-29T05:49:25
vercel/next.js
d52d36d3b3d3d9f7ded6cec62d8eaf2ac68f07a0
5d5f58560f46b3300d2e5dc7de90025f46730da1
gracefully handle client router segment mismatches (#60141) ### What? Next.js throws a hard `SEGMENT MISMATCH` error when the reducers were unable to apply the a patch to the router tree from the server response. ### How? Rather than crashing the router, this will treat segment mismatches as a MPA navigation, t...
[ { "path": "packages/next/src/client/components/router-reducer/handle-segment-mismatch.ts", "patch": "@@ -0,0 +1,28 @@\n+import type { FlightRouterState } from '../../../server/app-render/types'\n+import { handleExternalUrl } from './reducers/navigate-reducer'\n+import type {\n+ ReadonlyReducerState,\n+ Re...
2024-01-03T03:49:55
nodejs/node
14ac6e42262fa89440be17122421d7f1fac7feb8
62bdb7e801ace08d5ec5443c10e89947bd94b288
doc: document that whitespace is ignored in base64 decoding Fixes: https://github.com/nodejs/node/issues/8569 PR-URL: https://github.com/nodejs/node/pull/34227 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed...
[ { "path": "doc/api/buffer.md", "patch": "@@ -111,7 +111,8 @@ string into a `Buffer` as decoding.\n \n * `'base64'`: [Base64][] encoding. When creating a `Buffer` from a string,\n this encoding will also correctly accept \"URL and Filename Safe Alphabet\" as\n- specified in [RFC 4648, Section 5][].\n+ sp...
2020-07-06T20:26:58
electron/electron
dd394b0d5c269c6fa8a2087b4c1ccf75448ebfe8
0732329a387badc9e7cd5473e84fc696f0ec8f24
Fix typings for cookies.get
[ { "path": "docs/api/cookies.md", "patch": "@@ -68,7 +68,7 @@ The following methods are available on instances of `Cookies`:\n * `session` Boolean (optional) - Filters out session or persistent cookies.\n * `callback` Function\n * `error` Error\n- * `cookies` Cookies[]\n+ * `cookies` Cookie[]\n \n Send...
2017-06-08T13:03:57
vercel/next.js
5b65491ddef33b8e176abd0093a1192ccffc6ad0
09bde5a053ef0e8c0300c11427fecc433a2aeb0c
Docs: If `revalidatePath`'s `path` has dynamic segment path, `type` must be `page`. (#59149) fix: #59148 <!-- 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...
[ { "path": "docs/02-app/02-api-reference/04-functions/revalidatePath.mdx", "patch": "@@ -17,7 +17,7 @@ revalidatePath(path: string, type?: 'page' | 'layout'): void;\n ```\n \n - `path`: Either a string representing the filesystem path associated with the data you want to revalidate (for example, `/product/[s...
2024-01-03T00:30:28
golang/go
1ef685fb7ba413c6f5943cc1aa61de911a7ef29a
f2acc607f8a6f2837ed302cedd70676d8ea1f463
debug: add top level security docs for dwarf, elf, macho, pe, and plan9obj Adds a package level doc comment to the debug/dwarf, debug/elf, debug/macho, debug/pe, and debug/plan9obj noting that these packages are not designed to be hardened against adversarial inputs. Change-Id: I678d01bcdc8ad01c23805f09cc59e64cec6c3f...
[ { "path": "src/debug/dwarf/open.go", "patch": "@@ -2,9 +2,19 @@\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 dwarf provides access to DWARF debugging information loaded from\n-// executable files, as defined in the DWARF 2.0 Stan...
2022-09-28T21:52:33
rust-lang/rust
a21d7d7529a0ef8c937c9ed541f990ae0125b725
8c32e313cccf7df531e2d49ffb8227bb92304aee
Fix doc of `std::os::windows::io::BorrowedSocket::borrow_raw` A small oversight in 0cb69dec57f I noticed while reading.
[ { "path": "library/std/src/os/windows/io/socket.rs", "patch": "@@ -54,7 +54,7 @@ impl BorrowedSocket<'_> {\n ///\n /// # Safety\n ///\n- /// The resource pointed to by `raw` must remain open for the duration of\n+ /// The resource pointed to by `socket` must remain open for the duration of...
2025-08-19T16:59:25
electron/electron
f8d3b363ea391d966f4d2ba99a47f44b9642ee05
0f4341da42f886aaab5e15d280254457efa77a17
:art: lint fix
[ { "path": "atom/browser/ui/webui/pdf_viewer_handler.cc", "patch": "@@ -119,7 +119,7 @@ void PdfViewerHandler::Initialize(const base::ListValue* args) {\n } else {\n initialize_callback_id_ = callback_id->CreateDeepCopy();\n }\n- \n+\n auto zoom_controller = WebContentsZoomController::FromWebConte...
2017-06-08T07:57:24