repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
c16007381f0325af866e9f382b0d9457af540d08
b891e9348b77468623ece665ae6b0a78c9644478
src: add debug option to report large page stats This adds the new option `HUGEPAGES` to `NODE_DEBUG_NATIVE` that causes the code responsible for re-mapping to large pages to output memory range and page count information to `stderr`. Signed-off-by: Gabriel Schulhof <gabriel.schulhof@intel.com> PR-URL: https://github...
[ { "path": "src/debug_utils.h", "patch": "@@ -40,6 +40,7 @@ void FWrite(FILE* file, const std::string& str);\n // from a provider type to a debug category.\n #define DEBUG_CATEGORY_NAMES(V) \\\n NODE_ASYNC_PROVIDER_TYPES(V) ...
2020-03-17T20:42:37
golang/go
141f15303d528620a8855fd73d19fe51dd2479f0
527565b1f1997f05d9902d30118a0d6003674b66
internal/saferio: new package to avoid OOM Broken out of debug/pe. Update debug/pe to use it. For #47653 Change-Id: Ib3037ee04073e005c4b435d0128b8437a075b00a Reviewed-on: https://go-review.googlesource.com/c/go/+/408678 Reviewed-by: Cherry Mui <cherryyz@google.com> Run-TryBot: Ian Lance Taylor <iant@golang.org> Revi...
[ { "path": "src/cmd/dist/buildtool.go", "patch": "@@ -65,6 +65,7 @@ var bootstrapDirs = []string{\n \t\"internal/goversion\",\n \t\"internal/pkgbits\",\n \t\"internal/race\",\n+\t\"internal/saferio\",\n \t\"internal/unsafeheader\",\n \t\"internal/xcoff\",\n \t\"math/big\",", "additions": 1, "deletion...
2022-05-29T00:46:38
rust-lang/rust
f7e46f9d603010be83b3302500c65130a5186782
0f353363965ebf05e0757f7679c800b39c51a07e
fix(unicode-table-generator): fix duplicated unique indices unicode-table-generator panicked while populating distinct_indices because of duplicated indices. This was introduced by swapping the order of canonical_words.push(...) and canonical_words.len().
[ { "path": "src/tools/unicode-table-generator/src/raw_emitter.rs", "patch": "@@ -341,7 +341,7 @@ impl Canonicalized {\n for &w in unique_words {\n unique_mapping.entry(w).or_insert_with(|| {\n canonical_words.push(w);\n- UniqueMapping::Canonical(canonical_wo...
2025-08-05T13:35:59
vercel/next.js
a8bc1a1cf2d570fbfe431d38951bebc7e8328540
2faacf17fc286ceda1ce469689d01fe3f87e78ce
Update runner for e2e deploy tests (#57089) This attempts to fix our tests timing out from an obscure lost connection to runner message ![CleanShot 2023-10-19 at 16 29 50@2x](https://github.com/vercel/next.js/assets/22380829/594b21c4-4df9-418b-afbb-5e290020d25d)
[ { "path": ".github/workflows/test_e2e_deploy.yml", "patch": "@@ -9,7 +9,12 @@ on:\n \n jobs:\n build:\n- runs-on: ubuntu-latest\n+ runs-on:\n+ - 'self-hosted'\n+ - 'linux'\n+ - 'x64'\n+ - 'metal'\n+\n env:\n VERCEL_TEST_TOKEN: ${{ secrets.VERCEL_TEST_TOKEN }}\n VE...
2023-10-20T00:34:18
nodejs/node
a9401439c7b3299f8fb8825f721ff139b7656e3b
543c046feb015c8290e2408d210916976126b24f
zlib: align with streams - Ensure automatic destruction only happens after both 'end' and 'finish' has been emitted through autoDestroy. - Ensure close() callback is always invoked. - Ensure 'error' is only emitted once. PR-URL: https://github.com/nodejs/node/pull/32220 Reviewed-By: Anna Henningsen <anna@addaleax.net...
[ { "path": "lib/zlib.js", "patch": "@@ -55,13 +55,15 @@ const {\n } = require('internal/util/types');\n const binding = internalBinding('zlib');\n const assert = require('internal/assert');\n+const finished = require('internal/streams/end-of-stream');\n const {\n Buffer,\n kMaxLength\n } = require('buffe...
2020-03-12T07:18:39
rust-lang/rust
3e764d030a2a62066532c940e3509e7e031d71bf
e1b9081e699065badfc1a9419ec9566e5c8615c4
Add regression tests for seemingly fixed issues
[ { "path": "tests/ui/traits/const-traits/const-closure-issue-125866-error.rs", "patch": "@@ -0,0 +1,24 @@\n+#![allow(incomplete_features)]\n+#![feature(const_closures, const_trait_impl)]\n+\n+const fn create_array<const N: usize>(mut f: impl FnMut(usize) -> u32 + Copy) -> [u32; N] {\n+ let mut array = [0;...
2025-08-04T15:29:13
golang/go
72a857a2802a60ae99000efa2cf6e629d75deb4c
0337fc7e0e084adeea58f333a8aa7dbc43363baf
test: relax fixedbugs/issue20250.go expectations With GOEXPERIMENT=unified, the order variables are printed in "live at entry to f.func1" is sensitive to whether regabi is enabled for some reason. The order shouldn't matter to correctness, but it is odd. For now, this CL just relaxes the test expectation order to unb...
[ { "path": "test/fixedbugs/issue20250.go", "patch": "@@ -16,7 +16,9 @@ type T struct {\n \n func f(a T) { // ERROR \"live at entry to f: a\"\n \tvar e interface{} // ERROR \"stack object e interface \\{\\}$\"\n-\tfunc() { // ERROR \"live at entry to f.func1: a &e\"\n+\t// TODO(go.dev/issue/54402): I...
2022-08-11T17:20:09
facebook/react
fcfe516a2e08322b184ae82db37f38645f131337
9886e403951c58c5c1046af3bed984ac1ee68913
Less verbose ReactPropTypeLocations logging Since we use keyMirror() and invariant() messages are only shown in __DEV__, we don't have to do manual constant->string translation. Also fixes a few undefined keys that just happened to work before.
[ { "path": "src/core/ReactPropTypeLocations.js", "patch": "@@ -21,7 +21,7 @@\n var keyMirror = require('keyMirror');\n \n var ReactPropTypeLocations = keyMirror({\n- props: null,\n+ prop: null,\n context: null,\n childContext: null\n });", "additions": 1, "deletions": 1, "language": "JavaSc...
2013-11-27T19:57:34
vercel/next.js
0e4fe2ffe3931442b70c75ac921310104af6888c
a3aa6590ffd4654246cbeca881104d9a41c100e3
Code frame and sourcemapped error support for Turbopack (#56727) This implements support for properly tracing sourcemaps when presenting error stacks to the user. It also adds code frames when possible. Closes WEB-1764 --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com...
[ { "path": "Cargo.lock", "patch": "@@ -3491,6 +3491,7 @@ dependencies = [\n \"tracing-subscriber\",\n \"turbo-tasks\",\n \"turbopack-binding\",\n+ \"url\",\n ]\n \n [[package]]", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "packages/next-swc/crates/napi/Cargo.tom...
2023-10-19T21:51:40
nodejs/node
6a349019da7ea79cd394101faad119db56b76bfa
d19a2c33b35b3256a738966231848a6679d7bb7d
build: temporarily skip ASAN build GitHub Actions doesn't have enough memory to complete an ASAN+Debug with V8 8.1. Don't take ASAN into account on CI results until we find a workaround, or until we upgrade to V8 8.2. PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaël Zasso <targos@protonmail.com>...
[ { "path": ".github/workflows/ASAN.yml", "patch": "@@ -9,6 +9,11 @@ jobs:\n steps:\n - uses: actions/checkout@v2\n - name: Build\n+ # TODO(mmarchini): With V8 8.1, GitHub Actions doesn't have enough\n+ # memory to build with debug and ASAN. Allow this build to fail unt...
2020-03-11T18:20:29
golang/go
0337fc7e0e084adeea58f333a8aa7dbc43363baf
62654dfd4f8d7ac2309232dc3c09c33b1741ce95
debug/elf: add new-style LoongArch reloc types LoongArch ELF psABI spec update: https://github.com/loongson/LoongArch-Documentation/pull/57 Corresponding binutils implementation: https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=6d13722a97cee3fd397e116bde3bcedbb1e220be https://sourceware.org/git/?p=binutils-g...
[ { "path": "api/next/54222.txt", "patch": "@@ -0,0 +1,78 @@\n+pkg debug/elf, const R_LARCH_32_PCREL = 99 #54222\n+pkg debug/elf, const R_LARCH_32_PCREL R_LARCH #54222\n+pkg debug/elf, const R_LARCH_ABS64_HI12 = 70 #54222\n+pkg debug/elf, const R_LARCH_ABS64_HI12 R_LARCH #54222\n+pkg debug/elf, const R_LARCH_...
2022-08-03T07:46:34
facebook/react
eebad166367d85ff61846961a332030c6c81b4f5
a7f0afceecfae8d00ba656915ccfbcf4d7c2c5e4
Use an iframe to create a testDocument… instead of `createHTMLDocument` since it isn't fully support by the browsers we care about. fixes #606 fixes #454
[ { "path": "src/test/getTestDocument.js", "patch": "@@ -23,11 +23,13 @@\n * (jst).\n */\n function getTestDocument() {\n- if (document.implementation &&\n- document.implementation.createHTMLDocument) {\n- return document.implementation.createHTMLDocument('test doc');\n- }\n- return null;\n+ var...
2013-11-25T20:05:35
electron/electron
56882c31bd52e451f07ca4de1fc3e6b45f384f89
edcea3e800efd05ec9d887be4e5dbd9799dc5a80
Fix a typo
[ { "path": "docs-translations/jp/tutorial/desktop-environment-integration.md", "patch": "@@ -6,7 +6,7 @@\n \n ## 通知 (Windows, Linux, macOS)\n \n-3つのオペレーティングシステム全てで、アプリケーションからユーザーに通知を送る手段が提供されています。通知を表示するためにオペレーティングシステムのネイティブ通知APIを使用しする[HTML5 Notification API](https://notifications.spec.whatwg.org/)で、Electron...
2017-01-21T14:12:37
vercel/next.js
1d9ddfca14cf3602e1ca8488c9df90dbb92eac16
ebcc855af66c66abbecb805300574fa35fb364e4
Fix typos in duplicate-sass.mdx (#57045)
[ { "path": "errors/duplicate-sass.mdx", "patch": "@@ -5,9 +5,9 @@ title: Duplicate Sass Dependencies\n ## Why This Error Occurred\n \n Your project has a direct dependency on both `sass` and `node-sass`, two\n-different package that both compile Sass files!\n+different packages that both compile Sass files!\...
2023-10-19T13:32:47
rust-lang/rust
6249f33ca146e8a6524082f4d397363aafb32ae7
264bc97b2623f29109e0ecb91d66cdb6c7b10a43
fix: unnecessary_sort_by lint method consistency in message and suggestion
[ { "path": "clippy_lints/src/methods/unnecessary_sort_by.rs", "patch": "@@ -200,44 +200,50 @@ pub(super) fn check<'tcx>(\n is_unstable: bool,\n ) {\n match detect_lint(cx, expr, recv, arg) {\n- Some(LintTrigger::SortByKey(trigger)) => span_lint_and_sugg(\n- cx,\n- UNNECES...
2025-08-05T12:23:10
nodejs/node
7ed0d1439e52de8924501869bedcdcffc7aa1be3
59eeb3b5b99f9adfad47160f29554900ef57d0a5
src: remove use of deprecated Symbol::Name() This commit replaces Symbol::Name() with Symbol::Description(). Fixes: https://github.com/nodejs/node/issues/30916 PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Revie...
[ { "path": "src/node_symbols.cc", "patch": "@@ -16,10 +16,10 @@ static void Initialize(Local<Object> target,\n Local<Context> context,\n void* priv) {\n Environment* env = Environment::GetCurrent(context);\n-#define V(PropertyName, StringValue) ...
2019-12-14T18:52:21
golang/go
62654dfd4f8d7ac2309232dc3c09c33b1741ce95
9e4638ad20181ba4c3b1985da48c56be121901fb
cmd/compile: fix wrong typeparams for selector expr with embedded generic type For selector expression "x.M" where "M" is a promoted method, irgen is using the type of receiver "x" for determining the typeparams for instantiation. However, because M is a promoted method, so its associated receiver is not "x", but "x.T...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -334,10 +334,6 @@ func (g *genInst) buildClosure(outer *ir.Func, x ir.Node) ir.Node {\n \t} else { // ir.OMETHEXPR or ir.METHVALUE\n \t\t// Method expression T.M where T is a generic type.\n \t\tse := x.(*ir.SelectorExpr)\n-\t\ttargs := der...
2022-07-23T15:31:35
facebook/react
0e2840abce0b211ef600b19ee7702efa431b8dae
d51ae6b8bce07f72aa52898a4cf19f0eacbca370
Update commoner to 0.8.8 for Windows support benjamn/commoner#44 fixed commoner to work on Windows when module path relativization isn't used; with this, the `jsx` binary should work properly on Windows (though `jsx-internal` still won't). Fixes #316, fixes #391, fixes #567.
[ { "path": "package.json", "patch": "@@ -36,7 +36,7 @@\n \"test\": \"grunt build && grunt test\"\n },\n \"dependencies\": {\n- \"commoner\": \"~0.8.7\",\n+ \"commoner\": \"~0.8.8\",\n \"esprima-fb\": \"~2001.1001.0-dev-harmony-fb\",\n \"jstransform\": \"~2.0.1\"\n },", "additions"...
2013-11-24T20:59:46
vercel/next.js
aacd2f0aa846270bccfda4cf13d0aab2ddc1e6eb
e3bc089627b9291c99fa44b7f219df45bc5cfa62
fix double self time reporting (vercel/turbo#6179) ### Description fix profile for nested spans ### Testing Instructions <!-- Give a quick description of steps to test your changes. --> Closes WEB-1787
[ { "path": "crates/turbopack-convert-trace/src/main.rs", "patch": "@@ -236,34 +236,73 @@ fn main() {\n span.end = ts;\n }\n }\n- TraceRow::Enter {\n- ts,\n- id,\n- thread_id: _,\n- } => {\n+ ...
2023-10-18T23:30:31
electron/electron
8fe8dfa41018770e0e1ddcc61ec4a9d81bfd82d0
edcea3e800efd05ec9d887be4e5dbd9799dc5a80
Fixing missing link
[ { "path": "docs/tutorial/about.md", "patch": "@@ -4,7 +4,7 @@\n \n Electron began in 2013 as the framework on which [Atom](https://atom.io), GitHub's hackable text editor, would be built. The two were open sourced in the Spring of 2014.\n \n-It has since become a popular tool used by open source developers,...
2017-01-21T13:12:43
nodejs/node
1cd235d1a0c2c68e134c35ac54d71ee01c080f89
5d867badd046b62a966a844038a2f1d9f26fcc71
deps: patch V8 to run on Xcode 8 Patch V8 (wasm/wasm-module.cc) to remove const qualifier from type passed to template call of `OwnedVector::Of`. Xcode 8 can't convert 'OwnedVector<unsigned char>' to 'OwnedVector<const unsigned char>' when returning from a function (which is likely a bug on Xcode, considering this wor...
[ { "path": "common.gypi", "patch": "@@ -35,7 +35,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n...
2020-03-10T23:58:15
facebook/react
685dec022a6d6f71e71e1059ce60f767b301dc3d
d51ae6b8bce07f72aa52898a4cf19f0eacbca370
Be resilient to fn.name not existing in IE Fixes #516.
[ { "path": "src/core/__tests__/ReactPropTypes-test.js", "patch": "@@ -124,18 +124,19 @@ describe('Instance Types', function() {\n \n it(\"should throw for invalid instances\", function() {\n function Person() {}\n+ var name = Person.name || '<<anonymous>>';\n \n expect(typeCheck(Props.instanceOf...
2013-11-24T06:53:53
golang/go
9e4638ad20181ba4c3b1985da48c56be121901fb
a526ec1569984fd452acb09c8c48c9d972a442d3
net: discard unrooted 254 byte names, not rooted ones Fixes #54285 Change-Id: I20d4d6b9d0532d8a344582b99d446352ae94edcf GitHub-Last-Rev: ad1337450caeaab80755d2951dd01422a906eacc GitHub-Pull-Request: golang/go#54293 Reviewed-on: https://go-review.googlesource.com/c/go/+/421674 TryBot-Result: Gopher Robot <gobot@golang...
[ { "path": "src/net/dnsclient_unix.go", "patch": "@@ -482,7 +482,7 @@ func (conf *dnsConfig) nameList(name string) []string {\n \t// Check name length (see isDomainName).\n \tl := len(name)\n \trooted := l > 0 && name[l-1] == '.'\n-\tif l > 254 || l == 254 && rooted {\n+\tif l > 254 || l == 254 && !rooted {\...
2022-08-06T05:42:25
electron/electron
54559f99a0eb19629229dab2208bf2760468090d
edcea3e800efd05ec9d887be4e5dbd9799dc5a80
Fix dereferencing nullptr RenderWidgetHostView might not be available when the navigator fails to load a url.
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -900,14 +900,16 @@ void WebContents::LoadURL(const GURL& url, const mate::Dictionary& options) {\n // We have to call it right after LoadURL because the RenderViewHost is only\n // created after loading a page.\n const auto view = web...
2017-01-21T09:26:58
vercel/next.js
27b89e4aaf3825b970fd32ac5884e629220eee48
92cccfb47bbd1fa2041e899df8df0becdf77ff51
chore(docs): fix missing fallback on next/image sizes example (#56718) This example use of `sizes` was missing the fallback. Its best to review with [`?w=1`](https://github.com/vercel/next.js/pull/56718/files?w=1)
[ { "path": "docs/02-app/02-api-reference/01-components/image.mdx", "patch": "@@ -40,24 +40,24 @@ export default function Page() {\n Here's a summary of the props available for the Image Component:\n \n <div style={{ overflowX: 'auto', width: '100%' }}>\n-| Prop | Example ...
2023-10-18T17:55:46
nodejs/node
8d2c441e4da12361b8770a9d4bc0194a9a5d7177
049160dfb6caf41c5e5946c5f91aa928c9349344
deps: V8: cherry-pick 931bdbd76f5b Original commit message: [torque] fix build on VS2017 Node.js build fails on VS2017 without these headers, see the downstream issue (https://github.com/nodejs/node-v8/issues/128). Co-authored-by: Ben Noordhuis <info@bnoordhuis.nl> Co-authored-by: gengjiawen <te...
[ { "path": "common.gypi", "patch": "@@ -35,7 +35,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "...
2020-03-11T18:17:41
rust-lang/rust
2136c500cdbdd08fe7c25927b5d3ce790d75f68b
c4b91bd9f87391c1dda3784205c0dd10b54ec2e8
Preserve the .debug_gdb_scripts section Make sure that compiler and linker don't optimize the section's contents away by adding the global holding the data to "llvm.used". The volatile load in the main shim is retained because "llvm.used", which translates to SHF_GNU_RETAIN on ELF targets, requires a reasonably recent...
[ { "path": "src/debuginfo.rs", "patch": "@@ -254,7 +254,8 @@ impl<'gcc, 'tcx> DebugInfoCodegenMethods<'tcx> for CodegenCx<'gcc, 'tcx> {\n // TODO(antoyo): implement.\n }\n \n- fn debuginfo_finalize(&self) {\n+ fn debuginfo_finalize(&mut self) {\n+ // TODO: emit section `.debug_gdb_sc...
2025-08-01T10:39:50
facebook/react
e6e71a49531253d34e0b8ac213f7bd4077588240
566f8b2e854eeb7674f5c8df6bfdeb2cbab35e42
ReactErrorUtils: In prod, just return the original This will save a stack frame (nice when in a debugger) and presumably be a bit faster.
[ { "path": "src/vendor/stubs/ReactErrorUtils.js", "patch": "@@ -28,16 +28,18 @@ var ReactErrorUtils = {\n * @return {function}\n */\n guard: function(func, name) {\n- return function guarded() {\n- try {\n- return func.apply(this, arguments);\n- } catch(ex) {\n- if (__DEV__...
2013-11-23T05:26:10
golang/go
dfbecc06e73b79aaeee4220b3e760cbd76050ae5
133c0e9011b8c0e13442cdb754d7f6a8ac54ce00
misc/cgo/testsanitizers: fix code to detect gcc version correctly The current implementation of compilerVersion incorrectly gives an error message that the compiler version is too old even though the system has a recent compiler. This happens for specifically for the gcc compiler and causes ASAN tests to be skipped. R...
[ { "path": "misc/cgo/testsanitizers/cc_test.go", "patch": "@@ -202,16 +202,16 @@ func compilerVersion() (version, error) {\n \t\t\tvar match [][]byte\n \t\t\tif bytes.HasPrefix(out, []byte(\"gcc\")) {\n \t\t\t\tcompiler.name = \"gcc\"\n-\t\t\t\tcmd, err := cc(\"-v\")\n+\t\t\t\tcmd, err := cc(\"-dumpfullversi...
2022-08-10T14:57:51
vercel/next.js
92cccfb47bbd1fa2041e899df8df0becdf77ff51
66597be8a7d02f62d0e1e8a944163366d983c7fb
chore(test): add logs for create-next-app tests (#56957) This will help us debug why these tests sometimes flake by logging which command was running last.
[ { "path": "test/integration/create-next-app/package-manager.test.ts", "patch": "@@ -23,7 +23,13 @@ const env = { ...process.env, COREPACK_ENABLE_STRICT: '0' }\n const run = (args: string[], options: execa.Options) => {\n const conf = new Conf({ projectName: 'create-next-app' })\n conf.clear()\n- return...
2023-10-18T17:39:49
electron/electron
a7a3aa848e67be305d8aa263d045a7b43d309bcc
8a22139d57edeb606cb2560edfa69914d582e453
:memo: Fix typo [ci skip]
[ { "path": "docs/tutorial/security.md", "patch": "@@ -56,7 +56,7 @@ This is not bulletproof, but at the least, you should attempt the following:\n * Only display secure (https) content\n * Disable the Node integration in all renderers that display remote content\n (setting `nodeIntegration` to `false` in `...
2017-01-20T14:45:39
rust-lang/rust
868bdde25b030e0b71a29a5dbc04a891036e702e
0f353363965ebf05e0757f7679c800b39c51a07e
Preserve the .debug_gdb_scripts section Make sure that compiler and linker don't optimize the section's contents away by adding the global holding the data to "llvm.used". The volatile load in the main shim is retained because "llvm.used", which translates to SHF_GNU_RETAIN on ELF targets, requires a reasonably recent...
[ { "path": "compiler/rustc_codegen_gcc/src/debuginfo.rs", "patch": "@@ -254,7 +254,8 @@ impl<'gcc, 'tcx> DebugInfoCodegenMethods<'tcx> for CodegenCx<'gcc, 'tcx> {\n // TODO(antoyo): implement.\n }\n \n- fn debuginfo_finalize(&self) {\n+ fn debuginfo_finalize(&mut self) {\n+ // TODO: ...
2025-08-01T10:39:50
nodejs/node
9b6e7973796713bc920bf02f1a5b980adb34a337
f90eba1d91690c89b442d69b800ab23bf12eb0e1
Revert "assert: fix line number calculation after V8 upgrade" This reverts commit 5981fb7faa13de95550b01272ebfbd8a5220aadb. PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@brid...
[ { "path": "common.gypi", "patch": "@@ -35,7 +35,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "...
2019-12-06T13:33:27
golang/go
133c0e9011b8c0e13442cdb754d7f6a8ac54ce00
8298c545f384a6256962cb699f0c78306380279e
time: optimize Format for RFC3339 and RFC3339Nano Optimise Format for the most frequently used RFC3339 and RFC3339Nano layouts by avoiding parsing of layout. > benchstat oldBench.txt newBench.txt name old time/op new time/op delta FormatRFC3339-8 302ns ± 1% 203ns ± 0% -32.89% (p=0....
[ { "path": "src/time/format.go", "patch": "@@ -626,6 +626,15 @@ func (t Time) AppendFormat(b []byte, layout string) []byte {\n \t\tmin int\n \t\tsec int\n \t)\n+\n+\t// Handle most frequent layouts separately.\n+\tswitch layout {\n+\tcase RFC3339:\n+\t\treturn t.appendFormatRFC3339(b, abs, offset, false)...
2022-08-07T18:19:19
facebook/react
4bd0a40037526b2f2e639abc499aae1c15780542
d51ae6b8bce07f72aa52898a4cf19f0eacbca370
Don't use .returnValue if .defaultPrevented exists `.defaultPrevented` exists in IE9+. I checked in IE9, Chrome, and Firefox that it does default to `false`. Fixes #527.
[ { "path": "src/event/synthetic/SyntheticEvent.js", "patch": "@@ -79,7 +79,10 @@ function SyntheticEvent(dispatchConfig, dispatchMarker, nativeEvent) {\n }\n }\n \n- if (nativeEvent.defaultPrevented || nativeEvent.returnValue === false) {\n+ var defaultPrevented = nativeEvent.defaultPrevented != null...
2013-11-24T06:33:28
electron/electron
a560df3327e7fd97ba8205a8761d99e6cc793a6d
14d48e96538a51104afb3b1f5dd10c7651857e88
Update node to pick up Windows compilation fix
[ { "path": "vendor/node", "patch": "@@ -1 +1 @@\n-Subproject commit b1069b6dd5321a6e5cf2f7fea68a85ac4a2df24b\n+Subproject commit d4eba08b3ccd8f1e1045ad129384b18beb38b697", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2017-01-19T06:58:11
rust-lang/rust
878f3198818e0d2cd9563d44287f028d5392cdff
0056e5638e3524edf61143c768bf28284891b1f9
Fix rustc test suite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -63,6 +63,7 @@ rm -r tests/run-make/used-proc-macro # used(linker) isn't supported yet\n rm tests/ui/linking/no-gc-encapsulation-symbols.rs # same\n rm tests/ui/attributes/fn-align-dyn.rs # per-function alignment not supported\n rm -r tests/ui/c-variadic...
2025-08-05T08:32:33
vercel/next.js
c2ac8df0736b9955c7cf511b1bd91e7b3493a1ff
2c8606e59647714e5b74da46e4ff25bb63be37d9
add better logs around worker restarts (#57004) We currently log when a worker is restarted but not when we send the kill signal, which can create a delta in logs of cryptic errors while the worker is exiting. This explicitly logs when we're terminating the static worker prior to a restart, and also adds an optional l...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -1207,6 +1207,7 @@ export default async function build(\n \n return new Worker(staticWorkerPath, {\n timeout: timeout * 1000,\n+ logger: Log,\n onRestart: (method, [arg], attempts) => {\n if (method =...
2023-10-18T16:11:40
nodejs/node
f90eba1d91690c89b442d69b800ab23bf12eb0e1
56b6a4f732b2c864be819a51eb56d6ae4f893eb2
deps: make v8.h compatible with VS2015 There is a bug in the most recent version of VS2015 that affects v8.h and therefore prevents compilation of addons. Refs: https://stackoverflow.com/q/38378693 PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawe...
[ { "path": "common.gypi", "patch": "@@ -35,7 +35,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "...
2019-11-01T07:39:18
golang/go
8298c545f384a6256962cb699f0c78306380279e
f469f20e7962c9b580526ea9274bcd78689fcd42
reflect: fix stale Value.Pointer comment The comment claims that reflect users cannot obtain an unsafe.Pointer without also importing the unsafe package explicitly. This is no longer true now that the Value.UnsafePointer method directly returns an unsafe.Pointer. Change-Id: Ia5bf2e8aead681c8fac5b011129954d075ae5a43 R...
[ { "path": "src/reflect/value.go", "patch": "@@ -2030,9 +2030,6 @@ func (v Value) OverflowUint(x uint64) bool {\n // and make an exception.\n \n // Pointer returns v's value as a uintptr.\n-// It returns uintptr instead of [unsafe.Pointer] so that\n-// code using reflect cannot obtain [unsafe.Pointer]s\n-// ...
2022-05-05T17:20:09
rust-lang/rust
6b7f8fbcc584f4dc46081b5c690aeca7def88019
5073886181cb95bfe899a26404c57d2944f2a4d4
Promote crash test.
[ { "path": "tests/crashes/124352.rs", "patch": "@@ -1,4 +0,0 @@\n-//@ known-bug: #124352\n-#![rustc_never_type_options(: Unsize<U> = \"hi\")]\n-\n-fn main() {}", "additions": 0, "deletions": 4, "language": "Rust" }, { "path": "tests/ui/attributes/malformed-never-type-options.rs", "pat...
2025-08-05T01:55:20
facebook/react
b99fd9368443cd66bffa397d47f1f4150adf383a
d51ae6b8bce07f72aa52898a4cf19f0eacbca370
'getElementsByClassName' doesn't exist in IE8 Fixes #532.
[ { "path": "src/core/__tests__/ReactMountDestruction-test.js", "patch": "@@ -43,17 +43,13 @@ describe('ReactMount', function() {\n React.renderComponent(instanceTwo, secondRootDiv);\n \n // Test that two react roots are rendered in isolation\n- expect(firstRootDiv.getElementsByClassName('firstReac...
2013-11-24T06:21:21
electron/electron
a52d780e7a20f51fb4b45304c47f080a5ca0b13a
b6d0201c731feda2806f46e842f52d0f38883391
Update `brightray` and `crashpad`
[ { "path": "vendor/crashpad", "patch": "@@ -1 +1 @@\n-Subproject commit c58712f998445983dfea73da6478194b6c52c3cb\n+Subproject commit 600292f69f0f935ada02a02876ed489d21402620", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2017-01-13T13:28:56
vercel/next.js
b95474a9d2cb01624ba49f443f1e75eb8385c370
318cbbf9b1c2a54c3aeb6635553d1376e5b03c31
fix typos (#56870)
[ { "path": "examples/auth-with-stytch/README.md", "patch": "@@ -1,6 +1,6 @@\n # Stytch + Next.js example app on Vercel\n \n-This is a [Stytch](https://stytch.com) + [Next.js](https://nextjs.org/) project that showcases how to enable elegant authentication in your applicaiton.\n+This is a [Stytch](https://sty...
2023-10-18T00:46:47
nodejs/node
40c9419b355aa31c001ff6e31c649bfb4c538ea1
55407ab73e656b5fba57387346c02beb62239268
deps: V8: patch register-arm64.h Fixes a compilation issue on some platforms PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
[ { "path": "common.gypi", "patch": "@@ -35,7 +35,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.3',\n+ 'v8_embedder_string': '-node.4',\n \n ##### V8 defaults for Node.js #####\n "...
2019-05-22T15:33:02
golang/go
2340d371796f95acdcc399e60f9ecefec2add8df
a1337ef40cfa71625595b5b7f10b15341c1240f2
cmd/link: fix trampolines breaking DWARF line info When trampolines are needed (e.g. Darwin ARM64), the DWARF LPT (Line Program Table - see DWARF section 6.1) generation fails because the replacement symbols are marked as external symbols and skipped during the DWARF LPT generation phase. Fixes #54320 Change-Id: I6c...
[ { "path": "src/cmd/link/internal/ld/dwarf_test.go", "patch": "@@ -1842,3 +1842,82 @@ func main() {\n \t\t}\n \t}\n }\n+func TestIssue54320(t *testing.T) {\n+\t// Check that when trampolines are used, the DWARF LPT is correctly\n+\t// emitted in the final binary\n+\ttestenv.MustHaveGoBuild(t)\n+\n+\tif runti...
2022-08-09T17:20:33
facebook/react
3a75d7050198744caba60b2c7c5e0ef5154d4bad
d51ae6b8bce07f72aa52898a4cf19f0eacbca370
Allow running one spec/suite in the web interface This is the proper way to make it filter the spec list: https://github.com/pivotal/jasmine/blob/1_3_x/spec/runner.html I submitted the jasmine-jsreporter change as a pull request here: https://github.com/detro/jasmine-jsreporter/pull/2 Fixes #563.
[ { "path": "test/lib/jasmine-execute.js", "patch": "@@ -1,7 +1,12 @@\n document.write('<style> @import \"../vendor/jasmine/jasmine.css?_=' + (+new Date).toString(36) + '\"; </style>');\n \n ;(function(env){\n- env.addReporter(new jasmine.HtmlReporter);\n+ var htmlReporter = new jasmine.HtmlReporter();\n+ ...
2013-11-24T05:53:29
electron/electron
2f26dbf39ee20bf28f56453094ef8168c723d6b4
873e6e5e6b6cd380b3032dffdc1106590ab490d6
Update type to level in debugger message spec
[ { "path": "spec/api-debugger-spec.js", "patch": "@@ -102,7 +102,7 @@ describe('debugger module', function () {\n }\n w.webContents.debugger.on('message', function (e, method, params) {\n if (method === 'Console.messageAdded') {\n- assert.equal(params.message.type, 'log')\n+ ...
2016-12-19T19:28:08
vercel/next.js
6ed4fddf8a55f956ca6a714e081a384880d45e52
17553c5e25c824ce04045066c24a8f138881473d
chore(test): set `COREPACK_ENABLE_STRICT: 0` for create-next-app tests (#56955) I think some of the runners are missing `yarn` globally installed so its attempting to install with corepack. But the default behavior of corepack is to use the repo version (pnpm in this case) so running `yarn` will error. This PR disable...
[ { "path": "test/integration/create-next-app/package-manager.test.ts", "patch": "@@ -18,6 +18,7 @@ import { projectFilesShouldExist, shouldBeJavascriptProject } from './lib/utils'\n const cli = require.resolve('create-next-app/dist/index.js')\n const exampleRepo = 'https://github.com/vercel/next.js/tree/cana...
2023-10-17T19:56:06
facebook/react
c7bb3af760d30c247b934ba5af893d119029e50b
b2507066b610e0316d7a4a4d62685c58b3a34629
Mock modules properly in test runner As an added bonus, the jasmine web interface now groups tests by file. Test Plan: grunt test passes on b2507066, the parent of 566f8b2e (which committed a workaround for buggy module mocking).
[ { "path": "src/test/all.js", "patch": "@@ -10,7 +10,16 @@ require(\"mock-modules\");\n require(\"./mock-timers\");\n \n exports.enableTest = function(testID) {\n- require(\"../\" + testID);\n+ describe(testID, function() {\n+ var mockMap;\n+ beforeEach(function() {\n+ require(\"mock-modules\")....
2013-11-21T08:39:37
golang/go
6b80b62fd1b5338e6ec8bc2ff521b94f2fefae9c
8003efe1b5520476c62c7fa6798150a61d621cde
internal/pkgbits: fix performance of rawReloc There was a TODO about quadratic performance, and indeed, it can get bad. Added a map, made some integers that are unlikely to exceed a few million into 32-bit integers. Change-Id: I6facf2eabc00483e943b326ca8dcae2f778093da Reviewed-on: https://go-review.googlesource.com/...
[ { "path": "src/internal/pkgbits/encoder.go", "patch": "@@ -151,8 +151,9 @@ func (pw *PkgEncoder) NewEncoderRaw(k RelocKind) Encoder {\n type Encoder struct {\n \tp *PkgEncoder\n \n-\tRelocs []RelocEnt\n-\tData bytes.Buffer // accumulated element bitstream data\n+\tRelocs []RelocEnt\n+\tRelocMap map[Relo...
2022-08-09T18:07:02
nodejs/node
990bc9adb48d889c624f7d6343c303d09d6a6202
17a6def4e83a39925a6b9f47080a212c99226721
deps: V8: un-cherry-pick bd019bd Original commit message: [testrunner] delete ancient junit compatible format support Testrunner has ancient support for JUnit compatible XML output. This CL removes this old feature. R=mstarzinger@chromium.org,jgruber@chromium.org,jkummerow@chromium.org CC=​mach...
[ { "path": "common.gypi", "patch": "@@ -35,7 +35,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "...
2019-03-27T14:32:10
electron/electron
f2a30afcf1f2188886cc020600294534826b43b0
ec134e7536431bfa8fad1d9163dfe81dd19736ca
Fix linking for arm build
[ { "path": "script/lib/config.py", "patch": "@@ -7,9 +7,9 @@\n \n \n BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \\\n- 'https://s3.amazonaws.com/github-janky-artifacts/libchromiumcontent'\n+ 'https://s3.amazonaws.com/gh-contractor-zcbenz/libchromiumcontent'\n LIBCHROMIUMCONTENT_COMMIT = os.get...
2016-12-15T06:41:58
facebook/react
934ef1d4c223358b987cb2e2121234608d34f1f1
c8b6fe51d95805f78744a48f12a40d5556a4f162
Fix context in callbacks callbacks like shouldComponentUpdate, componentDidUpdate, etc. were getting the full, unsanitized context, instead of the one that's been filtered down to only the fields allowed to be visible by contextTypes.
[ { "path": "src/core/ReactCompositeComponent.js", "patch": "@@ -219,17 +219,21 @@ var ReactCompositeComponentInterface = {\n \n /**\n * Invoked while deciding if the component should be updated as a result of\n- * receiving new props and state.\n+ * receiving new props, state and/or context.\n *\...
2013-11-20T22:03:10
vercel/next.js
e3bc089627b9291c99fa44b7f219df45bc5cfa62
ebaad38e82afbff02dd992f87a67b61b270cfb86
fix(postcss): fallback postcss config locations (vercel/turbo#6119) ### Description - closes https://github.com/vercel/turbo/issues/5068 For the postcss transform specific, there's no gaurantee if we lookup context from the path of the source as we allow to include import outside of the project root as resolva...
[ { "path": "crates/turbopack-node/src/transforms/postcss.rs", "patch": "@@ -12,7 +12,7 @@ use turbopack_core::{\n context::AssetContext,\n file_source::FileSource,\n ident::AssetIdent,\n- issue::IssueDescriptionExt,\n+ issue::{Issue, IssueDescriptionExt, IssueExt, IssueSeverity},\n modu...
2023-10-17T19:22:30
nodejs/node
5f0af2af2a67216e00fe07ccda11e889d14abfcd
509a184820ca91d6935213cb3008cb881d8a3a5d
tools: fixup icutrim.py use of string and bytes objects PR-URL: https://github.com/nodejs/node/pull/31659 Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
[ { "path": "tools/icu/icutrim.py", "patch": "@@ -13,6 +13,7 @@\n \n from __future__ import print_function\n \n+import io\n import json\n import optparse\n import os\n@@ -159,9 +160,8 @@ def runcmd(tool, cmd, doContinue=False):\n return rc\n \n ## STEP 0 - read in json config\n-fi= open(options.filterfile...
2020-02-06T10:47:08
golang/go
9f8685f49e9e04e4734a4b1cec2505983af774a5
522f0fc4251b4df23661f588eb9b0b40c4423bef
all: remove remaining UNREVIEWED files for Unified IR Those ureader.go files have enough documents and in stable developement/review as other parts of Unified IR. Fixes #48194 Change-Id: I08a0cbfef05401135b5390e00fe808e838a96170 Reviewed-on: https://go-review.googlesource.com/c/go/+/422617 TryBot-Result: Gopher Robo...
[ { "path": "src/cmd/compile/internal/importer/ureader.go", "patch": "@@ -1,5 +1,3 @@\n-// UNREVIEWED\n-\n // Copyright 2021 The Go Authors. All rights reserved.\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.", "additions": 0, "deletions": 2...
2022-08-10T16:24:54
electron/electron
ec134e7536431bfa8fad1d9163dfe81dd19736ca
0568fa30ca3ee3424f26f0e9b14749b4e780165a
Fix building error for arm linux
[ { "path": "common.gypi", "patch": "@@ -119,6 +119,7 @@\n '-Wno-deprecated-declarations',\n '-Wno-return-type',\n '-Wno-shift-negative-value',\n+ '-Wno-format',\n '-Wno-varargs', # https://git.io/v6Olj\n # Required when buildi...
2016-12-15T02:06:59
facebook/react
42c14b8078e75b19ad42e88772f01e2b7c6fc93f
bd1f5e7e162a93302660ab333e5a55045527a07d
Don't mutate passed-in props Depends on #575; fixes #570. Now we'll be in trouble if someone tries to share objects between calls to getDefaultProps but that was already true of getInitialState and I haven't heard any complaints there. This is the same number of allocations as before; we're just copying props in the...
[ { "path": "src/core/ReactCompositeComponent.js", "patch": "@@ -589,7 +589,7 @@ var ReactCompositeComponentMixin = {\n this._compositeLifeCycleState = CompositeLifeCycle.MOUNTING;\n \n this._defaultProps = this.getDefaultProps ? this.getDefaultProps() : null;\n- this._processProps(this.props...
2013-11-20T09:12:39
vercel/next.js
218d0709eb97017e5bbd55f603bce033206bf71e
ee9bee96afbd75eca35f2bc02cfbd54846d26162
feat: set status code to 500 if unexpected error occurs before streaming in app router (#56236) <!-- 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 cha...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -728,6 +728,9 @@ async function renderToHTMLOrFlightImpl(\n }\n \n const is404 = res.statusCode === 404\n+ if (!is404 && !hasRedirectError) {\n+ res.statusCode = 500\n+ }\n \n // Prese...
2023-10-17T13:32:20
nodejs/node
509a184820ca91d6935213cb3008cb881d8a3a5d
b2d34666495ff120f7d9b4fceb55b3f1b32ddb77
doc: fix some 404 links PR-URL: https://github.com/nodejs/node/pull/32200 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail...
[ { "path": "doc/guides/contributing/pull-requests.md", "patch": "@@ -121,7 +121,7 @@ included in the API docs will also be checked when running `make lint` (or\n use `REPLACEME` for the version number in the documentation YAML.\n \n For contributing C++ code, you may want to look at the\n-[C++ Style Guide](....
2020-03-11T15:25:08
golang/go
522f0fc4251b4df23661f588eb9b0b40c4423bef
f19f6c79e48b0c7aeeeb26e07b626af11653dc99
cmd/compile: refactor GOSSAHASH debugging to make it usable outside ssa package. I've needed this more than once in the past, I hack it in, then throw it away, seems sensible to make the change and save it. Fixes #53937. Change-Id: I7fe886b1c93d73cbf553bed587f2c30f0f5d5a0b Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/compile/internal/base/hashdebug.go", "patch": "@@ -0,0 +1,147 @@\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package base\n+\n+import (\n+\t\"cmd/internal/notsha25...
2022-06-13T21:53:32
electron/electron
0568fa30ca3ee3424f26f0e9b14749b4e780165a
6e0762a5406f5f011020c532d51406a04d602ab9
Fix linking for Windows
[ { "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- '9e3432b3413a7a1d08678ac86b23b6ba2...
2016-12-12T03:38:53
nodejs/node
7a742ec050222dfabfa8fca07167a3b2c680fb3c
a9270dcbeba4316b1e179b77ecb6c46af5aa8c20
lib: add option to disable __proto__ Adds `--disable-proto` CLI option which can be set to `delete` or `throw`. Fixes #31951 PR-URL: https://github.com/nodejs/node/pull/32279 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: James M Snell <jasnell@gma...
[ { "path": "doc/api/cli.md", "patch": "@@ -127,6 +127,15 @@ added: v12.0.0\n \n Specify the file name of the CPU profile generated by `--cpu-prof`.\n \n+### `--disable-proto=mode`\n+<!--YAML\n+added: REPLACEME\n+-->\n+\n+Disable the `Object.prototype.__proto__` property. If `mode` is `delete`, the\n+property...
2020-03-15T00:54:15
golang/go
f19f6c79e48b0c7aeeeb26e07b626af11653dc99
7ba458d7d8461835255b6353c773731f47c16215
runtime: fix gofmt error Introduced in https://go-review.googlesource.com/c/go/+/419755 Change-Id: I7ca353d495dd7e833e46b3eeb972eac38b3a7a24 Reviewed-on: https://go-review.googlesource.com/c/go/+/422474 Run-TryBot: Keith Randall <khr@golang.org> Reviewed-by: xie cui <523516579@qq.com> TryBot-Result: Gopher Robot <gob...
[ { "path": "src/runtime/slice.go", "patch": "@@ -130,7 +130,7 @@ func unsafeslice(et *_type, ptr unsafe.Pointer, len int) {\n \t}\n \n \tif et.size == 0 {\n-\t\tif ptr == nil && len > 0 {\n+\t\tif ptr == nil && len > 0 {\n \t\t\tpanicunsafeslicenilptr()\n \t\t}\n \t}", "additions": 1, "deletions": 1...
2022-08-09T22:40:19
facebook/react
f37fd7a7a372a0db487f1604907ba474476150db
378a49bf3cfc23b41519ecb5e29fbb36b503b91b
Fix pagination
[ { "path": "docs/_config.yml", "patch": "@@ -17,7 +17,7 @@ react_version: 0.6.0-alpha\n description: A JavaScript library for building user interfaces\n relative_permalinks: true\n paginate: 5\n-paginate_path: /blog/page:num\n+paginate_path: /blog/page:num/\n nav_docs_sections:\n - title: Quick Start\n ite...
2013-11-19T23:25:00
electron/electron
6e0762a5406f5f011020c532d51406a04d602ab9
af212a9f67c19084c1717ce85bd2b900f27cf1ea
Fix building on Windows
[ { "path": "atom/browser/ui/atom_menu_model.cc", "patch": "@@ -23,7 +23,7 @@ void AtomMenuModel::SetRole(int index, const base::string16& role) {\n \n base::string16 AtomMenuModel::GetRoleAt(int index) {\n int command_id = GetCommandIdAt(index);\n- if (ContainsKey(roles_, command_id))\n+ if (base::Contai...
2016-12-12T01:35:29
nodejs/node
a9270dcbeba4316b1e179b77ecb6c46af5aa8c20
1a3c7473ec9ca0e1acf0512996e05eecc870f7bf
http: don't emit 'finish' after 'error' PR-URL: https://github.com/nodejs/node/pull/32276 Refs: https://github.com/nodejs/node/issues/28710 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "lib/_http_outgoing.js", "patch": "@@ -745,6 +745,7 @@ OutgoingMessage.prototype.addTrailers = function addTrailers(headers) {\n };\n \n function onFinish(outmsg) {\n+ if (outmsg && outmsg.socket && outmsg.socket._hadError) return;\n outmsg.emit('finish');\n }\n ", "additions": 1, "dele...
2020-03-14T23:55:03
golang/go
7ba458d7d8461835255b6353c773731f47c16215
c81dfdd47aa44bb1da0f60e36742cc0103da4837
net/http/cgi: remove port from the CGI environment of variable SERVER_NAME The SERVER_NAME variable in the CGI environment should not contain the port, according to the section 4.1.14 of the RFC 3875. Fixes #53368. Change-Id: Ifeea70206878cf83bc0bda35cb514d0226bbcd8c Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/net/http/cgi/host.go", "patch": "@@ -138,7 +138,6 @@ func (h *Handler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {\n \n \tenv := []string{\n \t\t\"SERVER_SOFTWARE=go\",\n-\t\t\"SERVER_NAME=\" + req.Host,\n \t\t\"SERVER_PROTOCOL=HTTP/1.1\",\n \t\t\"HTTP_HOST=\" + req.Host,\n \t\t\"G...
2022-06-15T19:02:38
electron/electron
ebb4c939944050e21c0d246cd5f13ed54b312659
fd2fdb54754f5900902a32a95b5a57d854d3132d
Fix linking error for x64 Linux build
[ { "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- '812e7adcd39d5fef62396b00f1fddaaf7...
2016-12-06T09:45:16
facebook/react
5feb745b027ecbec40a5ca1f17abcdeb643bebb2
eda56b7af2456c09879b343f255c21881400bbc0
fixes the case when coverage isn't turned on
[ { "path": "grunt/config/server.js", "patch": "@@ -4,6 +4,7 @@ module.exports = function(grunt){\n var coverageWriteStream;\n \n grunt.task.registerTask('finalize-coverage-stream', function(){\n+ if (!coverageWriteStream) return;\n var done = this.async();\n coverageWriteStream.once('close', d...
2013-11-15T21:44:46
nodejs/node
c788964a75c7ccec63bce9d464e9c96eb6e17080
5eb85dd972b1b69aebf16d331df6761847a31b2a
errors: drop pronouns from ERR_WORKER_PATH message This commit drops pronouns from the ERR_WORKER_PATH message, and also shortens the text a bit. PR-URL: https://github.com/nodejs/node/pull/32285 Refs: https://github.com/nodejs/node/pull/31664 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott...
[ { "path": "lib/internal/errors.js", "patch": "@@ -1425,8 +1425,7 @@ E('ERR_WORKER_PATH', (filename) =>\n 'The worker script or module filename must be an absolute path or a ' +\n 'relative path starting with \\'./\\' or \\'../\\'.' +\n (filename.startsWith('file://') ?\n- ' If you want to pass a fi...
2020-03-15T15:14:19
golang/go
8dc7710faeda33b03fe32d4e7c800f0dcf27c698
3c2a3ce6d924c4d936c6a9ece63aaaa42c80107c
cmd/compile: do not use content addressable symbol for generic iface method names When a generic interface method is used, we use a special relocation R_USEGENERICIFACEMETHOD to tell the linker the name of the generic interface method, so it can keep methods with that name live. The relocation references a symbol whos...
[ { "path": "src/cmd/compile/internal/reflectdata/reflect.go", "patch": "@@ -19,7 +19,6 @@ import (\n \t\"cmd/compile/internal/inline\"\n \t\"cmd/compile/internal/ir\"\n \t\"cmd/compile/internal/objw\"\n-\t\"cmd/compile/internal/staticdata\"\n \t\"cmd/compile/internal/typebits\"\n \t\"cmd/compile/internal/typ...
2022-08-09T21:10:22
electron/electron
fd2fdb54754f5900902a32a95b5a57d854d3132d
88f6f5d1b2ee9adc4ebb7e71acb4c6caec59ce7d
Fix linking problem with libgtk2ui
[ { "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- 'a42d67f7c75e7efff14089af0b9277f83...
2016-12-02T09:18:47
facebook/react
cb6b7f37e7e27969b4a92810b8d76b6c979b5102
ef5a02c16485707acdfd38f612c16513beeb4a6a
fixes an issue where the list of files to test isn't complete
[ { "path": "grunt/tasks/populist.js", "patch": "@@ -34,6 +34,6 @@ module.exports = function() {\n }).then(function(output) {\n grunt.file.write(config.outfile, output);\n theFilesToTestScript.end();\n- done();\n+ theFilesToTestScript.once('close', done);\n });\n };", "additions": 1, ...
2013-11-15T21:28:40
vercel/next.js
4b3dfdaa957ed3443b74cd0ef16e4c20b21416f6
552b9747ff9551884499f165499dd6db1d8c4907
build: Update `swc_core` to `v0.86.1` (#56770) ### What? Update SWC crates, to apply bugfixes. ### Why? We adjusted the mangling option to make it identical with `swcMinify: false` with https://github.com/vercel/next.js/pull/56281, and it revealed some bugs of the name mangler of the SWC minifier. ### Ho...
[ { "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-231013.3#1e7c4b84f11561db5c6c671480e55e6cc8d9f481\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-10-17T13:19:28
nodejs/node
9b20b5db7b829dff0bcf0383c898c7fc85924369
40b559a376ae1db031132a86a76834decf6f0c2d
stream: don't emit 'finish' after 'error' PR-URL: https://github.com/nodejs/node/pull/32275 Refs: https://github.com/nodejs/node/issues/28710 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/_stream_writable.js", "patch": "@@ -666,6 +666,9 @@ function finishMaybe(stream, state, sync) {\n \n function finish(stream, state) {\n state.pendingcb--;\n+ if (state.errorEmitted)\n+ return;\n+\n state.finished = true;\n stream.emit('finish');\n ", "additions": 3, "deletio...
2020-03-14T23:50:09
golang/go
3c2a3ce6d924c4d936c6a9ece63aaaa42c80107c
cb13022a244e6c311a3494696ddffe07cfe5edf1
runtime: gofmt Add new line at the end of crash_test.go. Change-Id: I73c77666066b105e563215f34e7ede6c1d92226b Reviewed-on: https://go-review.googlesource.com/c/go/+/422299 Reviewed-by: Matthew Dempsky <mdempsky@google.com>
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -851,4 +851,4 @@ func TestPanicOnUnsafeSlice(t *testing.T) {\n \tif !strings.Contains(output, want) {\n \t\tt.Errorf(\"output does not contain %q:\\n%s\", want, output)\n \t}\n-}\n\\ No newline at end of file\n+}", "additions": 1, "deletions": 1, ...
2022-08-09T21:10:08
electron/electron
88f6f5d1b2ee9adc4ebb7e71acb4c6caec59ce7d
93a27fd3a9bbd739f7a948a3f3e9b796c33554f4
Fix compilation errors for Linux
[ { "path": "atom/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -761,10 +761,6 @@ void OffScreenRenderWidgetHostView::SetBeginFrameSource(\n cc::BeginFrameSource* source) {\n }\n \n-bool OffScreenRenderWidgetHostView::IsAutoResizeEnabled() const {\n- return render_widget_host_->auto_resize_en...
2016-12-02T08:44:09
facebook/react
646421f71fd471d5d52c8180943481292e5f20a9
4c881d8487c6cd0a946d26f7e04bb8e5a3326936
batch logs until the end unless ran with --debug
[ { "path": "test/lib/reportTestResults.browser.js", "patch": "@@ -1,34 +1,44 @@\n+var __DEBUG__ = location.search.substring(1).indexOf('debug') != -1;\n+\n if (typeof console == 'undefined') console = {\n log: function(){},\n warn: function(){},\n error: function(){}\n };\n \n+var __consoleReport__ = [...
2013-11-15T21:27:42
nodejs/node
e063ebd337b5723fb47e29c9c55fd333828473ca
25cb855b090c29eacebb78e4180c1f3678b7e86a
n-api: fix comment on expected N-API version Remove the comment about the expected version so that it does not get out of sync. The code shows the expected version anyway. Signed-off-by: Michael Dawson <michael_dawson@ca.ibm.com> PR-URL: https://github.com/nodejs/node/pull/32236 Reviewed-By: Richard Lau <riclau@uk.i...
[ { "path": "test/js-native-api/test_general/test.js", "patch": "@@ -32,7 +32,7 @@ assert.strictEqual(test_general.testGetPrototype(extendedObject),\n assert.notStrictEqual(test_general.testGetPrototype(baseObject),\n test_general.testGetPrototype(extendedObject));\n \n-// Test version m...
2020-03-12T18:52:34
golang/go
cb13022a244e6c311a3494696ddffe07cfe5edf1
d39b54171a2702d5fe6fc427b60ee03c9c45da5a
runtime: ensure that we don't scan noscan objects We claim to not maintain pointer bits for noscan objects. But in fact we do, since whenever we switch a page from scannable to noscan, we call heapBits.initSpan which zeroes the heap bits. Switch to ensure that we never scan noscan objects. This ensures that we don't ...
[ { "path": "src/runtime/mgcmark.go", "patch": "@@ -387,7 +387,9 @@ func markrootSpans(gcw *gcWork, shard int) {\n \t\t\t\t// Mark everything that can be reached from\n \t\t\t\t// the object (but *not* the object itself or\n \t\t\t\t// we'll never collect it).\n-\t\t\t\tscanobject(p, gcw)\n+\t\t\t\tif !s.span...
2022-08-09T19:52:18
electron/electron
93a27fd3a9bbd739f7a948a3f3e9b796c33554f4
497f5a11994a1c9858afd6ab04ea3ae9b3b77b34
Fix linking errors 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- '9578c02202a6050e3fd48dddd5433fbb4...
2016-12-01T06:22:27
facebook/react
61c1bf0a41157bdfbc06b060e6f6ef34db72065a
8529f1b05368837e2b0ca695f0866e33f8fc9b35
fixes browserify task transforms support
[ { "path": "grunt/tasks/browserify.js", "patch": "@@ -46,7 +46,7 @@ module.exports = function() {\n };\n \n // TODO: make sure this works, test with this too\n- config.transforms.forEach(bundle.transform, this);\n+ config.transforms.forEach(bundle.transform, bundle);\n \n // Actually bundle it up\n ...
2013-11-14T18:50:23
vercel/next.js
5ca33abb672a5ee8b18a2c3f86b734f2ab6ccd31
33453499b037e79eb32a36d4f985803a51f2f4e4
build: Update `swc_core` to `v0.86.1` (vercel/turbo#6171) ### Description Update SWC crates, to fix some regressions and improve compile time. ### Testing Instructions Closes WEB-1774
[ { "path": "crates/turbopack-css/src/parse.rs", "patch": "@@ -178,7 +178,7 @@ async fn parse_content(\n };\n \n let mut errors = Vec::new();\n- let mut parsed_stylesheet = match parse_file::<Stylesheet>(&fm, config, &mut errors) {\n+ let mut parsed_stylesheet = match parse_file::<Stylesheet>(&f...
2023-10-17T12:54:41
nodejs/node
2e3dc12ebd3294c09e14dc44e05b31d03fc75b37
a022d387ea89a3bc5e7435faf2ae7030e0646af1
test: workaround for V8 8.1 inspector pause issue `test-inspector-multisession-ws` and `test-inspector-break-when-eval` will be affected by an upstream bug when we upgrade V8 to 8.1. The bug is caused when the Inspector sets a pause at the start of a function compiled with `CompileFunctionInContext`, but that function...
[ { "path": "test/fixtures/inspector-global-function.js", "patch": "@@ -10,4 +10,8 @@ global.sum = function() {\n console.log(invocations++, c);\n };\n \n+// NOTE(mmarchini): Calls console.log two times to ensure we loaded every\n+// internal module before pausing. See\n+// https://bugs.chromium.org/p/v8/is...
2020-03-12T18:57:22
golang/go
cd9cd925bb9ed79975f2531a6b84f69905e4fc31
51a23d6681aef3736e09fbc61fc9ae03305efc2c
cmd: vendor github.com/google/pprof to fix mangled type parameter symbol names Updates github.com/google/pprof to bring in the commit from https://github.com/google/pprof/pull/717 which fixes mangled symbol names for type parameters. Fixes #54105 Change-Id: I01af9f780aba3338b960a03b30906a23642e4448 Reviewed-on: http...
[ { "path": "src/cmd/go.mod", "patch": "@@ -3,7 +3,7 @@ module cmd\n go 1.20\n \n require (\n-\tgithub.com/google/pprof v0.0.0-20220517023622-154dc81eb7b0\n+\tgithub.com/google/pprof v0.0.0-20220729232143-a41b82acbcb1\n \tgolang.org/x/arch v0.0.0-20220722155209-00200b7164a7\n \tgolang.org/x/mod v0.6.0-dev.0.2...
2022-07-30T04:38:24
facebook/react
7df127db31c7429cf461138b9e82c82eb78cec17
8529f1b05368837e2b0ca695f0866e33f8fc9b35
Better error message for renderComponentToString() Reported on Twitter by AirBnb (who are integrating React into their open-source JS framework). They made a mistake and passed a string in as the component. We should have a better error message for that.
[ { "path": "src/environment/ReactServerRendering.js", "patch": "@@ -18,17 +18,31 @@\n */\n \"use strict\";\n \n+var ReactComponent = require('ReactComponent');\n+var ReactInstanceHandles = require('ReactInstanceHandles');\n var ReactMarkupChecksum = require('ReactMarkupChecksum');\n var ReactReconcileTransa...
2013-11-18T18:40:58
rust-lang/rust
36383dd2b8e1eeb18c018f1db324425f4355fe10
e1b9081e699065badfc1a9419ec9566e5c8615c4
[win][arm64ec] Fix msvc-wholearchive for Arm64EC
[ { "path": "src/tools/run-make-support/src/external_deps/c_cxx_compiler/extras.rs", "patch": "@@ -1,15 +1,23 @@\n-use crate::{is_win7, is_windows, is_windows_msvc, uname};\n+use crate::{is_arm64ec, is_win7, is_windows, is_windows_msvc, uname};\n+\n+fn get_windows_msvc_libs() -> Vec<&'static str> {\n+ let ...
2025-08-05T00:05:20
vercel/next.js
e39fb67ea2aa77001259dfe0fb766638ae0e9334
e6b7930c3fe7c54664ac7e822dc66e5defccd814
fix chunk loading in build runtime (vercel/turbo#6180) ### Description fix handling of ChunkData in build runtime ### Testing Instructions <!-- Give a quick description of steps to test your changes. --> Closes WEB-1788
[ { "path": "crates/turbopack-ecmascript-runtime/js/src/build/runtime.ts", "patch": "@@ -45,7 +45,15 @@ const RUNTIME_ROOT = path.resolve(__filename, relativePathToRuntimeRoot);\n const moduleFactories: ModuleFactories = Object.create(null);\n const moduleCache: ModuleCache = Object.create(null);\n \n-functio...
2023-10-17T12:19:04
nodejs/node
a022d387ea89a3bc5e7435faf2ae7030e0646af1
9d1a3b6f608d864f3e4b1e8dc667f733f5acdcb8
doc: update stability of report features This commit updates the stability documentation for the report feature. All diagnostic report APIs are now listed as stable, with the exception of report-on-fatalerror, which still has a few bugs to work out. PR-URL: https://github.com/nodejs/node/pull/32242 Fixes: https://git...
[ { "path": "doc/api/cli.md", "patch": "@@ -596,6 +596,9 @@ warning will be written to stderr instead.\n <!-- YAML\n added: v11.8.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/32242\n+ description: This option is no longer considered experimental.\n - version: v1...
2020-03-13T04:28:01
golang/go
9c5cae08928a885616f54d8df50a43713b95db7a
7d70779db5893a4ac1c4746f463b5aa0b4d7e527
debug/gosym: fix missing symbol version for 1.2+ pclntab Updates #37762 Change-Id: Ib587f472304a04ebd9794666228f81ae6cb5c2a3 Reviewed-on: https://go-review.googlesource.com/c/go/+/422315 Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com> Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> TryBot-Result: Gopher ...
[ { "path": "src/debug/gosym/pclntab.go", "patch": "@@ -312,11 +312,12 @@ func (t *LineTable) go12Funcs() []Func {\n \t\tf.LineTable = t\n \t\tf.FrameSize = int(info.deferreturn())\n \t\tsyms[i] = Sym{\n-\t\t\tValue: f.Entry,\n-\t\t\tType: 'T',\n-\t\t\tName: t.funcName(info.nameoff()),\n-\t\t\tGoType: 0,...
2022-08-09T15:41:06
facebook/react
0ebd3d92ba6626194984e53fc7de6f0445919318
80ab7bf4e12e5ee8bd2f14d51f78afe74013deb9
Fix broken link, spacing on events tip
[ { "path": "docs/tips/11-dom-event-listeners.md", "patch": "@@ -9,7 +9,7 @@ next: initial-ajax.html\n \n > Note:\n >\n-> This entry shows how to attach DOM events not provided by React ([check here for more info](/react/docs/tips/events.html)). This is good for integrations with other libraries such as jQuer...
2013-11-12T21:11:53
rust-lang/rust
81081f45136638b8b018b550222afb11196b2c25
e1b9081e699065badfc1a9419ec9566e5c8615c4
compiletest: add hint for when a ui test produces no errors
[ { "path": "src/tools/compiletest/src/runtest.rs", "patch": "@@ -356,7 +356,7 @@ impl<'test> TestCx<'test> {\n if proc_res.status.success() {\n let err = &format!(\"{} test did not emit an error\", self.config.mode);\n let extra_note = (self.config.mode == crate::c...
2025-08-04T19:21:00
vercel/next.js
552b9747ff9551884499f165499dd6db1d8c4907
db214214d6d26cebd8b0004558019c8b667292c2
perf: fix tracing for routes (#56924) follow up to #56898 where I noticed that we don't apply any filtering to the trace files for the user routes, resulting in files that would need to be filtered like `caniuse` not being filtered out correctly. This fixes that. A lambda in my test project goes from `2.7MB` to `1.4M...
[ { "path": "packages/next/src/build/collect-build-traces.ts", "patch": "@@ -269,11 +269,19 @@ export async function collectBuildTraces({\n })\n }\n }\n- const serverIgnores = [\n+\n+ const sharedIgnores = [\n '**/*.d.ts',\n '**/*.map',\n '**/next/dist...
2023-10-17T09:09:40
nodejs/node
9d1a3b6f608d864f3e4b1e8dc667f733f5acdcb8
4c64e7c59a655142367a361bae873683208b9f9b
doc,lib,src,test: make --experimental-report a nop This commit makes the --experimental-report CLI flag a no-op. PR-URL: https://github.com/nodejs/node/pull/32242 Fixes: https://github.com/nodejs/node/issues/26293 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By...
[ { "path": "doc/api/cli.md", "patch": "@@ -199,13 +199,6 @@ added: v10.0.0\n \n Enable experimental top-level `await` keyword support in REPL.\n \n-### `--experimental-report`\n-<!-- YAML\n-added: v11.8.0\n--->\n-\n-Enable experimental diagnostic report feature.\n-\n ### `--experimental-specifier-resolution=...
2020-03-13T03:24:01
golang/go
25d74f324dde687e1bbf486ef444a1f73f48f4eb
bd901af30bcc8b92c5ce708b5b7d6352b17b54e8
cmd/compile/internal/inline: fix latent CalleeEffects issue ir.ClosureExpr implements ir.InitNode, so ir.InitExpr can prepend init statements to it. However, CalleeEffects wasn't aware of this and could cause the init statements to get dropped when inlining a call to a closure. This isn't an issue today, because we d...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -827,18 +827,18 @@ func mkinlcall(n *ir.CallExpr, fn *ir.Func, maxCost int32, inlMap map[*ir.Func]b\n // CalleeEffects appends any side effects from evaluating callee to init.\n func CalleeEffects(init *ir.Nodes, callee ir.Node) {\n \tfor {\n+...
2022-08-08T19:31:33
facebook/react
4a9ed4a204524afd6c6bad0d1ff50b2d6464f065
f6f3d4262b29aa4f453998f585676eb9fff6bb50
Fix broken link on componentWillReceiveProps tip
[ { "path": "docs/tips/09-componentWillReceiveProps-not-triggered-after-mounting.md", "patch": "@@ -7,6 +7,6 @@ prev: controlled-input-null-value.html\n next: props-in-getInitialState-as-anti-pattern.html\n ---\n \n-`componentWillReceiveProps` isn't triggered after the node is put on scene. This is by design....
2013-11-12T21:06:38
rust-lang/rust
9916ce362f712b7aa91cd7576a5dcfc575ffd621
7cd950546b4ce68843b4cbdb1ab3a43776202d3a
fix `#[loop_match]` on diverging loop this generated invalid MIR before
[ { "path": "compiler/rustc_mir_build/src/builder/expr/into.rs", "patch": "@@ -345,7 +345,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {\n expr_span,\n |this| {\n this.lower_match_arms(\n- ...
2025-08-01T13:31:16
rust-lang/rust
91e606b715ac4e8f59fac86d42ec2ad23f4ef169
e5e79f8bd428d0b8d26e8240d718b134ef297459
Tweak auto trait errors Make suggestions to remove params and super traits tool-only, and make the suggestion span more accurate. ``` error[E0567]: auto traits cannot have generic parameters --> $DIR/auto-trait-validation.rs:6:19 | LL | auto trait Generic<T> {} | -------^^^ | | | ...
[ { "path": "compiler/rustc_ast_passes/messages.ftl", "patch": "@@ -40,7 +40,7 @@ ast_passes_auto_generic = auto traits cannot have generic parameters\n \n ast_passes_auto_items = auto traits cannot have associated items\n .label = {ast_passes_auto_items}\n- .suggestion = remove these associated items\...
2025-02-28T23:37:37