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
1e1dc22e167a9b7313aaa914fb400a19edbbeb7f
bbd7f4a5ad6fbc6d88fcd6924eace4ad3f777d33
fix: crash when resolving proxy due to network service restart (#42878)
[ { "path": "shell/browser/browser_process_impl.cc", "patch": "@@ -329,7 +329,7 @@ const std::string& BrowserProcessImpl::GetSystemLocale() const {\n electron::ResolveProxyHelper* BrowserProcessImpl::GetResolveProxyHelper() {\n if (!resolve_proxy_helper_) {\n resolve_proxy_helper_ = base::MakeRefCounted...
2024-07-15T08:46:24
facebook/react
59e73d90163b16ce820316b1c69710f23096857e
ed8dd2036bfd228638e40f0559f652d062ce0689
[compiler] Instruction reordering Adds a pass just after DCE to reorder safely reorderable instructions (jsx, primitives, globals) closer to where they are used, to allow other optimization passes to be more effective. Notably, the reordering allows scope merging to be more effective, since that pass relies on two sco...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -41,6 +41,7 @@ import {\n deadCodeElimination,\n pruneMaybeThrows,\n } from \"../Optimization\";\n+import { instructionReordering } from \"../Optimization/InstructionReordering\";\n import {\n CodegenFun...
2024-06-12T22:48:34
nodejs/node
baa60ce03c699a84c8c99560ef78f6eea4099bdd
a724a9e8dd4c91c1a45521c962b8df8edfe21b13
test_runner: allow special characters in snapshot keys Fixes: https://github.com/nodejs/node/issues/56836 PR-URL: https://github.com/nodejs/node/pull/57017 Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "lib/internal/test_runner/snapshot.js", "patch": "@@ -77,7 +77,7 @@ class SnapshotFile {\n }\n \n setSnapshot(id, value) {\n- this.snapshots[templateEscape(id)] = value;\n+ this.snapshots[escapeSnapshotKey(id)] = value;\n }\n \n nextId(name) {\n@@ -290,6 +290,13 @@ function validateF...
2025-02-19T06:34:08
vercel/next.js
6d536ed25bf9325710bf6ad158ce0c35e98ce3ed
b41b737b2479bd83f22229b96085bdb13f177b8a
Turbopack: improve errors/warnings for turbopack messages (#84552) ### What? * make the turbopack error not a really long line, which is annoying in the deployment build log * Show a `(invalid experimental key)` info in the list of experimental options when they are not supported.
[ { "path": "packages/next/src/lib/turbopack-warning.ts", "patch": "@@ -152,15 +152,20 @@ export async function validateTurboNextConfig({\n if (process.env.TURBOPACK === 'auto' && hasWebpackConfig && !hasTurboConfig) {\n const configFile = rawNextConfig.configFileName ?? 'your Next config file'\n Lo...
2025-10-08T06:02:50
golang/go
80038586ed2814a03dcb95cd6f130766f8d803c3
91e76a513bdfa4159ea0aa65a01f89e006e6ead3
cmd/compile: export to DWARF types only referenced through interfaces Delve and viewcore use DWARF type DIEs to display and explore the runtime value of interface variables. This has always been slightly problematic since the runtime type of an interface variable might only be reachable through interfaces and thus be ...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -128,14 +128,29 @@ func Info(ctxt *obj.Link, fnsym *obj.LSym, infosym *obj.LSym, curfn obj.Func) (s\n \t// already referenced by a dwarf var, attach an R_USETYPE relocation to\n \t// the function symbol to insure that the type included in ...
2025-08-18T13:49:50
rust-lang/rust
4ed37668c4b2d4523ba549890c2d9bee32b013f3
ba1567989ee7774a1fb53aa680a8e4e8daa0f519
Fix LegacyKeyValueFormat report from docker build: disabled
[ { "path": "src/ci/docker/host-x86_64/disabled/dist-aarch64-android/Dockerfile", "patch": "@@ -13,13 +13,12 @@ ENV DEP_Z_ROOT=/android/ndk/arm64-21/sysroot/usr/\n \n ENV HOSTS=aarch64-linux-android\n \n-ENV RUST_CONFIGURE_ARGS \\\n- --aarch64-linux-android-ndk=/android/ndk/arm64-21 \\\n+ENV RUST_CONFIGU...
2026-02-28T16:37:52
facebook/react
3154ec8a38e6014090039be54e0ca597fa967fdd
f0e8164410049aabc680035e8fd45b657eb020ab
Use a constant HostContext in prod builds for Fabric renderer (#29888) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting...
[ { "path": "packages/react-native-renderer/src/ReactFiberConfigFabric.js", "patch": "@@ -132,6 +132,8 @@ export function appendInitialChild(\n appendChildNode(parentInstance.node, child.node);\n }\n \n+const PROD_HOST_CONTEXT: HostContext = {isInAParentText: true};\n+\n export function createInstance(\n ...
2024-06-14T17:37:19
electron/electron
bbd7f4a5ad6fbc6d88fcd6924eace4ad3f777d33
493bc3ac9d99b33ab87bed0c93d78ec4588d84af
fix: File System Access API should remember last picked directory (#42850)
[ { "path": "shell/browser/file_system_access/file_system_access_permission_context.cc", "patch": "@@ -12,6 +12,8 @@\n #include \"base/json/values_util.h\"\n #include \"base/path_service.h\"\n #include \"base/task/thread_pool.h\"\n+#include \"base/time/time.h\"\n+#include \"base/timer/timer.h\"\n #include \"b...
2024-07-14T16:43:37
vercel/next.js
9962fa563c34a471fc1817aefff60377d8800c45
29010ffdf40c9d0cd371a862e9aa72878528626b
Turbopack: delete .next folder before throwing due to "pages/app directory must be in the same folder" (#84553) ### What? I expect an empty .next folder after an error, so it should delete it before doing the check, so that an error doesn't result in a stale .next folder
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -1016,6 +1016,34 @@ export default async function build(\n NextBuildContext.originalRewrites = config._originalRewrites\n NextBuildContext.originalRedirects = config._originalRedirects\n \n+ const distDirCreated = await nextBuildSpa...
2025-10-07T22:39:17
nodejs/node
7a6b12895eb7580bdc2efae07be164decfd63a49
0192a7d05b6c885f9d2d370c14113957be007bee
doc: fix link and history of `SourceMap` sections PR-URL: https://github.com/nodejs/node/pull/57098 Fixes: https://github.com/nodejs/node/issues/57094 Refs: https://github.com/nodejs/node/pull/48461 Refs: https://github.com/nodejs/node/pull/47790 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Jacob Smi...
[ { "path": "doc/api/module.md", "patch": "@@ -1664,6 +1664,13 @@ added:\n \n #### `new SourceMap(payload[, { lineLengths }])`\n \n+<!-- YAML\n+changes:\n+ - version: v20.5.0\n+ pr-url: https://github.com/nodejs/node/pull/48461\n+ description: Add support for `lineLengths`.\n+-->\n+\n * `payload` {Obje...
2025-02-18T19:26:40
facebook/react
2ba462b665bb4691067e67db3cfbffc56959b788
dfd30974aba0d7740e084f70a8af1cd4c54bb273
[compiler][playground] Make change detection work in playground Summary: The change detection mode was unavailable in the playground because the pragma was not a boolean. This fixes that by special casing it in pragma parsing, similar to validateNoCapitalizedCalls ghstack-source-id: 4a8c17d21ab8b7936ca61c9dd1f7fdf832...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -410,6 +410,17 @@ export function parseConfigPragma(pragma: string): EnvironmentConfig {\n continue;\n }\n \n+ if (\n+ key === \"enableChangeDetectionForDebugging\" &&\n+ (val === undefined ...
2024-06-13T18:02:47
golang/go
e8f9127d1f47ea9cf252237d387ea61d17651c3e
731e54616686889146c579317c7d1715c85a8505
net/netip: export Prefix.Compare, fix ordering Fixes #61642 Co-authored-by: David Anderson <dave@natulte.net> Change-Id: I54795763bdc5f62da469c2ae20618c36b64396f3 Reviewed-on: https://go-review.googlesource.com/c/go/+/700355 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Rev...
[ { "path": "api/next/61642.txt", "patch": "@@ -0,0 +1 @@\n+pkg net/netip, method (Prefix) Compare(Prefix) int #61642", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/net/netip/61642.md", "patch": "@@ -0,0 +1 @@\n+The new [Prefix.Compa...
2025-09-02T07:44:42
electron/electron
493bc3ac9d99b33ab87bed0c93d78ec4588d84af
3a6a20153429bf6b2712af91c970c56ea4d72173
fix: `desktopCapturer` and `screen` display ids should match (#42883) * fix: `desktopCapturer` and `screen` display IDs should match * simplify wide-to-utf8 conversion * remove unnecessary include
[ { "path": "shell/browser/api/electron_api_desktop_capturer.cc", "patch": "@@ -399,28 +399,37 @@ void DesktopCapturer::UpdateSourcesList(DesktopMediaList* list) {\n if (using_directx_capturer_) {\n std::vector<std::string> device_names;\n // Crucially, this list of device names will be in the...
2024-07-14T07:51:57
nodejs/node
ea2004a2acd3c2ad19d83944dd7e523fb7039803
ecf803daca529d583d19db355e164f6c78806796
module: allow omitting context in synchronous next hooks This aligns the behavior of synchronous hooks with asynchronous hooks by allowing omission of the context parameter in the invocation of next hooks. The contexts are merged along the chain. PR-URL: https://github.com/nodejs/node/pull/57056 Fixes: https://github...
[ { "path": "lib/internal/modules/customization_hooks.js", "patch": "@@ -4,6 +4,7 @@ const {\n ArrayPrototypeFindIndex,\n ArrayPrototypePush,\n ArrayPrototypeSplice,\n+ ObjectAssign,\n ObjectFreeze,\n StringPrototypeStartsWith,\n Symbol,\n@@ -162,19 +163,31 @@ function convertURLToCJSFilename(url...
2025-02-18T15:28:59
vercel/next.js
29010ffdf40c9d0cd371a862e9aa72878528626b
9c9e793bdc8de08453aa722da781a8646a4db0b6
Update cases for build complete with adapters (#84361) This handles `i18n` cases, ensures `pathname` field is prefixed with `basePath` when configured, and fixes interop with `output: 'export'` configured.
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -35,6 +35,8 @@ import {\n JSON_CONTENT_TYPE_HEADER,\n NEXT_RESUME_HEADER,\n } from '../../lib/constants'\n+import { normalizeLocalePath } from '../../shared/lib/i18n/normalize-locale-path'\n+import { addPathPrefix } from '../../...
2025-10-07T21:59:01
rust-lang/rust
37364585a10e368918e4a79466be24354ff5cf87
448097dd2386957a36880efbb78cb83021774540
Fix async closure suggestion when no space between || and {
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs", "patch": "@@ -800,7 +800,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n \n // If this is a zero-argument async closure directly passed as an argument\n // and the expected type is `Future`, suggest using `as...
2026-02-05T10:09:46
facebook/react
dfd30974aba0d7740e084f70a8af1cd4c54bb273
ca9b6a7ebc75371c82748e057f55403518ebb5b1
created a vscode workspace file for the repo (#29830) ### Summary Similarly to what has been done on the `react-native` repo in https://github.com/facebook/react-native/pull/43851, this PR adds a `react.code-workspace` workspace file when using VSCode. This disables the built-in TypeScript Language Service for...
[ { "path": ".prettierrc.js", "patch": "@@ -14,6 +14,12 @@ module.exports = {\n parser: 'flow',\n arrowParens: 'avoid',\n overrides: [\n+ {\n+ files: ['*.code-workspace'],\n+ options: {\n+ parser: 'json-stringify',\n+ },\n+ },\n {\n files: esNextPaths,\n optio...
2024-06-13T15:23:42
electron/electron
3a6a20153429bf6b2712af91c970c56ea4d72173
53d7cca7a21c39f88cca177b6baec4ecd700c0db
build: fixup GHA running on fork PRs (#42880) * chore: update build-tools for GHA * chore: don't rely on environment variables for source cache location
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -6,6 +6,6 @@ runs:\n - name: Install Build Tools\n shell: bash\n run: |\n- export BUILD_TOOLS_SHA=47d4bb016f47d89938898c794db80b9f98d78ad7\n+ export BUILD_TOOLS_SHA=d5b87591842be19058e8d75d2c5b7f1fabe9f450\n n...
2024-07-13T17:38:03
vercel/next.js
b0780f2ae236901bb57cae0b4cf4b48c01792845
640d7bc5097c2327d30f63a288d2afa2f488d518
Turbopack: don't ignore TS parse errors (#84597) `no_early_errors: true` was causing parse errors to be discarded. For example with https://github.com/swc-project/swc/issues/11142 where there was a parse error (though it was a bug in this case), that left a `Invalid` AST node in the output, which only broke minificat...
[ { "path": ".prettierignore", "patch": "@@ -65,6 +65,7 @@ test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx\n /turbopack/crates/turbopack-tests/tests/execution/turbopack/basic/error/input/broken.js\n /turbopack/crates/turbopack-tests/tests/execution/turbopack/exports/invalid-expo...
2025-10-07T21:11:45
facebook/react
ca9b6a7ebc75371c82748e057f55403518ebb5b1
d9a5b6393a9329b60592e34c9e1fe091e6af5090
[compiler] Fix visitors to emit the correct kind Our passes aren't sequenced such that we could observe this bug, but this retains the proper terminal kind for pruned-scopes in mapTerminalSuccessors. ghstack-source-id: 1a03b40e45649bbef7d6db968fb2dbd6261a246a Pull Request resolved: https://github.com/facebook/react/p...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/visitors.ts", "patch": "@@ -856,7 +856,7 @@ export function mapTerminalSuccessors(\n const block = fn(terminal.block);\n const fallthrough = fn(terminal.fallthrough);\n return {\n- kind: \"scope\",\n+ kind: term...
2024-06-12T23:56:22
nodejs/node
ecf803daca529d583d19db355e164f6c78806796
6fe0723e40c298a862737604e08870a6671bc811
doc: disambiguate pseudo-code statement the statement `set Y to be the file system root` can be wrongly interpreted as the file system root being updated to match Y, removing the `be` term removes this potential interpretation PR-URL: https://github.com/nodejs/node/pull/57092 Reviewed-By: James M Snell <jasnell@gmail...
[ { "path": "doc/api/modules.md", "patch": "@@ -346,7 +346,7 @@ require(X) from module at path Y\n a. return the core module\n b. STOP\n 2. If X begins with '/'\n- a. set Y to be the file system root\n+ a. set Y to the file system root\n 3. If X begins with './' or '/' or '../'\n a. LOAD_AS_FILE(...
2025-02-18T13:13:29
electron/electron
7dd6d7697d097363d30fc5a2fe491778b8fd97fa
514e9bbb04c6daca135753365c5be559fdb4059d
chore: allow multiple OS selection on bug reports (#42854)
[ { "path": ".github/ISSUE_TEMPLATE/bug_report.yml", "patch": "@@ -26,7 +26,8 @@ body:\n required: true\n - type: dropdown\n attributes:\n- label: What operating system are you using?\n+ label: What operating system(s) are you using?\n+ multiple: true\n options:\n - Windows\n - ...
2024-07-11T20:23:43
vercel/next.js
0a02fd820edc2ec57f85c5c3f08b769291694256
82bb2558bec5ee4e136dffdbaf578a4c161027b5
Turbopack: Remove workaround in hyper for rustc miscompilation bug on macos intel (#84578) Reverts https://github.com/vercel/next.js/pull/81950 This bug was fixed a few months ago upstream in rustc with https://github.com/rust-lang/rust/pull/143126 We worked around this by patching the hyper crate since updating rus...
[ { "path": "Cargo.lock", "patch": "@@ -2831,19 +2831,22 @@ dependencies = [\n \n [[package]]\n name = \"hyper\"\n-version = \"1.6.0\"\n-source = \"git+https://github.com/bgw/hyper-rs.git?branch=v1.6.0-with-macos-intel-miscompilation-workaround#ab3544930722e6c270c16d3239dbb1d58f713393\"\n+version = \"1.7.0\"\...
2025-10-07T17:56:12
facebook/react
d9a5b6393a9329b60592e34c9e1fe091e6af5090
814a4186459eb79ed9bc6f22de4a4f75ff77558c
fix[react-devtools] divided inspecting elements between inspecting do… (#29885) # **before** * nav to dom element from devtools * nav to devtools element from page are enabled on extension and disabled on the rest of the flavors. ## extension: * nav to dom element from devtools **enabled** and working * nav to...
[ { "path": "packages/react-devtools-core/src/standalone.js", "patch": "@@ -280,6 +280,7 @@ function initialize(socket: WebSocket) {\n store = new Store(bridge, {\n checkBridgeProtocolCompatibility: true,\n supportsTraceUpdates: true,\n+ supportsClickToInspect: true,\n });\n \n log('Connected...
2024-06-13T14:37:51
nodejs/node
4afc136efaf7ecd4cefced53b48d0b542893db4d
11e753536e379d6f8ce34e3baf0572012e22ad9d
src: improve error handling in node_blob PR-URL: https://github.com/nodejs/node/pull/57078 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/node_blob.cc", "patch": "@@ -30,8 +30,10 @@ using v8::HandleScope;\n using v8::Int32;\n using v8::Isolate;\n using v8::Local;\n+using v8::NewStringType;\n using v8::Object;\n using v8::ObjectTemplate;\n+using v8::SnapshotCreator;\n using v8::String;\n using v8::Uint32;\n using v8::Undefined;\...
2025-02-15T20:46:06
electron/electron
dab006b1cf78d9f34cb0acaedbe5ebac998cd819
4e10eeb87e8ad361ef497d3e40ab435d8504d4c9
ci: fix Nan test failure on Linux (#42863) ci: Nan test failure on Linux
[ { "path": ".github/workflows/pipeline-segment-node-nan-test.yml", "patch": "@@ -152,7 +152,7 @@ jobs:\n unzip -:o dist.zip\n - name: Setup Linux for Headless Testing\n run: sh -e /etc/init.d/xvfb start\n- - name: Run Node.js Tests\n+ - name: Run Nan Tests\n run: |\n cd ...
2024-07-11T14:47:02
facebook/react
55fdcf87bdab39853252369ad0dc68cb88a15102
195d5bb99e366889f0905779a0f9432d1624f999
[compiler] Fix merging of queued states in InferReferenceEffects Fixes a bug found by mofeiZ in #29878. When we merge queued states, if the new state does not introduce changes relative to the queued state we should use the queued state, not the new state. ghstack-source-id: c59f69de15fa89bd1ed049d0a7d221651577ae34 P...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts", "patch": "@@ -201,7 +201,7 @@ export default function inferReferenceEffects(\n let queuedState = queuedStates.get(blockId);\n if (queuedState != null) {\n // merge the queued states for this block...
2024-06-12T21:49:13
golang/go
4c4cefc19a16924f3aa7135d3fdc6d1687fe26c7
925a3cdcd13472c8f78d51c9ce99a59e77d46eb4
cmd/gofmt: simplify logic to process arguments Rather than stat-ing each argument and taking different code paths depending on whether it's a directory or not, we can leverage the fact that filepath.WalkDir works on regular files and already has to figure out whether each file it walks is a directory or not. We can t...
[ { "path": "src/cmd/gofmt/gofmt.go", "patch": "@@ -87,10 +87,8 @@ func initParserMode() {\n \t}\n }\n \n-func isGoFile(f fs.DirEntry) bool {\n-\t// ignore non-Go files\n-\tname := f.Name()\n-\treturn !strings.HasPrefix(name, \".\") && strings.HasSuffix(name, \".go\") && !f.IsDir()\n+func isGoFilename(name st...
2025-08-30T17:54:43
nodejs/node
11e753536e379d6f8ce34e3baf0572012e22ad9d
714ced18efe5a4a3f4673722c1de7ef1920aa01e
src: improve error handling in multiple files PR-URL: https://github.com/nodejs/node/pull/56962 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/node_i18n.cc", "patch": "@@ -104,14 +104,15 @@ namespace {\n \n template <typename T>\n MaybeLocal<Object> ToBufferEndian(Environment* env, MaybeStackBuffer<T>* buf) {\n- MaybeLocal<Object> ret = Buffer::New(env, buf);\n- if (ret.IsEmpty())\n- return ret;\n+ Local<Object> ret;\n+ if (!...
2025-02-08T17:55:45
electron/electron
4e10eeb87e8ad361ef497d3e40ab435d8504d4c9
fa6ce4f0f886644e5bea79fcb619181dce48f47d
fix: `desktopCapturer` and `screen` source ids should match screen ids (#42781) * fix: desktopCapturer screen source ids should match screen ids * test: add a regression test
[ { "path": "shell/browser/api/electron_api_desktop_capturer.cc", "patch": "@@ -167,6 +167,16 @@ std::unique_ptr<ThumbnailCapturer> MakeScreenCapturer() {\n : nullptr;\n }\n \n+#if BUILDFLAG(IS_WIN)\n+BOOL CALLBACK EnumDisplayMonitorsCallback(HMONITOR monitor,\n+ ...
2024-07-10T23:32:29
facebook/react
195d5bb99e366889f0905779a0f9432d1624f999
50e89ec9f2d44ab140e771e585226f7771da9652
Execute event handlers in the context of the instance that it's associated with (#29876) That way we get owner stacks (native or otherwise) for `console.error` or `console.warn` inside of them. Since the `reportError` is also called within this context, we also get them for errors thrown within event listeners. Y...
[ { "path": "packages/react-dom-bindings/src/events/DOMPluginEventSystem.js", "patch": "@@ -52,6 +52,7 @@ import {\n enableLegacyFBSupport,\n enableCreateEventHandleAPI,\n enableScopeAPI,\n+ enableOwnerStacks,\n } from 'shared/ReactFeatureFlags';\n import {createEventListenerWrapperWithPriority} from '...
2024-06-12T20:15:22
golang/go
925a3cdcd13472c8f78d51c9ce99a59e77d46eb4
3e596d448fb6b9668d144cffaa65e1d12a5fdce8
unicode/utf8: make DecodeRune{,InString} inlineable This change makes the fast path for ASCII characters inlineable in DecodeRune and DecodeRuneInString and removes most instances of manual inlining at call sites. Here are some benchmark results (no change to allocations): goos: darwin goarch: amd64 pkg: unicode/utf...
[ { "path": "src/bufio/bufio.go", "patch": "@@ -311,10 +311,7 @@ func (b *Reader) ReadRune() (r rune, size int, err error) {\n \tif b.r == b.w {\n \t\treturn 0, 0, b.readErr()\n \t}\n-\tr, size = rune(b.buf[b.r]), 1\n-\tif r >= utf8.RuneSelf {\n-\t\tr, size = utf8.DecodeRune(b.buf[b.r:b.w])\n-\t}\n+\tr, size ...
2025-09-02T22:10:40
nodejs/node
666e773f22303db262903efd22a7bd72370d8eb8
f1b951fd2248c9f44b730345e1681f18903aa747
doc: fix wrong articles used to address modules PR-URL: https://github.com/nodejs/node/pull/57090 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/modules.md", "patch": "@@ -253,7 +253,7 @@ This property is experimental and can change in the future. It should only be us\n by tools converting ES modules into CommonJS modules, following existing ecosystem\n conventions. Code authored directly in CommonJS should avoid depending on it.\...
2025-02-17T11:50:49
electron/electron
fa6ce4f0f886644e5bea79fcb619181dce48f47d
f9d94211bb2ad2f96ed1c4fe8c457f3c5b4c4817
fix: High Contrast mode not working on Windows (#42853) Closes https://github.com/electron/electron/issues/42609 Refs https://chromium-review.googlesource.com/c/chromium/src/+/5324688 Refs https://chromium-review.googlesource.com/c/chromium/src/+/5368321
[ { "path": "shell/browser/electron_browser_client.cc", "patch": "@@ -424,6 +424,7 @@ void ElectronBrowserClient::OverrideWebkitPrefs(\n renderer_prefs->can_accept_load_drops = false;\n \n ui::NativeTheme* native_theme = ui::NativeTheme::GetInstanceForNativeUi();\n+ prefs->in_forced_colors = native_theme...
2024-07-10T22:14:02
vercel/next.js
75b1ceff2fb29d78f7a8566124a877bc2b7386c2
316c06295ca33cd8c340a64722cf9019b980efbf
fix(cache-tags): add `/index` to implicit tags and adjust `revalidatePath()` (#84586) This fixes an issue where the tag was `/` but the build output was `/index` (and vice-versa) meaning you couldn't use `revalidatePath()` in some cases because the tag didn't match. --------- Co-authored-by: JJ Kasper <jj@jjsweb.sit...
[ { "path": "packages/next/src/server/lib/implicit-tags.test.ts", "patch": "@@ -0,0 +1,83 @@\n+import type { OpaqueFallbackRouteParams } from '../request/fallback-params'\n+import { getImplicitTags } from './implicit-tags'\n+\n+describe('getImplicitTags()', () => {\n+ it.each<{\n+ page: string\n+ url: ...
2025-10-07T16:03:51
facebook/react
f3e09d6328eb0eca53d8dbc19ea6f8f4aa43db25
93826c8483ffaf6676c437c25619d82f13444413
Bump braces from 3.0.2 to 3.0.3 in /fixtures/flight-esm (#29857) Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/micromatch/braces/commit/74b2db2938fad48a2ea54a9c8bf27a37a62c350d"><code>74b2db2</code></a> 3.0.3</...
[ { "path": "fixtures/flight-esm/yarn.lock", "patch": "@@ -79,11 +79,11 @@ brace-expansion@^1.1.7:\n concat-map \"0.0.1\"\n \n braces@~3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity sha512-b8um+L1R...
2024-06-12T15:17:06
golang/go
2a7f1d47b0650c92b47f0cd5bc3536d438e4bbbe
b09068041a20ed3cd44685a1d7f4dccbabfc2e94
runtime: use one more address bit for tagged pointers We use one extra bit to placate systems which simulate amd64 binaries on an arm64 host. Allocated arm64 addresses could be as high as 1<<48-1, which would be invalid if we assumed 48-bit sign-extended addresses. (Note that this does not help the other way around, ...
[ { "path": "src/runtime/tagptr_64bit.go", "patch": "@@ -22,10 +22,17 @@ const (\n \t// On AMD64, virtual addresses are 48-bit (or 57-bit) sign-extended.\n \t// Other archs are 48-bit zero-extended.\n \t//\n+\t// We use one extra bit to placate systems which simulate amd64 binaries on\n+\t// an arm64 host. Al...
2025-09-02T22:46:11
nodejs/node
f1b951fd2248c9f44b730345e1681f18903aa747
610e4747283a5bb0e8a05ff07cc38dd5f028976f
doc: update `module.builtinModules` sentence updates the sentence saying that `module.builtinModule` only contains the modules that can be loaded without `node:` (since v23.5.0 also prefix-only modules are included in the list) PR-URL: https://github.com/nodejs/node/pull/57089 Refs: https://github.com/nodejs/node/pul...
[ { "path": "doc/api/modules.md", "patch": "@@ -516,9 +516,11 @@ by that name.\n \n Some built-in modules are always preferentially loaded if their identifier is\n passed to `require()`. For instance, `require('http')` will always\n-return the built-in HTTP module, even if there is a file by that name. The li...
2025-02-16T22:31:15
electron/electron
170b72ccfacf4f46cc675fd5d246fd961699dde7
e54ffdf7ed0d3961f87904247cc5393b14b57118
ci: fix CircleCI config (#42829) * ci: fix CircleCI config * ci: fix syntax error
[ { "path": ".circleci/config.yml", "patch": "@@ -31,7 +31,6 @@ jobs:\n - path-filtering/set-parameters:\n base-revision: main\n mapping: |\n- ^((?!docs/).)*$ run-build-mac true\n ^((?!docs/).)*$ run-build-linux true\n docs/.* run-docs-only true\n ...
2024-07-09T01:38:05
facebook/react
55c9d45f3b9239d5997788f10b8cdad5bcb81daf
fb57fc5a8a66f38d65e3bc9f83213a0003da5702
[Flight] Let environmentName vary over time by making it a function of string (#29867) This lets the environment name vary within a request by the context a component, log or error being executed in. A potentially different API would be something like `setEnvironmentName()` but we'd have to extend the `ReadableS...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -2565,6 +2565,50 @@ describe('ReactFlight', () => {\n );\n });\n \n+ it('can change the environment name inside a component', async () => {\n+ let env = 'A';\n+ function Component(props) {\n+ env = 'B';\n+ ...
2024-06-12T14:55:42
vercel/next.js
316c06295ca33cd8c340a64722cf9019b980efbf
b5eba8ff916464232004fc914570365f9110296b
[dev] Define request ID for RSC requests on the client (#84605) Previously, we defined a request ID for RSC requests on the server. The request ID is used to tag debug information sent via WebSocket to the client, which then routes those chunks to the debug channel associated with this ID. However, this meant that th...
[ { "path": "packages/next/errors.json", "patch": "@@ -851,5 +851,6 @@\n \"850\": \"metadataBase is not a valid URL: %s\",\n \"851\": \"Pass either `webpack` or `turbopack`, not both.\",\n \"852\": \"Only custom servers can pass `webpack`, `turbo`, or `turbopack`.\",\n- \"853\": \"Turbopack build faile...
2025-10-07T14:59:00
golang/go
1eec830f545ae9c75f143d7d5c757013d6d229be
7bba745820b771307593b7278ce17464eeda2f3d
go/doc: linkify interface methods Create doc links for references to interface methods, such as "[Context.Err]". This does not attempt to handle embedded interfaces: The linked-to method must be declared within the named type. Fixes #54033 Change-Id: I4d7a132affe682c85958ca785bcc96571404e6c1 Reviewed-on: https://go...
[ { "path": "src/go/doc/comment_test.go", "patch": "@@ -24,12 +24,12 @@ func TestComment(t *testing.T) {\n \tpkg := New(pkgs[\"pkgdoc\"], \"testdata/pkgdoc\", 0)\n \n \tvar (\n-\t\tinput = \"[T] and [U] are types, and [T.M] is a method, but [V] is a broken link. [rand.Int] and [crand.Reader] are thi...
2025-07-10T22:43:43
facebook/react
fb57fc5a8a66f38d65e3bc9f83213a0003da5702
383b2a18456215d2d3ec46f33c0c912e84efa08f
[Flight] Let Errored/Blocked Direct References Turn Nearest Element Lazy (#29823) Stacked on #29807. This lets the nearest Suspense/Error Boundary handle it even if that boundary is defined by the model itself. It also ensures that when we have an error during serialization of properties, those can be associat...
[ { "path": ".eslintrc.js", "patch": "@@ -571,6 +571,7 @@ module.exports = {\n TimeoutID: 'readonly',\n WheelEventHandler: 'readonly',\n FinalizationRegistry: 'readonly',\n+ Omit: 'readonly',\n \n spyOnDev: 'readonly',\n spyOnDevAndProd: 'readonly',", "additions": 1, "deletions"...
2024-06-11T23:12:39
electron/electron
e9db02948e8c3b7f08dcfe4c6984009a2436cd9a
27e3273f0ab1bdddb853bd780fb786c432f28d6e
fix: multiple move() calls on the same unique_ptr (#42788)
[ { "path": "shell/browser/extensions/electron_extensions_browser_client.cc", "patch": "@@ -343,13 +343,12 @@ void ElectronExtensionsBrowserClient::BroadcastEventToRenderers(\n return;\n }\n \n- auto event = std::make_unique<extensions::Event>(histogram_value, event_name,\n- ...
2024-07-08T15:04:35
nodejs/node
b6cd6b7e31301ea190dac45f876bc7da4e87f8a1
69fdce2c7f1bd1c93ec793784dfcfd4ac4f62053
doc: `modules.md`: fix `distance` definition It's somewhat esoteric at best to define distance in terms of squared length! PR-URL: https://github.com/nodejs/node/pull/57046 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Chengzhong Wu <legend...
[ { "path": "doc/api/modules.md", "patch": "@@ -217,7 +217,7 @@ With the following ES Modules:\n \n ```mjs\n // distance.mjs\n-export function distance(a, b) { return (b.x - a.x) ** 2 + (b.y - a.y) ** 2; }\n+export function distance(a, b) { return Math.sqrt((b.x - a.x) ** 2 + (b.y - a.y) ** 2); }\n ```\n \n `...
2025-02-16T18:26:30
vercel/next.js
b5eba8ff916464232004fc914570365f9110296b
52a26cdb0ccb8c27d1c484aa22c46d2c9332890e
[Cache Components] Schedule work on timeouts (#84344) Previously we used the immediate queue to schedule the consecutive tasks that would prerender and abort and page prerender. This works fine but since React does not consider immediates as IO for async work tracking it means we can't use it for scheduling more advan...
[ { "path": "packages/next/src/server/app-render/app-render-prerender-utils.ts", "patch": "@@ -2,7 +2,7 @@ import { InvariantError } from '../../shared/lib/invariant-error'\n \n /**\n * This is a utility function to make scheduling sequential tasks that run back to back easier.\n- * We schedule on the same q...
2025-10-07T14:16:07
golang/go
d4b17f58695337c7eefa9d066cc51a425842e491
6a08e80399bd65b95e60e3c74b7e1f86754752a7
internal/runtime/atomic: reset wrong jump target in Cas{,64} on loong64 The implementation here needs to be consistent with ssa.OpLOONG64LoweredAtomicCas{32,64}, which was ignored in CL 613396. Change-Id: I72e8d2318e0c1935cc3a35ab5098f8a84e48bcd5 Reviewed-on: https://go-review.googlesource.com/c/go/+/699395 Reviewed-...
[ { "path": "src/internal/runtime/atomic/atomic_loong64.s", "patch": "@@ -19,7 +19,7 @@ TEXT ·Cas(SB), NOSPLIT, $0-17\n \tMOVW\tnew+12(FP), R6\n \n \tMOVBU\tinternal∕cpu·Loong64+const_offsetLOONG64HasLAMCAS(SB), R8\n-\tBEQ\tR8, cas_again\n+\tBEQ\tR8, ll_sc\n \tMOVV\tR5, R7 // backup old value\n \tAMCASDBW\tR...
2025-08-27T06:45:58
facebook/react
383b2a18456215d2d3ec46f33c0c912e84efa08f
a26e3f403e1d732ecde87db119b4ce21cee20038
Use the Nearest Parent of an Errored Promise as its Owner (#29814) Stacked on #29807. Conceptually the error's owner/task should ideally be captured when the Error constructor is called but neither `console.createTask` does this, nor do we override `Error` to capture our `owner`. So instead, we use the nearest p...
[ { "path": ".eslintrc.js", "patch": "@@ -245,7 +245,7 @@ module.exports = {\n },\n ],\n 'no-shadow': ERROR,\n- 'no-unused-vars': [ERROR, {args: 'none'}],\n+ 'no-unused-vars': [ERROR, {args: 'none', ignoreRestSiblings: true}],\n 'no-use-before-define': OFF,\n 'no-useless-concat': O...
2024-06-11T22:10:24
electron/electron
5ff91159cdf0bd181967b09e1dc14f9524a266b3
e89da2bad2f4c449903de1edc7b8655320a6dadc
fix: dangling raw_ptr ElectronBrowserContext::extension_system_ (#42785) The extension system is freed by the DestroyBrowserContextServices() call in the destructor, so we need to zero out the pointer to avoid a dangling raw_ptr error.
[ { "path": "shell/browser/electron_browser_context.cc", "patch": "@@ -372,6 +372,10 @@ ElectronBrowserContext::ElectronBrowserContext(\n ElectronBrowserContext::~ElectronBrowserContext() {\n DCHECK_CURRENTLY_ON(BrowserThread::UI);\n NotifyWillBeDestroyed();\n+\n+ // the DestroyBrowserContextServices() c...
2024-07-08T10:56:03
nodejs/node
69fdce2c7f1bd1c93ec793784dfcfd4ac4f62053
e892e79f17a1381a067f5738ac3619809a9d8012
doc: fix wrong verb form PR-URL: https://github.com/nodejs/node/pull/57091 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/modules.md", "patch": "@@ -208,7 +208,7 @@ regarding which files are parsed as ECMAScript modules.\n 3. The file has a `.js` extension, the closest `package.json` does not contain\n `\"type\": \"commonjs\"`, and the module contains ES module syntax.\n \n-If the ES Module being load...
2025-02-16T15:28:33
vercel/next.js
21f72d3ff85d403f56899cf27e597b2f070c8b35
1da862828f4a9fccac2a2499d27f32cab4fd3882
fix(cna): use correct postcss plugins syntax (#79949) this updates all CNA templates to use the correct object syntax for postcss plugins. this was done previously in https://github.com/vercel/next.js/pull/77376 but only for the `--empty` CNA templates. Co-authored-by: Tim Neutkens <tim@timneutkens.nl>
[ { "path": "packages/create-next-app/templates/app-tw/js/postcss.config.mjs", "patch": "@@ -1,5 +1,7 @@\n const config = {\n- plugins: [\"@tailwindcss/postcss\"],\n+ plugins: {\n+ \"@tailwindcss/postcss\": {},\n+ },\n };\n \n export default config;", "additions": 3, "deletions": 1, "languag...
2025-10-07T13:18:21
golang/go
6a08e80399bd65b95e60e3c74b7e1f86754752a7
8bcda6c79d40f49363cd04cdaf5bd7909de8f94f
net/http: skip redirecting in ServeMux when URL path for CONNECT is empty In 1.21 ServeMux, we had a special-case to skip redirection when a given path is empty for CONNECT requests: https://go.googlesource.com/go/+/refs/tags/go1.24.4/src/net/http/servemux121.go#205. This special case seems to not have been carried o...
[ { "path": "src/net/http/server.go", "patch": "@@ -2759,9 +2759,12 @@ func (mux *ServeMux) matchOrRedirect(host, method, path string, u *url.URL) (_ *\n \tdefer mux.mu.RUnlock()\n \n \tn, matches := mux.tree.match(host, method, path)\n-\t// If we have an exact match, or we were asked not to try trailing-slas...
2025-08-29T14:34:10
facebook/react
2c959f1d775e9c216d029d198971d06a1f8c892a
270229f0c337dc652f07ef27d2254bb922bfaa9e
[Fiber] Track debugInfo on module state instead of stack (#29807) Stacked on #29804. Transferring of debugInfo was added in #28286. It represents the parent stack between the current Fiber and into the next Fiber we're about to create. I.e. Server Components in between. ~I don't love passing DEV-only fields as a...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -1050,8 +1050,10 @@ describe('ReactFlight', () => {\n }\n \n const expectedStack = __DEV__\n- ? // TODO: This should include Throw but it doesn't have a Fiber.\n- '\\n in div' + '\\n in ErrorBoundary ...
2024-06-11T21:04:13
electron/electron
e89da2bad2f4c449903de1edc7b8655320a6dadc
cb2e7f130b66a58edba518605b371a35bd2761ee
fix: dangling raw_ptr<Session> in UserDataLink (#42786) * fix: dangling raw_ptr<Session> in UserDataLink * chore: make linter happy
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -530,9 +530,10 @@ class DictionaryObserver final : public SpellcheckCustomDictionary::Observer {\n #endif // BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)\n \n struct UserDataLink : base::SupportsUserData::Data {\n- explicit UserDataLink(Session...
2024-07-08T10:55:48
nodejs/node
e892e79f17a1381a067f5738ac3619809a9d8012
1d8593e3b1876d05d69ec5cdf4c8990f24aac892
doc: fix transpiler loader hooks documentation The loader hooks examples have been broken for a while: 1. The nextLoad() hook cannot be used on a .coffee file that ends up going to the default load step without an explict format, which would cause a ERR_UNKNOWN_FILE_EXTENSION. Mention adding a package.json w...
[ { "path": "doc/api/module.md", "patch": "@@ -1164,7 +1164,11 @@ changes:\n Node.js default `load` hook after the last user-supplied `load` hook\n * `url` {string}\n * `context` {Object|undefined} When omitted, defaults are provided. When provided, defaults are\n- merged in with preference to the pr...
2025-02-16T12:48:56
vercel/next.js
15edf7b9865a5ca887d5b9fc4908b7bc121827e8
1712abe192c2214919403b4076c17dc9032369c6
fix hidden errors in router-act (#84603) `createRouterAct` had a couple places where we create a promise via `new Promise(async (resolve) => { ... })` without accounting for the fact that some operations inside can throw, in which case the promise would never resolve. Some tests that use `createRouterAct` like to hang...
[ { "path": "test/e2e/app-dir/segment-cache/router-act.ts", "patch": "@@ -159,7 +159,7 @@ export function createRouterAct(\n // `act` controls the timing of when responses reach the client,\n // but it should not affect the timing of when requests reach the\n // server; we ...
2025-10-07T13:05:20
facebook/react
270229f0c337dc652f07ef27d2254bb922bfaa9e
01a40570c3cd852593c9bc88978b11cb9a2c5720
[Fiber] Create virtual Fiber when an error occurs during reconcilation (#29804) This lets us rethrow it in the conceptual place of the child. There's currently a problem when we suspend or throw in the child fiber reconciliation phase. This work is done by the parent component, so if it suspends or errors it is a...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -964,67 +964,47 @@ describe('ReactFlight', () => {\n const testCases = (\n <>\n <ClientErrorBoundary expectedMessage=\"This is a real Error.\">\n- <div>\n- <Throw value={new TypeError('Thi...
2024-06-11T19:57:41
golang/go
8bcda6c79d40f49363cd04cdaf5bd7909de8f94f
8377adafc548a0d9dab831477923d25ce4b10710
runtime/race: add race detector support for linux/riscv64 This enables support for the race detector on linux/riscv64. Fixes #64345 Cq-Include-Trybots: luci.golang.try:gotip-linux-riscv64 Change-Id: I98962827e91455404858549b0f9691ee438f104b Reviewed-on: https://go-review.googlesource.com/c/go/+/690497 Reviewed-by: C...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -1698,7 +1698,7 @@ func (t *tester) makeGOROOTUnwritable() (undo func()) {\n func raceDetectorSupported(goos, goarch string) bool {\n \tswitch goos {\n \tcase \"linux\":\n-\t\treturn goarch == \"amd64\" || goarch == \"ppc64le\" || goarch == \"arm64\" || goarch ...
2025-07-25T10:41:51
electron/electron
cb2e7f130b66a58edba518605b371a35bd2761ee
2f4a46f47a4d284ed2748c539bfaf10482908713
fix: potentially closed webContents in BrowserView (#42633)
[ { "path": "lib/browser/api/browser-view.ts", "patch": "@@ -4,6 +4,9 @@ const v8Util = process._linkedBinding('electron_common_v8_util');\n \n export default class BrowserView {\n #webContentsView: WebContentsView;\n+ #ownerWindow: BrowserWindow | null = null;\n+\n+ #destroyListener: ((e: any) => void) |...
2024-07-08T10:13:53
nodejs/node
1d8593e3b1876d05d69ec5cdf4c8990f24aac892
d3841517e980d8b6c64dd6be3de4472c986d7866
src: fix accessing empty string PR-URL: https://github.com/nodejs/node/pull/57014 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonza...
[ { "path": "src/node_dotenv.cc", "patch": "@@ -156,7 +156,7 @@ void Dotenv::ParseContent(const std::string_view input) {\n key = trim_spaces(key);\n \n // If the value is not present (e.g. KEY=) set is to an empty string\n- if (content.front() == '\\n') {\n+ if (content.empty() || content.front...
2025-02-16T06:45:40
vercel/next.js
1712abe192c2214919403b4076c17dc9032369c6
7453d200579512a6574f9c53edd716e5cc01615c
Guard `createDebugChannel` import by feature flag (#84604) We already do that for the initial load in `app-index.tsx` (via #83699), and should also do it for RSC requests.
[ { "path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts", "patch": "@@ -41,7 +41,10 @@ let createDebugChannel:\n | typeof import('../../dev/debug-channel').createDebugChannel\n | undefined\n \n-if (process.env.NODE_ENV !== 'production') {\n+if (\n+ process.env.NODE_ENV !=...
2025-10-07T13:01:17
facebook/react
0c65538be85d7e0f55e683512849486114ae56d9
2f47e667daec604e0e2314984066987a05bd96e9
Bump braces from 3.0.2 to 3.0.3 in /fixtures/legacy-jsx-runtimes (#29844) Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/micromatch/braces/commit/74b2db2938fad48a2ea54a9c8bf27a37a62c350d"><code>74b2db2</code></a>...
[ { "path": "fixtures/legacy-jsx-runtimes/yarn.lock", "patch": "@@ -1030,11 +1030,11 @@ brace-expansion@^1.1.7:\n concat-map \"0.0.1\"\n \n braces@^3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity sh...
2024-06-11T15:36:36
golang/go
8377adafc548a0d9dab831477923d25ce4b10710
a7d9d5a80ae799f54e323060df0dfbccc83d3759
cmd/cgo: split loadDWARF into two parts The first part runs gcc to get the debug information, and the second part processes the debug information. The first part doesn't touch the global and package level information that's computed so we can run it earlier and concurrently in a later CL. For #75167 Change-Id: I6a6a...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -213,7 +213,8 @@ func (p *Package) Translate(f *File) {\n \t\t}\n \t\tneedType := p.guessKinds(f)\n \t\tif len(needType) > 0 {\n-\t\t\tp.loadDWARF(f, &ft, &conv, needType)\n+\t\t\td := p.loadDWARF(f, &ft, needType)\n+\t\t\tp.recordTypes(f, d, &conv)\n \t\t}\n \n ...
2025-08-25T21:07:41
electron/electron
2f4a46f47a4d284ed2748c539bfaf10482908713
ac074a554804f9041f07260def59cbb576d663a0
fix: video and audio capture should be separate (#42775)
[ { "path": "shell/browser/web_contents_permission_helper.cc", "patch": "@@ -282,10 +282,10 @@ bool WebContentsPermissionHelper::CheckMediaAccessPermission(\n base::Value::Dict details;\n details.Set(\"securityOrigin\", security_origin.GetURL().spec());\n details.Set(\"mediaType\", MediaStreamTypeToStri...
2024-07-08T08:11:40
nodejs/node
409e28d5aa5285aba9ee613d7a727fdd2bb15f81
61a57f7761ef9828d1bace81238657c361e2baaa
fs: handle UV_ENOTDIR in `fs.statSync` with `throwIfNoEntry` provided Fixes: https://github.com/nodejs/node/issues/56993 Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com> PR-URL: https://github.com/nodejs/node/pull/56996 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addalea...
[ { "path": "src/node_file.cc", "patch": "@@ -1088,6 +1088,10 @@ constexpr bool is_uv_error_except_no_entry(int result) {\n return result < 0 && result != UV_ENOENT;\n }\n \n+constexpr bool is_uv_error_except_no_entry_dir(int result) {\n+ return result < 0 && !(result == UV_ENOENT || result == UV_ENOTDIR);...
2025-02-10T17:14:36
vercel/next.js
7453d200579512a6574f9c53edd716e5cc01615c
c0a7c842563e3722dea30b00a1ac4fd0a18c6cbf
Turbopack: improve next/dynamic eventual consistentcy (#84560) Use bail instead of panic to better recover from eventual consistency situations.
[ { "path": "crates/next-api/src/dynamic_imports.rs", "patch": "@@ -19,7 +19,7 @@\n //! to wait until all the dynamic components are being loaded, this ensures hydration mismatch\n //! won't occur\n \n-use anyhow::Result;\n+use anyhow::{Context, Result};\n use next_core::{\n next_app::ClientRefe...
2025-10-07T10:03:24
golang/go
fe42628dae69c907bc579219a38fce6bc8f18c6c
94b7d519bda29adad90766aaa5d2297708129a39
internal/cpu: inline DebugOptions internal/cpu.DebugOptions is only ever set in runtime.cpuinit on unix-like platforms. DebugOptions itself is only used in MustHaveDebugOptionsSupport, so inline the GOOS check there. Change-Id: I6a35d6b8afcdadfc59585258002f53c20026116c Reviewed-on: https://go-review.googlesource.com/...
[ { "path": "src/internal/cpu/cpu.go", "patch": "@@ -8,11 +8,6 @@ package cpu\n \n import _ \"unsafe\" // for linkname\n \n-// DebugOptions is set to true by the runtime if the OS supports reading\n-// GODEBUG early in runtime startup.\n-// This should not be changed after it is initialized.\n-var DebugOption...
2025-08-28T14:50:12
electron/electron
ac074a554804f9041f07260def59cbb576d663a0
19e030a6e860b6a797e9b509560082351e42233c
refactor: run Windows `SelectFileDialog` out of process (#42758) * refactor: run Windows SelectFileDialog out of process * fix: add missing IS_WIN guard * refactor: use upstream SelectFileDialogFactory * fix: build chrome/services/util_win/public/mojom target
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -156,9 +156,13 @@ static_library(\"chrome\") {\n \"//chrome/browser/ui/frame/window_frame_util.h\",\n \"//chrome/browser/win/chrome_process_finder.cc\",\n \"//chrome/browser/win/chrome_process_finder.h\",\n+ \"//chrome/browser/win/chrome...
2024-07-05T09:36:44
facebook/react
2f47e667daec604e0e2314984066987a05bd96e9
54185a35d90b3a82a638999a7f7c15970932fd1b
Bump braces from 3.0.2 to 3.0.3 in /fixtures/flight (#29845) Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/micromatch/braces/commit/74b2db2938fad48a2ea54a9c8bf27a37a62c350d"><code>74b2db2</code></a> 3.0.3</li> ...
[ { "path": "fixtures/flight/yarn.lock", "patch": "@@ -3674,11 +3674,11 @@ brace-expansion@^1.1.7:\n concat-map \"0.0.1\"\n \n braces@^3.0.2, braces@~3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity ...
2024-06-11T15:35:53
vercel/next.js
a29b4fa5c3f02c5a8f5a14050a1cdd7736a8bb30
c0cd530ad8699b433a52c1459ef4d6c06de286ee
[MCP] Fix: Do not dedup by URL for MCP get_page_metadata (#84564) The `get_page_metadata` MCP tool was incorrectly grouping browser sessions by URL instead of counting each session individually. When multiple browser tabs were open to the same URL, the tool would report only 1 session instead of the actual number of s...
[ { "path": "packages/next/src/server/mcp/tools/get-page-metadata.ts", "patch": "@@ -59,16 +59,17 @@ export function registerGetPageMetadataTool(\n }\n }\n \n- const metadataByUrl = new Map<string, PageMetadata>()\n+ const sessionMetadata: Array<{ url: string; metadata: PageMet...
2025-10-07T03:26:04
nodejs/node
a613f2f312699154b8d32195c887ea24ba0cc21a
47ae886e43537365ccc54beff0b1ac08a5a5aa19
test: fix test-without-async-context-frame.mjs in debug mode The test is spawning the python test runner directly without considering whether the current build is a debug build or not i.e. does not propage the mode parameter when the test is run with --mode=debug, so it always ends up using the release build to run th...
[ { "path": "test/parallel/test-without-async-context-frame.mjs", "patch": "@@ -49,6 +49,7 @@ describe('without AsyncContextFrame', {\n it(test, async () => {\n const proc = spawn(python, [\n testRunner,\n+ `--mode=${process.features.debug ? 'debug' : 'release'}`,\n '--node-ar...
2025-02-15T19:37:31
rust-lang/rust
038b718390d1076c201eaa6c72bb2a2aff9633f5
1eb36c651676c1101f3049a122a4aa38bb5c45a4
Fix ICE on empty file with -Zquery-dep-graph
[ { "path": "compiler/rustc_middle/src/dep_graph/graph.rs", "patch": "@@ -826,7 +826,13 @@ impl DepGraph {\n where\n F: FnOnce() -> String,\n {\n- let dep_node_debug = &self.data.as_ref().unwrap().dep_node_debug;\n+ // Early queries (e.g., `-Z query-dep-graph` on empty crates) ca...
2026-02-28T07:53:55
golang/go
94b7d519bda29adad90766aaa5d2297708129a39
ba9e1ddccfe55e711ac3987f74109393dfb736af
net: update document on limitation of iprawsock on Windows Fixed: #23209 Change-Id: I3bfe9f5192cbacf387386efda72f04eeec5ff3be GitHub-Last-Rev: 660a62d139dda21fcaea1e95394ca38521c7f00a GitHub-Pull-Request: golang/go#74857 Reviewed-on: https://go-review.googlesource.com/c/go/+/692895 LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/net/iprawsock.go", "patch": "@@ -25,6 +25,12 @@ import (\n // BUG(mikio): On JS and Plan 9, methods and functions related\n // to IPConn are not implemented.\n \n+// BUG: On Windows, raw IP sockets are restricted by the operating system.\n+// Sending TCP data, sending UDP data with invalid so...
2025-08-12T12:36:54
facebook/react
54185a35d90b3a82a638999a7f7c15970932fd1b
b5b9daa44d3cd5849d2a48da3c1db71410d9e294
Bump braces from 3.0.2 to 3.0.3 in /fixtures/stacks (#29843) Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/micromatch/braces/commit/74b2db2938fad48a2ea54a9c8bf27a37a62c350d"><code>74b2db2</code></a> 3.0.3</li> ...
[ { "path": "fixtures/stacks/yarn.lock", "patch": "@@ -298,11 +298,11 @@ brace-expansion@^1.1.7:\n concat-map \"0.0.1\"\n \n braces@~3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity sha512-b8um+L1RzM...
2024-06-11T15:35:40
vercel/next.js
c0cd530ad8699b433a52c1459ef4d6c06de286ee
844f0a62430dd697f4757d2f5eeef75da81f6e81
Allow silencing unhandled rejection filter warnings and improve debugging (#84572) The original debug logs were added to help validate the filter worked correctly in real applications. They leak implementation details which is more permissive than ideal. One reason to keep these around however is if you end up seeing ...
[ { "path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.test.ts", "patch": "@@ -61,7 +61,7 @@ type WorkerResult = {\n stderr: string\n uhr: Array<UHRReport>\n count: Array<CountReport>\n- errorLog: Array<ErrorLogReport>\n+ errorLog: Array<string>\n data: Record<string, ...
2025-10-07T02:03:12
nodejs/node
ff51d83c963e3089477e14258cf58c2e826dca22
44e2671b44503d3ab1520aa9e114de56d90983c6
doc: recommend writing tests in new files and including comments The previous phrasing encouraged or did not discourage appending new test cases to existing files - a practice that can reduce the debuggability of the tests over time as they get bigger and bigger, some times thousands of lines long with hundreds of tes...
[ { "path": "doc/contributing/writing-tests.md", "patch": "@@ -21,9 +21,22 @@ Add tests when:\n ## Test directory structure\n \n See [directory structure overview][] for outline of existing test and locations.\n-When deciding on whether to expand an existing test file or create a new one,\n-consider going thr...
2025-02-15T12:58:08
rust-lang/rust
c9b2784731332e4e9a715d5eb5dfbde282f26fd3
1eb36c651676c1101f3049a122a4aa38bb5c45a4
mark two polonius tests as known-bug As tracked in the soundness issue 153215.
[ { "path": "tests/ui/impl-trait/alias-liveness/rpit-hide-lifetime-for-swap.edition2015.stderr", "patch": "@@ -1,5 +1,5 @@\n error[E0700]: hidden type for `impl Swap + 'a` captures lifetime that does not appear in bounds\n- --> $DIR/rpit-hide-lifetime-for-swap.rs:20:5\n+ --> $DIR/rpit-hide-lifetime-for-swap...
2026-02-28T09:48:28
electron/electron
07e6b34a07c5cc9f8a526b244171175a0aa390d6
cf5fb4505ebde6a8347b45ec7e66a58d851944df
chore: bump chromium to 128.0.6571.0 (main) (#42749) * chore: bump chromium in DEPS to 128.0.6571.0 * 5636652: [4/n] Introduce RenderInputRouterClient and move InputRouterClient implementation to RenderInputRouter. https://chromium-review.googlesource.com/c/chromium/src/+/5636652 * 5655811: Revert "Reland "Re...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '128.0.6558.0',\n+ '128.0.6571.0',\n 'node_version':\n 'v20.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/...
2024-07-03T15:15:35
golang/go
ba9e1ddccfe55e711ac3987f74109393dfb736af
9f6936b8da81672cebcfa7ac3d6edddf9f1a5d65
testing: allow specify temp dir by GOTMPDIR environment variable Allow change the default temp directory returned by t.TempDir() by environment variable GOTMPDIR. Fixes #61585 Change-Id: Iba969bb02744e106cf15d80e0eda0245a55fc290 GitHub-Last-Rev: aeacea00952b11990b49a0fde6a0ce4fe910b777 GitHub-Pull-Request: golang/go...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2407,8 +2407,10 @@\n //\t\tThe name of checksum database to use and optionally its public key and\n //\t\tURL. See https://golang.org/ref/mod#authenticating.\n //\tGOTMPDIR\n-//\t\tThe directory where the go command will write\n-//\t\ttemporary source files, ...
2025-08-12T14:06:53
facebook/react
b5b9daa44d3cd5849d2a48da3c1db71410d9e294
43c17d13efc0c356a89a9036f173680ba1c115d2
[compiler] HIR-based FlattenScopesWithHooksOrUse Per title, implements an HIR-based version of FlattenScopesWithHooksOrUse as part of our push to use HIR everywhere. This is the last pass to migrate before PropagateScopeDeps, which is blocking the fix for `bug.invalid-hoisting-functionexpr`, ie where we can infer inco...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -71,6 +71,7 @@ import {\n import { alignMethodCallScopes } from \"../ReactiveScopes/AlignMethodCallScopes\";\n import { alignReactiveScopesToBlockScopesHIR } from \"../ReactiveScopes/AlignReactiveScopesToBlock...
2024-06-10T21:14:52
rust-lang/rust
614bac581b9b093ace4a7fc49c4f8c027e80d75d
3a70d0349fa378a10c3748f1a48742e61505020f
[win] Fix truncated unwinds for Arm64 Windows
[ { "path": "compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp", "patch": "@@ -347,7 +347,13 @@ extern \"C\" LLVMTargetMachineRef LLVMRustCreateTargetMachine(\n // option causes bugs in the LLVM WebAssembly backend. You should be able to\n // remove this check when Rust's minimum supported LLVM version...
2026-02-27T22:53:09
vercel/next.js
d796c0f20966482d3187923a145dafe9ff30cc08
c388db43dc580c22d8a42b6092b48717e1ad1d81
[test] Unflake static image test (#84535) [flakiness metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.name%3A%22Static%20Image%20Component%20Tests%20development%20mode%20Should%20allow%20an%20image%20with%20a%20static%20src%20...
[ { "path": "test/integration/next-image-new/default/pages/static-img.js", "patch": "@@ -25,6 +25,16 @@ export const getStaticProps = () => ({\n props: { testImgProp },\n })\n \n+function FillContainer({ children }) {\n+ // Optimized to accept the square test images. Subtracting 16px to account for\n+ // ...
2025-10-06T22:44:45
nodejs/node
44e2671b44503d3ab1520aa9e114de56d90983c6
59cdd4f1c246cceb89a00c37e3c819a08444c888
build: fix GN build failure PR-URL: https://github.com/nodejs/node/pull/57013 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "deps/zstd/unofficial.gni", "patch": "@@ -19,6 +19,7 @@ template(\"zstd_gn_build\") {\n public_configs = [ \":zstd_config\" ]\n sources = gypi_values.zstd_sources\n defines = [ \"XXH_NAMESPACE=ZSTD_\", \"ZSTD_MULTITHREAD\", \"ZSTD_DISABLE_ASM\" ]\n+ cflags_c = [ \"-Wno-unused-functi...
2025-02-15T12:11:49
electron/electron
0a8eae9019bf586f7bf191627a435ee306f3b5ef
6cca75ac7658f551967bc1268b2b576d2357c28b
docs(autoUpdater): document static storage strategy (#42690) * docs: `autoUpdater` static storage strategy * summary must be followed by newline * lint: fix whitespace for code blocks * lint: `js` -> `javascript` * bump * `javascript` -> `js` * bump
[ { "path": "docs/tutorial/updates.md", "patch": "@@ -10,6 +10,114 @@ The easiest and officially supported one is taking advantage of the built-in\n [Squirrel](https://github.com/Squirrel) framework and\n Electron's [autoUpdater](../api/auto-updater.md) module.\n \n+## Using cloud object storage (serverless)\...
2024-07-02T17:06:38
facebook/react
fb3b9ead472ec0254e4ce7bd9000eb100010f08e
c015abd9dc32e9604e992cf351f1e130fd2a0de0
fix[react-devtools] component badge in light mode is now not invisible (#29852) In light mode, component badges in profiler were invisible due to using the alpha channel to produce the grayish color. Instead I'm using the equivalent RGB without that alpha. **before** In light mode, component badges in profiler w...
[ { "path": "packages/react-devtools-shared/src/devtools/constants.js", "patch": "@@ -50,7 +50,7 @@ export const THEME_STYLES: {[style: Theme | DisplayDensity]: any, ...} = {\n '--color-commit-gradient-text': '#000000',\n '--color-component-name': '#6a51b2',\n '--color-component-name-inverted': '#...
2024-06-11T13:32:39
golang/go
9f6936b8da81672cebcfa7ac3d6edddf9f1a5d65
89d41d254a758f9b5e554761c92508220f4342a5
cmd/link: disallow linkname of runtime.addmoduledata Although a comment on addmoduledata warns that it should not be called from Go code, the linker still allow it to be accessed via go:linkname. Using linkname on this function will cause a linker crash when building with buildmode=plugin. Fixes #75180 Change-Id: Ib...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2440,6 +2440,7 @@ var blockedLinknames = map[string][]string{\n \t// Others\n \t\"net.newWindowsFile\": {\"net\"}, // pushed from os\n \t\"testing/synctest.testingSynctestTest\": {\"testing/synctest\"}, // pushe...
2025-08-28T09:32:09
vercel/next.js
df6aed34f0726061bbac6971952df4d36a0a1f05
f9ca4b5ccd3b9c5ae08bbf14467cb7f85eb9f9af
fix(Turbopack): Add better error messaging for when we can't determine Next.js root (#83918) ## Improve error message when Next.js package can't be found ### What? Enhances the `get_next_package` function to provide a more informative error message when the Next.js package cannot be found from the context directory. ...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -69,7 +69,7 @@ use crate::{\n },\n utils::{\n DetachedVc, NapiDiagnostic, NapiIssue, RootTask, TurbopackResult, get_diagnostics,\n- get_issues, subscribe,\n+ get_issues, strongly_consistent_catch_...
2025-10-06T19:43:58
electron/electron
1729a9868c9ca0fe6f68400296e1efc6fda3efd1
8a8241163d4a802a7daeb21e53780f74d2e87cc2
fix: use `BlockedRequest` struct to handle `webRequest` data (#42647) Fixes an issue where Chromium could crash on a dangling unretained pointer in one of several webRequest functions. This was happening as a result of the fact that we had outstanding blocking requests continue to reference state owned by ProxyingWebs...
[ { "path": "shell/browser/api/electron_api_web_request.cc", "patch": "@@ -185,37 +185,41 @@ void FillDetails(gin_helper::Dictionary* details, Arg arg, Args... args) {\n FillDetails(details, args...);\n }\n \n-// Fill the native types with the result from the response object.\n-void ReadFromResponse(v8::Iso...
2024-07-02T12:02:49
nodejs/node
e4f2c25527a953ba524058cbb15fd1db60a820e1
1e6a6569dc5235d8f1cfe8b6f7dda59dc1717365
doc: buffer: fix typo on `Buffer.copyBytesFrom(` `offset` option PR-URL: https://github.com/nodejs/node/pull/57015 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/buffer.md", "patch": "@@ -1098,7 +1098,7 @@ added:\n -->\n \n * `view` {TypedArray} The {TypedArray} to copy.\n-* `offset` {integer} The starting offset within `view`. **Default:**: `0`.\n+* `offset` {integer} The starting offset within `view`. **Default:** `0`.\n * `length` {integer} The...
2025-02-14T14:54:29
facebook/react
a714685c156dd241b1d5e5ae3a98c439c88e64e4
277420803947724b43c47bbc47d3a353553868f1
fix[compiler] remove duplicate parsePluginOptions from the compilePro… (#29831) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before s...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -24,7 +24,7 @@ import { isHookDeclaration } from \"../Utils/HookDeclaration\";\n import { assertExhaustive } from \"../Utils/utils\";\n import { insertGatedFunctionDeclaration } from \"./Gating\";\n import { ad...
2024-06-10T23:18:01
golang/go
38204e087267a3408e36aa23d2b5ac36f22feef3
252c9011255872e21284480754400f9be7d48bf9
testing/synctest: call out common issues with tests While each point is explained their respective sections for Time, Blocking, and Isolation, these appear to be the most common issues worth calling out up front. Fixes #75052 Change-Id: I916b559075ee4d1d23810a08459e037e21690193 Reviewed-on: https://go-review.googles...
[ { "path": "src/testing/synctest/synctest.go", "patch": "@@ -7,6 +7,14 @@\n // The [Test] function runs a function in an isolated \"bubble\".\n // Any goroutines started within the bubble are also part of the bubble.\n //\n+// Each test should be entirely self-contained:\n+// The following guidelines should ...
2025-08-17T11:29:48
vercel/next.js
86e006bd97269a64d6324ebd827ed33d4859e13b
8d7dfab1a980b85da182b4a0441090a5990c1d70
Turbopack: debug ids for server chunks (#84557) Looks like #84319 forgot to enable them for the server chunks
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1073,6 +1073,7 @@ impl Project {\n turbo_source_maps: self.next_config().server_source_maps(),\n no_mangling: self.no_mangling(),\n scope_hoisting: self.next_config().turbo_scope_hoisting(self.next_mode()),\n+ ...
2025-10-06T11:23:54
nodejs/node
1e6a6569dc5235d8f1cfe8b6f7dda59dc1717365
fc7682ca4bf9045864b23e4f43758d97ab36ad4d
tools: fix release URL computation in update-root-certs.mjs Previously this would compute the release tag to be something like FIREFOX_134_0.2_RELEASE which would not lead to a valid URL, failing to pull the latest NSS updates from the Firefox release. It should replace all the dots with underscores to compute somethi...
[ { "path": "tools/dep_updaters/update-root-certs.mjs", "patch": "@@ -65,7 +65,7 @@ const getFirefoxRelease = async (version) => {\n \n const getNSSVersion = async (release) => {\n const latestFirefox = release.version;\n- const firefoxTag = `FIREFOX_${latestFirefox.replace('.', '_')}_RELEASE`;\n+ const f...
2025-02-14T14:15:14
golang/go
252c9011255872e21284480754400f9be7d48bf9
53515fb0a9e267d6040c1d8785fe51b1367e8d4d
os,syscall: pass file flags to CreateFile on Windows Add support for FILE_FLAG_* constants in the flag argument of os.OpenFile and syscall.Open on Windows. Passing invalid flags will result in an error. Updates #73676 Change-Id: Ie215a3dd14f0d74141533f0a07865a02a67a3846 Reviewed-on: https://go-review.googlesource.c...
[ { "path": "doc/next/6-stdlib/99-minor/os/73676.md", "patch": "@@ -0,0 +1,4 @@\n+On Windows, the [OpenFile] `flag` parameter can now contain any combination of\r\n+Windows-specific file flags, such as `FILE_FLAG_OVERLAPPED` and\r\n+`FILE_FLAG_SEQUENTIAL_SCAN`, for control of file or device caching behavior,\...
2025-08-27T09:18:47
rust-lang/rust
97bd98546744bb8da6b629d8629447f765988c07
e0cb264b814526acb82def4b5810e394a2ed294f
fix(abi): Restore `noundef` on `PassMode::Cast` args in Rust ABI `adjust_for_rust_abi` was casting small aggregates to an integer register without propagating `noundef`, causing a performance regression (#123183) — LLVM could no longer assume the bits were fully defined. Add `layout_is_noundef` (conservative) + `fiel...
[ { "path": "compiler/rustc_target/src/callconv/mod.rs", "patch": "@@ -1,8 +1,8 @@\n use std::{fmt, iter};\n \n use rustc_abi::{\n- AddressSpace, Align, BackendRepr, CanonAbi, ExternAbi, HasDataLayout, Primitive, Reg, RegKind,\n- Scalar, Size, TyAbiInterface, TyAndLayout,\n+ AddressSpace, Align, Back...
2026-02-27T20:08:59
facebook/react
277420803947724b43c47bbc47d3a353553868f1
d172bdaf95b0be869f7d36b87c95a5f12b229195
Remove Warning: prefix and toString on console Arguments (#29839) Basically make `console.error` and `console.warn` behave like normal - when a component stack isn't appended. I need this because I need to be able to print rich logs with the component stack option and to be able to disable instrumentation completel...
[ { "path": "packages/internal-test-utils/shouldIgnoreConsoleError.js", "patch": "@@ -7,6 +7,9 @@ module.exports = function shouldIgnoreConsoleError(format, args) {\n args[0] != null &&\n ((typeof args[0] === 'object' &&\n typeof args[0].message === 'string' &&\n+ // This sp...
2024-06-10T22:41:56
vercel/next.js
6b427544cfc2c3e1d853bb1038c057b0b20f2e30
631dd719283af2ac6534f4f82d2b8b12b1d57d55
test: Use nextTestSetup in scss tests (#84501) This ensures the tests have some coverage for `next dev`, and ensures proper test isolation. Previously they were just using `__dirname`, which is wrong.
[ { "path": "test/e2e/app-dir/scss/invalid-global-with-app/invalid-global-with-app.test.ts", "patch": "@@ -1,29 +1,64 @@\n /* eslint-env jest */\n \n-import { remove } from 'fs-extra'\n-import { nextBuild } from 'next-test-utils'\n-import { join } from 'path'\n+import { isNextStart, nextTestSetup } from 'e2e-...
2025-10-06T09:43:01
nodejs/node
fc7682ca4bf9045864b23e4f43758d97ab36ad4d
69d32d1cfe7e05882e004e26f18beb378e15ff20
crypto: fix missing OPENSSL_NO_ENGINE guard PR-URL: https://github.com/nodejs/node/pull/57012 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -34,7 +34,9 @@ using ncrypto::BIOPointer;\n using ncrypto::ClearErrorOnReturn;\n using ncrypto::CryptoErrorList;\n using ncrypto::DHPointer;\n+#ifndef OPENSSL_NO_ENGINE\n using ncrypto::EnginePointer;\n+#endif // !OPENSSL_NO_ENGINE\n using ncrypto::EVP...
2025-02-14T12:26:15
electron/electron
8a8241163d4a802a7daeb21e53780f74d2e87cc2
14303a0a71cbd30d772e79209355db6f01dbd635
chore: bump chromium to 128.0.6558.0 (main) (#42413) * chore: bump chromium in DEPS to 127.0.6526.0 * chore: update network_service_allow_remote_certificate_verification_logic.patch manually apply patch due to minor upstream shear Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5598454 * ch...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -544,7 +544,7 @@ step-fix-sync: &step-fix-sync\n fi\n \n # Make sure we are using the right ninja\n- echo 'infra/3pp/tools/ninja/${platform}' `gclient getdep --deps-file=src/DEPS -r 'src/third_party/ninja:infra/3pp/tools/ninja/${platform}'...
2024-07-02T07:51:33
rust-lang/rust
3ecd18ca376b59e96db9b1daa8d14a4fe6856adc
1500f0f47f5fe8ddcd6528f6c6c031b210b4eac5
std: make `OsString::truncate` a no-op when `len > current_len` Align `OsString::truncate` (and the underlying WTF-8 implementation) with `String::truncate` by making it a no-op when `len > self.len()`. Previously, `OsString::truncate` would panic if `len > self.len()`, while `String::truncate` treats such cases as a...
[ { "path": "library/alloc/src/wtf8/mod.rs", "patch": "@@ -342,14 +342,18 @@ impl Wtf8Buf {\n \n /// Shortens a string to the specified length.\n ///\n+ /// If `new_len` is greater than the string's current length, this has no\n+ /// effect.\n+ ///\n /// # Panics\n ///\n- /// Panic...
2026-02-23T01:45:28