repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
d49f47ee3536ed76616d0328c01a949325321c40
64bb5f8f8ed4d6bb786b6dfc02e22a94caf3bc21
doc: fix webcrypto.md AES-GCM backticks PR-URL: https://github.com/nodejs/node/pull/54621 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/webcrypto.md", "patch": "@@ -567,7 +567,7 @@ The algorithms currently supported include:\n * `'RSA-OAEP'`\n * `'AES-CTR'`\n * `'AES-CBC'`\n-* `'AES-GCM`'\n+* `'AES-GCM'`\n \n ### `subtle.deriveBits(algorithm, baseKey[, length])`\n \n@@ -703,7 +703,7 @@ The algorithms currently supported i...
2024-08-30T22:32:03
vercel/next.js
0fb4a6d4a749723fd644829b92ad750228737d41
a21b68ab13c21b9669e5d8f1bc911a24ff0f02a2
fix: logging the correct process for listened port (#81903)
[ { "path": "packages/next/src/server/lib/start-server.ts", "patch": "@@ -58,13 +58,14 @@ async function getProcessIdUsingPort(port: number): Promise<string | null> {\n // Use lsof on Unix-like systems (macOS, Linux)\n if (process.platform !== 'win32') {\n exec(\n- `lsof -ti:${por...
2025-07-22T11:32:50
facebook/react
dc40571b3efd18d4d08fdf6146ad5ec980ea12dd
5dd35968bef791ccc5948c657fabf191a77fff3f
Update .prettierrc.js (#27732) jsxBracketSameLine deprecated in v2.4.0 of Prettier, replaced by bracketSameLine. https://prettier.io/docs/en/options.html#deprecated-jsx-brackets <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough in...
[ { "path": ".prettierrc.js", "patch": "@@ -5,7 +5,7 @@ const {esNextPaths} = require('./scripts/shared/pathsByLanguageVersion');\n module.exports = {\n bracketSpacing: false,\n singleQuote: true,\n- jsxBracketSameLine: true,\n+ bracketSameLine: true,\n trailingComma: 'es5',\n printWidth: 80,\n pa...
2023-12-01T19:30:42
electron/electron
38c3d8df2970821f582d7adc6c3ecd400ef265df
12548294c0b2639d34c05c544f56545004efee01
fix: traffic lights not working when child windows are restored via parent window (#39225)
[ { "path": "shell/browser/ui/cocoa/electron_ns_window_delegate.h", "patch": "@@ -23,6 +23,10 @@ class NativeWindowMac;\n int level_;\n bool is_resizable_;\n \n+ // Whether the window is currently minimized. Used to work\n+ // around a macOS bug with child window minimization.\n+ bool is_minimized_;\n+...
2023-07-26T08:10:34
golang/go
f4e37b8afc01253567fddbdd68ec35632df86b62
cad1fc52076f1368d79aa833c1810ae050df57e6
crypto/tls: use runtime.Gosched instead of time.After in TestCertCache I noticed a failure of this test on a linux/amd64 builder and reproduced it locally. I can only really reproduce it in a stress test when I overload my system (`stress2 ./tls.test -test.run=TestCertCache`) but this points to the root of the problem...
[ { "path": "src/crypto/tls/cache_test.go", "patch": "@@ -41,22 +41,12 @@ func TestCertCache(t *testing.T) {\n \n \ttimeoutRefCheck := func(t *testing.T, key string, count int64) {\n \t\tt.Helper()\n-\n-\t\t// Explicitly check every 1 ms up to the timeout instead of busy-looping.\n-\t\t//\n-\t\t// On single-t...
2025-05-08T19:03:37
nodejs/node
ef6b9ffc8dfc7b2a395c864d2729a0ce1be9ef18
9bdf2ee1d184e7ec5c690319e068894ed324b595
async_hooks: add an InactiveAsyncContextFrame class This gives a class prototype for AsyncContextFrame that contains the required methods, so that when we swap the prototype, ActiveAsyncContextFrame methods are used instead. Previously, the methods were defined in AsyncContextFrame, so swapping the prototype didn't sw...
[ { "path": "lib/internal/async_context_frame.js", "patch": "@@ -11,7 +11,7 @@ const {\n \n let enabled_;\n \n-class ActiveAsyncContextFrame {\n+class ActiveAsyncContextFrame extends Map {\n static get enabled() {\n return true;\n }\n@@ -50,12 +50,7 @@ function checkEnabled() {\n return enabled;\n }...
2024-08-30T20:27:28
rust-lang/rust
8b5a212031be6d7381f2129c9921a9a2a387f9c8
0558adb3db7405dc16675e87152a486a56206a66
Fix doc links to rustc_lexer and rustc_middle
[ { "path": "src/doc/rustc-dev-guide/src/overview.md", "patch": "@@ -395,7 +395,7 @@ For more details on bootstrapping, see\n - Lexical Analysis: Lex the user program to a stream of tokens\n - Guide: [Lexing and Parsing](the-parser.md)\n - Lexer definition: [`rustc_lexer`](https://doc.rust-lang.org/nightl...
2026-02-11T06:39:34
vercel/next.js
a21b68ab13c21b9669e5d8f1bc911a24ff0f02a2
4e96d7d1ad8e64182d623f3c0c5e7c0feb1a614f
fix: support calling onClose multiple times in edge-ssr-app (#81911) #81389 changed the implementation of `edge-ssr-app`. it added a `RenderOpts.onClose` implemented like this: ```ts let onCloseCallback: (() => void) | undefined const renderOpts = { // ... onClose: (cb) => { onCloseCallback = cb }, } ``` thi...
[ { "path": "packages/next/src/build/templates/edge-ssr-app.ts", "patch": "@@ -24,6 +24,7 @@ import { getBotType } from '../../shared/lib/router/utils/is-bot'\n import { interopDefault } from '../../lib/interop-default'\n import { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\n import { ch...
2025-07-22T11:10:58
facebook/react
5dd35968bef791ccc5948c657fabf191a77fff3f
3e97c00debbd6706b6ec6b7da15094bf2ba81ef4
fix: select console error to not suggest to set readonly to true (#27740) fix #27657 added test in the `ReactDOMSELECT-test.js` to not allow regession to happen in future. After changes this is what the error message looks like https://github.com/facebook/react/assets/72331432/53dcbe2a-70d2-43d2-a52d-a4fc...
[ { "path": "packages/react-dom-bindings/src/shared/ReactControlledValuePropTypes.js", "patch": "@@ -32,12 +32,19 @@ export function checkControlledValueProps(\n props.value == null\n )\n ) {\n- console.error(\n- 'You provided a `value` prop to a form field without an ' +\n- ...
2023-12-01T15:55:55
electron/electron
12548294c0b2639d34c05c544f56545004efee01
455f57322f705fdd67751328e8f1feaf6bd29409
fix: `resizable: false` should disable fullscreen button at start (#39086) fix: resizable should disable fullscreen button at start
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -198,10 +198,6 @@ void NativeWindow::InitFromOptions(const gin_helper::Dictionary& options) {\n SetSizeConstraints(size_constraints);\n }\n #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)\n- bool resizable;\n- if (options.Get(options::kResizable,...
2023-07-25T16:18:36
golang/go
ac645eaa0efc982eb238188a5f14835d2c1f8d18
60d3bcdec38eafbffe3086d8aea190ff8bcdece7
runtime: avoid overflow in mutex delay calculation If cputicks is in the top quarter of the int64's range, adding two values together will overflow and confuse the subsequent calculations, leading to zero-duration contention events in the profile. This fixes the TestRuntimeLockMetricsAndProfile failures on the linux-...
[ { "path": "src/runtime/lock_spinbit.go", "patch": "@@ -404,7 +404,7 @@ useStackLock:\n \t\t\tn++\n \t\t\tnext := node.mWaitList.next.ptr()\n \t\t\tif next == nil {\n-\t\t\t\tcycles := endTicks - (head.mWaitList.startTicks+node.mWaitList.startTicks)/2\n+\t\t\t\tcycles := ((endTicks - head.mWaitList.startTick...
2025-05-08T17:59:18
nodejs/node
e9cd4766e39d96693320be9ce0a1044c450e8675
2bfc9e467cb05578efa4d3db497f368fb144e5fc
test: fix test-tls-client-auth test for OpenSSL32 Refs: https://github.com/nodejs/node/issues/53382 Refs: https://github.com/nodejs/node/pull/53384 Same change as in 53384 where OpenSSL32 returns a slightly different error but for a different test. Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://...
[ { "path": "test/parallel/test-tls-client-auth.js", "patch": "@@ -79,8 +79,10 @@ connect({\n }, function(err, pair, cleanup) {\n assert.strictEqual(pair.server.err.code,\n 'ERR_SSL_PEER_DID_NOT_RETURN_A_CERTIFICATE');\n+ const expectedErr = common.hasOpenSSL(3, 2) ?\n+ 'ERR_SSL_SSL...
2024-08-28T14:58:09
rust-lang/rust
f8cf68f35ab8a37df77f658b8b575a4902bd813b
94ff542ff5c89e33d91a6a2f5e8bf17250c8d08c
Give `into_range` more consistent name Rename `into_range` to `try_into_slice_range`: - Prepend `try_` to show that it returns `None` on error, like `try_range` - add `_slice` to make it consistent with `into_slice_range`
[ { "path": "library/core/src/slice/index.rs", "patch": "@@ -949,7 +949,7 @@ where\n R: ops::RangeBounds<usize>,\n {\n let len = bounds.end;\n- into_range(len, (range.start_bound().copied(), range.end_bound().copied()))\n+ try_into_slice_range(len, (range.start_bound().copied(), range.end_bound(...
2026-02-02T21:12:49
facebook/react
7da906d64802bd33f8c004df5f67504b7635e972
75c7fdcbd0e73a846899e69b13062c82f0fac468
Fix Array#at and similar cases to capture if receiver is mutable The previous PR helped me realize we weren't handling Array#at correctly. If the receiver is a mutable value its effect should be Capture and the lvalue effect needs to be Store. This PR updates the definition for Array#at to make the receiver Captur...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/ObjectShape.ts", "patch": "@@ -203,7 +203,7 @@ addObject(BUILTIN_SHAPES, BuiltInArrayId, [\n positionalParams: [Effect.Read],\n restParam: null,\n returnType: { kind: \"Poly\" },\n- calleeEffect: Effect.Read,\n+ calle...
2023-11-29T20:05:25
vercel/next.js
f76e1dc7056b4d0a8d325ff51cf70f52779a8146
3db946deea1829c9a8da0a0a8861b24c8e8e060e
Turbopack: Replace `current_value` set/restore mutation pattern with a safer `with_pat_value` helper (#81696) The previous pattern of ``` self.current_value = Some(...); // visit children self.current_value = None; ``` felt very dangerous to me, because it's too easy to not restore `current_value` (or accidentally c...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -280,12 +280,12 @@ pub fn create_graph(m: &Program, eval_context: &EvalContext) -> VarGraph {\n m.visit_with_ast_path(\n &mut Analyzer {\n data: &mut graph,\n+ state: analyzer_state::Anal...
2025-07-21T22:56:17
electron/electron
455f57322f705fdd67751328e8f1feaf6bd29409
77cc1d6ffa83dcf291b2a2ddb4889549c23d154c
refactor: use `TypeError` instead of generic `Error` when appropriate (#39209) refactor: use TypeError instead of generic Error when appropriate
[ { "path": "lib/browser/api/auto-updater/auto-updater-win.ts", "patch": "@@ -24,12 +24,12 @@ class AutoUpdater extends EventEmitter {\n if (typeof options.url === 'string') {\n updateURL = options.url;\n } else {\n- throw new Error('Expected options object to contain a \\'url\\' st...
2023-07-25T16:08:46
golang/go
e46c8e0558d287fcffde75bb458419288e71db62
b877f04eea44820481e3a33f93eb55e90ff1754d
runtime: schedule cleanups across multiple goroutines This change splits the finalizer and cleanup queues and implements a new lock-free blocking queue for cleanups. The basic design is as follows: The cleanup queue is organized in fixed-sized blocks. Individual cleanup functions are queued, but only whole blocks are...
[ { "path": "src/cmd/internal/objabi/funcid.go", "patch": "@@ -10,27 +10,28 @@ import (\n )\n \n var funcIDs = map[string]abi.FuncID{\n-\t\"abort\": abi.FuncID_abort,\n-\t\"asmcgocall\": abi.FuncID_asmcgocall,\n-\t\"asyncPreempt\": abi.FuncID_asyncPreempt,\n-\t\"cg...
2025-02-19T16:33:21
nodejs/node
2bfc9e467cb05578efa4d3db497f368fb144e5fc
d96739cf6296ef365c8f38615d0a42197694f739
test: update TLS test for OpenSSL 3.2 Update `parallel/test-tls-set-sigalgs` to account for error code changes in OpenSSL 3.2 and later. PR-URL: https://github.com/nodejs/node/pull/54612 Refs: https://github.com/nodejs/node/pull/53384 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Luigi Pinca <luigipinca...
[ { "path": "test/parallel/test-tls-set-sigalgs.js", "patch": "@@ -63,10 +63,12 @@ test('RSA-PSS+SHA256:RSA-PSS+SHA512:ECDSA+SHA256',\n ['RSA-PSS+SHA256', 'ECDSA+SHA256']);\n \n // Do not have shared sigalgs.\n+const handshakeErr = common.hasOpenSSL(3, 2) ?\n+ 'ERR_SSL_SSL/TLS_ALERT_HANDSHAKE_FAILURE' :...
2024-08-30T15:40:08
vercel/next.js
3db946deea1829c9a8da0a0a8861b24c8e8e060e
c323ee19a89d03955a9ec63298afe85ea64a1f7e
Turbopack: Track variable usage inside of visit_assign_target_pat (#81654) Fixes #81462 ## Bug Report > Turbopack does not recognise such pattern: ```ts const func = () => { return { bool: true }; }; let bool = false; ({ bool } = func()); // This is not recognised ``` > This means `bool` variable will be reass...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -765,7 +765,8 @@ struct Analyzer<'a> {\n \n var_decl_kind: Option<VarDeclKind>,\n \n- /// Used for patterns\n+ /// The RHS (or some part of it) of a pattern assignment, read by the individual parts of the\n+ /...
2025-07-21T22:28:27
electron/electron
9cd5de75888d67b20bb7faf59ca4272323895c62
a83f9c06d701f1126eaf8da605e27125c90edb87
fix: use generic capturer to list both screens and windows when possible (#39111) Screensharing with PipeWire via XDG Desktop Portal requires explicit user permission via permission dialogs. Chromium has separate tabs for screens and windows and thus its portal implementation requests permissions separately for eac...
[ { "path": "patches/chromium/.patches", "patch": "@@ -131,3 +131,4 @@ fix_select_the_first_menu_item_when_opened_via_keyboard.patch\n fix_return_v8_value_from_localframe_requestexecutescript.patch\n fix_harden_blink_scriptstate_maybefrom.patch\n chore_add_buildflag_guard_around_new_include.patch\n+fix_use_de...
2023-07-21T23:03:01
rust-lang/rust
94ff542ff5c89e33d91a6a2f5e8bf17250c8d08c
262cd76333b79fb85bb87f2846b3db79c82d2402
Make panic message less confusing The panic message when slicing a string with a negative length range (eg `"abcdef"[4..3]`) is confusing: it gives the condition that failed to hold, whilst all the other panic messages give the condition that did hold. Before: begin <= end (4 <= 3) when slicing `abcdef` After: begin...
[ { "path": "library/alloctests/tests/str.rs", "patch": "@@ -612,14 +612,14 @@ mod slice_index {\n data: \"abcdef\";\n good: data[4..4] == \"\";\n bad: data[4..3];\n- message: \"begin <= end (4 <= 3)\";\n+ message: \"begin > end (4 > 3)\";\n }\...
2026-02-02T20:56:46
golang/go
b877f04eea44820481e3a33f93eb55e90ff1754d
c9d0fad5cbeb8ec60c7b21bb48f101e835241274
crypto/tls: add scheduler call to TestCertCache refcount timeout loop Currently TestCertCache will busy loop waiting for a cleanup (in the runtime.AddCleanup sense) to execute. If we ever get into this busy loop, then on single-threaded platforms like js/wasm, we'll end up _always_ timing out. This doesn't happen rig...
[ { "path": "src/crypto/tls/cache_test.go", "patch": "@@ -41,12 +41,22 @@ func TestCertCache(t *testing.T) {\n \n \ttimeoutRefCheck := func(t *testing.T, key string, count int64) {\n \t\tt.Helper()\n-\t\tc := time.After(4 * time.Second)\n+\n+\t\t// Explicitly check every 1 ms up to the timeout instead of busy...
2025-05-07T23:17:48
nodejs/node
d2479fa020866f038785fb7373baf2621d7cc1c5
89667876245bfb8db7aebbd3f6f04abacadf051d
vm: return all own names and symbols in property enumerator interceptor Property enumerator methods like `Object.getOwnPropertyNames`, `Object.getOwnPropertySymbols`, and `Object.keys` all invokes the named property enumerator interceptor. V8 will filter the result based on the invoked enumerator variant. Fix the enum...
[ { "path": "src/node_contextify.cc", "patch": "@@ -769,19 +769,25 @@ Intercepted ContextifyContext::PropertyDeleterCallback(\n // static\n void ContextifyContext::PropertyEnumeratorCallback(\n const PropertyCallbackInfo<Array>& args) {\n+ // Named enumerator will be invoked on Object.keys,\n+ // Object...
2024-08-30T11:22:58
vercel/next.js
aacb58d00a7f4d467adb51c1701c2b724a29a983
9d44731ae34ac60f9db3b5c36b4d4060e5d29af1
chore(deps): update `browserslist` (#81851) Update browserslist v4.24.4 -> 4.25.1 (latest) Update `browserslist` to 4.25.1 to enable custom statistics query support that was added in 4.25.0. This query allows browserslist to be configured based on custom data sources (like Google Analytics) rather than the default br...
[ { "path": "package.json", "patch": "@@ -151,7 +151,7 @@\n \"alex\": \"9.1.0\",\n \"async-sema\": \"3.0.1\",\n \"babel-plugin-react-compiler\": \"19.0.0-beta-e552027-20250112\",\n- \"browserslist\": \"4.24.4\",\n+ \"browserslist\": \"4.25.1\",\n \"buffer\": \"5.6.0\",\n \"cheerio\":...
2025-07-21T20:59:39
electron/electron
6688b0f31ae3ef0648eb27679dcfa15825cb2be8
565705bd1da46e9c519845463176454b33d0e6fb
build: fix Appveyor test workflow checkout (#39137) * build: fix Appveyor test workflow checkout * fix: +refs/pull/num/merge -> +refs/pull/num/head * chore: add to appveyor-woa as well
[ { "path": "appveyor-woa.yml", "patch": "@@ -51,6 +51,11 @@ environment:\n APPVEYOR_BUILD_WORKER_IMAGE: base-woa\n APPVEYOR_BUILD_WORKER_CLOUD: electronhq-woa\n \n+clone_script:\n+- ps: git clone -q $(\"--branch=\" + $Env:APPVEYOR_REPO_BRANCH) $(\"https://github.com/\" + $Env:APPVEYOR_REPO_NAME +...
2023-07-20T09:19:57
rust-lang/rust
262cd76333b79fb85bb87f2846b3db79c82d2402
625b18027d4d8d9b2092cf3706b29a5812f76357
Optimize `SliceIndex<str>` for `RangeInclusive` Replace `self.end() == usize::MAX` and `self.end() + 1 > slice.len()` with `self.end() >= slice.len()`. Same reasoning as previous commit. Also consolidate the str panicking functions into function.
[ { "path": "library/alloctests/tests/str.rs", "patch": "@@ -630,13 +630,13 @@ mod slice_index {\n // note: using 0 specifically ensures that the result of overflowing is 0..0,\n // so that `get` doesn't simply return None for the wrong reason.\n bad: data...
2025-07-25T20:57:44
golang/go
c9d0fad5cbeb8ec60c7b21bb48f101e835241274
f38256eae560c6532c172573e39dd8d4827eff95
cmd/compile: add 2 phiopt cases Add 2 more cases: if a { x = value } else { x = a } => x = a && value if a { x = a } else { x = value } => x = a || value AND case goes from: 00006 (8) TESTB AX, AX 00007 (8) JNE 9 00008 (13) MOVL AX, BX 00009 (13) MOVL BX, AX 00010 (13) RET to: 00006 (13) ANDL BX, AX 00007 (13) RE...
[ { "path": "src/cmd/compile/internal/ssa/phiopt.go", "patch": "@@ -119,6 +119,33 @@ func phiopt(f *Func) {\n \t\t\t\t\tcontinue\n \t\t\t\t}\n \t\t\t}\n+\t\t\t// Replaces\n+\t\t\t// if a { x = value } else { x = a } with x = a && value.\n+\t\t\t// Requires that value dominates x.\n+\t\t\tif v.Args[1-reverse...
2025-04-19T10:31:26
nodejs/node
89667876245bfb8db7aebbd3f6f04abacadf051d
01f751b529d126529f1d2019f0dcb13b8e54b787
test: run V8 Fast API tests in release mode too Only keep the call count assertions under `common.isDebug`. PR-URL: https://github.com/nodejs/node/pull/54570 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: ...
[ { "path": "doc/contributing/adding-v8-fast-api.md", "patch": "@@ -173,25 +173,24 @@ A typical function that communicates between JavaScript and C++ is as follows.\n // We could also require a function that uses the internal binding internally.\n const { divide } = internalBinding('custom_namespace');\n ...
2024-08-30T10:25:01
facebook/react
359b9b1589bcbe7988ff782ae88dcfaa2bdba927
0a6d3b31deb8201c5c965d0624923fb79f76fad1
[ez] Patch unsound array destructuring --- Going to hold off on landing until after codefreeze, it's not urgent as we already fixed playground in #2404. All other internal pipelines do error handling through Entrypoint, which catches and creates UnexpectedErrors as needed.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/DropManualMemoization.ts", "patch": "@@ -5,7 +5,14 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { Effect, HIRFunction, IdentifierId } from \"../HIR\";\n+import { CompilerError } from \"..\";\n+import {\...
2023-11-28T22:48:22
rust-lang/rust
f53eed56d2ae49064b79abd49e4f849d4f41edc3
7d8ebe3128fc87f3da1ad64240e63ccf07b8f0bd
Borrowck: simplify diagnostics for placeholders. This essentially folds the call to `region_from_element` into `RegionInferenceContext`, and simplifies the error variant for this case. It also clarifies the type information on the methods called to emphasise the fact that they only ever use placeholder regions in the ...
[ { "path": "compiler/rustc_borrowck/src/diagnostics/bound_region_errors.rs", "patch": "@@ -24,7 +24,6 @@ use rustc_traits::{type_op_ascribe_user_type_with_span, type_op_prove_predicate_\n use tracing::{debug, instrument};\n \n use crate::MirBorrowckCtxt;\n-use crate::region_infer::values::RegionElement;\n us...
2026-01-30T14:29:22
electron/electron
565705bd1da46e9c519845463176454b33d0e6fb
e02cf8674d3c3b593f8bcce739ecd736fd10e906
docs: fix casing of _Deprecated_ (#39152)
[ { "path": "docs/api/system-preferences.md", "patch": "@@ -297,7 +297,7 @@ This API is only available on macOS 10.14 Mojave or newer.\n * `window-frame` - Window frame.\n * `window-text` - Text in windows.\n * On **macOS**\n- * `alternate-selected-control-text` - The text on a selected surface i...
2023-07-20T09:16:20
nodejs/node
321a14b36d6b3304aedfd183e12ddba35dc704bd
9cbef482df41f4f313f4dc183bc5931c2cd83a00
doc: fix typo in styleText description PR-URL: https://github.com/nodejs/node/pull/54616 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "doc/api/util.md", "patch": "@@ -1825,8 +1825,8 @@ changes:\n * `stream` {Stream} A stream that will be validated if it can be colored. **Default:** `process.stdout`.\n \n This function returns a formatted text considering the `format` passed\n-for printing in a terminal, it is aware of the term...
2024-08-29T19:42:53
facebook/react
18d4913406d7cb628b2d110f9b4767ce108e99d2
42fa01ec876f32e2c2da091c6934f25c3ddff562
[babel] Don't use source location for hoisting check Instead of using the source location to check for hoisting, just stop checking for a given component after we reach it's declaration. By definition all references to it before are (potential) hoisting errors. Note that there could be false positives but that's...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -618,7 +618,18 @@ function checkFunctionReferencedBeforeDeclarationAtTopLevel(\n program.traverse({\n Identifier(id) {\n const fn = fnNames.get(id.node.name);\n- if (fnIds.has(id.node) || !fn) {\...
2023-11-28T14:18:24
electron/electron
e02cf8674d3c3b593f8bcce739ecd736fd10e906
3e7c904f02d156555e5ec21b13bf5b38d663042e
chore: bump chromium to 117.0.5897.0 (main) (#39147) * chore: bump chromium in DEPS to 117.0.5896.0 * chore: update patches * 4622260: [Service Workers] Allow fetches from workers to use auto-picked certs https://chromium-review.googlesource.com/c/chromium/src/+/4622260 * chore: bump chromium in DEPS to 11...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '117.0.5892.0',\n+ '117.0.5897.0',\n 'node_version':\n 'v18.16.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-07-20T07:36:59
facebook/react
d7db416167c1fcc1c1938d2880c8b0f919fd376b
5b8e94c6d84342a906612d95315f239f9caea8c1
[RFC] useEffect dependency memoization check This is one approach to testing whether useEffect dependencies are memoized. The idea is based off the observation that the only reason dependencies wouldn't be memoized (other than compiler bugs) is that they are mutated later. If they're mutated later, then the dep ar...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -71,6 +71,7 @@ import { assertExhaustive } from \"../Utils/utils\";\n import {\n validateFrozenLambdas,\n validateHooksUsage,\n+ validateMemoizedEffectDependencies,\n validateNoRefAccessInRender,\n vali...
2023-11-27T18:20:43
nodejs/node
d98cfcc5816189507722c47ad69bda45c5072d4b
dcf50f15bc7e49637b79876440b6fcdf827aebcc
vm: introduce vanilla contexts via vm.constants.DONT_CONTEXTIFY This implements a flavor of vm.createContext() and friends that creates a context without contextifying its global object. This is suitable when users want to freeze the context (impossible when the global is contextified i.e. has interceptors installed) ...
[ { "path": "doc/api/vm.md", "patch": "@@ -229,6 +229,9 @@ overhead.\n <!-- YAML\n added: v0.3.1\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/54394\n+ description: The `contextObject` argument now accepts `vm.constants.DONT_CONTEXTIFY`.\n - version: v14.6.0\n ...
2024-08-29T09:05:03
rust-lang/rust
337abba988bda85e1340d892e3c6a0c128ca9675
39a532445aeea34ad5ebcb4ec9512563be1a44c9
fix rustdoc test
[ { "path": "tests/rustdoc-html/type-layout.rs", "patch": "@@ -64,6 +64,12 @@ pub type GenericTypeAlias = (Generic<(u32, ())>, Generic<u32>);\n //@ hasraw type_layout/type.Edges.html 'Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, ...
2026-02-10T18:00:54
facebook/react
6c7b41da3de12be2d95c60181b3fe896f824f13a
fbc9b68d61aba17a5a1119caac22647d0897486a
feat[devtools]: display Forget badge for the relevant components (#27709) Adds `Forget` badge to all relevant components. Changes: - If component is compiled with Forget and using a built-in `useMemoCache` hook, it will have a `Forget` badge next to its display name in: - components tree - inspected elemen...
[ { "path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -2765,13 +2765,15 @@ describe('InspectedElement', () => {\n expect(inspectedElement.owners).toMatchInlineSnapshot(`\n [\n {\n+ \"compiledWithForget\": false,\n \"displayName\"...
2023-11-23T18:37:21
golang/go
9c170f70e1c27f3f89f6175af0d9fa800931dbb8
8cd6d68a0881d2bc0081081a847bb36fc314e761
cmd/go: replace backslash systematically in path of command Using the same method CleanPatterns harmonizes further accepted format of patterns in go command. Fixes #24233 Change-Id: Idb8176df3a7949b16764cd6ea51d7a8966799e42 Reviewed-on: https://go-review.googlesource.com/c/go/+/669775 LUCI-TryBot-Result: Go LUCI <go...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -3381,6 +3381,7 @@ func PackagesAndErrorsOutsideModule(ctx context.Context, opts PackageOpts, args\n \t\t\tpatterns[i] = p\n \t\t}\n \t}\n+\tpatterns = search.CleanPatterns(patterns)\n \n \t// Query the module providing the first argument, load its g...
2025-05-02T07:10:40
rust-lang/rust
39a532445aeea34ad5ebcb4ec9512563be1a44c9
d4454e59d3021557aead4591dea0390bf9d8e68b
prevent incorrect layout error aliases may be rigid even if they don't reference params. If the alias isn't well-formed, trying to normalize it as part of the input should have already failed
[ { "path": "compiler/rustc_ty_utils/src/layout.rs", "patch": "@@ -764,14 +764,20 @@ fn layout_of_uncached<'tcx>(\n }\n \n ty::Alias(..) => {\n- // NOTE(eddyb) `layout_of` query should've normalized these away,\n- // if that was possible, so there's no reason to try again...
2026-02-10T18:00:42
vercel/next.js
89996f105fcbacd5a708c6a628fb8180a9c018b6
2632a4598f304a39b3ebacc6d23f78369171e1b2
refactor: handle null RenderResult responses gracefully (#81895) ### What? - Removed unused `toUnchunkedBuffer` method from RenderResult - Changed null response handling to return empty values instead of throwing errors ### Why? The codebase now provides `RenderResult.EMPTY` for null responses, making it a valid stat...
[ { "path": "packages/next/src/server/render-result.ts", "patch": "@@ -6,7 +6,6 @@ import {\n chainStreams,\n streamFromBuffer,\n streamFromString,\n- streamToBuffer,\n streamToString,\n } from './stream-utils/node-web-streams-helper'\n import { isAbortError, pipeToNodeResponse } from './pipe-readabl...
2025-07-21T15:45:59
facebook/react
5b8e94c6d84342a906612d95315f239f9caea8c1
6a6ef0ab594f051ef1bcba45c6c95f9347bfb24b
[ez][wip] Make playground more resilient to crashes --- <img width="1031" alt="image" src="https://github.com/facebook/react-forget/assets/34200447/8e475472-45c3-4ef0-aa4b-d187e72b999c"> Behold! No instacrash on `useMemo()`
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -229,11 +229,21 @@ function compile(source: string): CompilerOutput {\n }\n }\n }\n- } catch (err: any) {\n+ } catch (err) {\n // error might be an invariant violation or other runtime error\n // ...
2023-11-21T15:30:29
electron/electron
bbdd037219f81f8c11f4cd92239f15d5365ee905
ee4460ac686511b21a235cd6e9f3d29e3588e1d8
chore: bump chromium to 117.0.5892.0 (main) (#39118) * chore: bump chromium in DEPS to 117.0.5892.0 * 4670267: Don't send javascript: or empty URLs to browser in CreateNewWindow. https://chromium-review.googlesource.com/c/chromium/src/+/4670267 * 4662090: Add metrics for WebGPU support https://chromium-rev...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -526,6 +526,10 @@ step-fix-sync: &step-fix-sync\n sed -i '' \"s/Updating depot_tools... //g\" esbuild_ensure_file\n cipd ensure --root src/third_party/devtools-frontend/src/third_party/esbuild -ensure-file esbuild_ensure_file\n \n+ #...
2023-07-18T22:26:27
golang/go
8cd6d68a0881d2bc0081081a847bb36fc314e761
bd1f9a4963eff6672e7e7b6d1b03ca0c51f28663
cmd/go: fix incorrect determining default value of CGO_ENABLED The default value is the value obtained when no environment variables are set and go env -w is not used. In the past, we used the current value (may be modified by an environment variable to a non-default value), error was used as the default value. For...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -673,7 +673,6 @@ var gentab = []struct {\n \tfile string\n \tgen func(dir, file string)\n }{\n-\t{\"go/build\", \"zcgo.go\", mkzcgo},\n \t{\"cmd/go/internal/cfg\", \"zdefaultcc.go\", mkzdefaultcc},\n \t{\"internal/runtime/sys\", \"zversion.go\", mkzversion},\...
2024-10-23T12:55:43
vercel/next.js
2632a4598f304a39b3ebacc6d23f78369171e1b2
d56855041c23dca9f2383dbc88a57e7600255979
Turbopack: fix unhelpful error message when deleting folder fails (#81718) ### What? Fixes the unhelpful error message: ``` [Error: No such file or directory (os error 2)] { code: 'GenericFailure' } ```
[ { "path": "turbopack/crates/turbo-tasks-backend/src/database/db_versioning.rs", "patch": "@@ -143,8 +143,11 @@ pub fn handle_db_versioning(\n }\n } else {\n path = base_path.join(\"temp\");\n- // propagate errors: if this fails we may have stale files left over in the temp directo...
2025-07-21T15:14:00
facebook/react
6a6ef0ab594f051ef1bcba45c6c95f9347bfb24b
bfefbf3fcee57f5a038774a3e4234a7cff0d56c9
[repro] Forget outputs invalid code when we bailout Sprout output: ``` $ sprout --filter --verbose FAIL: bug-invalid-code-when-bailout Difference in forget and non-forget results. Expected result: { "kind": "ok", "value": "{}", "logs": [] } Found: { "kind": "exception", "value": "Cannot access...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-retain-source-when-bailout.expect.md", "patch": "@@ -0,0 +1,54 @@\n+\n+## Input\n+\n+```javascript\n+// @panicThreshold(NONE)\n+import { useNoAlias } from \"shared-runtime\";\n+\n+const cond = true;\n+function useFo...
2023-11-21T15:06:15
electron/electron
00d96970cb4879773b8b4651f9e7136db383243e
139774ce4857af1d897383eb81fc3dcb65f7170c
build: fixup Codespaces build-tools setup (#39138) * build: fixup Codespaces build-tools setup * oops evm.testing1.json -> evm.testing.json
[ { "path": ".devcontainer/on-create-command.sh", "patch": "@@ -16,6 +16,8 @@ ln -s $buildtools_configs $buildtools/configs\n \n # Write the gclient config if it does not already exist\n if [ ! -f $gclient_root/.gclient ]; then\n+ echo \"Creating gclient config\"\n+\n echo \"solutions = [\n { \\\"nam...
2023-07-18T20:58:26
golang/go
ad7a6f81597fae99f2d94dda308bdc19ff8c1362
509c11f3a39aeb627cc16dc9ffcad45fc457c5ec
runtime: fix condition to emit gcpacertrace end-of-sweep line It's the job of the last sweeper to emit the GC pacer trace. The last sweeper can identify themselves by reducing the count of sweepers, and also seeing that there's no more sweep work. Currently this identification is broken, however, because the last swe...
[ { "path": "src/runtime/mgcsweep.go", "patch": "@@ -169,9 +169,10 @@ func (a *activeSweep) end(sl sweepLocker) {\n \t\t\tthrow(\"mismatched begin/end of activeSweep\")\n \t\t}\n \t\tif a.state.CompareAndSwap(state, state-1) {\n-\t\t\tif state != sweepDrainedMask {\n+\t\t\tif state-1 != sweepDrainedMask {\n \...
2025-05-07T22:28:23
nodejs/node
7616855b2a90e03310ef8431274ffa37d78abe68
29cf6235673bac7aa85072c15cca2df8018422ce
src: disable fast methods for `buffer.write` It should resolve the regressions while we work on fixing them. Refs: https://github.com/nodejs/node/issues/54521 PR-URL: https://github.com/nodejs/node/pull/54565 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-...
[ { "path": "src/node_buffer.cc", "patch": "@@ -1554,21 +1554,9 @@ void Initialize(Local<Object> target,\n SetMethod(context, target, \"hexWrite\", StringWrite<HEX>);\n SetMethod(context, target, \"ucs2Write\", StringWrite<UCS2>);\n \n- SetFastMethod(context,\n- target,\n- \...
2024-08-29T07:06:40
facebook/react
bfefbf3fcee57f5a038774a3e4234a7cff0d56c9
8176ebb5468a492710ca3482015c7b172912f279
[repro] dce bug for JSX memberexpr tags in lambda
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-jsx-memberexpr-tag-in-lambda.expect.md", "patch": "@@ -0,0 +1,52 @@\n+\n+## Input\n+\n+```javascript\n+import * as SharedRuntime from \"shared-runtime\";\n+function useFoo() {\n+ const MyLocal = SharedRuntime;\n+ co...
2023-11-21T15:06:14
electron/electron
8874306dc021f2beb4c2b7cd49b8f3bec614e373
4ab0a5ade47534db85d333e17f40530cc9726475
fix: `window.open` causing occasional Node.js crashes (#38754) * fix: window.open causing occasional Node.js crashes * chore: always free isolate data * chore: clear pending ticks in worker thread * fix: UAF crash when creating WebWorkerObserver --------- Co-authored-by: deepak1556 <hop2deep@gmail.com>
[ { "path": "patches/chromium/fix_harden_blink_scriptstate_maybefrom.patch", "patch": "@@ -40,13 +40,14 @@ accessing uninitialized lower indexes can return garbage values that cannot be n\n Refer to v8::EmbedderDataSlot::store_aligned_pointer for context.\n \n diff --git a/gin/public/gin_embedders.h b/gin/pub...
2023-07-18T08:41:50
golang/go
509c11f3a39aeb627cc16dc9ffcad45fc457c5ec
d000963d045bb279d347dbd3551e9468422c17af
crypto,crypto/x509: implement MessageSigner And use it in crypto/x509. This allows people to implement single-shot signers which do the hashing themselves. Fixes #63405 Change-Id: I038c2e10f77b050b6136c4c0a5b031cb416f59aa Reviewed-on: https://go-review.googlesource.com/c/go/+/654375 Reviewed-by: Filippo Valsorda <fi...
[ { "path": "api/next/63405.txt", "patch": "@@ -0,0 +1,5 @@\n+pkg crypto, func SignMessage(Signer, io.Reader, []uint8, SignerOpts) ([]uint8, error) #63405\n+pkg crypto, type MessageSigner interface { Public, Sign, SignMessage } #63405\n+pkg crypto, type MessageSigner interface, Public() PublicKey #63405\n+pkg...
2025-03-03T20:31:55
vercel/next.js
d56855041c23dca9f2383dbc88a57e7600255979
8c94014befd234ded33fe0dd1810f279330f34e8
refactor: encapsulate content type within RenderResult (#81861) ### Problem The PPR boundary sentinel was being incorrectly added to responses due to flawed content type logic in `sendRenderResult`. The original conditional logic had complex fallbacks that caused the sentinel to be added when it shouldn't be: ```java...
[ { "path": "packages/next/errors.json", "patch": "@@ -728,5 +728,8 @@\n \"727\": \"Route %s couldn't be rendered statically because it used IO that was not cached. See more info here: https://nextjs.org/docs/messages/cache-components\",\n \"728\": \"CacheSignal cannot be used in the edge runtime, because...
2025-07-21T15:06:51
rust-lang/rust
e20a44db783650a5d0d43a430810f9d12c2c890e
4c9bb23107dfd035bff8a68f3eff0653670f2efb
Fix typos and capitalization across documentation - Fix "Github" → "GitHub" capitalization throughout (about.md, git.md, about-this-guide.md, debugging-support-in-rustc.md, and all notification-groups files) - Fix "its self" → "itself" (macro-expansion.md, what-bootstrapping-does.md) - Fix "MIRI" → "Miri" (overvie...
[ { "path": "src/doc/rustc-dev-guide/src/about-this-guide.md", "patch": "@@ -10,7 +10,7 @@ There are several parts to this guide:\n about building, debugging, profiling, etc.\n 1. [Contributing to Rust][p2]:\n Contains information that should be useful no matter how you are contributing,\n- about proc...
2026-02-10T16:35:43
facebook/react
bbb9cb116dbf7b6247721aa0c4bcb6ec249aa8af
1a65d036ef057b07a6b15f5604e399f91bc5ed73
Update fork for ReactSharedInternalsClient export (#27717) ## Summary After changes in https://github.com/facebook/react/pull/27436, UMD builds no longer expose Scheduler from ReactSharedInternals. This module is forked in rollup for UMD builds and the path no longer matches. This PR updates the path name to mat...
[ { "path": "scripts/rollup/forks.js", "patch": "@@ -217,7 +217,7 @@ const forks = Object.freeze({\n }\n },\n \n- './packages/react/src/ReactSharedInternals.js': (bundleType, entry) => {\n+ './packages/react/src/ReactSharedInternalsClient.js': (bundleType, entry) => {\n switch (bundleType) {\n ...
2023-11-17T14:00:56
nodejs/node
99b491c595b16964004b1e532a57455fc8ced193
75741a19524c3cf3a9671ee227e806cf842e9a86
doc: fix module compile cache description PR-URL: https://github.com/nodejs/node/pull/54625 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -182,7 +182,7 @@ directory will be recreated the next time the same directory is used for for com\n storage. To avoid filling up the disk with stale cache, it is recommended to use a directory\n under the [`os.tmpdir()`][]. If the compile cache is enabled by a cal...
2024-08-29T04:36:46
golang/go
d000963d045bb279d347dbd3551e9468422c17af
5a1f47a7f716ce0dbd88128d18ce556dd9280c68
cmd/internal/obj/riscv: reject invalid vadc/vsbc encodings The RISC-V Instruction Set Manual Volume states that "for vadc and vsbc, the instruction encoding is reserved if the destination vector register is v0". The assembler currently allows instructions like VADCVVM V1, V2, V0, V0 to be assembled. It's not clear w...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64.s", "patch": "@@ -623,17 +623,27 @@ start:\n \tVADCVXM\t\tX11, V2, V0, V3\t\t\t// d7c12540\n \tVADCVIM\t\t$15, V2, V0, V3\t\t\t// d7b12740\n \tVMADCVVM\tV1, V2, V0, V3\t\t\t// d7812044\n+\tVMADCVVM\tV1, V2, V0, V0\t\t\t// 57802044\n \tVMADCVXM\tX11, V2, V...
2025-05-01T08:43:32
vercel/next.js
5fbf29ca10480f509a0e0ac61e5206947d3e088a
443a31b99021d8c2a191cc5abb1c21859d720fb9
fix: remove boundary sentinel from RSC responses (#81857) ## Summary This PR fixes an issue where the test mode boundary sentinel was being incorrectly added to RSC (React Server Component) responses. The sentinel should only be added to HTML responses during PPR (Partial Prerendering) test mode. ## Changes - Added...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -32,6 +32,7 @@ import {\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_IS_PRERENDER_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n+ RSC_CONTENT_TYPE_HEADER,\n } from '../../client/components/app-router-headers'\n import { getBotType, isBot } from ...
2025-07-19T21:23:21
facebook/react
a1e389118951ff7b83c753245ee96793a898bfe0
6d101435d401d612c3a797fe88258b7c59fe7f49
[rfc][babel] InvalidConfig always throws When you have your panic threshold set to "NONE" as we recommend, it's easy to miss that your config is wrong (which makes everything not compile) because those errors were being silenced. This made debugging FluentUI and the forget-feedback testapp pretty difficult to figu...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -59,6 +59,15 @@ function isCriticalError(err: unknown): boolean {\n return !(err instanceof CompilerError) || err.isCritical();\n }\n \n+function isConfigError(err: unknown): boolean {\n+ if (err instanceof Co...
2023-11-17T17:01:20
nodejs/node
ff5ef7083dc23969219bdb7e412ffd5388783a25
4a0ec20a35aff521c3a08e42b3905012a6566c00
src: add JS APIs for compile cache and NODE_DISABLE_COMPILE_CACHE This patch adds the following API for tools to enable compile cache dynamically and query its status. - module.enableCompileCache(cacheDir) - module.getCompileCacheDir() In addition this adds a NODE_DISABLE_COMPILE_CACHE environment variable to disabl...
[ { "path": "doc/api/cli.md", "patch": "@@ -2841,25 +2841,8 @@ added: v22.1.0\n \n > Stability: 1.1 - Active Development\n \n-When set, whenever Node.js compiles a CommonJS or a ECMAScript Module,\n-it will use on-disk [V8 code cache][] persisted in the specified directory\n-to speed up the compilation. This ...
2024-08-28T23:22:57
rust-lang/rust
da80677d6a84c1a3ea3e22785392c91ccae6a69b
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
Fix typos and grammar in top-level and src/doc documentation - CONTRIBUTING.md: add missing verb "is" - INSTALL.md: fix subject-verb agreement ("requires" → "require") - RELEASES.md: fix 4 issues (previous → previously, remove extra "is", add hyphen in Rust-for-Linux, results → result) - src/doc/not_found.md: fix mi...
[ { "path": "CONTRIBUTING.md", "patch": "@@ -10,7 +10,7 @@ the Zulip stream is the best place to *ask* for help.\n \n Documentation for contributing to the compiler or tooling is located in the [Guide to Rustc\n Development][rustc-dev-guide], commonly known as the [rustc-dev-guide]. Documentation for the\n-st...
2026-02-10T15:22:19
golang/go
5a1f47a7f716ce0dbd88128d18ce556dd9280c68
d13da63929df73ab506314f35524ebb9b0f8a216
cmd/internal/obj/riscv: fix LMUL encoding for MF2 and MF8 The encodings for the riscv64 special operands SPOP_MF2 and SPOP_MF8 are incorrect, i.e., their values are swapped. This leads to incorrect encodings for the VSETVLI and VSETIVLI instructions. The assembler currently encodes VSETVLI X10, E32, MF8, TA, MA, X1...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64.s", "patch": "@@ -438,9 +438,9 @@ start:\n \tVSETVLI\tX10, E32, M2, TA, MA, X12\t\t// 5776150d\n \tVSETVLI\tX10, E32, M4, TA, MA, X12\t\t// 5776250d\n \tVSETVLI\tX10, E32, M8, TA, MA, X12\t\t// 5776350d\n-\tVSETVLI\tX10, E32, MF2, TA, MA, X12\t\t// 577655...
2025-05-06T11:02:34
vercel/next.js
443a31b99021d8c2a191cc5abb1c21859d720fb9
e5711ab66dfb7e2e6c05684c358a397297c8401a
Turbopack: fix dist dir on Windows (#81758) Regression from #80683 Closes PACK-5071 Closes https://github.com/vercel/next.js/issues/81628
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -705,10 +705,11 @@ jobs:\n afterBuild: |\n export NEXT_TEST_MODE=start\n \n- node run-tests.js \\\n+ node run-tests.js --type production \\\n test/e2e/app-dir/app/index.test.ts \\\n test/e2e/app-di...
2025-07-19T05:56:41
facebook/react
6d101435d401d612c3a797fe88258b7c59fe7f49
fbcc21c37a50b50cb7ed1aef9329ad598a236110
[Babel] Fix up eslint suppression logic Babel doesn't attach Comment nodes to anything, so they dangle off of the Program node while only specifying a range. This meant that previously we first had to traverse all of the Program's comments to find an eslint suppression of the rules of React, then during travers...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/EslintSuppression.ts", "patch": "@@ -0,0 +1,162 @@\n+/*\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this sour...
2023-11-17T15:22:46
nodejs/node
4a0ec20a35aff521c3a08e42b3905012a6566c00
4f14eb15454b9f6ae7f0145947debd2c79a2a84f
lib: respect terminal capabilities on styleText This PR changes styleText API to respect terminal capabilities and environment variables such as NO_COLOR, NODE_DISABLE_COLORS, and FORCE_COLOR. PR-URL: https://github.com/nodejs/node/pull/54389 Fixes: https://github.com/nodejs/node/issues/54365 Reviewed-By: Moshe Atlow...
[ { "path": "doc/api/util.md", "patch": "@@ -1802,32 +1802,63 @@ console.log(util.stripVTControlCharacters('\\u001B[4mvalue\\u001B[0m'));\n // Prints \"value\"\n ```\n \n-## `util.styleText(format, text)`\n+## `util.styleText(format, text[, options])`\n \n > Stability: 1.1 - Active development\n \n <!-- YAML\...
2024-08-28T18:00:11
rust-lang/rust
11e4873b96961d14202a8c63d83a21be5b7f7b82
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
Fix typos and grammar in compiler and build documentation - compiler/rustc_codegen_llvm/src/debuginfo/doc.md: fix 5 issues (adaption → adaptation, "allow to" → "allow V-ing" x3, later → latter + plural) - compiler/rustc_thread_pool/src/sleep/README.md: fix 2 issues (idle → active per context, then → than) - src/bo...
[ { "path": "compiler/rustc_codegen_llvm/src/debuginfo/doc.md", "patch": "@@ -16,7 +16,7 @@ module to generate correct metadata and insert it into the LLVM IR.\n As the exact format of metadata trees may change between different LLVM\n versions, we now use LLVM\n [DIBuilder](https://llvm.org/docs/doxygen/html...
2026-02-10T15:22:05
golang/go
0c15d88974e5bb4285d6cdf6ef125e1e4d438c6d
ef7724c4324f6bac40463a12e4fea43ff0b4a8e8
runtime: fix tag pointers on aix, take 2 Previous fix in CL 667715 wasn't correct for aix. Change-Id: I44042786079463967165507b15756cf24b9a213a Reviewed-on: https://go-review.googlesource.com/c/go/+/668036 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam...
[ { "path": "src/runtime/tagptr_64bit.go", "patch": "@@ -66,6 +66,9 @@ func (tp taggedPointer) pointer() unsafe.Pointer {\n \t\t// val before unpacking.\n \t\treturn unsafe.Pointer(uintptr(int64(tp) >> tagBits << tagAlignBits))\n \t}\n+\tif GOOS == \"aix\" {\n+\t\treturn unsafe.Pointer(uintptr((tp >> tagBits ...
2025-04-25T17:09:44
facebook/react
fbcc21c37a50b50cb7ed1aef9329ad598a236110
96f10e058b76372885f99b948e5194842bd02dc4
Add repro for bug with 'use no forget' For some reason, when there are other hooks/components defined in the file, the 'use no forget' directive stops working
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-use-no-forget-multiple-with-eslint-suppression.expect.md", "patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+const useControllableState = (options) => {};\n+function NoopComponent() {}\n+\n+function ...
2023-11-17T15:22:45
vercel/next.js
5c7daf5aff50992d4653ed96becd3a7818af51fd
d3ed546f49d903738bc09848e90afeefefe3cdfa
fix(ppr): ensure fallback route params trigger dynamic resume (#81812) ### What? This PR fixes an issue where pages with fallback route params weren't triggering dynamic resume behavior in PPR (Partial Pre-Rendering). ### Why? When fallback route params exist, the RSC (React Server Components) data is inherently dy...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -1075,6 +1075,16 @@ export async function handler(\n // should also be the case for a resume request because it's completed\n // as a server render (rather than a static render).\n if (!didPostpone || minimalMode) {\n+...
2025-07-18T23:02:42
rust-lang/rust
78dc744e93028188c66d92dc2064b2107dd9992c
f21b4c0888ca6a388fcf9365fc0044fa0642ab98
unwind/wasm: fix compile error by wrapping wasm_throw in unsafe block
[ { "path": "library/unwind/src/wasm.rs", "patch": "@@ -73,7 +73,7 @@ pub unsafe fn _Unwind_RaiseException(exception: *mut _Unwind_Exception) -> _Unwi\n // corresponds with llvm::WebAssembly::Tag::CPP_EXCEPTION\n // in llvm-project/llvm/include/llvm/CodeGen/WasmEHFuncInfo.h\n ...
2026-02-10T13:20:02
nodejs/node
0b3ae01131126cc057242c7762c1b44dcef9b823
342b501cb0ceed7aeaadba09a13024cbab5f24c2
test: fix embedding test for Windows PR-URL: https://github.com/nodejs/node/pull/53659 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: ...
[ { "path": "test/embedding/test-embedding.js", "patch": "@@ -10,6 +10,7 @@ const {\n } = require('../common/child_process');\n const path = require('path');\n const fs = require('fs');\n+const os = require('os');\n \n tmpdir.refresh();\n common.allowGlobals(global.require);\n@@ -152,12 +153,6 @@ for (const e...
2024-08-27T21:30:50
electron/electron
4ab0a5ade47534db85d333e17f40530cc9726475
626f46f75a848cf9641ae40f0c82aa1a81d64e64
docs: fix a capitalization problem in messagePort tutorial (#39083) fix a capitalization problem For a rookie, this little mistake took a long time to find out.
[ { "path": "docs/tutorial/message-ports.md", "patch": "@@ -150,7 +150,7 @@ renderer.\n \n ```js title='renderer.js (Renderer Process)' @ts-nocheck\n // elsewhere in your code to send a message to the other renderers message handler\n-window.electronMessagePort.postmessage('ping')\n+window.electronMessagePort...
2023-07-17T17:41:46
facebook/react
96f10e058b76372885f99b948e5194842bd02dc4
66748b00f25b2111731d65a8cde6c777c741bbe5
[be][tests] Change fixtures to evaluate successfully instead of throwing --- Not dependent on changes from #2366, but now the fix is easy to review
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/capture-indirect-mutate-alias-iife.expect.md", "patch": "@@ -16,8 +16,7 @@ function component(a) {\n \n export const FIXTURE_ENTRYPOINT = {\n fn: component,\n- params: [\"TodoAdd\"],\n- isComponent: \"TodoAdd\",\n+ p...
2023-11-16T23:12:00
golang/go
94c4cdc94869454eb25c725c5f4a92ff305ffa3b
591c4b50c0d8c61087c30261efd5e97668625e06
runtime: remove GODEBUG=runtimecontentionstacks Go 1.22 promised to remove the setting in a future release once the semantics of runtime-internal lock contention matched that of sync.Mutex. That work is done, remove the setting. Previously reviewed as https://go.dev/cl/585639. For #66999 Change-Id: I9fe62558ba0ac12...
[ { "path": "doc/godebug.md", "patch": "@@ -169,6 +169,9 @@ Go command will follow symlinks to regular files embedding files.\n The default value `embedfollowsymlinks=0` does not allow following\n symlinks. `embedfollowsymlinks=1` will allow following symlinks.\n \n+Go 1.25 corrected the semantics of contenti...
2025-04-29T21:39:11
vercel/next.js
d3ed546f49d903738bc09848e90afeefefe3cdfa
afec9909a066154c4ccc1e1d9ee10e3678ec2e2f
[devtool] fix scrollbar styling (#81814) * The scrollbar styling was lost before while we enabling the draggable panel. Share that styles between all scrollable content * Migrate the inline style to css and dynamic css into css variables, so we'll create less dynamic object during rendering. <video src="https://gi...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/dialog/dialog.tsx", "patch": "@@ -87,6 +87,7 @@ const Dialog: React.FC<DialogProps> = function Dialog({\n ref={dialogRef}\n tabIndex={-1}\n data-nextjs-dialog\n+ data-nextjs-scrollable-content\n role={role}\n ...
2025-07-18T21:35:12
nodejs/node
342b501cb0ceed7aeaadba09a13024cbab5f24c2
ebaabf6a0afb5a8b470e19e53c2abbd412abc4cd
doc: fix information about including coverage files PR-URL: https://github.com/nodejs/node/pull/54527 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "doc/api/test.md", "patch": "@@ -474,7 +474,8 @@ command-line flag, code coverage is collected and statistics are reported once\n all tests have completed. If the [`NODE_V8_COVERAGE`][] environment variable is\n used to specify a code coverage directory, the generated V8 coverage files are\n writt...
2024-08-27T19:11:04
electron/electron
9645f7f6d8ab1adf839ca44ddd64331ccb21d298
f61425efdb1357795a2c05a80923e2064158002b
chore: bump chromium to 117.0.5884.1 (main) (#38969) * chore: bump chromium in DEPS to 117.0.5866.0 * chore: bump chromium in DEPS to 117.0.5868.0 * chore: update mas_no_private_api.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4634925 Minor manual patch syncing due to upstream code...
[ { "path": "BUILD.gn", "patch": "@@ -748,20 +748,34 @@ if (is_mac) {\n source_set(\"electron_lib_arc\") {\n include_dirs = [ \".\" ]\n sources = [\n+ \"shell/browser/browser_mac.mm\",\n \"shell/browser/mac/dict_util.h\",\n \"shell/browser/mac/dict_util.mm\",\n+ \"shell/browser...
2023-07-16T14:14:43
golang/go
591c4b50c0d8c61087c30261efd5e97668625e06
4d0f955a5e2a7c3310f15983b643ff5bf5fc1351
runtime: verify attribution of mutex delay Have the test use the same clock (cputicks) as the profiler, and use the test's own measurements as hard bounds on the magnitude to expect in the profile. Compare the depiction of two users of the same lock: one where the critical section is fast, one where it is slow. Confi...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -40,6 +40,8 @@ var Atoi32 = atoi32\n var ParseByteCount = parseByteCount\n \n var Nanotime = nanotime\n+var Cputicks = cputicks\n+var CyclesPerSecond = pprof_cyclesPerSecond\n var NetpollBreak = netpollBreak\n var Usleep = usleep\n ", "additions": 2, ...
2024-05-16T22:48:36
vercel/next.js
8a8888ca96aee5e75c03b257f1e6c194cb9a43f1
ae2c750d2ba7f0d6be9de9346bfb2e3dad59a70d
[turbopack] use `require` to load chunks in our node runtime (#81738) ## Use `require` to load chunks in node instead of readFile+eval The benefit of this is that we can slightly simplify chunk loading and make it easier for hosting services to cache bytecode. Much like [browsers](https://v8.dev/blog/code-caching-fo...
[ { "path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts", "patch": "@@ -657,14 +657,16 @@ describe('Cache Components Errors', () => {\n } else {\n expect(output).toMatchInlineSnapshot(`\n \"Error: Route \"/dynamic-root\": A component acces...
2025-07-18T19:54:20
facebook/react
66748b00f25b2111731d65a8cde6c777c741bbe5
fa07eb0b3b65189b2446df080adf1b92e6cc157b
[be][sprout] Snapshot files for sprout with shared utils --- 16 out of ~150 recently added sprout fixtures have exceptions that reflect easy-to-miss mistakes in the fixture input, like forgetting to import `useState`. This PR adds snapshot files for sprout to prevent these mistakes (or catch them at diff revie...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/alias-capture-in-method-receiver-and-mutate.expect.md", "patch": "@@ -55,4 +55,6 @@ export const FIXTURE_ENTRYPOINT = {\n };\n \n ```\n- \n\\ No newline at end of file\n+ \n+### Eval output\n+(kind: ok) [[{\"a\"...
2023-11-16T23:12:00
rust-lang/rust
c9b5c934ca7acc33ff4aebbe1630cb02bb4c0f1f
c7f5f3e0d5defe632d44743cbaed56272e2b67f0
Fix passing/returning structs with the 64-bit SPARC ABI Co-authored-by: beetrees <b@beetr.ee>
[ { "path": "compiler/rustc_abi/src/callconv/reg.rs", "patch": "@@ -35,6 +35,7 @@ impl Reg {\n \n reg_ctor!(f32, Float, 32);\n reg_ctor!(f64, Float, 64);\n+ reg_ctor!(f128, Float, 128);\n }\n \n impl Reg {", "additions": 1, "deletions": 0, "language": "Rust" }, { "path": "compil...
2026-02-10T10:39:06
golang/go
4d0f955a5e2a7c3310f15983b643ff5bf5fc1351
bce8486ebec8b2f62f2305b2a17cc5aec8202507
runtime: blame unlocker for mutex delay Correct how the mutex contention profile reports on runtime-internal mutex values, to match sync.Mutex's semantics. Decide at the start of unlock2 whether we'd like to collect a contention sample. If so: Opt in to a slightly slower unlock path which avoids accidentally acceptin...
[ { "path": "src/runtime/lock_spinbit.go", "patch": "@@ -86,7 +86,8 @@ func key8(p *uintptr) *uint8 {\n // forming a singly-linked list with the mutex's key field pointing to the head\n // of the list.\n type mWaitList struct {\n-\tnext muintptr // next m waiting for lock\n+\tnext muintptr // next m wai...
2025-04-22T16:21:30
nodejs/node
ebaabf6a0afb5a8b470e19e53c2abbd412abc4cd
d813634424fb9afeed0feae2e9d99ac7daab5af9
deps: backport ICU-22787 to fix ClangCL on Windows - Floating patch for ICU 75.x ICU Bug: https://unicode-org.atlassian.net/browse/ICU-22787 Backport of: https://github.com/unicode-org/icu/pull/3023 PR-URL: https://github.com/nodejs/node/pull/54502 Reviewed-By: Steven R Loomis <srl295@gmail.com> Reviewed-By: Richard...
[ { "path": "tools/icu/patches/75/source/common/unicode/platform.h", "patch": "@@ -0,0 +1,849 @@\n+// © 2016 and later: Unicode, Inc. and others.\n+// License & terms of use: http://www.unicode.org/copyright.html\n+/*\n+******************************************************************************\n+*\n+* C...
2024-08-27T18:44:05
electron/electron
f61425efdb1357795a2c05a80923e2064158002b
34e7c3696a1375080197ebc68c222d221fbc2ef3
fix: `clipboard.readImage()` should be synchronous (#39069) * feat: clipboard.readImage returns a Promise * chore: update breaking changes doc * fix: make function synchronous * Update docs/api/native-image.md Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> --------- Co-authored-by: John ...
[ { "path": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -7,6 +7,7 @@\n #include <map>\n \n #include \"base/containers/contains.h\"\n+#include \"base/run_loop.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"shell/common/gin_converters/image_converter.h\"\n #include \"shell/...
2023-07-13T20:59:14
facebook/react
fa07eb0b3b65189b2446df080adf1b92e6cc157b
94348be2d96b769a961bafc368fc52b64a6ab62c
[be] make evaluator and worker easier to debug in sprout --- jsdom and other libraries seem to cause jest workers to exit with `forceExit:true`. Not sure what option I set (or global I've overwritten) but console logs aren't flushed as a result, making debugging a bit confusing. This PR: - Moves some code fro...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-hoisting-variable-collision.expect.md", "patch": "@@ -11,7 +11,6 @@ function Component(props) {\n export const FIXTURE_ENTRYPOINT = {\n fn: Component,\n params: [{ items: [0, 42, null, undefined, { object: true ...
2023-11-16T23:12:00
vercel/next.js
298acda3b19d2ec1077a93887662a0cd83a12762
f3beddf12a2195a9d1c4d7378d99c2df301c15c3
Add VSCode tasks to show TypeScript compilation errors in problems view (#81799) Showing compilation errors for files that aren't currently open is very useful during refactorings. https://github.com/user-attachments/assets/629f8f2a-37ba-44c1-be6d-9a2e0f93e4f1
[ { "path": ".vscode/tasks.json", "patch": "@@ -0,0 +1,31 @@\n+{\n+ \"version\": \"2.0.0\",\n+ \"tasks\": [\n+ {\n+ \"label\": \"types\",\n+ \"command\": \"pnpm\",\n+ \"args\": [\"typescript\", \"--watch\"],\n+ \"isBackground\": true,\n+ \"group\": {\n+ \"kind\": \"build\"...
2025-07-18T10:38:57
golang/go
86101b083ad14bb0c6ca9c55d2869cba57760046
ab2a92dd84aa4d0e12e7a6ef929aee765dd2aa8d
runtime: print stack traces for bubbled goroutines on synctest deadlock When synctest.Run panics due to every goroutine in the bubble being blocked, print a stack trace for every goroutine in the bubble. For #67434 Change-Id: Ie751c2ee6fa136930b18f4bee0277ff30da46905 Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/runtime/panic.go", "patch": "@@ -1272,7 +1272,7 @@ func fatalthrow(t throwType) {\n \n \t\tstartpanic_m()\n \n-\t\tif dopanic_m(gp, pc, sp) {\n+\t\tif dopanic_m(gp, pc, sp, nil) {\n \t\t\t// crash uses a decent amount of nosplit stack and we're already\n \t\t\t// low on stack in throw, so cra...
2025-02-21T18:55:32
nodejs/node
a7271ab47db932e67f1d2917fe926997bbb7238a
589a60e3acafae0eff9a5a06eea6742a6e0c4fcf
lib: fix emit warning for debuglog.time when disabled PR-URL: https://github.com/nodejs/node/pull/54275 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "lib/internal/util/debuglog.js", "patch": "@@ -133,6 +133,7 @@ function pad(value) {\n const kNone = 1 << 0;\n const kSkipLog = 1 << 1;\n const kSkipTrace = 1 << 2;\n+const kShouldSkipAll = kSkipLog | kSkipTrace;\n \n const kSecond = 1000;\n const kMinute = 60 * kSecond;\n@@ -377,8 +378,6 @@ funct...
2024-08-27T16:20:35
facebook/react
0de5b11485b9edc5aec0f5a95ef886a294c03b2d
2c338b16fd97634dba907f7ad612f64893dcb01c
Bump @babel/traverse from 7.14.2 to 7.23.3 in /fixtures/ssr2 (#27713) Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.14.2 to 7.23.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@​babel/tra...
[ { "path": "fixtures/ssr2/package-lock.json", "patch": "@@ -34,11 +34,15 @@\n }\n },\n \"node_modules/@babel/code-frame\": {\n- \"version\": \"7.12.13\",\n- \"resolved\": \"https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz\",\n- \"integrity\": \"sha512-HV1Cm0Q...
2023-11-16T19:08:02
electron/electron
b14b876d5001f7adbe0b78f1c2781ca744fe72f3
a8622aed7b6c378b25c39cc025552412dccf2538
docs: fix fiddles (#39060) * refactor: replace Array.prototype.forEach.call with plain for-of * fix: add missing contextIsolation: false * fix: open links in default browser
[ { "path": "docs/fiddles/media/screenshot/take-screenshot/main.js", "patch": "@@ -12,6 +12,7 @@ function createWindow () {\n height: 300,\n title: 'Take a Screenshot',\n webPreferences: {\n+ contextIsolation: false,\n nodeIntegration: true\n }\n }", "additions": 1, "delet...
2023-07-13T08:10:37
vercel/next.js
2256b6befe223fba2f141d11d2ca1c0524b67b7a
8abbb3dc2e36308249fe1084ae2df032c87431f7
Properly handle hanging promise rejections during prerendering (#81754) We are using hanging promises for excluding request-specific data from a prerender. When prerendering is aborted, we reject all hanging promises. In dev mode, React uses these rejections to construct more detailed owner stacks. This allows us to p...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -711,6 +711,7 @@ async function warmupDevRender(\n \n const renderController = new AbortController()\n const prerenderController = new AbortController()\n+ const reactController = new AbortController()\n const cacheSignal = ...
2025-07-18T07:33:23
facebook/react
2c338b16fd97634dba907f7ad612f64893dcb01c
ee68446ff198755bd38202ac9139275b657968b0
Added windows powershell syntax to build scripts (#27692) ## Summary I had to change the commands to be windows specific so that it doesn't cause any crashes ## How did you test this change? I successfully built the different types of devtools extenstions on my personal computer. In future may need to add a...
[ { "path": "package.json", "patch": "@@ -91,6 +91,7 @@\n \"rollup-plugin-prettier\": \"^4.1.1\",\n \"rollup-plugin-strip-banner\": \"^3.0.0\",\n \"semver\": \"^7.1.1\",\n+ \"shelljs\":\"^0.8.5\",\n \"signedsource\": \"^2.0.0\",\n \"targz\": \"^1.0.1\",\n \"through2\": \"^3.0.1\",\n...
2023-11-16T11:35:43
golang/go
ab2a92dd84aa4d0e12e7a6ef929aee765dd2aa8d
17789bc8771ad2d36e374df65262c4ffd81c97c5
runtime: improve Error documentation The current Error documentation is vacuous and doesn't say anything about what this interface is actually for. Expand to include its meaning and why it might be used. Change-Id: I6a6a636cbd5f5788cb9d1a88845de16b98f7424b Reviewed-on: https://go-review.googlesource.com/c/go/+/670635...
[ { "path": "src/runtime/error.go", "patch": "@@ -10,14 +10,24 @@ import (\n \t\"internal/runtime/sys\"\n )\n \n-// The Error interface identifies a run time error.\n+// Error identifies a runtime error used in panic.\n+//\n+// The Go runtime triggers panics for a variety of cases, as described by the\n+// Go...
2025-05-07T18:00:37
nodejs/node
eb7e18fe9446666d5b81e59167817becc8554a77
ba07067b92b4649f24f96b3b9b35d3aaba3c5e0e
test_runner: always make spec the default reporter This is a breaking change. Prior to this commit, the test_runner defaulted to the spec reporter if using a TTY, and the TAP reporter otherwise. This commit makes spec the default reporter unconditionally. TAP output is still available via the --test-reporter=tap CLI f...
[ { "path": "doc/api/test.md", "patch": "@@ -1000,12 +1000,13 @@ flags for the test runner to use a specific reporter.\n \n The following built-reporters are supported:\n \n+* `spec`\n+ The `spec` reporter outputs the test results in a human-readable format. This\n+ is the default reporter.\n+\n * `tap`\n ...
2024-08-27T15:22:16
vercel/next.js
290ecac91021ffcbd203e751e179b460df8fa63f
2817a46d48d5a1b5d50644ca4cb3b0dc0c50fab3
fix(build): add sourcePage context for PPR dynamic route lambda creation (#81781) ### What? This PR adds a `sourcePage` property to dynamic routes in the routes manifest to provide the necessary context for lambda creation during the build process when PPR is enabled. ### Why? The build process was missing the requ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -412,6 +412,15 @@ export type ManifestRoute = ManifestBuiltRoute & {\n skipInternalRouting?: boolean\n }\n \n+type DynamicManifestRoute = ManifestRoute & {\n+ /**\n+ * The source page that this route is based on. This is used to determine the\n...
2025-07-18T00:56:31
electron/electron
da3475998f154c19d3102c26fec175b9dd4eecec
9d1a16b2e62cf5838ecd1aeaf195952bb0a83f47
fix: `BrowserWindow.moveAbove()` not working for child windows (#39034) fix: BrowserWindow.moveAbove() not working for child windows
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -162,6 +162,47 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n [self setFrame:[[self superview] bounds]];\n }\n \n+// -[NSWindow orderWindow] does not handle reordering for children\n+// windows. Their order is fixed to the attachment...
2023-07-12T15:42:24
facebook/react
df42058237fdc0420116529a257f9550bce3312f
b55ccb1b84e4fb7f15a092c05b6c159c397c9922
Fix variable-resolution hoisting issues Fixes one category of bugs with const hoisting. The algorithm finds all consts that need to be hoisted, then looks through the statements of a block to find the first statement which references that const, delaying the emission of the HoistedConst instruction until its actua...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -369,7 +369,7 @@ function lowerStatement(\n */\n s.traverse({\n Identifier(id: NodePath<t.Identifier>) {\n- const binding = stmt.scope.getBinding(id.node.name);\n+ const...
2023-11-16T00:55:01
nodejs/node
5e6aab0ecad6394e538e06357d6e16e155951a8b
6bf7b6e342f97cf48319e0bc251200fabe132c21
module: use amaro default transform values PR-URL: https://github.com/nodejs/node/pull/54517 Fixes: https://github.com/nodejs/node/issues/54514 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it>
[ { "path": "lib/internal/modules/helpers.js", "patch": "@@ -360,10 +360,6 @@ function stripTypeScriptTypes(source, filename) {\n mode: typeScriptParsingMode,\n sourceMap: sourceMapEnabled,\n filename,\n- // Transform option is only applied in transform mode.\n- transform: {\n- verbatim...
2024-08-23T08:00:39
vercel/next.js
2817a46d48d5a1b5d50644ca4cb3b0dc0c50fab3
7d030a0295d36e649320ae501b609d9eac48bcb6
Turbopack: Split DynamicEqHash trait into smaller traits in a separate re-usable crate (#81741) I originally split this off to support #81742, but I ended up rewriting that PR to not depend on this... However, I think this is still a code quality improvement, so I'm publishing the PR anyways. A few notable changes: ...
[ { "path": "Cargo.lock", "patch": "@@ -9107,6 +9107,10 @@ dependencies = [\n \"utf-8\",\n ]\n \n+[[package]]\n+name = \"turbo-dyn-eq-hash\"\n+version = \"0.0.1\"\n+\n [[package]]\n name = \"turbo-esregex\"\n version = \"0.1.0\"\n@@ -9224,6 +9228,7 @@ dependencies = [\n \"tokio-util\",\n \"tracing\",\n \"...
2025-07-18T00:18:10
golang/go
0028532118eed355d0ac6337c63b01219cdc4c17
6681ff9c9e7805fab9e0dcb767f4807af03dbbbd
unique: use a bespoke canonicalization map and runtime.AddCleanup This change moves the unique package away from using a concurrent map and instead toward a bespoke concurrent canonicalization map. The map holds all its keys weakly, though keys may be looked up by value. The result is the strong pointer for the canoni...
[ { "path": "src/runtime/mfinal.go", "patch": "@@ -324,7 +324,7 @@ func isGoPointerWithoutSpan(p unsafe.Pointer) bool {\n // blockUntilEmptyFinalizerQueue blocks until either the finalizer\n // queue is emptied (and the finalizers have executed) or the timeout\n // is reached. Returns true if the finalizer qu...
2025-02-18T03:19:06