repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
electron/electron | 42f65c52fb7cc72e734c62daeb88b276451d52e4 | 852519a826dda90ee911adb0a3548d2fe4b31ea2 | :bug: Fix webpreferences not accepting numeric options
The webpreferences attribute values are parsed as strings instead
of numbers. Therefore, a conversion is required. | [
{
"path": "atom/browser/web_contents_preferences.cc",
"patch": "@@ -5,6 +5,7 @@\n #include \"atom/browser/web_contents_preferences.h\"\n \n #include <algorithm>\n+#include <sstream>\n #include <string>\n #include <vector>\n \n@@ -215,6 +216,25 @@ bool WebContentsPreferences::IsSandboxed(content::WebContents... | 2017-01-31T02:43:12 |
golang/go | 07cf24bdfe55dd3493e580c67b5437a114df7658 | b23d469e854f36e5ba8c0de9b7406a81e82d15c1 | cmd/compile/internal/noder: set ir.Name.DictIndex for unified IR
For local variables of derived type, Delve relies on ir.Name.DictIndex
being set to the type's rtype index within the function's dictionary.
This CL implements that functionality within unified IR.
Manually double checked that Delve behaves correctly, a... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -1490,20 +1490,18 @@ func (r *reader) addLocal(name *ir.Name, ctxt ir.Class) {\n \tif name.Sym().Name == dictParamName {\n \t\tr.dictParam = name\n \t} else {\n-\t\tif ctxt == ir.PAUTO {\n+\t\tif r.synthetic == nil {\n \t\t\tr.Sync(pkgbits.S... | 2022-08-18T10:53:58 |
nodejs/node | b149eefa82327af9835d3c68b3fd03e0e4a25413 | 8b9e877435a8bab89d1262120d06af982f82af52 | http: fix incorrect headersTimeout measurement
For keep-alive connections, the headersTimeout may fire during
subsequent request because the measurement was reset after
a request and not before a request.
PR-URL: https://github.com/nodejs/node/pull/32329
Fixes: https://github.com/nodejs/node/issues/27363
Reviewed-By:... | [
{
"path": "lib/_http_client.js",
"patch": "@@ -723,7 +723,8 @@ function tickOnSocket(req, socket) {\n new HTTPClientAsyncResource('HTTPINCOMINGMESSAGE', req),\n req.maxHeaderSize || 0,\n req.insecureHTTPParser === undefined ?\n- ... | 2019-10-30T22:33:33 |
facebook/react | e244df510dc7b55c3bc7ac6bfe67a8f20cce2e41 | e91a8a1bc30e675c4683d5667b4122106962828b | docs tips fix small typo and code | [
{
"path": "docs/tips/15-expose-component-functions.md",
"patch": "@@ -29,9 +29,10 @@ var Todos = React.createClass({\n return {items: ['Apple', 'Banana', 'Cranberry']};\n },\n \n- handleClick: function(i) {\n- var items = this.state.items;\n- items.splice(i, 1);\n+ handleClick: function(index)... | 2014-01-01T02:23:28 |
golang/go | b23d469e854f36e5ba8c0de9b7406a81e82d15c1 | 330cffb86951414da5ef2fde912167f6b4d1d91e | cmd/compile/internal/noder: pointer shaping for unified IR
This CL implements pointer shaping in unified IR, corresponding to the
existing pointer shaping implemented in the non-unified frontend.
For example, if `func F[T any]` is instantiated as both `F[*int]` and
`F[*string]`, we'll now generate a single `F[go.shap... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -795,18 +795,31 @@ func (dict *readerDict) mangle(sym *types.Sym) *types.Sym {\n }\n \n // shapify returns the shape type for targ.\n-func shapify(targ *types.Type) *types.Type {\n-\tif targ.IsShape() {\n-\t\treturn targ\n-\t}\n-\n+//\n+// I... | 2022-08-18T10:14:23 |
facebook/react | 7a9e5443b7184986e08e411d9e9ad2d7228c7827 | f871147b4d7dc241d4d9a9fa7b7a931ba6fb9a29 | Don't get selection if no active element
Fixes #694.
Previously, it could be that there was an active element that was removed in between mousedown and mouseup. | [
{
"path": "src/eventPlugins/SelectEventPlugin.js",
"patch": "@@ -96,8 +96,12 @@ function getSelection(node) {\n */\n function constructSelectEvent(nativeEvent) {\n // Ensure we have the right element, and that the user is not dragging a\n- // selection (this matches native `select` event behavior).\n- ... | 2014-01-01T00:25:34 |
nodejs/node | ac08249971d9cbb2c9afb6375e10882aa421efc7 | 881c932bf20ba61e2c5d10a6c3e7f5a5244ef379 | doc: update releaser list in README.md
Moved emeritus members keys and fixed alphabetization issues
PR-URL: https://github.com/nodejs/node/pull/32577
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
Reviewed-By: Colin Ihr... | [
{
"path": "README.md",
"patch": "@@ -548,10 +548,6 @@ GPG keys used to sign Node.js releases:\n `4ED778F539E3634C779C87C6D7062848A1AB005C`\n * **Colin Ihrig** <cjihrig@gmail.com>\n `94AE36675C464D64BAFA68DD7434390BDBE9B9C5`\n-* **Evan Lucas** <evanlucas@me.com>\n-`B9AE9905FFD7803F25714661B63B535... | 2020-03-31T07:31:40 |
electron/electron | 85e84cc0da9edff8497b7fe932d6c308dcb81f7b | 8359c72347372176e3cb27735caa19d967dae762 | Fix missing of symbols when linking win32 build | [
{
"path": "atom/node/osfhandle.cc",
"patch": "@@ -24,6 +24,8 @@ void ReferenceSymbols() {\n // for some reason, adding them to ForceSymbolReferences does not work,\n // probably because of VC++ bugs.\n v8::TracingCpuProfiler::Create(nullptr);\n+ reinterpret_cast<v8_inspector::V8InspectorSession*>(nul... | 2017-02-07T00:14:50 |
vercel/next.js | 945edaccebaa3eebef61c17a83c3ee491ca583a1 | 9c87ea5a3d45c64da220e1013a4fe802935b2b31 | fix(next-core): adjust og alias (#57431)
### What?
minor adjustment to the alias to reflect latest changes:
https://github.com/vercel/next.js/blob/9c87ea5a3d45c64da220e1013a4fe802935b2b31/packages/next/src/server/web/spec-extension/image-response.ts#L3
Closes WEB-1861 | [
{
"path": "packages/next-swc/crates/next-core/src/next_import_map.rs",
"patch": "@@ -605,10 +605,7 @@ async fn insert_next_server_special_aliases(\n \n import_map.insert_exact_alias(\n \"@vercel/og\",\n- external_if_node(\n- project_path,\n- \"next/dist/server/web/sp... | 2023-10-25T17:31:04 |
facebook/react | 261926303d61b9881670e4ebb8f7a93544c85d14 | 3defe88192f3eeb01c9bcb303007d98ac6ebddf6 | Remove sometimes-confusing console error
Fixes #767. This essentially reverts 738de8c.
We could store some sort of flag to silence the console error here but since we've made significant improvements in markup wrapping, this error is fairly rare now. We'll also have validation of node structure soon in #735. | [
{
"path": "src/core/ReactMount.js",
"patch": "@@ -576,17 +576,11 @@ var ReactMount = {\n \n firstChildren.length = 0;\n \n- if (__DEV__) {\n- console.error(\n- 'Error while invoking `findComponentRoot` with the following ' +\n- 'ancestor node:',\n- ancestorNode\n- );\n-... | 2013-12-31T20:37:15 |
golang/go | 760c180d3bb2464b1e91402630c8f0d1e79180b3 | 924f526277c4deecfeb3ff3b48095126d1bb520e | debug/pe: use saferio to set symbol slice capacity
No test case because the problem can only happen for invalid data.
Let the fuzzer find cases like this.
For #47653
Fixes #53530
Change-Id: If1cebbbcabb188fec8be30ef043c8c4c935a9564
Reviewed-on: https://go-review.googlesource.com/c/go/+/413995
Run-TryBot: Ian Lance T... | [
{
"path": "src/debug/pe/symbol.go",
"patch": "@@ -6,7 +6,9 @@ package pe\n \n import (\n \t\"encoding/binary\"\n+\t\"errors\"\n \t\"fmt\"\n+\t\"internal/saferio\"\n \t\"io\"\n \t\"unsafe\"\n )\n@@ -57,29 +59,35 @@ func readCOFFSymbols(fh *FileHeader, r io.ReadSeeker) ([]COFFSymbol, error) {\n \tif err != ni... | 2022-06-24T17:24:11 |
nodejs/node | f6dcd63b29d67bb45424a3e9139aa67388396d05 | 18b338352629f3c1537182f409672d2cad08e376 | deps: revert whitespace changes on V8
While landing the upgrade to V8 8.1, something went wrong and git made
unecessary (and incorrect) whitespace changes to test fixtures, which
broke V8 tests. Revert those changes to fix our tests.
PR-URL: https://github.com/nodejs/node/pull/32587
Reviewed-By: Anna Henningsen <anna... | [
{
"path": "deps/v8/test/cctest/interpreter/bytecode_expectations/PrivateMethodAccess.golden",
"patch": "@@ -111,7 +111,7 @@ snippet: \"\n #d() { return 1; }\n constructor() { (() => this)().#d(); }\n }\n-\n+ \n var test = D;\n new test;\n \"\n@@ -147,3 +147,4 @@ constant pool: [\n ]\n handler... | 2020-03-31T18:53:15 |
vercel/next.js | 9c87ea5a3d45c64da220e1013a4fe802935b2b31 | d8160e05412ed911d981851541d51c5f1c2ff6eb | Fix logging removed experiments in start logs (#57373)
Do not log the removed experiments in the start server logs, for instance `experimental.appDir` should get warned as unexpected option but it's not the valid experiment anymore | [
{
"path": "packages/next/src/server/config-shared.ts",
"patch": "@@ -277,7 +277,6 @@ export interface ExperimentalConfig {\n \n /**\n * Generate Route types and enable type checking for Link and Router.push, etc.\n- * This option requires `appDir` to be enabled first.\n * @see https://nextjs.org/d... | 2023-10-25T16:08:14 |
facebook/react | b2e51c6e0172890033bb2c9cb11c50b8cc239290 | f871147b4d7dc241d4d9a9fa7b7a931ba6fb9a29 | Upgrade codemirror and enable line wrapping
Fixes #678. | [
{
"path": "docs/_js/live_editor.js",
"patch": "@@ -21,6 +21,7 @@ var CodeMirrorEditor = React.createClass({\n this.editor = CodeMirror.fromTextArea(this.refs.editor.getDOMNode(), {\n mode: 'javascript',\n lineNumbers: false,\n+ lineWrapping: true,\n matchBrackets: true,\n th... | 2013-12-31T01:06:00 |
nodejs/node | 18b338352629f3c1537182f409672d2cad08e376 | 138eb32be1a912f1b8a551f657880f19c12f864c | test: add test-worker-prof to the SLOW list for debug
Consistently failing on ubuntu1804_sharedlibs_debug_x64
Refs: https://github.com/nodejs/node/issues/26401
PR-URL: https://github.com/nodejs/node/pull/32589
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-B... | [
{
"path": "test/root.status",
"patch": "@@ -153,6 +153,7 @@ sequential/test-inspector-port-cluster: SLOW\n sequential/test-net-bytes-per-incoming-chunk-overhead: SLOW\n sequential/test-pipe: SLOW\n sequential/test-util-debug: SLOW\n+sequential/test-worker-prof: SLOW\n \n [$type==coverage]\n async-hooks/test... | 2020-03-31T22:23:15 |
electron/electron | a35424ef250694a015e9e1477a6079897f839fca | 8359c72347372176e3cb27735caa19d967dae762 | Fix broken Squirrel.Windows link. | [
{
"path": "docs/api/app.md",
"patch": "@@ -804,7 +804,7 @@ Returns `Object`:\n \n Set the app's login item settings.\n \n-To work with Electron's `autoUpdater` on Windows, which uses [Squirrel](Squirrel-Windows),\n+To work with Electron's `autoUpdater` on Windows, which uses [Squirrel][Squirrel-Windows],\n ... | 2017-02-06T23:54:05 |
facebook/react | a2e352ea76a711de67d891568301fa497a93a39c | f871147b4d7dc241d4d9a9fa7b7a931ba6fb9a29 | Add onMouseOver and onMouseOut events
Fixes #340.
Test Plan:
Ported @danielstocks's jsfiddle (linked in the issue) to React and the hover effect worked properly. | [
{
"path": "docs/docs/ref-05-events.md",
"patch": "@@ -106,7 +106,7 @@ Event names:\n ```\n onClick onDoubleClick onDrag onDragEnd onDragEnter onDragExit onDragLeave\n onDragOver onDragStart onDrop onMouseDown onMouseEnter onMouseLeave\n-onMouseMove onMouseUp\n+onMouseMove onMouseOut onMouseOver onMouseUp\n ... | 2013-12-31T00:36:45 |
golang/go | 924f526277c4deecfeb3ff3b48095126d1bb520e | b8b9e83ec7a92498c2c69a1a963c31983d303e21 | time: fix LoadLocation documentation formatting
The documentation for LoadLocation contains an enumerated list,
but does not render as such because it's missing leading spaces.
Output verified with the go doc command and godoc server.
Change-Id: I88b61d34048b7d01ee5cd77c32849af266e2f4c5
Reviewed-on: https://go-revie... | [
{
"path": "src/time/zoneinfo.go",
"patch": "@@ -634,10 +634,10 @@ var zoneinfoOnce sync.Once\n // LoadLocation looks for the IANA Time Zone database in the following\n // locations in order:\n //\n-// - the directory or uncompressed zip file named by the ZONEINFO environment variable\n-// - on a Unix system... | 2022-08-12T16:20:40 |
vercel/next.js | 656202fe0cf1ecf45b7c19b66f517756a33944f1 | 1038fd53efb0601c48645638d0a5adf0f7b6b8ae | turbopack: Implement Server Actions from Client Components (#57391)
### What?
This completes Turbopack's Server Actions implementation!
It also cleans up several things:
- Removes `server_actions` configuration, it's enabled by default now.
- Fixes the transform that runs in the SSR layer (it actually needs to... | [
{
"path": "packages/next-swc/crates/next-api/src/app.rs",
"patch": "@@ -9,6 +9,7 @@ use next_core::{\n get_edge_resolve_options_context,\n mode::NextMode,\n next_app::{\n+ app_client_references_chunks::get_app_server_reference_modules,\n get_app_client_references_chunks, get_app_c... | 2023-10-25T06:16:59 |
nodejs/node | 138eb32be1a912f1b8a551f657880f19c12f864c | 9c00af07160d8e3aef84e319ca7dd01667b96cd8 | net: wait for shutdown to complete before closing
When not allowing half open, handle.close would be
invoked before shutdown has been called and
completed causing a potential data race.
Fixes: https://github.com/nodejs/node/issues/32486#issuecomment-604072559
PR-URL: https://github.com/nodejs/node/pull/32491
Reviewe... | [
{
"path": "lib/internal/stream_base_commons.js",
"patch": "@@ -213,6 +213,16 @@ function onStreamRead(arrayBuffer) {\n if (stream[kMaybeDestroy])\n stream.on('end', stream[kMaybeDestroy]);\n \n+ // TODO(ronag): Without this `readStop`, `onStreamRead`\n+ // will be called once more (i.e. afte... | 2020-03-25T21:03:42 |
electron/electron | 864a23f72bdbd48d5d65397f5ffcb8d6771c6a2d | 86215d4300aa04bab4412b6e4dbc58023481c31e | Fix print() not working | [
{
"path": "chromium_src/chrome/browser/printing/print_view_manager_base.cc",
"patch": "@@ -194,7 +194,9 @@ void PrintViewManagerBase::OnShowInvalidPrinterSettingsError() {\n LOG(ERROR) << \"Invalid printer settings\";\n }\n \n-bool PrintViewManagerBase::OnMessageReceived(const IPC::Message& message) {\n+b... | 2017-02-02T08:13:47 |
golang/go | 741ab7e819538ef84ce7a2e560730c6212e95161 | e64c87157d1e8fbc512a670b8c0af8abc3afa7c1 | cmd/go: avoid passing testing.T to isCaseSensitive and goVersion
The previous implementation of isCaseSensitive called t.Fatalf in the
wrong place, causing tests after the first to proceed past an error
determining case-sensitivity. That could lead to confusing errors.
(Moreover, I would like to try to disentangle th... | [
{
"path": "src/cmd/go/script_test.go",
"patch": "@@ -101,7 +101,7 @@ func TestScript(t *testing.T) {\n \n // A testScript holds execution state for a single test script.\n type testScript struct {\n-\tt *testing.T\n+\tt testing.TB\n \tctx context.Context\n \tcancel context.C... | 2022-07-19T19:55:01 |
vercel/next.js | 59ebfbea9ee832f01c0a0d10a956b92814124fc7 | 81582629608a431521c55732c3690cdedb80c1d7 | Fix request body hanging when middleware is preset (#57381)
Instead of `Readable.toWeb` we're gonna manually convert the Node.js stream to a Web stream. `toWeb` is either having a bug, or not compatible with middleware-cloned `PassThrough` streams.
Closes #56286. The case should be already covered with existing tests... | [
{
"path": "packages/next/src/server/app-render/action-handler.ts",
"patch": "@@ -37,15 +37,6 @@ import {\n } from '../../lib/constants'\n import type { AppRenderContext, GenerateFlight } from './app-render'\n \n-function nodeToWebReadableStream(nodeReadable: import('stream').Readable) {\n- if (process.env.... | 2023-10-25T02:44:10 |
electron/electron | e0c021bfef7292524964b4ab61db5db65c49f6aa | 1ed8743da8f9d0d5241f6487557b34181a41eaa6 | Fix compilation waring on Mac | [
{
"path": "atom/utility/atom_content_utility_client.h",
"patch": "@@ -21,8 +21,10 @@ class AtomContentUtilityClient : public content::ContentUtilityClient {\n ~AtomContentUtilityClient() override;\n \n private:\n+#if defined(OS_WIN)\n typedef ScopedVector<UtilityMessageHandler> Handlers;\n Handlers h... | 2017-02-01T04:56:34 |
facebook/react | 1c90172cd0e0760b2bb46454768c169dc7a390be | f871147b4d7dc241d4d9a9fa7b7a931ba6fb9a29 | IE8 style fixes
- Add html5shiv so that HTML5 elements like header, footer, etc can be styled
- Remove a couple uses of :first-child/:last-child which IE8 doesn't support | [
{
"path": "docs/_css/react.scss",
"patch": "@@ -290,7 +290,7 @@ h1, h2, h3, h4, h5, h6 {\n \n .marketing-col {\n float: left;\n- margin-right: 40px;\n+ margin-left: 40px;\n width: $columnWidth;\n \n h3 {\n@@ -304,8 +304,8 @@ h1, h2, h3, h4, h5, h6 {\n }\n }\n \n-.marketing-col:last-child {\n- mar... | 2013-12-30T23:21:29 |
golang/go | e64c87157d1e8fbc512a670b8c0af8abc3afa7c1 | d8f90ce0f8119bf593efb6fb91825de5b61fcda7 | cmd/go: run tests when cmd/go is cross-compiled
When the GOOS or GOARCH of the cmd/go test binary does not match the
GOOS or GOARCH of the installed 'go' binary itself, the test currently
attempts to trick 'go test' into thinking that there were no test
functions to run.
That makes it very difficult to discover how t... | [
{
"path": "src/cmd/go/go_test.go",
"patch": "@@ -55,6 +55,11 @@ var (\n \tfuzzInstrumented = false // whether fuzzing uses instrumentation\n )\n \n+var (\n+\tgoHostOS, goHostArch string\n+\tcgoEnabled string // raw value from 'go env CGO_ENABLED'\n+)\n+\n var exeSuffix string = func() string {\n \... | 2021-10-15T15:35:25 |
vercel/next.js | a3e771a338949526827fb9b65145cfa544fb77c0 | 8b083c30ddaa55d2efcea01479836ca430bc3235 | test(turbopack): update test manifest (#57366)
### What
Enabling test from https://github.com/vercel/next.js/pull/57300. There may be some other test cases passing by fix, but this is the known direct offending test can be enabled.
Closes WEB-1847 | [
{
"path": "test/turbopack-tests-manifest.json",
"patch": "@@ -3078,10 +3078,10 @@\n \"runtimeError\": false\n },\n \"test/e2e/app-dir/emotion-js/index.test.ts\": {\n- \"passed\": [],\n- \"failed\": [\n+ \"passed\": [\n \"app dir - emotion-js should render emotion-js css with compiler.... | 2023-10-24T21:55:38 |
electron/electron | d483352f789a70983fe8f5b62d68cae1796fdb38 | 3024d0563fefdefff8b6d64303426e28f31a6504 | Fix PrintToPDF not receiving results | [
{
"path": "chromium_src/chrome/browser/printing/print_preview_message_handler.cc",
"patch": "@@ -98,7 +98,8 @@ void PrintPreviewMessageHandler::OnPrintPreviewFailed(int document_cookie,\n }\n \n bool PrintPreviewMessageHandler::OnMessageReceived(\n- const IPC::Message& message) {\n+ const IPC::Message... | 2017-01-31T08:59:39 |
facebook/react | 92b440b1d7adee824727a74e3f951e8b0762c738 | eab2ededdf9887193ee03e4ad89600d194b89eed | Make React website work in IE8
Fixes #406.
Empty conditional comment is for http://www.phpied.com/conditional-comments-block-downloads/. | [
{
"path": "docs/_js/es5-sham.js",
"patch": "@@ -0,0 +1,446 @@\n+// Copyright 2009-2012 by contributors, MIT License\n+// vim: ts=4 sts=4 sw=4 expandtab\n+\n+//Add semicolon to prevent IIFE from being passed as argument to concated code.\n+;\n+// Module systems magic dance\n+(function (definition) {\n+ //... | 2013-12-30T22:12:04 |
golang/go | a2c2f06cad8aa722120cb73e965d168bfcb4d977 | b15c399a36a38509ae56dd69670974566f7b0d52 | internal/poll: remove detection of buggy splice on old Linux versions
The splice syscall is buggy prior to Linux 2.6.29. CL 113999 added a
workaround to detect buggy versions and disable use of splice for these.
As of Go 1.18 the minumum Linux version is 2.6.32. Thus, a non-buggy
implementation of the splice syscall c... | [
{
"path": "src/internal/poll/splice_linux.go",
"patch": "@@ -5,10 +5,8 @@\n package poll\n \n import (\n-\t\"internal/syscall/unix\"\n \t\"runtime\"\n \t\"sync\"\n-\t\"sync/atomic\"\n \t\"syscall\"\n \t\"unsafe\"\n )\n@@ -207,40 +205,13 @@ func putPipe(p *splicePipe) {\n \tsplicePipePool.Put(p)\n }\n \n-var... | 2022-08-17T20:21:23 |
vercel/next.js | 8b083c30ddaa55d2efcea01479836ca430bc3235 | d6a933edbfcea0e718fc9083efe18cf0dfdfa557 | fix(next-core): apply correct jsx transform context for ssr (#57300)
### What
Running `test/e2e/app-dir/emotion-js/index.test.ts` fails with turbopack as emotion skips necessary runtime transforms for the styles. Digging further, it was due to not applying correct importSource for the transform (`@emotion/react`) aga... | [
{
"path": "packages/next-swc/crates/next-core/src/next_server/context.rs",
"patch": "@@ -424,6 +424,16 @@ pub async fn get_server_module_options_context(\n ..module_options_context.clone()\n };\n \n+ // Get the jsx transform options for the `client` side.\n+ ... | 2023-10-24T21:38:20 |
electron/electron | 75627ba6ad35639a658074bdfd29fbbc4942edfd | 85961a0dd9b18049fff003fa05dad37174f331ce | Fix sync printing not working | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -1137,7 +1137,9 @@ void WebContents::Print(mate::Arguments* args) {\n }\n \n printing::PrintViewManagerBasic::FromWebContents(web_contents())->\n- PrintNow(settings.silent, settings.print_background);\n+ PrintNow(web_contents(... | 2017-01-31T05:22:18 |
rust-lang/rust | ab0def2739744ae31d5738263acd0cc0e00e1a16 | decdb950bf016391145b582cd0756d3e67481ad6 | symcheck: Ignore symbols in `.debug_gdb_scripts`
Since [1], our object files may now contain a GDB script section. These
symbols wind up with multiple instances in the archive but are weak, so
we can safely ignore them in our duplicates check.
This resolves the current CI failures.
[1]: https://github.com/rust-lang/... | [
{
"path": "library/compiler-builtins/crates/symbol-check/src/main.rs",
"patch": "@@ -215,6 +215,11 @@ fn verify_no_duplicates(archive: &Archive) {\n return;\n }\n \n+ // GDB pretty printing symbols may show up more than once but are weak.\n+ if sym.section == \".debug_gdb_s... | 2025-08-07T08:27:16 |
golang/go | b15c399a36a38509ae56dd69670974566f7b0d52 | 0816d3871376f8fe029db1a6d00b1f6882106043 | os: only add file descriptors which are set to non-blocking mode to the netpoller
Either ones where kind == kindNonBlock or those we've successfully called syscall.SetNonblock() on.
Restore blocking behavior if we detect an error registering with the netpoller and our flow was
successful in setting the inital syscall.... | [
{
"path": "src/os/file_unix.go",
"patch": "@@ -168,18 +168,28 @@ func newFile(fd uintptr, name string, kind newFileKind) *File {\n \t\t}\n \t}\n \n-\tif err := f.pfd.Init(\"file\", pollable); err != nil {\n-\t\t// An error here indicates a failure to register\n-\t\t// with the netpoll system. That can happe... | 2022-07-30T17:41:58 |
nodejs/node | 60c4c2b6c557efbb2f8f3a3de147baf987931d41 | 75ee5b2622956da74541bf3c6388cae5b5d766cf | src: runtime deprecate process.umask()
This commit runtime deprecates calling process.umask() with
no arguments.
PR-URL: https://github.com/nodejs/node/pull/32499
Fixes: https://github.com/nodejs/node/issues/32321
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewe... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -2635,16 +2635,16 @@ modules is unsupported.\n It is deprecated in favor of [`require.main`][], because it serves the same\n purpose and is only available on CommonJS environment.\n \n-<a id=\"DEP0XXX\"></a>\n-### DEP0XXX: `process.umask()` with no arguments... | 2020-03-26T04:55:39 |
vercel/next.js | 1d185c07078bf81f95d7bc8174c1c32d990d7cac | 77c03136e981afac26a423e7141c0c251c580d3e | perf: avoid using raw-body for server actions (#57358)
This PR removes the usage of `raw-body` for App Router pages by parsing
the body for an action ourselves whilst assuming that it is encoded with
UTF-8. This is already what we do for the Edge Runtime version of Server
Actions and will only break if your page ov... | [
{
"path": "packages/next/src/server/app-render/action-handler.ts",
"patch": "@@ -6,7 +6,6 @@ import type {\n } from 'http'\n import type { WebNextRequest } from '../base-http/web'\n import type { SizeLimit } from '../../../types'\n-import type { ApiError } from '../api-utils'\n \n import {\n ACTION,\n@@ -... | 2023-10-24T21:15:04 |
electron/electron | 85961a0dd9b18049fff003fa05dad37174f331ce | c69626336d8d318519c122e3b73cef395aff6c26 | Update libchromiumcontent to fix duplicate main functions | [
{
"path": "script/lib/config.py",
"patch": "@@ -9,7 +9,7 @@\n BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \\\n 'https://s3.amazonaws.com/github-janky-artifacts/libchromiumcontent'\n LIBCHROMIUMCONTENT_COMMIT = os.getenv('LIBCHROMIUMCONTENT_COMMIT') or \\\n- '628ae34823d133842faf8f45c2b2741e4... | 2017-01-30T06:34:58 |
rust-lang/rust | decdb950bf016391145b582cd0756d3e67481ad6 | fbc700f92bdb008a9fd76e2a02230cea6c23d2c4 | symcheck: Store the section name in `SymInfo` if available
Currently `SymInfo` stores a `Section`, which is just an index:
SymInfo {
section: Section(
SectionIndex(
539,
),
),
...
},
Look up and store the section name instead if possible, with a... | [
{
"path": "library/compiler-builtins/crates/symbol-check/src/main.rs",
"patch": "@@ -9,7 +9,7 @@ use std::process::{Command, Stdio};\n \n use object::read::archive::{ArchiveFile, ArchiveMember};\n use object::{\n- File as ObjFile, Object, ObjectSymbol, Symbol, SymbolKind, SymbolScope, SymbolSection,\n+ ... | 2025-08-07T06:05:01 |
golang/go | 0816d3871376f8fe029db1a6d00b1f6882106043 | 5b1658d6912759e91e404e8c728d08439a15fea9 | debug/buildinfo: implement for Plan 9 a.out
Plan 9 a.out was not implemented for debug/buildinfo, which
was causing test failures on Plan 9. This adds an implementation,
and causes the tests to pass.
Fixes #53949
Change-Id: I90a307ef9babf8cf381f8746d731cac2206b234a
Reviewed-on: https://go-review.googlesource.com/c/g... | [
{
"path": "src/debug/buildinfo/buildinfo.go",
"patch": "@@ -15,6 +15,7 @@ import (\n \t\"debug/elf\"\n \t\"debug/macho\"\n \t\"debug/pe\"\n+\t\"debug/plan9obj\"\n \t\"encoding/binary\"\n \t\"errors\"\n \t\"fmt\"\n@@ -130,6 +131,12 @@ func readRawBuildInfo(r io.ReaderAt) (vers, mod string, err error) {\n \t\... | 2022-07-17T16:02:30 |
nodejs/node | 75ee5b2622956da74541bf3c6388cae5b5d766cf | 25a1f04cdc2c779c2b6d75e903e4bdc351cda856 | doc: deprecate process.umask() with no arguments
This commit introduces a documentation deprecation for calling
process.umask() with no arguments.
PR-URL: https://github.com/nodejs/node/pull/32499
Fixes: https://github.com/nodejs/node/issues/32321
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Anna Henn... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -2635,6 +2635,22 @@ modules is unsupported.\n It is deprecated in favor of [`require.main`][], because it serves the same\n purpose and is only available on CommonJS environment.\n \n+<a id=\"DEP0XXX\"></a>\n+### DEP0XXX: `process.umask()` with no arguments\... | 2020-03-26T05:07:31 |
vercel/next.js | 77c03136e981afac26a423e7141c0c251c580d3e | 8461071d835943ba5c80f3b2eebd09f2177257ce | Split jsconfig-paths and jsconfig-paths-wildcard tests (#57360)
A large part of these tests are passing in Turbopack, only the wildcard
one causes an infinite resolving issue so I've split them out.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as... | [
{
"path": "test/integration/jsconfig-paths-wildcard/.gitignore",
"patch": "@@ -0,0 +1 @@\n+!node_modules\n\\ No newline at end of file",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "test/integration/jsconfig-paths-wildcard/jsconfig.json",
"patch": "@@ -0,0 +1,8... | 2023-10-24T20:58:15 |
facebook/react | 17f14d523becb1823ce471605ad5eea3080320d8 | f03d6e212a8ec18c56d26b431e2005ec401efccb | console.log -> console.error | [
{
"path": "docs/docs/tutorial.md",
"patch": "@@ -388,7 +388,7 @@ var CommentBox = React.createClass({\n this.setState({data: data});\n }.bind(this),\n error: function(xhr, status, err) {\n- console.log(\"comments.json\", status, err.toString());\n+ console.error(\"comments.... | 2013-12-29T06:12:45 |
electron/electron | 82d796ded460494285d40dcc0faa40c8bc6d1613 | 41f356a94dd8569d12d6abcd8a429faddbebcac6 | Fix missing of symbols issue on Release build | [
{
"path": "atom/node/osfhandle.cc",
"patch": "@@ -6,6 +6,9 @@\n \n #include <io.h>\n \n+#include \"v8-profiler.h\"\n+#include \"v8-inspector.h\"\n+\n namespace node {\n \n int open_osfhandle(intptr_t osfhandle, int flags) {\n@@ -16,4 +19,12 @@ int close(int fd) {\n return _close(fd);\n }\n \n+void Referen... | 2017-01-27T09:51:20 |
golang/go | 9c2b481b57aea1ee69b2131c09af1e0dc0ea84d8 | 876d477b0e3b27ae136a7e8dfceaf0ec72bddea6 | run: set GOENV=off when running 'go tool dist env'
'go tool' sets environment variables, including the GOAMD64 value
from the user's go.env file.
'go tool dist test' then rebuilds and reinstalls the toolchain and
standard library based on those variables. It should not; instead, it
should test exactly the configurati... | [
{
"path": "src/run.bash",
"patch": "@@ -21,6 +21,7 @@ if [ ! -f ../bin/go ]; then\n \texit 1\n fi\n \n+export GOENV=off\n eval $(../bin/go tool dist env)\n export GOROOT # The api test requires GOROOT to be set, so set it to match ../bin/go.\n ",
"additions": 1,
"deletions": 0,
"language": "Un... | 2022-07-28T19:29:38 |
facebook/react | f03d6e212a8ec18c56d26b431e2005ec401efccb | 918c5134e1e26929b300df04db5176dc66ee0b35 | Use explicit $.ajax dataType and add error callback | [
{
"path": "docs/docs/tutorial.md",
"patch": "@@ -383,8 +383,12 @@ var CommentBox = React.createClass({\n getInitialState: function() {\n $.ajax({\n url: 'comments.json',\n+ dataType: 'json',\n success: function(data) {\n this.setState({data: data});\n+ }.bind(this),\n+ ... | 2013-12-29T05:29:34 |
nodejs/node | 25a1f04cdc2c779c2b6d75e903e4bdc351cda856 | 8905be2ceea9abead85a5018c09645a3650d7495 | tools: only fetch previous versions when necessary
Refactor the logic for working out the previous versions of Node.js for
the API documentation so that the parsing (including the potential https
get) happens at most once per build (as opposed to the current once per
generated API doc).
Signed-off-by: Richard Lau <ri... | [
{
"path": "Makefile",
"patch": "@@ -784,15 +784,22 @@ out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets\n run-npm-ci = $(PWD)/$(NPM) ci\n \n LINK_DATA = out/doc/apilinks.json\n+VERSIONS_DATA = out/doc/previous-versions.json\n gen-api = tools/doc/generate.js --node-version=$(FULLVERSION) \\\n-\t\t--a... | 2020-03-27T14:04:40 |
vercel/next.js | cad120013168700f231814b082435226e2516990 | 7aef93dd14d5474bad8afd4be02fda13a44ad953 | fix(next_core): align remove trailing slash (#57344)
### What
minor fix to match behavior to https://github.com/vercel/next.js/blob/ae10b5c82b29b3b077378f05f75eb1b215b327f0/packages/next/src/shared/lib/router/utils/remove-trailing-slash.ts#L2C4-L9
as we're seeing a panic when route is /
```
Panic: PanicInfo { paylo... | [
{
"path": "packages/next-swc/crates/next-core/src/next_edge/route_regex.rs",
"patch": "@@ -68,8 +68,17 @@ fn escape_string_regexp(segment: &str) -> String {\n regex::escape(segment)\n }\n \n+/// Removes the trailing slash for a given route or page path. Preserves the\n+/// root page. Examples:\n+/// - ... | 2023-10-24T19:56:55 |
electron/electron | a98e69a80dd71275353081729209bd1b56c7fab4 | be29ea4dada68db1b4f29cf41bfa9ad18c41a3ed | Work around the compilation error of v8_value_converter.cc
We should apply this patch in future:
https://chromium.googlesource.com/chromium/src/+/0232f57400b65505a27db30b1de5e918bf2481b1%5E%21/ | [
{
"path": "atom/common/native_mate_converters/v8_value_converter.cc",
"patch": "@@ -361,7 +361,7 @@ base::Value* V8ValueConverter::FromV8Array(\n \n base::Value* child = FromV8ValueImpl(state, child_v8, isolate);\n if (child)\n- result->Append(child);\n+ result->Append(std::unique_ptr<base... | 2017-01-26T11:07:59 |
rust-lang/rust | a5af84c3992af7ea4213c432f65ae2bd42092a11 | 4cb43f4c4128ed1f58d10ade425656caa2a05fa7 | Fix "comparision" typo in new lint template | [
{
"path": ".github/ISSUE_TEMPLATE/new_lint.yml",
"patch": "@@ -51,7 +51,7 @@ body:\n - type: textarea\n id: comparison\n attributes:\n- label: Comparision with existing lints\n+ label: Comparison with existing lints\n description: |\n What makes this lint different from any... | 2025-08-07T08:09:15 |
golang/go | 57d05512feebed4fbe1e7a19305c8722a4ac627f | 90466e1ddf0e4305bc56f6eac61a690704e6fab8 | crypto/subtle: add XORBytes
Export cipher.xorBytes as subtle.XORBytes, for proposal #53021,
to provide fast XOR to cryptography libraries outside crypto/cipher.
Along with the move, implement the alignment check TODO
in xor_generic.go, so that systems with neither unaligned
accesses nor custom assembly can still XOR ... | [
{
"path": "api/next/53021.txt",
"patch": "@@ -0,0 +1 @@\n+pkg crypto/subtle, func XORBytes([]uint8, []uint8, []uint8) int #53021",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "src/crypto/cipher/cbc.go",
"patch": "@@ -11,7 +11,10 @@\n \n package cipher\n \n-i... | 2022-08-05T17:34:29 |
nodejs/node | 867ff41d87e292997ff2ceb8d77e715145aed7b7 | e158218fb23ae7cea7aa5d27ee2092a4b6d96184 | src: handle report options on fatalerror
Follow on to https://github.com/nodejs/node/pull/32207, 3 other options
are also not respected under situations that the isolate is not
available.
PR-URL: https://github.com/nodejs/node/pull/32497
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Richard Lau <ri... | [
{
"path": "src/node_options.cc",
"patch": "@@ -582,10 +582,6 @@ PerIsolateOptionsParser::PerIsolateOptionsParser(\n \"generate diagnostic report on uncaught exceptions\",\n &PerIsolateOptions::report_uncaught_exception,\n kAllowedInEnvironment);\n- AddOption(\"--report-c... | 2020-03-25T19:37:39 |
vercel/next.js | 8734a03ff54b2ab40baf3a6e857ac87623a8452e | fdd8bd95e08eb5218ba84da8f6ff91ea6eef5179 | fix metadata url resolving with path posix (#57343)
x-ref: [https://dev.azure.com/nextjs/next.js/_build/results?buildId=71881&view=logs&jobId=8[…]-584d-6f5c-57bad8880974&t=7ae70e63-3625-50f4-6764-5b3e72b4bd7a](https://dev.azure.com/nextjs/next.js/_build/results?buildId=71881&view=logs&jobId=8af7cf9c-43a1-584d-6f5c-57b... | [
{
"path": "packages/next/src/lib/metadata/resolvers/resolve-url.ts",
"patch": "@@ -74,7 +74,7 @@ function resolveUrl(\n // Resolve with `pathname` if `url` is a relative path.\n function resolveRelativeUrl(url: string | URL, pathname: string): string | URL {\n if (typeof url === 'string' && url.startsWith... | 2023-10-24T17:16:25 |
electron/electron | 820c0827c0695bfa87614fb071a884b4b7257055 | 55d4d44f02856f3f46b1eae2f719ead8b5567dac | Fix cpplint warnings | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -68,8 +68,8 @@\n #include \"native_mate/dictionary.h\"\n #include \"native_mate/object_template_builder.h\"\n #include \"net/url_request/url_request_context.h\"\n-#include \"third_party/WebKit/public/web/WebFindOptions.h\"\n #include \"thir... | 2017-01-26T07:21:26 |
nodejs/node | 6ade42bb3c9d825d75fa9ef4300021a0b5b6ab08 | c37d4ccee81084662dfb9311aa09a8d659b4f09e | doc: stream.end(cb) cb can be invoked with error
Update docs that the optional callback passed to
`writable.end` can be invoked in case of an error as well.
PR-URL: https://github.com/nodejs/node/pull/32238
Fixes: https://github.com/nodejs/node/issues/31220
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By:... | [
{
"path": "doc/api/stream.md",
"patch": "@@ -405,6 +405,9 @@ Is `true` after [`writable.destroy()`][writable-destroy] has been called.\n <!-- YAML\n added: v0.9.4\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/29747\n+ description: The `callback` is invoked if 'fini... | 2020-03-12T22:01:10 |
vercel/next.js | fdd8bd95e08eb5218ba84da8f6ff91ea6eef5179 | ae10b5c82b29b3b077378f05f75eb1b215b327f0 | fix async-modules test (#57320)
Doesn't seem like we need a `.babelrc` here and it's causing turbopack test failures | [
{
"path": "test/integration/async-modules/.babelrc",
"patch": "@@ -1,3 +0,0 @@\n-{\n- \"presets\": [\"next/babel\"]\n-}",
"additions": 0,
"deletions": 3,
"language": "Unknown"
}
] | 2023-10-24T17:03:23 |
electron/electron | 55d4d44f02856f3f46b1eae2f719ead8b5567dac | 6165d363512dbe217709bf7c5b788db2d7de62d0 | Fix Debug building on Windows | [
{
"path": "atom/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -20,6 +20,7 @@\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/context_factory.h\"\n #include \"content/public/browser/render_widget_host_view_frame_subscriber.h\"\n+#include \"ui/compositor/... | 2017-01-26T07:10:28 |
rust-lang/rust | 8074e672f05b134bea95783ceeac83bceec3956a | 0f353363965ebf05e0757f7679c800b39c51a07e | Reimplement `print_region` in `type_name.rs`.
Broken by #144776; this is reachable after all.
Fixes #144994.
The commit also adds a lot more cases to the `type-name-basic.rs`,
because it's currently very anaemic. This includes some cases where
region omission does very badly; these are marked with FIXME. | [
{
"path": "compiler/rustc_const_eval/src/util/type_name.rs",
"patch": "@@ -18,7 +18,9 @@ impl<'tcx> Printer<'tcx> for AbsolutePathPrinter<'tcx> {\n }\n \n fn print_region(&mut self, _region: ty::Region<'_>) -> Result<(), PrintError> {\n- unreachable!(); // because `<Self As PrettyPrinter>::sh... | 2025-08-07T02:04:58 |
nodejs/node | c37d4ccee81084662dfb9311aa09a8d659b4f09e | 2d8812984f000209aeda52abbbdc482f4a458eea | crypto: clear openssl error stack after en/decrypt
The publicEncrypt/privateDecrypt/etc. family of functions didn't clear
OpenSSL's error stack on early return.
Notably, trying to use an encrypted key with the wrong passphrase left
an error on the stack that made subsequent encrypt or decrypt operations
fail, even wi... | [
{
"path": "src/node_crypto.cc",
"patch": "@@ -5026,6 +5026,7 @@ template <PublicKeyCipher::Operation operation,\n PublicKeyCipher::EVP_PKEY_cipher_init_t EVP_PKEY_cipher_init,\n PublicKeyCipher::EVP_PKEY_cipher_t EVP_PKEY_cipher>\n void PublicKeyCipher::Cipher(const FunctionCallbackInfo<... | 2020-03-13T09:34:59 |
vercel/next.js | ae10b5c82b29b3b077378f05f75eb1b215b327f0 | 63aa0fe8ac3e647e43042dc6b8f35f6e768a7429 | Fix app ISR error handling (#57332)
This ensures when an error occurs during a revalidate in app router that
properly throw the error fully and don't store the error page in the
cache which matches the expected behavior for full route ISR as errors
are not meant to update the cache so that the last successful cache... | [
{
"path": "packages/next/src/client/components/error-boundary.tsx",
"patch": "@@ -43,6 +43,24 @@ interface ErrorBoundaryHandlerState {\n previousPathname: string\n }\n \n+// if we are revalidating we want to re-throw the error so the\n+// function crashes so we can maintain our previous cache\n+// instead... | 2023-10-24T16:38:30 |
electron/electron | 09fcb7fb271acd71962135bb0c9126fdefe1a0f1 | c72438f09f7d76e26028feeefbb4b9305835ad68 | Fix crash when using webview | [
{
"path": "atom/browser/web_view_guest_delegate.cc",
"patch": "@@ -151,4 +151,16 @@ gfx::Size WebViewGuestDelegate::GetDefaultSize() const {\n }\n }\n \n+bool WebViewGuestDelegate::CanBeEmbeddedInsideCrossProcessFrames() {\n+ return true;\n+}\n+\n+content::RenderWidgetHost* WebViewGuestDelegate::GetOwner... | 2017-01-25T01:44:58 |
golang/go | edfeea01be331b8737697d4d74737d7888d7dd6f | 2a0327b8fd2771ca6e8caf8f17307606046270fe | net/http: return ErrNoCookie from Request.Cookie when name is ""
Request.Cookie(name string) will return the first cookie
when cookie name is "". Since readCookies in
file net/http/cookie.go at line 247 return all cookies
when second parameter is a empty string.
To fix it, Return ErrNoCookie from Request.Cookie(""),
... | [
{
"path": "src/net/http/request.go",
"patch": "@@ -416,6 +416,9 @@ var ErrNoCookie = errors.New(\"http: named cookie not present\")\n // If multiple cookies match the given name, only one cookie will\n // be returned.\n func (r *Request) Cookie(name string) (*Cookie, error) {\n+\tif name == \"\" {\n+\t\tret... | 2022-08-17T01:51:01 |
nodejs/node | defbc2ed823e77fdbfaa3536e9f9fa6549cebb37 | fb254d2a838b8b5a73b29b0a214ac3945bb8160e | fs: fix fs.read when passing null value
PR-URL: https://github.com/nodejs/node/pull/32479
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com> | [
{
"path": "lib/fs.js",
"patch": "@@ -484,10 +484,12 @@ function read(fd, buffer, offset, length, position, callback) {\n callback = offset;\n }\n \n- buffer = options.buffer || Buffer.alloc(16384);\n- offset = options.offset || 0;\n- length = options.length || buffer.length;\n- positio... | 2020-03-25T08:36:35 |
electron/electron | 0a7c51b9aa33306114733536eef4ec9c2f63a5d7 | fa4b8cff45fe330591ff1f2e7236d362b62f6b03 | Fix linking on Mac | [
{
"path": "script/lib/config.py",
"patch": "@@ -9,7 +9,7 @@\n BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \\\n 'https://s3.amazonaws.com/github-janky-artifacts/libchromiumcontent'\n LIBCHROMIUMCONTENT_COMMIT = os.getenv('LIBCHROMIUMCONTENT_COMMIT') or \\\n- '63227c0c9299e01809bcc705bd7346aec... | 2017-01-24T08:39:18 |
rust-lang/rust | 340e59001479ef3d85ed027c4af9bf2707e30557 | a1cfe86dda8efb2a6343c3117b558bfda5e8d129 | Print thread ID in panic message if thread name is unknown
`panic!` does not print any identifying information for threads that are
unnamed. However, in many cases, the thread ID can be determined.
This changes the panic message from something like this:
thread '<unnamed>' panicked at src/main.rs:3:5:
explic... | [
{
"path": "tests/rustfmt/main.rs",
"patch": "@@ -185,10 +185,11 @@ fn dont_emit_ICE() {\n \"tests/target/issue-6105.rs\",\n ];\n \n+ let panic_re = regex::Regex::new(\"thread.*panicked\").unwrap();\n for file in files {\n let args = [file];\n let (_stdout, stderr) = rustfm... | 2023-09-11T04:59:31 |
facebook/react | 5e6e332d677df00b2d97b7caabfe5789b50a28ca | f877c6224fbf217d639a0ef2d7abf28c4cfbafa4 | Allow changing transitionLeave from false to true
Fixes #724. | [
{
"path": "src/addons/transitions/ReactTransitionGroup.js",
"patch": "@@ -79,6 +79,15 @@ var ReactTransitionGroup = React.createClass({\n enter: this.props.transitionEnter,\n onDoneLeaving: this._handleDoneLeaving.bind(this, key)\n }, childMapping[key]);\n+ } else {\n+ ... | 2013-12-27T17:21:12 |
golang/go | 2a0327b8fd2771ca6e8caf8f17307606046270fe | b11b4b4de3e54372dfdf867003b544cadd189931 | net: reenable TestLookupLongTXT
This test was disabled for flakiness.
The underlying code has been rewritten.
Reenabling the test to see if it has been fixed.
Fixes #22857.
Change-Id: If488ee5f4692cdf4ed534b8f08b4a54b80a60943
Reviewed-on: https://go-review.googlesource.com/c/go/+/423454
TryBot-Result: Gopher Robot <... | [
{
"path": "src/net/lookup_test.go",
"patch": "@@ -416,7 +416,6 @@ func TestLookupGoogleHost(t *testing.T) {\n }\n \n func TestLookupLongTXT(t *testing.T) {\n-\ttestenv.SkipFlaky(t, 22857)\n \tmustHaveExternalNetwork(t)\n \n \tdefer dnsWaitGroup.Wait()",
"additions": 0,
"deletions": 1,
"language"... | 2022-08-12T17:49:13 |
vercel/next.js | 741a08bc2548c523b7af978b34bf0250c9714305 | 06b9fb7bb82191ecbaae36896a228afac6fdbca7 | fix: ensure generateStaticParams isn't required for PPR (#57333) | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -1604,6 +1604,9 @@ export default async function build(\n isPPR = workerResult.isPPR\n isSSG = true\n isStatic = true\n+\n+ appStaticPaths... | 2023-10-24T14:18:11 |
nodejs/node | fb254d2a838b8b5a73b29b0a214ac3945bb8160e | 4898c1d46c2e72bbfcbbfd32ea62f18e6e0d362e | test: fix a typo on test-fs-read-optional-params
PR-URL: https://github.com/nodejs/node/pull/32461
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Anna Henningsen <anna@... | [
{
"path": "test/parallel/test-fs-read-optional-params.js",
"patch": "@@ -27,7 +27,7 @@ fs.read(fd, common.mustCall((err, bytesRead, buffer) => {\n fs.read(fd, {\n buffer: bufferAsOption,\n offset: 0,\n- lenght: bufferAsOption.length,\n+ length: bufferAsOption.length,\n position: 0\n },\n com... | 2020-03-24T16:08:44 |
facebook/react | 77697f26e32e1625397e6cdcb0defe0a746b7230 | f877c6224fbf217d639a0ef2d7abf28c4cfbafa4 | Add invariant to check getInitialState return value. Fixes #397 | [
{
"path": "src/core/ReactCompositeComponent.js",
"patch": "@@ -686,6 +686,12 @@ var ReactCompositeComponentMixin = {\n }\n \n this.state = this.getInitialState ? this.getInitialState() : null;\n+ invariant(\n+ typeof this.state === 'object' && !Array.isArray(this.state),\n+ '%... | 2013-12-27T13:17:17 |
electron/electron | fa4b8cff45fe330591ff1f2e7236d362b62f6b03 | eb3b77f43be4883c0d8fee5d45a25398507bbc09 | Fix error due to search for openssl headers | [
{
"path": "chromium_src/chrome/browser/ssl/security_state_tab_helper.cc",
"patch": "@@ -18,7 +18,9 @@\n #endif\n #include \"components/prefs/pref_service.h\"\n #include \"components/security_state/content/content_utils.h\"\n+#if 0\n #include \"components/ssl_config/ssl_config_prefs.h\"\n+#endif\n #include \... | 2017-01-24T08:34:45 |
rust-lang/rust | 289fe36d373c5a13fa7f1b93f39ff88425ab2351 | 0c8b3870bd9ec60093b478b318858fdb220846b7 | Print thread ID in panic message if thread name is unknown
`panic!` does not print any identifying information for threads that are
unnamed. However, in many cases, the thread ID can be determined.
This changes the panic message from something like this:
thread '<unnamed>' panicked at src/main.rs:3:5:
explic... | [
{
"path": "library/std/src/panicking.rs",
"patch": "@@ -269,6 +269,7 @@ fn default_hook(info: &PanicHookInfo<'_>) {\n \n thread::with_current_name(|name| {\n let name = name.unwrap_or(\"<unnamed>\");\n+ let tid = thread::current_os_id();\n \n // Try to write the pa... | 2023-09-11T04:59:31 |
vercel/next.js | 5428e5a7a1d8ec5758aa852e0b8a1e04be261f4a | 2b16a745ae2845d183aa3faf812565048800eada | Fix trace ignores (#57331)
Fixes some of the ignores that were moved around in
https://github.com/vercel/next.js/pull/57280
x-ref:
https://github.com/vercel/vercel/actions/runs/6620930801/job/17989126942?pr=10756 | [
{
"path": "packages/next/src/build/collect-build-traces.ts",
"patch": "@@ -268,16 +268,16 @@ export async function collectBuildTraces({\n isStandalone ? null : '**/next/dist/compiled/jest-worker/**/*',\n '**/next/dist/compiled/webpack/(bundle4|bundle5).js',\n '**/node_modules/webpack... | 2023-10-24T07:43:34 |
facebook/react | 79b00591f162a9edaa761058ce40bbea0b2bbd08 | f877c6224fbf217d639a0ef2d7abf28c4cfbafa4 | Fix a typo in the working-with-the-browser docs | [
{
"path": "docs/docs/07-working-with-the-browser.md",
"patch": "@@ -135,7 +135,7 @@ Although React is pretty good at abstracting browser differences, some browsers\n \n #### onScroll event on IE8\n \n-On IE8 the `onScroll` event doesn't bubbles and IE8 doesn't have an API to define handlers to the capturing... | 2013-12-27T06:22:00 |
nodejs/node | b6459ec49048be8c5e52c30652ee00b63f11566b | a5e81e72b6d942b8229ebc653a57e9991f492955 | worker: runtime error on pthread creation
With large number of worker threads pthread
fails with hard assertion.
Instead of hard assertion throw a runtime error.
PR-URL: https://github.com/nodejs/node/pull/32344
Fixes: https://github.com/nodejs/node/issues/32319
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewe... | [
{
"path": "src/node_errors.h",
"patch": "@@ -58,6 +58,7 @@ void OnFatalError(const char* location, const char* message);\n V(ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER, TypeError) \\\n V(ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED, Error) \\\n V(ERR_VM_MODULE... | 2020-03-18T14:26:00 |
golang/go | ea6cb02ae54fcf89026a2178720396f1277dd105 | bd1bff4e7aa1e417aaa617a7f10b1cff88a6e243 | cmd/go: propagate match errors in 'go run'
Fixes #51604.
Change-Id: I3bc86652c62d2b329d9c2db5ea443d56cf17f8d1
Reviewed-on: https://go-review.googlesource.com/c/go/+/418094
Reviewed-by: Nooras Saba <saba@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
Run-TryBot: ... | [
{
"path": "src/cmd/go/internal/load/pkg.go",
"patch": "@@ -2915,7 +2915,7 @@ func mainPackagesOnly(pkgs []*Package, matches []*search.Match) []*Package {\n \n \tvar mains []*Package\n \tfor _, pkg := range pkgs {\n-\t\tif pkg.Name == \"main\" {\n+\t\tif pkg.Name == \"main\" || (pkg.Name == \"\" && pkg.Error... | 2022-07-18T16:09:47 |
electron/electron | 8a6fd685e36285cb9e968587c673df2665d4374f | 4a14b172559326e3eb4f36910ee078f30b7c1c9f | Interface of crashpad_client.StartHandler has changed
Refs:
https://chromium.googlesource.com/chromium/src/+/7b9234c4b2a7f4f4fa84c80ecb22d41c54899f6a%5E%21/ | [
{
"path": "atom/common/crash_reporter/crash_reporter_mac.mm",
"patch": "@@ -44,13 +44,12 @@\n framework_bundle_path.Append(\"Resources\").Append(\"crashpad_handler\");\n \n crashpad::CrashpadClient crashpad_client;\n- if (crashpad_client.StartHandler(handler_path, crashes_dir,\n- ... | 2017-01-24T07:57:55 |
rust-lang/rust | 0c8b3870bd9ec60093b478b318858fdb220846b7 | 7d82b83ed57d188ab3f2441a765a6419685a88a3 | Add normalization for thread IDs in panic messages
So we don't need to add normalization to every test that includes a
panic message, add a global normalization to compiletest. | [
{
"path": "src/tools/compiletest/src/runtest.rs",
"patch": "@@ -2567,6 +2567,11 @@ impl<'test> TestCx<'test> {\n })\n .into_owned();\n \n+ // Normalize thread IDs in panic messages\n+ normalized = static_regex!(r\"thread '(?P<name>.*?)' \\((rtid )?\\d+\\) panick... | 2025-06-13T20:31:34 |
vercel/next.js | c05a11924d03dd4c6cdd465a6da595a1d959ea4e | 02fad829338f0fce2611ec1133fa9dabe974253b | PPR Fetch Fix (#57327) | [
{
"path": "packages/next/src/client/components/maybe-postpone.ts",
"patch": "@@ -0,0 +1,22 @@\n+import type { StaticGenerationStore } from './static-generation-async-storage.external'\n+\n+export function maybePostpone(\n+ staticGenerationStore: StaticGenerationStore,\n+ reason: string\n+) {\n+ // If we ... | 2023-10-24T06:48:26 |
facebook/react | 556065937b91a08635799934bee12259cdb439bd | f877c6224fbf217d639a0ef2d7abf28c4cfbafa4 | Make controlled components and bubbling work in IE
Fixes #708.
Test Plan:
In IE9, tested a controlled text input with the event handler on a containing element, as in the fiddle linked in the original issue. Also tested a controlled radio button as the logic there differs within ReactDOMInput. In both cases, I was ab... | [
{
"path": "src/eventPlugins/ChangeEventPlugin.js",
"patch": "@@ -22,6 +22,7 @@ var EventConstants = require('EventConstants');\n var EventPluginHub = require('EventPluginHub');\n var EventPropagators = require('EventPropagators');\n var ExecutionEnvironment = require('ExecutionEnvironment');\n+var ReactUpda... | 2013-12-27T06:05:41 |
nodejs/node | a5e81e72b6d942b8229ebc653a57e9991f492955 | 4fc13b016a6f1933143c97dea55d0b0443423dce | lib: removed unused error code
PR-URL: https://github.com/nodejs/node/pull/32481
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/worker.js",
"patch": "@@ -25,8 +25,6 @@ const {\n ERR_WORKER_UNSUPPORTED_EXTENSION,\n ERR_WORKER_INVALID_EXEC_ARGV,\n ERR_INVALID_ARG_TYPE,\n- // eslint-disable-next-line no-unused-vars\n- ERR_WORKER_INIT_FAILED,\n ERR_INVALID_ARG_VALUE,\n } = errorCodes;\n const { getOptio... | 2020-03-25T12:56:40 |
golang/go | 2c46cc8b8997f4f5cdb7766e4e2bdf8e57f67c76 | c411886c753dc85c23d06953b9a2e20e4ec1731f | time: optimize GoString
Optimize Time.GoString by avoiding multiple calls to absDate.
name old time/op new time/op delta
GoString-8 313ns ± 2% 197ns ± 1% -37.08% (p=0.008 n=5+5)
name old alloc/op new alloc/op delta
GoString-8 80.0B ± 0% 80.0B ± 0% ~ (all equal)
... | [
{
"path": "src/time/format.go",
"patch": "@@ -540,26 +540,29 @@ func (t Time) String() string {\n // GoString implements fmt.GoStringer and formats t to be printed in Go source\n // code.\n func (t Time) GoString() string {\n-\tbuf := make([]byte, 0, 70)\n+\tabs := t.abs()\n+\tyear, month, day, _ := absDate... | 2022-08-13T16:30:33 |
electron/electron | c1df762656bf7e60e65e99d555b6dfd5af469556 | b83676f9e98c4fc679470a02ed74fe770e9b66c5 | Update crashpad to 556c4e4 | [
{
"path": "vendor/crashpad",
"patch": "@@ -1 +1 @@\n-Subproject commit 600292f69f0f935ada02a02876ed489d21402620\n+Subproject commit eeac857dfb5b255c899c8763d62654863b4c8890",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2017-01-23T05:13:10 |
facebook/react | 411f0bd7c36e7a77a9265681663c8ef5bfedbc8c | cc229eb74917e11cfd4195cc8af9cad4301ff8a6 | Fix npm react having wrong version dependency for envify | [
{
"path": "npm-react/package.json",
"patch": "@@ -28,7 +28,7 @@\n \"node\": \">=0.10.0\"\n },\n \"peerDependencies\": {\n- \"envify\": \"~0.2.0\"\n+ \"envify\": \"~1.0.1\"\n },\n \"browserify\": {\n \"transform\": [\"envify\"]",
"additions": 1,
"deletions": 1,
"language": "... | 2013-12-26T17:12:23 |
vercel/next.js | 8b01e2578e6cc396cb68e27c455fdd4449ecef05 | a929bf7c0485c2ca0fedc317c2e7d794cb34b659 | Fix nested unstable_cache revalidating (#57316)
This ensures when we call `revalidateTag` and there are nested `unstable_cache` entries we properly revalidate. | [
{
"path": "packages/next/src/server/web/spec-extension/unstable-cache.ts",
"patch": "@@ -82,6 +82,9 @@ export function unstable_cache<T extends Callback>(\n const cacheKey = await incrementalCache?.fetchCacheKey(joinedKey)\n const cacheEntry =\n cacheKey &&\n+ // when we a... | 2023-10-24T05:01:00 |
nodejs/node | 2bf02285a39550ef85bb5f3d7fe13655ff44dcf1 | bffc9324a115219a4d35301b2aad4c34ae5f9a64 | http: move free socket error handling to agent
The http client should not know anything about free sockets. Let
the agent handle its pool of sockets.
PR-URL: https://github.com/nodejs/node/pull/32003
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Matteo C... | [
{
"path": "lib/_http_agent.js",
"patch": "@@ -57,6 +57,13 @@ class ReusedHandle {\n }\n }\n \n+function freeSocketErrorListener(err) {\n+ const socket = this;\n+ debug('SOCKET ERROR on FREE socket:', err.message, err.stack);\n+ socket.destroy();\n+ socket.emit('agentRemove');\n+}\n+\n function Agent(o... | 2020-02-28T11:29:45 |
golang/go | c411886c753dc85c23d06953b9a2e20e4ec1731f | c04977fa76f43a6aee2ce73d5f6ba8e4b5ba77ea | all: use "noopt" build tag for checking optimization disabled
Fixes #49390
Change-Id: Ie5a5e097635c9fdcf4509455007283009a7d3021
Reviewed-on: https://go-review.googlesource.com/c/go/+/423256
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Cuong Manh Le... | [
{
"path": "src/cmd/dist/build.go",
"patch": "@@ -55,6 +55,7 @@ var (\n \n \trebuildall bool\n \tdefaultclang bool\n+\tnoOpt bool\n \n \tvflag int // verbosity\n )\n@@ -1325,6 +1326,7 @@ func cmdbootstrap() {\n \t}\n \n \tgogcflags = os.Getenv(\"GO_GCFLAGS\") // we were using $BOOT_GO_GCFLAGS until ... | 2022-08-16T11:51:57 |
electron/electron | b7b200c87472600697580b458cf729c2122577b6 | 1c6a07c68d8f4d6cd2ade518b0152d0231415705 | Fix typo in getLoginItemSettings doc | [
{
"path": "docs/api/app.md",
"patch": "@@ -766,7 +766,7 @@ Returns `Boolean` - Whether the current desktop environment is Unity launcher.\n * `args` String[] (optional) _Windows_ - The command-line arguments to compare\n against. Defaults to an empty array.\n \n-If you provided `path` and `argg` potio... | 2017-02-02T22:33:34 |
rust-lang/rust | 025fbe8f698a85865d0e9dba7e97ec6a82eac59b | 29cdc6a109ee98a382f974bf89d3971b4385399c | Add support for shortening `Instance` and use it
Replace ad-hoc type path shortening logic for recursive mono instantiation errors to use `tcx.short_string()` instead. | [
{
"path": "compiler/rustc_middle/messages.ftl",
"patch": "@@ -122,8 +122,6 @@ middle_strict_coherence_needs_negative_coherence =\n to use `strict_coherence` on this trait, the `with_negative_coherence` feature must be enabled\n .label = due to this attribute\n \n-middle_type_length_limit = reached t... | 2025-07-29T01:13:50 |
vercel/next.js | a929bf7c0485c2ca0fedc317c2e7d794cb34b659 | 96337342e4923c829601bec91ec163d65c3281be | update turbopack and add HMR test case (#57304)
### What?
adds a test case for HMR, which is fixed by the turbopack update
### Why?
### How?
### Turbopack Changes
* https://github.com/vercel/turbo/pull/6245
* https://github.com/vercel/turbo/pull/6212
* https://github.com/vercel/turbo/pull/6255
* https://github... | [
{
"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-231023.1#61d5adf61b08e68e5a76e7d776ba9d6f8694de94\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-10-24T04:38:05 |
nodejs/node | bffc9324a115219a4d35301b2aad4c34ae5f9a64 | 5e05f8ac09856f9dccccd173669646e927aff83d | test: harden the tick sampling logic
Under peculiar system load conditions, the profiler thread
does not get enough CPU slices to perform the sampling.
Improve the interaction between worker and parent thread
by performing a large disc read, which is a better blend of
CPU and I/O bound work, than earlier versions.
Thi... | [
{
"path": "test/sequential/test-worker-prof.js",
"patch": "@@ -11,6 +11,7 @@ const { spawnSync } = require('child_process');\n // Refs: https://github.com/nodejs/node/issues/24016\n \n if (process.argv[2] === 'child') {\n+ const fs = require('fs');\n let files = fs.readdirSync(tmpdir.path);\n const plo... | 2020-03-11T05:41:54 |
golang/go | c6be7103a5ab8cd45e08d822efa24da4fd88b9c5 | 848febdcec2caacde4b66f2ff1260865c7233422 | cmd/go: add go generate -skip flag
Following proposal discussion in #38687, add go generate -skip
to allow easier skipping of specific //go:generate directives.
Fixes #38687.
Change-Id: Ied5b4042965dd6a2b93c1c517045fccae2d95c3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/421440
Auto-Submit: Russ Cox <rsc@... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -594,14 +594,21 @@\n //\n // The generator is run in the package's source directory.\n //\n-// Go generate accepts one specific flag:\n+// Go generate accepts two specific flags:\n //\n //\t-run=\"\"\n //\t\tif non-empty, specifies a regular expression to sele... | 2022-08-05T19:44:15 |
electron/electron | 26d4a3b0ba23553c15527a48a7bff4c1d00cbddf | 02dfdf75a079bf485916ef2752f8c483e5f88639 | Fix method signature on macOS. | [
{
"path": "atom/browser/browser_mac.mm",
"patch": "@@ -152,7 +152,7 @@\n return prevent_default;\n }\n \n-Browser::LoginItemSettings Browser::GetLoginItemSettings() {\n+Browser::LoginItemSettings Browser::GetLoginItemSettings(mate::Arguments* args) {\n LoginItemSettings settings;\n settings.open_at_lo... | 2017-01-26T19:54:37 |
facebook/react | e35f4c29bb378d58c283630f54da590c020310e9 | ecf9f8ef6d1b075bb3cbbc6896b1b8f2766670d1 | fix params | [
{
"path": "src/core/ReactOwner.js",
"patch": "@@ -81,7 +81,7 @@ var ReactOwner = {\n 'usually means that you\\'re trying to add a ref to a component that ' +\n 'doesn\\'t have an owner (that is, was not created inside of another ' +\n 'component\\'s `render` method). Try rendering this com... | 2013-12-26T06:59:01 |
rust-lang/rust | 4281e05a209a15a4b2de63ea5a552fc59f8bd0f1 | f7ad4065fe41f8bcf74c4f6a7c2c1793e08e71f0 | Changes to the tests for the `#[should_panic]` port
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com> | [
{
"path": "tests/ui/attributes/check-builtin-attr-ice.rs",
"patch": "@@ -44,12 +44,10 @@\n struct Foo {\n #[should_panic::skip]\n //~^ ERROR failed to resolve\n- //~| ERROR `#[should_panic::skip]` only has an effect on functions\n pub field: u8,\n \n #[should_panic::a::b::c]\n //~^ ER... | 2025-07-11T16:37:00 |
vercel/next.js | ec4e32c764cba8b9e76ededed6fa54f3021ad838 | 003ec7a15b56accd86fa85931735dc089b727e06 | Fix no-store/revalidate 0 inside of unstable_cache (#57313)
This ensures we don't unexpectedly error when a fetch attempts to cache
inside of `unstable_cache`, this also ensures `only-on-store` doesn't
unexpectedly error when `revalidate: 0` is set. | [
{
"path": "packages/next/src/server/lib/patch-fetch.ts",
"patch": "@@ -311,7 +311,11 @@ export function patchFetch({\n }\n \n if (isOnlyNoStore) {\n- if (_cache === 'force-cache' || revalidate === 0) {\n+ if (\n+ _cache === 'force-cache' ||\n+ (typeof ... | 2023-10-24T03:52:56 |
golang/go | e1b62efaf33988a5153510898d37309cee78f26e | 0d8efa6e842169e61cbe343441092b6f7c9b886c | encoding/base64: optimize decodemap memory set
The existing implementation has an execution time higher in the benchmark than this one.
This is an optimized implementation using the copy() function and a constant 256 bytes string with the values to be copied.
```
name old time/op new time/op delta
New... | [
{
"path": "src/encoding/base32/base32.go",
"patch": "@@ -25,8 +25,25 @@ type Encoding struct {\n }\n \n const (\n-\tStdPadding rune = '=' // Standard padding character\n-\tNoPadding rune = -1 // No padding\n+\tStdPadding rune = '=' // Standard padding character\n+\tNoPadding rune = -1 ... | 2022-08-14T07:46:22 |
nodejs/node | 5e05f8ac09856f9dccccd173669646e927aff83d | 1bbd679adc291a9ae9b7dc7bbca863883cee9638 | win,build: set exit_code on configure failure
PR-URL: https://github.com/nodejs/node/pull/32205
Fixes: https://github.com/nodejs/node/issues/31573
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "vcbuild.bat",
"patch": "@@ -722,6 +722,7 @@ goto exit\n :create-msvs-files-failed\n echo Failed to create vc project files.\n del .used_configure_flags\n+set exit_code=1\n goto exit\n \n :help",
"additions": 1,
"deletions": 0,
"language": "Unknown"
}
] | 2020-03-09T17:07:28 |
rust-lang/rust | f7ad4065fe41f8bcf74c4f6a7c2c1793e08e71f0 | 8fb40f798a23adf608182ce5f4eb151fdc8e0da5 | Port `#[should_panic]` to the new attribute parsing infrastructure
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com> | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/test_attrs.rs",
"patch": "@@ -44,3 +44,55 @@ impl<S: Stage> SingleAttributeParser<S> for IgnoreParser {\n })\n }\n }\n+\n+pub(crate) struct ShouldPanicParser;\n+\n+impl<S: Stage> SingleAttributeParser<S> for ShouldPanicParser {\n+ const PA... | 2025-07-11T16:36:28 |
vercel/next.js | cb5d0757585f5546ee17158f714aa3292fd06068 | 4eaefbab66120d6c84f6e731d28265c3c25e1e1e | misc: fix bundling of experimental (#57311)
this removes the call to experimental static react when not using the experimental build | [
{
"path": "packages/next/src/server/app-render/static/static-renderer.ts",
"patch": "@@ -19,8 +19,10 @@ export interface Renderer {\n }\n \n class StaticRenderer implements Renderer {\n- private readonly prerender = require('react-dom/static.edge')\n- .prerender as typeof import('react-dom/static.edge')... | 2023-10-24T03:30:08 |
facebook/react | 2b0dc71e3d9a3396fd024c5f8d85c219c5b87aee | a6d8c00b1a415333de0e2f1b6eb99d4823834ddf | Error message for using refs outside of render() is difficult to understand | [
{
"path": "src/core/ReactOwner.js",
"patch": "@@ -77,7 +77,11 @@ var ReactOwner = {\n addComponentAsRefTo: function(component, ref, owner) {\n invariant(\n ReactOwner.isValidOwner(owner),\n- 'addComponentAsRefTo(...): Only a ReactOwner can have refs.'\n+ 'addComponentAsRefTo(...): Only... | 2013-12-26T06:30:19 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.