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
fd76646e74cc33ec7d09c39d23db7b83939cf3f3
ccf05ef751f51b8b0b3113f16bcc58397a643be8
doc: fix typo in method name in the sea doc PR-URL: https://github.com/nodejs/node/pull/54027 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewe...
[ { "path": "doc/api/single-executable-applications.md", "patch": "@@ -343,7 +343,7 @@ This method can be used to retrieve the assets configured to be bundled into the\n single-executable application at build time.\n An error is thrown when no matching asset can be found.\n \n-Unlike `sea.getRawAsset()` or `s...
2024-08-15T11:11:01
facebook/react
9d5ff320badcb81c914a010105fc033c2a595d4c
00cb557b12ecc3991ed35570f69b3f0284a9a545
[babel] Fix default value for `environment` option When an `environment` isn't explicitly provided by the user's config, we used to default this to `null` in `parsePluginOptions` which is called right at the start of the Babel plugin. These parsed options were then being passed to zod, which was expecting an objec...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -146,7 +146,7 @@ export type Logger = {\n export const defaultOptions: PluginOptions = {\n compilationMode: \"infer\",\n panicThreshold: \"CRITICAL_ERRORS\",\n- environment: null,\n+ environment: {},\n lo...
2023-11-07T23:58:21
golang/go
ad0434200c4b17c339852c8c0ec0c0212f8563d9
a4d0269a4f74e8a66ee7487491857e1a1c582231
fs: clarify documentation for ReadDir method The fs.ReadDir method behaves the same way as os.ReadDir, in that when n <= 0, ReadDir returns all DirEntry values remaining in the dictionary. Update the comment to reflect that only remaining DirEntry values are returned (not all entries), for subsequent calls. Fixes #6...
[ { "path": "src/io/fs/fs.go", "patch": "@@ -129,7 +129,7 @@ type ReadDirFile interface {\n \t// At the end of a directory, the error is io.EOF.\n \t// (ReadDir must return io.EOF itself, not an error wrapping io.EOF.)\n \t//\n-\t// If n <= 0, ReadDir returns all the DirEntry values from the directory\n+\t// ...
2025-04-05T20:56:42
vercel/next.js
de52c00b930f6b791604ff77df959b92aa416d4c
b5f2517a155b8f482c06317f0f6fb4b11530dc91
Turbopack: Fix turbopack-swc-ast-explorer with multi-line inputs (#81635) Previously this was only parsing the first line of input ``` cargo run -p swc-ast-explorer <turbopack/crates/turbopack-tests/tests/snapshot/comptime/assignment/input/index.js | less ```
[ { "path": "turbopack/crates/turbopack-swc-ast-explorer/src/main.rs", "patch": "@@ -1,4 +1,7 @@\n-use std::{io::stdin, sync::Arc};\n+use std::{\n+ io::{Read, stdin},\n+ sync::Arc,\n+};\n \n use anyhow::Result;\n use clap::Parser;\n@@ -25,7 +28,7 @@ fn main() -> Result<()> {\n let args = Args::parse...
2025-07-14T19:03:56
facebook/react
bccd06a6326978ca7dc6287880f0a8046d47140c
688305a978958c087e3a204fc40db9ea5d2cfc7f
[babel] Simplify noEmit and hasCriticalError check
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -283,9 +283,7 @@ export function compileProgram(\n return;\n }\n \n- if (pass.opts.noEmit) {\n- return;\n- } else if (!hasCriticalError) {\n+ if (!pass.opts.noEmit && !hasCriticalError) {\...
2023-11-07T11:04:35
nodejs/node
1212eca1fcdfdfca83135bf3d878743851b9d3b5
c1ec09923964f8e0a011026d08ed223b52620600
test_runner: fix delete test file cause dependency file not watched When a watched test file is being deleted then the referenced dependency file(s) will be updated incorrect when `unfilterFilesOwnedBy` method is called, which will cause tests not being rerun when its referenced dependency changed. To prevent this cas...
[ { "path": "lib/internal/test_runner/runner.js", "patch": "@@ -424,13 +424,18 @@ function watchFiles(testFiles, opts) {\n const newFileName = ArrayPrototypeFind(updatedTestFiles, (x) => !ArrayPrototypeIncludes(testFiles, x));\n const previousFileName = ArrayPrototypeFind(testFiles, (x) => !ArrayP...
2024-08-14T15:43:10
golang/go
a4d0269a4f74e8a66ee7487491857e1a1c582231
7f516a31b021f15c1053c3ebed1fe1aa644d60e3
math/big: use clearer loop bounds check elimination Checking that the lengths are equal and panicking teaches the compiler that it can assume “i in range for z” implies “i in range for x”, letting us simplify the actual loops a bit. It also turns up a few places in math/big that were playing maybe a little too fast a...
[ { "path": "src/math/big/arith.go", "patch": "@@ -26,17 +26,13 @@ const (\n \t_M = _B - 1 // digit mask\n )\n \n-// Many of the loops in this file are of the form\n-// for i := 0; i < len(z) && i < len(x) && i < len(y); i++\n-// i < len(z) is the real condition.\n-// However, checking i < len(x) && ...
2025-04-11T12:54:58
vercel/next.js
b5f2517a155b8f482c06317f0f6fb4b11530dc91
d04d65b5e69e8b60823de0e80162ff4e93445fe4
[segment explorer] fix boundary trigger state (#81623)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-boundary-trigger.css", "patch": "@@ -47,15 +47,6 @@\n cursor: not-allowed;\n }\n \n-.segment-boundary-trigger--boundary {\n- background: var(--color-background-100);\n- box-shadow: inset 0 0 0 1px var(--color-gray-400);\n...
2025-07-14T18:05:37
facebook/react
688305a978958c087e3a204fc40db9ea5d2cfc7f
cf70ef899e50db5eb463d98ac41e1ed1f08ff031
Check if critical error before throwing
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -278,9 +278,8 @@ export function compileProgram(\n memoSlots: compiledFn.memoSlotsUsed,\n });\n } catch (err) {\n- handleError(pass, fn.node.loc ?? null, err);\n-\n hasCriticalError |...
2023-11-07T11:04:34
electron/electron
c5972ba43cfbb74cc008cfecf4eb1c6068db1c0e
86824c070e31a674f6f523b52426549efc61aa6d
fix: bad error passing `webContents.print(null)` (#38612) fix: bad error passing webContents.print(null)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -335,36 +335,34 @@ WebContents.prototype.printToPDF = async function (options) {\n }\n };\n \n-WebContents.prototype.print = function (options: ElectronInternal.WebContentsPrintOptions = {}, callback) {\n- // TODO(codebytere): deduplicate argument...
2023-06-07T17:18:26
nodejs/node
02b30954a8a5b1f93b5e50d005c7a01b122a86ef
880c446d9558b5c8b90228b077b2721c3bb6070f
test: use relative paths in test-cli-permission tests `process.permission.has("fs")` checks if the process has permission for all files under `cwd`. Granting permission for `/tmp` and running tests with `cwd` containing `/tmp` will make the funtion return `true`, differing from expected results. Using relative paths e...
[ { "path": "test/parallel/test-cli-permission-deny-fs.js", "patch": "@@ -27,7 +27,7 @@ const path = require('path');\n }\n \n {\n- const tmpPath = path.resolve('/tmp/');\n+ const tmpPath = path.resolve('./tmp/');\n const { status, stdout } = spawnSync(\n process.execPath,\n [\n@@ -36,7 +36,7 @@ c...
2024-08-14T03:49:39
golang/go
b44b360dd40a537e953225d70ca96361e2c57600
930cf59ba8091bfd56c71357085bc7de74daf421
math/big: add more complete tests and benchmarks of assembly Also fix a few real but currently harmless bugs from CL 664895. There were a few places that were still wrong if z != x or if a != 0. Change-Id: Id8971e2505523bc4708780c82bf998a546f4f081 Reviewed-on: https://go-review.googlesource.com/c/go/+/664897 LUCI-Try...
[ { "path": "src/math/big/arith_amd64.s", "patch": "@@ -430,7 +430,7 @@ adx:\n \tMOVQ y+48(FP), R8\n \tMOVQ m+72(FP), DX\n \tMOVQ $0, BX // i = 0\n-\tMOVQ $0, CX // carry\n+\tMOVQ a+80(FP), CX // carry\n \tCMPQ R11, $8\n \tJAE adx_loop_header\n \tCMPQ BX, R11\n@@ -446,7 +446,7 @@ adx_loop:\n \tMULXQ (R...
2025-03-30T20:56:29
facebook/react
d6ff65ecc707af73a1775aa10e88b18049721d67
337c17a66fc326ded8f1614783712fbdf05b8d25
Add runtime validation for ExternalFunction Use zod to do runtime validation and throw if incorrect. This PR only adds validation for ExternalFunction, will validate other options in follow on PRs.
[ { "path": "compiler/packages/babel-plugin-react-forget/package.json", "patch": "@@ -31,7 +31,9 @@\n \"@babel/types\": \"^7.19.0\",\n \"chalk\": \"4\",\n \"invariant\": \"^2.2.4\",\n- \"pretty-format\": \"^24\"\n+ \"pretty-format\": \"^24\",\n+ \"zod\": \"^3.22.4\",\n+ \"zod-validatio...
2023-11-07T11:04:33
vercel/next.js
d04d65b5e69e8b60823de0e80162ff4e93445fe4
1758c3c4427480274211f9dd769cec305b274f62
[segment explorer] fix route url is missing cases (#81622)
[ { "path": "packages/next/src/client/components/layout-router.tsx", "patch": "@@ -40,6 +40,7 @@ import { createRouterCacheKey } from './router-reducer/create-router-cache-key'\n import { hasInterceptionRouteInCurrentTree } from './router-reducer/reducers/has-interception-route-in-current-tree'\n import { dis...
2025-07-14T18:05:07
electron/electron
86824c070e31a674f6f523b52426549efc61aa6d
5931f69f183bfcd57c9dc7dffe8560ac9163bb45
fix: validate response in `protocol.handle()` (#38587) fix: validate response in protocol.handle()
[ { "path": "lib/browser/api/protocol.ts", "patch": "@@ -60,6 +60,26 @@ function convertToRequestBody (uploadData: ProtocolRequest['uploadData']): Reque\n }) as RequestInit['body'];\n }\n \n+// TODO(codebytere): Use Object.hasOwn() once we update to ECMAScript 2022.\n+function validateResponse (res: Respons...
2023-06-07T07:29:04
nodejs/node
d0f5943363fd6b7dd78cfd288b59af7727d79ce7
1d35a066e75c4f99a307b5f7f83321ca7ae8e1aa
test_runner: do not expose internal loader PR-URL: https://github.com/nodejs/node/pull/54106 Fixes: https://github.com/nodejs/node/issues/54071 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/modules/esm/hooks.js", "patch": "@@ -145,13 +145,15 @@ class Hooks {\n * @param {any} [data] Arbitrary data to be passed from the custom\n * loader (user-land) to the worker.\n */\n- async register(urlOrSpecifier, parentURL, data) {\n+ async register(urlOrSpecifier, parent...
2024-08-13T13:17:50
facebook/react
72c27b6893188be833839923b33d739a93b3ed6e
c424cbbfa7822b47fc73b112514426d149d3c98a
Feature flag for transitively freezing values This PR adds a feature flag to model a potential new-in-practice rule in React: that freezing a function expression also freezes its closed-over values, transitively. For example, in the following code `data` is frozen when the lambda that captures it is is passed to u...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts", "patch": "@@ -175,6 +175,41 @@ export type EnvironmentConfig = {\n */\n enableEmitFreeze: ExternalFunction | null;\n \n+ /**\n+ * Forget infers certain operations as \"freezing\" a value, such that those\n+ * values sh...
2023-11-06T16:33:32
golang/go
930cf59ba8091bfd56c71357085bc7de74daf421
28fd9fa8a6de5f5e75a3ca2eeaa55b5ae4a2722b
regexp/syntax: recognize category aliases like \p{Letter} The Unicode specification defines aliases for some of the general category names. For example the category "L" has alias "Letter". The regexp package supports \p{L} but not \p{Letter}, because there was nothing in the Unicode tables that lets regexp know about...
[ { "path": "doc/next/6-stdlib/99-minor/regexp/syntax/70781.md", "patch": "@@ -0,0 +1,4 @@\n+The `\\p{name}` and `\\P{name}` character class syntaxes now accept the names\n+Any, ASCII, Assigned, Cn, and LC, as well as Unicode category aliases like `\\p{Letter}` for `\\pL`.\n+Following [Unicode TR18](https://u...
2025-01-08T16:27:07
vercel/next.js
d9bcc4a6d354898dba75a1377087bd6a0da8491f
fcfae6eba077e5eb67775eec7ddfbe647b4423e6
[Segment Cache] Fix isHeadPartial logic (#81566) This PR fixed two typos that affected isHeadPartial logic.
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache.ts", "patch": "@@ -1466,7 +1466,7 @@ function writeDynamicTreeResponseIntoCache(\n entry,\n convertRootFlightRouterStateToRouteTree(flightRouterState),\n flightData.head,\n- isResponsePartial,\n+ flightData.isHeadParti...
2025-07-14T16:34:51
electron/electron
5931f69f183bfcd57c9dc7dffe8560ac9163bb45
80246cf97f82205f0fd2e2949caed57ef6a38a34
fix: sync api::Screen wrapper method sigs to upstream (#38597) refactor: sync api::Screen getter sigs to upstream ui::Display GetAllDisplays(), GetPrimaryDisplay(), GetDisplayMatching(), and GetDisplayNearestPoint() methods are all const, so make our wrappers const too. ui::Display GetAllDisplays() returns a c...
[ { "path": "shell/browser/api/electron_api_screen.cc", "patch": "@@ -87,22 +87,6 @@ gfx::Point Screen::GetCursorScreenPoint(v8::Isolate* isolate) {\n return screen_->GetCursorScreenPoint();\n }\n \n-display::Display Screen::GetPrimaryDisplay() {\n- return screen_->GetPrimaryDisplay();\n-}\n-\n-std::vector...
2023-06-07T07:28:50
nodejs/node
1d35a066e75c4f99a307b5f7f83321ca7ae8e1aa
9e8cc2933e9a915c2ab79efbd5f1b8afd3aab4f4
src,test: ensure that V8 fast APIs are called Adds a debug-only macro that can be used to track when a V8 fast API is called. A map of counters is maintained in in thread-local storage and an internal API can be called to get the total count associated with a call id. Specific tests are added and `crypto.timingSafeEqu...
[ { "path": "doc/contributing/adding-v8-fast-api.md", "patch": "@@ -29,6 +29,12 @@ for example, they may not trigger garbage collection.\n * To test fast APIs, make sure to run the tests in a loop with a decent\n iterations count to trigger relevant optimizations that prefer the fast API\n over the slow o...
2024-08-13T12:37:02
facebook/react
c424cbbfa7822b47fc73b112514426d149d3c98a
35fee3135561ec3259cce695f4e2bb0863f7d7e0
Add validation against instructions not part of their scope Adds an internal compiler assertion pass which checks that all the instructions which are necessary for constructing a given scope correctly end up within the corresponding ReactiveScopeBlock. All known cases where this can occur are fixed earlier in the ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -36,6 +36,7 @@ import {\n import {\n CodegenFunction,\n alignReactiveScopesToBlockScopes,\n+ assertScopeInstructionsWithinScopes,\n buildReactiveBlocks,\n buildReactiveFunction,\n codegenReactiveFunct...
2023-11-06T16:33:31
golang/go
28fd9fa8a6de5f5e75a3ca2eeaa55b5ae4a2722b
252c939445b6b03c5c82b54f7657c5d984ce6348
unicode: add CategoryAliases, Cn, LC CategoryAliases is for regexp to use, for things like \p{Letter} as an alias for \p{L}. Cn and LC are special-case categories that were never implemented but should have been. These changes were generated by the updated generator in CL 641395. Fixes #70780. Change-Id: Ibba20ff76...
[ { "path": "api/next/70780.txt", "patch": "@@ -0,0 +1,3 @@\n+pkg unicode, var CategoryAliases map[string]string #70780\n+pkg unicode, var Cn *RangeTable #70780\n+pkg unicode, var LC *RangeTable #70780", "additions": 3, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdl...
2025-01-08T16:21:30
rust-lang/rust
4d07a8f24c42c4cb7362ea8c4db8cfca62a846b2
08a4ce529f4ea17ad1c0fa2e39ca1f5e7cd047b6
std: Don't panic when removing a nonexistent UEFI var `std::env::remove_var` does not say that deleting a nonexistent variable is an error (and at least on Linux, it indeed does not cause an error). The UEFI Shell Protocol spec also doesn't say it's an error, but the edk2 implementation delegates to the UEFI runtime ...
[ { "path": "library/std/src/sys/env/uefi.rs", "patch": "@@ -43,7 +43,20 @@ mod uefi_env {\n pub(crate) fn unset(key: &OsStr) -> io::Result<()> {\n let mut key_ptr = helpers::os_string_to_raw(key)\n .ok_or(io::const_error!(io::ErrorKind::InvalidInput, \"invalid key\"))?;\n- unsa...
2026-02-08T17:29:59
vercel/next.js
fcfae6eba077e5eb67775eec7ddfbe647b4423e6
ab24f6222a7cb7e37809af6b96432970b655c3dd
15.4 Docs: Minor feature updates (#81618) Updates the docs to include the new options in 15.4. - `prefetch="auto"` option: https://github.com/vercel/next.js/pull/78689 - `next build` new `--debug-prerender option`: https://github.com/vercel/next.js/pull/80667 --------- Co-authored-by: graphite-app[bot] <96075541+g...
[ { "path": "docs/01-app/03-api-reference/02-components/link.mdx", "patch": "@@ -299,7 +299,7 @@ Prefetching happens when a `<Link />` component enters the user's viewport (init\n \n The following values can be passed to the `prefetch` prop:\n \n-- **`null` (default)**: Prefetch behavior depends on whether th...
2025-07-14T16:33:22
electron/electron
b2059f288acba385d91cec0cc86135605bf477cf
bb2ba35b51609e40c4cae2f3f904a04c795a7430
fix: account for `BrowserView` bounds in setting autofill popup bounds (#38489)
[ { "path": "shell/browser/electron_autofill_driver.cc", "patch": "@@ -11,6 +11,7 @@\n #include \"content/public/browser/render_widget_host_view.h\"\n #include \"shell/browser/api/electron_api_web_contents.h\"\n #include \"shell/browser/javascript_environment.h\"\n+#include \"shell/browser/native_browser_view...
2023-06-06T08:21:42
nodejs/node
b8a2550ec0a7fd6ce1f9a6b6b7cf2bfbf96fb484
916865ba8b465f4994f3531fbb802cc53287acb9
test: unmark test-sqlite as flaky PR-URL: https://github.com/nodejs/node/pull/54014 Fixes: https://github.com/nodejs/node/issues/54006 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizi...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -19,9 +19,6 @@ test-fs-read-stream-concurrent-reads: PASS, FLAKY\n # https://github.com/nodejs/node/issues/52630\n test-error-serdes: PASS, FLAKY\n \n-# https://github.com/nodejs/node/issues/54006\n-test-sqlite: PASS, FLAKY\n-\n [$system==win32]\n \n #...
2024-08-06T22:51:02
facebook/react
0d3f3884b871088c92a76822dd221d06bad40df6
1607fb39c3148eb1dc31005af4b07a7024954de3
Fix for IIFE return values mutated later Fixes for the previous PR. What was happening is that our inference was inferring the correct mutable ranges and reactive scopes, but the inlining process left the instructions from the IIFEs inside a separate block, with a 'label' terminal preceding it. When we converted t...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -115,6 +115,18 @@ function* runWithEnvironment(\n pruneMaybeThrows(hir);\n yield log({ kind: \"hir\", name: \"PruneMaybeThrows\", value: hir });\n \n+ validateUseMemo(hir);\n+\n+ dropManualMemoization(hir)...
2023-11-06T16:33:29
rust-lang/rust
d14c26f45a84eff6eabddd8c0e0580d851ade217
8aa0e905f4a1806a9406eb7c34e0c58157dc2856
Fix help on `AmbiguousMissingKwForItemSub` diagnostic
[ { "path": "compiler/rustc_parse/src/errors.rs", "patch": "@@ -2266,7 +2266,9 @@ pub(crate) enum AmbiguousMissingKwForItemSub {\n span: Span,\n snippet: String,\n },\n- #[help(\"you likely meant to define an item, e.g., `{$vis} fn foo() {\\\"{}\\\"}`\")]\n+ #[help(\n+ \"if yo...
2026-02-08T09:24:07
vercel/next.js
7d474930a9445b0f8403f68edfdc8c992ce8b93e
2368e1c3d271dda2674458c9903ff7cc4bec21a4
Turbopack: fix hanging problem with reexport cycles (#81620) ### What? Fix a hanging compilation in a specific case when reexports modules in a cycle. Fix reported issues for tree shaken modules
[ { "path": "turbopack/crates/turbopack-ecmascript/src/references/esm/export.rs", "patch": "@@ -13,7 +13,7 @@ use swc_core::{\n };\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n- FxIndexMap, FxIndexSet, NonLocalValue, ResolvedVc, TryFlatJoinIterExt, ValueToString, Vc,\n+ FxIndexMap, NonLocalV...
2025-07-14T15:00:42
electron/electron
8d689c565a6168fbeb68a2d971f9d1a2f1666375
905aad9cb6007c2e0ff4897ec64f0c9967f63ee2
fix: file selection when disallowed on macOS (#38557)
[ { "path": "shell/browser/ui/file_dialog_mac.mm", "patch": "@@ -281,11 +281,29 @@ void ReadDialogPathsWithBookmarks(NSOpenPanel* dialog,\n std::vector<base::FilePath>* paths,\n std::vector<std::string>* bookmarks) {\n NSArray* urls = [dial...
2023-06-05T12:08:10
facebook/react
1607fb39c3148eb1dc31005af4b07a7024954de3
60af6671d72540b472c1701ce7d42da4f4e3a16d
Repro for incorrect memoization of iife We construct invalid mutable ranges in these cases because the range starts within a labeled block. We need to run merge consecutive scopes and EnterSSA after inlining so that the code is lifted out of the labeled block to the correct scope, and so that we create phis for re...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug.iife-return-modified-later-phi.expect.md", "patch": "@@ -0,0 +1,53 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const items = (() => {\n+ if (props.cond) {\n+ return [];\n+ } else {...
2023-11-06T16:33:28
nodejs/node
916865ba8b465f4994f3531fbb802cc53287acb9
717b4018f1cd00bf20720f40ad0b201b0946c9e0
sqlite: split up large test file The original test/parallel/test-sqlite.js test appears to time out in the CI occasionally. This commit splits the test into several smaller test files. Fixes: https://github.com/nodejs/node/issues/54006 PR-URL: https://github.com/nodejs/node/pull/54014 Reviewed-By: Moshe Atlow <moshe@...
[ { "path": "test/parallel/test-sqlite-data-types.js", "patch": "@@ -0,0 +1,157 @@\n+// Flags: --experimental-sqlite\n+'use strict';\n+require('../common');\n+const tmpdir = require('../common/tmpdir');\n+const { join } = require('node:path');\n+const { DatabaseSync } = require('node:sqlite');\n+const { suite...
2024-07-24T04:35:00
rust-lang/rust
8aa0e905f4a1806a9406eb7c34e0c58157dc2856
953aa57c7503177f494dfb168306503867aa26fc
Fix suggestion on `CallToDeprecatedSafeFnRequiresUnsafe` diagnostic
[ { "path": "compiler/rustc_mir_build/src/errors.rs", "patch": "@@ -22,7 +22,7 @@ pub(crate) struct CallToDeprecatedSafeFnRequiresUnsafe {\n \n #[derive(Subdiagnostic)]\n #[multipart_suggestion(\n- \"you can wrap the call in an `unsafe` block if you can guarantee that the environment access only happens in...
2026-02-08T09:23:58
golang/go
0e17905793cb5e0acc323a0cdf3733199d93976a
c889004615b40535ebd5054cbcf2deebdb3a299a
encoding/json: add json/v2 with GOEXPERIMENT=jsonv2 guard This imports the proposed new v2 JSON API implemented in github.com/go-json-experiment/json as of commit d3c622f1b874954c355e60c8e6b6baa5f60d2fed. When GOEXPERIMENT=jsonv2 is set, the encoding/json/v2 and encoding/jsontext packages are visible, the encoding/js...
[ { "path": "src/encoding/json/bench_test.go", "patch": "@@ -8,6 +8,8 @@\n // We benchmark converting between the JSON form\n // and in-memory data structures.\n \n+//go:build !goexperiment.jsonv2\n+\n package json\n \n import (", "additions": 2, "deletions": 0, "language": "Go" }, { "path...
2025-04-11T21:19:51
vercel/next.js
0c9355d36eaa853cb402a5a7c8312c9ece2b865a
0cf373a5857eec1ad4adca213aa8d86dc7d43e80
fix: revert focus trap dependency change (#81571)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -163,7 +163,7 @@ function DevToolsPopover({\n )\n \n // Features to make the menu accessible\n- useFocusTrap(menuRef, triggerRef, menuMounted)\n+ useFocusTrap(menuRef, tr...
2025-07-12T22:06:34
facebook/react
a2aa032276a9546a7bc06d118ca7de98a5fae651
fe147cb16a3ec82220d2599bb59ee12fc7319687
[eslint] Plugin should never throw This has caused issues for people when things like Babel cause issues. It's not actionable and it crashes eslint. Just like the Babel plugin, the eslint plugin should never throw. Instead, let's log the error so the data isn't lost.
[ { "path": "compiler/packages/eslint-plugin-react-forget/src/rules/ReactForgetDiagnostics.ts", "patch": "@@ -23,6 +23,8 @@ type CompilerErrorDetailWithLoc = Omit<CompilerErrorDetail, \"loc\"> & {\n loc: BabelSourceLocation;\n };\n \n+type UserProvidedLogger = (...args: unknown[]) => void;\n+\n function ass...
2023-11-03T20:27:18
nodejs/node
717b4018f1cd00bf20720f40ad0b201b0946c9e0
0301309493b2a4e80796517bdb46ec55202a4800
sqlite: ensure statement finalization on db close This commit adds statement tracking to the DatabaseSync class. When a database is closed manually or via garbage collection, it will force all associated prepared statements to be finalized. This should mitigate "zombie" connections which can introduce test flakiness i...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -91,16 +91,19 @@ DatabaseSync::DatabaseSync(Environment* env,\n }\n \n DatabaseSync::~DatabaseSync() {\n- sqlite3_close_v2(connection_);\n- connection_ = nullptr;\n+ if (IsOpen()) {\n+ FinalizeStatements();\n+ sqlite3_close_v2(connection_);\n+ connect...
2024-08-06T03:37:13
electron/electron
905aad9cb6007c2e0ff4897ec64f0c9967f63ee2
4c89061e0e79ccd8574c058e30d9b694f22ced1b
chore: type check JS in docs (#38423) * build(deps): update @electron/lint-roller * chore: type check JS in docs * docs: add @ts-check and @ts-expect-error to code blocks * chore: fix type check errors in docs * chore: add ts-type to blocks
[ { "path": "docs/api/app.md", "patch": "@@ -971,7 +971,7 @@ app.setJumpList([\n title: 'Tool A',\n program: process.execPath,\n args: '--run-tool-a',\n- icon: process.execPath,\n+ iconPath: process.execPath,\n iconIndex: 0,\n description: 'Runs Tool A'\n ...
2023-06-05T07:26:26
facebook/react
4a793bb86e6aa8c27b7dcba5783a2f8dbb5b68d0
dca54c8932cfad5905c8b079be551ba741e07268
[hoisting] Add more repros for hoisting bugs
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-hoisting.expect.md", "patch": "@@ -0,0 +1,26 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const wat = () => {\n+ const pathname = \"wat\";\n+ pathname;\n+ };\n+\n+ const pathname...
2023-11-02T15:01:29
golang/go
b89988c5ca47a6a2022db689fa882134397d0f32
05ed8a00e07e93fd40cf8269bdf16d6d2b34740d
internal/poll: remove outdated tests TestFileFdsAreInitialised and TestSerialFdsAreInitialised were added to ensure handles passed to os.NewFile were not added to the runtime poller. This used to be problematic because the poller could crash if an external I/O event was received (see #21172). This is not an issue any...
[ { "path": "src/internal/poll/fd_windows_test.go", "patch": "@@ -20,77 +20,6 @@ func init() {\n \tpoll.InitWSA()\n }\n \n-// checkFileIsNotPartOfNetpoll verifies that f is not managed by netpoll.\n-func checkFileIsNotPartOfNetpoll(t *testing.T, f *os.File) {\n-\tt.Helper()\n-\tsc, err := f.SyscallConn()\n-\t...
2025-04-14T09:22:04
vercel/next.js
145d7613b621369afa7ddc0a05ed3ebecda4b624
3be29d88298c12ec313d771a5e7ccbdad55b9b60
fix: update useEffect closure when menu is truly mounted (#81531) Previously we mounted event handlers on the the menu's [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument) to listen for clicks outside the menu. This causes a bug where the ref the useEffect captures is not set yet, a...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -163,8 +163,8 @@ function DevToolsPopover({\n )\n \n // Features to make the menu accessible\n- useFocusTrap(menuRef, triggerRef, isMenuOpen)\n- useClickOutside(menuRef, ...
2025-07-11T21:08:22
rust-lang/rust
fb55b5dcf33c3f134a41851771c3b13710a8a048
13c38730d981289cc7ae4cc109fd7756bf83ee67
diagnostics: fix ICE in closure signature mismatch This fixes the ICE by renaming conflicting arguments in the diagnostic.
[ { "path": "compiler/rustc_trait_selection/src/errors.rs", "patch": "@@ -153,10 +153,10 @@ impl Subdiagnostic for AdjustSignatureBorrow {\n fn add_to_diag<G: EmissionGuarantee>(self, diag: &mut Diag<'_, G>) {\n match self {\n AdjustSignatureBorrow::Borrow { to_borrow } => {\n- ...
2026-02-08T12:20:13
nodejs/node
4dae01ba2c106e2e2f52c5cccb4ab291dbedb165
bc5ebe44f95755e97e60bcab50ea59358d1faee5
deps: fix GN build warning in ncrypto PR-URL: https://github.com/nodejs/node/pull/54222 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "deps/ncrypto/unofficial.gni", "patch": "@@ -14,6 +14,7 @@ template(\"ncrypto_gn_build\") {\n \"-Wno-deprecated-declarations\",\n \"-Wno-pessimizing-move\",\n \"-Wno-shadow\",\n+ \"-Wno-unused-variable\",\n ]\n }\n ", "additions": 1, "deletions": 0, "langua...
2024-08-11T17:54:31
electron/electron
4c89061e0e79ccd8574c058e30d9b694f22ced1b
8fdd7de3d27d159479b653c932feb0950b79738a
docs: fix SerialPort typing (#38544)
[ { "path": "docs/api/structures/serial-port.md", "patch": "@@ -2,9 +2,9 @@\n \n * `portId` string - Unique identifier for the port.\n * `portName` string - Name of the port.\n-* `displayName` string - A string suitable for display to the user for describing this device.\n-* `vendorId` string - Optional USB v...
2023-06-05T06:58:30
facebook/react
faa65778b7c277e0020b8bb1fc172e11a863c0b7
9ddfe614f228d89c8d9807a50009004aa8f014c6
Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/expiration (#27600)
[ { "path": "fixtures/expiration/yarn.lock", "patch": "@@ -230,6 +230,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07...
2023-11-01T19:31:28
golang/go
05ed8a00e07e93fd40cf8269bdf16d6d2b34740d
7b263895f7dbe81ddd7c0fc399e6a9ae6fe2f5bf
internal/runtime/maps: prune tombstones in maps before growing Before growing, if there are lots of tombstones try to remove them. If we can remove enough, we can continue at the given size for a while longer. Fixes #70886 Change-Id: I71e0d873ae118bb35798314ec25e78eaa5340d73 Reviewed-on: https://go-review.googlesour...
[ { "path": "src/internal/runtime/maps/group.go", "patch": "@@ -106,6 +106,12 @@ func bitsetShiftOutLowest(b bitset) bitset {\n \treturn b >> 8\n }\n \n+// count returns the number of bits set in b.\n+func (b bitset) count() int {\n+\t// Note: works for both bitset representations (AMD64 and generic)\n+\tretu...
2025-01-07T05:53:22
vercel/next.js
f024178135f1e4f468644715e138f05b064fe120
48b2976ed268a78249679a82da43750e190943a1
Turbopack: fix `@opentelemetry/api` resolve fallback (#81541) Previously, it tried `[project]/node_modules/@opentelemetry/api` and then fell back to `node_modules/next/dist/compiled/@opentelemetry/api`. But that doesn't work if the dependency is installed in a monorepo subpackage and should have been resolved from ...
[ { "path": "crates/next-core/src/next_edge/context.rs", "patch": "@@ -22,7 +22,7 @@ use crate::{\n mode::NextMode,\n next_config::NextConfig,\n next_font::local::NextFontLocalResolvePlugin,\n- next_import_map::get_next_edge_import_map,\n+ next_import_map::{get_next_edge_and_server_fallback_...
2025-07-11T13:07:28
rust-lang/rust
842bed6f939f74c8c005bc223acb50e22464d108
13c38730d981289cc7ae4cc109fd7756bf83ee67
Parse #[rustc_delayed_bug_from_inside_query]
[ { "path": "compiler/rustc_attr_parsing/src/attributes/test_attrs.rs", "patch": "@@ -190,3 +190,12 @@ impl<S: Stage> SingleAttributeParser<S> for RustcAbiParser {\n Some(AttributeKind::RustcAbi { attr_span: cx.attr_span, kind })\n }\n }\n+\n+pub(crate) struct RustcDelayedBugFromInsideQueryParser;...
2026-02-04T20:32:49
nodejs/node
298ff4fdb1513a944470a09619c5f494d142b3a2
90f257176c064796b0ed25504061c7c7b77b3b82
tty: initialize winSize array with values Assigning to a holey array in the native layer may crash if it has getters that throw. Refs: https://github.com/nodejs/node/issues/54186 PR-URL: https://github.com/nodejs/node/pull/54281 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Joyee Cheung <joyeec9h...
[ { "path": "lib/tty.js", "patch": "@@ -22,7 +22,6 @@\n 'use strict';\n \n const {\n- Array,\n NumberIsInteger,\n ObjectSetPrototypeOf,\n } = primordials;\n@@ -111,7 +110,7 @@ function WriteStream(fd) {\n // Ref: https://github.com/nodejs/node/pull/1771#issuecomment-119351671\n this._handle.setBlocki...
2024-08-11T06:32:13
electron/electron
d818f35ad4ec44c83f21dd3656ef1072e196c34f
9ffffdb6ef202bd93be496b53fdd4156dd3504ce
build: fix doc-only early exit on Appveyor (#38547)
[ { "path": "appveyor-woa.yml", "patch": "@@ -68,9 +68,11 @@ for:\n node script/yarn.js install --frozen-lockfile\n node script/doc-only-change.js --prNumber=$env:APPVEYOR_PULL_REQUEST_NUMBER\n if ($LASTEXITCODE -eq 0) {\n- Write-warning \"Skipping build for doc only c...
2023-06-01T14:40:35
facebook/react
9ddfe614f228d89c8d9807a50009004aa8f014c6
6bfc0e032acc7e5ad6da2a09f3c4f47f3321da2c
Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/packaging/brunch/prod (#27598)
[ { "path": "fixtures/packaging/brunch/prod/yarn.lock", "patch": "@@ -86,6 +86,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee29...
2023-11-01T19:30:25
vercel/next.js
7560398745ed989253920d6f08fba56e11496ca0
8389b9f7f5f9a4c568725e2dceedfbdc5949c675
docs: root layout + opengraph-image + cna-eslit vs next lint bootstrap (#81542) Fixes: https://github.com/vercel/next.js/issues/81529, https://github.com/vercel/next.js/issues/81352 and https://github.com/vercel/next.js/issues/78630
[ { "path": "docs/01-app/01-getting-started/01-installation.mdx", "patch": "@@ -293,15 +293,19 @@ You'll see a prompt like this:\n \n > ? How would you like to configure ESLint?\n >\n-> ❯ Strict (recommended) \n-> Base \n+> ❯ Strict (recommended)\n+> Base\n > Cancel\n \n - **Strict**: Includes Next.js' base...
2025-07-11T11:27:55
golang/go
7b263895f7dbe81ddd7c0fc399e6a9ae6fe2f5bf
3cefe69c5a5ad687f220696d4f8a2fe4d59241dd
database/sql: wake cleaner if maxIdleTime set to less than maxLifetime The existing implementation wouldn't wake the connection cleaner if maxIdleTime was set to a value less than maxLifetime while an existing connection was open - resulting in idle connections not being discarded until after the first maxLifetime had...
[ { "path": "src/database/sql/sql.go", "patch": "@@ -1050,7 +1050,7 @@ func (db *DB) SetConnMaxLifetime(d time.Duration) {\n \t}\n \tdb.mu.Lock()\n \t// Wake cleaner up when lifetime is shortened.\n-\tif d > 0 && d < db.maxLifetime && db.cleanerCh != nil {\n+\tif d > 0 && d < db.shortestIdleTimeLocked() && db...
2023-03-09T11:16:56
rust-lang/rust
81d42146040c4a6b3d252e3dc3ac32e563694796
0db0acd6993cbdf84384b00773d7509df6bc20fb
Remove fluent tests in `rustc_error`
[ { "path": "compiler/rustc_errors/src/lib.rs", "patch": "@@ -83,8 +83,6 @@ pub mod error;\n pub mod json;\n mod lock;\n pub mod markdown;\n-#[cfg(test)]\n-mod tests;\n pub mod timings;\n pub mod translation;\n ", "additions": 0, "deletions": 2, "language": "Rust" }, { "path": "compiler/ru...
2026-02-06T19:09:13
nodejs/node
37f9eca5b522c9ff3214f909d154ba3588a7afff
90d91abbfe32d9ce6606bd8db3cef1ac37e45923
module,win: fix long path resolve PR-URL: https://github.com/nodejs/node/pull/53294 Fixes: https://github.com/nodejs/node/issues/50753 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
[ { "path": "src/node_file.cc", "patch": "@@ -3340,8 +3340,14 @@ void BindingData::LegacyMainResolve(const FunctionCallbackInfo<Value>& args) {\n \n for (int i = 0; i < legacy_main_extensions_with_main_end; i++) {\n file_path = *initial_file_path + std::string(legacy_main_extensions[i]);\n-\n- ...
2024-08-10T14:12:53
facebook/react
3eaa0c3871b63b6542a939d9c0e7040bf42b75b7
00409516371ac536d0ba5a7093699a36f9316070
Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/packaging/brunch/dev (#27606) Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.0.4 to 4.2.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/browserify/browserify-sign/blob/main/CHANGE...
[ { "path": "fixtures/packaging/brunch/dev/yarn.lock", "patch": "@@ -86,6 +86,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294...
2023-11-01T19:20:57
electron/electron
9ffffdb6ef202bd93be496b53fdd4156dd3504ce
c14f7b7d0babba14390da10b4066061fc7da3e25
docs: fix performance tutorial (#38469) * docs: fixed "Analyze runtime performance" link * docs: added missing list item
[ { "path": "docs/tutorial/performance.md", "patch": "@@ -54,7 +54,7 @@ at once, consider the [Chrome Tracing](https://www.chromium.org/developers/how-t\n \n ### Recommended Reading\n \n-* [Get Started With Analyzing Runtime Performance][chrome-devtools-tutorial]\n+* [Analyze runtime performance][chrome-devto...
2023-05-31T19:56:06
rust-lang/rust
953aa57c7503177f494dfb168306503867aa26fc
13c38730d981289cc7ae4cc109fd7756bf83ee67
Fix suggestion on `AutoTraitItems` diagnostic
[ { "path": "compiler/rustc_ast_passes/src/errors.rs", "patch": "@@ -503,7 +503,7 @@ pub(crate) struct AutoTraitItems {\n #[primary_span]\n pub spans: Vec<Span>,\n #[suggestion(\n- \"remove the super traits or lifetime bounds\",\n+ \"remove the associated items\",\n code = \"...
2026-02-08T09:23:31
golang/go
5ab9d9660412be2887ae5adba6198f029bcbb4a9
5715d735590cf545f03b34e58ade83b919e53fba
crypto/tls: fix a testing deadlock that occurs on a TLS protocol error A Go routine was, on an error, returning without sending a message on its signaling channel, so the main program was blocking forever waiting for a message that was never sent. Found while breaking crypto/tls. Change-Id: Id0b3c070a27cabd852f74e86b...
[ { "path": "src/crypto/tls/handshake_server_test.go", "patch": "@@ -236,7 +236,6 @@ func TestRenegotiationExtension(t *testing.T) {\n \t\tn, err := c.Read(buf)\n \t\tif err != nil {\n \t\t\tt.Errorf(\"Server read returned error: %s\", err)\n-\t\t\treturn\n \t\t}\n \t\tc.Close()\n \t\tbufChan <- buf[:n]", ...
2022-06-03T02:22:50
vercel/next.js
a4a754d01cd1dd1f1d1498a2135c382328537dd0
5157472d841b06cf58f5e63b38167256fb01f012
fix(CI): On musl/alpine builds, pin llvm to llvm20, add llvm bin directory to path (#81519) Alpine Edge recently removed `llvm-config` from the PATH: - 3.22: https://pkgs.alpinelinux.org/contents?file=llvm-config&path=&name=&branch=v3.22&repo=&arch=x86_64 - Edge: https://pkgs.alpinelinux.org/contents?file=llvm-config...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -224,16 +224,16 @@ jobs:\n # - zig linker with portable glibc is avoided as it has known issues with static tls + node.js + multi threaded\n # environment.\n docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:sta...
2025-07-11T00:38:49
nodejs/node
30f6c56e03125183c4ece1b5e1e658b74e3ef776
9e6c526f6c4e21b96f999869ceb265fb1891bf15
test: fix timeout not being cleared PR-URL: https://github.com/nodejs/node/pull/54242 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im>
[ { "path": "test/parallel/test-pipe-file-to-http.js", "patch": "@@ -32,11 +32,10 @@ const filename = tmpdir.resolve('big');\n let count = 0;\n \n const server = http.createServer((req, res) => {\n- let timeoutId;\n assert.strictEqual(req.method, 'POST');\n req.pause();\n \n- setTimeout(() => {\n+ cons...
2024-08-09T05:42:10
facebook/react
00409516371ac536d0ba5a7093699a36f9316070
d0fcd36af479c4c8d419d689550768f535493b68
Bump browserify-sign from 4.2.1 to 4.2.2 in /fixtures/dom (#27608) Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.2.1 to 4.2.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/browserify/browserify-sign/blob/main/CHANGELOG.md">browserif...
[ { "path": "fixtures/dom/yarn.lock", "patch": "@@ -1248,11 +1248,21 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:\n resolved \"https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828\"\n integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn...
2023-11-01T19:20:39
electron/electron
c14f7b7d0babba14390da10b4066061fc7da3e25
74b8133a9341eefeddbc3245ad8bd6bed71f547a
refactor: remove unused switches (#38497) * refactor: remove unused declaration of electron::kSHA1Certificate usage removed in 13a1d79 * refactor: remove unused declaration of electron::kSHA1MajorDescription usage removed in 13a1d79 * refactor: remove unused declaration of electron::kSHA1MinorDescription ...
[ { "path": "shell/common/electron_constants.cc", "patch": "@@ -9,22 +9,6 @@ namespace electron {\n const char kBrowserForward[] = \"browser-forward\";\n const char kBrowserBackward[] = \"browser-backward\";\n \n-const char kSHA1Certificate[] = \"SHA-1 Certificate\";\n-const char kSHA1MajorDescription[] =\n- ...
2023-05-31T19:55:21
golang/go
2cb9e7f68f90ea9119fd4172fc61630279d79d67
5413abc44025f281f2a7ea37b3e0043591dbed3e
crypto/cipher: use AEAD.NonceSize to make nonce in the example The existing example uses hard-coded constant to make nonce buffer. Using AEAD.NonceSize makes it a more portable and appropriate example. Fixes: #48372 Change-Id: I7c7a38ed48aff46ca11ef4f5654c778eac13dde6 GitHub-Last-Rev: 03ccbb16df4ca9cbd4a014836aee0f5...
[ { "path": "src/crypto/cipher/example_test.go", "patch": "@@ -29,14 +29,14 @@ func ExampleNewGCM_encrypt() {\n \t\tpanic(err.Error())\n \t}\n \n-\t// Never use more than 2^32 random nonces with a given key because of the risk of a repeat.\n-\tnonce := make([]byte, 12)\n-\tif _, err := io.ReadFull(rand.Reader...
2021-09-14T04:47:41
vercel/next.js
b0641f12e9fefb7e75049c6ab9477ce2d211e471
535ba0676ab5f46a1e6dcc88306914091515f468
[turbopack] Improve internal error message when source map retrieval fails (#81508) Mostly so that I know which source URL slipped through.
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -1411,7 +1411,7 @@ pub async fn get_source_map_rope(\n },\n )\n }\n- _ => bail!(\"Unknown url scheme\"),\n+ _ => bail!(\"Unknown url scheme '{}'\", url.scheme()),\n },\...
2025-07-10T21:21:30
facebook/react
d0fcd36af479c4c8d419d689550768f535493b68
169d3350f005a0ab184746e7eca3548116472a34
Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/attribute-behavior (#27601) Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.0.4 to 4.2.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/browserify/browserify-sign/blob/main/CHANGELO...
[ { "path": "fixtures/attribute-behavior/yarn.lock", "patch": "@@ -242,6 +242,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294...
2023-11-01T19:20:01
nodejs/node
90dea9e3e003945f113aaca09c45f963fe566a47
88bac52b238427a12521e8d22ddb8a53033793ee
doc: warn for windows build bug Refs: https://github.com/nodejs/build/issues/3739 PR-URL: https://github.com/nodejs/node/pull/54217 Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -644,6 +644,8 @@ Optional requirements to build the MSI installer package:\n Optional requirements for compiling for Windows on ARM (ARM64):\n \n * Visual Studio 17.6.0 or newer\n+ > **Note:** There is [a bug](https://github.com/nodejs/build/issues/3739) in `17.10.x`\n...
2024-08-08T05:58:53
rust-lang/rust
7c95f57bc95c36f44a50fffb07cb2b933184ee2b
b303ab4c86361b9e3d7c803237f0b8ef5c7804d7
fix outdated doc comments
[ { "path": "book/src/development/type_checking.md", "patch": "@@ -154,7 +154,7 @@ in this chapter:\n [expr_ty]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.TypeckResults.html#method.expr_ty\n [node_type]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.Typeck...
2026-02-08T07:25:51
electron/electron
57147d1b8d1352e8f49d6086b9957869d0d1e75a
67f273a6d69eb43fda8a520d5c9bba375a6bcdab
fix: `navigator.connection` not working as intended (#38491) * fix: navigator.connection not working as intended * chore: make network quality methods private
[ { "path": "shell/browser/browser_process_impl.cc", "patch": "@@ -25,6 +25,8 @@\n #include \"components/proxy_config/proxy_config_dictionary.h\"\n #include \"components/proxy_config/proxy_config_pref_names.h\"\n #include \"content/public/browser/child_process_security_policy.h\"\n+#include \"content/public/b...
2023-05-31T15:06:25
golang/go
5413abc44025f281f2a7ea37b3e0043591dbed3e
786e62bcd3f03d73ddf0c999780ffe6f1a0319ea
net/http: set Request.TLS when net.Conn implements ConnectionState Fixes #56104 Change-Id: I8fbbb00379e51323e2782144070cbcad650eb6f1 GitHub-Last-Rev: 62d7a8064e4f2173f0d8e02ed91a7e8de7f13fca GitHub-Pull-Request: golang/go#56110 Reviewed-on: https://go-review.googlesource.com/c/go/+/440795 Reviewed-by: Damien Neil <dn...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -1645,6 +1645,53 @@ func testTLSServer(t *testing.T, mode testMode) {\n \t}\n }\n \n+type fakeConnectionStateConn struct {\n+\tnet.Conn\n+}\n+\n+func (fcsc *fakeConnectionStateConn) ConnectionState() tls.ConnectionState {\n+\treturn tls.ConnectionState{\n...
2022-11-02T01:19:16
vercel/next.js
bdcb114ddbb7207108d21f142727465d134a2f9e
17a1fd8f4caa56e31ed4541068f19ea4963f3036
Turbopack: fix export-all-as with name collision (#81510) `EcmascriptModulePartReference` is a pretty counterintuitive reference. The `part` declares which module should be synthesised on the other side. That doesn't have anything to do with which exports are actually being imported by reference. This only triggere...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/side_effect_optimization/reference.rs", "patch": "@@ -173,25 +173,17 @@ impl EcmascriptModulePartReference {\n ));\n }\n \n- if merged_index.is_some() && matches!(*this.export_usage.await?, ExportUsage::Evaluation) {\n+ l...
2025-07-10T19:31:06
facebook/react
169d3350f005a0ab184746e7eca3548116472a34
a675e5751b969750fc9ec4beeb43a72750644ac3
Bump browserify-sign from 4.2.1 to 4.2.2 in /fixtures/ssr2 (#27616) Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.2.1 to 4.2.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/browserify/browserify-sign/blob/main/CHANGELOG.md">browseri...
[ { "path": "fixtures/ssr2/package-lock.json", "patch": "@@ -17,8 +17,8 @@\n \"concurrently\": \"^5.3.0\",\n \"express\": \"^4.17.1\",\n \"nodemon\": \"^2.0.6\",\n- \"react\": \"18.0.0-alpha-7ec4c5597\",\n- \"react-dom\": \"18.0.0-alpha-7ec4c5597\",\n+ \"react\": \...
2023-11-01T19:19:34
nodejs/node
88bac52b238427a12521e8d22ddb8a53033793ee
2bcf9995d28758584f34382bc402995f268d1b64
test_runner: fix erroneous diagnostic warning when only: false Co-author: rstagi <r.stagi96@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54116 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -409,9 +409,9 @@ class Test extends AsyncResource {\n \n this.concurrency = parent.concurrency;\n this.nesting = nesting;\n- this.only = only ?? !parent.runOnlySubtests;\n+ this.only = only ?? (parent.only && !parent.runOnlySub...
2024-08-08T05:50:32
electron/electron
40e724e5ddd92879a73fd3eb53af2b128947e9d6
13f9e2db40df5537c13ee72a92fad13a0c09b730
fix: DCHECK minimizing parent window with non-modal child (#38460)
[ { "path": "shell/browser/native_window.h", "patch": "@@ -149,6 +149,9 @@ class NativeWindow : public base::SupportsUserData,\n virtual std::string GetAlwaysOnTopLevel() = 0;\n virtual void SetActive(bool is_key) = 0;\n virtual bool IsActive() const = 0;\n+ virtual void RemoveChildWindow(NativeWindow*...
2023-05-31T09:57:44
golang/go
9d7de0483861b3f882f79797939566fe8f6f9e24
2c9689ab0e7ebfbcd875ac3c54740a8295c43d42
runtime: fix 9-arg syscall on darwin/amd64 The last 3 arguments need to be passed on the stack, not registers. Fixes #71302 Change-Id: Ib1155ad1a805957fad3d9594c93981a558755591 Reviewed-on: https://go-review.googlesource.com/c/go/+/665435 Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <go...
[ { "path": "src/runtime/sys_darwin_amd64.s", "patch": "@@ -745,23 +745,26 @@ ok:\n //\n // syscall9 expects a 32-bit result and tests for 32-bit -1\n // to decide there was an error.\n-TEXT runtime·syscall9(SB),NOSPLIT,$16\n+TEXT runtime·syscall9(SB),NOSPLIT,$32\n \tMOVQ\t(0*8)(DI), R13// fn\n \tMOVQ\t(2*8)(...
2025-04-14T16:52:31
vercel/next.js
17a1fd8f4caa56e31ed4541068f19ea4963f3036
f219487dcdde38b9263e797d452c65f48ee65d39
Turbopack: improve debugging features (#81415) ### What? * add no_fast_stale feature * nicer hanging messages * print details on strongly consistent hanging (prints which tasks are not completing and the chain to them)
[ { "path": "turbopack/crates/turbo-tasks-backend/Cargo.toml", "patch": "@@ -15,6 +15,7 @@ workspace = true\n [features]\n default = []\n print_cache_item_size = []\n+no_fast_stale = []\n verify_serialization = []\n verify_aggregation_graph = []\n verify_immutable = []", "additions": 1, "deletions": 0...
2025-07-10T18:53:23
nodejs/node
2bcf9995d28758584f34382bc402995f268d1b64
e9deab9915f70c3e7e6baf5164a419fea0bffbdc
src: skip inspector wait in internal workers Internal workers are essential to load user scripts and bootstrapped with internal entrypoints. They should not be waiting for inspectors even when `--inspect-brk` and `--inspect-wait` were specified, and avoid blocking main thread to bootstrap. IsolateData can be created ...
[ { "path": "src/api/environment.cc", "patch": "@@ -371,9 +371,8 @@ IsolateData* CreateIsolateData(\n MultiIsolatePlatform* platform,\n ArrayBufferAllocator* allocator,\n const EmbedderSnapshotData* embedder_snapshot_data) {\n- const SnapshotData* snapshot_data =\n- SnapshotData::FromEmbedde...
2024-08-07T21:56:59
electron/electron
56138d879e57d5d5fce55ecbe3f8d3a8ed08e7f8
ddcec84ace5f9f3d4bf705c5bd963abc415160d3
fix: Windows FrameView always appearing inactive (#38468)
[ { "path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "patch": "@@ -37,14 +37,6 @@ bool ElectronDesktopWindowTreeHostWin::PreHandleMSG(UINT message,\n return native_window_view_->PreHandleMSG(message, w_param, l_param, result);\n }\n \n-bool ElectronDesktopWindowTreeHostWin::ShouldPai...
2023-05-28T22:39:13
facebook/react
a675e5751b969750fc9ec4beeb43a72750644ac3
2bd946956d9835652e64d796c9f0942107418f19
Bump browserify-sign from 4.2.1 to 4.2.2 in /fixtures/concurrent/time-slicing (#27615) Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.2.1 to 4.2.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/browserify/browserify-sign/blob/main/CHA...
[ { "path": "fixtures/concurrent/time-slicing/yarn.lock", "patch": "@@ -1219,11 +1219,16 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:\n resolved \"https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88\"\n integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7...
2023-11-01T19:19:28
golang/go
2c9689ab0e7ebfbcd875ac3c54740a8295c43d42
30aca0674e8c0839101c7d7730ac242fcb589287
cmd/compile/internal/escape: add hash for bisecting stack allocation of variable-sized makeslice CL 653856 enabled stack allocation of variable-sized makeslice results. This CL adds debug hashing of that change, plus a debug flag to control the byte threshold used. The debug hashing machinery means we also now have ...
[ { "path": "src/cmd/compile/internal/base/debug.go", "patch": "@@ -72,6 +72,8 @@ type DebugFlags struct {\n \tPGOInlineBudget int `help:\"inline budget for hot functions\" concurrent:\"ok\"`\n \tPGODevirtualize int `help:\"enable profile-guided devirtualization; 0 to disable, 1 to enable in...
2025-04-08T11:35:11
vercel/next.js
f219487dcdde38b9263e797d452c65f48ee65d39
7c6ac5fd191fc602de348846fbe12798c860bcea
feat(test): introduce cache components testing infrastructure (#81394) ### What? Introduces a testing infrastructure to validate Next.js behavior with the experimental Cache Components feature (`dynamicIO`) enabled. This PR adds dedicated CI jobs and configuration to run a subset of existing tests with Cache Componen...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -871,6 +871,75 @@ jobs:\n stepName: 'test-ppr-prod-${{ matrix.group }}'\n secrets: inherit\n \n+ # TODO: remove these jobs once Cache Components is the default\n+ # Manifest generated via: https://gist.github.com/wyattjoh/2ceaebd82a5...
2025-07-10T17:48:57
nodejs/node
7327e44a05506e108b075ff15dc0ee50a6751eec
e0634f58aba6a1634fe03107d5be849fd008cc02
doc: sort versions to fix the linter error PR-URL: https://github.com/nodejs/node/pull/54229 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "doc/api/test.md", "patch": "@@ -3214,8 +3214,8 @@ test('top level test', (t) => {\n \n <!-- YAML\n added:\n- - v20.16.0\n - v22.6.0\n+ - v20.16.0\n -->\n \n The absolute path of the test file that created the current test. If a test file", "additions": 1, "deletions": 1, "language...
2024-08-06T21:56:00
facebook/react
2bd946956d9835652e64d796c9f0942107418f19
a79b55df7468f07724da2c81ef1280c65ea6bc76
Bump browserify-sign from 4.2.1 to 4.2.2 in /fixtures/fizz (#27614) Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.2.1 to 4.2.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/browserify/browserify-sign/blob/main/CHANGELOG.md">browseri...
[ { "path": "fixtures/fizz/yarn.lock", "patch": "@@ -1476,11 +1476,16 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:\n resolved \"https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88\"\n integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HC...
2023-11-01T19:19:22
electron/electron
ddcec84ace5f9f3d4bf705c5bd963abc415160d3
185180a8e24c70ace61b8e690f55ee2aea4ddc56
chore: bump chromium to 116.0.5791.0 (main) (#38448) * chore: bump chromium in DEPS to 116.0.5791.0 * 4504298: Relax checks in BlobDataBuilder::AppendBlob. https://chromium-review.googlesource.com/c/chromium/src/+/4504298 * chore: fixup patch indices --------- Co-authored-by: electron-roller[bot] <84116...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '115.0.5790.0',\n+ '116.0.5791.0',\n 'node_version':\n 'v18.16.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-05-25T14:10:08
golang/go
30aca0674e8c0839101c7d7730ac242fcb589287
f4803ddc2c8d082e07227c72944ffd9d7c45ab64
strings: duplicate alignment test from bytes package Fixes #26129 Change-Id: If98f85b458990dbff7ecfeaea6c81699dafa66ef Reviewed-on: https://go-review.googlesource.com/c/go/+/665275 Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@golang.org> Revie...
[ { "path": "src/strings/compare_test.go", "patch": "@@ -36,9 +36,13 @@ var compareTests = []struct {\n \n func TestCompare(t *testing.T) {\n \tfor _, tt := range compareTests {\n-\t\tcmp := Compare(tt.a, tt.b)\n-\t\tif cmp != tt.i {\n-\t\t\tt.Errorf(`Compare(%q, %q) = %v`, tt.a, tt.b, cmp)\n+\t\tnumShifts :=...
2025-04-13T14:21:52
vercel/next.js
094253c14c136164212eca856b52b1b218b91a94
fceb19f9b470980ac7384fde07b8f3cdd0201a73
docs: add missing switcher (#81489) Fixing a couple of code snippets annoyances
[ { "path": "docs/01-app/01-getting-started/06-partial-prerendering.mdx", "patch": "@@ -134,15 +134,15 @@ const nextConfig = {\n \n The `'incremental'` value allows you to adopt PPR for specific routes:\n \n-```tsx filename=\"/app/dashboard/layout.tsx\"\n+```tsx filename=\"/app/dashboard/layout.tsx\" switcher...
2025-07-10T09:18:22
nodejs/node
78150f3e9ccf9c090a42497a3d556c8edebf2be4
e2c62203ccd44bbc22bf7f1945fa39b54a5fac7f
lib: fix unhandled errors in webstream adapters WebStream's Readable controller does not tolerate `.close()` being called after an `error`. However, when wrapping a Node's Readable stream it is possible that the sequence of events leads to `finished()`'s callback being invoked after such `error`. In order to handle t...
[ { "path": "lib/internal/webstreams/adapters.js", "patch": "@@ -459,6 +459,7 @@ function newReadableStreamFromStreamReadable(streamReadable, options = kEmptyObj\n const strategy = evaluateStrategyOrFallback(options?.strategy);\n \n let controller;\n+ let wasCanceled = false;\n \n function onData(chunk...
2024-08-06T18:34:35
facebook/react
a79b55df7468f07724da2c81ef1280c65ea6bc76
c988756f95e0316a4f913227e108653f88574b2b
Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/packaging/browserify/prod (#27599) Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.0.4 to 4.2.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/browserify/browserify-sign/blob/main/C...
[ { "path": "fixtures/packaging/browserify/prod/yarn.lock", "patch": "@@ -21,6 +21,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2...
2023-11-01T19:19:07
electron/electron
82af000a371eb74cddc16ed4ef025b7481c54c50
1c075e5ea0416d6f0a030d42350c7be91e389a5c
chore: cleanup eslint suppressions (#38417) * chore: cleanup eslint suppressions * address feedback * revert script/lib/azput.js * revert spec/fixtures/apps/remote-control/main.js * address feedback * revert typings/internal-ambient.d.ts
[ { "path": "lib/asar/fs-wrapper.ts", "patch": "@@ -574,7 +574,6 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n };\n \n const { readFile: readFilePromise } = fs.promises;\n- // eslint-disable-next-line @typescript-eslint/no-unused-vars\n fs.promises.readFile = function (pathArgument:...
2023-05-25T01:09:17
golang/go
f4803ddc2c8d082e07227c72944ffd9d7c45ab64
2869d55366a55d6a29a166523ac2383d0b2291df
math/big: fix loong64 assembly for vet Vet is failing on this code because some arguments of mulAddVWW got renamed in the go decl (CL 664895) but not the assembly accessors. Looks like the assembly got written before that CL but checked in after that CL. Change-Id: I270e8db5f8327aa2029c21a126fab1231a3506a1 Reviewed-...
[ { "path": "src/math/big/arith_loong64.s", "patch": "@@ -98,19 +98,19 @@ TEXT ·lshVU(SB),NOSPLIT,$0\n TEXT ·rshVU(SB),NOSPLIT,$0\n \tJMP ·rshVU_g(SB)\n \n-// func mulAddVWW(z, x []Word, y, r Word) (c Word)\n+// func mulAddVWW(z, x []Word, m, a Word) (c Word)\n TEXT ·mulAddVWW(SB),NOSPLIT,$0\n \t// input:\n \...
2025-04-15T16:36:06
vercel/next.js
c278c8792f78daf2fe6c18d985f1e82ffdce93a8
04f77423296506747f94eab8b62c8e93c667c6f5
Turbopack: make invalidation from chunking context more granular (#81457) ### What? More granular invalidation to improve incremental builds with Skew Protections (modifies chunking context as it includes `chunk_suffix_path`).
[ { "path": "turbopack/crates/turbopack-browser/src/chunking_context.rs", "patch": "@@ -282,36 +282,6 @@ impl BrowserChunkingContext {\n }\n }\n \n-impl BrowserChunkingContext {\n- /// Returns the kind of runtime to include in output chunks.\n- ///\n- /// This is defined directly on `BrowserChunk...
2025-07-10T06:47:41
rust-lang/rust
5265ee063791eda960bcb3924f85a18184e2688b
0bf2d005fdf653d61c8bb0a447679afa494e3972
fix: refactored to use directives instead of `CHECK-DAG`
[ { "path": "src/tools/compiletest/src/directives/directive_names.rs", "patch": "@@ -218,6 +218,7 @@ pub(crate) const KNOWN_DIRECTIVE_NAMES: &[&str] = &[\n \"only-eabihf\",\n \"only-elf\",\n \"only-emscripten\",\n+ \"only-endian-big\",\n \"only-gnu\",\n \"only-i686-pc-windows-gnu\",\n ...
2026-02-08T04:53:25
facebook/react
c988756f95e0316a4f913227e108653f88574b2b
d947c2f1100dfd006fd91c6e9ed84d42ca7ab088
Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/packaging/browserify/dev (#27597) Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.0.4 to 4.2.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/browserify/browserify-sign/blob/main/CH...
[ { "path": "fixtures/packaging/browserify/dev/yarn.lock", "patch": "@@ -21,6 +21,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2e...
2023-11-01T19:18:54
golang/go
fcd73b0ac307c2a639bd28939b0f5ea4b6bb3c6c
79b809afb325ae266497e21597f126a3e98a1ef7
cmd/compile/internal/importer: correct a matching error Change-Id: I2499d6ef1df0cc6bf0be8903ce64c03e1f296d19 GitHub-Last-Rev: 1f759d89be7b40c7fe72b920fc004de3fed8d057 GitHub-Pull-Request: golang/go#73064 Reviewed-on: https://go-review.googlesource.com/c/go/+/660978 Auto-Submit: Robert Griesemer <gri@google.com> Review...
[ { "path": "src/cmd/compile/internal/importer/gcimporter_test.go", "patch": "@@ -164,7 +164,7 @@ func TestVersionHandling(t *testing.T) {\n \t\t_, err := Import(make(map[string]*types2.Package), pkgpath, dir, nil)\n \t\tif err != nil {\n \t\t\t// ok to fail if it fails with a 'not the start of an archive fil...
2025-03-27T04:21:01
electron/electron
c4c17d75346c7187ae2b286c3ad7cd2d6d15e6ce
a043a60b89deda3b6342f08f9ad6b3de9d01a950
build: fix build with "enable_pdf_viewer=false" (#38421) * build: fix build with "enable_pdf_viewer=false" * fixup! build: fix build with "enable_pdf_viewer=false"
[ { "path": "BUILD.gn", "patch": "@@ -773,6 +773,8 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/browser/electron_pdf_web_contents_helper_client.cc\",\n \"shell/browser/electron_pdf_web_contents_helper_client.h\",\n+ \"shell/browser/extensions/api/pdf_viewer_private/pdf_viewe...
2023-05-24T18:37:07
vercel/next.js
04f77423296506747f94eab8b62c8e93c667c6f5
45c48f2944a049770659f47e4abdaef04d36b797
docs: PPR requires canary (#81294) Fixes: https://github.com/vercel/next.js/issues/81292
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/ppr.mdx", "patch": "@@ -1,7 +1,7 @@\n ---\n title: ppr\n description: Learn how to enable Partial Prerendering in Next.js.\n-version: experimental\n+version: canary\n related:\n title: Learn more about Partial Prerendering\n links:", ...
2025-07-10T06:26:37
facebook/react
d947c2f1100dfd006fd91c6e9ed84d42ca7ab088
77c4ac2ce88736bbdfe0b29008b5df931c2beb1e
Allow `useEffect(fn, undefined)` in `react-hooks/exhaustive-deps`. (#27525) ## Summary There is a bug in the `react-hooks/exhaustive-deps` rule that forbids the dependencies argument from being `undefined`. It triggers the error that the dependency list is not an array literal. This makes sense in pre ES5 strict...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -1452,6 +1452,15 @@ const tests = {\n }\n `,\n },\n+ {\n+ code: normalizeIndent`\n+ function MyComponent() {\n+ useEffect(() => {\n+ console.log('banan...
2023-11-01T19:05:55
golang/go
79b809afb325ae266497e21597f126a3e98a1ef7
396a48bea6f2dc07ef103da298eec05cb6167892
os: handle trailing slashes in os.RemoveDir on Windows CL 661575 inadvertently caused os.RemoveDir on Windows to fail when given a path with a trailing / or \, due to the splitPath function not correctly stripping trailing separators. Fixes #73317 Change-Id: I21977b94bb08ff1e563de6f5f16a4bdf5024a15e Reviewed-on: htt...
[ { "path": "src/os/export_windows_test.go", "patch": "@@ -11,4 +11,5 @@ var (\n \tNewConsoleFile = newConsoleFile\n \tCommandLineToArgv = commandLineToArgv\n \tAllowReadDirFileID = &allowReadDirFileID\n+\tSplitPath = splitPath\n )", "additions": 1, "deletions": 0, "language": "Go" ...
2025-04-10T20:58:17
rust-lang/rust
0bf2d005fdf653d61c8bb0a447679afa494e3972
08a4ce529f4ea17ad1c0fa2e39ca1f5e7cd047b6
fix: updated slice tests to pass for big endian hosts
[ { "path": "tests/codegen-llvm/issues/multiple-option-or-permutations.rs", "patch": "@@ -70,9 +70,9 @@ pub fn if_some_u8(opta: Option<u8>, optb: Option<u8>) -> Option<u8> {\n #[no_mangle]\n pub fn or_match_slice_u8(opta: Option<[u8; 1]>, optb: Option<[u8; 1]>) -> Option<[u8; 1]> {\n // CHECK: start:\n- ...
2026-01-28T12:12:00