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
dfdbbd16cf6eb12fb6d63ba0f98dbbad9c431b28
c4a33f788f0f0d68e476a8f1569d8f4fcdf115ed
src: handle missing TracingController everywhere Fixes: https://github.com/nodejs/node/issues/33800 PR-URL: https://github.com/nodejs/node/pull/33815 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/tracing/trace_event.h", "patch": "@@ -70,8 +70,7 @@ enum CategoryGroupEnabledFlags {\n // const uint8_t*\n // TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(const char* category_group)\n #define TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED \\\n- node::tracing::TraceEventHelper::Ge...
2020-06-09T18:47:48
vercel/next.js
61b825be3937dc1f095cde942d623c79559b2c53
1f6defd4b097fb24d1fcf75a12cb77f082ed9706
fix hmr in multi-zone handling (#59307) ### What? When running a [multi-zone](https://github.com/vercel/next.js/tree/canary/examples/with-zones) app in dev, app pages would infinitely reload ### Why? The HMR upgrade request would fail and get caught into a retry loop. In the multi-zone case, they fail because ...
[ { "path": "packages/next/src/server/lib/router-server.ts", "patch": "@@ -582,8 +582,14 @@ export async function initialize(opts: {\n // console.error(_err);\n })\n \n- if (opts.dev && developmentBundler) {\n- if (req.url?.includes(`/_next/webpack-hmr`)) {\n+ if (opts.dev && de...
2023-12-06T20:15:42
electron/electron
b1095faa712d90f23c0842ec0cedca5aa9a54269
6f80379b30fc2bc50be1ac3455ffd6d4d4f8243c
minor fix for macos
[ { "path": "atom/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -270,8 +270,8 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n pending_resize_(false),\n weak_ptr_factory_(this) {\n DCHECK(render_widget_host_);\n-#if !defined(OS_MACOSX)\n bool is_guest_view_hack = ...
2017-05-02T18:46:07
golang/go
7f7f27f992850a06551c2798a3b874f5d5356ae9
bc73996facc45a2846ce6ffefad437314d554dcf
cmd/go: using strings.CutSuffix replace strings.HasSuffix and strings.TrimSuffix Change-Id: I79854419091d6c5c5c2922a1f45a3c5589673f11 Reviewed-on: https://go-review.googlesource.com/c/go/+/435138 Run-TryBot: xie cui <523516579@qq.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitsh...
[ { "path": "src/cmd/go/internal/modfetch/cache.go", "patch": "@@ -710,8 +710,7 @@ func rewriteVersionList(dir string) (err error) {\n \t\t// involved in module graph construction, many *.zip files\n \t\t// will never be requested.\n \t\tname := info.Name()\n-\t\tif strings.HasSuffix(name, \".mod\") {\n-\t\t\...
2022-09-27T11:28:39
rust-lang/rust
dbd5addf884158385782609405abb1161b827b15
3507a749b365aae4eefa96ab700a9315d3280ee7
Enhance UI test output handling for runtime errors When a UI test runs a compiled binary and an error/forbid pattern check fails, the failure message previously only showed compiler output, hiding the executed programs stdout/stderr. This makes it harder to see near-miss or unexpected runtime lines.
[ { "path": "src/tools/compiletest/src/runtest/ui.rs", "patch": "@@ -10,6 +10,7 @@ use super::{\n TestCx, TestOutput, Truncated, UI_FIXED, WillExecute,\n };\n use crate::json;\n+use crate::runtest::ProcRes;\n \n impl TestCx<'_> {\n pub(super) fn run_ui_test(&self) {\n@@ -127,6 +128,9 @@ impl TestCx<'_...
2025-08-15T09:32:22
nodejs/node
4faec56b8aaf4750167c8883ead90244c1e17341
db3d6b38b6a20f0caf432077a585bf51af5d06f4
vm: allow proxy callbacks to throw Fixes: https://github.com/nodejs/node/issues/33806 PR-URL: https://github.com/nodejs/node/pull/33808 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gerhard Stöbich <deb20...
[ { "path": "src/node_contextify.cc", "patch": "@@ -422,7 +422,7 @@ void ContextifyContext::PropertySetterCallback(\n args.GetReturnValue().Set(false);\n }\n \n- ctx->sandbox()->Set(ctx->context(), property, value).Check();\n+ USE(ctx->sandbox()->Set(ctx->context(), property, value));\n }\n \n // stat...
2020-06-09T14:25:39
vercel/next.js
4f67cbfe4a26436cf2f82e31c8de24b6ff031090
50d4578791e40a0113ac134caf49478738cf2717
Move App Router client-side constants to separate file (#59239) ## What? Noticed constants.js was included in the client-side bundle. This ensures only the needed constants are included. ## How? Created a separate file for client-side constants. <!-- Thanks for opening a PR! Your contribution is much ap...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -28,7 +28,6 @@ import {\n MIDDLEWARE_FILENAME,\n PAGES_DIR_ALIAS,\n INSTRUMENTATION_HOOK_FILENAME,\n- NEXT_DID_POSTPONE_HEADER,\n RSC_PREFETCH_SUFFIX,\n RSC_SUFFIX,\n } from '../lib/constants'\n@@ -142,6 +141,7 @@ import {\n RSC_HEADER,...
2023-12-06T11:07:33
electron/electron
92cc6746b1322e00255b881eb767c2ba729da487
aa89bc0bb871a883d1da63ad44a3b1ee17f7ad57
resolve errors introduced during rebase
[ { "path": "atom/browser/osr/osr_output_device.cc", "patch": "@@ -4,9 +4,9 @@\n \n #include \"atom/browser/osr/osr_output_device.h\"\n \n-#include \"third_party/skia/src/core/SkColor.h\"\n+#include \"third_party/skia/include/core/SkColor.h\"\n+#include \"third_party/skia/include/core/SkRect.h\"\n #include \"...
2017-05-02T01:57:40
golang/go
d7e663d909693492e18b5d031e9ddd7e19642621
4350c4a13196fabd7cef04eab2f8783f6c518804
os/signal: disable GNU readline to deflake TestTerminalSignal Fixes #55903. Change-Id: I992865277fb6526929d6c7db2b3b8d22ca0760f2 GitHub-Last-Rev: fc6f28e17c3d6c5f16f1cc047e42ac0ceb60e769 GitHub-Pull-Request: golang/go#55904 Reviewed-on: https://go-review.googlesource.com/c/go/+/435735 Reviewed-by: Bryan Mills <bcmill...
[ { "path": "src/os/signal/signal_cgo_test.go", "patch": "@@ -89,7 +89,7 @@ func TestTerminalSignal(t *testing.T) {\n \t// Start an interactive shell.\n \tctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)\n \tdefer cancel()\n-\tcmd := exec.CommandContext(ctx, bash, \"--norc\", \"--nopro...
2022-09-28T05:57:46
facebook/react
336890291e0090977e0019d4aaf47ccbdbf901d3
785d2cabef144c9a78ab6c430af2d9bd7d835f7d
Fix sourcemaps in JSXTransformer for Firefox Fixes #1725
[ { "path": "vendor/browser-transforms.js", "patch": "@@ -20,6 +20,7 @@\n var runScripts;\n var loadScripts;\n var headEl;\n+var dummyAnchor;\n \n var buffer = require('buffer');\n var transform = require('jstransform').transform;\n@@ -124,13 +125,20 @@ var transformCode = function(code, source, options) {\n ...
2014-07-09T16:31:31
rust-lang/rust
ae4eeb9299b5938cca183ad7a90e70a1bb4b1174
8800ec16657b24ad8a2f443c133bf0b56ae76033
Fix wrong spans with external macros in the `dropping_copy_types` lint
[ { "path": "compiler/rustc_lint/src/drop_forget_useless.rs", "patch": "@@ -151,7 +151,7 @@ impl<'tcx> LateLintPass<'tcx> for DropForgetUseless {\n && let Node::Stmt(stmt) = node\n && let StmtKind::Semi(e) = stmt.kind\n && e.hir_id == expr.hir_id\n- ...
2025-08-15T09:59:23
nodejs/node
cf32b4c74d84774e5465f6307acbbdb85846a634
f4e805c86082fcf8157c745e71977cc343dd1bc4
doc: use single quotes in --tls-cipher-list Currently, running the example code will produce the following error in bash: $ node --tls-cipher-list="ECDHE-RSA-AES128-GCM-SHA256:!RC4" server.js bash: !RC4: event not found This commit changes the two examples to use single quotes to avoid the shell from trying to interp...
[ { "path": "doc/api/tls.md", "patch": "@@ -308,9 +308,9 @@ instance, the following makes `ECDHE-RSA-AES128-GCM-SHA256:!RC4` the default TLS\n cipher suite:\n \n ```bash\n-node --tls-cipher-list=\"ECDHE-RSA-AES128-GCM-SHA256:!RC4\" server.js\n+node --tls-cipher-list='ECDHE-RSA-AES128-GCM-SHA256:!RC4' server.j...
2020-06-03T11:20:48
vercel/next.js
75975dd5e4f85be24e19b689dc1a16213b1f59d1
caa05b4753685b3e8dbb79781d6137a8c8bfbe17
docs: Fix incorrect prop name in client component (#58591) `updateItem` is the name of the action, not the passed prop. The correct property name is `myAction`.
[ { "path": "docs/02-app/02-api-reference/04-functions/server-actions.mdx", "patch": "@@ -76,9 +76,9 @@ In some cases, you might want to pass down a Server Action to a Client Component\n ```jsx filename=\"app/client-component.jsx\"\n 'use client'\n \n-export default function ClientComponent({ updateItem }) {\...
2023-12-06T03:31:58
facebook/react
0d481c69a5d16c22bc41a835cb8e839f22ff1a3c
745082c0ac1bf1fdce1e779a199b70aeb3150452
another way to fix the footer that is not shown
[ { "path": "examples/todomvc-flux/index.html", "patch": "@@ -7,9 +7,7 @@\n \t\t<link rel=\"stylesheet\" href=\"css/app.css\">\n \t</head>\n \t<body>\n-\t\t<div>\n-\t\t\t<section id=\"todoapp\" />\n-\t\t</div>\n+\t\t<section id=\"todoapp\"></section>\n \t\t<footer id=\"info\">\n \t\t\t<p>Double-click to edit ...
2014-07-09T08:39:14
electron/electron
3b94d268ebae907c6b9c78cc5cd95a69e8a026a1
c54f7f2a8d5e04b1d3c168f3d21954a1396bbf2f
lint fix :memo:
[ { "path": "atom/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -125,13 +125,13 @@ class AtomCopyFrameGenerator {\n request->set_area(gfx::Rect(view_->GetPhysicalBackingSize()));\n view_->GetRootLayer()->RequestCopyOfOutput(std::move(request));\n }\n- \n+\n void set_frame_rate_thresho...
2017-04-12T18:54:03
golang/go
190973eb603614eef33e0a22f420217fc13a2e0a
6e1b769377245f706c9c1471fa95276762e8edbf
all: fix some typos Change-Id: I8b28aebbb9494b2c877139a4584a5a42253e3bea GitHub-Last-Rev: e3703fd3a50b811785df75751472aa3ab098b3d1 GitHub-Pull-Request: golang/go#55902 Reviewed-on: https://go-review.googlesource.com/c/go/+/435617 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Cherry Mui <cherryyz@google.c...
[ { "path": "src/cmd/compile/internal/ssa/gen/RISCV64.rules", "patch": "@@ -613,7 +613,7 @@\n (BEQZ (NEG x) yes no) => (BEQZ x yes no)\n (BNEZ (NEG x) yes no) => (BNEZ x yes no)\n \n-// Negate comparision with FNES/FNED.\n+// Negate comparison with FNES/FNED.\n (BEQZ (FNES <t> x y) yes no) => (BNEZ (FEQS <t> ...
2022-09-28T02:34:31
nodejs/node
f4e805c86082fcf8157c745e71977cc343dd1bc4
0f9d474c524e5132423a96db05d2b2541fcda121
doc: fix misc. mislabeled code block info strings Prior to this commit, a handful of misc. code blocks were in need of fixup. Corrections are according to predetermined conventions. Closes: https://github.com/nodejs/node/issues/32938 PR-URL: https://github.com/nodejs/node/pull/33548 Fixes: https://github.com/nodejs/...
[ { "path": "doc/guides/investigating_native_memory_leak.md", "patch": "@@ -366,7 +366,7 @@ line number:\n \n This new output shows us exactly where the leak is occurring in the file `hello.cc`:\n \n-```C++\n+```cpp\n 6 void* malloc_holder = nullptr;\n 7 napi_value Method(napi_env env, napi_callback_info ...
2020-05-24T16:37:21
facebook/react
734a34525779a349b25b2b7072f2a99f223c8308
a02b6b3d7f184dbed3662b5b7b8415a11b1b7306
Add displayName to ReactTransitionGroup + friends Fixes facebook/react-devtools#42. Test Plan: Crossed fingers.
[ { "path": "src/addons/transitions/ReactCSSTransitionGroup.js", "patch": "@@ -25,6 +25,8 @@ var ReactTransitionGroup = require('ReactTransitionGroup');\n var ReactCSSTransitionGroupChild = require('ReactCSSTransitionGroupChild');\n \n var ReactCSSTransitionGroup = React.createClass({\n+ displayName: 'ReactC...
2014-07-08T19:18:46
vercel/next.js
eab1fe83976f1a5b49f6fc65eef8be8d5f20929f
6387c9cbcbaf53adb9fdba1306a5b8a3f76a8cd5
Enable PPR for `dynamic = "force-dynamic"` (#58779) This makes some critical modifications to the app render pipeline when PPR has been enabled for pages with segments defining: ```js export const dynamic = "force-dynamic" ``` Importantly, it no longer modifies the revalidation time to zero for those pages, ...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -163,10 +163,10 @@ jobs:\n strategy:\n fail-fast: false\n matrix:\n- group: [1, 2, 3, 4, 5]\n+ group: [1/5, 2/5, 3/5, 4/5, 5/5]\n uses: ./.github/workflows/build_reusable.yml\n with:\n- afterBuild: RUST...
2023-12-06T01:10:00
electron/electron
89277dda9054009ebf2bf967ca3f79cd720860fe
704fde1939ff4c41ee2af37e570c8e98b9435e93
fix leaking of NativeImage instances
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -1578,9 +1578,7 @@ bool WebContents::IsOffScreen() const {\n }\n \n void WebContents::OnPaint(const gfx::Rect& dirty_rect, const SkBitmap& bitmap) {\n- mate::Handle<NativeImage> image =\n- NativeImage::Create(isolate(), gfx::Image::Cr...
2017-04-12T14:16:27
golang/go
7a74829858bbc2fdf8b2d8902f7df46935cf6be9
dbe56ff6c7a0162f318ed2dd7331c9de82e11d6d
cmd/covdata: add tools to read/manipulate coverage data files Add a set of helper packages for reading collections of related meta-data and counter-data files ("pods") produced by runs of coverage-instrumented binaries, and a new tool program (cmd/covdata) for dumping and/or manipulating coverage data files. Currentl...
[ { "path": "src/cmd/covdata/argsmerge.go", "patch": "@@ -0,0 +1,64 @@\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package main\n+\n+import \"fmt\"\n+\n+type argvalues struct {\n+\tosa...
2021-10-21T14:57:23
nodejs/node
278aae28e14da89e6bd6d91c07ded2dc5f8fe8c3
4678e44bb28c00dc22771a0ef2684a4d46715ab0
zlib: add `maxOutputLength` option Fixes: https://github.com/nodejs/node/issues/27253 PR-URL: https://github.com/nodejs/node/pull/33516 Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/api/zlib.md", "patch": "@@ -486,6 +486,9 @@ These advanced options are available for controlling decompression:\n <!-- YAML\n added: v0.11.1\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/33516\n+ description: The `maxOutputLength` option is supported...
2020-05-22T17:22:09
facebook/react
bcea3bee45a84f290e2c64efceb3734412cccf03
e10d10e31e0a1dfba16880f8f065de8329c896dc
Also list <form> in error message as possible culprit
[ { "path": "src/browser/ui/ReactMount.js", "patch": "@@ -649,9 +649,10 @@ var ReactMount = {\n false,\n 'findComponentRoot(..., %s): Unable to find element. This probably ' +\n 'means the DOM was unexpectedly mutated (e.g., by the browser), ' +\n- 'usually due to forgetting a <tbody> w...
2014-07-01T17:05:37
electron/electron
2f32311292117f5eda05d1f1403548bbaa653eb8
155fef99aede6b2314a3c602ec4501c050219401
fix black bars around popups and scaled images when using gpu rendering
[ { "path": "atom/browser/osr/osr_web_contents_view.cc", "patch": "@@ -30,6 +30,8 @@ OffScreenWebContentsView::~OffScreenWebContentsView() {\n void OffScreenWebContentsView::SetWebContents(\n content::WebContents* web_contents) {\n web_contents_ = web_contents;\n+ \n+ RenderViewCreated(web_contents_->...
2017-04-12T02:11:49
vercel/next.js
78a2eb0b9b031f49eed4867dbbcffe369be98baf
2003f5f8489b1a5a12c1eb05d3dd595f6342fe5e
fix interception routes with dynamic segments (#59273) ### What? Using an interception marker next to a dynamic segment does not behave properly when deployed to Vercel ### Why? The named route regex that gets created is not accounting for the interception marker, which is causing the non-intercepted route to m...
[ { "path": "packages/next/src/shared/lib/router/utils/route-regex.test.ts", "patch": "@@ -24,6 +24,18 @@ describe('getNamedRouteRegex', () => {\n expect(regex.re.test('/photos/(.)next/123')).toBe(true)\n })\n \n+ it('should match named routes correctly when interception markers are adjacent to dynamic...
2023-12-05T16:47:40
rust-lang/rust
cda2114c655a1eab26c8c8678eb23525733353dc
3507a749b365aae4eefa96ab700a9315d3280ee7
Fix typos in bootstrap.example.toml equivelent -> equivalent recommeded -> recommended
[ { "path": "bootstrap.example.toml", "patch": "@@ -9,7 +9,7 @@\n # a custom configuration file can also be specified with `--config` to the build\n # system.\n #\n-# Note that the following are equivelent, for more details see <https://toml.io/en/v1.0.0>.\n+# Note that the following are equivalent, for more ...
2025-08-15T07:57:24
golang/go
dbe56ff6c7a0162f318ed2dd7331c9de82e11d6d
2c4c2a5106e16a2ef51e3fc1d846e5d75d7ee6cc
go/types, types2: use "invalid operation: x rel y (cause)" for comparison error messages Matches compiler behavior and is consistent with what we do with other binary operations. While at it, also use parentheses rather than a colon for a couple of errors caused by not having a core type. For #55326. Change-Id: I0a...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -193,7 +193,7 @@ func (check *Checker) unary(x *operand, e *syntax.Operation) {\n \tcase syntax.Recv:\n \t\tu := coreType(x.typ)\n \t\tif u == nil {\n-\t\t\tcheck.errorf(x, _InvalidReceive, invalidOp+\"cannot receive from %s: no core type\", ...
2022-09-28T03:07:30
nodejs/node
4678e44bb28c00dc22771a0ef2684a4d46715ab0
35871c3e404d4378802efa9cbb41494a5835aa89
src: perform bounds checking on error source line Fixes: https://github.com/nodejs/node/issues/33578 PR-URL: https://github.com/nodejs/node/pull/33645 Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "src/node_errors.cc", "patch": "@@ -55,19 +55,18 @@ static std::string GetErrorSource(Isolate* isolate,\n MaybeLocal<String> source_line_maybe = message->GetSourceLine(context);\n node::Utf8Value encoded_source(isolate, source_line_maybe.ToLocalChecked());\n std::string sourceline(*encoded_s...
2020-05-29T21:39:39
facebook/react
745082c0ac1bf1fdce1e779a199b70aeb3150452
bc11793c04236270996f506e7bd4b6bceddc9543
fix the disappearing footer on the todomvc-flux sample
[ { "path": "examples/todomvc-flux/index.html", "patch": "@@ -7,7 +7,9 @@\n \t\t<link rel=\"stylesheet\" href=\"css/app.css\">\n \t</head>\n \t<body>\n-\t\t<section id=\"todoapp\" />\n+\t\t<div>\n+\t\t\t<section id=\"todoapp\" />\n+\t\t</div>\n \t\t<footer id=\"info\">\n \t\t\t<p>Double-click to edit a todo</...
2014-07-08T09:59:07
electron/electron
bccc25165d1d7d9745eb29643ab99e850a34eb25
8f546313b66cad4ee3d38ff01bff0e956cac18ae
fix mouse wheel event sending typo
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -1441,7 +1441,7 @@ void WebContents::SendInputEvent(v8::Isolate* isolate,\n } else if (type == blink::WebInputEvent::MouseWheel) {\n blink::WebMouseWheelEvent mouse_wheel_event;\n if (mate::ConvertFromV8(isolate, input_event, &mou...
2017-03-05T15:20:32
vercel/next.js
6790004d79ad17d1d512ee24d8cb5abead591e6e
b88e263f4c654b7909b93e98e620d362405e9eb5
Fix barrel optimization to ignore layers (#59254) Fixes #57624. The recent issue was an unexpected side effect caused by https://github.com/vercel/next.js/commit/305bb015060e82be3e6ae59a3d063c11a3e207f9, which only affects specific packages like `@mui/material`. The problem was that the entry file of `@mui/materi...
[ { "path": "packages/next-swc/crates/core/src/optimize_barrel.rs", "patch": "@@ -73,11 +73,16 @@ impl Fold for OptimizeBarrel {\n \n // We only apply this optimization to barrel files. Here we consider\n // a barrel file to be a file that only exports from other modules.\n+\n // Besid...
2023-12-05T16:17:31
rust-lang/rust
2218ff1940bc8baafcc1acf2c861d48499e20d06
3507a749b365aae4eefa96ab700a9315d3280ee7
fix: Reject async assoc fns of const traits/impls in ast_passes
[ { "path": "compiler/rustc_ast_passes/messages.ftl", "patch": "@@ -32,6 +32,13 @@ ast_passes_assoc_type_without_body =\n associated type in `impl` without body\n .suggestion = provide a definition for the type\n \n+ast_passes_async_fn_in_const_trait_or_trait_impl =\n+ async functions are not allow...
2025-08-04T14:59:28
golang/go
61ed6d5c3341f73af9529b4808dd0997c6c86ed4
b2137e7dad4fce1f366ad432faed4f78f29ac3fa
crypto/rsa,crypto/internal/boring: fix PSS salt handling Fix the coversion between our sentinel salt length variables and the BoringSSL versions in SignRSAPSS. We previously set -1 (hash length equals salt length) when 0 was passed when we should've been setting -2. This now matches the conversion that happens in Veri...
[ { "path": "src/crypto/internal/boring/rsa.go", "patch": "@@ -245,14 +245,28 @@ func encrypt(ctx *C.GO_EVP_PKEY_CTX, out *C.uint8_t, outLen *C.size_t, in *C.uin\n \treturn C._goboringcrypto_EVP_PKEY_encrypt(ctx, out, outLen, in, inLen)\n }\n \n+var invalidSaltLenErr = errors.New(\"crypto/rsa: PSSOptions.Salt...
2022-09-01T00:15:08
electron/electron
c9fa71bdb31874196f671d039310a61b5f41de90
20d2ab29ab51cafc1c8b391c19134fbb7f711779
lint fix
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -343,13 +343,13 @@ WebContents::WebContents(v8::Isolate* isolate, const mate::Dictionary& options)\n session->browser_context(), site_instance);\n guest_delegate_.reset(new WebViewGuestDelegate);\n params.guest_delegate = gu...
2017-03-05T15:18:57
vercel/next.js
b88e263f4c654b7909b93e98e620d362405e9eb5
bb3f0a21a08b86a1244ac5bf9e9de61f45f14b83
fix dev parallelism in daily turbopack tests (#59287) Also fixes the retry running on forks (hopefully for real this time) Closes PACK-2087
[ { "path": ".github/workflows/nextjs-integration-test.yml", "patch": "@@ -23,9 +23,7 @@ env:\n RUST_BACKTRACE: 0\n NEXT_TELEMETRY_DISABLED: 1\n TEST_CONCURRENCY: 6\n- DATADOG_API_KEY: ${{ secrets.DATA_DOG_API_KEY }}\n NEXT_JUNIT_TEST_REPORT: 'true'\n- DD_ENV: 'ci'\n # Turbopack specific customiza...
2023-12-05T14:41:49
facebook/react
70bf3e1306395a2bd1e65bce60b5511875b00800
a02b6b3d7f184dbed3662b5b7b8415a11b1b7306
Give useful error when using two copies of React If we don't error here, we end up with a confusing error later on in this.getDOMNode() where ReactMount doesn't have the proper container registered in its object.
[ { "path": "src/browser/ui/ReactMount.js", "patch": "@@ -19,8 +19,9 @@\n \"use strict\";\n \n var DOMProperty = require('DOMProperty');\n-var ReactCurrentOwner = require('ReactCurrentOwner');\n var ReactBrowserEventEmitter = require('ReactBrowserEventEmitter');\n+var ReactCurrentOwner = require('ReactCurrent...
2014-05-15T02:12:13
golang/go
b2137e7dad4fce1f366ad432faed4f78f29ac3fa
fa13731a45049eca149bdfd807c35d18ece6a85a
go/types, types2: use 2nd operand position for comparison type mismatch errors When a comparison is invalid due to mismatched types, we only know when we see the 2nd operand; so use that operand's position for the error message. This matches compiler behavior. For #55326. Change-Id: I79450756bbdd2b4bb90ed4e960a451be...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -788,11 +788,6 @@ func (check *Checker) comparison(x, y *operand, op syntax.Operator, switchCase b\n \t\t// know after seeing the 2nd operand whether we have\n \t\t// a type mismatch.\n \t\terrOp = y\n-\t\t// For now, if we're not running the...
2022-09-27T22:23:42
vercel/next.js
bb3f0a21a08b86a1244ac5bf9e9de61f45f14b83
2cd3bf4618c0692d5577d58dc9fb77cd5619f961
docs: fix broken link to learn course (#59288) Addresses https://github.com/vercel/feedback/issues/47802.
[ { "path": "docs/index.mdx", "patch": "@@ -46,7 +46,7 @@ The breadcrumbs at the top of the page will also indicate whether you're viewing\n \n Although our docs are designed to be beginner-friendly, we need to establish a baseline so that the docs can stay focused on Next.js functionality. We'll make sure to...
2023-12-05T14:39:54
facebook/react
559eb899657b7717e2a1013cd860407cb89c2b3c
e8e08127c5df68dbd0d330adac981aabcde15ff4
make invariant show formatted actual errors in all unminified environments Because we can have !__DEV__ but unminified, we still want to see the message in those cases.
[ { "path": "src/vendor/core/invariant.js", "patch": "@@ -29,34 +29,32 @@\n * will remain to ensure logic does not differ in production.\n */\n \n-var invariant = function(condition) {\n- if (!condition) {\n- var error = new Error(\n- 'Minified exception occured; use the non-minified dev environmen...
2014-07-03T20:53:41
nodejs/node
5590ee0d99a867f115a8eeced15a63be6bfaf298
921f75534cdc2ad6fdc61c573d18f61ca14b35da
test: fix invalid regular expressions in case test-trace-exit PR-URL: https://github.com/nodejs/node/pull/33769 Fixes: https://github.com/nodejs/node/issues/30516 Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By...
[ { "path": "test/parallel/test-trace-exit.js", "patch": "@@ -47,12 +47,12 @@ switch (true) {\n stderr.match(/WARNING: Exited the environment with code 0/g);\n if (warnings === 0) {\n assert.strictEqual(actualWarnings, null);\n- return;\n+ continue;\n }\n assert.strictEqual(a...
2020-06-06T07:06:21
golang/go
fa13731a45049eca149bdfd807c35d18ece6a85a
a45171328635484cf9d7039ca7273bbb7984dbcc
debug/elf: return error on reading from SHT_NOBITS sections An SHT_NOBITS section contains no bytes and occupies no space in the file. This change makes it return an error on reading from this section so that it will force the caller to check for an SHT_NNOBITS section. We have considered another option to return "ni...
[ { "path": "src/debug/elf/elf_test.go", "patch": "@@ -47,25 +47,3 @@ func TestNames(t *testing.T) {\n \t\t}\n \t}\n }\n-\n-func TestNobitsSection(t *testing.T) {\n-\tconst testdata = \"testdata/gcc-amd64-linux-exec\"\n-\tf, err := Open(testdata)\n-\tif err != nil {\n-\t\tt.Fatalf(\"could not read %s: %v\", t...
2022-09-27T17:36:26
vercel/next.js
9f29b270bd89b3a3d0d2210e670e0960af3d8b5e
3e8fe3c763cc196b89723283288a4db01d883615
Fix app-dir - logging test in Turbopack (#59261) Ensures the app-dir - logging tests pass with Turbopack enabled. <!-- 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 ...
[ { "path": "packages/next/src/lib/turbopack-warning.ts", "patch": "@@ -79,6 +79,7 @@ const supportedTurbopackNextConfigOptions = [\n 'experimental.isrFlushToDisk',\n 'experimental.logging.level',\n 'experimental.logging.fullUrl',\n+ 'logging.fetches.fullUrl',\n 'experimental.scrollRestoration',\n ...
2023-12-05T12:47:32
nodejs/node
921f75534cdc2ad6fdc61c573d18f61ca14b35da
fd7e40854c447234a05dc3ef0ee717cad138c681
inspector: drop 'chrome-' from inspector url It has been reported that the https://github.com/cjihrig/node-v8-inspector V8 inspector extension can no longer connect DevTools (despite no code changes to the extension since Feb. 2017). Upon investigation, Chrome dropped support for the chrome-devtools: scheme recently. ...
[ { "path": "src/inspector_socket_server.cc", "patch": "@@ -373,7 +373,7 @@ void InspectorSocketServer::SendListResponse(InspectorSocket* socket,\n std::string InspectorSocketServer::GetFrontendURL(bool is_compat,\n const std::string &formatted_address) {\n std::ostringstream frontend_url;\n- frontend_...
2020-06-05T18:22:39
golang/go
7398c3c0c6d66a95d0c29c8fa59322e675ce7c86
b16501c08b37235a67e2fc5b506f169152db57ae
cmd/compile: use "method T.m already declared" for method redeclaration errors Compromise between old compiler error "T.m redeclared in this block" (where the "in this block" is not particularly helpful) and the old type-checker error "method m already declared for type T ...". In the case where we have position infor...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -675,15 +675,11 @@ func (check *Checker) collectMethods(obj *TypeName) {\n \t\t// to it must be unique.\"\n \t\tassert(m.name != \"_\")\n \t\tif alt := mset.insert(m); alt != nil {\n-\t\t\tvar err error_\n-\t\t\terr.code = _DuplicateMethod\n-...
2022-09-27T04:27:20
vercel/next.js
faa44210340d2ef19da6252e40a9b3e66f214637
40cb6f4eb911ae2b2e7c25c850b79081098ca033
fix: properly call `normalizeDynamicRouteParams` in `NextWebServer.handleCatchAllRenderRequest` (#58949) fixes https://github.com/vercel/next.js/issues/53682 This follows the same implementation as `Server.handleCatchallRenderRequest` (base-server).
[ { "path": "packages/next/src/server/server-utils.ts", "patch": "@@ -83,6 +83,88 @@ export function interpolateDynamicPath(\n return pathname\n }\n \n+export function normalizeDynamicRouteParams(\n+ params: ParsedUrlQuery,\n+ ignoreOptional?: boolean,\n+ defaultRouteRegex?: ReturnType<typeof getNamedRou...
2023-12-05T08:43:32
nodejs/node
de501d281cc96582f82dc56364a10019bb62c912
689680a5315a51cfe347968a893c38bb60be56eb
deps: V8: cherry-pick b5939c758924 Original commit message: Revert "s390: [arm] Add missing RELATIVE_CODE_TARGET iteration" This reverts commit 9d3cca1cd3ad7c6653cab1cdf111d356f33f77cd. Reason for revert: Only the test needs to be skipped on s390. Refer to this: https://crrev.com/c/1981505 Original...
[ { "path": "deps/v8/src/execution/isolate.cc", "patch": "@@ -3431,15 +3431,15 @@ bool Isolate::Init(ReadOnlyDeserializer* read_only_deserializer,\n \n setup_delegate_->SetupBuiltins(this);\n \n-#if !defined(V8_TARGET_ARCH_ARM) && !defined(V8_TARGET_ARCH_S390X)\n+#ifndef V8_TARGET_ARCH_ARM\n // Store ...
2020-06-02T18:06:13
golang/go
b16501c08b37235a67e2fc5b506f169152db57ae
3b5188ed2c38ba29aa586db7af243c3f3be27944
go/types, types2: use "unknown field f in struct literal of type S" in error messages This is a compromise of the error reported by the compiler (quotes around field name removed) and the error reported by the type checkers (added mention of struct type). For #55326. Change-Id: Iac4fb5c717f17c6713e90d327d39e68d3be40...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -1418,11 +1418,7 @@ func (check *Checker) exprInternal(x *operand, e syntax.Expr, hint Type) exprKin\n \t\t\t\t\t}\n \t\t\t\t\ti := fieldIndex(utyp.fields, check.pkg, key.Value)\n \t\t\t\t\tif i < 0 {\n-\t\t\t\t\t\tif check.conf.CompilerError...
2022-09-26T19:47:41
facebook/react
9e60afdc31380f0ec401cb88a13950f9647f5a29
17aef05d750d9951c935e748a67e92229eea72ab
Fixing grunt jsx task in Windows Spawning node directly instead of relying on shebang in the jsx-internal script Fixes #1292
[ { "path": "grunt/tasks/jsx.js", "patch": "@@ -1,5 +1,6 @@\n 'use strict';\n \n+var path = require(\"path\");\n var grunt = require(\"grunt\");\n var expand = grunt.file.expand;\n var spawn = grunt.util.spawn;\n@@ -27,8 +28,8 @@ module.exports = function() {\n args.push(\"--config\" /* from stdin */);\n \n...
2014-07-02T21:26:40
vercel/next.js
b9d0d6c2554bd39d74577c91a68e8723cbe77a80
edf19014f1f9764d6745fce3a6ea75b6601b37b3
docs: fix `remotePatterns` link in image-config.ts (#59197) ### What? The link in `@see - Remote Patterns` leads to - https://nextjs.org/docs/pages/api-reference/components/image#remote-patterns, but it should lead to - https://nextjs.org/docs/pages/api-reference/components/image#remotepatterns <img width="591"...
[ { "path": "packages/next/src/shared/lib/image-config.ts", "patch": "@@ -91,7 +91,7 @@ export type ImageConfigComplete = {\n /** @see [Dangerously Allow SVG](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-svg) */\n contentDispositionType: 'inline' | 'attachment'\n \n- /** @see [Remot...
2023-12-04T23:22:16
electron/electron
c8cc021ea126132764504ec7a794600d2f5cb3fb
7d9c1a80f025f4c46f7da8ea73246fe0f1968579
Fix broken link
[ { "path": "README.md", "patch": "@@ -52,5 +52,5 @@ void Initialize(v8::Handle<v8::Object> exports) {\n JavaScript.\n \n \n-[chromium-gin-lib]: https://code.google.com/p/chromium/codesearch#chromium/src/gin/README&sq=package:chromium\n+[chromium-gin-lib]: https://code.google.com/p/chromium/codesearch#chrom...
2017-05-09T07:24:43
nodejs/node
b9739b6e08fe279c239f6b0fbebf8ab6639383a1
a29d7c7ff7ed68cc7d1ba30b8ef24f64dc59df7c
doc: fix linting in doc-style-guide.md Disable lint checks (enable prohibited-strings remark-lint) for doc-style-guide.md:66. This was producing lint errors in builds on master. PR-URL: https://github.com/nodejs/node/pull/33787 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@g...
[ { "path": "doc/guides/doc-style-guide.md", "patch": "@@ -61,11 +61,11 @@\n <!-- lint disable prohibited-strings remark-lint-->\n * NOT OK: It is important to note that, in all cases, the return value will be\n a string regardless.\n- <!-- lint enable prohibited-strings remark-lint-->\n * When refer...
2020-06-07T23:26:16
facebook/react
c8d9957f68b4cd9891bf529a018338673e5b51ce
a02b6b3d7f184dbed3662b5b7b8415a11b1b7306
Fix spelling/grammar in test comment
[ { "path": "src/core/__tests__/ReactCompositeComponent-test.js", "patch": "@@ -112,8 +112,8 @@ describe('ReactCompositeComponent', function() {\n \n it('should give context for PropType errors in nested components.', () => {\n // In this test, we're making sure that if a proptype error is found in a\n-...
2014-07-02T21:09:38
vercel/next.js
edf19014f1f9764d6745fce3a6ea75b6601b37b3
936ae3de8ff91512c0cfd917450511428337a0cd
feat: support outputFileTracing in App Router (#59139) Fixes https://github.com/vercel/next.js/issues/54245 https://nextjs.org/docs/app/api-reference/next-config-js/output#caveats Currently, `outputFileTracingExcludes`/`outputFileTracingIncludes` only works with Pages router. This PR adds support for App router...
[ { "path": "packages/next/src/build/collect-build-traces.ts", "patch": "@@ -67,7 +67,6 @@ export async function collectBuildTraces({\n dir,\n config,\n distDir,\n- pageKeys,\n pageInfos,\n staticPages,\n nextBuildSpan = new Span({ name: 'build' }),\n@@ -77,10 +76,6 @@ export async function colle...
2023-12-04T23:15:39
nodejs/node
101e0a9d140357ac0fb532723b06d36d8cc0fe6c
55d9833ebf038f100fe14f9d75a81b082eeaf048
doc: change "pre Node.js v0.10" to "prior to Node.js 0.10" The phrasing "pre Node.js v0.10" is not grammatical, as "pre" is not a word. This also changes "Node.js v0.10" to "Node.js 0.10". We dropped use of the "v" prefix in prose some time ago to avoid confusion as to whether "v8" referred to the V8 JavaScript engine...
[ { "path": "doc/api/crypto.md", "patch": "@@ -3045,7 +3045,7 @@ key may be passed for `key`.\n \n ## Notes\n \n-### Legacy Streams API (pre Node.js v0.10)\n+### Legacy Streams API (prior to Node.js 0.10)\n \n The Crypto module was added to Node.js before there was the concept of a\n unified Stream API, and b...
2020-06-05T17:10:59
facebook/react
a02b6b3d7f184dbed3662b5b7b8415a11b1b7306
40b522c498a138d3ee5e7729e8e9f330feef88aa
Clarify when getDefaultProps is called Fixes #1778.
[ { "path": "docs/docs/ref-03-component-specs.md", "patch": "@@ -42,7 +42,7 @@ Invoked once before the component is mounted. The return value will be used as t\n object getDefaultProps()\n ```\n \n-Invoked once when the component is mounted. Values in the mapping will be set on `this.props` if that prop is no...
2014-07-02T21:06:30
electron/electron
efe23b7595744eb1f068bbd2816ba973ad4fcee2
8be4332765cc29a0b64a44f1c60e0622ed71d582
Use Node's memory allocator for ArrayBuffer For Buffers created in Node, they are usually allocated in Node and freed by Chromium's allocator, which will cause crashes when Node and Chromium are using different allocators. This commit makes Chromium use Node' allocator for ArrayBuffers.
[ { "path": "atom/browser/javascript_environment.cc", "patch": "@@ -10,13 +10,40 @@\n #include \"base/message_loop/message_loop.h\"\n #include \"base/threading/thread_task_runner_handle.h\"\n #include \"content/public/common/content_switches.h\"\n-#include \"gin/array_buffer.h\"\n #include \"gin/v8_initialize...
2017-05-09T05:12:39
golang/go
3b5188ed2c38ba29aa586db7af243c3f3be27944
605148c0fbf68b6942d62813bdaac9fb35f6159b
go/types, types2: use "multiple-value" instead "n-valued" in error messages This matches current compiler behavior. For #55326. Change-Id: I9ebe2914323072b5454fb9af2d15c9dd2d711bad Reviewed-on: https://go-review.googlesource.com/c/go/+/434735 Run-TryBot: Robert Griesemer <gri@google.com> Reviewed-by: Robert Grieseme...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -1860,11 +1860,7 @@ func (check *Checker) singleValue(x *operand) {\n \t\t// tuple types are never named - no need for underlying type below\n \t\tif t, ok := x.typ.(*Tuple); ok {\n \t\t\tassert(t.Len() != 1)\n-\t\t\tif check.conf.CompilerErr...
2022-09-26T18:47:22
vercel/next.js
936ae3de8ff91512c0cfd917450511428337a0cd
708f85b9df2230fb1e83b6e4fbe0ba0624230d34
fix(next-core): adjust edge entry path (#59265)
[ { "path": "packages/next-swc/crates/next-core/src/next_pages/page_entry.rs", "patch": "@@ -182,7 +182,7 @@ async fn wrap_edge_page(\n project_root,\n indexmap! {\n \"VAR_USERLAND\" => INNER.to_string(),\n- \"VAR_PAGE\" => page.clone(),\n+ \"VAR_PAGE\" => pat...
2023-12-04T22:40:52
facebook/react
40b522c498a138d3ee5e7729e8e9f330feef88aa
17aef05d750d9951c935e748a67e92229eea72ab
Give context for owners of compenent instantiations with propType errors See modification to the test-file: Basically we add a small hint at the end of the error warning for propType errors to help identify which instantiation of the component at hand is faulty.
[ { "path": "src/core/ReactCompositeComponent.js", "patch": "@@ -385,6 +385,15 @@ var RESERVED_SPEC_KEYS = {\n }\n };\n \n+function getDeclarationErrorAddendum(component) {\n+ var owner = component._owner || null;\n+ if (owner && owner.constructor && owner.constructor.displayName) {\n+ return ' Check t...
2014-07-02T19:45:49
nodejs/node
55d9833ebf038f100fe14f9d75a81b082eeaf048
08892fc0c488a4205f2880acda250af4a922aa51
doc: remove default parameter value from header In the docs, we specify the default value of function parameters in the list below the header. There is one exception where we use default parameter notation. Change that instance to be like the rest of the docs instead. I rather like the default parameter notation, and...
[ { "path": "doc/api/cluster.md", "patch": "@@ -415,13 +415,13 @@ if (cluster.isMaster) {\n }\n ```\n \n-### `worker.kill([signal='SIGTERM'])`\n+### `worker.kill([signal])`\n <!-- YAML\n added: v0.9.12\n -->\n \n * `signal` {string} Name of the kill signal to send to the worker\n- process.\n+ process. **Def...
2020-06-05T16:42:11
electron/electron
a05eb9047e55ccbcdc3c862abd83101c92737279
3321f7d39c8e186355b7cb2019ad72a0efd15b67
Fixing missed variable name
[ { "path": "lib/renderer/init.js", "patch": "@@ -73,7 +73,7 @@ for (let arg of process.argv) {\n isBackgroundPage = true\n } else if (arg.indexOf('--app-path=') === 0) {\n appPath = arg.substr(arg.indexOf('=') + 1)\n- } else if (arg.indexOf('--enable-webview-override=') === 0) {\n+ } else if (arg...
2017-05-09T01:50:20
golang/go
4360fd8d6fc6cd23f56b694a91ccf751896eb712
871a3a409ac55fdcaf329596023e56be279b1950
go/types, types2: use "and not used" instead of "but not used" in error messages This matches longstanding compiler behavior. Also, for unused packages, report: `"pkg" imported and not used` `"pkg" imported as X and not used` This matches the other `X declared and not used` errors. For #55326. Change-Id: Ie71cf66...
[ { "path": "src/cmd/compile/internal/types2/assignments.go", "patch": "@@ -142,7 +142,7 @@ func (check *Checker) initVar(lhs *Var, x *operand, context string) Type {\n \t\t}\n \t\t// Note: This was reverted in go/types (https://golang.org/cl/292751).\n \t\t// TODO(gri): decide what to do (also affects test/r...
2022-09-21T21:25:34
nodejs/node
08892fc0c488a4205f2880acda250af4a922aa51
d8eef83757c263672832687ac7667927a7d0c059
stream: fix the spellings PR-URL: https://github.com/nodejs/node/pull/33635 Reviewed-By: Zeyu Yang <himself65@outlook.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail...
[ { "path": "lib/_stream_duplex.js", "patch": "@@ -20,8 +20,8 @@\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n // a duplex stream is just a stream that is both readable and writable.\n-// Since JS doesn't have multiple prototypal inheritance, this class\n-// prototypally inherits from Readable, and then pa...
2020-05-29T09:05:36
golang/go
92a94a702469e1e57662fa2a7e6b4dc3d7161bd1
86ca550f407827f620e6c8314ec503fdb48dd898
go/scanner: emit implicit semicolon tokens in correct order Prior to this change, the scanner, in ScanComments mode, would emit the implicit SEMICOLON token generated by a newline ahead of any immediately preceding comment "tokens". For example: foo /*a*/ /*b*/ /*c*/ \n => [IDENT SEMICOLON COMMENT COMMENT COMMENT...
[ { "path": "src/go/parser/error_test.go", "patch": "@@ -62,8 +62,9 @@ func getPos(fset *token.FileSet, filename string, offset int) token.Pos {\n // a regular expression that matches the expected error message.\n // The special form /* ERROR HERE \"rx\" */ must be used for error\n // messages that appear imm...
2022-09-08T21:25:46
electron/electron
a694110d48b0f6a5988339974c2f51ab7071a3c7
dd84fd4348e81b3ab75bad33a0bf6ba34622f661
Fix order of OSs It was previously inconsistent
[ { "path": "docs/tutorial/quick-start.md", "patch": "@@ -192,10 +192,10 @@ $ .\\node_modules\\.bin\\electron .\n If you downloaded Electron manually, you can also use the included\n binary to execute your app directly.\n \n-#### Windows\n+#### macOS\n \n ```bash\n-$ .\\electron\\electron.exe your-app\\\n+$ ....
2017-05-08T20:36:28
nodejs/node
e983b1cece7d24f7b4776798916276d30b9e419a
f5ed5fe06867884254fd885eca01b6ee5d21ac48
deps: V8: cherry-pick 0d6debcc5f08 Original commit message: [turbofan] Fixes for integrating the fast C API This commit adds a few fixes neccessary for integrating the fast C API into Blink: - added default constructor for CFunction - removed a bogus template specialization allowing void* params ...
[ { "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.17',\n+ 'v8_embedder_string': '-node.18',\n \n ##### V8 defaults for Node.js #####\n...
2020-05-28T04:10:09
facebook/react
a8e273f84416412fb26c36eb5b1a30a21917570a
5a0eee3bb680327b081df0adc4d942d490ac615b
fix link in community roundup #18
[ { "path": "docs/_posts/2014-03-14-community-roundup-18.md", "patch": "@@ -22,7 +22,7 @@ We're looking forward to part 2!\n \n ## React vs. async DOM manipulation\n \n-Eliseu Monar ([@eliseumds](https://twitter.com/eliseumds))'s post \"[ReactJS vs async concurrent rendering](http://eliseu.tk/post/77843550010...
2014-06-30T17:41:42
golang/go
bf5805eae436a1ddbad593ec0671c9a7e8c67a9a
f15b81a80fc7250b436e5866d0a73c60f7b47712
cmd/link: fix coverage counter issue on AIX Update the linker's XCOFF writer to handle coverage counter sections properly; they need to be treated as bss, not data. Fixes a problem with the aix-ppc64 builder introduced in CL 401235), e.g. "runtime.covctrs: A symbol with type XTY_SD must be in a .text or .data section"...
[ { "path": "src/cmd/link/internal/ld/xcoff.go", "patch": "@@ -1118,7 +1118,7 @@ func (f *xcoffFile) asmaixsym(ctxt *Link) {\n \t\t\t\tputaixsym(ctxt, s, TLSSym)\n \t\t\t}\n \n-\t\tcase st == sym.SBSS, st == sym.SNOPTRBSS, st == sym.SLIBFUZZER_8BIT_COUNTER:\n+\t\tcase st == sym.SBSS, st == sym.SNOPTRBSS, st =...
2022-09-27T16:23:26
electron/electron
357caf8991f5f225f57e450b8ed9cb91fb6c2975
939885bc66cc734764a28686894f47f7c1337cff
fixing spec
[ { "path": "spec/webview-spec.js", "patch": "@@ -83,38 +83,6 @@ describe('<webview> tag', function () {\n document.body.appendChild(webview)\n })\n \n- it('disables node integration when disabled on the parent BrowserWindow', function (done) {\n- ipcMain.once('answer', function (event, type...
2017-05-07T05:41:05
nodejs/node
f5ed5fe06867884254fd885eca01b6ee5d21ac48
065426c90af4ae102dc66f7f801478deec368be5
benchmark: fix async-resource benchmark In the benchmark, because it performs asynchronous operations before writing its HTTP replies, the underlying socket can be closed by the peer before the response is written. Since 28e6626ce7020, that means that attempting to `.end()` the HTTP response results in an uncaught exc...
[ { "path": "benchmark/async_hooks/async-resource-vs-destroy.js", "patch": "@@ -138,6 +138,7 @@ function getServeAwait(getCLS, setCLS) {\n setCLS(Math.random());\n await sleep(10);\n await read(__filename);\n+ if (res.destroyed) return;\n res.setHeader('content-type', 'application/json');\n...
2020-05-29T21:28:25
vercel/next.js
42b87892e4e379b8cd7eba189981e10de60b9014
f05b50318295805b9ee702dcbf533718622d2c2a
Fix non bundler module resolution in ts for third-parties pkg (#59244)
[ { "path": "packages/third-parties/google.d.ts", "patch": "@@ -0,0 +1 @@\n+export * from './dist/types/index'", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "packages/third-parties/package.json", "patch": "@@ -6,9 +6,11 @@\n \"directory\": \"packages/third-pa...
2023-12-04T19:40:25
golang/go
edd1273b841050e96d9ddd937fc00c0eebe10f1b
ff34676cdd5f2c318fa58e78c84a90b3e5a21b04
cmd/link: refactor usage of SymLocalentry helper functions PPC64 ELFv2 uses the st_other field of a symbol to specify an offset from the global entry point to its local entry point. Similarly, some values (i.e 1) may also require additional linker support which is missing today. For now, generate an error if we encou...
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -634,10 +634,16 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \n \t\tif elf.Machine(elfobj.machine) == elf.EM_PPC64 {\n \t\t\tflag := int(elfsym.other) >> 5\n-\t\t\tif 2 <= flag && flag <= 6 {\n-\t\t\t\tl...
2022-09-19T21:48:49
electron/electron
fa2bfd3ff55dd1ad39e0669048a8dfa58285dabf
a748199833e18b94970bde1d7aa9a2feeaa1ceb6
Add Math.ceil to pageSize.height and pageSize.width to printToPDF() options to prevent error on display.
[ { "path": "lib/browser/api/web-contents.js", "patch": "@@ -198,8 +198,8 @@ WebContents.prototype.printToPDF = function (options, callback) {\n printingSetting.mediaSize = {\n name: 'CUSTOM',\n custom_display_name: 'Custom',\n- height_microns: pageSize.height,\n- width_mic...
2017-05-06T23:19:31
facebook/react
66d6e3f3919d338e7f773220a8f32f147a8190d4
108efb4add6f6c8a42b077d9bb9a654509e31921
[Docs] Fix tutorial line highlights, revert ajax in cb
[ { "path": "docs/docs/tutorial.md", "patch": "@@ -301,7 +301,7 @@ React.renderComponent(\n \n Now that the data is available in the `CommentList`, let's render the comments dynamically:\n \n-```javascript{4-6,9}\n+```javascript{4-10,13}\n // tutorial10.js\n var CommentList = React.createClass({\n render: f...
2014-06-30T07:55:29
nodejs/node
641c466671556b179f1cdb7f9cbb36f4750c253d
3128915c575d0ad51a5a9c93a7ba8339f2ef094b
doc: fix typo in cli.md for report-dir Add the missing backtick in `--report-dir` refs: https://github.com/nodejs/node/pull/33587#discussion_r432816468 PR-URL: https://github.com/nodejs/node/pull/33725 Refs: https://github.com/nodejs/node/pull/33587 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Beth Grig...
[ { "path": "doc/api/cli.md", "patch": "@@ -639,7 +639,7 @@ Write reports in a compact format, single-line JSON, more easily consumable\n by log processing systems than the default multi-line format designed for\n human consumption.\n \n-### --report-dir=directory`, `report-directory=directory`\n+### `--repor...
2020-06-04T11:07:01
golang/go
6c3567873c4c58fe5b9e9abe77fed826a8e2ac97
b52783c1e9673793da85dc7a9fb433d033da2e10
runtime: using bytes.CutPrefix Change-Id: I3f2dae17496b5b4efbdc022802f941a616abd87a Reviewed-on: https://go-review.googlesource.com/c/go/+/435276 Run-TryBot: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Bryan Mills <bcmi...
[ { "path": "src/runtime/testdata/testprog/traceback_ancestors.go", "patch": "@@ -87,9 +87,10 @@ func goroutineID() string {\n \tbuf := make([]byte, 128)\n \truntime.Stack(buf, false)\n \tprefix := []byte(\"goroutine \")\n-\tif !bytes.HasPrefix(buf, prefix) {\n+\tvar found bool\n+\tif buf, found = bytes.CutPr...
2022-09-27T15:06:11
facebook/react
bc11793c04236270996f506e7bd4b6bceddc9543
8dcad5e09c532a64aa93d4fc63a8186665956084
Fix code style in TodoMVC Flux example
[ { "path": "examples/todomvc-flux/js/components/Header.react.js", "patch": "@@ -45,10 +45,10 @@ var Header = React.createClass({\n * @param {string} text\n */\n _onSave: function(text) {\n- if(text.trim()){\n+ if (text.trim()){\n TodoActions.create(text);\n }\n- \n+\n }\n \n });"...
2014-06-28T05:16:42
nodejs/node
a1e5fd2cdf12e819eaa75b195d9729f83c1d88dd
3a7a5d7e62859baf9e22645d2e9195e32cfb06c0
build: fix compiling addons with older versions of Node.js `common.gypi` is used by `node-gyp` to compile addons. Default values must be provided for variables that may not exist on older versions of Node.js so that older versions of Node.js can be used to compile addons for later versions of Node.js. Add default val...
[ { "path": "common.gypi", "patch": "@@ -57,6 +57,12 @@\n # https://github.com/nodejs/node/pull/22920/files#r222779926\n 'v8_enable_handle_zapping': 0,\n \n+ # Disable pointer compression. Can be enabled at build time via configure\n+ # options but default values are required here as this file i...
2020-06-01T18:52:58
vercel/next.js
f05b50318295805b9ee702dcbf533718622d2c2a
f99812727d84bb98d5106ea5154545ed2f1681fb
Add app router name to font tests (#59257) ## What? Ensures this is reported correctly. <!-- 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 chan...
[ { "path": "test/e2e/app-dir/next-font/next-font.test.ts", "patch": "@@ -23,427 +23,429 @@ const getAttrs = (elems: Cheerio) =>\n // My machine behaves differently to CI\n .sort((a, b) => (a.href < b.href ? -1 : 1))\n \n-describe.each([['app'], ['app-old']])('%s', (fixture: string) => {\n- createNex...
2023-12-04T19:25:41
golang/go
7d157fd0eb637a4c58f629421dd8d028022391d2
1e4989c33674bf9570c99250a081a448c3cded65
debug/elf: suport files with >= 65280 (0xff00) sections The spec https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html states: 1. e_shnum: If the number of sections is greater than or equal to SHN_LORESERVE (0xff00), this member has the value zero and the actual number of section header table entries is co...
[ { "path": "src/cmd/internal/buildid/note.go", "patch": "@@ -78,16 +78,19 @@ var elfGNUNote = []byte(\"GNU\\x00\")\n // at least 4 kB out, in data.\n func readELF(name string, f *os.File, data []byte) (buildid string, err error) {\n \t// Assume the note content is in the data, already read.\n-\t// Rewrite th...
2022-09-26T20:46:24
electron/electron
f22880931749b688d146f1fccb8aade02fa1761b
d4d1409e6fd59233fa647709dfb8d5df28349ae4
fix the tslint.json path
[ { "path": "script/create-dist.py", "patch": "@@ -151,7 +151,7 @@ def create_typescript_definitions():\n infile = os.path.relpath(os.path.join(DIST_DIR, 'electron-api.json'))\n outfile = os.path.relpath(os.path.join(DIST_DIR, 'electron.d.ts'))\n tslintconfig = os.path.relpath(os.path.join(DIST_DIR,\n- ...
2017-05-05T22:00:29
nodejs/node
680fb8fc62f6c17160b3727ba7400ce28f8d22d5
16eaacfd2bad09a9bdada1908ea58657cce12ead
doc: fix deprecation "End-of-Life" capitalization Update the "End-of-Life" casing in the deprecation documentation for consistency. Similar to #26251. PR-URL: https://github.com/nodejs/node/pull/33691 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pi...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -494,7 +494,7 @@ changes:\n description: Runtime deprecation.\n -->\n \n-Type: End-of-life\n+Type: End-of-Life\n \n The `Server.connections` property was deprecated in Node.js v0.9.7 and has\n been removed. Please use the [`Server.getConnections()`][] me...
2020-06-01T23:49:06
vercel/next.js
2cc88d7b11c722d3fdd7ca1f93e3034b263b4f62
d348e4b5696bb63b6e64d61248864961948ba062
fix missing checkout in daily turbopack reporting (#59256)
[ { "path": ".github/workflows/upload-nextjs-integration-test-results.yml", "patch": "@@ -12,6 +12,9 @@ jobs:\n name: Upload test results\n runs-on: ubuntu-latest\n steps:\n+ - name: Checkout\n+ uses: actions/checkout@v3\n+\n # Download test results into the `test-results` direct...
2023-12-04T17:54:00
facebook/react
9854be2e4693355fab1b020059c14542c400eded
ef6740627292136973a6b8053cc98dba98ebd18f
Fix to sample code for href in ReactPropTypes Error should be thrown in the previous condition is "not" meet. And the href propType is described as optional in the comment, but the null check was missing.
[ { "path": "src/core/ReactPropTypes.js", "patch": "@@ -55,7 +55,7 @@ var emptyFunction = require('emptyFunction');\n * // An optional string or URI prop named \"href\".\n * href: function(props, propName, componentName) {\n * var propValue = props[propName];\n- * if (typeof propVal...
2014-06-27T14:50:03
golang/go
fb6c210dc3c3f1f211b469214f0ec1c881fd088e
48a58c5d2c24bcba9cd141b3c3d6344d52274bbd
runtime/trace: add missing events for the locked g in extra M. Extra Ms may lead to the "no consistent ordering of events possible" error when parsing trace file with cgo enabled, since: 1. The gs in the extra Ms may be in `_Gdead` status while starting trace by invoking `runtime.StartTrace`, 2. and these gs will trig...
[ { "path": "src/internal/trace/goroutines.go", "patch": "@@ -187,7 +187,7 @@ func GoroutineStats(events []*Event) map[uint64]*GDesc {\n \t\t\tgs[g.ID] = g\n \t\tcase EvGoStart, EvGoStartLabel:\n \t\t\tg := gs[ev.G]\n-\t\t\tif g.PC == 0 {\n+\t\t\tif g.PC == 0 && len(ev.Stk) > 0 {\n \t\t\t\tg.PC = ev.Stk[0].PC...
2022-09-24T11:15:43
rust-lang/rust
ffdc40f30ab3ed1b4b1b7e5b2c877f21fe4e38ef
3507a749b365aae4eefa96ab700a9315d3280ee7
bootstrap: Switch from fd-lock to native locking in std In the process, fix a race condition, by never truncating or writing to the file unless we currently hold the lock.
[ { "path": "src/bootstrap/Cargo.lock", "patch": "@@ -48,7 +48,6 @@ dependencies = [\n \"clap\",\n \"clap_complete\",\n \"cmake\",\n- \"fd-lock\",\n \"home\",\n \"ignore\",\n \"insta\",\n@@ -268,17 +267,6 @@ version = \"2.3.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n check...
2025-08-15T00:51:48
electron/electron
07d8dfaa53f8c4b2d7f9e46ca414a8ec798be05e
6b51c25820143ca6555f5e29030ae0fb58752525
Fixing UT
[ { "path": "spec/api-process-spec.js", "patch": "@@ -11,7 +11,7 @@ describe('process module', function () {\n \n describe('process.getIOCounters()', function () {\n it('returns an io counters object', function () {\n- if (process.platform !== 'win32') {\n+ if (process.platform === 'darwin') {...
2017-05-04T21:50:06
vercel/next.js
d348e4b5696bb63b6e64d61248864961948ba062
065d196b5ebe03306a2466141f64f56b2b219bde
fix missing echo in daily turbopack reporting (#59255) ### What? GitHub workflow commands need to be echoed Closes PACK-2075
[ { "path": ".github/workflows/upload-nextjs-integration-test-results.yml", "patch": "@@ -22,13 +22,13 @@ jobs:\n # Read next.js version from test results, set necessary environment variables.\n - name: Print test results\n run: |\n- ::group::Passed test paths\n+ echo \":...
2023-12-04T17:02:08
nodejs/node
f46ca0fd29361215ac8a26cd6647dc45221eb9d7
12bcee8628c101c2a89debff11502b6a982d5f3a
2020-06-02, Version 10.21.0 'Dubnium' (LTS) This is a security release. Vulnerabilities fixed: - CVE-2020-8174: napi_get_value_string_*() allows various kinds of memory corruption (High). - CVE-2020-10531: ICU-20958 Prevent SEGV_MAPERR in append (High). - CVE-2020-11080: HTTP/2 Large Settings Frame ...
[ { "path": "CHANGELOG.md", "patch": "@@ -87,7 +87,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V12.md#12.0.0\">12.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.20.1\">10.20.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.21.0\">10....
2020-06-02T12:13:06
rust-lang/rust
bec399e5a05a517430abb10c3286279a7a31cb9f
898aff704d6f0d00343f21d31b8b9bfac8e43007
std_detect: RISC-V platform guide documentation This is practically a revert of a revert, making the commit e907456b2e10622ccd854a3bba8d02ce170b5dbb on `stdarch` come around again with minor fixes, enhancements and adjustments. An excerpt from the original commit message follows: Since there's no architectural featu...
[ { "path": "library/std_detect/src/detect/arch/riscv.rs", "patch": "@@ -37,90 +37,121 @@ features! {\n ///\n /// # Unprivileged Specification\n ///\n- /// The supported ratified RISC-V instruction sets are as follows:\n+ /// The supported ratified RISC-V instruction sets are as follows (OS\...
2025-08-15T02:34:17
golang/go
48a58c5d2c24bcba9cd141b3c3d6344d52274bbd
b0f8e20d041cdb739db558c00edf14eb7e01c3da
cmd/go/internal: use strings.CutSuffix Updates #42537 Change-Id: I2d4c5e911c8a2ddfe9a976896b05d3cd8be61f6b GitHub-Last-Rev: a87597d8a7a84c4975fb5e13004feda9b6abce34 GitHub-Pull-Request: golang/go#55830 Reviewed-on: https://go-review.googlesource.com/c/go/+/433275 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewe...
[ { "path": "src/cmd/go/internal/clean/clean.go", "patch": "@@ -340,16 +340,14 @@ func clean(p *load.Package) {\n \t\t\tcontinue\n \t\t}\n \n-\t\tif strings.HasSuffix(name, \"_test.go\") {\n-\t\t\tbase := name[:len(name)-len(\"_test.go\")]\n+\t\tif base, found := strings.CutSuffix(name, \"_test.go\"); found {...
2022-09-27T09:16:32
electron/electron
656fb593b48f543cbb664010d44828a7ccdbfd39
8bc4d3f8bd0785cfb5dcc8ee4d87f6905c315731
Fixing lint error
[ { "path": "spec/api-process-spec.js", "patch": "@@ -12,7 +12,7 @@ describe('process module', function () {\n describe('process.getIOCounters()', function () {\n it('returns an io counters object', function () {\n if (process.platform !== 'win32') {\n- return;\n+ return\n }\n ...
2017-05-04T19:27:47
vercel/next.js
065d196b5ebe03306a2466141f64f56b2b219bde
f64e92ba4d0e1f9ab8453fcf8ffe3c3c75a4d4e6
Fix dynamic transform ssr:false case for pages router with ESM (#59246)
[ { "path": "packages/next-swc/crates/core/src/lib.rs", "patch": "@@ -97,6 +97,9 @@ pub struct TransformOptions {\n #[serde(default)]\n pub is_server_compiler: bool,\n \n+ #[serde(default)]\n+ pub prefer_esm: bool,\n+\n #[serde(default)]\n pub server_components: Option<react_server_compo...
2023-12-04T16:48:46
nodejs/node
12bcee8628c101c2a89debff11502b6a982d5f3a
64e33dc9529d3cf63edd2ccb0d406cc3812ee23a
2020-06-02, Version 12.18.0 'Erbium' (LTS) This is a security release. Notable changes: Vulnerabilities fixed: CVE-2020-8172: TLS session reuse can lead to host certificate verification bypass (High). CVE-2020-11080: HTTP/2 Large Settings Frame DoS (Low). CVE-2020-8174: `napi_get_value_string_*()` allows various kin...
[ { "path": "CHANGELOG.md", "patch": "@@ -57,7 +57,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V13.md#13.0.0\">13.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.17.0\">12.17.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.18.0\">12....
2020-06-02T07:10:02
golang/go
c929a5b855e5d1680a70c5e1ab11a4933655d66c
d9d2ef991caabb3d2d0d419b652e7894cd2f4546
debug/dwarf: don't crash on invalid range/rnglist offset No test case because the problem can only happen for invalid data. Let the fuzzer find cases like this. Fixes #53529 Change-Id: I318c87795e545fe5a006d16b4d361cd4bf5d502d Reviewed-on: https://go-review.googlesource.com/c/go/+/434936 Run-TryBot: Ian Lance Taylor...
[ { "path": "src/debug/dwarf/entry.go", "patch": "@@ -13,6 +13,7 @@ package dwarf\n import (\n \t\"encoding/binary\"\n \t\"errors\"\n+\t\"fmt\"\n \t\"strconv\"\n )\n \n@@ -1103,6 +1104,9 @@ func (d *Data) baseAddressForEntry(e *Entry) (*Entry, uint64, error) {\n }\n \n func (d *Data) dwarf2Ranges(u *unit, bas...
2022-09-27T01:24:03
electron/electron
3c71f542a8fa66e6234cc720e9faf52fa3152009
8a5aa04756de22a7fcbd407d3fa38ae8e392272e
Fixing UT on mac
[ { "path": "spec/api-process-spec.js", "patch": "@@ -12,12 +12,12 @@ describe('process module', function () {\n describe('process.getIOCounters()', function () {\n it('returns an io counters object', function () {\n var ioCounters = process.getIOCounters()\n- assert.ok(ioCounters.readOperati...
2017-05-04T18:10:57
vercel/next.js
b2e183ec1dc1c24c8dedc53289ce181ddb9fefbd
15215d4c962738b5e983820236778bb82a84d41f
fix typo in daily turbopack integration test reporting (#59251)
[ { "path": ".github/workflows/nextjs-integration-test.yml", "patch": "@@ -194,4 +194,4 @@ jobs:\n - name: Upload to datadog\n run: |\n # We'll tag this to the \"Turbopack\" datadog service, not \"nextjs\"\n- DD_ENV=ci npx @datadog/datadog-ci@2.23.1 junit upload --tags test.ty...
2023-12-04T16:08:46
facebook/react
d0719a5ea4843cca40b0c1a73ad9acffd9639b50
e6134c307e2bb7765aaa747eb5d2136fc18abbd7
Preparing to move defaultProps resolution and type validation to the descriptor This copies the propType and contextType validation to a wrapper around the descriptor factory. By doing the validation early, we make it easier to track down bugs. It also prepares for static type checking which should be done at the usag...
[ { "path": "src/browser/ReactDOM.js", "patch": "@@ -20,6 +20,7 @@\n \"use strict\";\n \n var ReactDescriptor = require('ReactDescriptor');\n+var ReactDescriptorValidator = require('ReactDescriptorValidator');\n var ReactDOMComponent = require('ReactDOMComponent');\n \n var mergeInto = require('mergeInto');\n...
2014-06-26T22:36:20
nodejs/node
64e33dc9529d3cf63edd2ccb0d406cc3812ee23a
2e1b41a708a71ee127a5db9c750760f74db494e4
2020-06-02, Version 14.4.0 (Current) This is a security release. Notable changes: Vulnerabilities fixed: CVE-2020-8172: TLS session reuse can lead to host certificate verification bypass (High). CVE-2020-11080: HTTP/2 Large Settings Frame DoS (Low). CVE-2020-8174: `napi_get_value_string_*()` allows various kinds of ...
[ { "path": "CHANGELOG.md", "patch": "@@ -31,7 +31,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V14.md#14.3.0\">14.3.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V14.md#14.4.0\">14.4.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V14.md#14.3.0\"...
2020-06-02T06:42:15
golang/go
d9d2ef991caabb3d2d0d419b652e7894cd2f4546
e978ef36e3e8d09413387883b5b01fc6cdbb7640
net/http: fix the potential leak of textproto.Reader from pool Fixes #55835 Change-Id: I6109bab2941b859e8cfef22f65a6a3a5f977a8d7 Reviewed-on: https://go-review.googlesource.com/c/go/+/433835 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Ian Lance Taylor <iant@...
[ { "path": "src/net/http/request.go", "patch": "@@ -1030,6 +1030,8 @@ func ReadRequest(b *bufio.Reader) (*Request, error) {\n \n func readRequest(b *bufio.Reader) (req *Request, err error) {\n \ttp := newTextprotoReader(b)\n+\tdefer putTextprotoReader(tp)\n+\n \treq = new(Request)\n \n \t// First line: GET /...
2022-09-24T05:13:14