repo stringclasses 10
values | pr_number int64 7 155k | title stringlengths 4 137 | body stringlengths 0 68.4k | buggy_commit stringlengths 40 40 ⌀ | fix_commit stringlengths 40 40 | buggy_distance int64 1 30 ⌀ | confidence stringclasses 3
values | files listlengths 1 5 |
|---|---|---|---|---|---|---|---|---|
facebook/react | 35,091 | Fix: Activity should hide portal contents | Fixes https://github.com/facebook/react/issues/35000
This PR updates the behavior of Activity so that when it is hidden, it hides the contents of any portals contained within it.
Previously we had intentionally chosen not to implement this behavior, because it was thought that this concern should be left to the u... | dd048c3b2d8b5760dec718fb0926ca0b68660922 | 52684925368a41a0c9fbfca9016cdcbb72fc9d1e | 15 | medium | [
{
"filename": "packages/react-dom/src/__tests__/ReactDOMActivity-test.js",
"patch": "@@ -0,0 +1,134 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ ... |
vercel/next.js | 91,877 | test: scope css data-url typing to fixture | In the latest TypeScript version these imports now fail so updating the assertion to handle them
x-ref: https://github.com/vercel/next.js/actions/runs/23508766037/job/68431989897#step:35:443 | null | a7cf5eee7a7e9b5889d877d3f6d222eb1409cc9d | null | low | [
{
"filename": "test/e2e/css-data-url-global-pages/data-url-css.d.ts",
"patch": "@@ -0,0 +1,2 @@\n+// Test-local typing for Turbopack's CSS data URL side-effect import.\n+declare module 'data:text/css,*' {}",
"additions": 2,
"deletions": 0
}
] |
rust-lang/rust | 154,196 | Make `Ipv6Addr::multicast_scope()` exhaustive | And make `Ipv6MulticastScope` exhaustive, with `repr(u8)` and the proper discriminant values. The variants for the two reserved scopes are gated behind a perma-unstable feature, in order to avoid committing to names for them.
[IETF RFC 4291](https://datatracker.ietf.org/doc/html/rfc4291#section-2.7) and [IETF RFC 73... | null | 50fe743b9b5e2be79ccc290a92c9a8286376b8bd | null | low | [
{
"filename": "library/core/src/net/ip_addr.rs",
"patch": "@@ -177,15 +177,17 @@ impl Hash for Ipv6Addr {\n }\n }\n \n-/// Scope of an [IPv6 multicast address] as defined in [IETF RFC 7346 section 2].\n+/// Scope of an [IPv6 multicast address] as defined in [IETF RFC 7346 section 2],\n+/// which updates... |
nodejs/node | 62,151 | deps: update amaro to 1.1.8 | This is an automated update of amaro to 1.1.8. | null | ae228c1ff5934b0fa032d6ef9385d46d9328ac01 | null | low | [
{
"filename": "deps/amaro/README.md",
"patch": "@@ -41,11 +41,31 @@ node --import=\"amaro/strip\" file.ts\n Enabling TypeScript feature transformation:\n \n ```bash\n-node --experimental-transform-types --import=\"amaro/transform\" file.ts\n+node --enable-source-maps --import=\"amaro/transform\" file.ts\n `... |
electron/electron | 50,348 | ci: auto close PRs that do not fill out the required template | #### Description of Change
This PR adds a check to validate that the PR template has been filled out. If the template has not been filled out, the PR will be automatically closed with a note asking the author to update the description with the template
<!--
Thank you for your Pull Request. Please provide a descri... | null | 5959ecc3eefa33163e2eb72393008a6fd5082047 | null | low | [
{
"filename": ".github/PULL_REQUEST_TEMPLATE.md",
"patch": "@@ -5,6 +5,8 @@ Thank you for your Pull Request. Please provide a description above and review\n the requirements below.\n \n Contributors guide: https://github.com/electron/electron/blob/main/CONTRIBUTING.md\n+\n+NOTE: PRS submitted without this t... |
huggingface/transformers | 44,540 | Fix UnboundLocalError for tp_plan_alt when tp_plan is empty | Per the title, an error occurs when `tp_plan` is empty due to [here](https://github.com/huggingface/transformers/blob/701628527ae1ef37473f05f5d94fac7f457a3f8f/src/transformers/core_model_loading.py#L1120):
```
[rank0]: Traceback (most recent call last):
[rank0]: File "/workspace/test_moe_tp_ep.py", line 6, in <mo... | null | 1723c81db08897056ead72574644978ea7ba8491 | null | low | [
{
"filename": "src/transformers/core_model_loading.py",
"patch": "@@ -1179,7 +1179,7 @@ def convert_and_load_state_dict_in_model(\n \n # 4. Handle TP sharding or device_map placement\n future_or_tensor = None\n- if device_mesh:\n+ if device_mesh and tp_plan:\n ... |
facebook/react | 35,097 | [DevTools] Don't attempt to draw bounding box if inspected element is not a Suspense | Basically just skips a warning until we implement splitting `inspectedElementID` into inspected element and inspected Suspense. | 6362b5c7118f925acbee884e61ab0fd0b8f14c20 | 21c1d51acb2c38b774e254e2a0022b044eacb548 | 4 | medium | [
{
"filename": "packages/react-devtools-shared/src/devtools/store.js",
"patch": "@@ -669,6 +669,10 @@ export default class Store extends EventEmitter<{\n return element;\n }\n \n+ containsSuspense(id: SuspenseNode['id']): boolean {\n+ return this._idToSuspense.has(id);\n+ }\n+\n getSuspenseByID(... |
ollama/ollama | 13,238 | routes: fix missing logprobs in tool calls | ### Summary
Fixes #13092.
This PR ensures that `logprobs` are correctly returned when the model generates tool calls.
### Problem
Previously, when `toolParser` or `builtinParser` buffered content to parse JSON tool calls, the intermediate chunks containing `logprobs` were dropped because the content was tempora... | e082d60a2406d54cc8c13d7e408f08818e7939d1 | 1c4e85b4df1a8ebcb0f578ea423cc1a0d0adf873 | 13 | medium | [
{
"filename": "server/routes.go",
"patch": "@@ -2195,7 +2195,7 @@ func (s *Server) ChatHandler(c *gin.Context) {\n \t\t\t\t\t\treturn\n \t\t\t\t\t}\n \n-\t\t\t\t\tif res.Message.Content != \"\" || res.Message.Thinking != \"\" || len(res.Message.ToolCalls) > 0 || r.Done {\n+\t\t\t\t\tif res.Message.Content !... |
facebook/react | 35,085 | Remove Dead Code in WWW JS | Reviewed By: bhamodi
Differential Revision: D86593830
| a44e750e87fd0869cdeda0418e279e19c1ee07dd | be48396dbd77a54e86dd4622678559be96706991 | 10 | medium | [
{
"filename": "packages/react-dom-bindings/src/client/ReactDOMComponentTree.js",
"patch": "@@ -293,8 +293,9 @@ export function updateFiberProps(node: Instance, props: Props): void {\n }\n \n export function getEventListenerSet(node: EventTarget): Set<string> {\n- let elementListenerSet: Set<string> | void;... |
vercel/next.js | 90,304 | Fix(pages-router): restore Content-Length and ETag for /_next/data/ JSON responses | ## What
Removes the `Buffer.from()` wrapper when constructing `RenderResult` for
`/_next/data/` JSON responses in the Pages Router handler.
## Why
PR #80189 introduced `Buffer.from(JSON.stringify(result.value.pageData))`
when building the data response. Since `RenderResult.isDynamic` checks
`typeof this.res... | 97f420911da9e1caec5e47535caa16f01c1be493 | 962e5b166cea3fdb6589837a8fd3ea62031be17d | 18 | medium | [
{
"filename": "AGENTS.md",
"patch": "@@ -148,13 +148,13 @@ pnpm test-dev-turbo test/development/\n Generating tests using `pnpm new-test` is mandatory.\n \n ```bash\n-# Use --args for non-interactive mode\n-# Format: pnpm new-test --args <appDir> <name> <type>\n+# Use --args for non-interactive mode (forwar... |
ollama/ollama | 13,276 | cmd/bench: fix binary name in README | The instruction `go build -o ollama-bench bench.go` creates a binary called `ollama-bench`. | 56b8fb024cb530c738dc6ddb5cd76714255f1a6e | dac4f17fea99dc18628d743e80f91dcd15ab4bce | 1 | high | [
{
"filename": "cmd/bench/README.md",
"patch": "@@ -15,7 +15,7 @@ A Go-based command-line tool for benchmarking Ollama models with configurable pa\n \n ```\n go build -o ollama-bench bench.go\n-./bench -model gpt-oss:20b -epochs 6 -format csv\n+./ollama-bench -model gpt-oss:20b -epochs 6 -format csv\n ```\n ... |
facebook/react | 35,087 | [Fizz] Simplify createSuspenseBoundary path | Small follow up to #35068.
Since this is now a single argument we can simplify the creation branching a bit and make sure it's const. | fa50caf5f84bb8976aa1dbff7f15a821e44e7af7 | c83be7da9f0861770d7df52842d1c3dfe60f0927 | 5 | medium | [
{
"filename": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -1291,24 +1291,13 @@ function renderSuspenseBoundary(\n const defer: boolean = enableCPUSuspense && props.defer === true;\n \n const fallbackAbortSet: Set<Task> = new Set();\n- let newBoundary: SuspenseBoundary;\n- if (canHaveP... |
rust-lang/rust | 154,410 | Clean up the API for opening/checking incremental-compilation files | Returning dedicated structs and enums makes the meaning of each return value more obvious, and provides a more natural home for documentation.
This part of the codebase is fairly crufty, and I doubt anyone feels fully confident about reviewing changes to it, but hopefully these particular cleanups should be fairly s... | null | 7b5fe9efa2139a26189d5e43d9f16c57de1c16b9 | null | low | [
{
"filename": "compiler/rustc_incremental/src/persist/file_format.rs",
"patch": "@@ -12,7 +12,7 @@\n use std::borrow::Cow;\n use std::io::{self, Read};\n use std::path::{Path, PathBuf};\n-use std::{env, fs};\n+use std::{array, env, fs};\n \n use rustc_data_structures::memmap::Mmap;\n use rustc_serialize::En... |
huggingface/transformers | 44,592 | FIX Multiple PEFT errors after v5 transition | # What does this PR do?
Multiple PEFT tests are failing due to recent changes in transformers.
- hf_device_map attribute may not exist in some cases
- respect inference_mode in load_adapter
- new model loading requires changes for bnb (SCB attribute etc.)
These tests have been failing for quite some time now... | 0a0ac7a2875cf481f1edf77552a7c5a6ae1399a5 | cda09a00721968a9b2eb036574e6f6c1e8d04b7a | 22 | medium | [
{
"filename": "src/transformers/integrations/peft.py",
"patch": "@@ -566,19 +566,32 @@ def load_adapter(\n else:\n checkpoint_files, sharded_metadata = [], {}\n \n+ device_map = getattr(self, \"hf_device_map\", {\"\": self.device})\n load_config = replace(\n lo... |
nodejs/node | 62,149 | deps: update merve to 1.2.0 | This is an automated update of merve to 1.2.0. | null | 59a522af24173b244cb86829de145d46b143a45c | null | low | [
{
"filename": "deps/merve/merve.cpp",
"patch": "@@ -1,4 +1,4 @@\n-/* auto-generated on 2026-01-21 14:02:13 -0500. Do not edit! */\n+/* auto-generated on 2026-03-06 11:46:19 -0500. Do not edit! */\n #include \"merve.h\"\n \n /* begin file src/parser.cpp */\n@@ -313,8 +313,42 @@ struct StarExportBinding {\n ... |
electron/electron | 50,342 | fix: ensure WebContents::WasShown runs when window is shown | Backport of #49421
See that PR for details.
Notes: Fixed window freeze when failing to enter/exit fullscreen on macOS. | null | a7744df5921ad282bb8b0e33b17c030c6f70f2cc | null | low | [
{
"filename": "shell/browser/api/electron_api_browser_window.cc",
"patch": "@@ -276,16 +276,22 @@ v8::Local<v8::Value> BrowserWindow::GetWebContents(v8::Isolate* isolate) {\n }\n \n void BrowserWindow::OnWindowShow() {\n+ if (!web_contents_shown_) {\n+ web_contents()->WasShown();\n+ web_contents_show... |
ollama/ollama | 13,216 | cmd/bench: fix options table in cmd/bench/README.md | Fix the broken markdown table in cmd/bench/README.md | null | 56b8fb024cb530c738dc6ddb5cd76714255f1a6e | null | low | [
{
"filename": "cmd/bench/README.md",
"patch": "@@ -54,6 +54,7 @@ benchstat -col /name gemma.bench\n ## Command Line Options\n \n | Option \t| Description | Default |\n+|----------|-------------|---------|\n | -model\t| Comma-separated list of models to benchmark\t| (required)\t\t|\n | -epochs\t| Number of ... |
vercel/next.js | 89,080 | Turbopack: Define `Effect` as a trait instead of a closure | This switches effects (special `Collectible`s used to defer file writes) from using a closure representation to using a trait representation.
This makes constructing effects a little more annoying, but it ensures that we'll be able to correctly implement `TraceRawVcs` on these in a subsequent PR.
Changes to `turbo-ta... | null | 468a40fa32bcd0d3683d8fa13ce4dbab892b65eb | null | low | [
{
"filename": "turbopack/crates/turbo-tasks-fs/src/lib.rs",
"patch": "@@ -36,6 +36,7 @@ use std::{\n borrow::Cow,\n cmp::{Ordering, min},\n env,\n+ error::Error as StdError,\n fmt::{self, Debug, Formatter},\n fs::FileType,\n future::Future,\n@@ -63,9 +64,9 @@ use tokio::{\n use tr... |
facebook/react | 35,071 | [DevTools] Special case the selected root outline | When I moved the outline to above all other rects, I thought it was clever to unify with the root so that the outline was also used for the root selection. But the root outline is not drawn like the other rects. It's outside the padding and doesn't have the 1px adjustment which leads the overlay to be slightly inside t... | 6fb77544940d033355c660556dbc48a08d1d6708 | 6362b5c7118f925acbee884e61ab0fd0b8f14c20 | 25 | medium | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseRects.css",
"patch": "@@ -12,6 +12,11 @@\n background-color: color-mix(in srgb, var(--color-transition) 5%, transparent);\n }\n \n+.SuspenseRectsRootOutline {\n+ outline-width: 4px;\n+ border-radius: 0.125rem;\n+}\n+\n ... |
huggingface/transformers | 44,582 | Fix missing BPE token conversion step in Chameleon | # What does this PR do?
Fix an issue introduced in #42564 . The refactor embedded raw image tokens instead of BPE tokens, causing the model to output gibberish. This fix adds back the image tokens to BPE tokens conversion before embedding.
Cc @hmellor @zucchini-nlp
| null | 1c70fdbc9ae5e7607e4c54be64a726c412598e37 | null | low | [
{
"filename": "src/transformers/models/chameleon/modeling_chameleon.py",
"patch": "@@ -899,8 +899,10 @@ def get_image_features(\n pixel_values (`torch.FloatTensor` of shape `(batch_size, num_channels, image_size, image_size)`):\n The tensors corresponding to the input images.\n \... |
nodejs/node | 62,150 | deps: update sqlite to 3.52.0 | This is an automated update of sqlite to 3.52.0. | null | 3dff7eff141cc7534db2b83d3f79f69afb703607 | null | low | [
{
"filename": "deps/sqlite/sqlite3.h",
"patch": "@@ -146,12 +146,12 @@ extern \"C\" {\n ** [sqlite3_libversion_number()], [sqlite3_sourceid()],\n ** [sqlite_version()] and [sqlite_source_id()].\n */\n-#define SQLITE_VERSION \"3.51.2\"\n-#define SQLITE_VERSION_NUMBER 3051002\n-#define SQLITE_SOURCE_ID... |
rust-lang/rust | 154,234 | Use common Timestamp impl in Hermit (attempt 2) | The goal is to have less code to maintain, so to be able to make changes easier.
Previous attempt https://github.com/rust-lang/rust/pull/148847 was asked to postpone because there was restructure of code, which is complete now.
r? joboet | null | d471d0ba1bb664e543696813a0fcb485a8e5fb1d | null | low | [
{
"filename": "library/std/src/sys/fs/hermit.rs",
"patch": "@@ -109,15 +109,15 @@ pub struct DirBuilder {\n \n impl FileAttr {\n pub fn modified(&self) -> io::Result<SystemTime> {\n- Ok(SystemTime::new(self.stat_val.st_mtim.tv_sec, self.stat_val.st_mtim.tv_nsec))\n+ SystemTime::new(self.st... |
nodejs/node | 62,148 | test: update WPT for url to c928b19ab0 | This is an automated update of the WPT for url to https://github.com/web-platform-tests/wpt/commit/c928b19ab04a4525807238e9299c23f3a1cca582. | 9220d4e75298f456a4bbeb060cb30ce57f5891c3 | a48e37b67dcb3fe36ca561f86030fe7046a12018 | 1 | medium | [
{
"filename": "test/fixtures/wpt/README.md",
"patch": "@@ -28,7 +28,7 @@ Last update:\n - resource-timing: https://github.com/web-platform-tests/wpt/tree/22d38586d0/resource-timing\n - resources: https://github.com/web-platform-tests/wpt/tree/1d2c5fb36a/resources\n - streams: https://github.com/web-platform... |
electron/electron | 50,340 | fix: correctly track BaseWindow::IsActive() on MacOS | Backport of #49460
See that PR for details.
Notes: Fixed improper focus tracking in BaseWindow on MacOS | null | aba01d38dc01c1e84e9e4829800cf2c42404b06a | null | low | [
{
"filename": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -317,6 +317,12 @@ void BaseWindow::OnWindowSheetEnd() {\n Emit(\"sheet-end\");\n }\n \n+void BaseWindow::OnWindowIsKeyChanged(bool is_key) {\n+#if BUILDFLAG(IS_MAC)\n+ window()->SetActive(is_key);\n+#endif\n+}\n+\n void BaseWindo... |
huggingface/transformers | 44,231 | [Performance] FP8 Grouped and Batched Matmuls | # What does this PR do?
<!--
Congratulations! You've made it this far! You're not quite done yet though.
Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully reflects the extent of your awesome contribution.
Then, please replace this w... | 8464284d2f65b60b2c80cf41fd9b57891ebe25ef | ff2ba441a8bc9f7636bf22def908b53bfa4e1db2 | 2 | medium | [
{
"filename": "src/transformers/integrations/finegrained_fp8.py",
"patch": "@@ -11,51 +11,85 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n+import torch\n+import torc... |
facebook/react | 35,074 | Fix: Errors should not escape a hidden Activity | If an error is thrown inside a hidden Activity, it should not escape into the visible part of the UI. Conceptually, a hidden Activity boundary is not part of the current UI; it's the same as an unmounted tree, except for the fact that the state will be restored if it's later revealed.
Fixes:
- https://github.com/fa... | dd048c3b2d8b5760dec718fb0926ca0b68660922 | 717e70843e68db648d2fc75c57d1a61465a9f7f9 | 11 | medium | [
{
"filename": "packages/react-reconciler/src/ReactFiberThrow.js",
"patch": "@@ -12,7 +12,10 @@ import type {Lane, Lanes} from './ReactFiberLane';\n import type {CapturedValue} from './ReactCapturedValue';\n import type {Update} from './ReactFiberClassUpdateQueue';\n import type {Wakeable} from 'shared/React... |
vercel/next.js | 91,846 | ci: upload adapter deploy test results | Adds a final step to our e2e deploy test job to upload results for our adapter for comparison.
x-ref: https://github.com/vercel/next.js/actions/runs/23471649794/job/68298210825#step:5:40 | 75193d5f26da3e4ec0f9c7693be80216e36673fa | 9920dbace1589975829adca3209d864d394ea213 | 16 | medium | [
{
"filename": ".github/workflows/build_reusable.yml",
"patch": "@@ -79,6 +79,11 @@ on:\n required: false\n type: string\n default: ''\n+ testReportsArtifactPrefix:\n+ description: 'Artifact name prefix for uploading test `*.results.json` files. Empty string disables uploa... |
ollama/ollama | 13,137 | app/ui: use requestAnimationFrame to prevent bottom line cutoff in streaming thinking display | When models with thinking capability stream their reasoning in real-time, the bottomline of thinking content is cut off and not visible to users in the collapsed thinking panel.
The reason why is because the thinking component uses CSS `translateY()` transform to position content and show the bottom portion in colla... | null | c34fc64688396bb9f2e17a2a89251a63f58ee4f7 | null | low | [
{
"filename": "app/ui/app/src/components/Thinking.tsx",
"patch": "@@ -50,21 +50,33 @@ export default function Thinking({\n // Position content to show bottom when collapsed\n useEffect(() => {\n if (isCollapsed && contentRef.current && wrapperRef.current) {\n- const contentHeight = contentRef.c... |
nodejs/node | 62,147 | test: update WPT for WebCryptoAPI to c9e955840a | This is an automated update of the WPT for WebCryptoAPI to https://github.com/web-platform-tests/wpt/commit/c9e955840a21be6e492225a4a53fc4828d8933b9. | 7feff3a715bf2954534505e64e43b60afee35435 | 9220d4e75298f456a4bbeb060cb30ce57f5891c3 | 17 | medium | [
{
"filename": "test/fixtures/wpt/README.md",
"patch": "@@ -34,7 +34,7 @@ Last update:\n - wasm/jsapi: https://github.com/web-platform-tests/wpt/tree/cde25e7e3c/wasm/jsapi\n - wasm/webapi: https://github.com/web-platform-tests/wpt/tree/fd1b23eeaa/wasm/webapi\n - web-locks: https://github.com/web-platform-tes... |
vercel/next.js | 91,855 | Fix TS6 baseUrl deprecation for extended tsconfig | ## Summary
- handle `compilerOptions.baseUrl` inherited via `extends` in TS6 config normalization
- rewrite `paths` using the resolved base URL and remove `baseUrl` from parsed compiler options
- keep existing behavior for direct `baseUrl` while avoiding TS5101 in typecheck
follow-up to https://github.com/vercel/... | aa3ba7ed15db36f1d21c827dd695a4e24a8955c6 | 2e92c31f1a168e2d76cca15d2922e2501ff066aa | 2 | medium | [
{
"filename": "packages/next/src/build/index.ts",
"patch": "@@ -219,6 +219,7 @@ import {\n writeRouteTypesManifest,\n writeValidatorFile,\n } from '../server/lib/router-utils/route-types-utils'\n+import { writeCacheLifeTypes } from '../server/lib/router-utils/cache-life-type-utils'\n import { Lockfile }... |
rust-lang/rust | 154,081 | format safety doc of Rc/Arc::from_raw/from_raw_in | The following APIs previously had safety notes, but they were not placed under a dedicated Safety section. This PR adds a Safety section for each API and moves the original safety descriptions there:
- [`Rc::from_raw`](https://doc.rust-lang.org/nightly/alloc/rc/struct.Rc.html#method.from_raw)
- [`Rc::from_raw_in`](ht... | null | 3c6a2bc0afb89d9b91d063320fb855fad4ca3b0e | null | low | [
{
"filename": "library/alloc/src/rc.rs",
"patch": "@@ -1430,29 +1430,32 @@ impl<T: ?Sized> Rc<T> {\n /// Constructs an `Rc<T>` from a raw pointer.\n ///\n /// The raw pointer must have been previously returned by a call to\n- /// [`Rc<U>::into_raw`][into_raw] with the following requirements:\... |
electron/electron | 50,339 | fix: correctly track BaseWindow::IsActive() on MacOS | Backport of #49460
See that PR for details.
Notes: Fixed improper focus tracking in BaseWindow on MacOS | null | b0d5b63477f17ac57e3474ecdc21718cc69b8e8e | null | low | [
{
"filename": "shell/browser/api/electron_api_base_window.cc",
"patch": "@@ -307,6 +307,12 @@ void BaseWindow::OnWindowSheetEnd() {\n Emit(\"sheet-end\");\n }\n \n+void BaseWindow::OnWindowIsKeyChanged(bool is_key) {\n+#if BUILDFLAG(IS_MAC)\n+ window()->SetActive(is_key);\n+#endif\n+}\n+\n void BaseWindo... |
facebook/react | 31,655 | Upgrade devtools dependency update-notifier to 5.x | ## Summary
This PR upgrades the dependency on update-notifier, used in react-devtools, to 5.x
This is the latest non-ESM version, so upgrading to it should be unproblematic (while updating to 6.x and beyond will have to wait).
Upgrading means we avoid installing a lot of outdated dependencies (as can be seen fro... | null | a10ff9c8577004fa054be4f83906a29289bbffb9 | null | low | [
{
"filename": "packages/react-devtools/package.json",
"patch": "@@ -27,6 +27,6 @@\n \"internal-ip\": \"^6.2.0\",\n \"minimist\": \"^1.2.3\",\n \"react-devtools-core\": \"7.0.1\",\n- \"update-notifier\": \"^2.1.0\"\n+ \"update-notifier\": \"^5.0.0\"\n }\n }",
"additions": 1,
"dele... |
huggingface/transformers | 44,577 | Fix: AQLM quantizer to match updated replace_with_aqlm_linear signature | - Fix quantizer_aqlm.py to use renamed modules_to_not_convert parameter instead of removed linear_weights_not_to_quantize
- Update test to match new function signature: no tuple return, module names instead of weight names | null | 42ff4f324f02448dcf03ea7d619f682b4e62c010 | null | low | [
{
"filename": "src/transformers/quantizers/quantizer_aqlm.py",
"patch": "@@ -55,7 +55,7 @@ def _process_model_before_weight_loading(\n replace_with_aqlm_linear(\n model,\n quantization_config=self.quantization_config,\n- linear_weights_not_to_quantize=self.quantiza... |
facebook/react | 35,068 | [Fizz] Unify preamble only fields to save a field | Stacked on #35067.
Same idea of saving a field on the SuspenseBoundary in the common case. The case where they can have a preamble is rare. | 1e986f514f7fdf73d013bf6595a47dfcb0cf2da7 | fa50caf5f84bb8976aa1dbff7f15a821e44e7af7 | 1 | medium | [
{
"filename": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -255,8 +255,7 @@ type SuspenseBoundary = {\n fallbackAbortableTasks: Set<Task>, // used to cancel task on the fallback if the boundary completes or gets canceled.\n contentState: HoistableState,\n fallbackState: HoistableState,... |
ollama/ollama | 13,179 | app/ui: fix model capabilities not updating after download completion | This PR partially fixes #12950.
Model capabilities (such as vision support) were not being detected after a model finished downloading during chat. The /api/show endpoint was never called after the download completed, so the UI continued to treat the model as lacking capabilities, resulting in incorrect error messag... | null | bbbb6b2a013b3fb27ddd7d7132a9dd6026f3e7ad | null | low | [
{
"filename": "app/ui/app/src/hooks/useChats.ts",
"patch": "@@ -7,6 +7,7 @@ import { createQueryBatcher } from \"./useQueryBatcher\";\n import { useRefetchModels } from \"./useModels\";\n import { useStreamingContext } from \"@/contexts/StreamingContext\";\n import { useSettings } from \"./useSettings\";\n+... |
nodejs/node | 62,071 | doc: copyedit `addons.md` | * Make the intro less C++-centric (`node` has way of knowing what language the shared object was compiled from, C++ is just what we happen to document and support)
* Give a GYP-less build example (for most use-case, starting a GYP project would be a mistake. Having a simpler Makefile setup makes more sense for a Hello... | null | e39e1fdce8bf131b387cccab5bd2c038c4c55a86 | null | low | [
{
"filename": "doc/api/addons.md",
"patch": "@@ -4,22 +4,17 @@\n \n <!-- type=misc -->\n \n-_Addons_ are dynamically-linked shared objects written in C++. The\n-[`require()`][require] function can load addons as ordinary Node.js modules.\n-Addons provide an interface between JavaScript and C/C++ libraries.\... |
facebook/react | 35,067 | [Fizz] Unify prerender only fields to save a field | I need to regain a field because the SuspenseBoundary type is already at 16 fields in prod, after which it deopts v8.
There are two fields that are only used in prerender to track postpones. These are ripe to be split into an optional object so that they only take up one field when they're not used. | 0ba2f01f7470f2f78a2698adf2644b0801ef3c98 | 1e986f514f7fdf73d013bf6595a47dfcb0cf2da7 | 7 | medium | [
{
"filename": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -257,8 +257,10 @@ type SuspenseBoundary = {\n fallbackState: HoistableState,\n contentPreamble: null | Preamble,\n fallbackPreamble: null | Preamble,\n- trackedContentKeyPath: null | KeyNode, // used to track the path for repl... |
ollama/ollama | 13,162 | nomic-embed-text:v2: model implementation | This PR is the model implementation file for nomic-embed-text:v2 which has MOE | 603ceefaa67feee627e01cae1df1e0642e1c868f | 76f88caf437c3f48b68ff6df649e283f7370b27b | 5 | medium | [
{
"filename": "convert/convert.go",
"patch": "@@ -202,6 +202,8 @@ func ConvertModel(fsys fs.FS, f *os.File) error {\n \t\tconv = &qwen3VLModel{}\n \tcase \"BertModel\":\n \t\tconv = &bertModel{}\n+\tcase \"NomicBertModel\", \"NomicBertMoEModel\":\n+\t\tconv = &nomicbertModel{}\n \tcase \"CohereForCausalLM\"... |
rust-lang/rust | 154,375 | large_enums mir pass: fix is_enabled logic | This logic got turned from a guard in `run_pass` to an `is_enabled` check in https://github.com/rust-lang/rust/pull/85158/changes/15d4728cda673e90b4db1ea2c60d18a6fae306d0#r2989096960, but that was done incorrectly. The pass must never be enabled without `unsound_mir_opts`! | null | f58bd5cee4ce4a97b03146fa94fc9ba68ddd5f64 | null | low | [
{
"filename": "compiler/rustc_mir_transform/src/large_enums.rs",
"patch": "@@ -32,8 +32,8 @@ impl<'tcx> crate::MirPass<'tcx> for EnumSizeOpt {\n fn is_enabled(&self, sess: &Session) -> bool {\n // There are some differences in behavior on wasm and ARM that are not properly\n // understoo... |
electron/electron | 50,341 | fix: ensure WebContents::WasShown runs when window is shown | Backport of #49421
See that PR for details.
Notes: Fixed window freeze when failing to enter/exit fullscreen on macOS. | null | 87baa17e653a118d83926875d323a48c81c5b9ed | null | low | [
{
"filename": "shell/browser/api/electron_api_browser_window.cc",
"patch": "@@ -280,16 +280,22 @@ v8::Local<v8::Value> BrowserWindow::GetWebContents(v8::Isolate* isolate) {\n }\n \n void BrowserWindow::OnWindowShow() {\n+ if (!web_contents_shown_) {\n+ web_contents()->WasShown();\n+ web_contents_show... |
huggingface/transformers | 44,565 | [device_map] Fix device_map computation by correctly adjusting memory available | # What does this PR do?
As per the title. The unused memory is taken into account too late, which leads to different device_map for the same hardware and models, and even random cuda OOM!! Basically, the max memory needs to be adjusted BEFORE being used in `get_balanced_memory`. Consider the following example:
``... | null | 4b442cd65a3f725ac09030eadcbf166e4ae24c00 | null | low | [
{
"filename": "src/transformers/integrations/accelerate.py",
"patch": "@@ -43,7 +43,7 @@\n \n if is_accelerate_available():\n from accelerate import dispatch_model\n- from accelerate.utils import get_max_memory\n+ from accelerate.utils import get_max_memory as accelerate_max_memory\n from acce... |
ollama/ollama | 13,382 | fix: qwen2.5vl metal argsort | this change fixes an issue with qwen2.5vl model crash when an image is passed in | 0cf7794b16fab8d4561bc5f6379f6d48bd59e101 | d475d1f081e5455dcfdf9e958619223565b9bf52 | 14 | medium | [
{
"filename": "llama/patches/0013-add-argsort-and-cuda-copy-for-i32.patch",
"patch": "@@ -4,12 +4,12 @@ Date: Thu, 1 May 2025 13:45:12 -0700\n Subject: [PATCH] add argsort and cuda copy for i32\n \n ---\n- ggml/src/ggml-cpu/ops.cpp | 43 ++++++++++\n- ggml/src/ggml-cuda/argsort.cu | 122 ++... |
vercel/next.js | 91,079 | example: remove duplicate items in .dockerignore | Removed duplicate entries for cache and temporary directories.
```diff
- # Cache directories and temporary data
- .cache/
- .parcel-cache/
- .eslintcache
- .stylelintcache
- .turbo/
- .tmp/
# Cache directories and temporary data
.cache/
.parcel-cache/
.eslintcache
.stylelintcache
.swc/
.turbo/
.tmp/
... | null | 5a226232621078e83a4d3a8123affb45334aa2ac | null | low | [
{
"filename": "examples/with-docker/.dockerignore",
"patch": "@@ -75,13 +75,6 @@ docs/\n .circleci/\n Jenkinsfile\n \n-# Cache directories and temporary data\n-.cache/\n-.parcel-cache/\n-.eslintcache\n-.stylelintcache\n-.turbo/\n-.tmp/\n # Cache directories and temporary data\n .cache/\n .parcel-cache/",
... |
facebook/react | 35,066 | Don't skip content in visible offscreen trees for Gesture View Transitions | Follow up to #35063.
I forgot there's another variant of this in the ApplyGesture path. | null | 38bdda1ca61cef1b0abe8ca64dd8813fc7288d69 | null | low | [
{
"filename": "packages/react-reconciler/src/ReactFiberApplyGesture.js",
"patch": "@@ -146,7 +146,7 @@ function trackDeletedPairViewTransitions(deletion: Fiber): void {\n }\n let child = deletion.child;\n while (child !== null) {\n- if (child.tag === OffscreenComponent && child.memoizedState === nu... |
nodejs/node | 61,496 | src: improve textEncoder encode performance with simdutf | Ref: https://github.com/cloudflare/workerd/pull/5448
Benchmark CI: https://ci.nodejs.org/view/Node.js%20benchmark/job/benchmark-node-micro-benchmarks/1789/
```
confidence improvement accuracy (*) (**) (***)
util/text-encoder.js op... | null | f200685d9930404d610a52d9e06513bf0a821ed4 | null | low | [
{
"filename": "src/encoding_binding.cc",
"patch": "@@ -312,11 +312,12 @@ void BindingData::EncodeUtf8String(const FunctionCallbackInfo<Value>& args) {\n CHECK_GE(args.Length(), 1);\n CHECK(args[0]->IsString());\n \n- Local<String> str = args[0].As<String>();\n- size_t length = str->Utf8LengthV2(isolat... |
vercel/next.js | 91,099 | Fix preview tarball script to include @next/swc-linux-x64-gnu | ### What?
Adds `@next/swc-linux-x64-gnu` to the preview tarball patching script (`scripts/patch-preview-tarball.mjs`):
1. Adds the package to the `PACKAGES_TO_PATCH` list so its tarball URL is fetched.
2. Adds the package as an explicit dependency in the patched `package.json`, in addition to the overrides/resolution... | 5e965bbb2d85a851c84b9c5ee20c34ff2814021f | 9c939729d1681adfe6b1d62670ceedd901f85b8b | 6 | medium | [
{
"filename": "scripts/patch-preview-tarball.mjs",
"patch": "@@ -10,6 +10,7 @@ const PACKAGES_TO_PATCH = [\n '@next/mdx',\n '@next/env',\n '@next/bundle-analyzer',\n+ '@next/swc-linux-x64-gnu',\n ]\n \n // --- Argument parsing ---\n@@ -186,6 +187,12 @@ async function patchPackageJson(projectPath, tar... |
electron/electron | 50,343 | fix: ensure WebContents::WasShown runs when window is shown | Backport of #49421
See that PR for details.
Notes: Fixed window freeze when failing to enter/exit fullscreen on macOS. | null | a0f01336a37b1fe3df1a8c508db977b6cd269f6f | null | low | [
{
"filename": "shell/browser/api/electron_api_browser_window.cc",
"patch": "@@ -280,16 +280,22 @@ v8::Local<v8::Value> BrowserWindow::GetWebContents(v8::Isolate* isolate) {\n }\n \n void BrowserWindow::OnWindowShow() {\n+ if (!web_contents_shown_) {\n+ web_contents()->WasShown();\n+ web_contents_show... |
rust-lang/rust | 153,675 | simd_add/sub/mul/neg: document overflow behavior | `simd_neg` had an odd comment about overflow not being UB, without saying what the behavior is instead. Replace that by just saying this uses wrapping arithmetic, and add the same for add/sub/mul. div/rem are already documented to cause UB on div-by-zero and min-div-by-minus-one, and shl/shr cause UB on too large shift... | null | f229fc0e7795b61322e537cd763ef5d5718916dd | null | low | [
{
"filename": "library/core/src/intrinsics/simd.rs",
"patch": "@@ -62,20 +62,23 @@ pub const unsafe fn simd_splat<T, U>(value: U) -> T;\n /// Adds two simd vectors elementwise.\n ///\n /// `T` must be a vector of integers or floats.\n+/// For integers, wrapping arithmetic is used.\n #[rustc_intrinsic]\n #[r... |
huggingface/transformers | 44,579 | Fix PR comment CI for quantization job | # What does this PR do?
We need to fetch the specific commit (the so called merge commit created by Github itself) | null | 519c26f9c41bd77bdd20fc0420dd766a2482193e | null | low | [
{
"filename": ".github/workflows/self-scheduled.yml",
"patch": "@@ -449,7 +449,7 @@ jobs:\n working-directory: /transformers\n env:\n commit_sha: ${{ inputs.commit_sha || github.sha }}\n- run: git fetch && git checkout \"$commit_sha\"\n+ run: git fetch origin \"$commi... |
ollama/ollama | 13,348 | CI: use vendor base commit in cache keys | Prevent CGO from accidentally reusing old object files from the cache across vendor updates | 0cf7794b16fab8d4561bc5f6379f6d48bd59e101 | 5dae738067414d235ee386abd690faf1a8da9ff4 | 10 | medium | [
{
"filename": ".github/workflows/release.yaml",
"patch": "@@ -16,13 +16,15 @@ jobs:\n outputs:\n GOFLAGS: ${{ steps.goflags.outputs.GOFLAGS }}\n VERSION: ${{ steps.goflags.outputs.VERSION }}\n+ vendorsha: ${{ steps.changes.outputs.vendorsha }}\n steps:\n - uses: actions/checko... |
vercel/next.js | 91,118 | Turbopack: Pass hmr_enabled to ImportMetaBinding | `is_hot_module_replacement_enabled` was removed from ChunkingContexts. Instead, pass it through from CompileTimeInfo when constructing ImportMetaBinding during analysis.
Test Plan: CI
| 014b9987faa629accb6150c917bc328358d299a0 | 5e11e67759fa38fe67f70790d7bba8c9ff9ba5fd | 2 | medium | [
{
"filename": "turbopack/crates/turbopack-ecmascript/src/references/esm/meta.rs",
"patch": "@@ -31,11 +31,12 @@ use crate::{\n )]\n pub struct ImportMetaBinding {\n path: FileSystemPath,\n+ hmr_enabled: bool,\n }\n \n impl ImportMetaBinding {\n- pub fn new(path: FileSystemPath) -> Self {\n- ... |
facebook/react | 35,063 | Don't skip content in visible offscreen trees for View Transitions | Also, don't not skip hidden trees.
Memoized state is null when an Offscreen boundary (Suspense or Activity) is visible.
This logic was inversed in a couple of View Transition checks which caused pairs to be discovered or not discovered incorrectly for insertion and deletion of Suspense or Activity boundaries. | null | 37b089a59cc14b6442b27303942d62425f9cea35 | null | low | [
{
"filename": "packages/react-reconciler/src/ReactFiberCommitViewTransitions.js",
"patch": "@@ -233,7 +233,7 @@ function commitAppearingPairViewTransitions(placement: Fiber): void {\n }\n let child = placement.child;\n while (child !== null) {\n- if (child.tag === OffscreenComponent && child.memoiz... |
rust-lang/rust | 154,485 | Revert "Link LLVM dynamically on aarch64-apple-darwin" and "re-enable enzyme/autodiff builds on dist-aarch64-apple" | This reverts commit e7c268f8837b2e67d1f90a75357a4c58f697dc59.
<!-- homu-ignore:start -->
<!--
If this PR is related to an unstable feature or an otherwise tracked effort,
please link to the relevant tracking issue here. If you don't know of a related
tracking issue or there are none, feel free to ignore this.
... | fc5a7077ca43894de1ea0d3f9f56ac627ceef5c7 | c4db0e127c6e96d1798423bf9f205fd06f5481a6 | 27 | medium | [
{
"filename": "compiler/rustc_llvm/build.rs",
"patch": "@@ -402,16 +402,6 @@ fn main() {\n continue;\n }\n \n- // On apple-darwin, llvm-config reports the versioned shared library name such as LLVM-22-..., but\n- // the distributed toolchain ships libLLVM.dylib. Normalize t... |
nodejs/node | 61,980 | lib: improve argument handling in Blob constructor | As specified in WebIDL (<https://webidl.spec.whatwg.org/#js-dictionary>), the fields of a dictionary need to be read in lexicographical order.
<!--
Before submitting a pull request, please read:
- the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md
- the commit message formatting ... | null | 7cf2dad7152a01854b111e38a6a213cf4ed43ba6 | null | low | [
{
"filename": "lib/internal/blob.js",
"patch": "@@ -149,8 +149,8 @@ class Blob {\n }\n validateDictionary(options, 'options');\n let {\n- type = '',\n endings = 'transparent',\n+ type = '',\n } = options ?? kEmptyObject;\n \n endings = `${endings}`;",
"additions": 1,
... |
huggingface/transformers | 44,575 | Correct Tapas initialization | Some parameters in Tapas are initialized in `__init__()` and not reinitialized in `_init_weights()`, which means that if the model is created on the `meta` device, those parameters do not get a weight initialization. This causes a crash later if the uninitialized memory has some `NaN` values in it! This caused the `tes... | null | 3b6c11d47befa9b66755142dbf301f36a096db11 | null | low | [
{
"filename": "src/transformers/models/tapas/modeling_tapas.py",
"patch": "@@ -512,6 +512,15 @@ def _init_weights(self, module):\n super()._init_weights(module)\n if isinstance(module, TapasLMPredictionHead):\n init.zeros_(module.bias)\n+ if isinstance(module, TapasForQues... |
facebook/react | 35,060 | Escape View Transition Name Strings as base64 | This is an alternative to #35059.
If the name needs escaping, then instead of escaping it, we just use a base64 name. This wouldn't allow you to match on an escaped name in your own CSS like you should be able to if browsers worked properly. But at least it would provide matching name in current browsers which is pr... | edd05f181b72272fb87b77bd84d2c048a4613955 | 1a31a814f16838e2c9edfce0d244264c43184f86 | 10 | medium | [
{
"filename": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -1435,8 +1435,13 @@ export function applyViewTransitionName(\n className: ?string,\n ): void {\n instance = ((instance: any): HTMLElement);\n+ // If the name isn't valid CSS identifier, base64 encode the name in... |
electron/electron | 49,799 | feat: add nv12 osr format support. | #### Description of Change
Add `nv12` OSR pixel format support for professional use.
Closes #49707
#### Checklist
<!-- Remove items that do not apply. For completed items, change [ ] to [x]. -->
- [x] PR description included
- [x] I have built and tested this PR
- [x] `npm test` passes
- [x] tests are [... | null | d6db1a27af662fd8b7378d87afefdff015a213aa | null | low | [
{
"filename": "docs/api/structures/web-preferences.md",
"patch": "@@ -94,6 +94,7 @@\n The actual output pixel format and color space of the texture should refer to [`OffscreenSharedTexture`](../structures/offscreen-shared-texture.md) object in the `paint` event.\n * `argb` - The requested output tex... |
ollama/ollama | 13,370 | Fix broken Swollama links after repository transfer | Fix broken Swollama links after repository transfer
The Swollama repository was transferred from marcusziade to guitaripod. While GitHub auto-redirects the repo URL, the GitHub Pages documentation link is broken and needs to be updated manually.
Changes:
- Update repo link: marcusziade/Swollama → guitaripod/Swol... | null | 0c787231741eaa2e6d5b145e8565a62364a852b3 | null | low | [
{
"filename": "README.md",
"patch": "@@ -555,7 +555,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Parakeet](https://github.com/parakeet-nest/parakeet) is a GoLang library, made to simplify the development of small generative AI applications with Ollama.\n - [Haverscript](https://gi... |
huggingface/transformers | 44,499 | Make `_prepare_input_fn` and `_prepare_output_fn` instance methods | # What does this PR do?
This PR is just a small cleanup.
The `TensorParallelLayer` class defines `_prepare_input_fn` and `_prepare_output_fn` as static methods.
But then these methods end-up being instance or static methods in the sub classes. This PR defines them as instance method all the time to make the API cl... | 78aee7e8486fd731da8824633e85664bcbd9f7bb | 86eafab5fb1b305d4f63a442b7c525e83535f946 | 3 | medium | [
{
"filename": "src/transformers/integrations/tensor_parallel.py",
"patch": "@@ -648,11 +648,11 @@ def __init__(self, device_mesh=None, rank=None, empty_param=None):\n self.device_mesh = device_mesh\n self.empty_param = empty_param\n \n- @staticmethod\n- def _prepare_input_fn(mod, input... |
vercel/next.js | 91,121 | fix: app-page URL normalization | ## Summary
Fix an App Router request normalization gap where app-page route-module requests could keep internal RSC/segment-prefetch URLs in `req.url`.
This could leak paths like:
- `.../.segments/_tree.segment.rsc`
- `.../__PAGE__.segment.rsc`
into App Router render state and surface through `usePathname(... | null | 4e2353edb2ee1b7b6ab96c3d844fed3713a7cc18 | null | low | [
{
"filename": "packages/next/src/server/route-modules/app-page/module.ts",
"patch": "@@ -32,6 +32,7 @@ import { RSCPathnameNormalizer } from '../../normalizers/request/rsc'\n import { SegmentPrefixRSCPathnameNormalizer } from '../../normalizers/request/segment-prefix-rsc'\n import type { UrlWithParsedQuery ... |
facebook/react | 35,051 | Remove unstable_expectedLoadTime option | Follow up to #35022.
It's now replaced by the `defer` option.
Sounds like nobody is actually using this option, including Meta, so we can just delete it. | 0ba2f01f7470f2f78a2698adf2644b0801ef3c98 | fa767dade6a22be994b5bf348fdabfc5301f72b4 | 1 | medium | [
{
"filename": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -325,7 +325,6 @@ export let didWarnAboutReassigningProps: boolean;\n let didWarnAboutRevealOrder;\n let didWarnAboutTailOptions;\n let didWarnAboutClassNameOnViewTransition;\n-let didWarnAboutExpectedLoadTime = false;\n \n if... |
facebook/react | 35,022 | Rename <Suspense unstable_expectedLoadTime> to <Suspense defer> and implement in SSR | We've long had the CPU suspense feature behind a flag under the terrible API `unstable_expectedLoadTime={arbitraryNumber}`. We've known for a long time we want it to just be `defer={true}` (or just `<Suspense defer>` in the short hand syntax). So this adds the new name and warns for the old name.
For only the new na... | dd048c3b2d8b5760dec718fb0926ca0b68660922 | 0ba2f01f7470f2f78a2698adf2644b0801ef3c98 | 1 | medium | [
{
"filename": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -9433,4 +9433,34 @@ Unfortunately that previous paragraph wasn't quite long enough so I'll continue\n </html>,\n );\n });\n+\n+ // @gate enableCPUSuspense\n+ it('outlines deferred Suspense boundaries', as... |
nodejs/node | 62,140 | tools: revert timezone update GHA workflow to ubuntu-latest | The timezone update script requires `icupkg` which doesn't appear to be available on `ubuntu-slim`.
Fixes: https://github.com/nodejs/node/issues/62109
<!--
Before submitting a pull request, please read:
- the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md
- the commit message f... | null | 70b35704a04be477e60755bf075d617976925fef | null | low | [
{
"filename": ".github/workflows/timezone-update.yml",
"patch": "@@ -16,7 +16,8 @@ jobs:\n pull-requests: write # to create a PR (gr2m/create-or-update-pull-request-action)\n \n if: github.repository == 'nodejs/node'\n- runs-on: ubuntu-slim\n+ # cannot use ubuntu-slim here because it does n... |
vercel/next.js | 91,825 | [ci] Allow "rerun failed jobs" to work up until 5 days | We fail CI if test timings are no longer available. However, 1 day seems too short of a retention period. A job started on Friday, could not be rerun on Monday.
We'll keep an eye on cost. 23 kB seem negligible compared to e.g. persisting tarballs of native binaries. | 75193d5f26da3e4ec0f9c7693be80216e36673fa | 3241be2d9009b7cb7bc0a2478b2f43f9e20b995a | 8 | medium | [
{
"filename": ".github/workflows/build_and_test.yml",
"patch": "@@ -138,7 +138,8 @@ jobs:\n with:\n name: test-timings\n path: test-timings.json\n- retention-days: 1\n+ # Allows \"rerun failed jobs\" for N days\n+ retention-days: 5\n if-no-fil... |
electron/electron | 50,306 | build(deps): bump dorny/paths-filter from 3.0.2 to 4.0.1 | Bumps [dorny/paths-filter](https://github.com/dorny/paths-filter) from 3.0.2 to 4.0.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/dorny/paths-filter/releases">dorny/paths-filter's releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<ul>
<li>feat: u... | f4a50a8fde877075ce3877efd54578997d5e7ece | 3659b975638da8913022bf1090161459cf2a1985 | 19 | medium | [
{
"filename": ".github/workflows/apply-patches.yml",
"patch": "@@ -26,7 +26,7 @@ jobs:\n # Use dorny/paths-filter instead of the path filter under the on: pull_request: block\n # so that the output can be used to conditionally run the apply-patches job, which lets\n # the job be marked as a requ... |
rust-lang/rust | 154,437 | bootstrap.example.toml: Hint how to allow `build.warnings` | This commit turns **Actual** into **Expected** for the following problem:
### Steps
1. Do some quick and experimental local code changes in the compiler code.
2. Run `./x build`.
3. Observe failed build with _"error: warnings are denied by `build.warnings` configuration"_.
4. Decide to not care and want to allow... | null | 0ddeea3a174edfbe810fad90ee1b3dc3c214a5bd | null | low | [
{
"filename": "bootstrap.example.toml",
"patch": "@@ -826,7 +826,8 @@\n # in the sysroot. It is required for running nvptx tests.\n #rust.llvm-bitcode-linker = false\n \n-# Whether to deny warnings in crates\n+# Whether to deny warnings in crates. Set to `false` to avoid\n+# error: warnings are denied by `b... |
huggingface/transformers | 44,567 | [`fix`] Prevent crash with Apertus without xielu installed | # What does this PR do?
Currently, when using Apertus (or rather, it's `XIELUActivation`), and you don't have `xielu` installed, then you'll fall to this `except:`
https://github.com/huggingface/transformers/blob/5a098a1e01034095f037c8a37f7fe87c31118e26/src/transformers/activations.py#L268-L273
However, `logger.... | null | 1cbb9c2ece62a73007fa5c36a49c40c09c7bfda6 | null | low | [
{
"filename": "src/transformers/activations.py",
"patch": "@@ -267,9 +267,8 @@ def __init__(\n logger.warning_once(msg)\n except Exception as err:\n logger.warning_once(\n- \"CUDA-fused xIELU not available (%s) – falling back to a Python version.\\n\"\n- ... |
ollama/ollama | 13,335 | fs/ggml: write int32 and int64 values to gguf files | Importing and quantizing newer GGUF files fails as they have sampling params that have `int32` values. | null | 5a41d69b2ab7d133a27e4f6d5666982c73a5b5ad | null | low | [
{
"filename": "fs/ggml/gguf.go",
"patch": "@@ -597,6 +597,10 @@ func ggufWriteKV(ws io.WriteSeeker, arch, k string, v any) error {\n \n \tvar err error\n \tswitch v := v.(type) {\n+\tcase int32:\n+\t\terr = writeGGUF(ws, ggufTypeInt32, v)\n+\tcase int64:\n+\t\terr = writeGGUF(ws, ggufTypeInt64, v)\n \tcase ... |
vercel/next.js | 90,978 | Turbopack: correctly use ChunkGroup::Shared | I don't think we have any tests that the server utility chunking actually works.
But I can't actually properly remember why we added it in the first place: https://github.com/vercel/next.js/pull/70461 | 99303d31fa64b5ec867a7a19ee0d2f28d2de0c8f | fda324e206c6d364af11864d7cd6088b0292202a | 4 | medium | [
{
"filename": "crates/next-api/src/app.rs",
"patch": "@@ -1799,11 +1799,7 @@ impl AppEndpoint {\n NextRuntime::Edge => {\n let chunk_group1 = chunking_context.chunk_group(\n server_action_manifest_loader.ident(),\n- ChunkGroup::Entry(\n- ... |
electron/electron | 50,315 | ci: update test timeout to 60 minutes | Backport of #50305
See that PR for details.
Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->none
| 55ebdfb26b238a5f517cb3332da0b158212d2f8b | d5ac7d3f336b927f612d7279f165062b886cdfd6 | 23 | medium | [
{
"filename": ".github/workflows/pipeline-segment-electron-test.yml",
"patch": "@@ -214,7 +214,7 @@ jobs:\n \n - name: Run Electron Tests\n shell: bash\n- timeout-minutes: 40\n+ timeout-minutes: 60\n env:\n MOCHA_REPORTER: mocha-multi-reporters\n MOCHA_MULTI_REPORTE... |
facebook/react | 35,041 | [eslint] Fix useEffectEvent checks in component syntax | We were not recording uEE calls in component/hook syntax. Easy fix.
Added tests matching function component syntax for component syntax + added one for hooks | null | 8f8b336734d7c807f5aa11b0f31540e63302d789 | null | low | [
{
"filename": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js",
"patch": "@@ -585,6 +585,29 @@ const allTests = {\n code: normalizeIndent`\n // Valid: useEffectEvent can be called in custom effect hooks configured via ESLint settings\n function MyComponent({ th... |
electron/electron | 50,305 | ci: update test timeout to 60 minutes | #### Description of Change
The autoupdater tests on mac x64 run slowly (a couple of the tests need multiple re-runs to pass), so we should update the test timeout to accommodate that.
The autoupdater tests should probably be improved but this will unblock failing CI for now.
<!--
Thank you for your Pull Request... | 8ba0ae7fa8db64ad2b209955fdf26132da9da246 | 7d72eb809e55bb66390c912cf7b7f2df1bf0dd0b | 1 | high | [
{
"filename": ".github/workflows/pipeline-segment-electron-test.yml",
"patch": "@@ -214,7 +214,7 @@ jobs:\n \n - name: Run Electron Tests\n shell: bash\n- timeout-minutes: 40\n+ timeout-minutes: 60\n env:\n MOCHA_REPORTER: mocha-multi-reporters\n MOCHA_MULTI_REPORTE... |
nodejs/node | 62,079 | stream: optimize webstreams `pipeTo` further | I've started looking more closely at the `pipeTo()` implementation, and found some low-hanging fruit to further optimize it:
* We don't have to `await writer.ready` every time, that's only needed if there is backpressure. So we check that first.
* We don't have to go through `writer.desiredSize` to check if there is ... | null | f82525e9c854f15fa4e1da3fe02ec711d3f2fd74 | null | low | [
{
"filename": "lib/internal/webstreams/readablestream.js",
"patch": "@@ -1532,10 +1532,12 @@ function readableStreamPipeTo(\n }\n \n async function step() {\n- if (shuttingDown)\n- return true;\n+ if (shuttingDown) return true;\n \n- await writer[kState].ready.promise;\n+ if (dest[kStat... |
huggingface/transformers | 44,253 | Speed create_import_structure up with os.scandir() | `create_import_structure_from_path` does some redundant `os` calls, so I'm experimenting with changes to see if we can speed up loading a lot.
Related to #44246 | 976d8cc98865e28d9d826447528441290d90df46 | 652f2f7a50096f1fc65356b4e7bb1b50fe1888fc | 29 | medium | [
{
"filename": "src/transformers/utils/import_utils.py",
"patch": "@@ -2546,36 +2546,30 @@ def create_import_structure_from_path(module_path):\n if os.path.isfile(module_path):\n module_path = os.path.dirname(module_path)\n \n- directory = module_path\n adjacent_modules = []\n \n- for f... |
facebook/react | 35,039 | [Flight] Fix `hasReadable` flag in Node.js clients' debug channel | For Edge Flight servers, that use Web Streams, we're defining the `debugChannel` option as:
```
debugChannel?: {readable?: ReadableStream, writable?: WritableStream, ...}
```
Whereas for Node.js Flight servers, that use Node.js Streams, we're defining it as:
```
debugChannel?: Readable | Writable | Duplex |... | 561ee24d4a7c805e9837ee4cfbb5671a35e41b5a | f646e8ffd85ddf5bd8be23327ac887196355bf9b | 3 | medium | [
{
"filename": "packages/react-server-dom-esm/src/client/ReactFlightDOMClientNode.js",
"patch": "@@ -93,10 +93,7 @@ function createFromNodeStream<T>(\n ): Thenable<T> {\n const debugChannel: void | DebugChannel =\n __DEV__ && options && options.debugChannel !== undefined\n- ? {\n- hasRead... |
ollama/ollama | 13,263 | cmd/bench: support writing benchmark output to file | This changes Ollama to allow the bench command to write benchmark results to a user-specified output file instead of stdout when the --output flag is provided. | null | a03223b86f7ade425ba6888080b355ac6d6507a5 | null | low | [
{
"filename": "cmd/bench/bench.go",
"patch": "@@ -48,8 +48,8 @@ func OutputMetrics(w io.Writer, format string, metrics []Metrics, verbose bool)\n \tcase \"benchstat\":\n \t\tif verbose {\n \t\t\tprintHeader := func() {\n-\t\t\t\tfmt.Printf(\"sysname: %s\\n\", runtime.GOOS)\n-\t\t\t\tfmt.Printf(\"machine: %s... |
rust-lang/rust | 154,246 | Add test for issue #101532: dead code warnings in const _ | Closes rust-lang/rust#101532
Adds a test for dead code warnings in `const _`.
This was already fixed, just adding coverage to avoid regressions. | null | 84ecc09f66e72e6c97e84baae0f3f6f5dadc7ec4 | null | low | [
{
"filename": "tests/ui/lint/dead-code/const-underscore-issue-101532.rs",
"patch": "@@ -0,0 +1,14 @@\n+//@ check-pass\n+// Test for issue #101532 - dead code warnings should work inside const _\n+\n+#![warn(dead_code)]\n+\n+const _: () = {\n+ let a: ();\n+ struct B {} //~ WARN struct `B` is never cons... |
facebook/react | 35,036 | [Flight] Fix debug info filtering to include later resolved I/O | In #35019, we excluded debug I/O info from being considered for enhancing the owner stack if it resolved after the defined `endTime` option that can be passed to the Flight client. However, we should include any I/O that was awaited before that end time, even if it resolved later. | 561ee24d4a7c805e9837ee4cfbb5671a35e41b5a | 67f7d47a9b8f450c93ee69edd16aed68e910ff1e | 1 | medium | [
{
"filename": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -510,7 +510,9 @@ function filterDebugInfo(\n return;\n }\n \n- // Remove any debug info entries that arrived after the defined end time.\n+ // Remove any debug info entries after the defined end time. For async info\n+ // ... |
vercel/next.js | 91,057 | Add script to patch project with preview tarball URLs | ### What?
Adds a new script `scripts/patch-preview-tarball.mjs` that patches a target project's `package.json` to use Next.js preview tarballs from `vercel-packages.vercel.app`.
### Why?
When testing unreleased Next.js changes against external projects (e.g., reproducing bugs, verifying fixes), there's no convenient... | null | 5e965bbb2d85a851c84b9c5ee20c34ff2814021f | null | low | [
{
"filename": "scripts/patch-preview-tarball.mjs",
"patch": "@@ -0,0 +1,233 @@\n+import { execSync } from 'node:child_process'\n+import fs from 'node:fs/promises'\n+import path from 'node:path'\n+import { parseArgs } from 'node:util'\n+\n+const BASE_URL = 'https://vercel-packages.vercel.app/next/commits'\n+... |
nodejs/node | 62,052 | tools: update nixpkgs-unstable to 917fec990948658ef1ccd07cef2a1ef0607 | This is an automated update of nixpkgs-unstable to 917fec990948658ef1ccd07cef2a1ef0607. | 798797aa890edc04944fa24f166f7f6ee67d75f3 | 5b5f069a27a371848cc5c8352f56b0c737926d0d | 16 | medium | [
{
"filename": "shell.nix",
"patch": "@@ -72,7 +72,7 @@ let\n ]) (builtins.attrNames sharedLibDeps);\n in\n pkgs.mkShell {\n- inherit (pkgs.nodejs_latest) nativeBuildInputs;\n+ inherit (pkgs.nodejs-slim_latest) nativeBuildInputs;\n \n buildInputs =\n buildInputs",
"additions": 1,
"deletions... |
facebook/react | 35,021 | Render children passed to "backwards" SuspenseList in reverse mount order | Stacked on #35018.
This mounts the children of SuspenseList backwards. Meaning the first child is mounted last in the DOM (and effect list). It's like calling reverse() on the children.
This is meant to set us up for allowing AsyncIterable children where the unknown number of children streams in at the end (which... | 26cf2804802f3d32c4d8f9db73ddea12ad6c1670 | 488d88b018ee8fd1fac56cab22dfa8796ebce30b | 1 | medium | [
{
"filename": "packages/react-dom/src/__tests__/ReactDOMFizzSuspenseList-test.js",
"patch": "@@ -656,6 +656,77 @@ describe('ReactDOMFizzSuspenseList', () => {\n );\n });\n \n+ // @gate enableSuspenseList\n+ it('displays each items in \"backwards\" mount order', async () => {\n+ const A = createAs... |
electron/electron | 49,428 | fix: user resizable transparent windows on win32 | Closes: #48554
#### Description of Change
Frameless windows use hit-test based resize in chromium. Version 39 of electron regressed resizable windows that did not have a "frame" on win32.
#### Checklist
- [x] PR description included
- [x] `npm test` passes
I ran tests but there were 245 fails that seeme... | 44b12fbb7b6dbdcfa1fe6ecd1ac0df455e5f1bcf | eec3fe967eb9051af0e7dbf57bcc361d8375869b | 28 | medium | [
{
"filename": "shell/browser/native_window_views.cc",
"patch": "@@ -1018,17 +1018,13 @@ void NativeWindowViews::MoveTop() {\n \n bool NativeWindowViews::CanResize() const {\n #if BUILDFLAG(IS_WIN)\n- return resizable_ && thick_frame_;\n+ return has_frame() ? resizable_ && thick_frame_ : resizable_;\n #els... |
huggingface/transformers | 44,527 | Fix failing `MusicgenStereo` integration tests | # What does this PR do?
Fixes these failing [MusicgenStereoIntegrationTests](https://github.com/huggingface/transformers/actions/runs/22606636929/job/65500451700#step:14:7870)
## Before submitting
- [ ] This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case).
- [x] Did yo... | null | c7648c8fd5dd6c3d5eed114b3763dadf4a3ea051 | null | low | [
{
"filename": "tests/models/musicgen/test_modeling_musicgen.py",
"patch": "@@ -1291,7 +1291,9 @@ def test_generate_text_audio_prompt(self):\n class MusicgenStereoIntegrationTests(unittest.TestCase):\n @cached_property\n def model(self):\n- return MusicgenForConditionalGeneration.from_pretrain... |
rust-lang/rust | 153,528 | Fix LegacyKeyValueFormat report from docker build: mips | Part of https://github.com/rust-lang/rust/pull/152305
r? @marcoieni | null | 9ee54594942284fb117fb8a269fca6eb7ffddb8e | null | low | [
{
"filename": "src/ci/docker/host-x86_64/dist-mips-linux/Dockerfile",
"patch": "@@ -26,5 +26,5 @@ ENV \\\n \n ENV HOSTS=mips-unknown-linux-gnu\n \n-ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs\n-ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS\n+ENV RUST_CONFIGURE_ARGS=\"--enable-ex... |
ollama/ollama | 13,265 | Add Vulkan GPU support instructions in development.md | Add Vulkan GPU support documentation for AMD/Intel GPUs
This PR adds development documentation for building Ollama with Vulkan support, providing an alternative GPU acceleration option for AMD and Intel graphics cards on both Windows and Linux platforms. | null | 20aee967067ae4a57a29405e89300f879d209972 | null | low | [
{
"filename": "docs/development.md",
"patch": "@@ -49,6 +49,8 @@ Install prerequisites:\n - [Ninja](https://github.com/ninja-build/ninja/releases)\n - (Optional) NVIDIA GPU support\n - [CUDA SDK](https://developer.nvidia.com/cuda-downloads?target_os=Windows&target_arch=x86_64&target_version=11&targe... |
facebook/react | 34,929 | [DevTools] Reset forced states when changing component filters | When we change component filters, we unmount the whole tree and mount it again. That means that any Suspense rect measurement will be gone. On mount, we're not measuring Suspense nodes since there's nothing to measure. Users can't even get back the original state since we no longer know which Fibers we forced a fallbac... | 0a5fb67ddfbd50740e2cbd6f1e575e834f696444 | c9ddee7e36c64311ad4e5e7acfca6c092d8a6264 | 3 | medium | [
{
"filename": "packages/react-devtools-shared/src/__tests__/setupTests.js",
"patch": "@@ -116,6 +116,16 @@ function shouldIgnoreConsoleErrorOrWarn(args) {\n return false;\n }\n \n+ const maybeError = args[1];\n+ if (\n+ maybeError !== null &&\n+ typeof maybeError === 'object' &&\n+ maybeErr... |
facebook/react | 35,012 | [DevTools] Render selected outline on top of every other rect | When rects are close together (or overlapping) the outline can end up being covered up by sibling rects or deeper rects. This renders the selected outline on top of everything so it's always visible.
<img width="275" height="730" alt="Screenshot 2025-10-29 at 8 43 28 PM" src="https://github.com/user-attachments/asse... | 3a0ab8a7eea22394ba8948ff02af1c6d6e6e1921 | 6fb77544940d033355c660556dbc48a08d1d6708 | 1 | medium | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseRects.css",
"patch": "@@ -6,12 +6,6 @@\n border-radius: 0.25rem;\n }\n \n-.SuspenseRectsContainer[data-highlighted='true'] {\n- outline-color: var(--color-transition);\n- outline-style: solid;\n- outline-width: 4px;\n-... |
vercel/next.js | 91,087 | Fix pr-status script missing failed jobs on page 2+ of API results | ## Summary
`getFailedJobs()` in `scripts/pr-status.js` used jq's `select(.conclusion == "failure")` filter during GitHub API pagination. When a page had 100 jobs but none were failures, jq returned empty output, and the `if (!output.trim()) break` check terminated the pagination loop early — never fetching page 2+ whe... | null | 3ba53df7463a7226eccb6952e13773080b12dd6a | null | low | [
{
"filename": "scripts/pr-status.js",
"patch": "@@ -217,34 +217,14 @@ function getRunMetadata(runId) {\n }\n \n function getFailedJobs(runId) {\n- const failedJobs = []\n- let page = 1\n-\n- while (true) {\n- const jqQuery = '.jobs[] | select(.conclusion == \"failure\") | {id, name}'\n- let output\... |
nodejs/node | 62,005 | url: suppress warnings from url.format/url.resolve inside node_modules | Fixes: #61724 | null | 724ef8ef9ede4b468675c9ce4e32214d333d68f1 | null | low | [
{
"filename": "lib/url.js",
"patch": "@@ -132,7 +132,7 @@ const {\n let urlParseWarned = false;\n \n function urlParse(url, parseQueryString, slashesDenoteHost) {\n- if (!urlParseWarned && !isInsideNodeModules(2)) {\n+ if (!urlParseWarned && !isInsideNodeModules(4)) {\n urlParseWarned = true;\n pr... |
facebook/react | 34,641 | [DevTools] Synchronize Scroll Position Between Suspense Tab and Main Document | It's annoying to have to try to find where it lines up with no hints.
This way when you hover over something it should be on screen.
The strategy I went with is that it scrolls to a percentage along the scrollable axis but the two might not be exactly the same. Partially because they have different aspect ratios ... | 0a5fb67ddfbd50740e2cbd6f1e575e834f696444 | 3a0ab8a7eea22394ba8948ff02af1c6d6e6e1921 | 1 | medium | [
{
"filename": "packages/react-devtools-shared/src/__tests__/bridge-test.js",
"patch": "@@ -27,7 +27,7 @@ describe('Bridge', () => {\n // Check that we're wired up correctly.\n bridge.send('reloadAppForProfiling');\n jest.runAllTimers();\n- expect(wall.send).toHaveBeenCalledWith('reloadAppForP... |
electron/electron | 50,299 | fix: user resizable transparent windows on win32 | Backport of #49428
See that PR for details.
notes: Fixed user resizing of transparent windows on win32 platform | 44b12fbb7b6dbdcfa1fe6ecd1ac0df455e5f1bcf | 17ddcbf01fc73bab772b757259e54aa652da4330 | 26 | medium | [
{
"filename": "shell/browser/native_window_views.cc",
"patch": "@@ -1018,17 +1018,13 @@ void NativeWindowViews::MoveTop() {\n \n bool NativeWindowViews::CanResize() const {\n #if BUILDFLAG(IS_WIN)\n- return resizable_ && thick_frame_;\n+ return has_frame() ? resizable_ && thick_frame_ : resizable_;\n #els... |
huggingface/transformers | 44,551 | Fix zamba2 rotary embedding call when use_mem_rope is False | `self.rotary_emb` is always called since https://github.com/huggingface/transformers/pull/39847 while only being initialized when `config.use_mem_rope` is True
inference failing since v5 for models `config.use_mem_rope=False`
```
AttributeError: 'Zamba2Model' object has no attribute 'rotary_emb'
```
https://g... | null | b7e4da0443af063d531c8c272b1ba0bdfcdf0702 | null | low | [
{
"filename": "src/transformers/models/zamba2/modeling_zamba2.py",
"patch": "@@ -1339,7 +1339,12 @@ def forward(\n past_key_values=past_key_values,\n position_ids=position_ids,\n )\n- position_embeddings = self.rotary_emb(hidden_states, position_ids=position_ids)\n+\n+... |
ollama/ollama | 13,279 | fix(api): correct Content-Type header for /api/chat and /api/generate when using cloud models | Problem:
When using cloud models, the Content-Type header was not properly set, even though the code at line 1983 (now 1948) attempted to set it.
Cause:
Execution order was the issue:
At line 1968, client.Chat(c, &req, fn) is called.
Inside client.Chat, the callback fn (at line 1950) calls c.Writer.Write() (line... | d70e93552696a5a1aaa5fd8b56d3f6e8b165f8c0 | 31b8c6a214dbfd7f1c711869572301ef7bf41b58 | 26 | medium | [
{
"filename": "server/routes.go",
"patch": "@@ -262,6 +262,12 @@ func (s *Server) GenerateHandler(c *gin.Context) {\n \t\t\tslog.Warn(\"embedded messages in the model not supported with '/api/generate'; try '/api/chat' instead\")\n \t\t}\n \n+\t\tcontentType := \"application/x-ndjson\"\n+\t\tif req.Stream !... |
rust-lang/rust | 154,431 | Avoid ICE in explicit reference cast suggestion for unrelated leaf pr… | <!-- homu-ignore:start -->
<!--
If this PR is related to an unstable feature or an otherwise tracked effort,
please link to the relevant tracking issue here. If you don't know of a related
tracking issue or there are none, feel free to ignore this.
This PR will get automatically assigned to a reviewer. In case y... | null | 4f6837edbd897daffc36d2a5b354e4bad56d89b2 | null | low | [
{
"filename": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs",
"patch": "@@ -285,14 +285,16 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n let mut err = struct_span_code_err!(self.dcx(), span, E0277, \"{}\", err_msg);\n \n let tr... |
vercel/next.js | 91,088 | Turbopack: don't panic due to eventual consistency in module merging | Turn into bail to handle eventual consistency more gracefully | null | 1ead596c5189720ace061f4760a814dc2e76baaf | null | low | [
{
"filename": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -1525,16 +1525,17 @@ async fn merge_modules(\n }\n };\n \n- debug_assert!(\n- inserted.len() == contents.len(),\n- \"Not all merged modules were inserted: {:?}\",\n- contents\n- .ite... |
nodejs/node | 62,134 | doc: correct `util.convertProcessSignalToExitCode` validation behavior | This method validates its argument and throws. It never returns `null`.
Additionally, remove ambiguous "signal code" nomenclature to refer to signal name. | null | 84ae06e411e5e93a7e163f97845845b4c359e0cb | null | low | [
{
"filename": "doc/api/util.md",
"patch": "@@ -89,35 +89,36 @@ callbackFunction((err, ret) => {\n });\n ```\n \n-## `util.convertProcessSignalToExitCode(signalCode)`\n+## `util.convertProcessSignalToExitCode(signal)`\n \n <!-- YAML\n added:\n - v25.4.0\n - v24.14.0\n -->\n \n-* `signalCode` {string} A sig... |
electron/electron | 50,309 | build(deps): bump actions/download-artifact from 8.0.0 to 8.0.1 | Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 8.0.0 to 8.0.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/download-artifact/releases">actions/download-artifact's releases</a>.</em></p>
<blockquote>
<h2>v8.0.1</h2>
<h2>What's C... | 55ebdfb26b238a5f517cb3332da0b158212d2f8b | 8ba0ae7fa8db64ad2b209955fdf26132da9da246 | 30 | medium | [
{
"filename": ".github/workflows/pipeline-segment-electron-clang-tidy.yml",
"patch": "@@ -126,7 +126,7 @@ jobs:\n cd src/electron\n git pack-refs\n - name: Download Out Gen Artifacts\n- uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3\n+ uses: actions/do... |
facebook/react | 35,005 | [Flight] Cache the value if we visit the same I/O or Promise multiple times along different paths | We avoid visiting the same async node twice but if we see it again we returned "null" indicating that there's no I/O there.
This means that if you have two different Promises both resolving from the same I/O node then we only show one of them. However, in general we treat that as two different I/O entries to allow f... | null | 4f93170066c5ee7519749b45c5962a6b970cf977 | null | low | [
{
"filename": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -2316,15 +2316,37 @@ function visitAsyncNode(\n request: Request,\n task: Task,\n node: AsyncSequence,\n- visited: Set<AsyncSequence | ReactDebugInfo>,\n+ visited: Map<\n+ AsyncSequence | ReactDebugInfo,\n+ void | nul... |
nodejs/node | 62,063 | meta: bump actions/download-artifact from 7.0.0 to 8.0.0 | Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7.0.0 to 8.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/download-artifact/releases">actions/download-artifact's releases</a>.</em></p>
<blockquote>
<h2>v8.0.0</h2>
<h2>v8 - Wha... | 1bf41a53e0769304e3a68358f0ec4adeb8db49ce | 2a01d92a588dc74d0d385aa0c4db521977f2f86d | 1 | medium | [
{
"filename": ".github/workflows/build-tarball.yml",
"patch": "@@ -127,7 +127,7 @@ jobs:\n - name: Environment Information\n run: npx envinfo\n - name: Download tarball\n- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0\n+ uses: actions/do... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.