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
vercel/next.js
28e072705d8c49b6c370b9c847b88a6b1291d33e
2775ddf500eb5e527ebbd6973bff4502a049fc16
docs: Use phosphor icons import perf optimization (#80811) Fixes: https://github.com/vercel/next.js/issues/80800 `react-icons` only supports the pattern we show through `react-icons/all-files`, which hasn't been updated in the past 5 years. `react-icons` does group icons by sets, so the recommendation about sticking ...
[ { "path": "docs/01-app/02-guides/local-development.mdx", "patch": "@@ -37,19 +37,20 @@ npm run dev --turbopack\n \n The way you import code can greatly affect compilation and bundling time. Learn more about [optimizing package bundling](/docs/app/guides/package-bundling) and explore tools like [Dependency C...
2025-06-26T14:27:31
electron/electron
3138acc3774709354067e57062e15f4cc14ec442
beed240454b940f34dd6b607a66c8063c2db1106
chore: remove redundant Node.js patch (#37279) * chore: fix patch for other patch * chore: update patches --------- Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
[ { "path": "patches/node/.patches", "patch": "@@ -25,7 +25,6 @@ build_ensure_native_module_compilation_fails_if_not_using_a_new.patch\n fix_override_createjob_in_node_platform.patch\n v8_api_advance_api_deprecation.patch\n fixup_for_error_declaration_shadows_a_local_variable.patch\n-fixup_for_wc_98-compat-ex...
2023-02-16T14:18:47
facebook/react
723b616c6778fa46fb817e2e4e000fdc7fd1b46d
ec27708024d134ee13fbd11bfe4043b4cdda148b
enablePreserveMemo treats memo deps as frozen See discussion on #2448 for full context. In the new `@enablePreserveExistingMemoizationGuarantees` mode, the goal is to preserve the existing referential equality guarantees from the original code. #2448 lays the groundwork by explicitly marking the _output_ of each u...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/PrintHIR.ts", "patch": "@@ -494,6 +494,8 @@ export function printInstructionValue(instrValue: ReactiveValue): string {\n }\n case \"ObjectMethod\":\n case \"FunctionExpression\": {\n+ const kind =\n+ instrValue.kind === \...
2023-12-15T21:47:22
nodejs/node
78a326e2eb236874c45a7937d51e5d3ab3c91a3e
88d39524b1365909913cf74f8e1a3d6607ce271c
stream: fix memory usage regression in writable Setting writecb and afterWriteTickInfo to null did not clear the value in the state object. Amends 35ec93115d (stream: writable state bitmap). Fixes #52228. PR-URL: https://github.com/nodejs/node/pull/53188 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Review...
[ { "path": "lib/internal/streams/writable.js", "patch": "@@ -252,8 +252,8 @@ ObjectDefineProperties(WritableState.prototype, {\n enumerable: false,\n get() { return (this[kState] & kWriteCb) !== 0 ? this[kWriteCbValue] : nop; },\n set(value) {\n+ this[kWriteCbValue] = value;\n if (valu...
2024-06-02T00:35:36
facebook/react
fc3604301983d8adcd1b5c4b8dce4ece48d4f615
873a286029b86a9696b4f4fae9e465e8ace6d44f
Fixture for pruning unmemoized nonreactive deps Adds a fixture for our existing behavior that reactive scope dependencies exclude values which are non-reactive. The idea is that regardless of whether the value may actually get recreated over time or not, a "nonreactive" value cannot semantically change and therefo...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/unmemoized-nonreactive-dependency-is-pruned-as-dependency.expect.md", "patch": "@@ -0,0 +1,55 @@\n+\n+## Input\n+\n+```javascript\n+import { mutate, useNoAlias } from \"shared-runtime\";\n+\n+function Component(props) {\n...
2023-12-14T20:05:25
vercel/next.js
8ba3a99a10c4b80c33f3cdaa015f3273b899c643
ef1e4ba8381550dac6e53bc7e1e07e339e19c629
[turbopack] Add user friendly names to trace labels (#80388) # Enhance Layer Names with User-Friendly Descriptions This PR improves the developer experience by enhancing layer names in Turbopack with user-friendly descriptions. Instead of just using internal identifiers like "app-client" or "app-rsc", the PR adds des...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -57,7 +57,7 @@ use turbopack_core::{\n availability_info::AvailabilityInfo,\n },\n file_source::FileSource,\n- ident::AssetIdent,\n+ ident::{AssetIdent, Layer},\n module::Module,\n module_graph::{\n GraphEntries, Modu...
2025-06-26T07:10:04
electron/electron
fe7c535a3f8b3f699391e642e3121f882f4437b1
8eee4f2df1982ae52f1ed1a7ca3e2183ba701c4f
chore: add logging for debugging release json (#37270) * chore: add debug logging for JSON * chore: better logging
[ { "path": "script/release/uploaders/upload.py", "patch": "@@ -384,6 +384,9 @@ def get_release(version):\n script_path = os.path.join(\n ELECTRON_DIR, 'script', 'release', 'find-github-release.js')\n release_info = execute(['node', script_path, version])\n+ if is_verbose_mode():\n+ print('Release...
2023-02-14T21:03:50
nodejs/node
00a86fe76fed0b0cc4c0786ae86754f16da18afa
88d0701e57149f70708237a0b22556e330c9e82c
fs: fix cp dir/non-dir mismatch error messages The error messages for `ERR_FS_CP_DIR_TO_NON_DIR` and `ERR_FS_CP_NON_DIR_TO_DIR` were the inverse of the copy direction actually performed. Refs: https://github.com/nodejs/node/issues/44598#issuecomment-1562522423 PR-URL: https://github.com/nodejs/node/pull/53150 Reviewe...
[ { "path": "lib/internal/errors.js", "patch": "@@ -1204,12 +1204,12 @@ E('ERR_FEATURE_UNAVAILABLE_ON_PLATFORM',\n ', which is being used to run Node.js',\n TypeError);\n E('ERR_FS_CP_DIR_TO_NON_DIR',\n- 'Cannot overwrite directory with non-directory', SystemError);\n+ 'Cannot overwrite non-directory wi...
2024-05-31T22:12:16
golang/go
73fea035bf1e4e68ef14995a389d4fd8df5c6a34
a588c6fba6d411245d72b9e071eedc3b4d00a0c8
cmd/go: allow symlinks of non-directory files in embed We previously disallowed all non-regular files being embedded. This CL relaxes the restriction a little: if the GODEBUG embedfollowsymlinks=1 is set, we allow the leaf files being embedded (not the directories containing them) to be symlinks. The files pointed to ...
[ { "path": "doc/godebug.md", "patch": "@@ -164,6 +164,11 @@ reverts to the pre-Go 1.25 behavior. This setting is fixed at program startup\n time, and can't be modified by changing the `GODEBUG` environment variable\n after the program starts.\n \n+Go 1.25 added a new `embedfollowsymlinks` setting that contro...
2025-01-16T20:44:55
rust-lang/rust
8e26944f625951fd5611fc53e0204d20a2c8a111
55407b8cdb1457c62e0c852f5b53a9cf63ec4e1b
Update wasi-sdk used in CI/releases This is similar to prior updates such as 149037 in that this is just updating a URL. This update though has some technical updates accompanying it as well, however: * The `wasm32-wasip2` target no longer uses APIs from WASIp1 on this target, even for startup. This means that the ...
[ { "path": "library/std/src/sys/fs/unix.rs", "patch": "@@ -2132,9 +2132,6 @@ pub fn link(original: &CStr, link: &CStr) -> io::Result<()> {\n // Android has `linkat` on newer versions, but we happen to know\n // `link` always has the correct behavior, so it's here as well.\n ...
2026-02-02T18:29:32
facebook/react
a6e65e83e8b0fb8407509e994a85422a9d3f933d
afbaa8d3caf2bd2be72b5c5dbe2280808b4c4b20
Prefer reporting conditional hook violations over "hook as value" violations After running the latest hook validation internally, I found some cases where there was a violation but the error message was not ideal. For example on this code: ```javascript usePossiblyNullHook?.(); ``` We reported a "hooks can'...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateHooksUsage.ts", "patch": "@@ -17,6 +17,7 @@ import {\n HIRFunction,\n IdentifierId,\n Place,\n+ SourceLocation,\n getHookKind,\n } from \"../HIR/HIR\";\n import {\n@@ -109,32 +110,47 @@ export function validateHooksUsage(...
2023-12-13T00:42:51
electron/electron
8eee4f2df1982ae52f1ed1a7ca3e2183ba701c4f
4d6f230d2108c19ac862577e83443a2eec53a183
fix: `BrowserView` crash when 'beforeunload' prevented (#37205) fix: crash when beforeunload prevented
[ { "path": "shell/browser/api/electron_api_browser_window.cc", "patch": "@@ -112,7 +112,6 @@ BrowserWindow::~BrowserWindow() {\n api_web_contents_->RemoveObserver(this);\n // Destroy the WebContents.\n OnCloseContents();\n- api_web_contents_->Destroy();\n }\n }\n \n@@ -140,6 +139,7 @@ void B...
2023-02-14T17:40:37
vercel/next.js
2a81cef7e76be593bdcf6deeef586ed860fdfcad
89a1a2b523ff52654b5d4275a046629d9c5c2403
test(codspeed): Make codspeed concurrent on `canary` branch (#80928) ### What? Apply same changes as https://github.com/swc-project/swc/pull/10711 to next.js/turbopack. We now run benchmark on `canary` branch in parallel. ### Why? `codspeed` says `New benchmark` quite frequently, but it's not. This PR should fix it
[ { "path": ".github/workflows/turbopack-benchmark.yml", "patch": "@@ -13,7 +13,8 @@ on:\n - '**/Cargo.lock'\n \n concurrency:\n- group: ${{ github.workflow }}-${{ github.sha }}\n+ # Limit concurrent runs to 1 per PR, but allow concurrent runs on canary branch\n+ group: ${{ github.event_name == 'pull...
2025-06-26T06:14:05
rust-lang/rust
93a1a8064d2385633c77a66cf6c2bdade0120a63
f729340aab3443e54f9a66c7294b8295507c67d3
Move some `impl`s. `HashStableContext` impls should be in `hcx.rs`, and `HashStable` impls should be in `impls_syntax.rs`. This commit moves a few that are in the wrong file.
[ { "path": "compiler/rustc_query_system/src/ich/hcx.rs", "patch": "@@ -1,5 +1,4 @@\n-use rustc_ast as ast;\n-use rustc_data_structures::stable_hasher::{HashStable, HashingControls, StableHasher};\n+use rustc_data_structures::stable_hasher::HashingControls;\n use rustc_hir::def_id::{DefId, LocalDefId};\n use ...
2026-02-04T04:10:42
golang/go
a588c6fba6d411245d72b9e071eedc3b4d00a0c8
ae4c13afc51d81e9aefdfb101e895bc7318c05cd
go/types, types2: report better error messages for make calls Change-Id: I4593aeb4cad1e2c3f4705ed5249ac0bad910162f Reviewed-on: https://go-review.googlesource.com/c/go/+/655518 Auto-Submit: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Revie...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -518,18 +518,30 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t\treturn\n \t\t}\n \n+\t\tu, err := commonUnder(T, func(_, u Type) *typeError {\n+\t\t\tswitch u.(type) {\n+\t\t\tcase *Slice, *Map,...
2025-03-08T00:00:53
nodejs/node
74dff83fad3918b20f219c03259088e55930c226
f88386561c72eb4d855822bf7c102114e23cf6a8
tools: move webcrypto into no-restricted-properties Since eslint fixed https://github.com/eslint/eslint/issues/16412 and we are on eslint v8.57.0 so that we can take advantage of no-restricted-properties rule for webcrypto. PR-URL: https://github.com/nodejs/node/pull/53023 Reviewed-By: Antoine du Hamel <duhamelantoin...
[ { "path": "eslint.config.mjs", "patch": "@@ -9,7 +9,6 @@ import toolsConfig from './tools/eslint.config_partial.mjs';\n import {\n noRestrictedSyntaxCommonAll,\n noRestrictedSyntaxCommonLib,\n- noRestrictedSyntaxCommonTest,\n requireEslintTool,\n resolveEslintTool,\n } from './tools/eslint.config_u...
2024-05-30T20:55:02
facebook/react
afbaa8d3caf2bd2be72b5c5dbe2280808b4c4b20
06376b906d173ee03e49bbbb6277393b9015cf0a
Add a reason to ValueKind for better error messages (#2447)
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/HIR.ts", "patch": "@@ -942,6 +942,33 @@ export type Identifier = {\n type: Type;\n };\n \n+export type AbstractValue = {\n+ kind: ValueKind;\n+ reason: ReadonlySet<ValueReason>;\n+};\n+\n+/**\n+ * The reason for the kind of a value.\n+ */\n+...
2023-12-15T15:20:14
electron/electron
4d6f230d2108c19ac862577e83443a2eec53a183
889859df5bb74e6c18b1c2f21c28ade80a366611
build: re-bake node v18.12.1 image for asset upload (#37254) * debug: peek node version * build: force uninstall/reinstall 18.12.1 * build: update image, re-comment out deps * build: remove nodejs-lts uninstall, node debug line
[ { "path": "appveyor.yml", "patch": "@@ -29,7 +29,7 @@\n \n version: 1.0.{build}\n build_cloud: electronhq-16-core\n-image: e-110.0.5451.0\n+image: e-111.0.5560.0-node18\n environment:\n GIT_CACHE_PATH: C:\\Users\\appveyor\\libcc_cache\n ELECTRON_OUT_DIR: Default", "additions": 1, "deletions": 1,...
2023-02-14T15:44:39
vercel/next.js
cc3140a78b528e4fd8a075de299db84bea5c671b
cfdd2494f5b629c01b206511f98be4fb0382b9f9
[devtools] fix style of issue count label (#80854) If the issue count goes over 10, the label looks weird. ![CleanShot 2025-06-24 at 20 27 09@2x](https://github.com/user-attachments/assets/5e5ea175-2567-410b-84c1-98587990cd0f)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel.tsx", "patch": "@@ -351,7 +351,9 @@ export const DEVTOOLS_PANEL_STYLES = css`\n }\n \n [data-nextjs-devtools-panel-header-tab-issues-badge] {\n- display: inline-block;\n+ display: flex;\n+ align-item...
2025-06-26T05:20:03
rust-lang/rust
cd3c9329fb57ca3e4eae4396b268937b102316c3
c9f827754a106f0fc82a57077ac96fc4dc2d5344
Fix control flow in `assert_default_hashing_controls`. Calling `match` on a struct is a really weird thing to do. As the name suggests, it's an assert, so let's write it as one. Also clarify the comment a little.
[ { "path": "compiler/rustc_span/src/hygiene.rs", "patch": "@@ -132,19 +132,21 @@ impl !PartialOrd for LocalExpnId {}\n /// to maintain separate versions of `ExpnData` hashes for each permutation\n /// of `HashingControls` settings.\n fn assert_default_hashing_controls(ctx: &impl HashStableContext, msg: &str)...
2026-02-03T04:25:52
golang/go
ae4c13afc51d81e9aefdfb101e895bc7318c05cd
e5d3ece35d34a0d00ad8131d4dd7af7951aada68
go/types, types2: report better error messages for slice expressions Explicitly compute the common underlying type and while doing so report better slice-expression relevant error messages. Streamline message format for index and slice errors. This removes the last uses of the coreString and match functions. Delete t...
[ { "path": "src/cmd/compile/internal/types2/index.go", "patch": "@@ -183,7 +183,7 @@ func (check *Checker) indexExpr(x *operand, e *syntax.IndexExpr) (isFuncInst boo\n \t}\n \n \tif !valid {\n-\t\tcheck.errorf(e.Pos(), NonSliceableOperand, invalidOp+\"cannot index %s\", x)\n+\t\tcheck.errorf(e.Pos(), NonSlic...
2025-03-07T19:26:38
nodejs/node
47c55713ae749e802c14434fa3241efbc30ac725
7ad0cc3e5715bff8f4def9b199952c5db25737d8
doc: add note to ninjia build for macOS using -jn flag PR-URL: https://github.com/nodejs/node/pull/53187 Fixes: https://github.com/nodejs/node/issues/53176 Refs: https://github.com/nodejs/node/issues/53176 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By...
[ { "path": "doc/contributing/building-node-with-ninja.md", "patch": "@@ -38,6 +38,10 @@ make -j4 # With this flag, Ninja will limit itself to 4 parallel jobs,\n # regardless of the number of cores on the current machine.\n ```\n \n+Note: if you are on macOS and use GNU Make version `3.x`, the `-jn` ...
2024-05-30T16:21:56
facebook/react
12de013aa4b75dbe1251f816bcb16d0a2869f7bd
0966480d169efa261d4116162c9a1dda15e80c5f
[patch] ObjectMethods should have the same scope as their parent ObjectExpressions --- Currently, we're removing all reactive scopes containing object methods. This could produce incorrect output as object method instructions may still be included in other reactive scopes (and will lose their dependencies).
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -35,6 +35,7 @@ import {\n } from \"../Optimization\";\n import {\n CodegenFunction,\n+ alignObjectMethodScopes,\n alignReactiveScopesToBlockScopes,\n assertScopeInstructionsWithinScopes,\n buildReactive...
2023-12-12T22:44:01
electron/electron
cb03c6516b2729ddf915314d5a72fbacb772a665
2e8114aea3658b440aaa3c87a0fa98ffe3ccd634
docs: add `win.isFocusable()` return type (#37245) docs: fix `win.isFocusable()` return type
[ { "path": "docs/api/browser-window.md", "patch": "@@ -1776,7 +1776,7 @@ On macOS it does not remove the focus from the window.\n \n #### `win.isFocusable()` _macOS_ _Windows_\n \n-Returns whether the window can be focused.\n+Returns `boolean` - Whether the window can be focused.\n \n #### `win.setParentWind...
2023-02-14T09:01:22
vercel/next.js
a5d0ad141150348422140b747d39a4045cada878
0cf44913068a2be4051508aaad79ad44c3fd8e5a
[turbopack] Add execution tests to demonstrate a bug (#80918) ## Add tests for top level `this` behavior in CJS and ESM modules ### What? Added two test cases to verify the behavior of `this` in CommonJS and ESM modules: - CJS test verifies that `this` should be equal to `exports` - ESM test verifies that `this` shou...
[ { "path": "turbopack/crates/turbopack-tests/tests/execution/turbopack/basic/cjs-this/input/index.js", "patch": "@@ -0,0 +1,8 @@\n+const t = this\n+\n+it('`this` in cjs should be exports', () => {\n+ expect(t).toBe(exports)\n+})\n+\n+// Use a dummy assignment to ensure we are parsed as a cjs module\n+export...
2025-06-26T01:53:21
golang/go
e5d3ece35d34a0d00ad8131d4dd7af7951aada68
2d097e363a6fce725802ecbde6d0d1b90f45290d
go/types, types2: remove need for coreString in signature.go Also, add additional test cases for NewSignatureType to check expected panic behavior. Change-Id: If26cd81a2af384bf2084dd09119483c0584715c8 Reviewed-on: https://go-review.googlesource.com/c/go/+/655695 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project...
[ { "path": "src/cmd/compile/internal/types2/issues_test.go", "patch": "@@ -627,38 +627,62 @@ func TestIssue50646(t *testing.T) {\n \n func TestIssue55030(t *testing.T) {\n \t// makeSig makes the signature func(typ...)\n-\tmakeSig := func(typ Type) {\n+\t// If valid is not set, making that signature is expect...
2025-03-07T00:06:55
nodejs/node
7ad0cc3e5715bff8f4def9b199952c5db25737d8
9f6c12413cde5074893ffb378b8c3310275aa016
build: remove support for 32-bit Windows Closes: https://github.com/nodejs/node/issues/42543 PR-URL: https://github.com/nodejs/node/pull/53184 Fixes: https://github.com/nodejs/node/issues/42543 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Marco I...
[ { "path": "BUILDING.md", "patch": "@@ -100,26 +100,25 @@ Node.js does not support a platform version if a vendor has expired support\n for it. In other words, Node.js does not support running on End-of-Life (EoL)\n platforms. This is true regardless of entries in the table below.\n \n-| Operating System | A...
2024-05-30T14:28:47
facebook/react
c01ac689e9628c952761ba0583d6c00ba5521c6a
0cdfef19b96cc6202d48e0812b5069c286d12b04
convert circleci worklfow fuzz_tests to github actions (#27801) ## Summary This pull request converts the CircleCI workflows to GitHub actions workflows. [Github Actions Importer](https://github.com/github/gh-actions-importer) was used to convert the workflows initially, then I edited them manually to correct e...
[ { "path": ".github/workflows/fuzz_tests.yml", "patch": "@@ -0,0 +1,32 @@\n+name: facebook/react/fuzz_tests\n+on:\n+ schedule:\n+ - cron: 0 * * * *\n+ push:\n+ branches:\n+ - main\n+ workflow_dispatch:\n+ inputs:\n+ prerelease_commit_sha:\n+ required: false\n+jobs:\n+ test_fuzz:\n...
2023-12-12T19:55:43
electron/electron
8b3e498436912b468a517f7bbcf3f27619ccf08c
cf80994729c510937287788a9e0294ebff08c9cd
fix: cookies filter secure invalid (#37203)
[ { "path": "shell/browser/api/electron_api_cookies.cc", "patch": "@@ -128,10 +128,10 @@ bool MatchesCookie(const base::Value::Dict& filter,\n !MatchesDomain(*str, cookie.Domain()))\n return false;\n absl::optional<bool> secure_filter = filter.FindBool(\"secure\");\n- if (secure_filter && *secure...
2023-02-13T14:02:55
vercel/next.js
3ad9213d3d9bfa128b00fcbadb9fbb96469cb79a
47835e6cf962ec20fe809b84ff538509b36a3d45
fix(turbo-tasks): Temporarily disable immutable task optimizations (#80914) https://vercel.slack.com/archives/C03EWR7LGEN/p1750889741099559 Looks like this is broken, this seems like the easiest way to disable the feature for the moment.
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/connect_child.rs", "patch": "@@ -87,6 +87,10 @@ impl ConnectChildOperation {\n });\n }\n \n+ // https://vercel.slack.com/archives/C03EWR7LGEN/p1750889741099559\n+ // HACK: immutable tracking is broken, di...
2025-06-25T22:54:32
golang/go
2d097e363a6fce725802ecbde6d0d1b90f45290d
e3ea8e68fb91bdc510cb7702981609ce5a9da12e
go/types, types2: better error messages for copy built-in Rather than relying on coreString, use the new commonUnder function to determine the argument slice element types. Factor out this functionality, which is shared for append and copy, into a new helper function sliceElem (similar to chanElem). Use sliceElem for...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -83,48 +83,19 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \tswitch id {\n \tcase _Append:\n \t\t// append(s S, x ...E) S, where E is the element type of S\n-\t\t// spec: \"The variadic function ap...
2025-03-06T23:44:01
rust-lang/rust
0061a2232de5b23a703380e8f90926c5335aecad
66daca1a85c459b1da49dc0ef1ba027b53e4ac2c
rustc_parse_format: improve diagnostics for unsupported debug `=` syntax Detect Python-style f-string debug syntax in format strings and emit a clear diagnostic explaining that it is not supported in Rust. When the intended operation can be inferred, suggest the corresponding Rust alternative e.g from `println!("{=}",...
[ { "path": "compiler/rustc_builtin_macros/src/errors.rs", "patch": "@@ -678,6 +678,18 @@ pub(crate) enum InvalidFormatStringSuggestion {\n #[primary_span]\n span: Span,\n },\n+\n+ #[suggestion(\n+ \"use rust debug printing macro\",\n+ code = \"{replacement}\",\n+ s...
2026-01-14T05:33:45
nodejs/node
9f6c12413cde5074893ffb378b8c3310275aa016
851dcddb575f1abc2090c4022610a47ffce404d7
test_runner: add snapshot testing This commit adds a t.assert.snapshot() method that implements snapshot testing. Serialization uses JSON.stringify() by default, but users can configure the serialization to meet their needs. PR-URL: https://github.com/nodejs/node/pull/53169 Fixes: https://github.com/nodejs/node/issue...
[ { "path": "doc/api/cli.md", "patch": "@@ -991,6 +991,16 @@ added: REPLACEME\n \n Enable module mocking in the test runner.\n \n+### `--experimental-test-snapshots`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1.0 - Early development\n+\n+Enable [snapshot testing][] in the test runner.\n+\n ### ...
2024-05-18T16:32:41
electron/electron
01f1522cbdd44119f88fd80f7dc09bc0339b9582
a37f5723883cd60876e6dc91016609bc73b23259
chore: change undocumented protocol.registerProtocol to detect body type (#36595) * feat: add protocol.registerProtocol * remove wip handleProtocol code * lint * Update shell/browser/net/electron_url_loader_factory.h Co-authored-by: Cheng Zhao <zcbenz@gmail.com> * fix --------- Co-authored-by: Joh...
[ { "path": "shell/browser/net/electron_url_loader_factory.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/browser/net/electron_url_loader_factory.h\"\n \n+#include <list>\n #include <memory>\n #include <string>\n #include <utility>\n@@ -81,6 +82,19 @@ bool ResponseMustBeObject(ProtocolType type) {\n }...
2023-02-13T07:48:30
facebook/react
4c2b89288f3613a66996ec50826cc3d448db1223
bfa0aa2813a03ffc98dd8ec4b602bac77d6cde97
[be][fixtures] Pass message directly instead of overwriting Error object --- Started getting crashes in watch mode from trying to overwrite `error.message` (invalid setter or frozen object). This should fix
[ { "path": "compiler/packages/fixture-test-utils/src/output-utils.ts", "patch": "@@ -20,7 +20,7 @@ ${s}\n export function writeOutputToString(\n input: string,\n output: string | null,\n- error: Error | null\n+ errorMessage: string | null\n ) {\n // leading newline intentional\n let result = `\n@@ ...
2023-12-12T03:59:33
vercel/next.js
ac51a18d626d899d4e1512ff5a803eeb51a9109d
0e73aeea6a59f0f468f07c130882a8c0d1490c05
Fix PPR no fallback case (#80908) When we are resuming with postponed state we don't handle SSG behavior so this ensures we only trigger the `NoFallback` case if we have created a cache key.
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -186,12 +186,6 @@ export async function handler(\n prerenderManifest.routes[normalizedSrcPage]\n )\n \n- // if the page is dynamicParams: false and this pathname wasn't prerender\n- // trigger the no fallback handling\n- if (...
2025-06-25T20:58:33
golang/go
2abe5ceb1968edb882c8318af674c4133dd0bb75
574a9fa60e593154fbbe64f992b7e6656e3ab0b7
testing: warn against calling Log after a test completes Fixes #40343 Change-Id: Id266f4b57131e9e148e5aa2be86b67fe6d73b20a Reviewed-on: https://go-review.googlesource.com/c/go/+/656415 Auto-Submit: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount....
[ { "path": "src/testing/testing.go", "patch": "@@ -1083,6 +1083,7 @@ func (c *common) logDepth(s string, depth int) {\n // and records the text in the error log. For tests, the text will be printed only if\n // the test fails or the -test.v flag is set. For benchmarks, the text is always\n // printed to avoi...
2025-03-10T19:41:09
nodejs/node
bb8d2936abe4e36f8fbc7a4b8a3075b20463ad78
0a3f93006544512b3e0479de41e13acfe42e4fa2
src: do not use soon-to-be-deprecated V8 API V8 announced deprecation of the following methods: - v8::Object::SetAccessor(...) in favor of v8::Object::SetNativeDataProperty(...), - v8::ObjectTemplate::SetNativeDataProperty(...) with AccessControl parameter in favor of v8::ObjectTemplate::SetNativeDataProper...
[ { "path": "src/node_process_object.cc", "patch": "@@ -13,7 +13,6 @@\n \n namespace node {\n using v8::Context;\n-using v8::DEFAULT;\n using v8::EscapableHandleScope;\n using v8::Function;\n using v8::FunctionCallbackInfo;\n@@ -183,13 +182,12 @@ void PatchProcessObject(const FunctionCallbackInfo<Value>& args...
2024-04-19T10:29:53
facebook/react
fa8f47eb4167cdafb3bba325f2f0a05ff280eca1
9be2efdc57d84f8bb202c8e4c290ed76afbeb82a
InferReactivePlaces understands setState type I realized this while working on Forest. When computing the dependencies of a reactive scope we can omit setState functions in the general case (exception described below). Currently that's implemented in PruneNonReactiveDependencies. However, this causes us to miss so...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReactivePlaces.ts", "patch": "@@ -15,6 +15,7 @@ import {\n Place,\n computePostDominatorTree,\n getHookKind,\n+ isSetStateType,\n } from \"../HIR\";\n import { PostDominator } from \"../HIR/Dominator\";\n import {\n@@ -191,6 +1...
2023-12-11T19:34:24
electron/electron
478ce969143cd8d069ab4def0992e8d5719445cf
8dc98aeeaee4c827501662325eebcfd97471323a
fix: avoid using v8 on Isolate termination (#35766) * fix: avoid using v8 on Isolate termination * chore: refactor for review --------- Co-authored-by: electron-patch-conflict-fixer[bot] <83340002+electron-patch-conflict-fixer[bot]@users.noreply.github.com>
[ { "path": "patches/node/.patches", "patch": "@@ -34,4 +34,5 @@ fix_expose_lookupandcompile_with_parameters.patch\n fix_prevent_changing_functiontemplateinfo_after_publish.patch\n enable_crashpad_linux_node_processes.patch\n allow_embedder_to_control_codegenerationfromstringscallback.patch\n+src_allow_option...
2023-02-09T08:48:49
vercel/next.js
34c064e734ddbeb699e844b1fd91734784b3fa57
55ceac16f3fce48b53cb845575cf74b9fd7b1af4
fix(test/integration): Check the right thing when resetting the server-side-dev-errors tests (#80873) This was asserting that the error still exists after resetting the file back to its original state. Instead, it should refresh the browser and check that the error was fixed. Something was causing this to quickly re...
[ { "path": "test/integration/server-side-dev-errors/test/index.test.js", "patch": "@@ -4,11 +4,11 @@ import fs from 'fs/promises'\n import { join } from 'path'\n import webdriver from 'next-webdriver'\n import {\n- killApp,\n+ assertNoRedbox,\n findPort,\n+ killApp,\n launchApp,\n retry,\n- assertN...
2025-06-25T18:04:57
golang/go
4635ad047a426f43a4b70cd11ce52b062d0da34f
5b4209fedb10086e845cabdb02d2990a6090841b
crypto/tls: align cert decode alert w/ BSSL For malformed client/server certificates in a TLS handshake send a decode_error alert, matching BoringSSL behaviour. Previously crypto/tls used a bad_certificate alert for this purpose. The TLS specification is imprecise enough to allow this to be considered a spec. justifi...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -54,7 +54,6 @@\n \"KyberKeyShareIncludedSecond\": \"we always send the Kyber key share first\",\n \"KyberKeyShareIncludedThird\": \"we always send the Kyber key share first\",\n \"GREASE-Server-TLS13\": \"We don't send GREASE ...
2025-02-26T19:13:15
rust-lang/rust
40857fcd00c7982cb7ca5f32674f42ce6e1e9688
bd0d19f0e80ca5b0240ba44ca6f5cde58d03914b
chore: fix typos suggested by typos-cli
[ { "path": "src/tools/miri/src/alloc/isolated_alloc.rs", "patch": "@@ -66,10 +66,10 @@ impl IsolatedAlloc {\n // And make sure the align is at least one page\n let align = std::cmp::max(layout.align(), self.page_size);\n // pg_count gives us the # of pages needed to satisfy the size. ...
2026-02-05T11:48:55
nodejs/node
1de215e285bf8afebe0b9b1908009399e3b1f9e2
e0b5deefc061009f0a0696d573ccfb447206b88a
process: add process.getBuiltinModule(id) `process.getBuiltinModule(id)` provides a way to load built-in modules in a globally available function. ES Modules that need to support other environments can use it to conditionally load a Node.js built-in when it is run in Node.js, without having to deal with the resolution...
[ { "path": "doc/api/process.md", "patch": "@@ -1921,6 +1921,46 @@ console.log('After:', getActiveResourcesInfo());\n // After: [ 'TTYWrap', 'TTYWrap', 'TTYWrap', 'Timeout' ]\n ```\n \n+## `process.getBuiltinModule(id)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `id` {string} ID of the built-in module b...
2024-04-30T16:24:36
facebook/react
5bcade5fcf5610e82e7cda05cc6de574bdace0c7
8ff2c236a233a78c18d6f524dd74baec9153fd37
[Flight] Support postponing through a serialized promise (#27818) Postponing in a promise that is being serialized to the client from the server should be possible however prior to this change Flight treated this case like an error rather than a postpone. This fix adds support for postponing in this position and ad...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -32,6 +32,7 @@ let ReactDOMClient;\n let ReactServerDOMServer;\n let ReactServerDOMClient;\n let ReactDOMFizzServer;\n+let ReactDOMStaticServer;\n let Suspense;\n let ErrorBoundary;\n let JSDOM;\n@@ -71,6 +72,7 ...
2023-12-08T19:05:32
golang/go
01688daca63c3775f07f908268af99bd3d3c9386
2611d81dc82ba18bb9dd45afce9a412b0b821913
crypto/tls: support bogo -wait-for-debugger When this command line flag is provided to the BoGo runner it will: * Disable some timeouts * Limit concurrency to 1 worker at a time * Pass the -wait-for-debugger flag to the shim process * Print the PID of the shim process to status output On the shim-side, we need to re...
[ { "path": "src/crypto/tls/bogo_shim_notunix_test.go", "patch": "@@ -0,0 +1,11 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build !unix || wasm\n+\n+package tls\n+\n+func pause...
2025-02-19T17:39:32
vercel/next.js
3d1e0b3cf506ac2463a16eb4b4a0a160f0e9dd48
15fbf92127be7fa7f56eccf155af6f8a15bd0fe9
[devtools] fix: build error should share the issue content layout (#80850) Previously, the no issue page was displayed when there was no runtime error. Also, if there was a build error, it would've returned the Terminal only. Therefore, created a layout that behaves similarly to ErrorOverlayLayout and shares across th...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-tab/issues-tab/issues-tab-content-layout.tsx", "patch": "@@ -0,0 +1,70 @@\n+import type { DebugInfo } from '../../../../../shared/types'\n+import type { ErrorType } from '../../../errors/error-type-label/error-ty...
2025-06-25T15:09:44
nodejs/node
e0b5deefc061009f0a0696d573ccfb447206b88a
4796e05cc87a48d7a7069a468aada23df3af5336
doc: improve explanation about built-in modules PR-URL: https://github.com/nodejs/node/pull/52762 Fixes: https://github.com/nodejs/node/issues/52599 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By:...
[ { "path": "doc/api/esm.md", "patch": "@@ -293,12 +293,12 @@ mandatory:\n | ---------------- | ---------------- |\n | `'json'` | [JSON modules][] |\n \n-## Builtin modules\n+## Built-in modules\n \n-[Core modules][] provide named exports of their public API. A\n+[Built-in modules][] provide named exp...
2024-05-07T01:50:31
facebook/react
d3ed07bce036df61fbce52151f1531a5762ba6d6
f193213d29e7fabf68b21951c4b96701aeaecbf8
[ci] try to fix commit_artifacts step (#27817) Tries to fix the failure from https://github.com/facebook/react/actions/runs/7142005723/job/19450371514 I think it failed because we cannot `mv` into a folder with existing files or folders.
[ { "path": ".github/workflows/commit_artifacts.yml", "patch": "@@ -119,26 +119,25 @@ jobs:\n build/oss-experimental/react-refresh/cjs/react-refresh-babel.development.js\n - name: Move relevant files for React in www into compiled\n run: |\n- mkdir -p ./compiled\n- ...
2023-12-08T17:38:35
golang/go
2611d81dc82ba18bb9dd45afce9a412b0b821913
b0e7f95aacbfed6cca892859ec2589c3bd7cf0b8
crypto/tls: ignore TLS 1.3 user canceled alerts When encountering alertUserCanceled in a TLS 1.3 handshake, ignore the alert and retry reading a record. This matches existing logic for how TLS 1.2 alertLevelWarning alerts are handled. For broader context, TLS 1.3 removed warning-level alerts except for alertUserCance...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -47,12 +47,12 @@\n \"*DTLS*\": \"No DTLS\",\n \"SendEmptyRecords*\": \"crypto/tls doesn't implement spam protections\",\n \"SendWarningAlerts*\": \"crypto/tls doesn't implement spam protections\",\n+ \"SendUserCanceledA...
2025-02-19T15:30:50
vercel/next.js
43c094c16edc5dc022797591738e9e34f290e3d6
07d36f74089bacd157b9b18cce389b881702faf3
Turbopack: fix `this` when accessing named properties of namespace (#80896) Previously, this namespace-import-to-named-import optimization always caused `this` to be unbound for function calls. Now, it is preserved (if possible. There's nothing we can do when this is scope hoisted together). ```js import * as R fro...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/references/esm/binding.rs", "patch": "@@ -21,9 +21,10 @@ use crate::{\n \n #[derive(Hash, Clone, Debug, Serialize, Deserialize, PartialEq, Eq, TraceRawVcs, NonLocalValue)]\n pub struct EsmBinding {\n- pub reference: ResolvedVc<EsmAssetReference>,\n- ...
2025-06-25T14:00:02
facebook/react
f193213d29e7fabf68b21951c4b96701aeaecbf8
a3aae7fb01ecf4ac12a8ba53abcf0403a4c7c3f8
Add a regression test for an infinite suspense + Fix (#27703) Add a regression test for the [minimal repro](https://codesandbox.io/s/react-18-suspense-state-never-resolving-bug-hmlny5?file=/src/App.js) from @kassens And includes the fix from @acdlite: > This is another place we special-case Retry lanes to opt t...
[ { "path": "packages/react-reconciler/src/ReactFiberLane.js", "patch": "@@ -423,7 +423,9 @@ export function markStarvedLanesAsExpired(\n // We exclude retry lanes because those must always be time sliced, in order\n // to unwrap uncached promises.\n // TODO: Write a test for this\n- let lanes = pendin...
2023-12-08T17:21:36
golang/go
b0e7f95aacbfed6cca892859ec2589c3bd7cf0b8
04164e5f5a82eeaf09fedda14c90af5bb65a1627
crypto/tls: run SkipNewSessionTicket bogo test This commit removes SkipNewSessionTicket from the bogo_config.json excluded tests list. Previously this test was being skipped with a TODO that there might be a bug here. In practice it seems like there's no bug and the test is handled correctly by crypto/tls. When acti...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -52,7 +52,6 @@\n \"JustConfiguringKyberWorks\": \"we always send a X25519 key share with Kyber\",\n \"KyberKeyShareIncludedSecond\": \"we always send the Kyber key share first\",\n \"KyberKeyShareIncludedThird\": \"we always s...
2025-02-18T17:41:34
vercel/next.js
f9c9d033add718a40f515350fad7b5fc1538b17f
6b55cdc89e55f4d33bf63f7c54788932c6b1be58
[devtools] replace the old error overlay with the issues tab view (#80814)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.tsx", "patch": "@@ -10,11 +10,10 @@ import {\n } from '../errors/dev-tools-indicator/utils'\n import {\n ACTION_DEVTOOLS_PANEL_TOGGLE,\n- ACTION_ERROR_OVERLAY_TOGGLE,\n- ACTION_ERROR_OVERLAY_CLOSE,\n ...
2025-06-25T12:45:45
electron/electron
df6f99aa7228eb8caf48c011aea1cb0398765ab5
00a542358dfd47139776677d33d7147e9c4aa567
fix: correct redefinition which is invalid C++ (#36096) * fix: correct redefinition which is invalid C++ See https://stackoverflow.com/a/15538759 for an explanation of class scope. GCC gives an error when compiling this code: https://godbolt.org/z/sYhc3cMjE * Update export_gin_v8platform_pageallocator_for_usage...
[ { "path": "patches/chromium/export_gin_v8platform_pageallocator_for_usage_outside_of_the_gin.patch", "patch": "@@ -9,26 +9,26 @@ correctly tagged with MAP_JIT we need to use gins page allocator instead\n of the default V8 allocator. This probably can't be usptreamed.\n \n diff --git a/gin/public/v8_platfor...
2023-02-08T07:03:47
facebook/react
a3aae7fb01ecf4ac12a8ba53abcf0403a4c7c3f8
af1fc87b54686d5e15204cd588e2227a92ae40ac
feat:-added tests for more coverage in reactDom-input and reactText-area (#27796) Small test similar to few tests added in #27740 , the `reactDom-input` error message was just modified to match the error message, and the `reactDomTextarea-test.js` has tests added to ensure more coverage.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMInput-test.js", "patch": "@@ -110,23 +110,32 @@ describe('ReactDOMInput', () => {\n expect(() => {\n ReactDOM.render(<input type=\"text\" value={0} />, container);\n }).toErrorDev(\n- 'Warning: You provided a `value` prop to a form field...
2023-12-08T13:34:09
golang/go
895bcf178d86449f6d96a0bd19dc4e4b0a3d3c59
2620cc1caae099c5947bfd5ff2c10bd4a3b628fd
crypto/tls: reject empty TLS 1.3 session ticket While not clearly motivated by normative language in RFC 8446 it seems clear that an empty opaque ticket value is non-operable, and so we should reject it with an appropriate alert/error. This allows removing the SendEmptySessionTicket-TLS13 BoGo test from the bogo excl...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -38,8 +38,6 @@\n \"PostQuantumNotEnabledByDefaultInClients\": \"We do enable it by default!\",\n \"*-Kyber-TLS13\": \"We don't support Kyber, only ML-KEM (BoGo bug ignoring AllCurves?)\",\n \n- \"SendEmptySessionTicket-TLS13\":...
2025-02-17T16:45:23
vercel/next.js
6b55cdc89e55f4d33bf63f7c54788932c6b1be58
9266f20c7814cf96e201acb39cbc6609da5b76a9
Turbopack: fix chunking context caching (#80862) ### What? Fixes caching by changing arguments from `Option<RcStr>` to `Vc<Option<RcStr>>`. This changes the argument from passed by value to passed by reference. This makes a big differences regarding caching when the string value is changing. `Option<RcStr>`: ...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1010,8 +1010,8 @@ impl Project {\n self.project_root_path(),\n self.client_relative_path(),\n rcstr!(\"/ROOT\"),\n- self.next_config().computed_asset_prefix().owned().await?,\n- self.next_conf...
2025-06-25T12:22:26
huggingface/transformers
380e3cc5d59912a48508cb6d4959a31cd460e12e
d0a7abe5173bd83ce080f0971595c4a9c1b831fc
Fix `text-to-speech` pipeline crash when generation config contains `None` values (#45107) fix text-to-audio pipeline config Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
[ { "path": "src/transformers/pipelines/text_to_audio.py", "patch": "@@ -131,7 +131,7 @@ def __init__(self, *args, vocoder=None, sampling_rate=None, **kwargs):\n config = self.model.config\n gen_config = self.model.__dict__.get(\"generation_config\", None)\n if gen_config i...
2026-04-08T17:06:30
electron/electron
9a0a0a7a46878cc4ade6f678bfa9d7d85013c85b
6a3cb343267605bbd3a075168742b5c0f4eb0715
fix: type for received-apns-notification event (#37177)
[ { "path": "docs/api/push-notifications.md", "patch": "@@ -26,6 +26,7 @@ The `pushNotification` module emits the following events:\n \n Returns:\n \n+* `event` Event\n * `userInfo` Record<String, any>\n \n Emitted when the app receives a remote notification while running.", "additions": 1, "deletions...
2023-02-08T06:43:29
facebook/react
995f4b0528430c6d37e03e0726fbd22ea8273cf7
d3e84d4dffdbcea8d2d8371d056f1cb670a045d5
[bugfix] Fix constant propagation to ObjectMethods
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Optimization/ConstantPropagation.ts", "patch": "@@ -434,6 +434,7 @@ function evaluateInstruction(\n }\n return placeValue;\n }\n+ case \"ObjectMethod\":\n case \"FunctionExpression\": {\n constantPropagationImpl(value.lo...
2023-12-06T18:20:50
golang/go
e256e640604bff7916ef09451da7f4a6423152a6
c3e7d5f5cee29669d5d824f697e3b16a08815df0
debug/dwarf: fix problem with DWARF 5 and Seek method When clients use debug/dwarf to examine DWARF 5 binaries, we can run into problems when the Seek() method is used to skip ahead from a DIE in one compilation unit to a DIE in another unit. The problem here is that it is common for DWARF 5 comp units to have attribu...
[ { "path": "src/debug/dwarf/entry.go", "patch": "@@ -426,16 +426,6 @@ func (b *buf) entry(cu *Entry, u *unit) *Entry {\n \t\tField: make([]Field, len(a.field)),\n \t}\n \n-\t// If we are currently parsing the compilation unit,\n-\t// we can't evaluate Addrx or Strx until we've seen the\n-\t// relevant bas...
2025-03-07T19:16:28
vercel/next.js
2682d817426b35af1c95f91cb55437bcca7902c2
65fb743949746af8a1dd38deb1a869fd921310fe
Allow intercepting dynamic routes to be partially prerendered (#80851) For intercepting dynamic routes we do prerender `.prefetch.rsc`, as well as `.segment.rsc` files if `clientSegmentCache` is enabled. However, we omitted adding those routes to the prerender manifest, which resulted in server errors when looking up ...
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -69,7 +69,6 @@ import { normalizeAppPath } from '../shared/lib/router/utils/app-paths'\n import { denormalizeAppPagePath } from '../shared/lib/page-path/denormalize-app-path'\n import { RouteKind } from '../server/route-kind'\n import type { PageExt...
2025-06-25T10:26:51
huggingface/transformers
c850500b54dfd0b4df22a6cf143a06955cc3a733
d081c718b8825036a7662ec819313e5141dc34b5
Fix export for gemma4 and add Integration tests (#45285) * start updating tests * start making them pass * more * fix * fix export * fix * oupsi * review comments * fix expectations for a10 * style * rename tests
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -982,18 +982,38 @@ def update_recurrent_state(self, recurrent_states: torch.Tensor, layer_idx: int,\n return recurrent_states\n \n def early_initialization(\n- self, batch_size: int, num_heads: int, head_dim: int, dtype: torch.dtyp...
2026-04-08T13:07:37
facebook/react
d3e84d4dffdbcea8d2d8371d056f1cb670a045d5
7e9f6ecfea52a750077cc36c869185123bcd635e
[repro] repro for ContextVariable bug (ObjectMethod) Found from eslint validator on www after doing a local sync + RunForget test of #2432 P898168203 > New Errors: > no-undef:'VARIABLE_NAME' is not defined.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-context-vars-in-object-method.expect.md", "patch": "@@ -0,0 +1,54 @@\n+\n+## Input\n+\n+```javascript\n+import { identity } from \"shared-runtime\";\n+\n+function Foo() {\n+ const CONSTANT = 1;\n+ const x = {\n+ ...
2023-12-06T18:20:49
electron/electron
6a3cb343267605bbd3a075168742b5c0f4eb0715
de607cbcde81cd151cc5a6efa7612bb987936d92
fix: expose native bindings by process type (#35949)
[ { "path": "docs/development/creating-api.md", "patch": "@@ -144,7 +144,7 @@ NODE_LINKED_MODULE_CONTEXT_AWARE(electron_browser_{api_name},Initialize)\n In your [`shell/common/node_bindings.cc`](https://github.com/electron/electron/blob/main/shell/common/node_bindings.cc) file, add your node binding name to E...
2023-02-08T01:22:18
golang/go
c3e7d5f5cee29669d5d824f697e3b16a08815df0
c40a3731f45047c3b903cafae287ea8e5762e062
debug/dwarf: refactor entry DIE reading helper Simplify the signature of the "entry()" buf method to accept a unit as opposed to a collection of unit components (version, atable, etc). No change in functionality, this is a pure refactoring that will be needed in subsequent patch. Change-Id: I688def34e39d36b6a62733bc7...
[ { "path": "src/debug/dwarf/entry.go", "patch": "@@ -407,7 +407,8 @@ type Offset uint32\n \n // Entry reads a single entry from buf, decoding\n // according to the given abbreviation table.\n-func (b *buf) entry(cu *Entry, atab abbrevTable, ubase Offset, vers int) *Entry {\n+func (b *buf) entry(cu *Entry, u ...
2025-03-07T18:34:55
vercel/next.js
b2d6b36145622a42beac1cf161a561f1d8339c27
ea03ffa8becaa7971e484a1bfaa93396f8f6d779
Fix preview builds for forks (#80833)
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -37,6 +37,7 @@ jobs:\n - uses: actions/checkout@v4\n with:\n fetch-depth: 1\n+ - run: echo \"${{ github.event.after }}\"\n - name: Setup node\n uses: actions/setup-node@v4\n with:\n@@ -535,7 +...
2025-06-25T09:38:52
facebook/react
7e9f6ecfea52a750077cc36c869185123bcd635e
01c1b16db45b5894d248363fcc7c15874448c284
[patch] Make holey array handling compatible with older babel versions --- Copied from comments Older versions of babel have a validation bug fixed by - https://github.com/babel/babel/pull/10917 - (code pointer) https://github.com/babel/babel/commit/e7b80a2cb93cf28010207fc3cdd19b4568ca35b9#diff-19b555d2f3904...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1456,14 +1456,6 @@ function lowerExpression(\n elements.push({\n kind: \"Hole\",\n });\n- if (builder.environment.config.bailoutOnHoleyArrays) {\n- builder.errors.pu...
2023-12-06T18:20:49
huggingface/transformers
d081c718b8825036a7662ec819313e5141dc34b5
dd6e8c5e25a3281c4e1cb34c270edfb0a8699a74
Fix vllm cis (#45139) * fixes * safe linspace? * up * up * remove batch * nits * style * fix repo * more * update * update * revert * up * fix copy * work? * adress some of the comments * update * fixes * fix-repo! * styling post merge * don't pass default * up * up * push * fix vllm compat: ad...
[ { "path": "docs/source/en/internal/rope_utils.md", "patch": "@@ -44,13 +44,13 @@ from transformers import LlamaConfig\n config = LlamaConfig()\n config.rope_parameters = {\n \"rope_type\": \"default\", # type of RoPE to use\n- \"rope_theta\": 10000.0 # base frequency parameter\n+ # rope_theta is o...
2026-04-08T11:19:38
electron/electron
de607cbcde81cd151cc5a6efa7612bb987936d92
7abe38b46e86454f17426515b61589e2b4aa5a12
chore: bump node to v18.14.0 (main) (#37129) * chore: bump node in DEPS to v18.14.0 * src: add support for externally shared js builtins https://github.com/nodejs/node/pull/44376 * test: fix test broken under --node-builtin-modules-path https://github.com/nodejs/node/pull/45894 * build: add option to di...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '111.0.5560.0',\n 'node_version':\n- 'v18.13.0',\n+ 'v18.14.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2023-02-07T20:51:07
golang/go
c40a3731f45047c3b903cafae287ea8e5762e062
c3950f84303ad05d0ae1ff734ced85ab803e658b
internal/godebugs: add decoratemappings as an opaque godebug setting This adds a new godebug to control whether the runtime applies the anonymous memory mapping annotations added in https://go.dev/cl/646095. It is enabled by default. This has several effects: * The feature is only enabled by default when the main go...
[ { "path": "doc/godebug.md", "patch": "@@ -153,6 +153,17 @@ for example,\n see the [runtime documentation](/pkg/runtime#hdr-Environment_Variables)\n and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n+### Go 1.25\n+\n+Go 1.25 added a new `decoratemappings` setting that controls wheth...
2025-03-07T18:53:34
vercel/next.js
ea03ffa8becaa7971e484a1bfaa93396f8f6d779
20645d0310abdc4fd669a5a4759fde0d19e49b76
Turbopack: CSS Global Import Validation for Pages (#80585) ## Implement CSS Global Import Validation for Pages This PR adds validation for CSS imports in the Pages Router to prevent global CSS imports in invalid modules. Fixes # --------- Co-authored-by: Niklas Mischkulnig <4586894+mischnic@users.noreply.github.co...
[ { "path": "crates/next-api/src/module_graph.rs", "patch": "@@ -12,13 +12,16 @@ use next_core::{\n };\n use rustc_hash::FxHashMap;\n use tracing::Instrument;\n+use turbo_rcstr::RcStr;\n use turbo_tasks::{\n CollectiblesSource, FxIndexMap, FxIndexSet, ReadRef, ResolvedVc, TryFlatJoinIterExt,\n- TryJoin...
2025-06-25T08:34:08
huggingface/transformers
dd6e8c5e25a3281c4e1cb34c270edfb0a8699a74
3606a1f1e86cfe1aac10f49b63026ede57f12cc1
[docs] static model rules (#45232) * static model rules * feedback * fix
[ { "path": "Makefile", "patch": "@@ -37,6 +37,7 @@ check-repository-consistency:\n \t\tcopies,\\\n \t\tmodular_conversion,\\\n \t\tdoc_toc,\\\n+\t\tmodeling_rules_doc,\\\n \t\tdocstrings,\\\n \t\tdummies,\\\n \t\trepo,\\\n@@ -63,6 +64,7 @@ check-repo:\n \t\tcopies,\\\n \t\tmodular_conversion,\\\n \t\tdoc_toc...
2026-04-08T08:53:47
facebook/react
346350f77d2aa73ee7b93edbee2c2b3a4afddfab
1d36764ca9dbf8bd1683c0431ee669f72fab7747
Revert: revert tsconfig module change for rollup --- Currently on main, rollup does not inline source files ```js // in packages/babel-plugin-react-forget // $yarn build // output var CompilerError_1 = require("./CompilerError"); Object.defineProperty(exports, "CompilerError", { enumerable: true, get: ...
[ { "path": "compiler/packages/babel-plugin-react-forget/tsconfig.json", "patch": "@@ -1,7 +1,6 @@\n {\n \"extends\": \"@tsconfig/node18-strictest/tsconfig.json\",\n \"compilerOptions\": {\n- \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"declaration\": true,\n \"declar...
2023-12-05T22:22:37
electron/electron
7abe38b46e86454f17426515b61589e2b4aa5a12
d17507e3f690cab21495b71bb4e08b4212099618
build: fix version check in release_dependency_versions.yml (#37155) * build: fix version check in release_dependency_versions.yml * chore: also mksnapshot
[ { "path": ".github/workflows/release_dependency_versions.yml", "patch": "@@ -14,7 +14,7 @@ jobs:\n - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag: v3\n - name: Trigger New chromedriver Release\n run: |\n- if [[ ${{ github.event.release.tag_name }} =~ ^v\\d+\\.\\...
2023-02-07T16:38:50
golang/go
c3950f84303ad05d0ae1ff734ced85ab803e658b
22d5d09f1e39bf0ef77bfcf80388c676e7e91574
crypto/pbkdf2: fix code example for Key The type for password is not `[]byte` (as it was in golang.org/x/crypto/pbkdf2), it is `string`. Change-Id: I914a81a500a6d93f994b587814f26285aef7b96d GitHub-Last-Rev: 5ec752e0def59c1058c649b4543f296467691813 GitHub-Pull-Request: golang/go#72746 Reviewed-on: https://go-review.go...
[ { "path": "src/crypto/pbkdf2/pbkdf2.go", "patch": "@@ -27,7 +27,7 @@ import (\n // can get a derived key for e.g. AES-256 (which needs a 32-byte key) by\n // doing:\n //\n-//\tdk := pbkdf2.Key(sha1.New, []byte(\"some password\"), salt, 4096, 32)\n+//\tdk := pbkdf2.Key(sha1.New, \"some password\", salt, 4096...
2025-03-08T17:30:06
vercel/next.js
3edb270df5e632cfd8fc57bbf624c1867c0ee1bf
e91660d1f474656fe5b602b38dea83641b656481
[devtools] refactor segment explorer styles (#80848) * Separate segment explorer instance from the dev overlay and the dev panel * Polish the padding, the customization padding on two sides are different. Dev overlay pop up requires minus margin to fit the border, dev tool panel requires the extra padding * Fix the ...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-tab/segments-explorer-tab.tsx", "patch": "@@ -1,14 +1,12 @@\n-import { useSegmentTree } from '../../../segment-explorer'\n import { PageSegmentTree } from '../../overview/segment-explorer'\n \n function SegmentsE...
2025-06-24T22:53:54
huggingface/transformers
3606a1f1e86cfe1aac10f49b63026ede57f12cc1
1897dd055ddcaddd80ed83bc45bbf91181de4804
fix(security): prevent untrusted users from triggering TRL CI dispatch (#45302) The trust check used `exit 0` which only exits the shell step with success — the workflow continued to dispatch TRL CI for untrusted commenters. This allowed any GitHub user to execute arbitrary code on self-hosted GPU runners by commentin...
[ { "path": ".github/workflows/trl-ci-bot.yml", "patch": "@@ -30,13 +30,14 @@ jobs:\n *) echo \"trusted=false\" >> $GITHUB_OUTPUT ;;\n esac\n \n- - name: Ignore untrusted commenter\n+ - name: Reject untrusted commenter\n if: steps.trust.outputs.trusted != 'true'\n ...
2026-04-07T21:54:04
golang/go
22d5d09f1e39bf0ef77bfcf80388c676e7e91574
bc5f4a555e933e6861d12edba4c2d87ef6caf8e6
net/http/httputil: close hijacked connections when CloseWrite not available CL 637939 changed ReverseProxy's handling of hijacked connections: After copying all data in one direction, it half-closes the outbound connection rather than fully closing both. Revert to the old behavior when the outbound connection does no...
[ { "path": "src/net/http/httputil/reverseproxy.go", "patch": "@@ -794,16 +794,19 @@ func (p *ReverseProxy) handleUpgradeResponse(rw http.ResponseWriter, req *http.R\n \tgo spc.copyToBackend(errc)\n \tgo spc.copyFromBackend(errc)\n \n-\t// wait until both copy functions have sent on the error channel\n+\t// W...
2025-03-06T21:24:58
facebook/react
c29ca23af91d8aeb9e175c08a0866ba54286f0f3
5ab6bbb4b058e22658fc6d4734db5acfbf393345
fix: add isChildPublicInstance to ReactNativeTypes (#27788) Follow-up on https://github.com/facebook/react/pull/27783. React Native is actually using `ReactNativeTypes`, which are synced from this repo. In order to make `isChildPublicInstance` visible for renderers inside React Native repository, we need to list ...
[ { "path": "packages/react-native-renderer/src/ReactNativePublicCompat.js", "patch": "@@ -8,8 +8,6 @@\n */\n \n import type {Node, HostComponent} from './ReactNativeTypes';\n-import type {PublicInstance as FabricPublicInstance} from './ReactFiberConfigFabric';\n-import type {PublicInstance as PaperPublicIns...
2023-12-05T13:00:59
electron/electron
7dcd97f8644d2c7357009a3428901b838130ddcf
9ec13afeaff39767538f08102b69ddf03dcfc1fb
fix: enable basic a11y when voice control is active (#37122) c.f. https://chromium-review.googlesource.com/c/chromium/src/+/2680102
[ { "path": "shell/browser/mac/electron_application.mm", "patch": "@@ -193,6 +193,18 @@ - (void)accessibilitySetValue:(id)value forAttribute:(NSString*)attribute {\n return [super accessibilitySetValue:value forAttribute:attribute];\n }\n \n+- (NSAccessibilityRole)accessibilityRole {\n+ // For non-VoiceOve...
2023-02-06T11:32:21
rust-lang/rust
e55eb4566152bbed506f4916ddec3817c2a76f42
0a13b4361264236cb40afebea97973e6dc366de3
Convert to inline diagnostics in `rustc_errors`
[ { "path": "Cargo.lock", "patch": "@@ -3846,7 +3846,6 @@ dependencies = [\n \"rustc_data_structures\",\n \"rustc_error_codes\",\n \"rustc_error_messages\",\n- \"rustc_fluent_macro\",\n \"rustc_hashes\",\n \"rustc_index\",\n \"rustc_lint_defs\",", "additions": 0, "deletions": 1, "language": ...
2026-02-04T15:27:09
huggingface/transformers
1897dd055ddcaddd80ed83bc45bbf91181de4804
52cb0653b48fcb0737a74546911df77034b61732
Fix missing image processors backends (#45165) * missing * revert emu3 * nope
[ { "path": "src/transformers/models/blip/image_processing_blip.py", "patch": "@@ -13,13 +13,13 @@\n # limitations under the License.\n \"\"\"Image processor class for BLIP.\"\"\"\n \n-from ...image_processing_backends import PilBackend\n+from ...image_processing_backends import TorchvisionBackend\n from ...i...
2026-04-07T13:39:36
vercel/next.js
925fd916efc2d239a6dbc07d8dd9eb0c898fcd45
c5bf5bb4c8b01b1befbbfa7ad97a97476ee9d0d7
Fix fallback: true cache-control (#80865) This ensures we don't treat cache hits for lazily generated `fallback: true` routes as the fallback itself which has a different cache-control header than cache hits should. Fixes: https://github.com/vercel/next.js/issues/80838
[ { "path": "packages/next/src/build/templates/pages.ts", "patch": "@@ -162,7 +162,7 @@ export async function handler(\n )\n const isAmp = query.amp && config.amp\n let cacheKey: null | string = null\n- let isIsrFallback = Boolean(getRequestMeta(req, 'isIsrFallback'))\n+ let isIsrFallback = false\n ...
2025-06-24T20:46:20
golang/go
705fa920c13e87a580f0fc5bec4e186e1b6f663b
d7e5cd5851f9fea4512c20cf275d979516828521
crypto/internal/fips140: make Version return latest when not frozen Fixes #71820 Change-Id: I6a6a46563da281a7b20efc61eefdcbb2e146db33 Reviewed-on: https://go-review.googlesource.com/c/go/+/655795 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Daniel McCarney <da...
[ { "path": "src/cmd/go/internal/fips140/mkzip.go", "patch": "@@ -95,13 +95,40 @@ func main() {\n \n \tvar zbuf2 bytes.Buffer\n \tzw := zip.NewWriter(&zbuf2)\n+\tfoundVersion := false\n \tfor _, f := range zr.File {\n \t\t// golang.org/fips140@v1.2.3/dir/file.go ->\n \t\t// golang.org/fips140@v1.2.3/fips140/v...
2025-03-06T16:08:02
facebook/react
d7b45ec9b765575e63e034fb7d844027a323b06c
108fd8cab015688e6e8e57956c2f1ed1a0c054f2
Bump @adobe/css-tools from 4.0.1 to 4.3.2 in /fixtures/flight (#27766) Bumps [@adobe/css-tools](https://github.com/adobe/css-tools) from 4.0.1 to 4.3.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/adobe/css-tools/blob/main/History.md"><code>@​adobe/css-tools</code>'s ch...
[ { "path": "fixtures/flight/yarn.lock", "patch": "@@ -3,9 +3,9 @@\n \n \n \"@adobe/css-tools@^4.0.1\":\n- version \"4.0.1\"\n- resolved \"https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.0.1.tgz#b38b444ad3aa5fedbb15f2f746dcd934226a12dd\"\n- integrity sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigem...
2023-12-01T19:56:14
rust-lang/rust
2f9a893e9189dcb622e0ba85f1a8a87e3c42f4ef
7bf6355886f3cc17713d449e8da45c997caf7c59
Replace Registry type with a lazily initialized static And move try_find_description to rustc_errors::codes.
[ { "path": "src/parse/session.rs", "patch": "@@ -5,7 +5,6 @@ use std::sync::atomic::{AtomicBool, Ordering};\n use rustc_data_structures::sync::IntoDynSyncSend;\n use rustc_errors::annotate_snippet_emitter_writer::AnnotateSnippetEmitter;\n use rustc_errors::emitter::{DynEmitter, Emitter, SilentEmitter, stderr...
2026-02-04T19:52:53
huggingface/transformers
52cb0653b48fcb0737a74546911df77034b61732
b9f0fbf532c124ff836466d896a716e26dbe4722
[AMD CI] Fix Qwen2 expectations (#45284) fix expec for amd
[ { "path": "tests/models/qwen2/test_modeling_qwen2.py", "patch": "@@ -81,14 +81,16 @@ def test_model_450m_logits(self):\n out = model(input_ids).logits.float().cpu()\n # Expected mean on dim = -1\n EXPECTED_MEAN = Expectations({\n- (None, None): torch.tensor([[-2.2463, ...
2026-04-07T12:01:58
vercel/next.js
c5bf5bb4c8b01b1befbbfa7ad97a97476ee9d0d7
0d84c976cd26f4a1a62f4a17a5208d9a98c286d4
Turbopack Build: Update manifest (#80859) ## What? Updates the manifest to reflect the fixed tests in #80603
[ { "path": "test/turbopack-build-tests-manifest.json", "patch": "@@ -10329,11 +10329,11 @@\n \"runtimeError\": false\n },\n \"test/integration/css-features/test/browserslist.test.js\": {\n- \"passed\": [],\n- \"failed\": [\n+ \"passed\": [\n \"Browserslist: New production mode should'v...
2025-06-24T18:01:55
golang/go
d7e5cd5851f9fea4512c20cf275d979516828521
b4a333fea588b0df6f441f0e9838cff9338c71c4
compress/flate,compress/lzw: fix incorrect godoc links Fix incorrect godoc links related to the use of the name "Reader" for different things in the various compress/* packages: - in compress/flate Reader is the interface describing the underlying reader, not the decompressor as in other packages, so "returned reade...
[ { "path": "src/compress/flate/deflate.go", "patch": "@@ -671,8 +671,8 @@ func NewWriter(w io.Writer, level int) (*Writer, error) {\n // [Writer] with a preset dictionary. The returned [Writer] behaves\n // as if the dictionary had been written to it without producing\n // any compressed output. The compress...
2025-03-06T08:23:15
facebook/react
dc40571b3efd18d4d08fdf6146ad5ec980ea12dd
5dd35968bef791ccc5948c657fabf191a77fff3f
Update .prettierrc.js (#27732) jsxBracketSameLine deprecated in v2.4.0 of Prettier, replaced by bracketSameLine. https://prettier.io/docs/en/options.html#deprecated-jsx-brackets <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough in...
[ { "path": ".prettierrc.js", "patch": "@@ -5,7 +5,7 @@ const {esNextPaths} = require('./scripts/shared/pathsByLanguageVersion');\n module.exports = {\n bracketSpacing: false,\n singleQuote: true,\n- jsxBracketSameLine: true,\n+ bracketSameLine: true,\n trailingComma: 'es5',\n printWidth: 80,\n pa...
2023-12-01T19:30:42
rust-lang/rust
639cb694df242aaa356ebcd4ddca47355af4240c
1851937577eaf46ef18c437ac2ad9b2a5f3e3606
Replace Registry type with a lazily initialized static And move try_find_description to rustc_errors::codes.
[ { "path": "compiler/rustc_codegen_ssa/src/back/write.rs", "patch": "@@ -1981,11 +1981,7 @@ impl SharedEmitter {\n }\n \n impl Emitter for SharedEmitter {\n- fn emit_diagnostic(\n- &mut self,\n- mut diag: rustc_errors::DiagInner,\n- _registry: &rustc_errors::registry::Registry,\n- ...
2026-02-04T19:52:53
huggingface/transformers
182f20c2d22125b5151cb680ddd2689c3fbb17da
02c38f7ad1257225f18fa5411769416b065080d7
Fix `SmolVLM` video processor `resize` using wrong interpolation after backend refactor (#45258) * Fix SmolVLM video processor resize using wrong interpolation after image processor backend refactor The PR #43514 refactored _preprocess to pass resample=resample to resize, but resize still accepted interpolation as it...
[ { "path": "src/transformers/models/smolvlm/video_processing_smolvlm.py", "patch": "@@ -12,13 +12,18 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n-from typing import Optional\n \n import numpy as np\n import torch\n \n from ...image_process...
2026-04-06T19:41:10
electron/electron
d02c9f8bc644ba39acf9caa908c33a737202a790
446c7809cc43997f408c9a030036d6980c4f1616
chore: bump chromium to 111.0.5544.3 (main) (#36820) * chore: bump chromium in DEPS to 111.0.5522.0 * chore: bump chromium in DEPS to 111.0.5524.0 * chore: bump chromium in DEPS to 111.0.5526.0 * chore: bump chromium in DEPS to 111.0.5528.0 * chore: update patches/chromium/mas_avoid_usage_of_private_macos_...
[ { "path": "BUILD.gn", "patch": "@@ -546,7 +546,7 @@ source_set(\"electron_lib\") {\n deps += [\n \"//components/remote_cocoa/app_shim\",\n \"//components/remote_cocoa/browser\",\n- \"//content/common:mac_helpers\",\n+ \"//content/browser:mac_helpers\",\n \"//ui/accelerated_wi...
2023-02-03T11:43:42
vercel/next.js
5c15979bccbbebebfb33194ad8b1bdf62f8be18a
ee84a02b4df1811e16a267a578a9dcb380d81a63
[turbopack] Enable debug assertions in CI (#80739) ## Enable debug assertions in CI ### What? Build using `--profile release-with-assertions` for all tests in CI. A previous PR (https://github.com/vercel/next.js/pull/80511) enabled them for unit tests, this completes the effort for e2e tests run in CI. There is one...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -315,6 +315,8 @@ jobs:\n export TURBOPACK_BUILD=1\n export NEXT_TEST_MODE=start\n export NEXT_TEST_REACT_VERSION=\"${{ matrix.react }}\"\n+ # TODO(PACK-4578): Remove\n+ export TURBOPACK_TEMP_DISABLE_DUPLICAT...
2025-06-24T16:10:43
golang/go
b4a333fea588b0df6f441f0e9838cff9338c71c4
e0b110b926c47227aa0669b630f5292152945bba
crypto/internal/fips140/bigmod: explicitly clear expanded limbs on reset Russ Cox noticed that reset was clearing limbs up to the *previous* Nat size, not up to the new size, because clear(x.limbs) was happening before the x.limbs[:n] reslice. That's potentially a severe issue, because it may leave garbage in x.limbs...
[ { "path": "src/crypto/internal/fips140/bigmod/nat.go", "patch": "@@ -96,7 +96,8 @@ func (x *Nat) reset(n int) *Nat {\n \t\tx.limbs = make([]uint, n)\n \t\treturn x\n \t}\n-\tclear(x.limbs)\n+\t// Clear both the returned limbs and the previously used ones.\n+\tclear(x.limbs[:max(n, len(x.limbs))])\n \tx.limb...
2025-03-05T11:08:35
facebook/react
5dd35968bef791ccc5948c657fabf191a77fff3f
3e97c00debbd6706b6ec6b7da15094bf2ba81ef4
fix: select console error to not suggest to set readonly to true (#27740) fix #27657 added test in the `ReactDOMSELECT-test.js` to not allow regession to happen in future. After changes this is what the error message looks like https://github.com/facebook/react/assets/72331432/53dcbe2a-70d2-43d2-a52d-a4fc...
[ { "path": "packages/react-dom-bindings/src/shared/ReactControlledValuePropTypes.js", "patch": "@@ -32,12 +32,19 @@ export function checkControlledValueProps(\n props.value == null\n )\n ) {\n- console.error(\n- 'You provided a `value` prop to a form field without an ' +\n- ...
2023-12-01T15:55:55
huggingface/transformers
02c38f7ad1257225f18fa5411769416b065080d7
5182cf3863cc1a25e3125d41e768ef904f0b84d0
Fix `Qwen2IntegrationTest` (#45268) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/qwen2/test_modeling_qwen2.py", "patch": "@@ -81,14 +81,14 @@ def test_model_450m_logits(self):\n out = model(input_ids).logits.float().cpu()\n # Expected mean on dim = -1\n EXPECTED_MEAN = Expectations({\n- (None, None): torch.tensor([[-2.2121, ...
2026-04-06T19:18:18
golang/go
fe9b292b11355af6b5f6e1d9247b88fa134657ed
d43c0f80d80ff274d30e46fa3737deb8863d7094
go/types,types2: allocate the used* maps in initFiles As described in the associated comment, we need to reallocate usedVars and usedPkgNames in initFiles, as they are nilled out at the end of Checker.Files, which may be called multiple times. Fixes #72122 Change-Id: I9f6eb86e072d9d43a8720f6a5e86d827de6006a9 Reviewe...
[ { "path": "src/cmd/compile/internal/types2/check.go", "patch": "@@ -315,6 +315,13 @@ func (check *Checker) initFiles(files []*syntax.File) {\n \tcheck.objPath = nil\n \tcheck.cleaners = nil\n \n+\t// We must initialize usedVars and usedPkgNames both here and in NewChecker,\n+\t// because initFiles is not ca...
2025-03-07T18:13:51