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 |
|---|---|---|---|---|---|
rust-lang/rust | bd5206ee1846f90579e644ebc7874a7300fc6171 | 4f999f72dee5e7085a2a5ed11cd917dcad5143be | mbe: Add test for attribute expansion with `compile_error!` | [
{
"path": "tests/ui/macros/macro-rules-attr-error.rs",
"patch": "@@ -0,0 +1,13 @@\n+#![feature(macro_attr)]\n+\n+macro_rules! local_attr {\n+ attr() { $($body:tt)* } => {\n+ compile_error!(concat!(\"local_attr: \", stringify!($($body)*)));\n+ };\n+ //~^^ ERROR: local_attr\n+}\n+\n+fn main() ... | 2025-08-08T17:31:37 |
golang/go | 44d057d5818e11982b679a83d54e9a4eac4f823f | d88560afd32d18d8c9c3b31c41ae9877ca292e1d | net/http/httputil: do not duplicate 'Connection: close' headers
Fixes #54616.
Change-Id: I46f41bbccff7b49f26f60c1edf65acfd1701aed5
Reviewed-on: https://go-review.googlesource.com/c/go/+/425155
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: David Chase <drchase@google.com>
TryBot-Result: Gopher Robot <gobot@... | [
{
"path": "src/net/http/httputil/dump.go",
"patch": "@@ -258,9 +258,6 @@ func DumpRequest(req *http.Request, body bool) ([]byte, error) {\n \tif len(req.TransferEncoding) > 0 {\n \t\tfmt.Fprintf(&b, \"Transfer-Encoding: %s\\r\\n\", strings.Join(req.TransferEncoding, \",\"))\n \t}\n-\tif req.Close {\n-\t\tfm... | 2022-08-23T12:06:19 |
facebook/react | cf1089fa0e344206eb9c1501f055178812285408 | 00f2a053f0fd4a3923eafe7b4a27450da3bdbe9c | fix grammar mistake | [
{
"path": "docs/docs/ref-08-reconciliation.md",
"patch": "@@ -103,7 +103,7 @@ renderB: <div><span>second</span><span>first</span></div>\n => [replaceAttribute textContent 'second'], [insertNode <span>first</span>]\n ```\n \n-There are many algorithms that attempt to find the minimum sets of operations to tr... | 2014-01-30T03:19:51 |
nodejs/node | 6bcf96840121f2de61def5ad99700fb7eb6ac905 | 88560ce593f87da3e869813b98edad3330ddac72 | module: fix memory leak when require error occurs
Delete useless module in parent module: parent.children array
when error occurs, so that it can be garbage collected.
Fixes: https://github.com/nodejs/node/issues/32836
PR-URL: https://github.com/nodejs/node/pull/32837
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -928,6 +928,13 @@ Module._load = function(request, parent, isMain) {\n delete Module._cache[filename];\n if (parent !== undefined) {\n delete relativeResolveCache[relResolveCacheIdentifier];\n+ const children = parent &&... | 2020-04-14T02:58:01 |
electron/electron | 5fe62d23d9e6922b83452d620bae62710ccb7d0b | 76e1f882c06ec8adb57dc4adedb863c6458ef4f0 | :memo: Fix typos and grammatical errors.
[ci skip] | [
{
"path": "docs-translations/nl/glossary.md",
"patch": "@@ -4,13 +4,13 @@ Deze pagina definieert bepaalde terminologie die veel gebruikt wordt binnen Elec\n \n ### ASAR\n \n-ASAR staat voor \"Atom Shell Archive Format\". Een [asar][asar] archief is een simpel `tar`-achtig formaat die bestanden samenvoegt in... | 2017-02-27T11:38:20 |
vercel/next.js | cce9f0d34f9226aae97337c792cd8616d973f69f | 4df888a55f6deb4dbdd5c1bae633c58e712b96bc | fix(metadata): align metadata suffix hash between turbopack (#57544)
### What?
Wraps up metadata-dynamic-routes tests fixes for the turbopack. There is 1 remaining failing test due to lacks of supporting `import.meta.url` which need to be addressed separately.
I spent amount of time why turbopack cannot find the rou... | [
{
"path": "packages/next-swc/crates/next-core/src/next_app/metadata/mod.rs",
"patch": "@@ -258,7 +258,7 @@ fn djb2_hash(str: &str) -> u32 {\n })\n }\n \n-// this is here to mirror next.js behaviour.\n+// this is here to mirror next.js behaviour (`toString(36).slice(0, 6)`)\n fn format_radix(mut x: u32, ... | 2023-10-30T19:56:55 |
rust-lang/rust | 549c2fee9f210fe838660b66dfe216bc82af29ed | 34be8abb70d1f3247fd7907b6112934742e0abdc | mbe: Handle local `macro_rules` attr resolution
Teach the resolver to consider `macro_rules` macros when looking for a
local attribute. When looking for an attribute and considering a
`macro_rules` macro, load the macro in order to see if it has attribute
rules.
Include a FIXME about tracking multiple macro kinds for... | [
{
"path": "compiler/rustc_resolve/src/ident.rs",
"patch": "@@ -625,9 +625,21 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {\n };\n \n match result {\n- Ok((binding, flags))\n- if sub_namespace_match(binding.macro_kind(), macro_kind) =>\n- ... | 2025-07-27T19:06:02 |
golang/go | fc0d423789e3a2e1f84801be14ac657d41c115e4 | b72521ee505f5f71002d6e9114d32075c2a3b847 | debug/plan9obj: don't crash on EOF before symbol type
No debug/plan9obj test case because the problem can only happen for
invalid data. Let the fuzzer find cases like this.
For #47653
Fixes #54585
Change-Id: I8d3e15725b9bc09dd0e6f2750769987021f5e982
Reviewed-on: https://go-review.googlesource.com/c/go/+/425115
Auto-... | [
{
"path": "src/debug/plan9obj/file.go",
"patch": "@@ -212,6 +212,9 @@ func walksymtab(data []byte, ptrsz int, fn func(sym) error) error {\n \t\t\tp = p[4:]\n \t\t}\n \n+\t\tif len(p) < 1 {\n+\t\t\treturn &formatError{len(data), \"unexpected EOF\", nil}\n+\t\t}\n \t\ttyp := p[0] & 0x7F\n \t\ts.typ = typ\n \t... | 2022-08-23T00:42:54 |
nodejs/node | d3d5eca657474f25fab47036fef9469efc211d8a | a9da65699a43f81076a1560e09ae97ad5630c35f | Revert "n-api: detect deadlocks in thread-safe function"
This reverts commit aeb7084fe6446350ec032e9819746126811bf44f.
The solution creates incorrect behaviour on Windows.
Re: https://github.com/nodejs/node-addon-api/pull/697#issuecomment-612993476
Signed-off-by: Gabriel Schulhof <gabriel.schulhof@intel.com>
PR-URL:... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -457,7 +457,6 @@ typedef enum {\n napi_date_expected,\n napi_arraybuffer_expected,\n napi_detachable_arraybuffer_expected,\n- napi_would_deadlock,\n } napi_status;\n ```\n \n@@ -5096,12 +5095,6 @@ preventing data from being successfully added to the queue. I... | 2020-04-16T14:23:31 |
electron/electron | 76e1f882c06ec8adb57dc4adedb863c6458ef4f0 | 19a948298bf053b0180efc3d6d4382dfd2d0ecb3 | :memo: Fix some grammar mistakes
[ci-skip] | [
{
"path": "docs-translations/nl/glossary.md",
"patch": "@@ -51,35 +51,35 @@ NSIS staat voor \"Nullsoft Scriptable Install System\" is een script gestuurde ins\n \n Een proces is een instantie van een computerprogramma dat wordt uitgevoerd. Electron apps die gebruik maken van het [main] en een of meer [rende... | 2017-02-24T23:08:06 |
vercel/next.js | 0623a4f79fb5521cd21b464f1895485553f3b658 | 6dc7c3c4363276ac05ac2c08f12384b391fa9fd2 | Modify tailwindcss related dependency of `create-next-app` (#57262)
### What?
If the version of `autoprefixer` is 10.0.0 and the version of `tailwindcss` is less than 3.3.0, the error `RangeError: Maximum call stack size exceeded` occurs when you create with tailwindcss & typescript and run it.
### Why?
The exact rea... | [
{
"path": "packages/create-next-app/templates/index.ts",
"patch": "@@ -209,9 +209,9 @@ export const installTemplate = async ({\n if (tailwind) {\n packageJson.devDependencies = {\n ...packageJson.devDependencies,\n- autoprefixer: '^10',\n+ autoprefixer: '^10.0.1',\n postcss: '^8'... | 2023-10-30T17:54:28 |
golang/go | b72521ee505f5f71002d6e9114d32075c2a3b847 | cf26fbb1f6d9644f447342f42d2dddcbe9ceda61 | debug/macho: don't use narch for seenArches map size
If narch is very large we would allocate a lot of memory for seenArches.
In practice we aren't going to see many different architectures so
don't bother to specify a size for the seenArches map.
No debug/macho test case because the problem can only happen for
inval... | [
{
"path": "src/debug/macho/fat.go",
"patch": "@@ -80,7 +80,7 @@ func NewFatFile(r io.ReaderAt) (*FatFile, error) {\n \n \t// Combine the Cpu and SubCpu (both uint32) into a uint64 to make sure\n \t// there are not duplicate architectures.\n-\tseenArches := make(map[uint64]bool, narch)\n+\tseenArches := make... | 2022-08-23T00:37:07 |
rust-lang/rust | 0cc0b11cceae9bbb39bfb9b267e79b05c0d061c1 | f0a5e70507c095c4f912f2b0ec31a18bd1447694 | mbe: Emit an error if a macro call has no function-like rules
Add a FIXME for moving this error earlier. | [
{
"path": "compiler/rustc_expand/src/mbe/diagnostics.rs",
"patch": "@@ -7,7 +7,7 @@ use rustc_macros::Subdiagnostic;\n use rustc_parse::parser::{Parser, Recovery, token_descr};\n use rustc_session::parse::ParseSess;\n use rustc_span::source_map::SourceMap;\n-use rustc_span::{ErrorGuaranteed, Ident, Span};\n... | 2025-08-08T17:38:27 |
nodejs/node | a9da65699a43f81076a1560e09ae97ad5630c35f | 4a6a5c34530e008258c9f603b71504b7ab733292 | test: replace console.log/error() with debuglog
PR-URL: https://github.com/nodejs/node/pull/32692
Fixes: https://github.com/nodejs/node/issues/32678
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Zeyu Yang <himself65@outlook.com>
Reviewed-By: Trivikram Kamat <t... | [
{
"path": "test/parallel/test-domain-http-server.js",
"patch": "@@ -24,6 +24,7 @@ require('../common');\n const domain = require('domain');\n const http = require('http');\n const assert = require('assert');\n+const debug = require('util').debuglog('test');\n \n const objects = { foo: 'bar', baz: {}, num: 4... | 2020-04-06T17:09:29 |
vercel/next.js | 6dc7c3c4363276ac05ac2c08f12384b391fa9fd2 | 9d49afc5eab088209c8142f3f2a3886db78d2a2f | fix(turbopack): don't match empty route groups (#57647)
### What?
Previously the matching just used the last match for children which could lead to empty groups or groups without page matches overriding the actual page.
This PR makes sure this doesn't happen and emits an issue (which unfortunately doesn't get displa... | [
{
"path": "packages/next-swc/crates/next-core/src/app_structure.rs",
"patch": "@@ -400,6 +400,25 @@ pub struct LoaderTree {\n pub global_metadata: Vc<GlobalMetadata>,\n }\n \n+#[turbo_tasks::value_impl]\n+impl LoaderTree {\n+ /// Returns true if there's a page match in this loader tree.\n+ #[turbo... | 2023-10-30T17:44:02 |
electron/electron | 19a948298bf053b0180efc3d6d4382dfd2d0ecb3 | e5d82edf5d529706f924ec8c9c579fda2de15b61 | :memo: Fix some spelling mistakes
[ci-skip] | [
{
"path": "docs-translations/nl/glossary.md",
"patch": "@@ -1,34 +1,34 @@\n # Woordenlijst\n \n-Deze pagina defineerd bepaalde terminologie die veel gebruikt wordt binnen Electron's ontwikkeling.\n+Deze pagina definieert bepaalde terminologie die veel gebruikt wordt binnen Electrons ontwikkeling.\n \n ### A... | 2017-02-23T22:12:46 |
facebook/react | d8e9eb978b3b2bbee7bfaf94dccb25fc8a3fd8ec | 46c6ac5bb03e2f3ca51469a312138ebfedcdaed7 | Fix animation example code
key should never be index into an array or there are bugs. Especially in
transitions.
Fixes #853 | [
{
"path": "docs/docs/09.1-animation.md",
"patch": "@@ -35,7 +35,7 @@ var TodoList = React.createClass({\n render: function() {\n var items = this.state.items.map(function(item, i) {\n return (\n- <div key={i} onClick={this.handleRemove.bind(this, i)}>\n+ <div key={item} onClick={th... | 2014-01-29T21:06:22 |
golang/go | cf26fbb1f6d9644f447342f42d2dddcbe9ceda61 | 70de482d17863e501be44450f8e60500a6f1b459 | strconv: optimize Parse for []byte arguments
When one has a []byte on hand, but desires to call the Parse functions,
the conversion from []byte to string would allocate.
var b []byte = ...
v, err := strconv.ParseXXX(string(b), ...)
This changes it such that the input string never escapes from
any of the Pars... | [
{
"path": "src/strconv/atoc.go",
"patch": "@@ -11,7 +11,7 @@ const fnParseComplex = \"ParseComplex\"\n func convErr(err error, s string) (syntax, range_ error) {\n \tif x, ok := err.(*NumError); ok {\n \t\tx.Func = fnParseComplex\n-\t\tx.Num = s\n+\t\tx.Num = cloneString(s)\n \t\tif x.Err == ErrRange {\n \t... | 2021-08-26T19:02:47 |
rust-lang/rust | f0a5e70507c095c4f912f2b0ec31a18bd1447694 | bad0d45b2dc2b2be36e9e82604a6c3dd95dba08a | mbe: Fix error message for using a macro with no `attr` rules as an attribute
Avoid saying "a declarative macro cannot be used as an attribute macro";
instead, say that the macro has no `attr` rules. | [
{
"path": "compiler/rustc_resolve/messages.ftl",
"patch": "@@ -243,7 +243,7 @@ resolve_lowercase_self =\n .suggestion = try using `Self`\n \n resolve_macro_cannot_use_as_attr =\n- `{$ident}` exists, but a declarative macro cannot be used as an attribute macro\n+ `{$ident}` exists, but has no `attr... | 2025-07-28T11:12:12 |
nodejs/node | 4a6a5c34530e008258c9f603b71504b7ab733292 | 15cc2b652b3199e8bf625c641a72b4233e176ac3 | stream: improve comments regarding end() errors
Cleans up comments and TODOs and tries to provide a
more detail description in regards to error behavior
of end().
PR-URL: https://github.com/nodejs/node/pull/32839
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
R... | [
{
"path": "lib/_stream_writable.js",
"patch": "@@ -598,20 +598,16 @@ Writable.prototype.end = function(chunk, encoding, cb) {\n if (typeof cb !== 'function')\n cb = nop;\n \n- // Ignore unnecessary end() calls.\n- // TODO(ronag): Compat. Allow end() after destroy().\n+ // This is forgiving in terms... | 2020-04-14T06:26:32 |
facebook/react | 4894055114bd0c140189270a6aab93c4adf71959 | 34e6a51e1926e4ab368f2a746f6ba13920a50f80 | Fix docs typo | [
{
"path": "docs/jsx-compiler.md",
"patch": "@@ -7,7 +7,7 @@ id: jsx-compiler\n <h1>JSX Compiler</h1>\n <p>\n This tool demonstrates how <a href=\"/react/docs/jsx-in-depth.html\">JSX syntax</a>\n- is desguared into native JavaScript.\n+ is desugared into native JavaScript.\n </p>\n <div id=... | 2014-01-29T19:19:45 |
golang/go | e7f2e5697ac8b9b6ebfb3e0d059a8c318b4709eb | a6e6b11e3a443ef532bc9b710e893e111f8ea2a3 | encoding/json: give it a chance to put encodeState back in pool when error occurs
name old time/op new time/op delta
CodeEncoderError-10 688µs ± 8% 496µs ±15% -27.92% (p=0.000 n=10+9)
CodeMarshalError-10 747µs ± 6% 546µs ± 4% -26.86% (p=0.000 n=10+10)
Marsh... | [
{
"path": "src/encoding/json/bench_test.go",
"patch": "@@ -99,6 +99,36 @@ func BenchmarkCodeEncoder(b *testing.B) {\n \tb.SetBytes(int64(len(codeJSON)))\n }\n \n+func BenchmarkCodeEncoderError(b *testing.B) {\n+\tb.ReportAllocs()\n+\tif codeJSON == nil {\n+\t\tb.StopTimer()\n+\t\tcodeInit()\n+\t\tb.StartTim... | 2022-08-13T18:29:33 |
rust-lang/rust | bad0d45b2dc2b2be36e9e82604a6c3dd95dba08a | 2054a0c56b063c195d316e4ff44d0c9f8ad2c012 | mbe: Parse macro attribute rules
This handles various kinds of errors, but does not allow applying the
attributes yet.
This adds the feature gate `macro_attr`. | [
{
"path": "compiler/rustc_expand/messages.ftl",
"patch": "@@ -70,6 +70,9 @@ expand_invalid_fragment_specifier =\n invalid fragment specifier `{$fragment}`\n .help = {$help}\n \n+expand_macro_args_bad_delim = macro attribute argument matchers require parentheses\n+expand_macro_args_bad_delim_sugg = t... | 2025-07-06T22:15:01 |
vercel/next.js | 9128b58654fdb7e07a909d6e8b742c28aed78a21 | 3553c6516d7a9aba98876f9660af0ee7c94dc2a3 | fix gsp tracing issue (#57766)
This removes the ignores for dev react bundles which was added as an
optimization but causes issues when react is imported from an ESM module
since all requires are being analyzed for named exports.
Fixes #57582 | [
{
"path": "packages/next/src/build/collect-build-traces.ts",
"patch": "@@ -266,7 +266,6 @@ export async function collectBuildTraces({\n \n const sharedIgnores = [\n '**/next/dist/compiled/next-server/**/*.dev.js',\n- '**/node_modules/react{,-dom,-dom-server-turbopack}/**/*.development.j... | 2023-10-30T17:24:51 |
nodejs/node | a495a5ea4ac740f33bf716b2fb8f1fe8ba8f4bad | 3f5142daa82e91af05fa006116ea69ca888f6bc0 | fs: use finished over destroy w/ cb
destroy w/ is undocumented API which also will cause
a race if the stream is already destroying and potentially
invoking the callback too early and withou error.
PR-URL: https://github.com/nodejs/node/pull/32809
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Lu... | [
{
"path": "lib/internal/fs/streams.js",
"patch": "@@ -23,7 +23,7 @@ const {\n copyObject,\n getOptions,\n } = require('internal/fs/utils');\n-const { Readable, Writable } = require('stream');\n+const { Readable, Writable, finished } = require('stream');\n const { toPathIfFileURL } = require('internal/ur... | 2020-04-13T09:18:56 |
rust-lang/rust | c44fe70d0384d3d83d8f49f4e3045ed3e7e209b9 | 2886b36df4a646dd8d82fb65bf0c9d8d96c1f71a | fix missing parenthesis in pretty discriminant | [
{
"path": "compiler/rustc_public/src/mir/pretty.rs",
"patch": "@@ -100,7 +100,7 @@ fn pretty_statement<W: Write>(writer: &mut W, statement: &StatementKind) -> io::\n writeln!(writer, \"{INDENT}FakeRead({cause:?}, {place:?});\")\n }\n StatementKind::SetDiscriminant { place, varian... | 2025-08-08T17:19:42 |
golang/go | a6e6b11e3a443ef532bc9b710e893e111f8ea2a3 | e1114fdf883de7484c49343d966fd9759ce48c40 | runtime: initialize pointer bits of noscan spans
Some code paths in the runtime (cgo, heapdump) request heap bits
without first checking that the span is !noscan. Instead of trying
to find and work around all those cases, just set the pointer bits
of noscan spans correctly. It's somewhat safer than ensuring we
caught ... | [
{
"path": "src/runtime/mbitmap.go",
"patch": "@@ -32,12 +32,10 @@\n // If ha.noMorePtrs[i]>>j&1 is set, the entries in ha.bitmap[8*i+j+1] and\n // beyond must all be zero until the start of the next object.\n //\n-// The bitmap for noscan spans is not maintained (can be junk). Code must\n-// ensure that an ... | 2022-08-23T17:40:31 |
vercel/next.js | 3553c6516d7a9aba98876f9660af0ee7c94dc2a3 | a07e0de64fcde7d53620a41914e63ae9663a680a | Improve error for missing default export in dynamic metadata routes (#57711)
Displaying hints of "missing default export" if you didn't properly export the `default` handler for og image
```
▲ Next.js 14.0.1-canary.2
- Local: http://localhost:3000
✓ Ready in 1089ms
✓ Compiled /opengraph-image/[[...__... | [
{
"path": "packages/next/src/build/webpack/loaders/next-metadata-route-loader.ts",
"patch": "@@ -3,6 +3,16 @@ import fs from 'fs'\n import path from 'path'\n import { imageExtMimeTypeMap } from '../../../lib/mime-type'\n \n+function errorOnBadHandler(resourcePath: string) {\n+ return `\n+ if (typeof handl... | 2023-10-30T16:36:24 |
facebook/react | d300df51e1003ca293f269b5f04bd8eeeaec7eb4 | 0af9c3ebe762e3a0c8bda7d0722842cffe049638 | Refactor Transaction to not rethrow errors
Rethrowing errors makes debugging harder. This makes it so that an exception in a render method can be caught using the purple stop sign (or the blue one, of course) in Chrome. | [
{
"path": "src/utils/Transaction.js",
"patch": "@@ -27,7 +27,7 @@ var invariant = require('invariant');\n * instantiates a transaction can provide enforcers of the invariants at\n * creation time. The `Transaction` class itself will supply one additional\n * automatic invariant for you - the invariant th... | 2014-01-26T23:51:37 |
nodejs/node | 907ebdd76d45aa7f5dbd0972da79a959e6f34246 | 9c25ab1d30b16fbc560d3abf22a971e9efb63f7a | process: suggest --trace-warnings when printing warning
Suggest using `--trace-warnings` or `--trace-deprecation` the first
time a warning is emitted without a stack trace, similar to how
we suggest `--trace-uncaught` when printing uncaught exceptions
without a stack trace.
PR-URL: https://github.com/nodejs/node/pull... | [
{
"path": "lib/internal/process/warning.js",
"patch": "@@ -58,6 +58,7 @@ function doEmitWarning(warning) {\n return () => process.emit('warning', warning);\n }\n \n+let traceWarningHelperShown = false;\n function onWarning(warning) {\n if (!(warning instanceof Error)) return;\n const isDeprecation = w... | 2020-04-12T16:11:14 |
rust-lang/rust | 2054a0c56b063c195d316e4ff44d0c9f8ad2c012 | a980cd4311ae4b5bf9099d418e32643d068f1344 | mbe: In error messages, don't assume attributes are always proc macros
Now that `macro_rules` macros can define attribute rules, make sure
error messages account for that. | [
{
"path": "compiler/rustc_errors/src/emitter.rs",
"patch": "@@ -409,7 +409,7 @@ pub trait Emitter {\n if !redundant_span || always_backtrace {\n let msg: Cow<'static, _> = match trace.kind {\n ExpnKind::Macro(MacroKind::Attr, _) => {\n- ... | 2025-07-28T10:00:24 |
golang/go | 332a5981d0ae3f21f668f94755f43ecd8ee9a9eb | 503de697cbb77581bb13dd6e596ac20a9a0d03e5 | cmd/compile: handle partially overlapping assignments
Normally, when moving Go values of type T from one location to another,
we don't need to worry about partial overlaps. The two Ts must either be
in disjoint (nonoverlapping) memory or in exactly the same location.
There are 2 cases where this isn't true:
1) Using ... | [
{
"path": "src/cmd/compile/internal/ir/symtab.go",
"patch": "@@ -26,6 +26,7 @@ var Syms struct {\n \tGCWriteBarrier *obj.LSym\n \tGoschedguarded *obj.LSym\n \tGrowslice *obj.LSym\n+\tMemmove *obj.LSym\n \tMsanread *obj.LSym\n \tMsanwrite *obj.LSym\n \tMsanmove ... | 2022-08-22T17:26:50 |
facebook/react | 989eb2e7d9d0f58030e1514959113649c6e1a38b | 4975113f20bc1ca53624e7ee077ed153f2f0324f | Fix references to the old ReactID syntax | [
{
"path": "src/core/ReactInstanceHandles.js",
"patch": "@@ -303,8 +303,8 @@ var ReactInstanceHandles = {\n \n /**\n * Traverse a node ID, calling the supplied `cb` for each ancestor ID. For\n- * example, passing `.r[0].{row-0}.[1]` would result in `cb` getting called\n- * with `.r[0]`, `.r[0].{row-... | 2014-01-26T20:23:00 |
vercel/next.js | a07e0de64fcde7d53620a41914e63ae9663a680a | 8dbf4e616dc76fead49d0b629e1b83850f30b53c | Fix Google Tag Manager URL in Third Party Libraries documentation (#57731)
## Description
Updating the URL for the Google Tag Manager in the Next.js documentation for [Third Party Libraries](https://nextjs.org/docs/pages/building-your-application/optimizing/third-party-libraries).
We were using https://developers.go... | [
{
"path": "docs/02-app/01-building-your-application/06-optimizing/10-third-party-libraries.mdx",
"patch": "@@ -30,7 +30,7 @@ All supported third-party libraries from Google can be imported from `@next/thir\n ### Google Tag Manager\n \n The `GoogleTagManager` component can be used to instantiate a [Google Ta... | 2023-10-30T16:11:48 |
nodejs/node | ee5c8363b65e7e0b13ab5216a932f515601b1caf | 74ec01106d95d850417db71fb9e05a53f61d6017 | doc: note that signatures of binary may be from subkeys
PR-URL: https://github.com/nodejs/node/pull/32591
Fixes: https://github.com/nodejs/node/issues/32559
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com> | [
{
"path": "README.md",
"patch": "@@ -548,7 +548,7 @@ maintaining the Node.js project.\n \n ### Release Keys\n \n-GPG keys used to sign Node.js releases:\n+Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):\n \n * **Beth Griggs** <bethany.griggs@uk.ibm.com>\n `4ED778F539E3634C77... | 2020-04-01T04:41:08 |
electron/electron | 6b138e02150fb39f41f7adfeaf056a180308c244 | dd5fa2df85429679d7f57355702d639663d70cb6 | Fixed typo in translation doc for BrowserWindow | [
{
"path": "docs-translations/zh-TW/tutorial/quick-start.md",
"patch": "@@ -23,8 +23,8 @@ Electron 的用戶擁有在網頁中呼叫 Node.js APIs 的能力,允許低級\n \n ## 主行程與渲染行程的區別\n \n-主行程創造網頁透過創造 `BroswerWindow` 實例。每一個 `BroswerWindow` 實例都在自己的渲染行程裡運行著一個網頁。\n-當一個 `BroswerWindow` 實例被銷毀,對應的渲染行程也會被終止。主行程管理所有網頁和與之對應的渲染行程。\n+主行程創造網頁透過創造 `Br... | 2017-02-27T16:01:44 |
rust-lang/rust | 4eee55691aeb345cbac0ad558003d5f2ed72b478 | 8b95291cd4f0a6e838fec89cb2687d81aff237be | borrowck: defer opaque type errors | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/mod.rs",
"patch": "@@ -51,7 +51,7 @@ mod conflict_errors;\n mod explain_borrow;\n mod move_errors;\n mod mutability_errors;\n-mod opaque_suggestions;\n+mod opaque_types;\n mod region_errors;\n \n pub(crate) use bound_region_errors::{ToUniverseInfo, Universe... | 2025-08-08T17:18:17 |
golang/go | 7d1cab12c77a5fed788829b0566db9dfd7866ac9 | ef22285f31ab16ff6751418705b8a7df8e0d661f | runtime: fix ppc64 startup on newer linux kernels
R0 needs to be cleared at startup as it may not always be cleared
by the kernel on newer kernels.
Fixes #54547
Change-Id: Id7055699aaa8d8b193b7e3e784f075ce29ac3f1d
Reviewed-on: https://go-review.googlesource.com/c/go/+/424927
TryBot-Result: Gopher Robot <gobot@golang... | [
{
"path": "src/runtime/rt0_linux_ppc64.s",
"patch": "@@ -22,6 +22,7 @@ TEXT _main<>(SB),NOSPLIT,$-8\n \t// There is no TLS base pointer.\n \t//\n \t// TODO(austin): Support ABI v1 dynamic linking entry point\n+\tXOR\tR0, R0 // Note, newer kernels may not always set R0 to 0.\n \tMOVD\t$runtime·rt0_go(SB), R1... | 2022-08-19T14:20:02 |
facebook/react | 526be1570e1c08c381d88e7c54703b9f8356cb1e | 4975113f20bc1ca53624e7ee077ed153f2f0324f | Fix memory leak with renderComponentToString()
This is leaking memory. Move event registration to mount time. | [
{
"path": "src/core/ReactDOMComponent.js",
"patch": "@@ -64,16 +64,19 @@ function assertValidProps(props) {\n );\n }\n \n-function putListener(id, registrationName, listener) {\n+function putListener(id, registrationName, listener, transaction) {\n var container = ReactMount.findReactContainerForID(id);... | 2014-01-25T01:10:11 |
vercel/next.js | 8dbf4e616dc76fead49d0b629e1b83850f30b53c | 3248ee71c8e3b4c329e60aec9d8f550612a9ab0a | chore: Update flight-client-entry-plugin.ts typo (#57734)
Updated typo
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're mak... | [
{
"path": "packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts",
"patch": "@@ -197,7 +197,7 @@ export class FlightClientEntryPlugin {\n const modPath = mod.matchResource || mod.resourceResolveData?.path\n const modQuery = mod.resourceResolveData?.query || ''\n // qu... | 2023-10-30T15:31:59 |
nodejs/node | d1587dcd0af155deb36ee51290b2f9842c2a570b | 581d7d4a229aa99c6fbf145b38aa5730c6dbbeef | build: add configure flag to build V8 with DCHECKs
Add a configure flag that enables building V8 with `-DDEBUG`, in
particular with debug checks enabled and with runtime debugging
features, e.g. inspecting JS objects from debuggers, enabled.
PR-URL: https://github.com/nodejs/node/pull/32787
Reviewed-By: Colin Ihrig <... | [
{
"path": "configure.py",
"patch": "@@ -635,6 +635,12 @@\n default=False,\n help='compile V8 with minimal optimizations and with runtime checks')\n \n+parser.add_option('--v8-with-dchecks',\n+ action='store_true',\n+ dest='v8_with_dchecks',\n+ default=False,\n+ help='compile V8 with debu... | 2020-04-11T18:50:59 |
electron/electron | ad03ba73a4234a8e21587b847d5284ecdba4c56c | e6fec57bd86274c5430dd2d7800fd3f58bb17b87 | Upgrade node for Buffer wrapper fix | [
{
"path": "spec/webview-spec.js",
"patch": "@@ -191,7 +191,7 @@ describe('<webview> tag', function () {\n document.body.appendChild(webview)\n })\n \n- it('preload script can require modules that still use \"process\" and \"Buffer\"when nodeintegration is off', function (done) {\n+ it('prelo... | 2017-02-23T19:30:07 |
facebook/react | 4aececb645c041532b17eea50c94c0500d7be48f | 4975113f20bc1ca53624e7ee077ed153f2f0324f | fix incorrect link | [
{
"path": "docs/docs/05-reusable-components.md",
"patch": "@@ -123,7 +123,7 @@ var MyComponent = React.createClass({\n \n Components are the best way to reuse code in React, but sometimes very different components may share some common functionality. These are sometimes called [cross-cutting concerns](http:... | 2014-01-24T18:10:16 |
golang/go | ef22285f31ab16ff6751418705b8a7df8e0d661f | 7f632f76db65f28038b8797fbfe5e15a9f63e387 | all: use go/parser.SkipObjectResolution in more places
None of cgo, "go test", nor srcimporter make use of go/ast's object
resolution via go/ast.Object. As such, we can skip that work during
parse time, which should save some CPU time.
We don't have any benchmark numbers, as none of the three packages have
any usable... | [
{
"path": "src/cmd/cgo/ast.go",
"patch": "@@ -52,8 +52,8 @@ func (f *File) ParseGo(abspath string, src []byte) {\n \t// and reprinting.\n \t// In cgo mode, we ignore ast2 and just apply edits directly\n \t// the text behind ast1. In godefs mode we modify and print ast2.\n-\tast1 := parse(abspath, src, parse... | 2022-04-21T13:17:40 |
vercel/next.js | 3248ee71c8e3b4c329e60aec9d8f550612a9ab0a | 24a71dcd72fd367d415367671efe6eff4d833471 | Fix: Build compilation warning when using middleware (#57685)
### Fixing a bug
- Related issues linked using `fixes #57533`
- Tests added. See: https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs
- Errors have a helpful link attached, see https://github.com/vercel/next.... | [
{
"path": "packages/next/src/shared/lib/router/utils/app-paths.ts",
"patch": "@@ -1,6 +1,5 @@\n import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash'\n import { isGroupSegment } from '../../segment'\n-import { parse, format } from 'url'\n \n /**\n * Normalizes an app route so it represe... | 2023-10-30T02:15:11 |
electron/electron | eb260c35937bb70924c18e15b8bfab9c43493d21 | ea3b14f0bb49217c933a01af77bddd3f0db5d60e | Update parameter prefix | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -1162,7 +1162,7 @@ End subscribing for frame presentation events.\n #### `contents.startDrag(item)`\n \n * `item` Object\n- * `file` String or `files` Array - The path(s) to the file(s) being dragged.\n+ * `file` String or `files` Array - The path(s) to t... | 2017-02-23T21:03:22 |
nodejs/node | f72feb7d70057d223b1131a0527c06a025eaddd0 | 6c2c905948de34215f326c53f48da35e9199272b | cli, report: move --report-on-fatalerror to stable
This commit moves the last experimental feature of diagnostic
reports to stable status.
PR-URL: https://github.com/nodejs/node/pull/32496
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: James M Snell... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -648,14 +648,15 @@ Name of the file to which the report will be written.\n <!-- YAML\n added: v11.8.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/32496\n+ description: This option is no longer considered experimental.\n ... | 2020-03-26T03:11:56 |
golang/go | 7f632f76db65f28038b8797fbfe5e15a9f63e387 | be9e2440a766f4cd1069945ebd2e527cb7fd7594 | encoding/xml: add (*Encoder).Close
Flush can not check for unclosed elements, as more data might be encoded
after Flush is called. Close implicitly calls Flush and also checks that
all opened elements are closed as well.
Fixes #53346
Change-Id: I889b9f5ae54e5dfabb9e6948d96c5ed7bc1110f9
Reviewed-on: https://go-review... | [
{
"path": "api/next/53346.txt",
"patch": "@@ -0,0 +1 @@\n+pkg encoding/xml, method (*Encoder) Close() error #53346",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "src/encoding/xml/marshal.go",
"patch": "@@ -8,6 +8,7 @@ import (\n \t\"bufio\"\n \t\"bytes\"\n \... | 2022-08-18T14:18:34 |
vercel/next.js | d88d8aed36c068d2c1520a3901b02224ec329d38 | 7e1f57bef48a3fe4491948b0e0df1d94ef8a9969 | Typo fix, version "13" to "14" (#57723)
Typo fix | [
{
"path": "docs/03-pages/01-building-your-application/08-upgrading/03-version-14.mdx",
"patch": "@@ -5,7 +5,7 @@ description: Upgrade your Next.js Application from Version 13 to 14.\n \n ## Upgrading from 13 to 14\n \n-To update to Next.js version 13, run the following command using your preferred package m... | 2023-10-30T00:48:12 |
nodejs/node | aa34465ae3135adeee3fc4e120db8f13e8781404 | 1211b9a72f291d487c4ded97b005484e0c6a8a87 | buffer: add type check in bidirectionalIndexOf
Add a type check in bidirectionalIndexOf to avoid using something else
as Buffer. This may happen if e.g. lastIndexOf is called with invalid
this.
PR-URL: https://github.com/nodejs/node/pull/32770
Fixes: https://github.com/nodejs/node/issues/32753
Fixes: https://github.c... | [
{
"path": "lib/buffer.js",
"patch": "@@ -97,6 +97,7 @@ const {\n hideStackFrames\n } = require('internal/errors');\n const {\n+ validateBuffer,\n validateInt32,\n validateString\n } = require('internal/validators');\n@@ -902,6 +903,8 @@ Buffer.prototype.compare = function compare(target,\n // - encod... | 2020-04-10T18:25:48 |
rust-lang/rust | 8b95291cd4f0a6e838fec89cb2687d81aff237be | 2886b36df4a646dd8d82fb65bf0c9d8d96c1f71a | borrowck: move error tainting earlier | [
{
"path": "compiler/rustc_borrowck/src/handle_placeholders.rs",
"patch": "@@ -216,22 +216,11 @@ pub(crate) fn compute_sccs_applying_placeholder_outlives_constraints<'tcx>(\n placeholder_index_to_region: _,\n liveness_constraints,\n mut outlives_constraints,\n- mut member_const... | 2025-08-08T17:16:03 |
facebook/react | 97518fd664f6cab1398e500eb5edccc9f755ff74 | 38491c7c9308d796fe92d72d4f98ad0821809515 | Fix typo | [
{
"path": "docs/docs/ref-02-component-api.md",
"patch": "@@ -9,7 +9,7 @@ next: component-specs.html\n \n ## ReactComponent\n \n-Component classses created by `createClass()` return instances of `ReactComponent` when called. Most of the time when you're using React you're either creating or consuming these c... | 2014-01-23T19:21:20 |
electron/electron | 9a321d2479373f38deb9e02b95b8da799e5f1613 | 80de70bf6690e26c659d56f6772235756aac018d | dont link libfxcrt.a on linux
It causes multiple definition error | [
{
"path": "brightray/brightray.gyp",
"patch": "@@ -115,7 +115,6 @@\n '<(libchromiumcontent_dir)/libfpdfdoc.a',\n '<(libchromiumcontent_dir)/libfpdftext.a',\n '<(libchromiumcontent_dir)/libfxcodec.a',\n- '<(libchromiumcontent_dir)/libfxcr... | 2017-02-09T11:08:11 |
golang/go | de561dc7664c9792964d8fa74a3aa02263ee36b9 | 6985ab27dfd10de6d9e119a51c541a2bc1cbcdf7 | cmd/compile: mark booleans as registerizable
Boolean values fit in registers, mark them accordingly. Improves codegen a bit.
compilecmp for darwin/amd64:
compress/gzip
compress/gzip.(*Reader).Reset 1017 -> 985 (-3.15%)
net
net.newRequest 1002 -> 970 (-3.19%)
crypto/tls
crypto/tls.(*sessionState).unmarshal 1054 -... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -1632,7 +1632,7 @@ func sizeof(t interface{}) int64 {\n // a register. It assumes float64 values will always fit into registers\n // even if that isn't strictly true.\n func registerizable(b *Block, typ *types.Type) bool {\n-\tif typ.IsPtrSha... | 2022-05-25T10:22:22 |
vercel/next.js | 13d61529dc656b13c7ceb03f82505986b69bb4c3 | c88e089ade9c6835da0a6169719460f0b29da0df | examples: fix inngest example for 3.x sdk (#57712)
Co-authored-by: Lee Robinson <me@leerob.io>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> | [
{
"path": "examples/inngest/package.json",
"patch": "@@ -8,7 +8,7 @@\n \"start\": \"next start\"\n },\n \"dependencies\": {\n- \"inngest\": \"^3.4.1\",\n+ \"inngest\": \"latest\",\n \"next\": \"latest\",\n \"react\": \"18.2.0\",\n \"react-dom\": \"18.2.0\"",
"additions": 1,
... | 2023-10-29T16:38:21 |
rust-lang/rust | dcc1605fba0ad04b8bc2d96d044f2ca3711b2219 | 2886b36df4a646dd8d82fb65bf0c9d8d96c1f71a | [win][arm64ec] Partial fix for raw-dylib-link-ordinal on Arm64EC | [
{
"path": "tests/run-make/raw-dylib-link-ordinal/exporter.def",
"patch": "@@ -1,5 +1,5 @@\n LIBRARY exporter\n EXPORTS\n exported_function @13 NONAME\n- exported_variable @5 NONAME\n+ exported_variable @5 NONAME DATA\n print_exported_variable @9 NONAME",
"additions": 1,
"deletions": 1,... | 2025-08-08T16:17:35 |
facebook/react | 91ef878ca864a74571f525dd3b14445ef059fec4 | 2521b4770708e5cd2bd9f0b04d1d8aec621d613e | Fix comparison in _handleLinkedCheckChange | [
{
"path": "src/dom/components/LinkedValueUtils.js",
"patch": "@@ -66,7 +66,7 @@ function _handleLinkedValueChange(e) {\n */\n function _handleLinkedCheckChange(e) {\n /*jshint validthis:true */\n- this.props.checkedLink.requestChange(e.target.checked === 'true');\n+ this.props.checkedLink.requestChang... | 2014-01-17T12:53:57 |
nodejs/node | 2f755ffc8f06cc5a8ffdd067ced21d495ab68281 | 50dd63e8eff2e1b760b87b0e6c36315286b80ba3 | doc: document `buffer.from` returns internal pool buffer
Fixes: https://github.com/nodejs/node/issues/22139
Co-authored-by: Mritunjay Goutam <mritunjaygoutam2204@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/32703
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Re... | [
{
"path": "doc/api/buffer.md",
"patch": "@@ -379,9 +379,10 @@ A `TypeError` will be thrown if `size` is not a number.\n \n The `Buffer` module pre-allocates an internal `Buffer` instance of\n size [`Buffer.poolSize`][] that is used as a pool for the fast allocation of new\n-`Buffer` instances created using ... | 2020-04-07T11:32:04 |
vercel/next.js | c88e089ade9c6835da0a6169719460f0b29da0df | 54a9da0a1edc419b8e84c7b63bcfbdc0e8195114 | fix: move logging config validation out of experimental (#57530) | [
{
"path": "packages/next/src/server/config-schema.ts",
"patch": "@@ -357,12 +357,6 @@ export const configSchema: zod.ZodType<NextConfig> = z.lazy(() =>\n memoryLimit: z.number().int().optional(),\n })\n .optional(),\n- logging: z\n- .object({\n- lev... | 2023-10-29T15:09:33 |
golang/go | 6985ab27dfd10de6d9e119a51c541a2bc1cbcdf7 | 0a6e1fa986e04add090afa50b8e566dca40df760 | cmd/compile: fix unified IR's pointer-shaping
In CL 424734, I implemented pointer shaping for unified IR. Evidently
though, we didn't have any test cases that check that uses of
pointer-shaped expressions were handled correctly.
In the reported test case, the struct field "children items[*node[T]]"
gets shaped to "ch... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -34,6 +34,7 @@ type DebugFlags struct {\n \tNoRefName int `help:\"do not include referenced symbol names in object file\"`\n \tPCTab string `help:\"print named pc-value table\\nOne of: pctospadj, pctofile, pctoline... | 2022-08-19T03:59:26 |
rust-lang/rust | b99fe2b72022f4fe7a6f2e55fd70cc8530566473 | 9badbdf5f9272bf42699edabc14735a1ab42e3d7 | mark polonius=next's NLL imprecisions as known-bugs
- linked-list cursor-like patterns
- issue-46589
These are known-bugs for the polonius alpha, where they show the same
imprecision as NLLs, but are supported by the old datalog
implementation. | [
{
"path": "tests/ui/nll/issue-46589.nll.stderr",
"patch": "@@ -1,5 +1,5 @@\n error[E0499]: cannot borrow `**other` as mutable more than once at a time\n- --> $DIR/issue-46589.rs:24:21\n+ --> $DIR/issue-46589.rs:25:21\n |\n LL | *other = match (*other).get_self() {\n | ... | 2025-08-08T14:29:50 |
facebook/react | 2521b4770708e5cd2bd9f0b04d1d8aec621d613e | 79995a05c7128e430a0a6152f50b703b5b8d4f99 | Fix typo in ReactDOMInput-test | [
{
"path": "src/dom/components/__tests__/ReactDOMInput-test.js",
"patch": "@@ -256,7 +256,7 @@ describe('ReactDOMInput', function() {\n it('should support checkedLink', function() {\n var container = document.createElement('div');\n var link = new ReactLink(true, mocks.getMockFunction());\n- var... | 2014-01-17T12:52:04 |
nodejs/node | 26924faa54142da4635efdefca311a3f3ec369d2 | 8866ff5ab192bff10d641febfeb48b2ffd02a913 | build: add build from tarball
Fixes: https://github.com/nodejs/build/issues/1931
PR-URL: https://github.com/nodejs/node/pull/32129
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Richard Lau <riclau@uk.ibm.com> | [
{
"path": ".github/workflows/build-tarball.yml",
"patch": "@@ -0,0 +1,141 @@\n+name: Build from tarball\n+\n+on: [push, pull_request]\n+\n+env:\n+ FLAKY_TESTS: dontcare\n+\n+jobs:\n+ build-tarball:\n+ env:\n+ PYTHON_VERSION: 3.8\n+ runs-on: macos-latest\n+ steps:\n+ - uses: actions/chec... | 2020-03-06T15:56:33 |
electron/electron | c78d7fc1259ec4c8dbca193cd2e5cdc845f4e4fb | 529b84ff9cae0e12d0c4031a6d253e5d34fe94b3 | add translations files for zh-CN
add zh-CN translations file - debug-instructions-windows.md
add zh-CN translations file - debugging-instructions-macos.md
update zh-CN translations file - README.md | [
{
"path": "docs-translations/zh-CN/README.md",
"patch": "@@ -92,7 +92,7 @@\n * [构建步骤(macOS)](development/build-instructions-osx.md)\n * [构建步骤(Windows)](development/build-instructions-windows.md)\n * [构建步骤(Linux)](development/build-instructions-linux.md)\n-* [调试步骤 (macOS)](development/debug-instructions-maco... | 2017-02-19T13:38:37 |
golang/go | 0a6e1fa986e04add090afa50b8e566dca40df760 | aa6a7fa775d8f38225ad74a622187bbe891eaf1c | cmd/compile: fix "expression has untyped type" ICE in generic code
During walk, we sometimes desugar OEQ nodes into multiple "untyped
bool" expressions, and then use typecheck.Conv to convert back to the
original OEQ node's type.
However, typecheck.Conv had a short-circuit path that if the type is
already identical t... | [
{
"path": "src/cmd/compile/internal/typecheck/typecheck.go",
"patch": "@@ -1818,7 +1818,7 @@ func isTermNode(n ir.Node) bool {\n }\n \n func Conv(n ir.Node, t *types.Type) ir.Node {\n-\tif types.Identical(n.Type(), t) {\n+\tif types.IdenticalStrict(n.Type(), t) {\n \t\treturn n\n \t}\n \tn = ir.NewConvExpr(... | 2022-08-19T04:38:08 |
rust-lang/rust | d4bbd681bbdb2b47717922e46bd022dbf2535403 | 13308988b051ebe014a061b9d595cbb8289348d1 | turn expensive assert into debug assertion | [
{
"path": "compiler/rustc_borrowck/src/polonius/typeck_constraints.rs",
"patch": "@@ -94,8 +94,8 @@ fn localize_statement_constraint<'tcx>(\n // - and that should be impossible in MIR\n //\n // When we have a more complete implementation in the future, tested with crater,... | 2025-06-18T09:01:57 |
nodejs/node | a46345d8af634994e51c10f8756148b037cf05b7 | cf888ac105ffd02bbceef02c16d0df548676abd1 | worker: fix type check in receiveMessageOnPort
Use the same type check we use in `MoveToContext()` in
`ReceiveMessage()`.
Fixes: https://github.com/nodejs/node/issues/32742
PR-URL: https://github.com/nodejs/node/pull/32745
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gerhard Stöbich <deb2001-github@yaho... | [
{
"path": "src/node_messaging.cc",
"patch": "@@ -865,7 +865,12 @@ void MessagePort::Drain(const FunctionCallbackInfo<Value>& args) {\n }\n \n void MessagePort::ReceiveMessage(const FunctionCallbackInfo<Value>& args) {\n- CHECK(args[0]->IsObject());\n+ Environment* env = Environment::GetCurrent(args);\n+ ... | 2020-04-09T16:44:28 |
rust-lang/rust | 13308988b051ebe014a061b9d595cbb8289348d1 | a5adde8eaae4ad5d9510897b02117bf0a9f45d0b | new impl fixes crash test | [
{
"path": "tests/crashes/135646.rs",
"patch": "@@ -1,7 +0,0 @@\n-//@ known-bug: #135646\n-//@ compile-flags: -Zpolonius=next\n-//@ edition: 2024\n-\n-fn main() {\n- &{ [1, 2, 3][4] };\n-}",
"additions": 0,
"deletions": 7,
"language": "Rust"
},
{
"path": "tests/ui/nll/polonius/array-li... | 2025-06-16T14:39:32 |
electron/electron | a1ede4a4b081b9cd71edcf602a4ec6259771b5e8 | 1f75df0253c7cee435f2783029ed26ea20ea7ad0 | fixes os version check of vibrancy | [
{
"path": "atom/browser/native_window_mac.mm",
"patch": "@@ -1280,7 +1280,7 @@ static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,\n }\n \n void NativeWindowMac::SetVibrancy(const std::string& type) {\n- if (!base::mac::IsOS10_10()) return;\n+ if (!base::mac::IsAtLeastOS10_10()) return;\n ... | 2017-02-18T19:25:03 |
golang/go | aa6a7fa775d8f38225ad74a622187bbe891eaf1c | 72a76ca1f9c195ed39e929cf768d5df5421eada1 | cmd/compile: fix reflect naming of local generic types
To disambiguate local types, we append a "·N" suffix to their name and
then trim it off again when producing their runtime type descriptors.
However, if a local type is generic, then we were further appending
the type arguments after this suffix, and the code in ... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -777,8 +777,13 @@ func (dict *readerDict) mangle(sym *types.Sym) *types.Sym {\n \t\treturn sym\n \t}\n \n+\t// If sym is a locally defined generic type, we need the suffix to\n+\t// stay at the end after mangling so that types/fmt.go can str... | 2022-08-18T22:16:23 |
nodejs/node | 57aba5e454d86b5142074d44225e64e6d63440b4 | 5c535386ac6f352f56663737e90a72ffb4a750b3 | build: output dots instead of tap in GitHub actions
This makes the output much smaller and lets us focus on errors if there
are any.
PR-URL: https://github.com/nodejs/node/pull/32714
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Re... | [
{
"path": ".github/workflows/test-linux.yml",
"patch": "@@ -20,4 +20,4 @@ jobs:\n - name: Build\n run: make build-ci -j2 V=1\n - name: Test\n- run: make run-ci -j2 V=1\n+ run: make run-ci -j2 V=1 TEST_CI_ARGS=\"-p dots\"",
"additions": 1,
"deletions": 1,
"langua... | 2020-04-07T18:23:34 |
rust-lang/rust | c3e504d399a51781f328d4195c79ce9b7d44388d | 2886b36df4a646dd8d82fb65bf0c9d8d96c1f71a | Fix wasm target build with atomics feature | [
{
"path": "library/std/src/sys/pal/wasm/atomics/thread.rs",
"patch": "@@ -56,6 +56,10 @@ impl Thread {\n pub fn join(self) {}\n }\n \n+pub(crate) fn current_os_id() -> Option<u64> {\n+ None\n+}\n+\n pub fn available_parallelism() -> io::Result<NonZero<usize>> {\n unsupported()\n }",
"addition... | 2025-08-08T13:27:46 |
electron/electron | 203a920c6458595f7ad70ccc37193cb617533958 | 5e30ccd8910cd2a425ac19c8ff0c35851e1f0726 | fix signature of zoom getter apis | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -1672,9 +1672,9 @@ void WebContents::BuildPrototype(v8::Isolate* isolate,\n .SetMethod(\"getFrameRate\", &WebContents::GetFrameRate)\n .SetMethod(\"invalidate\", &WebContents::Invalidate)\n .SetMethod(\"setZoomLevel\", &We... | 2017-02-15T22:14:24 |
golang/go | 72a76ca1f9c195ed39e929cf768d5df5421eada1 | c94633d2f89119e0f6788db09bd3df5153243f37 | cmd/compile: restore test/nested.go test cases
When handling a type declaration like:
```
type B A
```
unified IR has been writing out that B's underlying type is A, rather
than the underlying type of A.
This is a bit awkward to implement and adds complexity to importers,
who need to handle resolving the underlying... | [
{
"path": "src/cmd/compile/internal/noder/writer.go",
"patch": "@@ -432,8 +432,9 @@ func (pw *pkgWriter) pkgIdx(pkg *types2.Package) pkgbits.Index {\n // @@@ Types\n \n var (\n-\tanyTypeName = types2.Universe.Lookup(\"any\").(*types2.TypeName)\n-\truneTypeName = types2.Universe.Lookup(\"rune\").(*types2.Ty... | 2022-08-18T18:04:21 |
vercel/next.js | ee9a13aaa0592102e229bb3e5959cebe0a7a060c | 86d3043d22e58344d785ed9cf6fc15de0c8c8c3d | docs: fix incorrect heading structure in codemods (#57605)
Fixes #57593 | [
{
"path": "docs/02-app/01-building-your-application/09-upgrading/01-codemods.mdx",
"patch": "@@ -28,7 +28,7 @@ Replacing `<transform>` and `<path>` with appropriate values.\n \n #### Migrate `ImageResponse` imports\n \n-#### `next-og-import`\n+##### `next-og-import`\n \n ```bash filename=\"Terminal\"\n npx ... | 2023-10-28T01:54:49 |
rust-lang/rust | f4094ea25236bc4ba3d9b7b03d2674ba7ab92907 | 43327b5da6bc4ccbddebb935b1bcf362ccb8f993 | update test expectations for boring locals + dropckoutlives interactions
The suboptimal error only appears with NLLs due to liveness differences
where polonius cannot have as many boring locals. Sometimes this causes
NLLs to emit a duplicate error as well. | [
{
"path": "tests/ui/drop/dropck-normalize-errors.nll.stderr",
"patch": "@@ -1,44 +1,44 @@\n error[E0277]: the trait bound `NonImplementedStruct: NonImplementedTrait` is not satisfied in `ADecoder<'a>`\n- --> $DIR/dropck-normalize-errors.rs:15:28\n+ --> $DIR/dropck-normalize-errors.rs:19:28\n |\n LL | f... | 2025-03-24T07:09:18 |
facebook/react | de7a92afa703d27cf05f176b2bbd176beb03ea52 | d829d1ab9b9c8e6a3a07fb987f609be3f71d081c | Updating error message to also show part of the code, making it easier to find the error | [
{
"path": "vendor/browser-transforms.js",
"patch": "@@ -37,6 +37,43 @@ exports.exec = function(code) {\n \n var inlineScriptCount = 0;\n \n+// This method returns a nicely formated line of code pointing the\n+// exactly location of the error `e`.\n+// The line is limited in size so big lines of code are als... | 2013-12-30T03:40:16 |
nodejs/node | ce21749742d4211638a38e0e5a0364478de8a9c9 | df05b0785b9e611a41fe9bad704a6df630fe439b | build: move doc versions JSON file out of out/doc
Move the generated previous doc versions JSON file out of `out/doc` to
prevent it being included in the distributed packages.
Signed-off-by: Richard Lau <riclau@uk.ibm.com>
PR-URL: https://github.com/nodejs/node/pull/32728
Fixes: https://github.com/nodejs/build/issue... | [
{
"path": "Makefile",
"patch": "@@ -784,7 +784,7 @@ 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+VERSIONS_DATA = out/previous-doc-versions.json\n gen-api = tools/doc/generat... | 2020-04-08T23:03:52 |
golang/go | c94633d2f89119e0f6788db09bd3df5153243f37 | f9cdc09497af299ef6a4d4d745aa0df4ebfdce52 | time: fix Parse for time zones
The hours, minutes, and seconds fields for time zones
should not have any plus or minus signs.
Use getnum instead of atoi since the latter implicitly
handles leading signs, while the former does not.
Fixes #54570
Change-Id: If9600170af3af999739c27d81958e3649946913a
Reviewed-on: https:/... | [
{
"path": "src/time/format.go",
"patch": "@@ -1233,12 +1233,12 @@ func parse(layout, value string, defaultLocation, local *Location) (Time, error)\n \t\t\t\tsign, hour, min, seconds, value = value[0:1], value[1:3], value[3:5], \"00\", value[5:]\n \t\t\t}\n \t\t\tvar hr, mm, ss int\n-\t\t\thr, err = atoi(hou... | 2022-08-21T09:52:01 |
vercel/next.js | 26b71fcf9f3f21109fb5ca3bcdcee4092263c1e3 | 27471acd30e839703de0f83af9f6f2e53451b6de | docs: Fix typos in third parties section (#57592) | [
{
"path": "docs/02-app/01-building-your-application/06-optimizing/10-third-party-libraries.mdx",
"patch": "@@ -88,7 +88,7 @@ export default function MyApp({ Component, pageProps }) {\n \n </PagesOnly>\n \n-To load Google Tag Manager for a single route, include the comopnent in your page file:\n+To load Goog... | 2023-10-28T01:52:44 |
rust-lang/rust | d9b725abb02c5c648b847b0b4d13b213567df0e1 | 2886b36df4a646dd8d82fb65bf0c9d8d96c1f71a | Improve error output when a command fails in bootstrap | [
{
"path": "src/bootstrap/src/utils/exec.rs",
"patch": "@@ -80,11 +80,21 @@ impl CommandFingerprint {\n /// Helper method to format both Command and BootstrapCommand as a short execution line,\n /// without all the other details (e.g. environment variables).\n pub fn format_short_cmd(&self) -> St... | 2025-08-08T11:16:07 |
facebook/react | b1a949ed455dbecc1d7c868d723c76576ae713f9 | 4b392f19a88b099f25f99978a40851c9b5aa0b50 | Adds the filename to JSXTransform error message, making it easier to debug JSX syntax errors. | [
{
"path": "vendor/browser-transforms.js",
"patch": "@@ -41,7 +41,20 @@ var transformCode = function(code, source) {\n var jsx = docblock.parseAsObject(docblock.extract(code)).jsx;\n \n if (jsx) {\n- var transformed = transformReact(code);\n+ try {\n+ var transformed = transformReact(code);\n+... | 2013-12-28T00:42:57 |
nodejs/node | df05b0785b9e611a41fe9bad704a6df630fe439b | 468d05aa8544fdaeb11ffcc72263927d2f889ab1 | doc: add useful v8 option section
This adds new section for v8 options and --max-old-space-size
Fixes: https://github.com/nodejs/node/issues/32252
PR-URL: https://github.com/nodejs/node/pull/32262
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -1419,6 +1419,30 @@ threadpool by setting the `'UV_THREADPOOL_SIZE'` environment variable to a value\n greater than `4` (its current default value). For more information, see the\n [libuv threadpool documentation][].\n \n+## Useful V8 options\n+\n+V8 has its own set ... | 2020-03-14T16:30:07 |
golang/go | f9cdc09497af299ef6a4d4d745aa0df4ebfdce52 | 4e9183cb14bf58011389c8a8c8ccaecd3ef50451 | time: fix Parse for empty seconds
The error return value of the seconds field is overwritten
and not checked in the presence of a fractional second.
Perform an explicit check for errors.
Fixes #54569
Change-Id: I1204c8bdcd5a5a09b773d9e44748141ed1e5cb20
Reviewed-on: https://go-review.googlesource.com/c/go/+/425036
Re... | [
{
"path": "src/time/format.go",
"patch": "@@ -1135,6 +1135,9 @@ func parse(layout, value string, defaultLocation, local *Location) (Time, error)\n \t\t\t}\n \t\tcase stdSecond, stdZeroSecond:\n \t\t\tsec, value, err = getnum(value, std == stdZeroSecond)\n+\t\t\tif err != nil {\n+\t\t\t\tbreak\n+\t\t\t}\n \t... | 2022-08-21T09:21:49 |
facebook/react | 79beb71d69c8c0c6c6c3ee432f9d7c335ed3157a | d489637a4f1b3c11ad3a47c8d2b7f5d0a46fca1a | Fix ChangeEventPlugin Dependencies
When React moved to attaching top-level event listeners on-demand, not all of the dependencies for `ChangeEventPlugin` were set. This led to `onChange` events not firing under certain circumstances. For example, listening to `onChange` on a checkbox will not work because it relies on... | [
{
"path": "src/eventPlugins/ChangeEventPlugin.js",
"patch": "@@ -40,10 +40,12 @@ var eventTypes = {\n dependencies: [\n topLevelTypes.topBlur,\n topLevelTypes.topChange,\n+ topLevelTypes.topClick,\n topLevelTypes.topFocus,\n topLevelTypes.topInput,\n topLevelTypes.topK... | 2014-01-17T20:47:00 |
vercel/next.js | ec20e2464508a1d952e06c22374cbd2c08fac9ae | 71116ce3648c3c715d1de5380bee72ee71be1992 | [Traces] Await the flush of the trace write stream to make sure trace file is written (#57641)
This PR fixes an issue where sometimes the `.next/trace` file would not be written at the end of a build. The process was not waiting for the write stream to be flushed before closing, losing the contents of the trace, which... | [
{
"path": "packages/next/src/trace/report/to-json.ts",
"patch": "@@ -174,7 +174,7 @@ export default {\n const phase = traceGlobals.get('phase')\n // Only end writeStream when manually flushing in production\n if (phase !== PHASE_DEVELOPMENT_SERVER) {\n- writeStream.e... | 2023-10-27T22:14:34 |
rust-lang/rust | cde14e65bf4d072ab38cf7e909113979b12ae044 | 2886b36df4a646dd8d82fb65bf0c9d8d96c1f71a | apply_member_constraints: fix placeholder check | [
{
"path": "compiler/rustc_borrowck/src/handle_placeholders.rs",
"patch": "@@ -103,6 +103,10 @@ impl RegionTracker {\n self.max_nameable_universe\n }\n \n+ pub(crate) fn max_placeholder_universe_reached(self) -> UniverseIndex {\n+ self.max_placeholder_universe_reached\n+ }\n+\n f... | 2025-06-05T10:01:20 |
nodejs/node | 4439009d6531230f2f15992483d136bcc416c6ae | 153524300829565b43635efa11a67bde90b99854 | lib: fix return type of setTimeout in net.Socket
Function setTimeout in net.Socket should return this,
not undefined, as doc said.
PR-URL: https://github.com/nodejs/node/pull/32722
Refs: https://nodejs.org/api/net.html#net_socket_settimeout_timeout_callback
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By... | [
{
"path": "lib/internal/stream_base_commons.js",
"patch": "@@ -238,7 +238,7 @@ function onStreamRead(arrayBuffer) {\n \n function setStreamTimeout(msecs, callback) {\n if (this.destroyed)\n- return;\n+ return this;\n \n this.timeout = msecs;\n ",
"additions": 1,
"deletions": 1,
"langua... | 2020-04-08T15:43:30 |
golang/go | 4e9183cb14bf58011389c8a8c8ccaecd3ef50451 | 42794f3871c35d1b3837f78f29d781b6ab1c1a64 | time: fix Parse to ignore extra sub-nanosecond digits
This modifies the code to match the comment such that
the behavior truly is identical to stdSecond case.
Also, it modifies the behavior to match the documented
behavior where:
Fractional seconds are truncated to nanosecond precision.
Fixes #54567
Updates #486... | [
{
"path": "src/time/format.go",
"patch": "@@ -1278,7 +1278,7 @@ func parse(layout, value string, defaultLocation, local *Location) (Time, error)\n \t\t\t// Take any number of digits, even more than asked for,\n \t\t\t// because it is what the stdSecond case would do.\n \t\t\ti := 0\n-\t\t\tfor i < 9 && i+1 ... | 2022-08-21T09:36:24 |
rust-lang/rust | ac862c0ffb7b9df22b24603925ce299f8638b712 | 8441f95ec70a2ee5cde4d1b8c81203860e4f5bb9 | fix typos
Co-authored-by: Rémy Rakic <remy.rakic+github@gmail.com> | [
{
"path": "tests/ui/impl-trait/member-constraints/incomplete-constraint.rs",
"patch": "@@ -1,8 +1,8 @@\n //@ check-pass\n // FIXME(-Znext-solver): enable this test\n \n-// These functions currently does not normalize the opaque type but will do\n-// so in the future. At this point we've got a new use of the... | 2025-08-08T11:49:27 |
facebook/react | 4f53f587544a290dd20926700eba87e375ff06c6 | ef4bda326ed13bbc60bc94185a734439da0e60fd | docs fix back link in Examples | [
{
"path": "docs/docs/10-examples.md",
"patch": "@@ -3,7 +3,7 @@ id: examples\n title: Examples\n layout: docs\n permalink: examples.html\n-prev: addons.html\n+prev: class-name-manipulation.html\n ---\n \n ### Production Apps",
"additions": 1,
"deletions": 1,
"language": "Markdown"
}
] | 2014-01-17T19:56:35 |
vercel/next.js | 71116ce3648c3c715d1de5380bee72ee71be1992 | 08fdc1ebcf3132ea9a697cd6d492eacc4f2dbb75 | debug: Add tags to next build traces to track build configuration in the .next/trace file (#56965)
This PR adds two simple tags to the `.next/trace` output for the `next-build` span to keep track of parameters to the build step when looking at build traces, and a `isTurbotrace` for the tracing step. | [
{
"path": "packages/next/src/build/collect-build-traces.ts",
"patch": "@@ -193,7 +193,9 @@ export async function collectBuildTraces({\n const excludeGlobKeys = Object.keys(outputFileTracingExcludes)\n \n await nextBuildSpan\n- .traceChild('node-file-trace-build')\n+ .traceChild('node-file-trace-bu... | 2023-10-27T21:51:26 |
electron/electron | 36e6501c447469813f5625c9c8500be442b4117b | 9be42db8d54dc15242567e4847dda7927dac6d60 | Rename variable for compiler error | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -1506,9 +1506,9 @@ void WebContents::Invalidate() {\n if (osr_rwhv)\n osr_rwhv->Invalidate();\n } else {\n- const auto owner_window = owner_window();\n- if (owner_window)\n- owner_window->Invalidate();\n+ const aut... | 2017-02-14T20:30:23 |
nodejs/node | 6f9f546406820dc9e233380e061081c9bcd1de0b | 32e3a6bb87f2f88b8f54ff9e9f216aa5f5f0a647 | src: use env->RequestInterrupt() for inspector MainThreadInterface
This simplifies the code significantly, and removes the dependency of
the inspector code on the availability of a `MultiIsolatePlatform`
(by removing the dependency on a platform altogether).
It also fixes a memory leak that occurs when `RequestInterr... | [
{
"path": "src/env.h",
"patch": "@@ -1249,6 +1249,9 @@ class Environment : public MemoryRetainer {\n inline void set_process_exit_handler(\n std::function<void(Environment*, int)>&& handler);\n \n+ void RunAndClearNativeImmediates(bool only_refed = false);\n+ void RunAndClearInterrupts();\n+\n pr... | 2020-03-22T18:04:57 |
golang/go | 42794f3871c35d1b3837f78f29d781b6ab1c1a64 | 9f0f87c806b7a11b2cb3ebcd02eac57ee389c43a | runtime: move traceStackTable.lock to the system stack
This lock is acquired under trace.lock, which as of CL 418956
(6c2e327e35b) must be acquired on the system stack, so this lock must
be, too.
Fixes #54553.
Change-Id: I4fb0c0c2dfc3cb94b76673e842ad416305a31238
Reviewed-on: https://go-review.googlesource.com/c/go/+... | [
{
"path": "src/runtime/trace.go",
"patch": "@@ -1054,7 +1054,7 @@ func (buf *traceBuf) byte(v byte) {\n // traceStackTable maps stack traces (arrays of PC's) to unique uint32 ids.\n // It is lock-free for reading.\n type traceStackTable struct {\n-\tlock mutex\n+\tlock mutex // Must be acquired on the syste... | 2022-08-22T20:14:34 |
vercel/next.js | c380d9156270d21c9683393a31312c0e5edc81ea | 27106a481b4e5611c2d262c810f6b44e707b8c4e | docs: fix broken link to demo (#57229)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### ... | [
{
"path": "examples/with-supabase/README.md",
"patch": "@@ -33,7 +33,7 @@\n \n ## Demo\n \n-You can view a fully working demo at [demo-nextjs-with-supabase.com](https://demo-nextjs-with-supabase.com).\n+You can view a fully working demo at [demo-nextjs-with-supabase.vercel.app](https://demo-nextjs-with-supa... | 2023-10-27T01:14:08 |
nodejs/node | 583edd9526b3b9a6965761c7cf53495957f082ef | c66421452686c1f93a708b1edcd4ca8d48037f25 | src: fix cleanup hook removal for InspectorTimer
Fix this to account for the fact that `Stop()` may already have been
called from a cleanup hook when the `inspector::Agent` is deleted
along with the `Environment`, at which point cleanup hooks are no
longer available.
PR-URL: https://github.com/nodejs/node/pull/32523
... | [
{
"path": "src/inspector_agent.cc",
"patch": "@@ -357,32 +357,26 @@ class InspectorTimer {\n int64_t interval_ms = 1000 * interval_s;\n uv_timer_start(&timer_, OnTimer, interval_ms, interval_ms);\n timer_.data = this;\n-\n- env->AddCleanupHook(CleanupHook, this);\n }\n \n InspectorTimer(c... | 2020-03-27T20:38:39 |
facebook/react | c72e9068418680c447ed029a894e6209d809776e | 17de85689ed691eb970c3cba8c8562a92c994657 | Fix double-binding to submit event
Fixes #916. | [
{
"path": "src/core/ReactEventEmitter.js",
"patch": "@@ -79,6 +79,10 @@ var merge = require('merge');\n var alreadyListeningTo = {};\n var isMonitoringScrollValue = false;\n var reactTopListenersCounter = 0;\n+\n+// For events like 'submit' which don't consistently bubble (which we trap at a\n+// lower node... | 2014-01-17T10:55:07 |
golang/go | ae303ff282feed715de0374890737ccdaee1e053 | 8bf9e014736064de436c411a95467b583f430dea | cmd/compile: fix missing typecheck when rewriting abi.FuncPCABIxxx
Discover when running "go test -run=TestNewOSProc0 -gcflags=-d=checkptr"
Change-Id: I988da56fd3122a21673e86d7dd327ed05914ab72
Reviewed-on: https://go-review.googlesource.com/c/go/+/425040
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Cuo... | [
{
"path": "src/cmd/compile/internal/walk/expr.go",
"patch": "@@ -545,8 +545,7 @@ func walkCall(n *ir.CallExpr, init *ir.Nodes) ir.Node {\n \t\t\tvar e ir.Node = ir.NewLinksymExpr(n.Pos(), fn.Sym().LinksymABI(abi), types.Types[types.TUINTPTR])\n \t\t\te = ir.NewAddrExpr(n.Pos(), e)\n \t\t\te.SetType(types.Ty... | 2022-08-21T15:52:36 |
vercel/next.js | 27106a481b4e5611c2d262c810f6b44e707b8c4e | 0bb6b56c8213e1fdec0ce1e2f19b9ecb855433b3 | Fix incorrect link in GTM docs (#57547)
Previously options and link for tag manager refers to maps embed documentation | [
{
"path": "docs/02-app/01-building-your-application/06-optimizing/10-third-party-libraries.mdx",
"patch": "@@ -168,8 +168,8 @@ function.\n \n #### Options\n \n-Options to pass to the Google Maps Embed. For a full list of options, read the [Google Map Embed\n-docs](https://developers.google.com/maps/document... | 2023-10-27T01:11:31 |
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.