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
facebook/react
139020d98218a94c66be150750d2b0fdc007bea4
15e6968ad5f3b3b20d2835423d30ef2c852412fa
Fixed link to displayName component spec from JSX in depth article
[ { "path": "docs/docs/02.1-jsx-in-depth.md", "patch": "@@ -73,7 +73,7 @@ var app = React.createElement(\n );\n ```\n \n-JSX will infer the class's [displayName](/react/docs/component-specs.html#displayName) from the variable assignment when the displayName is undefined:\n+JSX will infer the class's [displayN...
2015-03-29T11:20:33
nodejs/node
018a6a4ab13247958a2db3203e15e4338f87c6dc
2d868fe822af00c65c9487546e0f313ef3d04564
doc: fix header level for error code PR-URL: https://github.com/nodejs/node/pull/35219 Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -920,7 +920,7 @@ A `Promise` that was callbackified via `util.callbackify()` was rejected with a\n falsy value.\n \n <a id=\"ERR_FEATURE_UNAVAILABLE_ON_PLATFORM\"></a>\n-#### `ERR_FEATURE_UNAVAILABLE_ON_PLATFORM`\n+### `ERR_FEATURE_UNAVAILABLE_ON_PLATFORM`\n <!-- ...
2020-09-15T22:11:30
golang/go
5c834a2eb051a0227814b5ea31437aac3ade100c
cafb49ac731f862f386862d64b27b8314eeb2909
go/types, types2: implement type checking of "clear" built-in Will become available with Go 1.21. Recognizing the `clear` built-in early is not causing any problems: if existing code defines a `clear`, that will be used as before. If code doesn't define `clear` the error message will make it clear that with 1.21 the ...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -232,6 +232,33 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\tx.typ = Typ[Int]\n \t\tx.val = val\n \n+\tcase _Clear:\n+\t\t// clear(m)\n+\t\tif !check.allowVersion(check.pkg, 1, 21) {\n+\t\t\tche...
2022-11-04T22:12:32
vercel/next.js
6bc07792a4462a4bf921a72ab30dc4ab2c4e1bda
7097e564a79e7cd2db2cc9f0e1d6ee96b23cfbca
Refine revalidatePath `type` argument (#61159) <!-- 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": "docs/02-app/02-api-reference/04-functions/revalidatePath.mdx", "patch": "@@ -17,7 +17,7 @@ revalidatePath(path: string, type?: 'page' | 'layout'): void;\n ```\n \n - `path`: Either a string representing the filesystem path associated with the data you want to revalidate (for example, `/product/[s...
2024-01-26T13:30:18
facebook/react
fdcf1f2b0ee205a0cd072dad96e059f2e8de6f60
f3d3ccb8b318c5c80926235fb8917898fabf6787
Update tutorial.md Grammar fix
[ { "path": "docs/docs/tutorial.md", "patch": "@@ -168,7 +168,7 @@ Notice how we're mixing HTML tags and components we've built. HTML components ar\n \n ### Using props\n \n-Let's create the `Comment` component, which will depend on data passed in from it's parent. Data passed in from a parent component is av...
2015-03-28T18:37:55
electron/electron
d27f7c25b396646a9fe82303bdbcfa47cdcc8214
5843c981533301eaf4aa663bce835c288eab7479
Revert "PrinterInfo options object causes TypeScript error"
[ { "path": "docs/api/structures/printer-info.md", "patch": "@@ -4,7 +4,6 @@\n * `description` String\n * `status` Number\n * `isDefault` Boolean\n-* `options` Object - Additional fields\n \n ## Example\n ", "additions": 0, "deletions": 1, "language": "Markdown" } ]
2017-09-24T02:11:04
nodejs/node
59ca56eddefc78bab87d7e8e074b3af843ab1bc3
c314c04079bbf93d786a5855d0eaaed30d36820e
doc: fix small grammatical issues in timers.md PR-URL: https://github.com/nodejs/node/pull/35203 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "doc/api/timers.md", "patch": "@@ -130,15 +130,14 @@ of the Node.js application.\n added: v14.9.0\n -->\n \n-* Returns: {integer} number that can be used to reference this `timeout`\n-\n-Coerce a `Timeout` to a primitive, a primitive will be generated that\n-can be used to clear the `Timeout`.\n-T...
2020-09-15T03:49:48
vercel/next.js
7097e564a79e7cd2db2cc9f0e1d6ee96b23cfbca
5d0b29c04640811ca5167234aa8d81363553c034
Ensure test upload step fails (#61188) ## What? Been seeing a mismatch in total amount of tests reported in areweturboyet for some time now and dug into that problem. Turns out that when the test suite fails it does not stop reporting as the default for upload-artifact is to warn when the file is missing. In thi...
[ { "path": ".github/workflows/nextjs-integration-test.yml", "patch": "@@ -90,6 +90,7 @@ jobs:\n uses: actions/upload-artifact@v4\n with:\n name: test-reports-dev-${{ matrix.group }}\n+ if-no-files-found: 'error'\n path: |\n test/turbopack-test-junit-re...
2024-01-26T10:52:42
golang/go
cafb49ac731f862f386862d64b27b8314eeb2909
f3ae7ac9d90a26e9bba1589ae934e62bf0ac17e0
go/parser: allow trailing commas in embedded instantiated types go/parser can correctly parse interfaces that instantiate and embed generic interfaces, but not structs. This is because in the case of structs, it does not expect RBRACK as a token trailing COMMA in the type argument, even though it is allowed by the spe...
[ { "path": "src/go/parser/parser.go", "patch": "@@ -587,15 +587,19 @@ func (p *parser) parseArrayFieldOrTypeInstance(x *ast.Ident) (*ast.Ident, ast.Ex\n \t\tdefer un(trace(p, \"ArrayFieldOrTypeInstance\"))\n \t}\n \n-\t// TODO(gri) Should we allow a trailing comma in a type argument\n-\t// list suc...
2022-11-14T08:01:03
nodejs/node
c24ad832bbc6476eeb90deafdebb758ecd68d0de
fe293e914c3b9a65d2024971ebbefcf8a93dc549
build: increase API requests for stale action The second attempt at getting the auto closing of issues & PRs to work as expected without hitting a maximum operations allowed error we've been seeing. Recently discovered that the mentioned error is actually self imposed by the stale action itself. It keeps track of how...
[ { "path": ".github/workflows/close-stalled.yml", "patch": "@@ -17,6 +17,8 @@ jobs:\n close-pr-message: Closing this because it has stalled. Feel free to reopen if this PR is still relevant, or to ping the collaborator who labelled it stalled if you have any questions.\n # used to filter issu...
2020-09-16T20:18:19
facebook/react
3c9ea7279513cd6e009e15b4b6ed9eac6b9ad02a
b32fbef7c51462287b4e56ec989398d994b093ee
Display error when trying to create an element of type boolean. Fixes #3478
[ { "path": "src/classic/element/ReactElementValidator.js", "patch": "@@ -362,7 +362,8 @@ function checkAndWarnForMutatedProps(element) {\n * @param {ReactElement} element\n */\n function validatePropTypes(element) {\n- if (element.type == null) {\n+ if (element.type == null || !(typeof element.type === '...
2015-03-26T08:21:54
vercel/next.js
883e958271df923222c0e28bf75f3df02349e4a3
5dfaa40fce7d9122ff35340c20b62b53cea8d300
build: remove sentry from the externals list (#61194) Context: - on app router, we bundle all the code used both on server and client - sentry used to be incompatible with that, however a raw require call on production to Sentry leads to a 350ms impact on cold boots/initial load - it might be ok to bundle now, le...
[ { "path": "packages/next/src/lib/server-external-packages.json", "patch": "@@ -8,8 +8,6 @@\n \"@mikro-orm/core\",\n \"@mikro-orm/knex\",\n \"@prisma/client\",\n- \"@sentry/nextjs\",\n- \"@sentry/node\",\n \"@sentry/profiling-node\",\n \"@swc/core\",\n \"argon2\",", "additions": 0, "del...
2024-01-26T10:24:02
rust-lang/rust
2c361f826756fa9c14e611c01b6f6717ecbd19f2
adddae65368c28d36c4202458aa9bf387c5a6d06
remove old crash test
[ { "path": "tests/crashes/137580.rs", "patch": "@@ -1,4 +0,0 @@\n-//@ known-bug: #137580\n-fn main() {\n- println!(\"%65536$\", 1);\n-}", "additions": 0, "deletions": 4, "language": "Rust" }, { "path": "tests/ui/macros/format-foreign-dollar-without-spec.rs", "patch": "@@ -1,3 +1,4 ...
2025-08-27T05:39:33
nodejs/node
d4aac8399247ceb57cc517cb51ccdb24696ab4b5
dfa2dada07ce5804d392f6ed0f8ff1503e530ce1
doc: fix missing word in dgram.md The word "cannot" is missing from this sentence PR-URL: https://github.com/nodejs/node/pull/35231 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail...
[ { "path": "doc/api/dgram.md", "patch": "@@ -524,7 +524,7 @@ The maximum size of an `IPv4/v6` datagram depends on the `MTU`\n (_Maximum Transmission Unit_) and on the `Payload Length` field size.\n \n * The `Payload Length` field is `16 bits` wide, which means that a normal\n- payload exceed 64K octets _inc...
2020-09-16T14:38:46
vercel/next.js
5dfaa40fce7d9122ff35340c20b62b53cea8d300
edc658a5ccd9c10fc090ea6958749412131aad8c
Skip create-root-layout for Turbopack (#61191) ## What? Creating a root layout automatically when one can't be found won't be supported in the first version of Turbopack. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that...
[ { "path": "test/e2e/app-dir/create-root-layout/create-root-layout.test.ts", "patch": "@@ -3,49 +3,102 @@ import { createNext, FileRef } from 'e2e-utils'\n import { NextInstance } from 'test/lib/next-modes/base'\n import { check } from 'next-test-utils'\n import stripAnsi from 'strip-ansi'\n+;(process.env.TU...
2024-01-26T09:49:28
facebook/react
a869a0f7b07aa44ea51a58da115522716e82d8c0
574b906f9b43a78fbd4759a25e95b2fd036c749c
Fix the locale id
[ { "path": "docs/docs/getting-started.ja-JP.md", "patch": "@@ -1,8 +1,8 @@\n ---\n-id: getting-started-ja\n+id: getting-started-ja-JP\n title: 始めてみましょう\n-next: tutorial-ja.html\n-redirect_from: \"docs/index-ja.html\"\n+next: tutorial-ja-JP.html\n+redirect_from: \"docs/index-ja-JP.html\"\n ---\n \n ## JSFiddl...
2015-03-25T21:12:41
nodejs/node
dfa2dada07ce5804d392f6ed0f8ff1503e530ce1
3aab64cd5f60ff2cfb6e902846df21942c910884
doc: fix deprecation documentation inconsistencies PR-URL: https://github.com/nodejs/node/pull/35082 Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "doc/api/domain.md", "patch": "@@ -1,5 +1,6 @@\n # Domain\n <!-- YAML\n+deprecated: v1.4.2\n changes:\n - version: v8.8.0\n description: Any `Promise`s created in VM contexts no longer have a", "additions": 1, "deletions": 0, "language": "Markdown" }, { "path": "doc/api/e...
2020-09-06T21:37:38
vercel/next.js
edc658a5ccd9c10fc090ea6958749412131aad8c
7a516d469b3f199ff571d2ab58de158b16e52f17
Upgrade Turbopack (#61190) * https://github.com/vercel/turbo/pull/7104 <!-- Will Binns-Smith - Turbopack: use inline sourcemaps for HMR chunks --> <!-- 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 ...
[ { "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-240124.3#7f728f98c9cdfedfa761039ec1a13c4170a48c11\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2024-01-26T09:45:25
facebook/react
56b180b4643c79d0cb200e3767e171a79fec874f
13dbda3644bbdd1aa01449e149f388eef3812a2b
Fix failing test PR #3494 was based on master before we shifted to using console.error. This just fixes the new test case.
[ { "path": "src/core/__tests__/ReactCompositeComponent-test.js", "patch": "@@ -616,7 +616,7 @@ describe('ReactCompositeComponent', function() {\n });\n expect(parentInstance.state.flag).toBe(true);\n \n- expect(console.warn.argsForCall.length).toBe(0);\n+ expect(console.error.argsForCall.length...
2015-03-25T19:15:41
golang/go
42d975e5fe91fbe7719422248ad320c04dda5414
bed970b3ffa81cd43ce520bdc75113dd069f41ef
time: avoid creating a parse error from the next chunk of the value When it reports a parse error, it uses the "value" variable as the value element of the parse error. Previously, in some of the cases, the "value" variable is always updated to the next chunk of the value to be parsed (even if an earlier chunk is inva...
[ { "path": "src/time/format.go", "patch": "@@ -1067,18 +1067,19 @@ func parse(layout, value string, defaultLocation, local *Location) (Time, error)\n \t\t}\n \t\tlayout = suffix\n \t\tvar p string\n+\t\thold := value\n \t\tswitch std & stdMask {\n \t\tcase stdYear:\n \t\t\tif len(value) < 2 {\n \t\t\t\terr =...
2022-11-17T12:19:49
rust-lang/rust
cf8753e4f9c3597f04cd5d3aa261e4561d5378a6
d9dba3a55476ae2da5d4e5bce8a81b341c675750
Make `lto` and `linker-plugin-lto` work the same for `compiler_builtins` Fix #142284 by ensuring that `#![no_builtins]` crates can still emit bitcode when proper (i.e., non-rustc) LTO (i.e., -Clinker-plugin-lto) is used.
[ { "path": "compiler/rustc_codegen_ssa/src/back/write.rs", "patch": "@@ -143,23 +143,12 @@ impl ModuleConfig {\n \n let emit_obj = if !should_emit_obj {\n EmitObj::None\n- } else if sess.target.obj_is_bitcode\n- || (sess.opts.cg.linker_plugin_lto.enabled() && !no_builtin...
2025-06-10T23:37:05
electron/electron
0ab83b301d1616658b29ff3e90579c1c2102f45b
ecbeb0d1171ce41e016e84e9285b82b356b27d99
Refactor as per @zcbenz comments Also fix issue where we run the single instance callback *not* on the UI thread, this apparently results in a hung process.
[ { "path": "atom/browser/api/atom_api_app.cc", "patch": "@@ -407,7 +407,12 @@ bool NotificationCallbackWrapper(\n const base::FilePath& cwd) {\n // Make sure the callback is called after app gets ready.\n if (Browser::Get()->is_ready()) {\n- callback.Run(cmd, cwd);\n+ // We definitely want to c...
2017-09-15T19:33:12
nodejs/node
3aab64cd5f60ff2cfb6e902846df21942c910884
69ef4c2375b5110886b08957cd2305ce8aa8eb32
doc: fix broken link in crypto.md URL that lacks a scheme gets treated as a relative URL. Add missing `https://`. PR-URL: https://github.com/nodejs/node/pull/35181 Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Harshitha K P <harshitha014@gmail.com>...
[ { "path": "doc/api/crypto.md", "patch": "@@ -3622,7 +3622,7 @@ See the [list of SSL OP Flags][] for details.\n [RFC 5208]: https://www.rfc-editor.org/rfc/rfc5208.txt\n [encoding]: buffer.html#buffer_buffers_and_character_encodings\n [initialization vector]: https://en.wikipedia.org/wiki/Initialization_vecto...
2020-09-14T04:55:50
vercel/next.js
7a516d469b3f199ff571d2ab58de158b16e52f17
6391e1d82064bdb5933d366bb1e2cf38cd45ac24
Add dot to regex chars in rewrites.mdx (#61095) The rewrites doc was missing the `.` character when specifying which characters were used for regex matching. <!-- 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...
[ { "path": "docs/02-app/02-api-reference/05-next-config-js/rewrites.mdx", "patch": "@@ -211,7 +211,7 @@ module.exports = {\n }\n ```\n \n-The following characters `(`, `)`, `{`, `}`, `:`, `*`, `+`, `?` are used for regex path matching, so when used in the `source` as non-special values they must be escaped b...
2024-01-26T02:41:01
electron/electron
28900a9b637c4828e8bbdef472fe43ce05b2c6f3
fb6a4febb04df6a79ff717c992a374294da93900
Fix app.makeSingleInstance hanging on posix systems Wait for the IO thread to be a thing before attempting to listen on the socket Fixes #9880
[ { "path": "atom/browser/api/atom_api_app.cc", "patch": "@@ -577,6 +577,10 @@ void App::OnFinishLaunching(const base::DictionaryValue& launch_info) {\n media::AudioManager::SetGlobalAppName(Browser::Get()->GetName());\n #endif\n Emit(\"ready\", launch_info);\n+\n+ if (process_singleton_) {\n+ process...
2017-09-14T12:33:13
golang/go
bed970b3ffa81cd43ce520bdc75113dd069f41ef
fee0ab8b5ecab3c1170a80300c8c41f09486ca66
cmd/compile: handle integer conversions in static init inliner Given code like func itou(i int) uint { return uint(i) } var x = itou(-1) the static inliner from CL 450136 was rewriting the code to var x = uint(-1) which is not valid Go code. Fix this by converting the constants appropriately during inlining. F...
[ { "path": "src/cmd/compile/internal/staticinit/sched.go", "patch": "@@ -7,6 +7,7 @@ package staticinit\n import (\n \t\"fmt\"\n \t\"go/constant\"\n+\t\"go/token\"\n \n \t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/ir\"\n@@ -595,8 +596,11 @@ func (s *Schedule) staticAssignInlinedCall(l *ir.Name,...
2022-11-16T21:04:08
vercel/next.js
f8ce45e8cba2521d685cc371ab4df5d629441401
d36d61465a878e5bfbc3c635331b7628e43351d1
ci(workflow): fix download artifact pattern for wasm (#61175) ### What? Trying to fix https://github.com/vercel/next.js/actions/runs/7661706600/job/20881664469#step:7:19 Closes PACK-2297
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -432,7 +432,6 @@ jobs:\n \n - uses: actions/download-artifact@v4\n with:\n- name: wasm-binaries\n pattern: wasm-binaries-*\n merge-multiple: true\n path: packages/next-swc/crates/wasm", ...
2024-01-26T01:54:11
golang/go
44edc5d78740ab702bb782b5e4533f6dee07ad78
3f5b02d09f0d345c2d6bef83eddbd518e9327276
cmd/dist: skip non-race tests In -race mode, the dist test command only registers the std, race, osusergo, and amd64ios tests before returning early from (*tester).registerTests. Prior to CL 450018, the osusergo and amd64ios tests weren't even affected by -race mode, so it seems their inclusion was unintentional. CL 4...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -660,6 +660,10 @@ func (t *tester) registerTests() {\n \t\t}\n \t}\n \n+\tif t.race {\n+\t\treturn\n+\t}\n+\n \t// Test the os/user package in the pure-Go mode too.\n \tif !t.compileOnly {\n \t\tt.registerTest(\"osusergo\", \"os/user with tag osusergo\",\n@@ -6...
2022-11-17T01:58:38
facebook/react
4dde417214fa48185246cddade518c57f6de32af
9260b540ad8809cf04e32f0b0b6da7d9c5dd1996
Fix tests after merge Test Plan: jest
[ { "path": "src/browser/ui/__tests__/ReactDOMComponent-test.js", "patch": "@@ -663,37 +663,37 @@ describe('ReactDOMComponent', function() {\n });\n \n it('warns on invalid nesting', () => {\n- spyOn(console, 'warn');\n+ spyOn(console, 'error');\n ReactTestUtils.renderIntoDocument(<div...
2015-03-24T20:37:39
vercel/next.js
d36d61465a878e5bfbc3c635331b7628e43351d1
e2ca4e2228a00cadaefb085064744610b73e61e3
Update generate-sitemaps.mdx (#61167) <!-- 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 ### I...
[ { "path": "docs/02-app/02-api-reference/04-functions/generate-sitemaps.mdx", "patch": "@@ -67,7 +67,7 @@ export default async function sitemap({ id }) {\n `SELECT id, date FROM products WHERE id BETWEEN ${start} AND ${end}`\n )\n return products.map((product) => ({\n- url: `${BASE_URL}/product/${...
2024-01-26T01:40:04
golang/go
3f5b02d09f0d345c2d6bef83eddbd518e9327276
b138e71e5b90c75e6e5239fb8f4536c6dcc31c36
cmd/fix: allow cgo commands in tests to fail if 'go build' is not supported testenv.HasCgo reports whether the test binary may have been built with cgo enabled, but having been built with cgo does not necessarily imply that the test can invoke the cgo tool itself. This should fix a test failure on the android builder...
[ { "path": "src/cmd/fix/main_test.go", "patch": "@@ -17,7 +17,7 @@ import (\n func init() {\n \t// If cgo is enabled, enforce that cgo commands invoked by cmd/fix\n \t// do not fail during testing.\n-\tif testenv.HasCGO() {\n+\tif testenv.HasCGO() && testenv.HasGoBuild() {\n \t\t// The reportCgoError hook is...
2022-11-17T01:24:03
nodejs/node
8e173836538efb95f5ac5e898f177efff681d2aa
9ab5c6b96ceef1ac53729e243d5f8de8641d05ae
2020-09-15, Version 14.11.0 (Current) This is a security release. Notable changes: Vulnerabilities fixed: - CVE-2020-8251: Denial of Service by resource exhaustion CWE-400 due to unfinished HTTP/1.1 requests (Critical). - CVE-2020-8201: HTTP Request Smuggling due to CR-to-Hyphen conversion (High). PR-URL: http...
[ { "path": "CHANGELOG.md", "patch": "@@ -30,7 +30,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V14.md#14.10.1\">14.10.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V14.md#14.11.0\">14.11.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V14.md#14.1...
2020-09-14T20:02:57
vercel/next.js
c5d470a491a90e194d7a3d54ebe5a94316f7b862
e6763488b7c619c73e1b2b4377b59cd83221b507
docs: fix Auth0 typo in authentication (#61171)
[ { "path": "docs/02-app/01-building-your-application/09-authentication/index.mdx", "patch": "@@ -164,32 +164,18 @@ export default async function handler(req, res) {\n <AppOnly>\n \n 1. The user submits their credentials through a login form.\n-2. The form calls an API Route.\n+2. The form calls a Server Acti...
2024-01-25T22:20:00
golang/go
fdd8f0219d055f16647c8dfcd11e79cce222d200
b7662047aedc5f2c512911eb59d514ce75b16e18
cmd/go: disable cgo by default if DefaultCC is absolute and doesn't exist Also fix the autocgo test from CL 450739 when DefaultCC is absolute. Change-Id: Ie282a42a1334660225e88680b63b18b7c1ecba2c Reviewed-on: https://go-review.googlesource.com/c/go/+/451219 Auto-Submit: Bryan Mills <bcmills@google.com> Run-TryBot: Br...
[ { "path": "src/cmd/go/internal/cfg/cfg.go", "patch": "@@ -159,7 +159,14 @@ func defaultContext() build.Context {\n \t\tif ctxt.CgoEnabled {\n \t\t\tif os.Getenv(\"CC\") == \"\" {\n \t\t\t\tcc := DefaultCC(ctxt.GOOS, ctxt.GOARCH)\n-\t\t\t\tif _, err := exec.LookPath(cc); err != nil {\n+\t\t\t\tif filepath.Is...
2022-11-16T22:27:06
electron/electron
16499358b348330f1d9895615a65155b53d8cddc
d86724f17afab087cedcce1786493d1e526c8ec4
fix lint
[ { "path": "lib/renderer/content-scripts-injector.js", "patch": "@@ -31,13 +31,13 @@ const runStylesheet = function (url, code) {\n document.head.append(styleElement);\n }\n document.addEventListener('DOMContentLoaded', init);\n- })`;\n+ })`\n const compiledWrapper = runInThisContext(wrappe...
2017-09-17T06:09:12
nodejs/node
9ab5c6b96ceef1ac53729e243d5f8de8641d05ae
3bdac31c4b177e13a895a8541b35fa046a557174
2020-09-15, Version 12.18.4 'Erbium' (LTS) This is a security release. Notable changes: Vulnerabilities fixed: - CVE-2020-8201: HTTP Request Smuggling due to CR-to-Hyphen conversion (High). - CVE-2020-8252: fs.realpath.native on may cause buffer overflow (Medium). PR-URL: https://github.com/nodejs-private/node-pri...
[ { "path": "CHANGELOG.md", "patch": "@@ -44,7 +44,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V14.md#14.0.0\">14.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.18.3\">12.18.3</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.18.4\">12....
2020-09-14T06:48:25
golang/go
a2d8157a7ecc8c7a91c93182ae4778aef505677e
6d0bf438e302afcb0db5422ea2da59d1995e08c1
archive/tar, archive/zip: return ErrInsecurePath for unsafe paths Return a distinguishable error when reading an archive file with a path that is: - absolute - escapes the current directory (../a) - on Windows, a reserved name such as NUL Users may ignore this error and proceed if they do not need name sanitizati...
[ { "path": "api/next/55356.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg archive/tar, var ErrInsecurePath error #55356\n+pkg archive/zip, var ErrInsecurePath error #55356", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/go1.20.html", "patch": "@@ -281,8 +281,33 @@ ...
2022-09-22T23:22:04
vercel/next.js
288d14e0db9f8f5239559c801d94f711c4356ff1
9c72a5728acfee4bd4c902053694e0f1603321e3
chore: upgrade webpack to 5.90.0 (#61109) Dependency: upgrade webpack to latest to benefit from the bug fixes and underlying improvements Closes NEXT-2220
[ { "path": "package.json", "patch": "@@ -235,14 +235,14 @@\n \"typescript\": \"5.2.2\",\n \"unfetch\": \"4.2.0\",\n \"wait-port\": \"0.2.2\",\n- \"webpack\": \"5.86.0\",\n+ \"webpack\": \"5.90.0\",\n \"webpack-bundle-analyzer\": \"4.7.0\",\n \"whatwg-fetch\": \"3.0.0\",\n \"ws\"...
2024-01-25T19:18:12
nodejs/node
3bdac31c4b177e13a895a8541b35fa046a557174
df08d527c2083b852d8456b88b39114f30525236
2020-09-15, Version 10.22.1 'Dubnium' (LTS) This is a security release. Notable changes: Vulnerabilities fixed: - CVE-2020-8252: fs.realpath.native on may cause buffer overflow (Medium). PR-URL: https://github.com/nodejs-private/node-private/pull/222
[ { "path": "CHANGELOG.md", "patch": "@@ -77,7 +77,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V12.md#12.0.0\">12.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.22.0\">10.22.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.22.1\">10....
2020-09-08T23:55:04
golang/go
fd59c6cf8cb600f2911864948303016581abf016
32851587d1adeb07503c2b6168ab11f008972606
cmd/compile: elide unnecessary Not in Phi block controls For a BlockIf, we can change the order of the successors if all OpPhi args are an OpNot and this allows us to elide said OpNots. When compiling Go itself, there were no hits for (If (Phi (Not x) (Not y) (Not z)) or any other longer patterns. compilecmp: error...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -961,6 +961,7 @@\n (NilCheck (GetG mem) mem) => mem\n \n (If (Not cond) yes no) => (If cond no yes)\n+(If (Phi <t> nx:(Not x) ny:(Not y)) yes no) && nx.Uses == 1 && ny.Uses == 1 => (If (Phi <t> x y) no yes)\n (If (ConstBool [c]) yes n...
2022-11-09T15:07:11
electron/electron
5eb4b9ad6f4238c154af55a319928b8a7890f49c
fc9978531414884fab97c6c495367b399a6a6e9a
Fix insecure content errors when loading content from `chrome-extension`
[ { "path": "lib/renderer/content-scripts-injector.js", "patch": "@@ -1,6 +1,8 @@\n-const {ipcRenderer} = require('electron')\n+const {ipcRenderer, webFrame} = require('electron')\n const {runInThisContext} = require('vm')\n \n+webFrame.registerURLSchemeAsPrivileged('chrome-extension')\n+\n // Check whether p...
2017-07-07T00:13:29
facebook/react
357345a56df17d695b13b88c21edc2353507a124
cb05e2f85bac4125256133975e61554649c6db39
Fix the context handling when updating a rendered component.
[ { "path": "src/core/ReactCompositeComponent.js", "patch": "@@ -743,7 +743,7 @@ var ReactCompositeComponentMixin = {\n this._renderedComponent,\n thisID,\n transaction,\n- context\n+ this._processChildContext(context)\n );\n this._replaceNodeWithMarkupByID(pr...
2015-03-24T07:29:09
vercel/next.js
9c72a5728acfee4bd4c902053694e0f1603321e3
3b31878f792c09bed5504069f2855ad8853ceb3c
ci(workflow): fix wasm upload name collision (#61157) <!-- 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 Contr...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -383,13 +383,13 @@ jobs:\n - name: Upload turbo summary artifact\n uses: actions/upload-artifact@v4\n with:\n- name: turbo-run-summary-wasm\n+ name: turbo-run-summary-wasm-${{matrix.target}}\n ...
2024-01-25T16:47:31
nodejs/node
fb1ab198945d9ed8a9572d7838862ba9b9b106de
06212bda66fc66a5609244c8e5ed4431765be5fe
doc: fix broken links in modules.md PR-URL: https://github.com/nodejs/node/pull/35182 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Zeyu Yang <himself65@outlook.com> Reviewed-By: Luigi Pinca <luig...
[ { "path": "doc/api/modules.md", "patch": "@@ -951,7 +951,7 @@ in order to be used.\n ## The `Module` object\n \n This section was moved to\n-[Modules: `module` core module](modules_module.html#modules_module_the_module_object).\n+[Modules: `module` core module](module.html#module_the_module_object).\n \n <!...
2020-09-14T05:03:37
golang/go
17de9e2d18a62e28bb8032b04d81835e7705d4c7
52d9e41ac303cfed4c4cfe86ec6d663a18c3448d
cmd/fix: disallow cgo errors in tests The 'cgo' command invoked by 'go fix' was not valid when built with -trimpath, but the test was not failing because errors from the command were being logged and ignored instead of causing tests to fail. Changing the code and test not to ignore the errors revealed that a number of...
[ { "path": "src/cmd/fix/cftype_test.go", "patch": "@@ -13,6 +13,7 @@ var cftypeTests = []testCase{\n \t\tName: \"cftype.localVariable\",\n \t\tIn: `package main\n \n+// typedef const void *CFTypeRef;\n import \"C\"\n \n func f() {\n@@ -23,6 +24,7 @@ func f() {\n `,\n \t\tOut: `package main\n \n+// typedef co...
2022-11-15T17:34:31
electron/electron
af92a639be92f8970e8dd5e8b76f0b20e7beaf2c
6bf2ec41880e584a1f0e95c155d97d09557a2563
Fixed potential crash in Win32 notifications.
[ { "path": "brightray/browser/win/win32_desktop_notifications/desktop_notification_controller.cc", "patch": "@@ -325,6 +325,7 @@ HWND DesktopNotificationController::GetToast(\n const NotificationData* data) const {\n auto it = find_if(instances_.cbegin(), instances_.cend(),\n [data](auto&& in...
2017-09-14T09:50:27
vercel/next.js
3b31878f792c09bed5504069f2855ad8853ceb3c
32212d60fa845c6eeae134e5f2d91356723931fd
Fix app-dir/externals for Turbopack (#61150) ## What? Ensures this test checks for the right outcome without being tied to the specific implementation. Already works correctly in Turbopack :100: <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly a...
[ { "path": "test/e2e/app-dir/externals/app/page.tsx", "patch": "@@ -1,5 +1,5 @@\n-import { foo } from 'external-package'\n+import { dir } from 'external-package'\n \n export default function Page() {\n- return <div>{foo}</div>\n+ return <div id=\"directory\">{dir}</div>\n }", "additions": 2, "delet...
2024-01-25T15:11:22
nodejs/node
9d12c14b19bc30baa4cf556a0b8281e76637f7db
b569376156ad7bea17115b15066903f3f5b4ee10
doc: use present tense in error messages Error messages are a mix of present and past tense. They should be mostly or entirely present tense. This eliminates the past tense constructions "was found" and "were found". PR-URL: https://github.com/nodejs/node/pull/35164 Reviewed-By: Anna Henningsen <anna@addaleax.net> Re...
[ { "path": "doc/api/errors.md", "patch": "@@ -1381,7 +1381,7 @@ specifier.\n <a id=\"ERR_INVALID_PACKAGE_CONFIG\"></a>\n ### `ERR_INVALID_PACKAGE_CONFIG`\n \n-An invalid [`package.json`][] file was found which failed parsing.\n+An invalid [`package.json`][] file failed parsing.\n \n <a id=\"ERR_INVALID_PACKA...
2020-09-12T04:27:52
golang/go
52d9e41ac303cfed4c4cfe86ec6d663a18c3448d
5bf9aeba1cfec8804425f3838b661fd6c2eb26ff
cmd/go: automatically disable cgo on systems with no C compiler The documentation for cgo has always said: > The cgo tool is enabled by default for native builds > on systems where it is expected to work. Following the spirit of that rule, this CL disables cgo by default on systems where $CC is unset and the default...
[ { "path": "src/cmd/cgo/doc.go", "patch": "@@ -119,8 +119,10 @@ specified by a -I flag), then \"#include <foo/bar.h>\" will always find the\n local version in preference to any other version.\n \n The cgo tool is enabled by default for native builds on systems where\n-it is expected to work. It is disabled b...
2022-11-16T03:30:45
rust-lang/rust
f27e0c10aeb12a798020dc644db39091279c8e5b
91ee6a4057ce4bf1ab6d2f932cae497488d67c81
Move `riscv64-gc-unknown-linux-musl` from Tier 2 with Host tools to Tier 2 It is not shipped with host tools, so it was located in the wrong group.
[ { "path": "src/doc/rustc/src/platform-support.md", "patch": "@@ -103,7 +103,6 @@ target | notes\n [`powerpc64le-unknown-linux-gnu`](platform-support/powerpc64le-unknown-linux-gnu.md) | PPC64LE Linux (kernel 3.10+, glibc 2.17)\n [`powerpc64le-unknown-linux-musl`](platform-support/powerpc64le-unknown-linux-mu...
2025-08-26T21:21:01
vercel/next.js
32212d60fa845c6eeae134e5f2d91356723931fd
c26b9c2cebdff929bcbd8b17549b7e89ed967f87
Fixed typo in docs (#61118) Co-authored-by: Steven <steven@ceriously.com>
[ { "path": "docs/02-app/01-building-your-application/10-deploying/01-production-checklist.mdx", "patch": "@@ -25,7 +25,7 @@ These Next.js optimizations are enabled by default and require no configuration:\n \n - **[Code-splitting](/docs/pages/building-your-application/routing/pages-and-layouts):** Next.js au...
2024-01-25T14:35:53
nodejs/node
35d82af78c1bbd05baa783b3b25f2eb7b48d1848
9d9d2f0cf7163e270df8727bb5a83a53df4336eb
doc: fix minor punctuation issue in path.md PR-URL: https://github.com/nodejs/node/pull/35127 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gireesh Pun...
[ { "path": "doc/api/path.md", "patch": "@@ -495,7 +495,7 @@ For instance, given the sequence of path segments: `/foo`, `/bar`, `baz`,\n calling `path.resolve('/foo', '/bar', 'baz')` would return `/bar/baz`\n because `'baz'` is not an absolute path but `'/bar' + '/' + 'baz'` is.\n \n-If after processing all g...
2020-09-09T17:59:11
rust-lang/rust
2bd47d264628dc227ed317a6c0d0f03891dd8c5c
93d16c510066db062700e783a53461d45e5dbe4b
fix: Render continuation between no source labels
[ { "path": "compiler/rustc_errors/src/emitter.rs", "patch": "@@ -1671,23 +1671,27 @@ impl HumanEmitter {\n {\n code_window_status = CodeWindowStatus::Closed;\n }\n- for (label, is_primary) in labels.into_iter()...
2025-07-22T11:14:37
electron/electron
af329a94298464e3f91fe273cde26898b3fa9b73
07840906dd5877fb4d95ca2a49690351ca174ac5
Suppress the destroy() spec on all platforms It is also crashing on mac, but just not as frequent as other platforms.
[ { "path": "spec/api-web-contents-spec.js", "patch": "@@ -589,13 +589,9 @@ describe('webContents module', function () {\n })\n })\n \n- describe('destroy()', () => {\n- // Destroying webContents in its event listener is going to crash when\n- // Electron is built in Debug mode.\n- if (process...
2017-09-14T08:18:45
vercel/next.js
c26b9c2cebdff929bcbd8b17549b7e89ed967f87
5cc0f8ed0c20e75dccea40ae1b0cc97065211d01
Skip new Worker() test in Turbopack (#61127) ## What? This feature will be implemented at a later point in time. <!-- 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 righ...
[ { "path": "test/integration/worker-webpack5/test/index.test.js", "patch": "@@ -32,24 +32,30 @@ const runTests = () => {\n })\n }\n \n-describe('Web Workers with webpack 5', () => {\n- describe('dev mode', () => {\n- beforeAll(async () => {\n- appPort = await findPort()\n- app = await launchA...
2024-01-25T13:46:17
nodejs/node
4fdc5ace6aa907d7b250e36f1457190b9e23afb0
712b51acf380f87289ec35019955ae9919b40195
doc: fix left nav color contrast I believe this is the last change to make in the docs for color contrast accessibility per WCAG AA. Currently, the current item in the nav is #43853d on a #333333 background for a color contrast of 2.8:1, failing WCAG AA. This swaps in removes a confusing bottom border on the item, re...
[ { "path": "doc/api_assets/style.css", "patch": "@@ -539,9 +539,8 @@ a code {\n #column2 ul li a.active,\n #column2 ul li a.active:hover,\n #column2 ul li a.active:focus {\n- color: #43853d;\n- border-radius: 0;\n- border-bottom: 1px solid #43853d;\n+ font-weight: 700;\n+ color: #fff;\n background-col...
2020-09-10T12:28:52
facebook/react
51b6092264608c258d70451df9ed3f3f172c8d4f
30b2cfc1fd8e1fd01b7c530bace4220a03824fb9
Update unprefixed css props doc
[ { "path": "docs/tips/06-style-props-value-px.md", "patch": "@@ -19,6 +19,7 @@ See [Inline Styles](/react/tips/inline-styles.html) for more info.\n Sometimes you _do_ want to keep the CSS properties unitless. Here's a list of properties that won't get the automatic \"px\" suffix:\n \n - `boxFlex`\n+- `boxFle...
2015-03-23T16:30:56
golang/go
898d000c39af73e6d71e89e82c558b343d764e36
36ce2ece09f74cc8d71cc1d097b62be6264ddb86
cmd/dist: convert most remaining tests to use goTest This converts most of the remaining manual "go test" command line construction in cmd/dist to use the goTest abstraction and registerTest. At this point, the only remaining place that directly constructs go test command lines is runHostTest. This fixes a bug in th...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -634,28 +634,23 @@ func (t *tester) registerTests() {\n \n \t// Test the os/user package in the pure-Go mode too.\n \tif !t.compileOnly {\n-\t\tt.tests = append(t.tests, distTest{\n-\t\t\tname: \"osusergo\",\n-\t\t\theading: \"os/user with tag osusergo\",\n-...
2022-11-04T18:54:04
rust-lang/rust
93d16c510066db062700e783a53461d45e5dbe4b
8835ea854e9339ae83a35461c064a1b919872ca5
fix: Add col separator before secondary messages with no source
[ { "path": "compiler/rustc_errors/src/emitter.rs", "patch": "@@ -1591,6 +1591,9 @@ impl HumanEmitter {\n annotated_files.swap(0, pos);\n }\n \n+ // An end column separator should be emitted when a file with with a\n+ // source, is followed by one without a source\n+ l...
2025-07-03T21:47:15
electron/electron
ff023115f5f6a1aa27485e3ccd08c7ca2300c394
33dd5e26fb2943d79510598ca157c4ccb5aef205
Style fixes
[ { "path": "atom/browser/api/atom_api_app.cc", "patch": "@@ -589,28 +589,33 @@ void App::OnWillContinueUserActivity(\n const std::string& type) {\n *prevent_default = Emit(\"will-continue-activity\", type);\n }\n+\n void App::OnDidFailToContinueUserActivity(\n const std::string& type,\n const s...
2017-09-14T07:12:34
facebook/react
d83596620f91f372d5956742b79ad4ad123b9c48
5dee15273fd044ebf83aa1ff903ddcaf346cec45
Docs: do not render components to `document.body` Rendering to `document.body` in the examples is conveniently short, but it can be misleading at the same time, especially for newcomers. While it's possible to render React components to `document.body`, any 3rd party scripts can also mess up with it, and it can have ...
[ { "path": "docs/_posts/2013-07-23-community-roundup-5.md", "patch": "@@ -60,7 +60,7 @@ React.renderComponent(\n <option value=\"Facebook\">Facebook</option>\n <option value=\"Harvest\">Harvest</option>\n </Chosen>\n-, document.body);\n+, document.getElementById('example'));\n ```\n \n ", "addi...
2015-03-23T12:55:01
nodejs/node
a63e121e339daf54c8037a27be6a406f0588ca4b
3c564632fafd0400fb6123cc398d736b6dbec7e6
http: only set keep-alive when not exists PR-URL: https://github.com/nodejs/node/pull/35138 Fixes: https://github.com/nodejs/node/issues/34561 Reviewed-By: Ricky Zhou <0x19951125@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivik...
[ { "path": "lib/_http_outgoing.js", "patch": "@@ -104,6 +104,7 @@ function OutgoingMessage() {\n this._last = false;\n this.chunkedEncoding = false;\n this.shouldKeepAlive = true;\n+ this._defaultKeepAlive = true;\n this.useChunkedEncodingByDefault = true;\n this.sendDate = false;\n this._remove...
2020-09-08T07:37:59
golang/go
ad7dc8ad55e6540bbf285df869d4ee6c12fff0e7
e6eaf39cfaf253ebaff7fff3737f0f1d91024345
math/rand: deprecate Seed Programs that call Seed and then expect a specific sequence of results from the global random source (using functions such as Int) can be broken when a dependency changes how much it consumes from the global random source. To avoid such breakages, programs that need a specific result sequence...
[ { "path": "src/math/rand/rand.go", "patch": "@@ -315,7 +315,7 @@ var globalRand = New(new(lockedSource))\n // Alternately, set GODEBUG=randautoseed=0 in the environment\n // before making any calls to functions in this package.\n //\n-// Note: Programs that call Seed and then expect a specific sequence\n+//...
2022-11-16T17:04:32
rust-lang/rust
8835ea854e9339ae83a35461c064a1b919872ca5
91ee6a4057ce4bf1ab6d2f932cae497488d67c81
fix: Don't add an end column separator after a file with no source
[ { "path": "compiler/rustc_errors/src/emitter.rs", "patch": "@@ -1462,7 +1462,7 @@ impl HumanEmitter {\n max_line_num_len: usize,\n is_secondary: bool,\n is_cont: bool,\n- ) -> io::Result<()> {\n+ ) -> io::Result<CodeWindowStatus> {\n let mut buffer = StyledBuffer::new()...
2025-07-22T11:14:37
facebook/react
31bab53cc8a472f5daa0d5e97603de89452f1097
5dee15273fd044ebf83aa1ff903ddcaf346cec45
minor fixes in package.json
[ { "path": "npm-react/package.json", "patch": "@@ -6,10 +6,9 @@\n \"react\"\n ],\n \"homepage\": \"https://github.com/facebook/react/tree/master/npm-react\",\n- \"bugs\": \"https://github.com/facebook/react/issues?labels=react-core\",\n+ \"bugs\": \"https://github.com/facebook/react/issues\",\n \...
2015-03-22T20:09:24
electron/electron
c23b4a48ec0cd29d178b4eec19a4662b0493b350
76efee675f39fd9fe13e826e6ecbfd5819ebc360
Fixes NSUserActivityDelegate that was called on a background thread thus not working.
[ { "path": "atom/browser/mac/atom_application.mm", "patch": "@@ -38,6 +38,7 @@ - (void)setCurrentActivity:(NSString*)type\n [currentActivity_ setWebpageURL:webpageURL];\n [currentActivity_ setDelegate: self];\n [currentActivity_ becomeCurrent];\n+ [currentActivity_ setNeedsSave:YES];\n }\n \n - (NSUse...
2017-08-07T19:28:00
nodejs/node
541d296d56db83864100756a4875496fb414d332
b3c6d281d7be393dc09456fbef2f677f696c42d2
doc: document support for package.json fields Fixes: https://github.com/nodejs/node/issues/33143 PR-URL: https://github.com/nodejs/node/pull/34970 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -1381,13 +1381,13 @@ specifier.\n <a id=\"ERR_INVALID_PACKAGE_CONFIG\"></a>\n ### `ERR_INVALID_PACKAGE_CONFIG`\n \n-An invalid `package.json` file was found which failed parsing.\n+An invalid [`package.json`][] file was found which failed parsing.\n \n <a id=\"ERR...
2020-08-07T11:12:25
rust-lang/rust
adddae65368c28d36c4202458aa9bf387c5a6d06
f5703d5dd3eec176f86a6e9bf7e668b48b84eabb
stop returning errors when format foreign has trailing dollar
[ { "path": "compiler/rustc_builtin_macros/src/format_foreign.rs", "patch": "@@ -416,7 +416,7 @@ pub(crate) mod printf {\n // Yes, this *is* the parameter.\n Some(('$', end2)) => {\n state = Flags;\n- parame...
2025-08-26T21:06:11
facebook/react
f9abf493b4685869e9feed5738d8271b0dc4e944
7fe5a3aadd308961d5557ba1060eaca14a22f825
Validate node nesting, take 3 Nicer version of #644 and #735. Fixes #101. Context is neat.
[ { "path": "src/browser/ReactDOM.js", "patch": "@@ -84,6 +84,7 @@ var ReactDOM = mapObject({\n h6: 'h6',\n head: 'head',\n header: 'header',\n+ hgroup: 'hgroup',\n hr: 'hr',\n html: 'html',\n i: 'i',", "additions": 1, "deletions": 0, "language": "JavaScript" }, { "path": "src...
2015-03-20T03:41:43
golang/go
cd9d26f0da769c5644ab7956433991385259ee0a
334d8e453b5d45ede5265debc51b4775195d9ce9
cmd/go: make testterminal18153 a normal test Currently, cmd/go's testterminal18153 is implemented as a special test that doesn't run as part of cmd/go's regular tests. Because the test requires stdout and stderr to be a terminal, it is currently run directly by "dist test" so it can inherit the terminal of all.bash. ...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -453,10 +453,6 @@ func (t *tester) registerRaceBenchTest(pkg string) {\n \t})\n }\n \n-// stdOutErrAreTerminals is defined in test_linux.go, to report\n-// whether stdout & stderr are terminals.\n-var stdOutErrAreTerminals func() bool\n-\n func (t *tester) regi...
2022-11-11T16:51:28
electron/electron
f6ac00532fc46876626e5cd2d8722bc8b904422e
a870799c32e5d3c61ba0602569a255feb36cef3f
Fix typo and remove extraneous doc entries.
[ { "path": "docs/api/app.md", "patch": "@@ -799,13 +799,10 @@ Returns `String` - The type of the currently running activity.\n \n * `type` String - Uniquely identifies the activity. Maps to\n [`NSUserActivity.activityType`][activity-type].\n-* `userInfo` Object - App-specific state to store for use by anot...
2017-07-27T20:24:59
rust-lang/rust
45296bb633bc7fdd0c692a8be3035393ec3c9314
91ee6a4057ce4bf1ab6d2f932cae497488d67c81
Fix typo in comment Turn "any heap allocators" into "any heap allocator".
[ { "path": "library/alloc/src/raw_vec/mod.rs", "patch": "@@ -155,7 +155,7 @@ impl RawVecInner<Global> {\n }\n \n // Tiny Vecs are dumb. Skip to:\n-// - 8 if the element size is 1, because any heap allocators is likely\n+// - 8 if the element size is 1, because any heap allocator is likely\n // to round up ...
2025-08-26T20:44:09
nodejs/node
23d6c424951e4d7452f384e7d5293185eec35a68
1df50ffb556b4d751942dfcb753f90c58dcf9e74
http: allow Content-Length header for 304 responses Fixes: https://github.com/nodejs/node/issues/31037 PR-URL: https://github.com/nodejs/node/pull/34835 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "lib/_http_client.js", "patch": "@@ -654,6 +654,11 @@ function parserOnIncomingClient(res, shouldKeepAlive) {\n if (method === 'HEAD')\n return 1; // Skip body but don't treat as Upgrade.\n \n+ if (res.statusCode === 304) {\n+ res.complete = true;\n+ return 1; // Skip body as there w...
2020-08-18T19:28:31
vercel/next.js
5cc0f8ed0c20e75dccea40ae1b0cc97065211d01
4936cf0f4ef0e58a2250dd4e7ee059c3a560a0bd
Add passing test to Turbopack manifest (#61140) ## What? This test consistently passes locally. <!-- 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 t...
[ { "path": "test/turbopack-tests-manifest.json", "patch": "@@ -3387,11 +3387,10 @@\n },\n \"test/e2e/app-dir/global-error/catch-all/index.test.ts\": {\n \"passed\": [\n- \"app dir - global error - with catch-all route should render catch-all route correctly\"\n- ],\n- \"failed\": [\n+ ...
2024-01-25T13:46:02
facebook/react
ef796790ec80c200bfc99df69e23db2522479272
7fe5a3aadd308961d5557ba1060eaca14a22f825
Put comma after any non-comments, non-whitespace in JSXEspression Fixes #1673 Closes #3129
[ { "path": "vendor/fbtransform/transforms/__tests__/react-test.js", "patch": "@@ -324,6 +324,19 @@ describe('react jsx', function() {\n expect(transform(code).code).toBe(result);\n });\n \n+ it('handles overparenthesized JS', function() {\n+ var code =\n+ '<foo a={(b)} c={(d)}>Foo {(e+f //A line...
2015-02-12T16:57:23
golang/go
70f585f018bd534a15933eb80e2812387d2283f5
978ce7e252b0d6ff0a19f66206ed5f3eca281059
go/types, types2: ensure invalid generic types are marked as invalid When detecting invalid types, we may detect cycles through instances. Ensure that the uninstantiated origin type is also marked invalid. Fixes #56665 Change-Id: Id67653bcb072ac80161dea07d0ced566e61564a8 Reviewed-on: https://go-review.googlesource.c...
[ { "path": "src/cmd/compile/internal/types2/validtype.go", "patch": "@@ -76,11 +76,32 @@ func (check *Checker) validType0(typ Type, nest, path []*Named) bool {\n \t\t// embedded in itself, indicating an invalid recursive type.\n \t\tfor _, e := range nest {\n \t\t\tif Identical(e, t) {\n-\t\t\t\t// t cannot ...
2022-11-10T00:16:39
nodejs/node
f54254afedd5a2b4800854e7766d845e3803bef6
91272bce7a5c98829f4a2736def1d684c8f8eb1b
errors: simplify ERR_REQUIRE_ESM message generation Because of the condition that starts the `if` block, we know that `parentPath` must be truthy. So there is no need to check for that in the template string that generates the error message. PR-URL: https://github.com/nodejs/node/pull/35123 Reviewed-By: Anna Hennings...
[ { "path": "lib/internal/errors.js", "patch": "@@ -1317,7 +1317,7 @@ E('ERR_REQUIRE_ESM',\n filename : path.basename(filename);\n msg +=\n '\\nrequire() of ES modules is not supported.\\nrequire() of ' +\n- `${filename} ${parentPath ? `from ${parentPath} ` : ''}` +\n+ `${f...
2020-09-09T15:24:18
vercel/next.js
4936cf0f4ef0e58a2250dd4e7ee059c3a560a0bd
9cc7167e1b80fc28aa01953df191c833cafea64b
Skip CSS Modules composes test in Turbopack (#61141) ## What? The first version of Turbopack won't support the `composes` keyword. <!-- 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...
[ { "path": "test/integration/css/test/css-modules.test.js", "patch": "@@ -288,49 +288,39 @@ describe('Ordering with Global CSS and Modules (prod)', () => {\n })\n \n // https://github.com/vercel/next.js/issues/12445\n-describe('CSS Modules Composes Ordering', () => {\n- const appDir = join(fixturesDir, 'com...
2024-01-25T13:45:50
golang/go
978ce7e252b0d6ff0a19f66206ed5f3eca281059
7c8c209b45ebe5c3d7979c44e53216f61e8b5f2a
testing: reject calls to Run within Cleanup callbacks Calling t.Run inside t.Cleanup can mess up the execution order of registered Cleanup callbacks. Reject calls to Run within Cleanup callbacks. Fixes #48515 Change-Id: I61e4cb35253db1a8bbe3351d59055433030aa289 Reviewed-on: https://go-review.googlesource.com/c/go/+/...
[ { "path": "src/testing/panic_test.go", "patch": "@@ -224,6 +224,11 @@ func TestMorePanic(t *testing.T) {\n \t\t\twant: `panic: die\n \tpanic: test executed panic(nil) or runtime.Goexit`,\n \t\t},\n+\t\t{\n+\t\t\tdesc: \"Issue 48515: call t.Run in t.Cleanup should trigger panic\",\n+\t\t\tflags: []string{\"...
2021-09-27T09:37:56
nodejs/node
c66e6471e780e752f3f6f9337ac49a3d6e3d7091
8a8ca4b0bf123c708130a1152e960a9310c2ccc4
lib: remove ERR_INVALID_OPT_VALUE and ERR_INVALID_OPT_VALUE_ENCODING This will be a start to generalize all argument validation errors. As currently we throw ARG/OPT, OUT_OF_RANGE, and other more specific errors. The OPT errors didn't bring much to the errors as it's just another variant of ARG error which is sometime...
[ { "path": "doc/api/buffer.md", "patch": "@@ -288,6 +288,10 @@ It can be constructed in a variety of ways.\n <!-- YAML\n added: v5.10.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/34682\n+ description: Throw ERR_INVALID_ARG_VALUE instead of ERR_INVALID_OPT_VALUE\n...
2020-08-08T16:01:59
facebook/react
0c1eca7dfcf0e4375f7cfe1164823547fee1ad01
7fe5a3aadd308961d5557ba1060eaca14a22f825
fix doc comments and typos
[ { "path": "src/browser/ui/ReactDOMComponent.js", "patch": "@@ -157,7 +157,7 @@ var voidElementTags = assign({\n 'menuitem': true\n }, omittedCloseTags);\n \n-// We accept any tag to be rendered but since this gets injected into abitrary\n+// We accept any tag to be rendered but since this gets injected in...
2015-03-20T16:21:29
vercel/next.js
9cc7167e1b80fc28aa01953df191c833cafea64b
fdd15869ac8a7907e7ef43cc772c2f439632db3b
Fix filesystempublicroutes test for Turbopack (#61132) ## What? `exportPathMap` didn't work when Turbopack was enabled because the `serializeNextConfig` function mutates the original values, overriding `exportPathMap`. This PR changes the serialization to copy the object and mutate only the copied object. ...
[ { "path": "packages/next/src/build/swc/index.ts", "patch": "@@ -1056,7 +1056,8 @@ function bindingToApi(binding: any, _wasm: boolean) {\n nextConfig: NextConfigComplete,\n projectPath: string\n ): Promise<string> {\n- let nextConfigSerializable = nextConfig as any\n+ // Avoid mutating the ex...
2024-01-25T13:44:50
rust-lang/rust
83f22cc0f87263c0aa3057d55b994d75c6151834
7375e2c961ac9f2fe4b6d685c5a73346c6e7f777
Remove `SolverDefId::ForeignId` Replace it with normal `SolverDefId::TypeAliasId`. The split caused a very funny bug where code was getting `TypeAliasId` where it expected `ForeignId`, because `TypeAliasId` had a `From` impl from `hir_def::TypeAliasId` and `ForeignId` had not, plus a careless `into()`. I could've fi...
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/display.rs", "patch": "@@ -1473,7 +1473,7 @@ impl<'db> HirDisplay for crate::next_solver::Ty<'db> {\n }\n TyKind::Foreign(type_alias) => {\n let alias = match type_alias {\n- SolverDefId::ForeignI...
2025-08-26T16:33:46
golang/go
7c8c209b45ebe5c3d7979c44e53216f61e8b5f2a
80c5bbc627a37929ea571e99f0f15cb059fdaf70
internal/goroot: report PkgfileMap error on invalid line Ref. https://go-review.googlesource.com/c/go/+/442303/comment/7caca6eb_0ebe4d51/ Change-Id: Id351b9c25380f0959453bb84ed123d0e784e4866 Reviewed-on: https://go-review.googlesource.com/c/go/+/450595 Auto-Submit: Bryan Mills <bcmills@google.com> TryBot-Result: Goph...
[ { "path": "src/internal/goroot/importcfg.go", "patch": "@@ -54,7 +54,7 @@ func PkgfileMap() (map[string]string, error) {\n \t\t\t}\n \t\t\tsp := strings.SplitN(line, \" \", 2)\n \t\t\tif len(sp) != 2 {\n-\t\t\t\terr = fmt.Errorf(\"determining pkgfile map: invalid line in go list output: %q\", line)\n+\t\t\t...
2022-11-15T11:26:11
facebook/react
fea7bc5968bf5e2acc164df2773a6b8ac5a53c70
a321247ee5c6a51f4cf9feec4c8989a769bcd78a
Use full chain of member expressions when generating display names. Assumed to be namespaced names (with the exception of "exports", which is special-cased).
[ { "path": "vendor/fbtransform/transforms/__tests__/react-displayName-test.js", "patch": "@@ -87,6 +87,47 @@ describe('react displayName jsx', function() {\n });\n \n it('should inject displayName in property assignment', () => {\n+ var code = [\n+ 'ns.Component = React.createClass({',\n+ ' ...
2015-03-17T23:29:57
nodejs/node
636c0bb419907188308c01992e546ab1628bc556
64b05a4b402d984fa9c849b7ea370d6fa18f519a
deps: update to uvwasi 0.0.11 Notable changes: - Several issues have been addressed in uvwasi_fd_readdir(). A bug in the copying of the directory entry's name has been fixed. The function now returns UVWASI_ENOSYS on Windows and Android. Serdes support has been added for uvwasi_dirent_t's. - The libuv dependenc...
[ { "path": "deps/uvwasi/include/uvwasi.h", "patch": "@@ -10,7 +10,7 @@ extern \"C\" {\n \n #define UVWASI_VERSION_MAJOR 0\n #define UVWASI_VERSION_MINOR 0\n-#define UVWASI_VERSION_PATCH 10\n+#define UVWASI_VERSION_PATCH 11\n #define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \\\n ...
2020-09-08T16:09:58
vercel/next.js
fdd15869ac8a7907e7ef43cc772c2f439632db3b
a9c7559392bbb058c76a8cd9b9d1d7bd7f43484e
Add missing rootlayout to allow-underscored-root-directory test (#61137) ## What? Noticed this test suite accidentally does not have a root layout, which is required for App Router. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we r...
[ { "path": "test/e2e/app-dir/_allow-underscored-root-directory/app/layout.js", "patch": "@@ -0,0 +1,8 @@\n+export default function RootLayout({ children }) {\n+ return (\n+ <html>\n+ <head></head>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}", "additions": 8, "deletions": 0, "...
2024-01-25T11:40:40
electron/electron
19a7c7ac39904a4a2696fe20c49e9b6694e5b09b
0d69738bd6d2a116c11366e852e815ea07064ee2
Styling fixes
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -1085,7 +1085,7 @@ static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,\n completionHandler:^(NSModalResponse) {}];\n return;\n }\n- \n+\n // Reattach the window to the parent to actually show it....
2017-09-14T05:43:22
golang/go
dafc9152047d14d511b37cdd8770324a90c43969
5947a07d72076f96eb6fb8e54b7979748962713b
crypto/ecdh: move ECDH method to PrivateKey Fixes #56052 Change-Id: Icacba0ed0f77519bca2140c8af68407af97f9734 Reviewed-on: https://go-review.googlesource.com/c/go/+/450335 Run-TryBot: Filippo Valsorda <filippo@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org>...
[ { "path": "api/next/52221.txt", "patch": "@@ -4,13 +4,13 @@ pkg crypto/ecdh, func P521() Curve #52221\n pkg crypto/ecdh, func X25519() Curve #52221\n pkg crypto/ecdh, method (*PrivateKey) Bytes() []uint8 #52221\n pkg crypto/ecdh, method (*PrivateKey) Curve() Curve #52221\n+pkg crypto/ecdh, method (*PrivateK...
2022-11-14T11:13:46
nodejs/node
3fb7fcd821a9aea27a19ef5f7ffcf5120acb859a
02e925553d079c1e70b48e5255503d8850eb1fc5
esm: better package.json parser errors PR-URL: https://github.com/nodejs/node/pull/35117 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "lib/internal/errors.js", "patch": "@@ -1124,7 +1124,7 @@ E('ERR_INVALID_OPT_VALUE', (name, value, reason = '') => {\n E('ERR_INVALID_OPT_VALUE_ENCODING',\n 'The value \"%s\" is invalid for option \"encoding\"', TypeError);\n E('ERR_INVALID_PACKAGE_CONFIG', (path, base, message) => {\n- return ...
2020-09-09T05:27:55
rust-lang/rust
e54afd3d7dc1f62944e5b6750ceecfdd17e1c3a3
798f754802c1a5ff0b00987591762a5465a74d23
Enable clippy::panic in const contexts
[ { "path": "clippy_lints/src/panic_unimplemented.rs", "patch": "@@ -1,7 +1,7 @@\n use clippy_config::Conf;\n use clippy_utils::diagnostics::span_lint;\n-use clippy_utils::is_in_test;\n use clippy_utils::macros::{is_panic, root_macro_call_first_node};\n+use clippy_utils::{is_in_test, is_inside_always_const_co...
2025-08-26T14:49:15
vercel/next.js
0cdc927e0fe1b0a159f076ea7024ac60c60dda58
9da4edaf64db4da3049e0467b0dc4b51eb226792
Docs: Correct JavaScript React Component File Extension to .jsx in '01-vitest.mdx' (#61087) Hello, This PR resolves a file extension inconsistency in the 'Setting up Vitest with Next.js' section of the Next.js documentation (`01-vitest.mdx`). When using next.js with JavaScript, following the documentation(`01...
[ { "path": "docs/02-app/01-building-your-application/08-testing/01-vitest.mdx", "patch": "@@ -92,7 +92,7 @@ export default function Page() {\n }\n ```\n \n-```jsx filename=\"app/page.js\" switcher\n+```jsx filename=\"app/page.jsx\" switcher\n import Link from 'next/link'\n \n export default function Page() {...
2024-01-25T00:10:54
facebook/react
d7bf64396ae6c479aa709a2707d7c54955c8025a
d86790f4b64c5dc7ebc8f37065450adb91ab2f14
Fix the closing html paragraph tag.
[ { "path": "examples/basic-jsx-harmony/index.html", "patch": "@@ -18,7 +18,7 @@ <h1>Basic Example with JSX and ES6 features</h1>\n </p>\n </div>\n <h4>Example Details</h4>\n- <p>This is written with JSX with Harmony (ES6) syntax and transformed in the browser.<p>\n+ <p>This is written wit...
2015-03-19T19:56:49
electron/electron
e18cdc185ac60bec4f9d00c5402506b006fe3e89
d0c91daaeda67ceb3f0bdab534ec66fd99e3ac95
add the fix for showinactive
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -1098,6 +1098,10 @@ static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,\n }\n \n void NativeWindowMac::ShowInactive() {\n+ // Reattach the window to the parent to actually show it.\n+ if (parent())\n+ InternalSetParentWindow(pa...
2017-05-01T21:01:48
nodejs/node
4f176c911097b3972328e703238d1fec0460e554
85624fd12971ec50fd8bb26b70c3b04170577d1e
doc: fix broken link in perf_hooks.md PR-URL: https://github.com/nodejs/node/pull/35113 Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/perf_hooks.md", "patch": "@@ -758,7 +758,7 @@ require('some-module');\n \n [`'exit'`]: process.html#process_event_exit\n [`process.hrtime()`]: process.html#process_process_hrtime_time\n-[`child_process.spawnSync()`]: #child_process_child_process_spawnsync_command_args_options\n+[`child_pr...
2020-09-09T00:19:41
vercel/next.js
1fdc00c3fb2cbe39cd00ede7c07693191829aa87
6829d7df6287464d59f456b60df18fd2ceb6bc95
add `optimizeServerReact` to config-shared (#61106) This PR adds the `optimizeServerReact` experimental flag to the shared config and defaults it to `false`. <!-- 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...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -869,6 +869,7 @@ export const defaultConfig: NextConfig = {\n : false,\n webpackBuildWorker: undefined,\n missingSuspenseWithCSRBailout: true,\n+ optimizeServerReact: false,\n },\n }\n ", "additions": 1, "deleti...
2024-01-24T21:41:09
golang/go
5947a07d72076f96eb6fb8e54b7979748962713b
b1678e508bf04b32fcd8153d09c39ff25b51d287
test: fix noinit on noopt builder Fix noopt build break from CL 450136 by not running test. I can't reproduce the failure locally, but it's entirely reasonable for this test to fail when optimizations are disabled, so just don't run it when optimizations are disabled. Change-Id: I882760fc7373ba0449379f81d295312a6be4...
[ { "path": "test/noinit.go", "patch": "@@ -1,4 +1,5 @@\n // run\n+//go:build !gcflags_noopt\n \n // Copyright 2010 The Go Authors. All rights reserved.\n // Use of this source code is governed by a BSD-style", "additions": 1, "deletions": 0, "language": "Go" } ]
2022-11-16T05:02:14
nodejs/node
85624fd12971ec50fd8bb26b70c3b04170577d1e
e0a3faeff7cde1fa183a6efc3a3b3167deabd420
doc: fix broken link in http2.md PR-URL: https://github.com/nodejs/node/pull/35112 Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ricky Zhou <0x19951125@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Dere...
[ { "path": "doc/api/http2.md", "patch": "@@ -3725,7 +3725,7 @@ you need to implement any fall-back behaviour yourself.\n [`ClientHttp2Stream`]: #http2_class_clienthttp2stream\n [`Duplex`]: stream.html#stream_class_stream_duplex\n [`Http2ServerRequest`]: #http2_class_http2_http2serverrequest\n-[`Http2ServerRe...
2020-09-09T00:16:55
rust-lang/rust
059f00d46368e12f5c08268d36fce629b44145b7
a224101061040360986a1d553039ae0627fb1026
Fix sync conflict
[ { "path": "src/lib.rs", "patch": "@@ -361,7 +361,7 @@ impl WriteBackendMethods for GccCodegenBackend {\n _exported_symbols_for_lto: &[String],\n each_linked_rlib_for_lto: &[PathBuf],\n modules: Vec<FatLtoInput<Self>>,\n- ) -> Result<ModuleCodegen<Self::Module>, FatalError> {\n+ ...
2025-08-26T15:25:45
electron/electron
dc7cc6921e5744f8c3ec03e2755361c65c9226e3
dae63d323c3ed53b777104a64ed4384d868f233c
fix for mac child windows so they honor show option
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -914,7 +914,8 @@ static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,\n \n // Only use native parent window for non-modal windows.\n if (parent && !is_modal()) {\n- SetParentWindow(parent);\n+ // It will be properly attache...
2017-05-01T20:10:48