repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
317f2a7df63df89455ee4fd2721620a853c7fda1
2730170f633811ca42aa4086aab6396c58449535
cmd/compile: revise inliner coverage tweaks (again) This patch fixes a typo/bug introduced in CL 441858 where when pattern matching a coverage counter access we were looking at an assingment node instead of the assignment LHS, and fixes a similar problem in atomic counter update pattern matching introduced in CL 44483...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -412,7 +412,7 @@ func (v *hairyVisitor) doNode(n ir.Node) bool {\n \t\t\t// failures (a good example is the TestAllocations in\n \t\t\t// crypto/ed25519).\n \t\t\tif isAtomicCoverageCounterUpdate(n) {\n-\t\t\t\tbreak\n+\t\t\t\treturn false\n \...
2022-10-28T17:21:36
nodejs/node
da4d8de9d09f98e6d81b9d5778fa44c26c25ec75
73d713b16e764a2b52028803e14ce4ed8343a0a5
http: reset headers timeout on headers complete headers timeout should not occur *after* headers have been received. Fixes: https://github.com/nodejs/node/issues/34576 PR-URL: https://github.com/nodejs/node/pull/34578 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.co...
[ { "path": "src/node_http_parser.cc", "patch": "@@ -280,6 +280,7 @@ class Parser : public AsyncWrap, public StreamListener {\n \n int on_headers_complete() {\n header_nread_ = 0;\n+ header_parsing_start_time_ = 0;\n \n // Arguments for the on-headers-complete javascript callback. This\n // l...
2020-07-31T12:42:39
rust-lang/rust
450e25b2412f76391260220539c41e4a0aa8530e
228f064434ae053c941d884db71c3faa713dde44
fix: `derivable_impls` suggests wrongly on `derive_const`
[ { "path": "clippy_lints/src/derivable_impls.rs", "patch": "@@ -85,6 +85,17 @@ fn contains_trait_object(ty: Ty<'_>) -> bool {\n }\n }\n \n+fn determine_derive_macro(cx: &LateContext<'_>, is_const: bool) -> Option<&'static str> {\n+ if is_const {\n+ if !cx.tcx.features().enabled(sym::derive_cons...
2025-08-22T17:46:24
vercel/next.js
d08e891ea6c04cffdb775b5dad44b7b563e1b2b3
8694ed6a409005b3cf53cf9671619a97a78f3608
for #59178 - addition to robots.mdx - Customize user-agent rules (#60361) Addition to docs (robots.mdx) - Customize user-agent rules For issue #59178 Docs: Guidance on allowing multiple user agent rules with varying allow/disallow. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make ...
[ { "path": "docs/02-app/02-api-reference/02-file-conventions/01-metadata/robots.mdx", "patch": "@@ -57,6 +57,66 @@ Disallow: /private/\n Sitemap: https://acme.com/sitemap.xml\n ```\n \n+### Customizing specific user agents\n+\n+You can customise how individual search engine bots crawl your site by passing an...
2024-01-10T18:50:28
golang/go
2730170f633811ca42aa4086aab6396c58449535
a3559f3301b54468c14d4997af0d617db60f4915
cmd/{go,cover}: fix for -coverprofile path capture with local pkg When coverage testing a local package (defined by a relative import path such as "./foo/bar") the convention when "-coverprofile" is used has been to capture source files by full pathname, as opposed to recording the full import path or the invented imp...
[ { "path": "src/cmd/cover/cover.go", "patch": "@@ -74,7 +74,7 @@ var (\n \n var pkgconfig coverage.CoverPkgConfig\n \n-var outputfiles []string // set whe -pkgcfg is in use\n+var outputfiles []string // set when -pkgcfg is in use\n \n var profile string // The profile to read; the value of -html or -func\n \...
2022-10-26T15:33:28
electron/electron
8e34aad410a6a9141a65a75da85781dd3f987b71
bdbf9e5d6afb6675b0371c50fa42180483f70909
Fixed invalid empty vector subscript access
[ { "path": "atom/renderer/atom_sandboxed_renderer_client.cc", "patch": "@@ -216,7 +216,7 @@ void AtomSandboxedRendererClient::InvokeIpcCallback(\n auto callback_value = binding->Get(callback_key);\n DCHECK(callback_value->IsFunction()); // set by sandboxed_renderer/init.js\n auto callback = v8::Handle...
2017-07-19T12:56:55
nodejs/node
73d713b16e764a2b52028803e14ce4ed8343a0a5
aeaf16194bac6510a48019b4b55481006f11f714
test: change Fixes: to Refs: Tests don't fix things generally, so use "Refs:" to refer people to GitHub issues. PR-URL: https://github.com/nodejs/node/pull/34568 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/parallel/test-fs-symlink.js", "patch": "@@ -58,7 +58,7 @@ fs.symlink(linkData, linkPath, common.mustCall(function(err) {\n }));\n \n tmpdir.refresh();\n- // Fixes: https://github.com/nodejs/node/issues/34514\n+ // Refs: https://github.com/nodejs/node/issues/34514\n fs.symlinkSync(Buf...
2020-07-30T17:46:22
facebook/react
76fe572a97890237da6d2552ed6921d4dce85da4
892e357fd5acc2b175f681ae5581a90f7eeb24c2
Fix inaccurate spec description The string here was initially accurate, but got out of sync with reality when the commit was revised (as 892e357fd5acc).
[ { "path": "src/browser/ui/dom/components/__tests__/LocalEventTrapMixin-test.js", "patch": "@@ -24,7 +24,7 @@ describe('LocalEventTrapMixin', function() {\n ReactTestUtils = require('ReactTestUtils');\n });\n \n- it('does not fatal when trapping bubbled state on null', function() {\n+ it('throws when...
2015-01-22T01:07:29
vercel/next.js
990d0a9ab8f2132dd6f3311f8e5b9556d275c3e9
60c07208ddb1efebeb4c3fa0756880cf049eed47
update turbopack (#60478) * https://github.com/vercel/turbo/pull/6978 <!-- Tobias Koppers - fix aggregation of outdated children and collectibles --> * https://github.com/vercel/turbo/pull/6968 <!-- Tobias Koppers - fix glob matching of alternatives --> * https://github.com/vercel/turbo/pull/6922 <!-- Tobias Koppe...
[ { "path": "Cargo.lock", "patch": "@@ -321,7 +321,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-240110.2#c51d4a00ac0b9d4cd2a21725fcc8a204569ba820\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2024-01-10T17:45:29
golang/go
a3559f3301b54468c14d4997af0d617db60f4915
661e931dd120484cc1318792bc93ace00bbde088
net: use libc (not cgo) for DNS on macOS Change the macOS implementation to use libc calls. Using libc calls directly is what we do for all the runtime and os syscalls. Doing so here as well improves consistency and also makes it possible to cross-compile (from non-Mac systems) macOS binaries that use the native name ...
[ { "path": "src/internal/syscall/unix/asm_darwin.s", "patch": "@@ -6,3 +6,15 @@\n \n TEXT ·libc_getentropy_trampoline(SB),NOSPLIT,$0-0\n \tJMP\tlibc_getentropy(SB)\n+\n+TEXT ·libc_getaddrinfo_trampoline(SB),NOSPLIT,$0-0\n+\tJMP\tlibc_getaddrinfo(SB)\n+\n+TEXT ·libc_freeaddrinfo_trampoline(SB),NOSPLIT,$0-0\n+...
2022-10-28T14:54:37
electron/electron
cd9d0c1b0f63485dcdf1b139d271e05d1c3d05bc
5b9d31d3ff609b59210c896b4d2e3553adf1eb7b
Enabled true debug mode
[ { "path": "brightray/brightray.gypi", "patch": "@@ -92,8 +92,6 @@\n 'Common_Base': {\n 'abstract': 1,\n 'defines': [\n- # We are using Release version libchromiumcontent:\n- 'NDEBUG',\n # Needed by gin:\n 'V8_USE_EXTERNAL_STARTUP_DATA',\n ...
2017-07-04T17:58:02
nodejs/node
45fa216ee533abc189d4b9bf0fc8f40430af7ef4
9b6c16c5acb4e47794fec4f2c7aa4d79fecda46d
esm: fix hook mistypes and links to types Prior to this commit, the custom loader hooks were: * missing the Node.js API ref docs types * missing the function signature from their sections * linking directly to the specification (not customary) * had an inconsistent non-nullable JSDoc promise return * had JSDoc object ...
[ { "path": "doc/api/esm.md", "patch": "@@ -1184,11 +1184,19 @@ CommonJS modules loaded.\n \n ### Hooks\n \n-#### <code>resolve</code> hook\n+#### `resolve(specifier, context, defaultResolve)`\n \n > Note: The loaders API is being redesigned. This hook may disappear or its\n > signature may change. Do not rel...
2020-07-07T13:32:01
vercel/next.js
60c07208ddb1efebeb4c3fa0756880cf049eed47
43474e0e91442f3da4d513d27a2c04e3c6f7c1fe
chore(docs/errors): Improve documentation grammar (#60452) This PR fixes a couple of typos found in the docs/errors section --------- Co-authored-by: Steven <steven@ceriously.com>
[ { "path": "docs/02-app/01-building-your-application/03-rendering/01-server-components.mdx", "patch": "@@ -111,7 +111,7 @@ Using any of these functions will opt the whole route into dynamic rendering at\n ### Streaming\n \n <Image\n- alt=\"Diagram showing parallelization of route segments during streaming, ...
2024-01-10T16:48:29
golang/go
c81c0279827545b20f81797bb263ae696d9c235f
5619dd08493c08f06b47cec9f9553bbda6d2cbbd
cmd/compile: add ability to indicate 'concurrentOk' for debug flags Also removes no-longer-needed "Any" field from compiler's DebugFlags. Test/use case for this is the fmahash CL. Change-Id: I214f02c91f30fc2ce53caf75fa5e2b905dd33429 Reviewed-on: https://go-review.googlesource.com/c/go/+/445495 TryBot-Result: Gopher R...
[ { "path": "src/cmd/compile/internal/base/debug.go", "patch": "@@ -50,7 +50,7 @@ type DebugFlags struct {\n \tInlineHotBudget int `help:\"inline budget for hot functions\"`\n \tPGOInline int `help:\"debug profile-guided inlining\"`\n \n-\tAny bool // set when any of the debu...
2022-10-26T03:01:44
electron/electron
840dba385a0997cdabf59d5f4c696dc3ffb48266
328323855539f4195edfe71869a4ced95ef23a16
fix type in windows store guide
[ { "path": "docs/tutorial/windows-store-guide.md", "patch": "@@ -134,7 +134,7 @@ that mode, the CLI will install and run your application in blank Windows Contai\n to determine what modifications your application is exactly doing to the operating\n system.\n \n-Before running the CLI for the, you will have t...
2017-07-21T15:26:39
rust-lang/rust
9637774e328b7fb57cff80a94ed635ef234945a6
f5703d5dd3eec176f86a6e9bf7e668b48b84eabb
ci: Begin running ui tests with `rust.debuginfo-level-tests=1` To reduce risk of regressing on generating debuginfo e.g. in the form of ICE:s. This will also ensure that future ui tests support different debuginfo levels. When I looked at run time for different CI jobs, **x86_64-gnu-debug** was far from the bottle ne...
[ { "path": "src/ci/docker/host-x86_64/x86_64-gnu-debug/Dockerfile", "patch": "@@ -38,11 +38,15 @@ ENV RUST_CONFIGURE_ARGS \\\n --build=x86_64-unknown-linux-gnu \\\n --enable-debug \\\n --enable-lld \\\n+ --set rust.debuginfo-level-tests=1 \\\n --set llvm.use-linker=lld \\\n ...
2025-07-26T11:23:20
facebook/react
a7aca51f1ea901460ea5f8ab9401f4c8637c1947
972befe0b6e94b37adbf2602c6c200410d31f226
Throw for Misue of LocalEventTrapMixin Summary: If `getDOMNode()` returns null in `LocalEventTrapMixin`, `listener` will also be null and `accumulateInto` will throw. This changes `LocalEventTrapMixin` to throw a more helpful error message. Test Plan: Ran unit test successfully: ``` npm test LocalEventTrapMixin-test...
[ { "path": "src/browser/ui/dom/components/LocalEventTrapMixin.js", "patch": "@@ -24,10 +24,17 @@ function remove(event) {\n var LocalEventTrapMixin = {\n trapBubbledEvent(topLevelType, handlerBaseName) {\n invariant(this.isMounted(), 'Must be mounted to trap events');\n+ // If a component renders to...
2015-01-21T22:12:54
nodejs/node
4268c6112feaf82d7ca171c381b269ebfcf403f7
849d9e7b90ebaae930a28a7994b3a56ec4f280c6
build: fix auto-start-ci script path PR-URL: https://github.com/nodejs/node/pull/34588 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
[ { "path": ".github/workflows/auto-start-ci.yml", "patch": "@@ -62,4 +62,4 @@ jobs:\n ncu-config set repo ${{ env.REPOSITORY }}\n \n - name: Start CI\n- run: ./tools/start-ci.sh ${{ secrets.GITHUB_TOKEN }} ${{ env.OWNER }} ${{ env.REPOSITORY }} $(echo '${{ steps.get_prs_for_ci.outputs....
2020-07-31T23:14:41
vercel/next.js
1e44b6c8e361c9f1b087f6283c11c733defb35b2
4fb30428ff90c0a3b1195586c641a335a6aaa305
fix glob matching of alternatives (vercel/turbo#6968) reland https://github.com/vercel/turbo/pull/6839 Closes PACK-2211
[ { "path": "crates/turbo-tasks-fs/src/glob.rs", "patch": "@@ -159,6 +159,7 @@ impl GlobPart {\n match_partial,\n previous_part_is_path_separator_equivalent,\n cursor: GraphemeCursor::new(0, path.len(), true),\n+ index: 0,\n glob_iterator: None,\n ...
2024-01-10T15:29:38
golang/go
9ce27feaeb91b2f30ff8cbe3be1ece3071f3f6b2
204be97d24e4d6bbe2d5b8e85feb456e88fe0f6d
cmd/compile: add rule for post-decomposed growslice optimization The recently added rule only works before decomposing slices. Add a rule that works after decomposing slices. The reason we need the latter is because although the length may be a constant, it can be hidden inside a slice that is not constant (its point...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2544,7 +2544,10 @@\n // The exception here is that if the new length is a constant, avoiding spilling it\n // is pointless and its constantness is sometimes useful for subsequent optimizations.\n // See issue 56440.\n+// Note there a...
2022-10-28T21:14:24
rust-lang/rust
f43f974b9e14af328b7982d6320cc4d7a9104410
9b0ddec2a8f3ed9a72df14921b3aa164993dd83b
fix(lexer): Allow '-' in the infostring continue set This more closely matches the RFC and what our T-lang contact has asked for, see https://github.com/rust-lang/rust/issues/136889#issuecomment-3212715312
[ { "path": "compiler/rustc_lexer/src/lib.rs", "patch": "@@ -540,11 +540,11 @@ impl Cursor<'_> {\n // whitespace between the opening and the infostring.\n self.eat_while(|ch| ch != '\\n' && is_whitespace(ch));\n \n- // copied from `eat_identifier`, but allows `.` in infostring to allow ...
2025-08-22T14:26:19
electron/electron
a2ba4e0a6a873d11e4161763b309acf6a5bafddb
328323855539f4195edfe71869a4ced95ef23a16
fix content scripts matches
[ { "path": "lib/renderer/content-scripts-injector.js", "patch": "@@ -26,9 +26,7 @@ const runContentScript = function (extensionId, url, code) {\n // Run injected scripts.\n // https://developer.chrome.com/extensions/content_scripts\n const injectContentScript = function (extensionId, script) {\n- for (const...
2017-07-20T18:01:49
facebook/react
6f44f6049edfd7a66448ac50cd4415f6c26fd4b5
f92967c886072a7402d949687c615abd51e006c9
Document justification for dangerouslySetInnerHTML, fixes #2256 Conflicts: docs/_data/nav_tips.yml docs/tips/17-children-undefined.md
[ { "path": "docs/_data/nav_tips.yml", "patch": "@@ -36,3 +36,5 @@\n title: this.props.children undefined\n - id: use-react-with-other-libraries\n title: Use React with Other Libraries\n+ - id: dangerously-set-inner-html\n+ title: Dangerously Set innerHTML", "additions": 2, "deletions": ...
2015-01-20T20:09:22
nodejs/node
849d9e7b90ebaae930a28a7994b3a56ec4f280c6
770a02d3c826e81d52b10af9a7143ad33fe31487
http: provide keep-alive timeout response header In http 1.1 persistent connection protocol there is a timing race where the client sends the request and then the server kills the connection (due to inactivity) before receiving the client's request. By providing a keep-alive header it is possible to provide the clien...
[ { "path": "lib/_http_outgoing.js", "patch": "@@ -28,6 +28,7 @@ const {\n ObjectKeys,\n ObjectPrototypeHasOwnProperty,\n ObjectSetPrototypeOf,\n+ MathFloor,\n Symbol,\n } = primordials;\n \n@@ -123,6 +124,8 @@ function OutgoingMessage() {\n this._header = null;\n this[kOutHeaders] = null;\n \n+ ...
2020-07-30T14:58:08
vercel/next.js
4fb30428ff90c0a3b1195586c641a335a6aaa305
29ec13c1bc1110c6d503e25e55f877b1fadfc925
fix aggregation of outdated children and collectibles (vercel/turbo#6978) ### Description The delayed removal of children and collectibles for "in progress" tasks of the aggregate tree causes some inconsistency in the aggregated tree when "in progress" task are connected to other node. We need to fix that by rep...
[ { "path": "crates/turbo-tasks-memory/src/aggregation_tree/leaf.rs", "patch": "@@ -364,12 +364,12 @@ pub fn remove_inner_upper_from_item<C: AggregationContext>(\n }\n \n /// Checks thresholds for an item to ensure the aggregation graph stays\n-/// well-formed. Run this before added a child to an item. Return...
2024-01-10T15:29:18
rust-lang/rust
0d479c19e875918a6c5248f031fa50cf0997af85
877967959ae8da9814df4f2614971f4d784bf53f
fix: `unnested_or_patterns` FP on structs with only shorthand field pats
[ { "path": "clippy_lints/src/unnested_or_patterns.rs", "patch": "@@ -326,7 +326,11 @@ fn extend_with_struct_pat(\n if idx_1 == idx {\n // In the case of `k`, we merely require identical field names\n // so that we will transform into `ident_...
2025-07-25T06:50:20
nodejs/node
cc7ec889e863433c248bc4b5c8e33f61ccc40f29
8b3ad75b03ee49688ac0e9e4aa2481231fd4ff96
n-api: support type-tagging objects `napi_instanceof()` is insufficient for reliably establishing the data type to which a pointer stored with `napi_wrap()` or `napi_create_external()` inside a JavaScript object points. Thus, we need a way to "mark" an object with a value that, when later retrieved, can unambiguously ...
[ { "path": "benchmark/napi/type-tag-check/binding.gyp", "patch": "@@ -0,0 +1,8 @@\n+{\n+ 'targets': [\n+ {\n+ 'target_name': 'binding',\n+ 'sources': [ '../type-tag/binding.c' ]\n+ }\n+ ]\n+}", "additions": 8, "deletions": 0, "language": "Unknown" }, { "path": "benchmark...
2019-06-14T23:44:18
rust-lang/rust
742cba339a572a77809dd15bda0714e46b1e64ca
c7b75880dc541b298918928a55e56aec2359f4a5
fix FnPtr
[ { "path": "clippy_utils/src/check_proc_macro.rs", "patch": "@@ -29,7 +29,7 @@ use rustc_lint::{EarlyContext, LateContext, LintContext};\n use rustc_middle::ty::TyCtxt;\n use rustc_session::Session;\n use rustc_span::symbol::{Ident, kw};\n-use rustc_span::{Span, Symbol};\n+use rustc_span::{Span, Symbol, sym}...
2025-08-06T22:21:06
vercel/next.js
6740f2f8915d3976e19f777e567fc466ee756b98
45370e8ce82c8653b7fac4fb3defe91049dbb5ff
chore(examples): fix image-component example viewsource paths, shimmer page filename (#60451) This PR fix `image-component` example viewsource paths and shimmer page filename. Which would result a Github 404 page in the current live example. A flow up fix on this PR #60289
[ { "path": "examples/image-component/app/background/page.tsx", "patch": "@@ -5,7 +5,7 @@ import mountains from '../../public/mountains.jpg'\n \n const BackgroundPage = () => (\n <div>\n- <ViewSource pathname=\"pages/background.tsx\" />\n+ <ViewSource pathname=\"app/background/page.tsx\" />\n <div...
2024-01-10T15:13:42
facebook/react
f9c393f4fb32a1263dd64eda347bba81e40473cb
06de3f31f0216236baf83013a53df8aef46c2c41
Fix strict mode violoation in test
[ { "path": "src/core/__tests__/ReactComponentLifeCycle-test.js", "patch": "@@ -239,10 +239,10 @@ describe('ReactComponentLifeCycle', function() {\n }\n });\n expect(function() {\n- instance = ReactTestUtils.renderIntoDocument(<StatefulComponent />);\n+ ReactTestUtils.renderIntoDocumen...
2015-01-21T02:26:51
nodejs/node
6cab3b0e261dfaedd42ca46ee04957d4ec6d1be0
0cc2a54a53831968d5c955cb6cc09a2c46bd75ea
build: auto start Jenkins CI via PR labels Add an Action that will find every PR with the `request-ci` label and will start a Jenkins CI for each of these Pull Requests. The scheduler event is used to circumvent GitHub Actions limitations on Pull Requests from forks (where secrets are not accessible and the GITHUB_TOK...
[ { "path": ".github/workflows/auto-start-ci.yml", "patch": "@@ -0,0 +1,65 @@\n+---\n+name: Auto Start CI\n+\n+on:\n+ push:\n+ schedule:\n+ # `schedule` event is used instead of `pull_request` because when a\n+ # `pull_requesst` event is triggered on a PR from a fork, GITHUB_TOKEN will\n+ # be read...
2020-06-27T19:38:02
rust-lang/rust
c7b75880dc541b298918928a55e56aec2359f4a5
f5292331c3f6c631b0c5544f8c4401c50d032fb7
fix TraitObject
[ { "path": "clippy_utils/src/check_proc_macro.rs", "patch": "@@ -415,7 +415,7 @@ fn ty_search_pat(ty: &Ty<'_>) -> (Pat, Pat) {\n }\n \n fn ast_ty_search_pat(ty: &ast::Ty) -> (Pat, Pat) {\n- use ast::{FnRetTy, MutTy, TyKind};\n+ use ast::{FnRetTy, MutTy, TraitObjectSyntax, TyKind};\n \n match &ty.ki...
2025-08-06T21:09:38
golang/go
3848b44c754229125195e2f95bb71868d1a36f56
ec0b540293a9a0e2c376721b48a208e1fbef5e29
os: in TestDirFS only check returned path for unexpected string The test added in CL 446115 was failing on Plan 9, on which the error returned by a failed open includes the path that failed. Change-Id: If27222596c3cb0366a030bb49ae41c4c869c3db2 Reviewed-on: https://go-review.googlesource.com/c/go/+/446641 Reviewed-by:...
[ { "path": "src/os/os_test.go", "patch": "@@ -2727,7 +2727,7 @@ func TestDirFS(t *testing.T) {\n \t\tif !strings.Contains(err.Error(), nonesuch) {\n \t\t\tt.Errorf(\"error %q does not contain %q\", err, nonesuch)\n \t\t}\n-\t\tif strings.Contains(err.Error(), \"testdata\") {\n+\t\tif strings.Contains(err.(*P...
2022-10-31T20:41:59
facebook/react
51d74ca36cbf8afa59082819e8133dede82b8bfa
c6686768ebc6ce890ed31a7392d2ee3d0ecbdc30
Temporarily comment out bundle-collapser for JSXTransformer This will at least make the examples run while we fix the issue.
[ { "path": "grunt/config/browserify.js", "patch": "@@ -83,7 +83,11 @@ var transformer = {\n debug: false,\n standalone: 'JSXTransformer',\n transforms: [],\n- plugins: [collapser],\n+ // Source-map-generator uses amdefine, which looks at the type of __dereq__.\n+ // If it's not a string, it assumes ...
2015-01-20T03:27:16
nodejs/node
0cc2a54a53831968d5c955cb6cc09a2c46bd75ea
a97b5f9c6acd101ec20d9278a840b2cb6ef94ac9
n-api: simplify bigint-from-word creation Macro `CHECK_MAYBE_EMPTY_WITH_PREAMBLE()` does the work of checking the `TryCatch` and returning `napi_pending_exception` so this change reuses it for `napi_create_bigint_words()`. Signed-off-by: Gabriel Schulhof <gabriel.schulhof@intel.com> PR-URL: https://github.com/nodejs/...
[ { "path": "src/js_native_api_v8.cc", "patch": "@@ -1602,13 +1602,10 @@ napi_status napi_create_bigint_words(napi_env env,\n v8::MaybeLocal<v8::BigInt> b = v8::BigInt::NewFromWords(\n context, sign_bit, word_count, words);\n \n- if (try_catch.HasCaught()) {\n- return napi_set_last_error(env, napi...
2020-07-29T17:48:00
rust-lang/rust
f5292331c3f6c631b0c5544f8c4401c50d032fb7
baf09e2fa2d6ea3a45b4b03ddbd10566c13f3c4b
fix Tup
[ { "path": "clippy_utils/src/check_proc_macro.rs", "patch": "@@ -443,9 +443,11 @@ fn ast_ty_search_pat(ty: &ast::Ty) -> (Pat, Pat) {\n TyKind::Never => (Pat::Str(\"!\"), Pat::Str(\"!\")),\n // Parenthesis are trimmed from the text before the search patterns are matched.\n // See: `spa...
2025-08-06T21:09:26
vercel/next.js
45370e8ce82c8653b7fac4fb3defe91049dbb5ff
1e34f80c91cd7c2e32e79b9ba98580290e16f81d
update turbopack (#60208) * https://github.com/vercel/turbo/pull/6720 <!-- Tobias Koppers - fix weird local name, add tests --> * https://github.com/vercel/turbo/pull/6832 <!-- Leah - fix(turbopack-ecmascript): make sure async module wrapper is always generated --> * ~https://github.com/vercel/turbo/pull/6885~ <!...
[ { "path": "Cargo.lock", "patch": "@@ -321,7 +321,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-240102.1#5933c1cc0d6d974573f3efaf8016a4a8136d0b20\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2024-01-10T10:14:46
golang/go
ec0b540293a9a0e2c376721b48a208e1fbef5e29
e8ec68edfac4f50f57dd7faf039bb5c0f8eaba88
cmd/compile/internal/pgo: remove ConvertLine2Int Parts of package pgo fetch the line number of a node by parsing the number out of the string returned from ir.Line(). This is indirect and inefficient, so it should be replaced with a more direct lookup. It is also potentially buggy: ir.Line uses ctxt.OutermostPos, i.e...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -441,10 +441,10 @@ func (v *hairyVisitor) doNode(n ir.Node) bool {\n \t\t// Determine if the callee edge is a for hot callee or not.\n \t\tif base.Flag.PgoProfile != \"\" && pgo.WeightedCG != nil && v.curFunc != nil {\n \t\t\tif fn := inlCalle...
2022-10-28T17:52:43
nodejs/node
1e470510ff74391d7d4ec382909ea8960d2d2fbc
dc00a07426f0b2dee9bfe39c766a703eb9b5b880
src: fix unused namespace member in node_util PR-URL: https://github.com/nodejs/node/pull/34565 Reviewed-By: Zeyu Yang <himself65@outlook.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_util.cc", "patch": "@@ -21,7 +21,6 @@ using v8::Integer;\n using v8::Isolate;\n using v8::KeyCollectionMode;\n using v8::Local;\n-using v8::MaybeLocal;\n using v8::Object;\n using v8::ONLY_CONFIGURABLE;\n using v8::ONLY_ENUMERABLE;", "additions": 0, "deletions": 1, "language"...
2020-07-30T17:30:43
rust-lang/rust
73d04ba29f2db9073cc37bb43e9d0faf921344b2
2de81f56ec835d45858d0b2d80e8f1d7e1f1d1e3
fix Path
[ { "path": "clippy_utils/src/check_proc_macro.rs", "patch": "@@ -15,7 +15,9 @@\n use rustc_abi::ExternAbi;\n use rustc_ast as ast;\n use rustc_ast::AttrStyle;\n-use rustc_ast::ast::{AttrKind, Attribute, IntTy, LitIntType, LitKind, StrStyle, TraitObjectSyntax, UintTy};\n+use rustc_ast::ast::{\n+ AttrKind, ...
2025-08-06T21:06:19
facebook/react
a5657d213c9daa2086e0dad73ab200807f32862e
c778e61da0c82e89fca619d4ea6e39c04323a89c
Fix lint
[ { "path": "src/classic/class/ReactClass.js", "patch": "@@ -801,10 +801,10 @@ var ReactClass = {\n \n this.props = props;\n this.state = null;\n- \n+\n // ReactClasses doesn't have constructors. Instead, they use the\n // getInitialState and componentWillMount methods for initializati...
2015-01-20T22:39:49
vercel/next.js
29ec13c1bc1110c6d503e25e55f877b1fadfc925
c5ae10690689e458668f9f20cab711f6596cf741
Revert "fix aggregation of outdated children and collectibles" (vercel/turbo#6977) Reverts vercel/turbo#6885 Closes PACK-2218
[ { "path": "crates/turbo-tasks-memory/src/task.rs", "patch": "@@ -1418,15 +1418,6 @@ impl Task {\n thresholds_job = ensure_thresholds(&aggregation_context, &mut guard);\n let TaskGuard { guard, .. } = guard;\n let mut state = TaskMetaStateWriteGuard::full_from(...
2024-01-10T08:28:13
electron/electron
34c27468dd7933a61c5b3ae5a33f1d86c60a4e08
eb0022363ee3192389c93e3ffee03cecb578c301
fix typo in macOS debugging doc
[ { "path": "docs/development/debugging-instructions-macos.md", "patch": "@@ -88,7 +88,7 @@ which will show you that the app is currently setting the name to \"Electron\".\n ```\n \n To do a source level single step in the currently selected thread, execute `step` (or `s`).\n-This would take you into into `na...
2017-07-17T19:12:44
golang/go
e943dc5a8ccab90286d3882e5d13e9fa9516f243
6695cebeec02c62bd440eec8e982028225984dfb
net/http: deflake TestCancelRequestWhenSharingConnection The test sleeps for 1 millisecond to give the cancellation a moment to take effect. This is flaky because the request can finish before the cancellation of the context is seen. It's easy to verify by adding time.Sleep(2*time.Millisecond) after https://gith...
[ { "path": "src/net/http/transport_test.go", "patch": "@@ -6530,16 +6530,17 @@ func testCancelRequestWhenSharingConnection(t *testing.T, mode testMode) {\n \t\tif !errors.Is(err, context.Canceled) {\n \t\t\tt.Errorf(\"request 2: got err %v, want Canceled\", err)\n \t\t}\n+\n+\t\t// Unblock the first request....
2022-10-31T17:18:32
rust-lang/rust
d0de0ec4143cf7c486c02efea0d6f8879cada356
79a95eee88fd17cea24a8ee9835baf3873b18fac
use `result_error_type`
[ { "path": "clippy_lints/src/matches/try_err.rs", "patch": "@@ -101,11 +101,9 @@ fn result_error_type<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> Option<Ty<'t\n fn poll_result_error_type<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> Option<Ty<'tcx>> {\n if let ty::Adt(def, subst) = ty.kind()\n ...
2025-08-21T21:51:26
nodejs/node
2c4f30deea107bf42df4de1d3e7373d52d0d35f5
019ea073babe6db0cf19ffc68e908de5252a1bc8
fs: fix when path is buffer on fs.symlinkSync PR-URL: https://github.com/nodejs/node/pull/34540 Fixes: https://github.com/nodejs/node/issues/34514 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Pranshu Srivastava <rexagod@gmail.com>
[ { "path": "lib/internal/fs/utils.js", "patch": "@@ -336,6 +336,7 @@ function preprocessSymlinkDestination(path, type, linkPath) {\n // No preprocessing is needed on Unix.\n return path;\n }\n+ path = '' + path;\n if (type === 'junction') {\n // Junctions paths need to be absolute and \\\\?\...
2020-07-28T15:14:00
facebook/react
c778e61da0c82e89fca619d4ea6e39c04323a89c
2d75b110972135bd3c2652def33f801c03783795
Fix ES6Class test so it runs in browsers document.createElement throws an error if you don't pass it any arguments. Neither PhantomJS nor jest (via jsdom at version jest is using) behave as browsers do now so this went unnoticed.
[ { "path": "src/modern/class/__tests__/ReactES6Class-test.js", "patch": "@@ -22,7 +22,7 @@ describe('ReactES6Class', function() {\n \n beforeEach(function() {\n React = require('React');\n- container = document.createElement();\n+ container = document.createElement('div');\n attachedListener ...
2015-01-20T22:27:13
electron/electron
0c8f773dec6047a509a029186223fbdf572f58ea
9d7c2e22945e744cc6474f4e19c45f9e37b2ca7f
Remove debug logging
[ { "path": "spec/static/main.js", "patch": "@@ -267,8 +267,6 @@ ipcMain.on('prevent-next-new-window', (event, id) => {\n ipcMain.on('set-web-preferences-on-next-new-window', (event, id, key, value) => {\n webContents.fromId(id).once('new-window', (event, url, frameName, disposition, options) => {\n opt...
2017-07-10T23:36:53
vercel/next.js
c52cb5ad8305c366d9088396b0e6b439f65d634a
8aced5bc64ae740a743cac3a815c76990379ec37
feat(app): add `experimental.missingSuspenseWithCSRBailout` (#57642) ### What? This PR adds a new flag called `experimental.missingSuspenseWithCSRBailout`. ### Why? Via this PR we can break a build when calling `useSearchParams` without wrapping it in a suspense boundary. If no suspense boundaries are pr...
[ { "path": "errors/missing-suspense-with-csr-bailout.mdx", "patch": "@@ -0,0 +1,15 @@\n+---\n+title: Missing Suspense with CSR Bailout\n+---\n+\n+#### Why This Error Occurred\n+\n+Certain methods like `useSearchParams()` opt Next.js into client-side rendering. Without a suspense boundary, this will opt the e...
2024-01-09T23:26:24
rust-lang/rust
9de86f40d7e1a2cbcc308e39fdbc7447d691c527
567b65e537159d4cca44673df2a64852bf15d3c9
Dogfood fixes
[ { "path": "clippy_lints/src/undocumented_unsafe_blocks.rs", "patch": "@@ -202,91 +202,41 @@ impl<'tcx> LateLintPass<'tcx> for UndocumentedUnsafeBlocks {\n };\n \n let item_has_safety_comment = item_has_safety_comment(cx, item);\n- match (&item.kind, item_has_safety_comment) {\n- ...
2025-08-22T12:26:24
golang/go
6695cebeec02c62bd440eec8e982028225984dfb
4b993bffb83394105d13b426dae12afe0ab05804
encoding/xml: reduce depth limit on wasm Wasm can't handle the recusion for XML nested to depth 10,000. Cut it off at 5,000 instead. This fixes TestCVE202228131 on trybots in certain conditions. Also disable TestCVE202230633 to fix 'go test -v encoding/xml' on gomotes. Also rename errExeceededMaxUnmarshalDepth [miss...
[ { "path": "src/encoding/xml/read.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"reflect\"\n+\t\"runtime\"\n \t\"strconv\"\n \t\"strings\"\n )\n@@ -308,14 +309,17 @@ var (\n \ttextUnmarshalerType = reflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem()\n )\n \n-const maxUnmarshal...
2022-10-31T19:42:13
nodejs/node
019ea073babe6db0cf19ffc68e908de5252a1bc8
4692e284e305e3ec2418f7f5005bed8d3e62ad11
async_hooks: don't reuse resource in HttpAgent when queued PR-URL: https://github.com/nodejs/node/pull/34439 Fixes: https://github.com/nodejs/node/issues/34401 Refs: https://github.com/nodejs/node/pull/27581 Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
[ { "path": "lib/_http_agent.js", "patch": "@@ -34,6 +34,7 @@ const EventEmitter = require('events');\n let debug = require('internal/util/debuglog').debuglog('http', (fn) => {\n debug = fn;\n });\n+const { AsyncResource } = require('async_hooks');\n const { async_id_symbol } = require('internal/async_hooks...
2020-07-20T13:05:33
golang/go
3aebf682e4928ab490b64b3ba6729c78c9d066ba
0a6c4c87404ecb018faf002919e5d5db04c69ee2
cmd/api: skip tests when 'os/exec' is supported but 'go build' is not This may fix the android-.*-emu builders, which are currently broken. For #47257. Change-Id: I370dad2cb8031f8f5fdfbeb9c284c4f79f58d929 Reviewed-on: https://go-review.googlesource.com/c/go/+/446638 TryBot-Result: Gopher Robot <gobot@golang.org> Aut...
[ { "path": "src/cmd/api/goapi_test.go", "patch": "@@ -22,6 +22,10 @@ func TestMain(m *testing.M) {\n \t\tos.Stdout.WriteString(\"skipping test: platform cannot exec\")\n \t\tos.Exit(0)\n \t}\n+\tif !testenv.HasGoBuild() {\n+\t\tos.Stdout.WriteString(\"skipping test: platform cannot 'go build' to import std p...
2022-10-31T18:58:40
nodejs/node
4692e284e305e3ec2418f7f5005bed8d3e62ad11
1fe39f0b4bad8da38e5f02542c176d5999ad3ecb
lib: absorb `path` error cases Absorb low level libuv failure in the process initialization phase Fixes: https://github.com/nodejs/node/issues/33759 Refs: https://github.com/nodejs/node/issues/33759#issuecomment-663980558 PR-URL: https://github.com/nodejs/node/pull/34519 Reviewed-By: James M Snell <jasnell@gmail.com>...
[ { "path": "lib/internal/bootstrap/pre_execution.js", "patch": "@@ -98,7 +98,9 @@ function patchProcessObject(expandArgv1) {\n if (expandArgv1 && process.argv[1] && !process.argv[1].startsWith('-')) {\n // Expand process.argv[1] into a full path.\n const path = require('path');\n- process.argv[1...
2020-07-26T13:51:51
vercel/next.js
08e24a8f4ce7329d92edea6f35bdc9b8c66c7f85
1662362d120336b93067273e69c2c4e2a12b863c
Display original failed fetch trace (#60274) ### What Show the original fetch error trace in the dev error overlay, which can show which line of the fetch call is failing. #### After ![image](https://github.com/vercel/next.js/assets/4800338/cebc8d03-58a7-4574-a1bb-896c7f396674) #### Before ![image](htt...
[ { "path": "packages/next/src/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.tsx", "patch": "@@ -1,4 +1,3 @@\n-import React from 'react'\n import type { StackFramesGroup } from '../../helpers/group-stack-frames-by-framework'\n import { CallStackFrame } from './CallStac...
2024-01-09T22:38:37
facebook/react
941cba679e7b1ca909f12af908f6aebc457fbc11
8d5838af728a425ca17595c074b6d3ef16015eda
ref-08-reconciliation.md: grammar/punctuation fixes
[ { "path": "docs/docs/ref-08-reconciliation.md", "patch": "@@ -46,9 +46,9 @@ renderB: <Content />\n => [removeNode <Header />], [insertNode <Content />]\n ```\n \n-Having this high level knowledge is a very important aspect of why React diff algorithm is both fast and precise. It provides a good heuristic to...
2015-01-15T05:36:42
electron/electron
fa7c006a3d8f943c58bb05128b4646b91eea62cf
0298f9e00a650358bb3aa680d344dc8af473cea6
Revert "Enabled true debug mode" This reverts commit df90fb7f7516b70ad5a12b45f5aa397bfde2a201.
[ { "path": "brightray/brightray.gypi", "patch": "@@ -92,6 +92,8 @@\n 'Common_Base': {\n 'abstract': 1,\n 'defines': [\n+ # We are using Release version libchromiumcontent:\n+ 'NDEBUG',\n # Needed by gin:\n 'V8_USE_EXTERNAL_STARTUP_DATA',\n ...
2017-07-17T17:05:12
golang/go
0a6c4c87404ecb018faf002919e5d5db04c69ee2
6774ddfec758ecf2cc64d58392c438dd64660a00
cmd/compile/internal/types2: fix tests on js/wasm The js/wasm builder started failing as of CL 432535 due to needing 'go build' to import standard-library packages that are no longer installed to GOROOT/pkg. Since js/wasm can't exec subprocesses, it cannot run 'go build' to generate the export data needed for these te...
[ { "path": "src/cmd/compile/internal/types2/example_test.go", "patch": "@@ -5,7 +5,7 @@\n // Only run where builders (build.golang.org) have\n // access to compiled packages for import.\n //\n-//go:build !arm && !arm64\n+//go:build !android && !ios && !js\n \n package types2_test\n ", "additions": 1, ...
2022-10-31T15:14:35
nodejs/node
168b22ba073ee1cbf8d0bcb4ded7ff3099335d04
f93e3a39522c2ca37b8e936ecf98dc6e729cf5bc
2020-07-29, Version 14.7.0 (Current) Notable changes: deps: * upgrade npm to 6.14.7 (claudiahdz) https://github.com/nodejs/node/pull/34468 dgram: * (SEMVER-MINOR) add IPv6 scope id suffix to received udp6 dgrams (Pekka Nikander) https://github.com/nodejs/node/pull/14500 doc: * add AshCripps to collaborators (As...
[ { "path": "CHANGELOG.md", "patch": "@@ -30,7 +30,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V14.md#14.6.0\">14.6.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V14.md#14.7.0\">14.7.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V14.md#14.6.0\"...
2020-07-28T19:00:15
vercel/next.js
1662362d120336b93067273e69c2c4e2a12b863c
51bda321f0b805d04666614ebb81d390b79bd74c
chore: fix postinstall when using tarball (#60443) The postinstall script was failing In the case when you download [a zip](https://codeload.github.com/vercel/next.js/zip/refs/heads/canary) of the repo. This PR fixes it so that `git config` can fail silently in that case when the repo is not using git. - Rela...
[ { "path": "package.json", "patch": "@@ -51,7 +51,7 @@\n \"next-no-sourcemaps\": \"cross-env NEXT_TELEMETRY_DISABLED=1 node --trace-deprecation packages/next/dist/bin/next\",\n \"clean-trace-jaeger\": \"node scripts/rm.mjs test/integration/basic/.next && TRACE_TARGET=JAEGER pnpm next build test/integ...
2024-01-09T22:37:49
facebook/react
892f0a59fe63c46cb3d998ac7165296a864f65d8
29ca22c2ff826a4d323ee23cedc3d778cd09d174
Fix lint on travis PR #2852 was not quite correct
[ { "path": "Gruntfile.js", "patch": "@@ -45,8 +45,13 @@ module.exports = function(grunt) {\n cmd: 'node_modules/.bin/eslint',\n args: ['src']\n }, function(err, result, code) {\n+ if (code === 0) {\n+ grunt.log.ok('Lint passed (but may contain warnings)');\n+ } else {\n+ ...
2015-01-14T00:54:39
golang/go
6774ddfec758ecf2cc64d58392c438dd64660a00
e09bbaec69a8ff960110e13eabb3bef5331ecb0c
internal/bytealg: fix bug in index function for ppc64le/power9 The index function was not handling certain corner cases where there were two more bytes to be examined in the tail end of the string to complete the comparison. Fix code to ensure that when the string has to be shifted two more times the correct bytes are...
[ { "path": "src/internal/bytealg/index_ppc64x.s", "patch": "@@ -614,7 +614,7 @@ index4loop:\n next4:\n \tVSPLTISB $0, V10 // Clear\n \tMOVD $3, R9 // Number of bytes beyond 16\n-\tLXVB16X (R7)(R9), V3 // Load 16 bytes @R7 into V2\n+\tLXVB16X (R7)(R9), V3 // Load 16 by...
2022-10-28T07:42:39
electron/electron
df90fb7f7516b70ad5a12b45f5aa397bfde2a201
a43553aa254096b1f63c7862218e95f729a5e623
Enabled true debug mode
[ { "path": "brightray/brightray.gypi", "patch": "@@ -92,8 +92,6 @@\n 'Common_Base': {\n 'abstract': 1,\n 'defines': [\n- # We are using Release version libchromiumcontent:\n- 'NDEBUG',\n # Needed by gin:\n 'V8_USE_EXTERNAL_STARTUP_DATA',\n ...
2017-07-04T17:58:02
vercel/next.js
51bda321f0b805d04666614ebb81d390b79bd74c
46370d816b3a324aedd79c0bbc02cc60d40b4e84
Fix custom cache handler importing on windows (#60312) ### Fixing a bug ### What? Custom cache handler doesn't work on Windows ### Why? It broke in a recent fix, when adding ESM support - #59863. The problem is not new - dynamic imports consider an absolute path in Windows as a protocol: `ERR! Error [ER...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -163,6 +163,7 @@ import { getStartServerInfo, logStartInfo } from '../server/lib/app-info-log'\n import type { NextEnabledDirectories } from '../server/base-server'\n import { hasCustomExportOutput } from '../export/utils'\n import { interopDefault ...
2024-01-09T22:16:47
nodejs/node
f93e3a39522c2ca37b8e936ecf98dc6e729cf5bc
b14ce72353517d51e64e12fc3fdd5153c6951302
build: toolchain.gypi and node_gyp.py cleanup Removed `linux_use_gold_flag`, `linux_use_bundled_gold` and `linux_use_bundled_binutils` flags from `tools/v8_gypfiles/toolchain.gypi` and `/tools/gyp_node.py`. Fixes: https://github.com/nodejs/node/issues/34256 PR-URL: https://github.com/nodejs/node/pull/34268 Reviewed-...
[ { "path": "tools/gyp_node.py", "patch": "@@ -45,18 +45,6 @@ def run_gyp(args):\n args.append('-Dcomponent=static_library')\n args.append('-Dlibrary=static_library')\n \n- # Don't compile with -B and -fuse-ld=, we don't bundle ld.gold. Can't be\n- # set in common.gypi due to how deps/v8/build/toolchai...
2020-07-09T00:05:04
golang/go
3c17053bba406545a87af265f5e4fc8bbdecdcfe
91a1f0d918f54e3b3425248288085db4d5619075
cmd/go, cmd/cgo: support older versions of gccgo that lack cgo.Incomplete Test whether gccgo/GoLLVM supports cgo.Incomplete. If it doesn't, use a local definition rather than importing it. Roll back 426496, which skipped a gccgo test, as it now works. For #46731 Fixes #54761 Change-Id: I8bb2ad84c317094495405e178bf5...
[ { "path": "src/cmd/cgo/doc.go", "patch": "@@ -498,6 +498,9 @@ The following options are available when running cgo directly:\n \t\tThe -fgo-prefix option to be used with gccgo.\n \t-gccgopkgpath path\n \t\tThe -fgo-pkgpath option to be used with gccgo.\n+\t-gccgo_define_cgoincomplete\n+\t\tDefine cgo.Incomp...
2022-10-28T19:13:37
electron/electron
3e946dfe552bfc69cd5c02d1212a5ffa45805db9
a43553aa254096b1f63c7862218e95f729a5e623
Update readme.md Typo fix
[ { "path": "docs-translations/tr-TR/README.md", "patch": "@@ -58,7 +58,7 @@ Bir problem(issue) bildirmeden önce sıkça sorulan sorulara göz atın:\n * [webContents](https://github.com/electron/electron/tree/master/docs/api/web-contents.md)\n * [Tray](https://github.com/electron/electron/tree/master/docs/api/tr...
2017-07-17T14:25:36
nodejs/node
b14ce72353517d51e64e12fc3fdd5153c6951302
360bf9b289e371a2723a7a045ae9389e41294717
benchmark: always throw the same Error instance Stack trace capturing currently accounts for 40 % of the benchmark running time. Always throwing the same exception object removes that overhead and lets the benchmark be more focused on what it is supposed to measure. Refs: https://github.com/nodejs/node/pull/34512#iss...
[ { "path": "benchmark/async_hooks/promises.js", "patch": "@@ -37,10 +37,11 @@ const bench = common.createBenchmark(main, {\n ]\n });\n \n+const err = new Error('foobar');\n async function run(n) {\n for (let i = 0; i < n; i++) {\n await new Promise((resolve) => resolve())\n- .then(() => { throw ...
2020-07-26T23:11:38
facebook/react
47ee780cafa650a61bd62c4a6c13ac5554efd05c
2126600c37fd59b5523699315568990986349b45
[lint] fix consistent-returns
[ { "path": "src/addons/link/__tests__/ReactLinkPropTypes-test.js", "patch": "@@ -40,7 +40,7 @@ function typeCheckPass(declaration, value) {\n 'testComponent',\n ReactPropTypeLocations.prop\n );\n- expect(error).toBe(undefined);\n+ expect(error).toBe(null);\n }\n \n describe('ReactLink', function(...
2015-01-13T22:00:35
rust-lang/rust
863387ca6aa03a79361558f5c58dc7c5675ed599
690a5782f802bc5df3fffa3ce0728c77ee4fb1c2
Remove unused `BuiltinLintDiag` variant `InnerAttributeUnstable` This variant doesn't appear to have ever been used. There's a matching message in `rustc_resolve`, that used to have a FIXME for porting it to the new diagnostic infrastructure, but that message is using `feature_err`, which doesn't use buffered lints. ...
[ { "path": "compiler/rustc_lint/messages.ftl", "patch": "@@ -205,8 +205,6 @@ lint_confusable_identifier_pair = found both `{$existing_sym}` and `{$sym}` as i\n .current_use = this identifier can be confused with `{$existing_sym}`\n .other_use = other identifier used here\n \n-lint_custom_inner_attrib...
2025-08-22T09:14:21
golang/go
b726b0cadb5102bb718f879bede0e76d1e5f5c34
4c69d0eeb869cdc987e35d09a052a0e0320c0c96
cmd/go: don't install most GOROOT .a files in pkg Packages in GOROOT that don't use cgo will not be installed in GOROOT/pkg, and will instead be cached as usual like other Go packages. - add a internal/buildinternal package to hold the identities of the five packages that use cgo - update dist's test code to do a g...
[ { "path": "misc/cgo/testshared/shared_test.go", "patch": "@@ -151,17 +151,17 @@ func testMain(m *testing.M) (int, error) {\n \tmyContext := build.Default\n \tmyContext.GOROOT = goroot\n \tmyContext.GOPATH = gopath\n-\truntimeP, err := myContext.Import(\"runtime\", \".\", build.ImportComment)\n-\tif err != n...
2022-09-21T19:51:27
nodejs/node
4cee226eb41f2c2e3c71800facc0cbaa2f06ecb5
8598ab8976c0a6ace6eea0857aa093c0e95c6eec
console: document the behavior of console.assert() Add a description and an example of console.assert() call with no arguments. If called like this, the method should output: "Assertion failed". Fixes: https://github.com/nodejs/node/issues/34500 Refs: https://nodejs.org/dist/latest-v14.x/docs/api/console.html#console...
[ { "path": "doc/api/console.md", "patch": "@@ -153,6 +153,7 @@ changes:\n * `...message` {any} All arguments besides `value` are used as error message.\n \n A simple assertion test that verifies whether `value` is truthy. If it is not,\n+or `value` is not passed,\n `Assertion failed` is logged. If provided, ...
2020-07-23T22:58:35
vercel/next.js
46370d816b3a324aedd79c0bbc02cc60d40b4e84
7018a65de43900a7c945a5f9357d1bd4d72f701a
refactor(next/core): reorganize next.js custom transforms for next-swc/turbopack (#60400) <!-- 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": ".github/workflows/build_and_test.yml", "patch": "@@ -119,29 +119,6 @@ jobs:\n mold: 'yes'\n secrets: inherit\n \n- test-cargo-integration:\n- name: test cargo integration\n- needs: ['changes', 'build-next']\n- if: ${{ needs.changes.outputs.docs-only == 'false' }}\n-\n- uses...
2024-01-09T20:23:47
facebook/react
847357e42e5267b04dd6e297219eaa125ab2f9f4
e27da9973193a06a138d7098c58723a7f10ed2e5
[lint] Fix reasonable lines to 80 I don't agree with 80 on principal but it's what we have for now. This fixes the reasonable cases. Most of the long lines are in docblocks with long type information or containing links.
[ { "path": "src/browser/server/ReactServerRendering.js", "patch": "@@ -38,7 +38,8 @@ function renderToString(element) {\n \n return transaction.perform(function() {\n var componentInstance = instantiateReactComponent(element, null);\n- var markup = componentInstance.mountComponent(id, transact...
2014-12-25T19:33:51
rust-lang/rust
3868f8ad5c2ef77fa823dc17da14ba13c2d508f7
8e7cca83344e511e263e91f9539b8d341b2dd2bb
fix: convert_integer_literal not on selected `convert_integer_literal` can only convert the first literal, it is not reasonable to apply it when selected Example --- ```rust fn main() { $01+1$0; } ``` **Assist old outputs**: ``` Convert 1 to 0b1 Convert 1 to 0o1 Convert 1 to 0x1 Replace arithmetic with call to...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_integer_literal.rs", "patch": "@@ -14,6 +14,9 @@ use crate::{AssistContext, AssistId, Assists, GroupLabel};\n // const _: i32 = 0b1010;\n // ```\n pub(crate) fn convert_integer_literal(acc: &mut Assists, ctx: &AssistContext<'_>) -> O...
2025-08-22T09:06:21
golang/go
4c69d0eeb869cdc987e35d09a052a0e0320c0c96
42f334d677d5d50ba7ddca08a30451b33e78e61b
testing: change Error to Errorf in comment Fixes #56479 Change-Id: I1d97eb3ea97304e429e178ad05cb9f861b2bce84 Reviewed-on: https://go-review.googlesource.com/c/go/+/446275 Run-TryBot: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@golang.org> Revie...
[ { "path": "src/testing/testing.go", "patch": "@@ -263,7 +263,7 @@\n //\t t.Skip()\n //\t }\n //\t if _, err := json.Marshal(v); err != nil {\n-//\t t.Error(\"Marshal: %v\", err)\n+//\t t.Errorf(\"Marshal: %v\", err)\n //\t }\n //\t })\n //\t}", "a...
2022-10-28T19:33:49
electron/electron
4fb1fffe44e7ffdb5d701a90fefc1b6e71ff1b3c
8d6ee5aad20ecf69a7f59bd8c7fb416a0db87eda
fix lint
[ { "path": "atom/browser/atom_resource_dispatcher_host_delegate.cc", "patch": "@@ -87,10 +87,11 @@ void OnPdfResourceIntercepted(\n // by the webui page.\n // chrome://pdf-viewer/index.html?src=https://somepage/123.pdf\n content::NavigationController::LoadURLParams params(\n- GURL(base::StringPrin...
2017-07-15T02:57:16
nodejs/node
fe2a7f052f65f20e3c325e7525fdab7128c2f72c
53870ddeac8b115f7bba070c2fcd0f5e31ecc9da
util: print External address from inspect Fixes: https://github.com/nodejs/node/issues/28250 PR-URL: https://github.com/nodejs/node/pull/34398 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: James M Snell <jas...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -63,6 +63,7 @@ const {\n kRejected,\n previewEntries,\n getConstructorName: internalGetConstructorName,\n+ getExternalValue,\n propertyFilter: {\n ALL_PROPERTIES,\n ONLY_ENUMERABLE\n@@ -977,8 +978,10 @@ function formatRaw(ctx, value, re...
2020-07-16T16:28:09
facebook/react
e27da9973193a06a138d7098c58723a7f10ed2e5
df2ddc5dfa8852df81566f4ffef9a18d667b2817
[lint] Fix majority of issues eslint found
[ { "path": "src/addons/ReactRAFBatchingStrategy.js", "patch": "@@ -10,6 +10,8 @@\n * @typechecks static-only\n */\n \n+/* global requestAnimationFrame:true */\n+\n 'use strict';\n \n var ExecutionEnvironment = require('ExecutionEnvironment');", "additions": 2, "deletions": 0, "language": "JavaS...
2014-12-19T00:46:08
vercel/next.js
7018a65de43900a7c945a5f9357d1bd4d72f701a
3aed59c2b91df76c03cd0a387df58c4dbf401f27
Missing Postpone Detection Fix (#59891) ### What? Previously, if an error such as the client side rendering bailout (not to be confused with the static rendering bailout which PPR supercedes) occurs during render, and the `postpone` function was invoked during the original render, then the `staticGenerationStore...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -804,6 +804,23 @@ async function renderToHTMLOrFlightImpl(\n // response directly.\n const onHeadersFinished = new DetachedPromise<void>()\n \n+ type RenderToStreamResult = {\n+ stream: RenderResultResponse\n+ err?: Erro...
2024-01-09T20:03:17
rust-lang/rust
c99320156dfeea98836fe7dad97d16f67c4d879e
6ba0ce40941eee1ca02e9ba49c791ada5158747a
Refactor lint buffering to avoid requiring a giant enum Lint buffering currently relies on a giant enum `BuiltinLintDiag` containing all the lints that might potentially get buffered. In addition to being an unwieldy enum in a central crate, this also makes `rustc_lint_defs` a build bottleneck: it depends on various t...
[ { "path": "Cargo.lock", "patch": "@@ -3798,6 +3798,7 @@ dependencies = [\n \"annotate-snippets 0.11.5\",\n \"derive_setters\",\n \"rustc_abi\",\n+ \"rustc_ast\",\n \"rustc_data_structures\",\n \"rustc_error_codes\",\n \"rustc_error_messages\",", "additions": 1, "deletions": 0, "language": ...
2025-08-22T03:30:28
golang/go
42f334d677d5d50ba7ddca08a30451b33e78e61b
e59d873ff906550ace73b86bdb74b68ebe482a10
os: don't include DirFS argument in DirFS errors Otherwise we wind up mixing GOOS paths with slash separated paths. Change-Id: I63dd733cbdb0668effbc030cfd58945008732d9e Reviewed-on: https://go-review.googlesource.com/c/go/+/446115 Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@goog...
[ { "path": "src/os/file.go", "patch": "@@ -625,6 +625,7 @@ func DirFS(dir string) fs.FS {\n \treturn dirFS(dir)\n }\n \n+// containsAny reports whether any bytes in chars are within s.\n func containsAny(s, chars string) bool {\n \tfor i := 0; i < len(s); i++ {\n \t\tfor j := 0; j < len(chars); j++ {\n@@ -64...
2022-10-28T00:29:51
facebook/react
2330962d25fdde9a3e0275aa4e44f572f77be07e
d138f9a35ba9b639d9ec0cb59b58146f6e657a68
Warn when defined methods are used in plain JS classes In ReactClass we use early validation to warn you if a accidentally defined propTypes in the wrong place or if you mispelled componentShouldUpdate. For plain JS classes there is no early validation process. Therefore, we wait to do this validation until the compo...
[ { "path": "src/classic/class/ReactClass.js", "patch": "@@ -808,12 +808,22 @@ var ReactClass = {\n // Initialize the defaultProps property after all mixins have been merged\n if (Constructor.getDefaultProps) {\n Constructor.defaultProps = Constructor.getDefaultProps();\n- if (__DEV__) {\n-...
2015-01-13T19:01:10
vercel/next.js
3aed59c2b91df76c03cd0a387df58c4dbf401f27
2ebc58cca3153fa526f644ed50fb530c077730ee
chore(docs): fix 14 upgrade guide mentioning export (#60429) This was actually deprecated in a previous version 13.x and removed in Next.js 14.0.0 - See original PR: https://github.com/vercel/next.js/pull/57085
[ { "path": "docs/02-app/01-building-your-application/10-upgrading/03-version-14.mdx", "patch": "@@ -30,7 +30,7 @@ bun add next@latest react@latest react-dom@latest eslint-config-next@latest\n ### v14 Summary\n \n - The minimum Node.js version has been bumped from 16.14 to 18.17, since 16.x has reached end-of...
2024-01-09T19:10:35
electron/electron
8d6ee5aad20ecf69a7f59bd8c7fb416a0db87eda
9a7651a93faaaef0534df1ab77268d7deb9d3165
add some minor fixes
[ { "path": "atom/browser/atom_resource_dispatcher_host_delegate.cc", "patch": "@@ -86,10 +86,11 @@ void OnPdfResourceIntercepted(\n // The URL passes the original pdf resource url, that will be requested\n // by the webui page.\n // chrome://pdf-viewer/index.html?src=https://somepage/123.pdf\n- GURL e...
2017-07-15T02:32:46
nodejs/node
7a5fbafe960d54af88b113afd6c78d2a29420cf9
ccbd1d5efa4cc6232f2be434c9004d90ac60af72
quic: fix build for macOS PR-URL: https://github.com/nodejs/node/pull/34336 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/quic/node_quic_stream.cc", "patch": "@@ -160,11 +160,11 @@ int QuicStream::DoShutdown(ShutdownWrap* req_wrap) {\n \n CHECK_NULL(shutdown_done_);\n CHECK_NOT_NULL(req_wrap);\n- shutdown_done_ = std::move([=](int status) {\n+ shutdown_done_ = [=](int status) {\n CHECK_NOT_NULL(req_wra...
2020-07-26T15:33:39
golang/go
e59d873ff906550ace73b86bdb74b68ebe482a10
77296e36457b070bc811a605c4c4bd6c36d972ae
cmd/compile: emit DIEs for zero sized variables Fixes the compiler to emit DIEs for zero sized variables. Fixes #54615 Change-Id: I1e0c86a97f1abcc7edae516b6a7fe35bcb65ed0f Reviewed-on: https://go-review.googlesource.com/c/go/+/433479 Reviewed-by: Damien Neil <dneil@google.com> TryBot-Result: Gopher Robot <gobot@gola...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -151,6 +151,21 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t} else {\n \t\tdecls, vars, selected = createSimpleVars(fnsym, apDecls)\n \t}\n+\tif fn.DebugInfo != nil {\n+\t\t// Recover zero sized v...
2022-09-23T15:31:19
vercel/next.js
84aeded02f98386ead903e5c5c6e56be2f123a4f
2e29c7b10e855f4aba04ca0c8a2d9e7a59b80ced
Refactor `unstable_cache` implementation (#60403) The original motivation of this PR is to get `unstable_cache` into a state where I can more easily change the implementation of postpone to be more akin to "dynamic rendering APIs". the existing approach made typing the staticGenerationStore in a way I wanted to for...
[ { "path": "packages/next/src/server/lib/incremental-cache/index.ts", "patch": "@@ -295,7 +295,6 @@ export class IncrementalCache implements IncrementalCacheType {\n // that should bust the cache\n const MAIN_KEY_PREFIX = 'v3'\n \n- let cacheKey: string\n const bodyChunks: string[] = []\n \n ...
2024-01-09T16:56:27
facebook/react
52e8ba4a40bac66d37b44cd33ebc896faf9d6ef4
a45472e050e0507bd553684f26ccb9e880709b62
Add boxFlex and boxFlexGroup to CSS Unitless Properties Fixes #2812
[ { "path": "src/browser/ui/dom/CSSProperty.js", "patch": "@@ -15,6 +15,8 @@\n * CSS properties which accept numbers but are not in units of \"px\".\n */\n var isUnitlessNumber = {\n+ boxFlex: true,\n+ boxFlexGroup: true,\n columnCount: true,\n flex: true,\n flexGrow: true,", "additions": 2, ...
2015-01-07T19:27:43
golang/go
77296e36457b070bc811a605c4c4bd6c36d972ae
99862cd57dd9406180f238e8fa2fcc1d435fb163
cmd/go: don't substitute '$WORK' for work directory in -x heredocs When writing the set of commands excuted for go build -x, $WORK is substituted for the work directory in all the commnands. But this includes the cat <<EOF commands used to create a file with the given contents. While we can expect the shell to substit...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2061,7 +2061,7 @@ func (b *Builder) fmtcmd(dir string, format string, args ...any) string {\n \t\t\tcmd = \"cd \" + dir + \"\\n\" + cmd\n \t\t}\n \t}\n-\tif b.WorkDir != \"\" {\n+\tif b.WorkDir != \"\" && !strings.HasPrefix(cmd, \"cat \") {\n \t\tc...
2022-10-28T00:51:04
vercel/next.js
2e29c7b10e855f4aba04ca0c8a2d9e7a59b80ced
1481b2649f18b7469c94b0e1ae799e174ed33539
Fix missing source code display for some jsx errors (#60390) There're some cases that error frames file is still conating "webpack-internal" for server component and also the webpack layer info such as `(rsc)` so that the source file is not properly recovered ### After ![image](https://github.com/vercel/next...
[ { "path": "packages/next/src/client/components/react-dev-overlay/internal/helpers/stack-frame.ts", "patch": "@@ -121,6 +121,12 @@ export function getOriginalStackFrames(\n )\n }\n \n+function formatFrameSourceFile(file: string) {\n+ return file\n+ .replace(/^webpack-internal:(\\/)+(\\.)?/, '')\n+ ....
2024-01-09T15:30:25
rust-lang/rust
cf478a02c74aac664cc2e2cfa7ce91e50be1d3a4
e90138632de9cec54f417b4712a8d1a7f5416ef8
Fix panic in syntax_highlighting
[ { "path": "src/tools/rust-analyzer/crates/ide/src/syntax_highlighting.rs", "patch": "@@ -452,10 +452,10 @@ fn traverse(\n }\n hl\n }\n- NodeOrToken::Token(token) => {\n+ NodeOrToken::Token(token) => salsa::attach(sema.db, || {\n ...
2025-08-22T06:58:48
golang/go
537c4354cb9fdf8812c0448bd8f8a3b9f9ab1736
7f255ba065ee7bd41da806b297cd643e3ead3fee
cmd/internal/obj/arm64: optimize ADRP+ADD+LD/ST to ADRP+LD/ST(offset) This CL optimizes the sequence of instructions ADRP+ADD+LD/ST to the sequence of ADRP+LD/ST(offset). This saves an ADD instruction. The test result of compilecmp: name old text-bytes new text-bytes delta HelloSize 763kB ± 0% 755k...
[ { "path": "src/cmd/internal/obj/arm64/asm7.go", "patch": "@@ -37,6 +37,7 @@ import (\n \t\"log\"\n \t\"math\"\n \t\"sort\"\n+\t\"strings\"\n )\n \n // ctxt7 holds state while assembling a single function.\n@@ -73,7 +74,7 @@ type Optab struct {\n \ta3 uint8\n \ta4 uint8\n \ttype_ int8\n-\tsize int8\n+...
2022-07-11T02:40:14
nodejs/node
2fb92f4cc63d8538e6df998ad0848d74edd6085b
62198d2d17002246e317558d0fcb6342cd07135b
quic: remove extraneous unused debug property PR-URL: https://github.com/nodejs/node/pull/34498 Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "lib/internal/quic/core.js", "patch": "@@ -2518,7 +2518,6 @@ function streamOnPause() {\n this[kHandle].readStop();\n }\n class QuicStream extends Duplex {\n- #count = 0;\n [kInternalState] = {\n closed: false,\n closePromise: undefined,", "additions": 0, "deletions": 1, ...
2020-07-23T17:15:23
rust-lang/rust
e1d4f099e5936181812bbaa0ed169e97f6dcc2a9
8e3710ef31a0b2cdf5a1c2f3929b7735d1e28c20
doc: fix some typos in comment Signed-off-by: xihuwenhua <xihuwenhua@outlook.com>
[ { "path": "src/doc/rustc-dev-guide/src/autodiff/internals.md", "patch": "@@ -17,7 +17,7 @@ fn main() {\n \n The detailed documentation for the `std::autodiff` module is available at [std::autodiff](https://doc.rust-lang.org/std/autodiff/index.html).\n \n-Differentiable programing is used in various fields l...
2025-08-22T06:42:26
vercel/next.js
1481b2649f18b7469c94b0e1ae799e174ed33539
a3f4ad9887f2e460a6833b78445bc903c3107d8a
Fix TypeError when using params in `RootLayout` with parallel routes (#60401) ### What? When accessing `params` on a `RootLayout`, while also using parallel routes, two potential errors would occur: - A `Warning: React.createElement: type is invalid` error when attempting to render a `NotFound` component that does...
[ { "path": "packages/next/src/client/components/error-boundary.tsx", "patch": "@@ -30,13 +30,14 @@ export type ErrorComponent = React.ComponentType<{\n \n export interface ErrorBoundaryProps {\n children?: React.ReactNode\n- errorComponent: ErrorComponent\n+ errorComponent: ErrorComponent | undefined\n ...
2024-01-09T15:06:24
golang/go
0156b797e6f0d1a116a19cd852f569ec2c2eec11
da0913f814dd4dcd28698dc5b85a3347b77b5550
cmd/compile: recognize when the result of append has a constant length Fixes a performance regression due to CL 418554. Fixes #56440 Change-Id: I6ff152e9b83084756363f49ee6b0844a7a284880 Reviewed-on: https://go-review.googlesource.com/c/go/+/445875 Run-TryBot: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2539,6 +2539,13 @@\n (SelectN [0] call:(StaticLECall {sym} a x)) && needRaceCleanup(sym, call) && clobber(call) => x\n (SelectN [0] call:(StaticLECall {sym} x)) && needRaceCleanup(sym, call) && clobber(call) => x\n \n+// When rewriti...
2022-10-27T15:28:06
nodejs/node
e8d7fedf7cad6e612e4f2e0456e359af57608ac7
de192246bc29c43f387bc18024515cc475be152d
http: don't write error to socket The state of the connection is unknown at this point and writing to it can corrupt client state before it is aware of an error. PR-URL: https://github.com/nodejs/node/pull/34465 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Rev...
[ { "path": "doc/api/http.md", "patch": "@@ -1074,8 +1074,8 @@ type other than {net.Socket}.\n \n Default behavior is to try close the socket with a HTTP '400 Bad Request',\n or a HTTP '431 Request Header Fields Too Large' in the case of a\n-[`HPE_HEADER_OVERFLOW`][] error. If the socket is not writable it is...
2020-07-21T18:53:07
facebook/react
e926d4ff54648a03c3c9fa99c6fcbc82007db051
a7028c467f66d64ec92ab2ce986df932f2097273
Fix Outdated Copyright Year Fix outdated copyright year (update to 2015) The copyright year was out of date. Copyright notices must reflect the current year. This commit updates the listed year to 2015.
[ { "path": "LICENSE", "patch": "@@ -2,7 +2,7 @@ BSD License\n \n For React software\n \n-Copyright (c) 2013-2014, Facebook, Inc.\n+Copyright (c) 2013-2015, Facebook, Inc.\n All rights reserved.\n \n Redistribution and use in source and binary forms, with or without modification,", "additions": 1, "de...
2015-01-05T18:52:20
golang/go
264753c0432c728989970786398c2bcf241a43dd
ed24b37fd2b0c242525eb2203d90627c4be1b149
debug/elf: guard access to File.gnuVersym The size of gnuVersym should be multiples of 2. If not, the input is invalid. No Library and Version information is added to sym in this case. The current implementation of gnuVersion does not report errors for invalid input. While at here, bring back the comment that states ...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -1570,12 +1570,16 @@ func (f *File) gnuVersionInit(str []byte) bool {\n // gnuVersion adds Library and Version information to sym,\n // which came from offset i of the symbol table.\n func (f *File) gnuVersion(i int) (library string, version string) {\n-\t// E...
2022-10-26T11:41:27