repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
electron/electron | 68250d80cd756f17c33b869bc2b5826af8e95732 | 4ba4fe4f62231ccf8e880b23b7f8f1151778a02c | Improved error logging | [
{
"path": "docs/tutorial/updates.md",
"patch": "@@ -77,5 +77,8 @@ Also make sure that errors are\n for logging them to `stderr`:\n \n ```js\n-autoUpdater.on('error', console.error)\n+autoUpdater.on('error', message => {\n+ console.error('There was a problem updating the application')\n+ console.error(mess... | 2017-08-15T19:38:31 |
rust-lang/rust | 29e205f8b94076e57fd06a25e157cbd53f053c31 | 6d6a08cf590ec26296447b8d2cf2329bb64c303a | rust-installer/install-template.sh: improve efficiency, step 1.
This round replaces repetitive pattern matching in the inner loop
of this script using grep (which causes a fork() for each test)
with built-in pattern matching in the bourne shell using the case
/ esac construct.
This in reference to
https://github.co... | [
{
"path": "src/tools/rust-installer/install-template.sh",
"patch": "@@ -551,54 +551,45 @@ install_components() {\n # Decide the destination of the file\n local _file_install_path=\"$_dest_prefix/$_file\"\n \n- if echo \"$_file\" | grep \"^etc/\" > /dev/null\n- then\n- lo... | 2025-08-24T08:21:33 |
nodejs/node | 238104c531219db05e3421521c305404ce0c0cce | ca5ff723d1390ae1e1434969e8c47a23ae151a21 | test: move execution of WPT to worker threads
Running outside of the main Node.js context prevents us from upgrading
the WPT harness because new versions more aggressively check the
identity of globals like error constructors. Instead of exposing
globals used by the tests on vm sandboxes, use worker threads to run
eve... | [
{
"path": "test/common/README.md",
"patch": "@@ -963,7 +963,7 @@ the original WPT harness, see [the WPT tests README][].\n \n ### Class: WPTRunner\n \n-A driver class for running WPT with the WPT harness in a vm.\n+A driver class for running WPT with the WPT harness in a worker thread.\n \n See [the WPT tes... | 2020-08-15T09:02:13 |
facebook/react | bad85fafa12cb68d69ed9347dc5c8e84a851f27b | c889f409bf54c778509712fdfc66094507bba8f4 | Fixed mistake in jsdocs types for cloneWithProps | [
{
"path": "src/utils/cloneWithProps.js",
"patch": "@@ -24,10 +24,10 @@ var CHILDREN_PROP = keyOf({children: null});\n * Sometimes you want to change the props of a child passed to you. Usually\n * this is to add a CSS class.\n *\n- * @param {object} child child component you'd like to clone\n+ * @param {... | 2015-02-20T00:38:25 |
golang/go | 27c38142756902c9a2e281ff1dd0f2e0a7273f75 | f13849a7af4c058caa6af14f7d3f9aa81982c124 | io: correctly process result of sendfile(2) when src returns 0 bytes
Fixes #53658. io.Copy() uses sendfile(2) to avoid allocating extra buffers when src is a file and dst is a TCPConn. However if src returns no bytes current logic treats it as failure and falls back to copying via user space. The following is a benchm... | [
{
"path": "src/internal/poll/sendfile_linux.go",
"patch": "@@ -11,18 +11,21 @@ import \"syscall\"\n const maxSendfileSize int = 4 << 20\n \n // SendFile wraps the sendfile system call.\n-func SendFile(dstFD *FD, src int, remain int64) (int64, error) {\n+func SendFile(dstFD *FD, src int, remain int64) (int64... | 2022-07-06T22:29:35 |
vercel/next.js | b14c1eb991081d3b7bc0ea64a92233d89f6e7a2a | 8179e7008eb262ee1152bfb6b01f2d81e22760d6 | fix(ts): auto-complete `next/headers` (#60817)
### What?
Add support for auto-importing `headers()` and `cookies()`
### Why?
Improve the auto-import experience in IDEs like VScode
### How?
Re-export the `next/headers` type references
Closes NEXT-2146 | [
{
"path": "packages/next/index.d.ts",
"patch": "@@ -9,6 +9,7 @@\n /// <reference path=\"./dynamic.d.ts\" />\n /// <reference path=\"./error.d.ts\" />\n /// <reference path=\"./head.d.ts\" />\n+/// <reference path=\"./headers.d.ts\" />\n /// <reference path=\"./image.d.ts\" />\n /// <reference path=\"./link.... | 2024-01-18T14:01:22 |
electron/electron | 2edf4da8590b257a9bd9695516a5256586d6dcfd | a419fe75ca76c8edcbd80692038749001ac9fe63 | fix some optional args docs | [
{
"path": "docs/api/session.md",
"patch": "@@ -26,7 +26,7 @@ The `session` module has the following methods:\n ### `session.fromPartition(partition[, options])`\n \n * `partition` String\n-* `options` Object\n+* `options` Object (optional)\n * `cache` Boolean - Whether to enable cache.\n \n Returns `Sessi... | 2017-08-15T17:23:36 |
nodejs/node | 15fdd9861bead2facc413f86b347a224c494fb47 | 6726246dbb83e3251f080fc4729154d492f7e340 | doc,lib: remove unused error code
As best as I can tell, ERR_V8BREAKITERATOR is unused anywhere in our
code base and dependencies. Move to legacy errors.
PR-URL: https://github.com/nodejs/node/pull/34792
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Lu... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -2139,11 +2139,6 @@ import 'package-name'; // supported\n \n `import` with URL schemes other than `file` and `data` is unsupported.\n \n-<a id=\"ERR_V8BREAKITERATOR\"></a>\n-### `ERR_V8BREAKITERATOR`\n-\n-The V8 `BreakIterator` API was used but the full ICU data s... | 2020-08-15T23:00:12 |
golang/go | f13849a7af4c058caa6af14f7d3f9aa81982c124 | b459166219b77857dc6d9366366b015d84e17bbe | encoding/xml: error when closing tag does not match opening tag
Comparing opening and closing tag is done using the prefix when available.
Documentation states that Token returns URI in the Space part of the Name.
Translation has been moved for the End tag before the namespace is removed
from the stack.
After closing... | [
{
"path": "src/encoding/xml/xml.go",
"patch": "@@ -314,15 +314,14 @@ func (d *Decoder) Token() (Token, error) {\n \t\t\t}\n \t\t}\n \n+\t\td.pushElement(t1.Name)\n \t\td.translate(&t1.Name, true)\n \t\tfor i := range t1.Attr {\n \t\t\td.translate(&t1.Attr[i].Name, false)\n \t\t}\n-\t\td.pushElement(t1.Name)... | 2018-04-15T09:26:32 |
vercel/next.js | e0399ca6dcf3e897aad378fb512b8180f2210d68 | 299d14530305fb06b56fcbea5e08ff67ae25cf6a | Support next/og usage in ESM nextjs app (#60818)
### What
Follow up for #59852 , now you can use `next/og` if your nextjs app is
marked as ESM with `"type": "module"` in package.json.
### How
It's a bug in external handling, we shouldn't ESM import error for local
requests. Previously you'll see the below ... | [
{
"path": "packages/next/src/build/handle-externals.ts",
"patch": "@@ -328,7 +328,7 @@ export function makeExternalHandler({\n \n // ESM externals can only be imported (and not required).\n // Make an exception in loose mode.\n- if (!isEsmRequested && isEsm && !looseEsmExternals) {\n+ if (!isE... | 2024-01-18T12:44:50 |
electron/electron | 7741a0e6ad3c9a05c0bb3b879aa769d751798459 | 796664ef1c1f1f1e93a55a01bcb13830d3f641f4 | :apple: Add roles for macOS native tab menu items
Fixes #9086, #10064. | [
{
"path": "atom/browser/ui/cocoa/atom_menu_controller.mm",
"patch": "@@ -45,6 +45,11 @@\n { @selector(performZoom:), \"zoom\" },\n { @selector(terminate:), \"quit\" },\n { @selector(toggleFullScreen:), \"togglefullscreen\" },\n+ { @selector(toggleTabBar:), \"toggletabbar\" },\n+ { @selector(selectNe... | 2017-08-15T15:27:25 |
nodejs/node | 81df6684807072824ac51b4d14548bbf357c24b8 | 5835367df4961bb2d71b0700b430b11f9ad32022 | worker: do not crash when JSTransferable lists untransferable value
This can currently be triggered when posting a closing FileHandle.
Refs: https://github.com/nodejs/node/pull/34746#issuecomment-673675333
PR-URL: https://github.com/nodejs/node/pull/34766
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Dav... | [
{
"path": "src/node_messaging.cc",
"patch": "@@ -343,18 +343,20 @@ class SerializerDelegate : public ValueSerializer::Delegate {\n \n private:\n Maybe<bool> WriteHostObject(BaseObjectPtr<BaseObject> host_object) {\n+ BaseObject::TransferMode mode = host_object->GetTransferMode();\n+ if (mode == Bas... | 2020-08-13T22:04:18 |
facebook/react | ad31cfa4dc0f59c646281ffdbd09c55681a572f0 | a2f77208e61a137245e29e0cc78a9a28b63abe0b | Warn when using constructor function directly
We no longer support the legacy factory style of calling component constructors
directly. We only support createElement or the wrapping of classes with
createFactory. Instead of letting this fail in a gross way as we try to run,
add a nice warning that shows up before the ... | [
{
"path": "src/classic/class/ReactClass.js",
"patch": "@@ -828,6 +828,14 @@ var ReactClass = {\n // This constructor is overridden by mocks. The argument is used\n // by mocks to assert on what gets mounted.\n \n+ if (__DEV__) {\n+ warning(\n+ this instanceof Constructor,\n+... | 2015-02-19T19:25:12 |
golang/go | b459166219b77857dc6d9366366b015d84e17bbe | fe4e59e78b30fb76936fdc02fa0ce044ca465c09 | encoding/xml: add check of namespaces to detect field names conflicts
Test added.
Fixes #8535
Change-Id: Ic89c2781e81d963a653180812748b3fc95fb7fae
Reviewed-on: https://go-review.googlesource.com/c/go/+/106575
Run-TryBot: Ian Lance Taylor <iant@google.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: I... | [
{
"path": "src/encoding/xml/typeinfo.go",
"patch": "@@ -292,7 +292,7 @@ Loop:\n \t\t\t\tconflicts = append(conflicts, i)\n \t\t\t}\n \t\t} else {\n-\t\t\tif newf.name == oldf.name {\n+\t\t\tif newf.name == oldf.name && newf.xmlns == oldf.xmlns {\n \t\t\t\tconflicts = append(conflicts, i)\n \t\t\t}\n \t\t}",... | 2018-04-12T06:55:16 |
vercel/next.js | 299d14530305fb06b56fcbea5e08ff67ae25cf6a | 486567d2d7eebb813c1ef6248a83f0dcae916771 | Use snapshots for component-stack tests (#60768)
### What?
Follow-up to #60579 and #60750. Checking `startsWith` is not enough
because it hides the rest of the stack. Changed the test to check the
snapshot for Turbopack and webpack.
Fixes a bug where the stack lines showed `http (NaN:NaN)` as the source
lines... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/internal/container/RuntimeError/ComponentStackFrameRow.tsx",
"patch": "@@ -2,9 +2,11 @@ import React from 'react'\n import type { ComponentStackFrame } from '../../helpers/parse-component-stack'\n import { useOpenInEditor } from '../../helpers... | 2024-01-18T12:44:03 |
electron/electron | 60b363fa3b576cdc5a96586363fa34872a2a2beb | 90fbe5c06c4cdf2410a8104bcf231696d25ff79e | Fixing Windows tray icon content menu - based on chrome/browser/ui/views/status_icons/status_icon_win.cc | [
{
"path": "atom/browser/ui/win/notify_icon.cc",
"patch": "@@ -147,10 +147,10 @@ void NotifyIcon::PopUpContextMenu(const gfx::Point& pos,\n if (pos.IsOrigin())\n rect.set_origin(display::Screen::GetScreen()->GetCursorScreenPoint());\n \n- views::MenuRunner menu_runner(\n+ menu_runner_.reset(new views... | 2017-08-01T10:15:49 |
rust-lang/rust | 48a4e2d2dde8d68e1d00d3eac07b2c6155f3239d | 59ceb02d65f13a20d29422f4d923ecde429d4c0c | fix ICE on stable related to attrs on macros | [
{
"path": "compiler/rustc_attr_parsing/src/context.rs",
"patch": "@@ -265,7 +265,7 @@ impl Stage for Early {\n sess: &'sess Session,\n diag: impl for<'x> Diagnostic<'x>,\n ) -> ErrorGuaranteed {\n- self.should_emit().emit_err_or_delay(sess.dcx().create_err(diag))\n+ self.sh... | 2025-08-23T17:42:14 |
nodejs/node | 5835367df4961bb2d71b0700b430b11f9ad32022 | c855c3e8ca5142e7b7f4a4e6adbf43e0ab18439b | meta: fix codeowners docs path
s/docs/doc/g
Signed-off-by: Mary Marchini <mmarchini@netflix.com>
PR-URL: https://github.com/nodejs/node/pull/34811
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cj... | [
{
"path": ".github/CODEOWNERS",
"patch": "@@ -13,16 +13,16 @@\n /CODE_OF_CONDUCT.md @nodejs/tsc @nodejs/community-committee\n /CONTRIBUTING.md @nodejs/tsc @nodejs/community-committee\n /LICENSE @nodejs/tsc @nodejs/community-committee\n-/docs/guides/contributing/code-of-conduct.md @nodejs/tsc @nodejs/communi... | 2020-08-17T17:38:51 |
golang/go | 896faf306c8ff8b1ae9f5200fa9b7927432b632b | 8befe0e4083a2a61741f03fb4e4cc2814fe27c35 | net: allocate res_state entirely in C memory
The linux-amd64-wsl builder was failing because the res_nsearch
implementation was storing pointer to the res_state's own fields
in other fields in the res_state. If the res_state is Go memory, this
looks like pointers to Go pointers. Moving the res_state to C memory
avoids... | [
{
"path": "src/net/cgo_unix.go",
"patch": "@@ -331,11 +331,12 @@ func cgoLookupCNAME(ctx context.Context, name string) (cname string, err error,\n // resSearch will make a call to the 'res_nsearch' routine in the C library\n // and parse the output as a slice of DNS resources.\n func resSearch(ctx context.C... | 2022-11-08T21:16:44 |
vercel/next.js | 486567d2d7eebb813c1ef6248a83f0dcae916771 | c5bdc5c54f1da792e26bf3599003c3615c2fa242 | Update ReactRefreshRegression test snapshot for Turbopack (#60767)
## What?
While looking at some tests that use this helper I noticed we have the
helper duplicated currently. This ensures the session uses the same
helper.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your ... | [
{
"path": "test/lib/development-sandbox.ts",
"patch": "@@ -1,4 +1,5 @@\n import {\n+ getRedboxComponentStack,\n getRedboxDescription,\n getRedboxHeader,\n getRedboxSource,\n@@ -131,18 +132,7 @@ export async function sandbox(\n return source\n },\n async getRedboxComponentStack() {... | 2024-01-18T10:06:04 |
rust-lang/rust | 3bf61444616fc0b9de1e09031f40be0943823fc5 | 4eedad312695d773b6e2e17a4f8082660470c101 | Allow errors to be emitted as fatal during attribute parsing | [
{
"path": "compiler/rustc_attr_parsing/src/context.rs",
"patch": "@@ -5,7 +5,7 @@ use std::sync::LazyLock;\n \n use private::Sealed;\n use rustc_ast::{AttrStyle, MetaItemLit, NodeId};\n-use rustc_errors::Diagnostic;\n+use rustc_errors::{Diag, Diagnostic, Level};\n use rustc_feature::AttributeTemplate;\n use... | 2025-08-11T09:46:30 |
nodejs/node | 240592228bc794918443d46a8fcee85fe25a80d7 | c17eaa3f3fe1ed18aef661540b07e80404172431 | quic: fixup session ticket app data todo comments
PR-URL: https://github.com/nodejs/node/pull/34741
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "src/quic/node_quic_session.h",
"patch": "@@ -616,20 +616,17 @@ class QuicApplication : public MemoryRetainer,\n \n virtual void ResumeStream(int64_t stream_id) {}\n \n- virtual void SetSessionTicketAppData(const SessionTicketAppData& app_data) {\n- // TODO(@jasnell): Different QUIC applicat... | 2020-08-07T20:05:46 |
facebook/react | a18c7549dff1e29e2728857d18428775661e7571 | 6c29eba0352b2c8dda2f5347dbb9a251d70ab3db | Modify sample CSS so that it works in Safari
When animating the max-height property in Safari, entering the leave state would trigger an animation to `max-height: 0`. Then when the active state kicked in, it would jump and didn't really look right. Moving the `transition` css property to the active version fixed the i... | [
{
"path": "docs/docs/10.1-animation.md",
"patch": "@@ -63,11 +63,11 @@ You can use these classes to trigger a CSS animation or transition. For example,\n ```css\n .example-enter {\n opacity: 0.01;\n- transition: opacity .5s ease-in;\n }\n \n .example-enter.example-enter-active {\n opacity: 1;\n+ trans... | 2015-02-19T01:26:54 |
electron/electron | 7226adee297ea867740fa8286ecbb3e6fd85af08 | 27c1612f449e5b10a586ee9496f8d8a4953685b4 | Upgrade node for windows build fixes | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit 816d79403dcd481c76ff271b79a005c4a2b74999\n+Subproject commit 5f4afdcf434e5e0e0c0c86cba96077bfe01c63e2",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2017-08-01T00:34:59 |
golang/go | 8befe0e4083a2a61741f03fb4e4cc2814fe27c35 | 2df6c1abce8cfd3f47ed5eb5a45733d7cbb53b4b | runtime: fix uncondition calls to traceGCSTWDone
startTheWorldWithSema should call traceGCSTWDone only when
the tracing is enabled.
Change-Id: Ibc7181834f68af3923e4b2aee01a57492ab6213e
Reviewed-on: https://go-review.googlesource.com/c/go/+/330835
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Michael Pr... | [
{
"path": "src/runtime/mgc.go",
"patch": "@@ -879,7 +879,7 @@ top:\n \tif restart {\n \t\tgetg().m.preemptoff = \"\"\n \t\tsystemstack(func() {\n-\t\t\tnow := startTheWorldWithSema(true)\n+\t\t\tnow := startTheWorldWithSema(trace.enabled)\n \t\t\twork.pauseNS += now - work.pauseStart\n \t\t\tmemstats.gcPaus... | 2021-06-25T13:51:22 |
vercel/next.js | c5bdc5c54f1da792e26bf3599003c3615c2fa242 | 9e8e44e5303bef8e19621dd8a7c6ead5e0d2d686 | add missing function call to `normalize-catchall-routes` test case (#60777)
### Fixed a Test Case
- Tests fixed:
`packages/next/src/build/normalize-catchall-routes.test.ts`, the
function call `normalizeCatchAllRoutes(appPaths)` was removed by
accident in this [merged commit
](https://github.com/vercel/next.js/c... | [
{
"path": "packages/next/src/build/normalize-catchall-routes.test.ts",
"patch": "@@ -11,8 +11,10 @@ describe('normalizeCatchallRoutes', () => {\n \n const initialAppPaths = JSON.parse(JSON.stringify(appPaths))\n \n+ // normalize appPaths against catchAlls\n normalizeCatchAllRoutes(appPaths)\n \n+... | 2024-01-18T08:33:54 |
nodejs/node | 10d5047a4fbe2cbae4c0895dee4509341e8e77a0 | 344c5e4e508ee6c7fad98bb5a34daa98ff43df68 | quic: fixup set_socket, fix skipped test
PR-URL: https://github.com/nodejs/node/pull/34669
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "lib/internal/quic/core.js",
"patch": "@@ -1803,8 +1803,10 @@ class QuicSession extends EventEmitter {\n }, depth, options);\n }\n \n- [kSetSocket](socket) {\n+ [kSetSocket](socket, natRebinding = false) {\n this[kInternalState].socket = socket;\n+ if (socket !== undefined)\n+ ... | 2020-08-07T19:17:47 |
electron/electron | 924a345facea30b022a4089f280ec601644932a1 | 59238a915e23a68d23cbe74a4e1e9c5f42d65eb0 | Try fix to boto on Trusty | [
{
"path": ".travis.yml",
"patch": "@@ -5,10 +5,8 @@ notifications:\n \n before_install:\n - export BOTO_CONFIG=/dev/null\n- \n+\n language: node_js\n-dist: precise\n-sudo: required\n node_js:\n - \"4\"\n os:",
"additions": 1,
"deletions": 3,
"language": "YAML"
}
] | 2017-07-25T20:14:35 |
golang/go | 9944ba757b0f8005cfb7715d41592c7e13c0a2b8 | a7538d78214920b798a1914a2a789ae833d6f1e1 | cmd/compile: fix transitive inlining of generic functions
If an imported, non-generic function F transitively calls a generic
function G[T], we may need to call CanInline on G[T].
While here, we can also take advantage of the fact that we know G[T]
was already seen and compiled in an imported package, so we don't nee... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -83,7 +83,7 @@ var (\n )\n \n // pgoInlinePrologue records the hot callsites from ir-graph.\n-func pgoInlinePrologue(p *pgo.Profile) {\n+func pgoInlinePrologue(p *pgo.Profile, decls []ir.Node) {\n \tif s, err := strconv.ParseFloat(base.Debug.I... | 2022-10-17T23:57:07 |
vercel/next.js | 9e8e44e5303bef8e19621dd8a7c6ead5e0d2d686 | fd59a007e13d691d26c57ecffaac412298fde8f0 | Dev Server: Preserve globals overwrites in the initialization hook (#60796)
The original dev server implementation records globals in the server
constructor and thus overwrites the values initialized in the
instrumentation hook. This is a major delta from the `next start` where
the instrumentation values are preser... | [
{
"path": "packages/next/src/server/dev/next-dev-server.ts",
"patch": "@@ -102,7 +102,7 @@ export default class DevServer extends Server {\n private actualMiddlewareFile?: string\n private actualInstrumentationHookFile?: string\n private middleware?: MiddlewareRoutingItem\n- private originalFetch: ty... | 2024-01-18T00:32:54 |
rust-lang/rust | 31245cabecfc21c837745ec6253d63d5fc9ac75f | cf358c09cebfe3e1c0d7145242396f6066033fad | Fix opaque generics
The parent generics were incorrectly not considered for TAIT.
I'm not convinced we should follow rustc here, also there are items (opaques) with more than 1 parent (opaque -> fn/type alias -> impl/trait) and I'm not sure we properly account for that in all places, but for now I left it as-is.
Als... | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/next_solver/generics.rs",
"patch": "@@ -12,7 +12,7 @@ use hir_def::{\n },\n };\n use hir_expand::name::Name;\n-use intern::Symbol;\n+use intern::{Symbol, sym};\n use la_arena::Arena;\n use rustc_type_ir::inherent::Ty as _;\n use triomphe::Arc;\n@@ -24... | 2025-08-24T05:49:40 |
nodejs/node | 92167e272be9dff7441f061ef8eac00bafa667e5 | 0e30c5bc261756dffaa874e4a9ef9858f16ba1d9 | doc: fix broken links in commit-queue.md
Fixes: https://github.com/nodejs/node/issues/34787
PR-URL: https://github.com/nodejs/node/pull/34789
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Denys Otrishko <shishugi@gmail.com>
Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
Reviewed-By: Ruben Bridgew... | [
{
"path": "doc/guides/commit-queue.md",
"patch": "@@ -50,7 +50,7 @@ of the commit queue:\n \n ## Implementation\n \n-The [action](/.github/workflows/commit_queue.yml) will run on scheduler\n+The [action](../../.github/workflows/commit-queue.yml) will run on scheduler\n events every five minutes. Five minute... | 2020-08-15T14:18:00 |
golang/go | a7538d78214920b798a1914a2a789ae833d6f1e1 | 12ab0ac184f45e4fc04ffa77a73e211a0aa86d5f | net: fix res_search uses on alpine, android, dragonfly
On Android and Dragonfly, don't use -lresolv. It doesn't exist there.
On Linux, use res_search instead of res_nsearch.
glibc makes res_search thread-safe by having a per-thread __res.
It still also provides res_nsearch.
musl makes res_search thread-safe by ignori... | [
{
"path": "src/net/cgo_unix_cgo_res.go",
"patch": "@@ -4,7 +4,7 @@\n \n // res_search, for cgo systems where that is thread-safe.\n \n-//go:build cgo && !netgo && (android || openbsd)\n+//go:build cgo && !netgo && (linux || openbsd)\n \n package net\n \n@@ -18,7 +18,7 @@ package net\n #include <arpa/nameser... | 2022-11-08T19:21:27 |
electron/electron | adaec2d32b533abce78ed327dd7c14fd296b0169 | b6f0d04813f57291a4e9c4571418f45ad59d7e25 | Fix brightray.gyp | [
{
"path": "brightray/brightray.gyp",
"patch": "@@ -293,7 +293,6 @@\n '<(libchromiumcontent_dir)/javascript.lib',\n '<(libchromiumcontent_dir)/pdfwindow.lib',\n '<(libchromiumcontent_dir)/fx_agg.lib',\n- '<(libchromiumcontent_dir)/fx_free... | 2017-07-13T13:54:15 |
vercel/next.js | fd59a007e13d691d26c57ecffaac412298fde8f0 | 4b50313fd946eed9191ce3d38de21407db730446 | Fix Server Actions compiler bug (#60794)
This PR fixes the issue where an inline Server Action gets exported. As
this isn't the designed use case for inline Server Actions (they're
supposed to be defined and used inside another closure, such as
components), we are not handling the export cases currently:
```ts
... | [
{
"path": "packages/next-swc/crates/next-custom-transforms/src/transforms/server_actions.rs",
"patch": "@@ -56,6 +56,10 @@ pub fn server_actions<C: Comments>(\n exported_idents: Default::default(),\n inlined_action_closure_idents: Default::default(),\n \n+ // This flag allows us to re... | 2024-01-18T00:29:07 |
nodejs/node | 0e30c5bc261756dffaa874e4a9ef9858f16ba1d9 | f5c0e282ccf98e17f295c11850649ad19a6fff51 | http2: use and support non-empty DATA frame with END_STREAM flag
Adds support for reading from a stream where the final frame is a
non-empty DATA frame with the END_STREAM flag set, instead of hanging
waiting for another frame. When writing to a stream, uses a
END_STREAM flag on final DATA frame instead of adding an e... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -1145,6 +1145,7 @@ class Http2Session extends EventEmitter {\n streams: new Map(),\n pendingStreams: new Set(),\n pendingAck: 0,\n+ shutdownWritableCalled: false,\n writeQueueSize: 0,\n originSet: undefined\n };\n@@ ... | 2020-06-14T15:10:32 |
golang/go | 12ab0ac184f45e4fc04ffa77a73e211a0aa86d5f | a6642e67e16b9d769a0c08e486ba08408064df19 | net: pass C string to res_nsearch, in case it stores the pointer
The current code passes a Go pointer to a NUL-terminated C string
to the C function res_nsearch (or res_search), but that function may
in turn store the pointer into the res_state, which is a violation of the
cgo pointer rules and is being detected on th... | [
{
"path": "src/net/cgo_unix.go",
"patch": "@@ -345,17 +345,17 @@ func resSearch(ctx context.Context, hostname string, rtype, class int) ([]dnsmes\n \t// giving us no way to find out how big the packet is.\n \t// For now, we are willing to take res_search's word that there's nothing\n \t// useful in the resp... | 2022-11-08T19:04:24 |
electron/electron | 1d10654a2216055c3781b49012e6e488508e4c2a | 76d46ce509fe8b062049e7f14190b8f61431843e | fixes bitmap to canvas conversion | [
{
"path": "atom/browser/ui/views/autofill_popup_view.cc",
"patch": "@@ -5,6 +5,7 @@\n #include \"atom/browser/ui/views/autofill_popup_view.h\"\n #include \"base/bind.h\"\n #include \"base/i18n/rtl.h\"\n+#include \"cc/paint/skia_paint_canvas.h\"\n #include \"content/public/browser/render_view_host.h\"\n #inc... | 2017-07-10T19:19:00 |
vercel/next.js | 4b50313fd946eed9191ce3d38de21407db730446 | 70fc4028ebaca73781f605bac197cce633cbc811 | feat: stabilize `unstable_getImgProps()` => `getImageProps()` (#60739)
This PR renames `unstable_getImgProps` to `getImageProps()` (originally
introduced in PR #51205).
Most feedback [after
announcing](https://twitter.com/leeerob/status/1674250190432116736)
looks positive so it seems like we can safely stabilize... | [
{
"path": "docs/02-app/02-api-reference/01-components/image.mdx",
"patch": "@@ -795,6 +795,100 @@ Try it out:\n \n - [Demo light/dark mode theme detection](https://image-component.nextjs.gallery/theme)\n \n+## getImageProps\n+\n+For more advanced use cases, you can call `getImageProps()` to get the props th... | 2024-01-17T23:28:49 |
facebook/react | 4c32fb487e80ab705b4a0b20192bd17ffc9f3adc | 5126cee0f521e2e546e37560df2fe3967039a034 | Wrap jQuery Mobile example's components with React.createFactory to fix on v0.13.0. Fixes #2880 | [
{
"path": "examples/jquery-mobile/js/app.js",
"patch": "@@ -43,6 +43,7 @@ var App = React.createClass({\n );\n }\n });\n+App = React.createFactory(App);\n \n /** jQuery Mobile button component. */\n var JQueryMobileButton = React.createClass({\n@@ -58,6 +59,7 @@ var JQueryMobileButton = React.createCl... | 2015-02-17T22:13:13 |
nodejs/node | f5c0e282ccf98e17f295c11850649ad19a6fff51 | 42a3a7f97d3b565763671047c774c858c1e0d5c1 | http2: allow Host in HTTP/2 requests
The HTTP/2 spec allows Host to be used instead of :authority in
requests, and this is in fact *preferred* when converting from HTTP/1.
We erroneously treated Host as a connection header, thus disallowing
it in requests. The patch corrects this, aligning Node.js behaviour
with the ... | [
{
"path": "doc/api/http2.md",
"patch": "@@ -2,6 +2,10 @@\n <!-- YAML\n added: v8.4.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/34664\n+ description: Requests with the `host` header (with or without\n+ `:authority`) can now be sent/received.\n ... | 2020-08-07T10:54:08 |
golang/go | a6642e67e16b9d769a0c08e486ba08408064df19 | 41be62e168fa7de2cf3357ad32f7105377bfd758 | net/textproto: reject invalid header keys/values in ReadMIMEHeader
Return an error when parsing a MIME header containing bytes in the
key or value outside the set allowed by RFC 7230.
For historical compatibility, accept spaces in keys (but do not
canonicalize the key in this case).
For #53188.
Change-Id: I19531936... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -6165,7 +6165,7 @@ func testUnsupportedTransferEncodingsReturn501(t *testing.T, mode testMode) {\n \t\t\"fugazi\",\n \t\t\"foo-bar\",\n \t\t\"unknown\",\n-\t\t\"\\rchunked\",\n+\t\t`\" chunked\"`,\n \t}\n \n \tfor _, badTE := range unsupportedTEs {",
... | 2022-06-06T20:54:22 |
facebook/react | 93f6fc9eebd1884e03a56a9cc2aebd3c69d8a2d5 | 6d97c708a9db5206d1fb3897370c5ef2acb975f7 | Allow rendering into document fragments. Fixes #840 | [
{
"path": "src/browser/ui/ReactMount.js",
"patch": "@@ -41,6 +41,7 @@ var nodeCache = {};\n \n var ELEMENT_NODE_TYPE = 1;\n var DOC_NODE_TYPE = 9;\n+var DOCUMENT_FRAGMENT_NODE_TYPE = 11;\n \n /** Mapping from reactRootID to React component instance. */\n var instancesByReactRootID = {};\n@@ -355,7 +356,8 @@... | 2015-02-17T19:22:13 |
vercel/next.js | 8e216ecb8df334e3a9b277d22b2cea0f777f91ae | 8d4e5be736d5615b27e247c990f26445b5c7c293 | Fix locale domain public files check (#60749)
This ensures we properly handle serving public files when routing via a
locale domain and adds regression tests for this case.
Closes: https://github.com/vercel/next.js/issues/54765
Closes: https://github.com/vercel/next.js/pull/59773
Closes: https://github.com/verce... | [
{
"path": "packages/next/src/server/lib/router-utils/filesystem.ts",
"patch": "@@ -472,7 +472,13 @@ export async function setupFsCheck(opts: {\n itemPath,\n // legacy behavior allows visiting static assets under\n // default locale but no other locale\n- isDyna... | 2024-01-17T21:41:16 |
nodejs/node | 375b859428e1c525f0cc9d3c4324f51740316722 | 5d179cb2eccac38205b6f03ecf6403df65deea51 | build: add build flag for OSS-Fuzz integration
Refs: https://github.com/google/oss-fuzz/pull/3860
Fixes: https://github.com/nodejs/node/issues/33724
PR-URL: https://github.com/nodejs/node/pull/34761
Fixes: https://github.com/nodejs/node/issues/33724
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Ben Noordh... | [
{
"path": "configure.py",
"patch": "@@ -439,6 +439,11 @@\n dest='v8_options',\n help='v8 options to pass, see `node --v8-options` for examples.')\n \n+parser.add_option('--with-ossfuzz',\n+ action='store_true',\n+ dest='ossfuzz',\n+ help='Enables building of fuzzers. This command should be ... | 2020-08-13T16:12:44 |
golang/go | 41be62e168fa7de2cf3357ad32f7105377bfd758 | 4b43b741710eb87cbae25f19cbde7eb733b08df1 | cmd/go: fix svn vctest on Windows and make them timezone agnostic
This CL updates svn vctest so they work on Windows.
Side effect is that svn logs are no longer timezone dependant, as this
updated the `svn log` command to format logs using XML, which contain
UTC dates instead of local dates. Therefore it supersedes
h... | [
{
"path": "src/cmd/go/internal/vcweb/script.go",
"patch": "@@ -128,6 +128,7 @@ func scriptEnviron(homeDir string) []string {\n \t\ttempEnvName(),\n \t\t\"SYSTEMROOT\", // must be preserved on Windows to find DLLs; golang.org/issue/25210\n \t\t\"WINDIR\", // must be preserved on Windows to ... | 2022-11-04T08:50:09 |
vercel/next.js | 861b472b1239369b92ba0bfa5f25782eb5f01a36 | 72e381c8b01fffe2cf8c818e333b982ead2d3b41 | fix layout segment key to match up with manifest (#60783)
### What?
When webpack loaders are applied on a page file and it's renamed with
the `as` key, layout segment key no longer matches. This fixes that
### Why?
### How?
Closes NEXT-
Fixes #
-->
Closes PACK-2251 | [
{
"path": "packages/next-swc/crates/next-core/src/loader_tree.rs",
"patch": "@@ -107,6 +107,15 @@ impl LoaderTreeBuilder {\n let i = self.unique_number();\n let identifier = magic_identifier::mangle(&format!(\"{name} #{i}\"));\n \n+ let source = Vc::upcast(FileSource::new(... | 2024-01-17T17:11:50 |
nodejs/node | 5d179cb2eccac38205b6f03ecf6403df65deea51 | ba5c64bf4541f540880cf35facdb8c24666072eb | timers: use AbortController with correct name/message
On the web, `AbortError` is the error name, not the error
message. Change the code to match that.
PR-URL: https://github.com/nodejs/node/pull/34763
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "lib/timers/promises.js",
"patch": "@@ -18,10 +18,10 @@ const {\n \n let DOMException;\n \n-const lazyDOMException = hideStackFrames((message) => {\n+const lazyDOMException = hideStackFrames((message, name) => {\n if (DOMException === undefined)\n DOMException = internalBinding('messaging').... | 2020-08-13T19:00:55 |
electron/electron | ca4a6e46925c4107023ca65bbe27c9cab4b12c3f | 1d132565c916fb5555c2accb51e397c59d691092 | fixes offscreen rendering on macos | [
{
"path": "atom/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -339,6 +339,8 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n popup_position_(gfx::Rect()),\n hold_resize_(false),\n pending_resize_(false),\n+ renderer_compositor_frame_sink_(nullptr),\n+ ... | 2017-07-08T19:25:15 |
golang/go | 41795528b0132170ec70a8e8ce0bcdb2e972e074 | 26b2c9a62043c40f3cdfd294ad2cea11edeea658 | runtime: smooth cons/mark with a moving average and use actual trigger
This change modifies the pacer in two ways:
* It replaces the PI controller used as a smoothing function with a
simple two-cycle moving average.
* It makes the pacer use the actual GC trigger point for cons/mark (and
other) calculations instead... | [
{
"path": "src/runtime/mgcpacer.go",
"patch": "@@ -136,12 +136,10 @@ type gcControllerState struct {\n \t// Updated at the end of each GC cycle, in endCycle.\n \tconsMark float64\n \n-\t// consMarkController holds the state for the mark-cons ratio\n-\t// estimation over time.\n-\t//\n-\t// Its purpose is to... | 2022-07-14T21:26:55 |
nodejs/node | ba5c64bf4541f540880cf35facdb8c24666072eb | 9594b54f966c90c5c0270490a8b750e437a3cddb | quic: use AbortController with correct name/message
On the web, `AbortError` is the error name, not the error
message. Change the code to match that.
PR-URL: https://github.com/nodejs/node/pull/34763
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "lib/internal/quic/core.js",
"patch": "@@ -253,10 +253,10 @@ let warnedVerifyHostnameIdentity = false;\n \n let DOMException;\n \n-const lazyDOMException = hideStackFrames((message) => {\n+const lazyDOMException = hideStackFrames((message, name) => {\n if (DOMException === undefined)\n DOMEx... | 2020-08-13T18:59:51 |
facebook/react | 6b0397539595f0cd2a052ca80ef980d6c6580621 | 6729acf37087785829b6b82f6f885bab41ae055d | Make Simulate.mouseEnter/Leave use direct dispatch
Fixes #1297.
onMouseEnter and onMouseLeave shouldn't *actually* use direct dispatch, but doing so is more useful than doing nothing (and I don't think it precludes adding proper enter/leave dispatching later, either).
Test Plan:
grunt test | [
{
"path": "src/browser/__tests__/ReactBrowserEventEmitter-test.js",
"patch": "@@ -57,6 +57,7 @@ var LISTENER = mocks.getMockFunction();\n var ON_CLICK_KEY = keyOf({onClick: null});\n var ON_TOUCH_TAP_KEY = keyOf({onTouchTap: null});\n var ON_CHANGE_KEY = keyOf({onChange: null});\n+var ON_MOUSE_ENTER_KEY = k... | 2015-02-17T00:12:19 |
electron/electron | 1d132565c916fb5555c2accb51e397c59d691092 | 7d1a49db48d499e5ddfcfc63f1e6532a84d541fb | FIXME: enable_osr=0 | [
{
"path": "script/update.py",
"patch": "@@ -80,6 +80,9 @@ def run_gyp(target_arch, component):\n '-Dhost_arch={0}'.format(get_host_arch()),\n '-Dlibrary=static_library',\n '-Dmas_build={0}'.format(mas_build),\n+\n+ # TODO(alexeykuzmin): Enable OSR.\n+ '-Denable_osr=0',\n ]\n \n # Add t... | 2017-07-08T02:16:16 |
golang/go | e5d2814576937162ce183d5aab09616ae13d983c | efe541d4e53f0e229e7069adbdcedb7f0b117d8e | cmd/compile: adjust PGO debug output slightly
- Include the callee names in hot call inlining message.
- Print the graph when pgoinline >= 2.
Change-Id: Iceb89b5f18cefc69ab9256aca9a910743d22ec0f
Reviewed-on: https://go-review.googlesource.com/c/go/+/448496
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Ch... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -122,7 +122,7 @@ func pgoInlinePrologue(p *pgo.Profile) {\n \t\t\t}\n \t\t}\n \t})\n-\tif base.Debug.PGOInline > 0 {\n+\tif base.Debug.PGOInline >= 2 {\n \t\tfmt.Printf(\"hot-cg before inline in dot format:\")\n \t\tp.PrintWeightedCallGraphDOT... | 2022-11-07T22:05:33 |
vercel/next.js | 72e381c8b01fffe2cf8c818e333b982ead2d3b41 | a211566655fe9e5cdfb12bf564dc707b5079ad6c | Fix tests exit race condition (#60757)
This ensures we don't allow a following exit condition to override a
previous as async work is done before the `process.exit` actually occurs
so a follow-up one could override the first giving a false negative.
Closes NEXT-1911 | [
{
"path": "run-tests.js",
"patch": "@@ -124,7 +124,15 @@ ${output}\n }\n }\n \n+let exiting = false\n+\n const cleanUpAndExit = async (code) => {\n+ if (exiting) {\n+ return\n+ }\n+ exiting = true\n+ console.log(`exiting with code ${code}`)\n+\n if (process.env.NEXT_TEST_STARTER) {\n await fs... | 2024-01-17T16:09:57 |
electron/electron | 4bb95acc2b813af213bf9f792adfd88a16b2cea8 | c7cf844bcd846b7e112d45647ce1c5f7de2f7092 | :shirt: Remove linter errors | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -1245,18 +1245,20 @@ void WebContents::HasServiceWorker(\n \n struct WrappedCallback {\n base::Callback<void(bool)> callback_;\n- WrappedCallback(const base::Callback<void(bool)>& callback) : callback_(callback) {}\n+ explicit W... | 2017-06-29T23:50:55 |
nodejs/node | 8da8ec9c7e66e8f249757d3bdccc8588135c2ed7 | 0347574834ab1a0714c2c97bf6bb07592556abd8 | errors: improve ERR_INVALID_OPT_VALUE error
* use util.inspect for value presentation
* allow to optionally specify error reason
PR-URL: https://github.com/nodejs/node/pull/34671
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Mary Marchini <oss@mmarchini.me> | [
{
"path": "lib/internal/child_process.js",
"patch": "@@ -938,7 +938,7 @@ function getValidStdio(stdio, sync) {\n if (typeof stdio === 'string') {\n stdio = stdioStringToArray(stdio);\n } else if (!ArrayIsArray(stdio)) {\n- throw new ERR_INVALID_OPT_VALUE('stdio', inspect(stdio));\n+ throw new ... | 2020-08-07T17:31:20 |
golang/go | efe541d4e53f0e229e7069adbdcedb7f0b117d8e | 0409314db39db8f1d587fff31f79a24f1aa36ad2 | cmd/compile/internal/pgo: allow and ignore profiles with no sample
Passing a profile with no sample is arguably not a user error.
Accept such a profile, and ignore it as it doesn't indicate any
optimizations. This also makes testing easier.
Change-Id: Iae49a4260e20757419643153f50d8d5d51478411
Reviewed-on: https://go-... | [
{
"path": "src/cmd/compile/internal/pgo/irgraph.go",
"patch": "@@ -153,7 +153,9 @@ func New(profileFile string) *Profile {\n \t}\n \n \t// Build the node map and totals from the profile graph.\n-\tp.processprofileGraph(g)\n+\tif !p.processprofileGraph(g) {\n+\t\treturn nil\n+\t}\n \n \t// Create package-lev... | 2022-11-07T21:46:28 |
vercel/next.js | 4548fed1cf3a95eb060e2bdd2a917d93a0c39164 | c5835281168c7e49bdac96ca666cc957ee748241 | Skip postcss config location resolving in node_modules (#60697)
## What?
Skip postcss config resolving in node_modules for Turbopack. This
matches current Next.js on webpack closer as that only resolves the
postcss config from the project root. The additional feature Turbopack
has is that it can find a postcss c... | [
{
"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-240117.1#145d71b0a0e4ddaffda006a07eccc55e33aad75e\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2024-01-17T13:54:17 |
facebook/react | 35e24759f1e947eaed49b6ab729cdf69292549fa | 5126cee0f521e2e546e37560df2fe3967039a034 | fix sourcemap filenames when using transformWithDetails. Fixes #3140 | [
{
"path": "main.js",
"patch": "@@ -26,6 +26,9 @@ module.exports = {\n if (options && options.sourceMap) {\n result.sourceMap = output.sourceMap.toJSON();\n }\n+ if (options && options.sourceFilename) {\n+ result.sourceMap.sources = [options.sourceFilename];\n+ }\n return result;... | 2015-02-16T20:21:51 |
nodejs/node | 0347574834ab1a0714c2c97bf6bb07592556abd8 | 5f78dea1a42eba373df57beac18a252aad74df65 | module: fix check for package.json at volume root
This patch converts the "read package scope" algorithm's while loop
into a do-while loop enabling items at the filesystem root dir to
be considered within the scope of a sibling package.json also at the
filesystem root dir.
Fixes: https://github.com/nodejs/node/issues... | [
{
"path": "doc/api/esm.md",
"patch": "@@ -1864,11 +1864,11 @@ _conditions_)\n \n > 1. Let _scopeURL_ be _url_.\n > 1. While _scopeURL_ is not the file system root,\n+> 1. Set _scopeURL_ to the parent URL of _scopeURL_.\n > 1. If _scopeURL_ ends in a _\"node_modules\"_ path segment, return **null**.\n ... | 2020-08-02T21:27:51 |
electron/electron | f4411889a91afed72402208489c081d0886d3a74 | 627eb30409941d72b3a6cb348d93a4df6aeb27b4 | Fix free memory calculation.
https://codereview.chromium.org/2558043007 | [
{
"path": "atom/common/api/atom_bindings.cc",
"patch": "@@ -164,7 +164,15 @@ v8::Local<v8::Value> AtomBindings::GetSystemMemoryInfo(v8::Isolate* isolate,\n \n mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);\n dict.Set(\"total\", mem_info.total);\n- dict.Set(\"free\", mem_info.free);\n+\... | 2017-06-28T15:25:07 |
golang/go | 0409314db39db8f1d587fff31f79a24f1aa36ad2 | 6939659a085de15ba7e08ebe0c8864616ba21b76 | cmd/compile: fix PGO line offset matching
Appears to be a typo in CL 447315.
Change-Id: I9f380a3c7521f5ac5a1d7e271eaa60bd4bbcfb29
Reviewed-on: https://go-review.googlesource.com/c/go/+/448515
Run-TryBot: Cherry Mui <cherryyz@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Michael Pratt <mpratt... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -919,7 +919,7 @@ func mkinlcall(n *ir.CallExpr, fn *ir.Func, maxCost int32, inlCalls *[]*ir.Inlin\n \t}\n \tif fn.Inl.Cost > maxCost {\n \t\t// If the callsite is hot and it is under the inlineHotMaxBudget budget, then try to inline it, or els... | 2022-11-07T23:04:58 |
vercel/next.js | 9fc6a4475f707d7d95e8370c5c78b94782fd8914 | e55f3e3a3e4fc76e583dc19d77e0ab34df24da2c | chore: fix turbopack typescript checks (vercel/turbo#7019)
Closes PACK-2249 | [
{
"path": "crates/turbopack-cli/js/tsconfig.json",
"patch": "@@ -12,7 +12,7 @@\n \n // modules\n \"baseUrl\": \".\",\n- \"module\": \"esnext\",\n+ \"module\": \"nodenext\",\n \"moduleResolution\": \"nodenext\",\n \"types\": [],\n ",
"additions": 1,
"deletions": 1,
"language... | 2024-01-17T13:38:57 |
facebook/react | 96e4e3cbbcea5c2367024c92c206f15d0b20f0d1 | 5126cee0f521e2e546e37560df2fe3967039a034 | Fix ReactMount._renderNewRootComponent signature (ReactComponent -> ReactElement) | [
{
"path": "src/browser/ui/ReactMount.js",
"patch": "@@ -279,7 +279,7 @@ function batchedMountComponentIntoNode(\n }\n \n /**\n- * Mounting is the process of initializing a React component by creatings its\n+ * Mounting is the process of initializing a React component by creating its\n * representative DOM ... | 2015-02-16T03:12:55 |
nodejs/node | 4a9e312591fcb773a76a0493ee2adaaa262e58e3 | 888eb5a987ffa8b5a2a36caf372cc0def67f79c9 | crypto: avoid unitializing ECDH objects on error
The previous code changed the private key of the ECDH object, but
removed the public key if deriving it from the private key failed.
Instead, if deriving the public key fails, neither the private nor
the public key stored in the ECDH object should be updated.
PR-URL: h... | [
{
"path": "src/node_crypto.cc",
"patch": "@@ -5710,21 +5710,20 @@ void ECDH::SetPrivateKey(const FunctionCallbackInfo<Value>& args) {\n return env->ThrowError(\"Private key is not valid for specified curve.\");\n }\n \n- int result = EC_KEY_set_private_key(ecdh->key_.get(), priv.get());\n+ ECKeyPoin... | 2020-07-10T22:19:40 |
electron/electron | 4d9f3098889307b469934bd774b1941598f848cb | e2fe95894fe2f3e4caf7f2f72e0ab031ff47a5cf | Fix HasServiceWorker check
Revert cb2014f9e8ae0283e5f20d4e2167be1592228887. | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -1238,14 +1238,25 @@ void WebContents::InspectServiceWorker() {\n }\n \n void WebContents::HasServiceWorker(\n- const base::Callback<void(content::ServiceWorkerCapability)>& callback) {\n+ const base::Callback<void(bool)>& callback) {... | 2017-06-21T10:34:14 |
golang/go | 6939659a085de15ba7e08ebe0c8864616ba21b76 | a1c31d6803dac891b200b3598aa00224ab80c0bb | net: unify CNAME handling across ports
Unix and Windows differ in how they handle LookupCNAME(name).
If name exists in DNS with an A or AAAA record but no CNAME,
then on all operating systems and in the pure Go resolver,
LookupCNAME returns the name associated with the A/AAAA record
(the original name).
TestLookupCN... | [
{
"path": "src/internal/syscall/unix/asm_darwin.s",
"patch": "@@ -18,3 +18,12 @@ TEXT ·libc_getnameinfo_trampoline(SB),NOSPLIT,$0-0\n \n TEXT ·libc_gai_strerror_trampoline(SB),NOSPLIT,$0-0\n \tJMP\tlibc_gai_strerror(SB)\n+\n+TEXT ·libresolv_res_9_ninit_trampoline(SB),NOSPLIT,$0-0\n+\tJMP\tlibresolv_res_9_ni... | 2022-10-28T14:57:14 |
vercel/next.js | 5956ff76b52f0d4481b5b30384c5352d86254d56 | 0c0ef86cdf264058668db4187e1234f41a99db2d | feat(next-core): port remaining next.js custom transforms (#60498)
<!-- 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:
... | [
{
"path": "Cargo.lock",
"patch": "@@ -3428,6 +3428,7 @@ dependencies = [\n \"once_cell\",\n \"qstring\",\n \"regex\",\n+ \"rustc-hash\",\n \"serde\",\n \"serde_json\",\n \"swc_core\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "packages/next-swc/crates/nex... | 2024-01-17T09:32:58 |
facebook/react | 7e609c690359fdc14c1e780af220a24098a38078 | 2a3f43184aae5aacc2104959df5fcead7a79f328 | Fixed Copyright year for three files and react.js licence to BSD-license. | [
{
"path": "npm-jsx_orphaned_brackets_transformer/transforms/react.js",
"patch": "@@ -1,17 +1,10 @@\n /**\n- * Copyright 2013-2014 Facebook, Inc.\n+ * Copyright 2013-2015, Facebook, Inc.\n+ * All rights reserved.\n *\n- * Licensed under the Apache License, Version 2.0 (the \"License\");\n- * you may not use... | 2015-02-13T20:15:49 |
nodejs/node | 888eb5a987ffa8b5a2a36caf372cc0def67f79c9 | a0f87aab102580503788e15467013a05ab794b5d | test: use process.env.PYTHON to spawn python
Co-authored-by: Jérémy Lal <kapouer@melix.org>
Fixes: https://github.com/nodejs/node/issues/34699
PR-URL: https://github.com/nodejs/node/pull/34700
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jiawen Geng <techni... | [
{
"path": "test/parallel/test-child-process-set-blocking.js",
"patch": "@@ -25,8 +25,9 @@ const assert = require('assert');\n const ch = require('child_process');\n \n const SIZE = 100000;\n+const python = process.env.PYTHON || 'python';\n \n-const cp = ch.spawn('python', ['-c', `print(${SIZE} * \"C\")`], {... | 2020-08-09T22:02:47 |
electron/electron | 48821a6d2a9f17d9bda2a8b00952cb5246180f05 | d09cab2e21a3de327bdf36f29e4b81981efa0fec | Fix compilation | [
{
"path": "atom/browser/api/frame_subscriber.cc",
"patch": "@@ -45,7 +45,7 @@ bool FrameSubscriber::ShouldCaptureFrame(\n \n gfx::Size view_size = rect.size();\n gfx::Size bitmap_size = view_size;\n- const gfx::NativeView native_view = view_->GetNativeView();\n+ gfx::NativeView native_view = view_->Ge... | 2017-06-16T22:13:30 |
vercel/next.js | 16d009ef1b35c82e09dd134c429337e2a2b67f5f | 4597ff35da282f19fbf6a8257b09162ce60314b3 | separate chunking per layout parts (#60569)
### What?
* creates a separate chunk group for client components per layout
segment (before it was per page)
### Why?
This fixes a bug with css loading on client transitions as next.js
assumes that the chunk group for the unchanged layout segments are
already loa... | [
{
"path": "packages/next-swc/crates/next-api/src/app.rs",
"patch": "@@ -19,9 +19,7 @@ use next_core::{\n get_client_module_options_context, get_client_resolve_options_context,\n get_client_runtime_entries, ClientContextType, RuntimeEntries,\n },\n- next_client_reference::{\n- C... | 2024-01-17T08:18:59 |
golang/go | 5b42f89e394a9e9fbd28fa93cc8a09186db0f233 | 0b7aa9fa5b207a3d9e2b1de2629babb6f5ce6e45 | context: add APIs for writing and reading cancelation cause
Extend the context package to allow users to specify why a context was
canceled in the form of an error, the "cause". Users write the cause
by calling WithCancelCause to construct a derived context, then
calling cancel(cause) to cancel the context with the pr... | [
{
"path": "api/next/51365.txt",
"patch": "@@ -0,0 +1,3 @@\n+pkg context, func Cause(Context) error #51365\n+pkg context, func WithCancelCause(Context) (Context, CancelCauseFunc) #51365\n+pkg context, type CancelCauseFunc func(error) #51365",
"additions": 3,
"deletions": 0,
"language": "Plain Tex... | 2022-01-06T18:57:05 |
nodejs/node | 5864fca7bc96ba701558f2b641c1e4cd1640f9f5 | 7b8c6b0c00f5e321e431047794fde8b84d0c4c3f | buffer: alias UInt ➡️ Uint in buffer methods
It’s *so* hard to remember that it’s `UintXArray` but not
`(write|read)UintX`. Let’s fix that by just providing aliases. 😊
PR-URL: https://github.com/nodejs/node/pull/34729
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de... | [
{
"path": "doc/api/buffer.md",
"patch": "@@ -1709,6 +1709,9 @@ console.log(buf.readIntLE(0, 6).toString(16));\n <!-- YAML\n added: v0.5.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/34729\n+ description: This function is also available as `buf.readUint8()`.\n -... | 2020-08-11T16:33:35 |
electron/electron | 30fafc2772f827dcc885196b2958a18b8a9cb72c | 9b8a77f0d8996ff24fcaaa033594fb8165aedefe | Fix CompositorResizeLock to do something.
https://codereview.chromium.org/2773433003 | [
{
"path": "atom/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -15,10 +15,10 @@\n #include \"cc/output/copy_output_request.h\"\n #include \"cc/scheduler/delay_based_time_source.h\"\n #include \"components/display_compositor/gl_helper.h\"\n+#include \"content/browser/renderer_host/compositor_resiz... | 2017-06-16T21:38:35 |
vercel/next.js | 4597ff35da282f19fbf6a8257b09162ce60314b3 | 056b675bd94370e35ca91b8a08ad22bc63714c1b | allow to pass available chunk items when creating a chunk group (#60554)
### What?
api changes for https://github.com/vercel/turbo/pull/6988
### Turbopack Changes
* https://github.com/vercel/turbo/pull/6886 <!-- Tobias Koppers -
improve nesting of tracing for invalidations -->
* https://github.com/vercel/tu... | [
{
"path": "Cargo.lock",
"patch": "@@ -321,7 +321,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-240110.4#35ade4e85b17a076fb4e6287e519c26b087d0bef\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2024-01-17T07:58:02 |
facebook/react | 862f7d6a41d1340fc115bbb75d5d1e281d48848b | 96677d5da56557cb2a0626b679e2cc1a238d80f5 | fix linting | [
{
"path": "perf/lib/BrowserPerfRunnerApp.react.js",
"patch": "@@ -53,7 +53,7 @@ var BrowserPerfRunnerApp = React.createClass({\n return key.indexOf(queueItem.test) === 0;\n })\n .map(function(key) {\n- return this.state.results[key];\n+ return this.state.results[key];\n ... | 2015-02-12T23:45:50 |
nodejs/node | 7b8c6b0c00f5e321e431047794fde8b84d0c4c3f | 9861962a5f165f8a325013bf665fe76e8433cfd7 | lib: add UNC support to url.pathToFileURL()
Fixes: https://github.com/nodejs/node/issues/34736
PR-URL: https://github.com/nodejs/node/pull/34743
Reviewed-By: Guy Bedford <guybedford@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrot... | [
{
"path": "lib/internal/url.js",
"patch": "@@ -27,6 +27,7 @@ const { getConstructorOf, removeColors } = require('internal/util');\n const {\n ERR_ARG_NOT_ITERABLE,\n ERR_INVALID_ARG_TYPE,\n+ ERR_INVALID_ARG_VALUE,\n ERR_INVALID_CALLBACK,\n ERR_INVALID_FILE_URL_HOST,\n ERR_INVALID_FILE_URL_PATH,\n... | 2020-08-12T01:12:47 |
electron/electron | 567646e62448e96f0ea766cda6f890c20571fa63 | adddff3ee254f90a7eeaadd1795dfd426f60b1af | Fix cc/paint skia type mismatches
https://codereview.chromium.org/2717943002 | [
{
"path": "chromium_src/chrome/renderer/printing/print_web_view_helper.cc",
"patch": "@@ -354,7 +354,7 @@ float PrintWebViewHelper::RenderPageContent(blink::WebFrame* frame,\n const gfx::Rect& content_area,\n double scal... | 2017-06-17T00:20:31 |
facebook/react | 892200ae38698276eda4bdd88524abdced72619b | fffe135931da39cc6f5dc870e62fbe4379d47c04 | Bumps safe_yaml to 1.0.4 (was 1.0.3) to fix bug
safe_yaml 1.0.3 has some issues with Ruby 2.2.0:
https://github.com/dtao/safe_yaml/issues/67 | [
{
"path": "docs/Gemfile.lock",
"patch": "@@ -61,7 +61,7 @@ GEM\n rb-inotify (0.9.5)\n ffi (>= 0.5.0)\n redcarpet (3.1.2)\n- safe_yaml (1.0.3)\n+ safe_yaml (1.0.4)\n sanitize (2.0.6)\n nokogiri (>= 1.4.4)\n sass (3.3.14)",
"additions": 1,
"deletions": 1,
"languag... | 2015-02-12T23:37:14 |
vercel/next.js | be1febb94851c8a14c6f5fbac1b282f0e1d6a130 | 916fc19ccc9d7a230ffbd26bf90c001c3e4cfa32 | improve error message when no config is exported from postcss.config.js (vercel/turbo#7004)
### Description
improve error message
Closes PACK-2238 | [
{
"path": "crates/turbopack-node/js/src/transforms/postcss.ts",
"patch": "@@ -23,6 +23,11 @@ const transform = async (ipc: Ipc, cssContent: string, name: string) => {\n if (typeof config === \"function\") {\n config = await config({ env: \"development\" });\n }\n+ if (typeof config === \"undefined\... | 2024-01-17T07:25:50 |
nodejs/node | 9861962a5f165f8a325013bf665fe76e8433cfd7 | a84716a21b3a4a17f67c95227e9eaf3968910171 | test: remove error message checking in test-worker-init-failure
Let the check for the error code suffice and don't check for a
particular string in the message.
PR-URL: https://github.com/nodejs/node/pull/34727
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-worker-init-failure.js",
"patch": "@@ -35,7 +35,6 @@ if (process.argv[2] === 'child') {\n // (i.e. single cpu) `ulimit` may not lead to such an error.\n \n worker.on('error', (e) => {\n- assert.match(e.message, /EMFILE/);\n assert.ok(e.code === 'ERR_WORKER_IN... | 2020-08-11T14:18:54 |
electron/electron | 0adc887b326a3e45102344c79374d209d7700f38 | 7c7300ff82837edf36ff05b9b6afa49a73150a02 | [downloads] Allow download target determination to indicate an error.
https://chromium-review.googlesource.com/c/465526/ | [
{
"path": "atom/browser/atom_download_manager_delegate.cc",
"patch": "@@ -115,7 +115,10 @@ void AtomDownloadManagerDelegate::OnDownloadPathGenerated(\n // If user cancels the file save dialog, run the callback with empty FilePath.\n callback.Run(path,\n content::DownloadItem::TARGET_DISPO... | 2017-06-16T21:57:28 |
golang/go | 6bead8f77afd2f7317eb011ca019b61ac3d90c17 | f3d656be502a7cc4e2afbec461983b453665fca5 | sync/atomic: disallow type conversions of atomic.Pointer[T]
Fixes #56603
Change-Id: I6af9d80201025ae4028bfaa4a62e5de9ac0c501d
GitHub-Last-Rev: e6ed5e14512e1221a3c6cb181406cf00eec07e99
GitHub-Pull-Request: golang/go#56604
Reviewed-on: https://go-review.googlesource.com/c/go/+/448275
Reviewed-by: Michael Knyszek <mknys... | [
{
"path": "src/sync/atomic/type.go",
"patch": "@@ -41,6 +41,10 @@ var _ = &Pointer[int]{}\n \n // A Pointer is an atomic pointer of type *T. The zero value is a nil *T.\n type Pointer[T any] struct {\n+\t// Mention T in a field to disallow conversion between Pointer types.\n+\t// See go.dev/issue/56603 for ... | 2022-11-07T14:54:52 |
nodejs/node | 7a1220a1d745cf2f6d00ed3aa3905b604cea0952 | f948359c056455e5196229d065adeae34b7ed1b7 | doc: fix headings in quic.md
PR-URL: https://github.com/nodejs/node/pull/34717
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "doc/api/quic.md",
"patch": "@@ -249,7 +249,7 @@ TBD\n \n ## QUIC JavaScript API\n \n-### `net.createQuicSocket(\\[options\\])`\n+### `net.createQuicSocket([options])`\n <!-- YAML\n added: REPLACEME\n -->\n@@ -336,7 +336,7 @@ The object will contain the properties:\n \n If the `QuicEndpoint` is no... | 2020-08-10T23:07:56 |
vercel/next.js | 916fc19ccc9d7a230ffbd26bf90c001c3e4cfa32 | 983be1c253eafda1c2bc0dc5a927e770d8cf8695 | fix: make CSS reloading work on firefox (vercel/turbo#7013)
### Description
Firefox for some reason never reloads `<link />` tags if the URL has
already been loaded once for the current page load.
Closes PACK-2135 | [
{
"path": "crates/turbopack-ecmascript-runtime/js/src/dev/runtime/dom/runtime-backend-dom.ts",
"patch": "@@ -137,7 +137,20 @@ async function loadWebAssemblyModule(\n \n const link = document.createElement(\"link\");\n link.rel = \"stylesheet\";\n- link.href = chunkUrl;\n+\n+ if... | 2024-01-17T07:25:27 |
electron/electron | 1709b8e39d83b9c613bf3e4b87efca23bebc0645 | a419fe75ca76c8edcbd80692038749001ac9fe63 | Fix sandbox crash when opening a background tab
When a link is clicked with the middle mouse button, chrome opens a window with
"background-tab" disposition. This is not currently handled in sandbox mode,
causing an api::WebContents to leak leading to eventual crash(since it has no
wrapper).
Also fix the event handle... | [
{
"path": "lib/browser/api/browser-window.js",
"patch": "@@ -43,8 +43,9 @@ BrowserWindow.prototype._init = function () {\n userGesture, left, top, width,\n height) => {\n let urlFrameName = v8Util.getHiddenValue(webC... | 2017-08-14T17:18:14 |
golang/go | f3d656be502a7cc4e2afbec461983b453665fca5 | 4538f30e2d35fdf44331d7066098c0daf2dd1a85 | cmd/compile: let compiler downgrade its own concurrency
This gets the Go command out of the business of thinking it understands
compiler debug flags, and allows the compiler to turn down its worker
concurrency instead of failing and forcing the user to do the very
same thing. Debug flags that are obviously safe for c... | [
{
"path": "src/cmd/compile/internal/base/debug.go",
"patch": "@@ -17,39 +17,39 @@ var Debug DebugFlags\n // Each setting is name=value; for ints, name is short for name=1.\n type DebugFlags struct {\n \tAppend int `help:\"print information about append compilation\"`\n-\tCheckptr ... | 2022-11-07T19:16:31 |
nodejs/node | b5e3fca04cda736d4a3edcdd4f61d7686291821b | 3b84048260ba57277b327c1913ca19d826c49158 | build: set --v8-enable-object-print by default
The flag improves the experience of debugging V8 with native debuggers.
It doens't incur performance penality, the only downside is an increase
in binary size by approximately 248 Kb.
Ref: https://github.com/nodejs/node/pull/32834
PR-URL: https://github.com/nodejs/node/... | [
{
"path": "common.gypi",
"patch": "@@ -54,6 +54,9 @@\n # Enable disassembler for `--print-code` v8 options\n 'v8_enable_disassembler': 1,\n \n+ # Sets -dOBJECT_PRINT.\n+ 'v8_enable_object_print%': 1,\n+\n # https://github.com/nodejs/node/pull/22920/files#r222779926\n 'v8_enable_handle_... | 2020-08-10T05:53:22 |
vercel/next.js | 056b675bd94370e35ca91b8a08ad22bc63714c1b | c0282712ae976951ab4d1f565eb525a37ecee4cd | test(fixture): update assertion for turbopack (#60750)
<!-- 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 Cont... | [
{
"path": "test/development/acceptance/component-stack.test.ts",
"patch": "@@ -14,13 +14,14 @@ createNextDescribe(\n \n expect(await hasRedbox(browser)).toBe(true)\n \n- expect(await getRedboxComponentStack(browser)).toMatchInlineSnapshot(`\n- \"p\n- div\n- Component\n- ... | 2024-01-17T02:53:30 |
electron/electron | d6fbf5f1bbe3f0cbf0dac32f6657335e9ac751ff | b81aab9eaeb133f0f7343fd49759f586aea6f46d | Improve development workflow with built libchromiumcontent
- Add `--debug_libchromiumcontent` to build libchromiumcontent for debugging
(shared library build).
- By default, only invoke `gclient sync` the first time to checkout chromium
source tree. Add `--force_update_libchromiumcontent` switch to force updating.... | [
{
"path": ".gitignore",
"patch": "@@ -41,3 +41,4 @@ node_modules/\n /vendor/node/deps/node-inspect/.npmrc\n /vendor/npm/\n /vendor/python_26/\n+.gclient_done",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "docs/development/build-instructions-linux.md",
"patch": ... | 2017-08-11T17:17:55 |
golang/go | 4538f30e2d35fdf44331d7066098c0daf2dd1a85 | 42105eb8a5b59e715573f5299218e12be2dbb050 | cmd/covdata: fix wrong struct name in the comment
Invalid struct name in the comment in merge.go
dstate -> mstate
dstate already exists and is in cmd/covdata/dump.go
Change-Id: Id8b2412d2f81ae8afa1e9df3d09c218d84818ffb
GitHub-Last-Rev: 898eda4a204be0fcd5bdf2e51766af24c9304919
GitHub-Pull-Request: golang/go#56631
Revi... | [
{
"path": "src/cmd/covdata/merge.go",
"patch": "@@ -29,7 +29,7 @@ func makeMergeOp() covOperation {\n \treturn m\n }\n \n-// dstate encapsulates state and provides methods for implementing the\n+// mstate encapsulates state and provides methods for implementing the\n // merge operation. This type implements... | 2022-11-07T19:46:13 |
vercel/next.js | b805180f158c425327c1557542ccc3863fec755e | 5e29dfc881db6d05546db49d2f89753eeb5f11a5 | chore: typo, responseCookes to responseCookies (#60654)
I found a typo in the code and fixed it.
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "packages/next/src/server/web/spec-extension/adapters/request-cookies.ts",
"patch": "@@ -97,9 +97,9 @@ export class MutableRequestCookiesAdapter {\n cookies: RequestCookies,\n onUpdateCookies?: (cookies: string[]) => void\n ): ResponseCookies {\n- const responseCookes = new ResponseCo... | 2024-01-17T00:34:42 |
electron/electron | cfe914ff8323afcd5131e562aacbf696c3d70625 | 06f4c1b3372483a0978dcd17f43aa00684ea0a35 | Fixed wording | [
{
"path": "docs/tutorial/updates.md",
"patch": "@@ -14,7 +14,7 @@ Depending on your needs, you can choose from one of these:\n \n ## Implementing Updates into Your App\n \n-Once you've deployed your update server, continue with importing the required modules in your code. The following code might vary for a... | 2017-08-11T23:24:56 |
nodejs/node | 3b84048260ba57277b327c1913ca19d826c49158 | 2f27f1144edd5772467597da26c8faf41a1dbd99 | http2: add maxHeaderSize option to http2
add maxHeaderSize to http2 as an alias for maxHeaderListSize.
Fixes: https://github.com/nodejs/node/issues/33517
PR-URL: https://github.com/nodejs/node/pull/33636
Reviewed-By: Zeyu Yang <himself65@outlook.com>
Reviewed-By: Pranshu Srivastava <rexagod@gmail.com>
Reviewed-By: Ma... | [
{
"path": "doc/api/http2.md",
"patch": "@@ -2614,6 +2614,7 @@ properties.\n * `maxHeaderListSize` {number} Specifies the maximum size (uncompressed octets)\n of header list that will be accepted. The minimum allowed value is 0. The\n maximum allowed value is 2<sup>32</sup>-1. **Default:** `65535`.\n+* `... | 2020-05-29T10:12:31 |
golang/go | 969bea8d59daa6bdd478b71f6e99d8b8f625a140 | 72ce9ba9cb640f1a2184389d1dc146d731882328 | runtime: fix a few function names on comments
Change-Id: I9ef4898d68dfd06618c0bd8e23f81a1d2c77a836
Signed-off-by: cui fliter <imcusg@gmail.com>
Reviewed-on: https://go-review.googlesource.com/c/go/+/447460
Auto-Submit: Michael Pratt <mpratt@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Matthe... | [
{
"path": "src/runtime/internal/sys/intrinsics_common.go",
"patch": "@@ -24,7 +24,7 @@ const len8tab = \"\" +\n \t\"\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\" +\n \t\"\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\\x08\"\n \n-// len64 retu... | 2022-11-03T07:39:41 |
facebook/react | 7e5eb4b2b2c2aa503d0db4ec257cbb7bf071783c | 52b32d83d0a85540eebe5caafd5409fc028c7ba2 | Add indent lint rule, fix code | [
{
"path": "src/.eslintrc",
"patch": "@@ -26,6 +26,7 @@ rules:\n no-unused-vars: [2, args: none]\n quotes: [2, 'single']\n space-before-blocks: 2\n+ indent: [2, 2, indentSwitchCase: true]\n \n # WARNINGS\n # This is the only one that's hard to track since we don't lint just changes.",
"additio... | 2015-02-12T22:29:43 |
vercel/next.js | 5e29dfc881db6d05546db49d2f89753eeb5f11a5 | 16d1c269858c25ac5bb1bb08666c8aced5405923 | Update README.md (#60595)
### Improving Documentation
necessary update for agilitycms readme file to enhance clarity
<!-- 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 ... | [
{
"path": "examples/cms-agilitycms/README.md",
"patch": "@@ -74,18 +74,19 @@ First, [create an account on Agility CMS](https://agilitycms.com).\n \n After creating an account you'll be asked to create a new project. Use any name of your liking as the **Project Name** and select the **Blank (advanced users)*... | 2024-01-17T00:23:05 |
electron/electron | 3815ed8af4082e48eaeed5b59f0b9ac3e0e3ab03 | c1a40fbd981792b9e3f4f6e84584bb845084315b | Fixed a typo | [
{
"path": "docs/tutorial/updates.md",
"patch": "@@ -12,7 +12,7 @@ Depending on your needs, you can choose from one of these:\n - [Nuts](https://github.com/GitbookIO/nuts) – Also uses [GitHub Releases](https://help.github.com/articles/creating-releases/), but caches app updates on disk\n - [electron-release-... | 2017-08-11T23:18:34 |
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.