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
ollama/ollama
6,145
Fix crash on startup when trying to clean up unused files (#5840)
Improve validation and error handling of manifest files in the event of corruption. This prevents nil pointer errors and possible unintended deletion of data.
b732beba6a919b852539bb344b05e25c6a7c3c90
69eb06c40ec22fe002cfbe1d52b560fce0dcddba
21
medium
[ { "filename": "server/images.go", "patch": "@@ -250,19 +250,21 @@ func GetModel(name string) (*Model, error) {\n \t\tTemplate: template.DefaultTemplate,\n \t}\n \n-\tfilename, err := GetBlobsPath(manifest.Config.Digest)\n-\tif err != nil {\n-\t\treturn nil, err\n-\t}\n+\tif manifest.Config.Digest != \"\" {...
facebook/react
35,737
[DevTools] Only block child Suspense boundaries if the parent has all shared suspenders removed
## Summary Stacked on https://github.com/facebook/react/pull/35736 A Suspense boundary is considered unblocked by I/O removal if no more children (until the next Suspense boundary) are blocked on the same I/O. However, we used to unblock if at least one children with this I/O was removed. Now we check if no mor...
70890e7c58abccef35a6498f7ee702d608be79d6
57b79b0388b755096216b2b5308113e54eac3be8
1
medium
[ { "filename": "packages/react-devtools-shared/src/__tests__/store-test.js", "patch": "@@ -3617,6 +3617,103 @@ describe('Store', () => {\n `);\n });\n \n+ // @reactVersion >= 17.0\n+ it('continues to consider Suspense boundary as blocking if some child still is suspended on removed io', async () => {...
vercel/next.js
92,211
[test] Deflake `allowed-dev-origins`
[`@test.source.file:test/development/basic/allowed-dev-origins.test.ts -@test.status:skip @test.is_known_flaky:true `](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40test.source.file%3Atest%2Fdevelopment%2Fbasic%2Fallowed-dev-origins.test.ts%20-%40test.status%3Askip%20%40test.is_known_flaky%3Atrue&...
null
77c84b4dacb2f9693f8f44a9ee16dad8bce99f9c
null
low
[ { "filename": "test/development/basic/allowed-dev-origins.test.ts", "patch": "@@ -78,8 +78,8 @@ function requestInternalDevMiddleware(\n )\n }\n \n-function expectBlockedDevResourceMessage(\n- output: string,\n+async function expectBlockedDevResourceMessage(\n+ next: NextInstance,\n options: {\n r...
rust-lang/rust
154,732
fix(std): avoid AT_MINSIGSTKSZ on uclibc targets
Closes https://github.com/rust-lang/rust/issues/154679 `AT_MINSIGSTKSZ` is not defined on uclibc. r? @tgross35
null
53af5aba8ff98338c0747ff3169fe780e6c2ef09
null
low
[ { "filename": "library/std/src/sys/pal/unix/stack_overflow.rs", "patch": "@@ -305,7 +305,7 @@ mod imp {\n }\n \n /// Modern kernels on modern hardware can have dynamic signal stack sizes.\n- #[cfg(any(target_os = \"linux\", target_os = \"android\"))]\n+ #[cfg(all(any(target_os = \"linux\", tar...
facebook/react
35,740
Consistent handling of work tags for rename, delete, and overriding state
Mostly to make it easier to reason locally about this code. Rename and delete relied implicitly on `inspectElementRaw` to only show state for Class Components but there was already a TODO to expand that which would've crashed rename and delete. Flagged by Claude + Opus 4.6 (which didn't make the connection with `ins...
f23aa1d9f5034e7cfbd3e6015ce102bb72a005a0
70890e7c58abccef35a6498f7ee702d608be79d6
1
medium
[ { "filename": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -6859,6 +6859,8 @@ export function attach(\n \n // TODO Show custom UI for Cache like we do for Suspense\n // For now, just hide state data entirely since it's not meant to be inspected.\n+ // Make sure del...
facebook/react
35,741
[DevTools] Fix memory leak when unmounting hoistables
## Summary For Host Hoistables we have may have many devtools instances to choose from as the nearest instance since React Float may have deduplicated the public host instance. We keep an internal map from the public host instance to the chosen devtools instance. When we were unmounting a Host Hoistable, we pick the...
49c3b270f9991fbecbe2b9c29c27e19a54fb4466
f23aa1d9f5034e7cfbd3e6015ce102bb72a005a0
1
medium
[ { "filename": "packages/react-devtools-shared/src/__tests__/store-test.js", "patch": "@@ -3616,4 +3616,59 @@ describe('Store', () => {\n <div>\n `);\n });\n+\n+ // @reactVersion >= 19\n+ it('cleans up host hoistables', async () => {\n+ function Left() {\n+ return (\n+ <s...
ollama/ollama
5,891
api: add stringifier for `Tool`
f3d7a481b75e0af89ae946d3923a239a3d835643
46e6327e0f85b046f5f92995d7f59146d347cd70
7
medium
[ { "filename": "api/types.go", "patch": "@@ -114,6 +114,11 @@ func (t Tools) String() string {\n \treturn string(bts)\n }\n \n+func (t Tool) String() string {\n+\tbts, _ := json.Marshal(t)\n+\treturn string(bts)\n+}\n+\n // Message is a single message in a chat sequence. The message contains the\n // role (\...
nodejs/node
62,439
tools: bump picomatch from 4.0.3 to 4.0.4 in /tools/eslint
Bumps [picomatch](https://github.com/micromatch/picomatch) from 4.0.3 to 4.0.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/micromatch/picomatch/releases">picomatch's releases</a>.</em></p> <blockquote> <h2>4.0.4</h2> <p>This is a security release fixing several security r...
null
e7a900d4fb31572d8374be9ee13aeb1e7af8e740
null
low
[ { "filename": "tools/eslint/package-lock.json", "patch": "@@ -2483,9 +2483,9 @@\n \"license\": \"ISC\"\n },\n \"node_modules/picomatch\": {\n- \"version\": \"4.0.3\",\n- \"resolved\": \"https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz\",\n- \"integrity\": \"sha512-5gTm...
facebook/react
35,736
[test] Include `uniqueSuspenders` in Suspense tree snapshots
This field is important to show only boundaries that can have their fallback shown so we should include it in tests. This change doesn't imply the values in the existing tests are correct.
c6bb26bf833c5d91760daf28fa2750b81067ac30
49c3b270f9991fbecbe2b9c29c27e19a54fb4466
1
medium
[ { "filename": "packages/react-devtools-shared/src/__tests__/profilingCommitTreeBuilder-test.js", "patch": "@@ -124,7 +124,7 @@ describe('commit tree', () => {\n ▾ <App>\n <Suspense>\n [suspense-root] rects={null}\n- <Suspense name=\"App\" rects={null}>\n+ <...
ollama/ollama
14,655
cmd: override stale entries for context window pi
Missed overriding entries which were stale, check context length as part of validation
9896e3627f7bdc135fd888cdd48e61d0108a1244
9b0c7cc7b90562b370ce6a30efdc667326799223
2
medium
[ { "filename": "cmd/config/opencode_test.go", "patch": "@@ -3,6 +3,8 @@ package config\n import (\n \t\"encoding/json\"\n \t\"fmt\"\n+\t\"net/http\"\n+\t\"net/http/httptest\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"testing\"\n@@ -657,6 +659,54 @@ func TestOpenCodeEdit_CloudModelLimitStructure(t *testing.T) {\...
electron/electron
50,603
fix: invoke print callback directly when no print job exists
Backport of #50431 See that PR for details. Notes: Fixed an issue where the `webContents.print()` callback may not fire correctly in some cases.
null
d1b34d76a87f2c07c64ae5d06db3fd4af84faf7e
null
low
[ { "filename": "patches/chromium/printing.patch", "patch": "@@ -68,7 +68,7 @@ index f91857eb0b6ad385721b8224100de26dfdd7dd8d..45e8766fcb8d46d8edc3bf8d21d3f826\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/brow...
huggingface/transformers
45,033
Add BC for `_further_process_kwargs`
In https://github.com/huggingface/transformers/pull/43514, `BaseImageProcessorFast` became `BaseImageProcessor` and `_further_process_kwargs` was renamed to `_standardize_kwargs` This PR adds some BC for the old name of this method.
null
69f9d552e9f7977291e707f1ae260c64193ea6ab
null
low
[ { "filename": "src/transformers/image_processing_utils.py", "patch": "@@ -346,6 +346,9 @@ def _standardize_kwargs(\n \n return kwargs\n \n+ # Backwards compatibility for method that was renamed\n+ _further_process_kwargs = _standardize_kwargs\n+\n def _validate_preprocess_kwargs(\n ...
facebook/react
35,723
[DevTools] Fix false-positive re-render reports for filtered nodes
Fixes https://github.com/facebook/react/issues/33423 Fixes https://github.com/facebook/react/issues/35245 Fixes https://github.com/facebook/react/issues/19732 As demoed [here](https://github.com/facebook/react/issues/33423#issuecomment-2970750588), React DevTools incorrectly highlights re-renders for descendants o...
2a879cdc95228b1b3b4cdc81cfc04599716b5562
24f215ce8b0e17a230fbb7317919a6ae0c324f35
6
medium
[ { "filename": "packages/react-devtools-shared/src/__tests__/profilingCharts-test.js", "patch": "@@ -298,4 +298,164 @@ describe('profiling charts', () => {\n `);\n });\n });\n+\n+ describe('components behind filtered fibers should not report false re-renders', () => {\n+ it('should not report...
facebook/react
35,735
[DevTools] Allow renaming Host Component props
## Summary Renaming props only considered Fibers without an instance (e.g. Function Components) and Class Components. However, Host Components have an instance but don't implement `forceUpdate` thus crashing the frontend. Now we only use `forceUpdate` for Class Components like we do in all the other places where w...
4c9d62d2b47be424ad9050725d8bdd8df12fe2a3
6a939d0b54a0e1aded58652a307cfc083b691d67
1
medium
[ { "filename": "packages/react-devtools-shared/src/__tests__/editing-test.js", "patch": "@@ -82,7 +82,12 @@ describe('editing interface', () => {\n shallow=\"initial\"\n />\n ,\n- <input ref={inputRef} onChange={jest.fn()} value=\"initial\" />\n+ <i...
electron/electron
50,416
build: enable V8 builtins PGO
#### Description of Change Re-enables V8 builtins PGO, which was disabled in #38252 due to profile references breaking the shipped `mksnapshot_args`. The CI-side mitigation for that has existed since the GHA migration (sed stripping in `build-electron/action.yml`), but the build-side disable was never reverted. **Wha...
639d3b99b7558c1676910900c33f4799553289ea
29750dda082501f5b728f58fb57765813d59a193
8
medium
[ { "filename": ".github/actions/build-electron/action.yml", "patch": "@@ -128,6 +128,9 @@ runs:\n fi\n sed $SEDOPTION '/.*builtins-pgo/d' out/Default/mksnapshot_args\n sed $SEDOPTION '/--turbo-profiling-input/d' out/Default/mksnapshot_args\n+ sed $SEDOPTION '/--reorder-builtins...
ollama/ollama
14,651
mlx: prevent remote creation mismatch
If the user is pointing at a remote OLLAMA_HOST, fail experimental safetensor based create operations as we only support local creation currently.
39982a954e056b73fb071212715913a1f0cd4dcc
69286306015c49e29eea69e79243a40382f301b7
6
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -145,6 +145,12 @@ func CreateHandler(cmd *cobra.Command, args []string) error {\n \t// Check for --experimental flag for safetensors model creation\n \texperimental, _ := cmd.Flags().GetBool(\"experimental\")\n \tif experimental {\n+\t\thost := envconfig.Host()\n+\t\...
vercel/next.js
92,143
Update Rspack production test manifest
This auto-generated PR updates the production integration test manifest used when testing Rspack.
null
01f7cd135870175698e2d912c3dbc4f47684c2a1
null
low
[ { "filename": "test/rspack-build-tests-manifest.json", "patch": "@@ -481,6 +481,16 @@\n \"flakey\": [],\n \"runtimeError\": false\n },\n+ \"test/e2e/app-dir/adapter-dynamic-metadata/adapter-dynamic-metadata.test.ts\": {\n+ \"passed\": [\n+ \"adapter-dynamic-metadata should classify dynami...
facebook/react
35,718
[DevTools] Don't capture durations for disconnected subtrees when profiling
After https://github.com/facebook/react/pull/34089, when updating (possibly, mounting) inside disconnected subtree, we don't record this as an operation. This only happens during reconnect. The issue is that `recordProfilingDurations()` can be called, which diffs tree base duration and reports it to the Frontend: http...
6a939d0b54a0e1aded58652a307cfc083b691d67
c6bb26bf833c5d91760daf28fa2750b81067ac30
1
medium
[ { "filename": "packages/react-devtools-shared/src/__tests__/profilingCommitTreeBuilder-test.js", "patch": "@@ -191,4 +191,73 @@ describe('commit tree', () => {\n expect(commitTrees[1].nodes.size).toBe(2); // <Root> + <App>\n });\n });\n+\n+ describe('Suspense', () => {\n+ it('should handle t...
electron/electron
50,575
perf: enable V8 builtins PGO
Backport of #50416 See that PR for details. Notes: Enabled profile-guided optimization for V8 builtins in release builds, improving JavaScript builtin performance (Array, String, RegExp, etc.).
1a933cb0cd0c25f4b72fe4910efb10abbd4f9c4b
e46b99bca2227b939af128518e0207d7ff692e78
2
medium
[ { "filename": ".github/actions/build-electron/action.yml", "patch": "@@ -125,6 +125,9 @@ runs:\n fi\n sed $SEDOPTION '/.*builtins-pgo/d' out/Default/mksnapshot_args\n sed $SEDOPTION '/--turbo-profiling-input/d' out/Default/mksnapshot_args\n+ sed $SEDOPTION '/--reorder-builtins...
facebook/react
35,734
[DevTools] Fix crash when revealing stable, filtered `<Activity>` children
## Summary This aligns the hidden -> visible Activity path with how we treat hidden Activity. Since we don't mount hidden Activity children, we need to switch to the mount path when updating an Activity from hidden to visible. This mostly went unnoticed since the update that reveals Activity also created fresh ...
24f215ce8b0e17a230fbb7317919a6ae0c324f35
4c9d62d2b47be424ad9050725d8bdd8df12fe2a3
1
medium
[ { "filename": "packages/react-devtools-shared/src/__tests__/store-test.js", "patch": "@@ -3572,4 +3572,48 @@ describe('Store', () => {\n <Suspense name=\"inner\" rects={[{x:1,y:2,width:14,height:1}]}>\n `);\n });\n+\n+ // @reactVersion >= 19\n+ it('can reconcile newly visible Activity with...
electron/electron
50,524
ci: update actions to node24
Backport of #50373 See that PR for details. Notes: none
a32b124d648eb9f0d34b1559ede9ee5a5285921e
0ba01d5cc68b5513b1b42d2f365e87ccd4c77c51
1
medium
[ { "filename": ".github/actions/build-electron/action.yml", "patch": "@@ -243,12 +243,12 @@ runs:\n run: ./src/electron/script/actions/move-artifacts.sh\n - name: Upload Generated Artifacts ${{ inputs.step-suffix }}\n if: always() && !cancelled()\n- uses: actions/upload-artifact@65462800...
facebook/react
35,733
[Fiber] Avoid duplicate debug info for array children
## Summary For children arrays we create a Fragment Fiber with the debug info. However, we pushed that debug info again when reconciling the children arrays which lead to duplicate Server Component parent stacks in React DevTools. Now we just push once when we create the Fragment Fiber. ## How did you test t...
b07aa7d643ec9028e452612c3ff2c17a6cee6bb7
eab523e2a99583703b13536670dfdd8a3b1e26e0
2
medium
[ { "filename": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -2820,7 +2820,8 @@ describe('ReactFlight', () => {\n ]\n : undefined,\n );\n- expect(getDebugInfo(thirdPartyChildren[2])).toEqual(\n+ const fragment = thirdPartyChildren[2];\n+ ex...
rust-lang/rust
154,728
rustdoc: Improve internal function name
This functions name totally contradicted what it did. And the only places it was used immediatly `!`ed it. Push the `!` into the function, and rename it to make sense. Should hopefully result in less head-scratching next time someone looks at this. r? @GuillaumeGomez
null
325340ea915baf8dbc3771b06ceccd2baa5e5f03
null
low
[ { "filename": "src/librustdoc/clean/cfg.rs", "patch": "@@ -41,15 +41,15 @@ fn is_simple_cfg(cfg: &CfgEntry) -> bool {\n }\n }\n \n-/// Returns `false` if is `Any`, otherwise returns `true`.\n-fn is_all_cfg(cfg: &CfgEntry) -> bool {\n+/// Returns `true` if is [`CfgEntry::Any`], otherwise returns `false`....
nodejs/node
62,437
tools: bump yaml from 2.8.2 to 2.8.3 in /tools/doc
Bumps [yaml](https://github.com/eemeli/yaml) from 2.8.2 to 2.8.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eemeli/yaml/releases">yaml's releases</a>.</em></p> <blockquote> <h2>v2.8.3</h2> <ul> <li>Add <code>trailingComma</code> ToString option for multiline flow formatt...
9289ad5cbbb46414cc0ee98d7a9026edc5160e15
8abe6a22077916300f98f0388b7b5269639a0379
29
medium
[ { "filename": "tools/doc/package-lock.json", "patch": "@@ -6396,9 +6396,9 @@\n }\n },\n \"node_modules/yaml\": {\n- \"version\": \"2.8.2\",\n- \"resolved\": \"https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz\",\n- \"integrity\": \"sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCf...
electron/electron
50,522
ci: update actions to node24
Backport of #50373 See that PR for details. Notes: none
40eb41656ae6b043be3250868c4c370201ace159
78896775d929b685fc1af2cba9962f9e4112a494
1
medium
[ { "filename": ".github/actions/build-electron/action.yml", "patch": "@@ -274,12 +274,12 @@ runs:\n run: ./src/electron/script/actions/move-artifacts.sh\n - name: Upload Generated Artifacts ${{ inputs.step-suffix }}\n if: always() && !cancelled()\n- uses: actions/upload-artifact@65462800...
huggingface/transformers
45,032
Use multi runners to check new failing tests in a CI run
# What does this PR do? Use multi runners to get new failing tests in a CI run.
null
e3f7cc3b4a5499c52ad56c72cad295de562f5b54
null
low
[ { "filename": ".github/workflows/check_failed_tests.yml", "patch": "@@ -24,6 +24,10 @@ on:\n pr_number:\n required: false\n type: string\n+ max_num_runners:\n+ required: false\n+ type: number\n+ default: 4\n outputs:\n is_check_failures_ok:\n ...
ollama/ollama
14,649
cmd: use native Ollama API endpoint for OpenClaw
Remove the /v1 suffix from the OpenClaw provider baseUrl so it uses the native Ollama API instead of the OpenAI-compatible endpoint. The /v1 endpoint my break tool calling in OpenClaw. Seems this was being automatically corrected by Openclaw itself, but good to clean up. https://github.com/openclaw/openclaw/blob/...
null
15732f0ea77320bb20851a84a296a645fabd56b5
null
low
[ { "filename": "cmd/config/openclaw.go", "patch": "@@ -502,7 +502,7 @@ func (c *Openclaw) Edit(models []string) error {\n \t\tollama = make(map[string]any)\n \t}\n \n-\tollama[\"baseUrl\"] = envconfig.Host().String() + \"/v1\"\n+\tollama[\"baseUrl\"] = envconfig.Host().String()\n \t// needed to register prov...
vercel/next.js
92,128
Add internal header security guideline to AGENTS.md
## Summary Adds a security guideline to `AGENTS.md` that instructs the PR reviewer to flag new code that reads non-standard request headers without checking them against the `INTERNAL_HEADERS` filter list in `packages/next/src/server/lib/server-ipc/utils.ts`. ## Context `filterInternalHeaders()` strips internal head...
null
8b5dfa66d4229c211628d0f7ea3efe87d9259f85
null
low
[ { "filename": "AGENTS.md", "patch": "@@ -430,3 +430,9 @@ If Turbopack produces unexpected errors after switching branches or pulling, che\n - Account for empty lines, import statements, and type imports that shift line numbers\n - Highlights should point to the actual relevant code, not unrelated lines like...
ollama/ollama
14,626
cmd: add qwen3.5 context length for launch
Enable compaction for tools which support it
39982a954e056b73fb071212715913a1f0cd4dcc
562c76d7cc15520e20f985105305227de0b6bb47
3
high
[ { "filename": "cmd/config/integrations.go", "patch": "@@ -90,6 +90,7 @@ var cloudModelLimits = map[string]cloudModelLimit{\n \t\"qwen3-coder:480b\": {Context: 262_144, Output: 65_536},\n \t\"qwen3-coder-next\": {Context: 262_144, Output: 32_768},\n \t\"qwen3-next:80b\": {Context: 262_144, Output:...
ollama/ollama
14,625
server: loosen thinking level constraint
We have internal mappings from the thinking package which map a low, medium, or high value to a boolean where supported rather than failing. The removal of this check here lets us rely on that logic and renderers/parsers instead of managing it at the routes level.
39982a954e056b73fb071212715913a1f0cd4dcc
122c68c151c844a4a75b3ccf4899a6bd83375f6e
2
high
[ { "filename": "server/routes.go", "patch": "@@ -370,12 +370,6 @@ func (s *Server) GenerateHandler(c *gin.Context) {\n \t\t}\n \t}\n \n-\t// Validate Think value: string values currently only allowed for harmony/gptoss models\n-\tif req.Think != nil && req.Think.IsString() && m.Config.Parser != \"harmony\" {...
facebook/react
35,730
[Flight] Fix `encodeReply` for JSX with temporary references
`encodeReply` throws "React Element cannot be passed to Server Functions from the Client without a temporary reference set" when a React element is the root value of a `serializeModel` call (either passed directly or resolved from a promise), even when a temporary reference set is provided. The cause is that `resolv...
null
b07aa7d643ec9028e452612c3ff2c17a6cee6bb7
null
low
[ { "filename": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -552,14 +552,19 @@ function moveDebugInfoFromChunkToInnerValue<T>(\n resolvedValue._debugInfo,\n debugInfo,\n );\n- } else {\n+ } else if (!Object.isFrozen(resolvedValue)) {\n Object.defineProperty...
electron/electron
50,545
ci: update nick-fields/retry to v4.0.0
Backport of #50521 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
null
a32b124d648eb9f0d34b1559ede9ee5a5285921e
null
low
[ { "filename": ".github/actions/restore-cache-azcopy/action.yml", "patch": "@@ -24,7 +24,7 @@ runs:\n # The cache will always exist here as a result of the checkout job\n # Either it was uploaded to Azure in the checkout job for this commit\n # or it was uploaded in the checkout job for a previou...
nodejs/node
62,482
doc: move sqlite type conversion section to correct level
This section certainly shouldn't be a subsection of `SQLTagStore`, where it currently stands. Could either go at the top or the bottom of the page. Seems important enough information to live underneath the module header.
null
d58769529284ee6ffb73b7b28ad5002d8d1950bb
null
low
[ { "filename": "doc/api/sqlite.md", "patch": "@@ -82,6 +82,29 @@ console.log(query.all());\n // Prints: [ { key: 1, value: 'hello' }, { key: 2, value: 'world' } ]\n ```\n \n+## Type conversion between JavaScript and SQLite\n+\n+When Node.js writes to or reads from SQLite, it is necessary to convert between\n...
rust-lang/rust
154,469
mGCA: Lower spans for literal const args
resolve: https://github.com/rust-lang/rust/issues/152653 resolve: https://github.com/rust-lang/rust/issues/154636
null
2eb2c90148fe770ba8e1f0b494c262d9d7c21f27
null
low
[ { "filename": "compiler/rustc_ast_lowering/src/lib.rs", "patch": "@@ -2683,7 +2683,7 @@ impl<'hir, R: ResolverAstLoweringExt<'hir>> LoweringContext<'_, 'hir, R> {\n overly_complex_const(self)\n }\n ExprKind::Lit(literal) => {\n- let span = expr.span;\n+...
huggingface/transformers
45,031
[`fix`] Use the correct _tied_weights_keys for CamembertForCausalLM
# What does this PR do? Follow-up for https://github.com/huggingface/transformers/pull/44931, which added weight tying for Camembert. Only the CamembertForMaskedLM class had the right _tied_weights_keys, the CamembertForCausalLM had the incorrect weight key. ## Details ```python from transformers import Auto...
null
882ffdbbd6b8ad50feaa860d702e70950cfc95d0
null
low
[ { "filename": "src/transformers/models/camembert/modeling_camembert.py", "patch": "@@ -1154,7 +1154,7 @@ def forward(\n )\n class CamembertForCausalLM(CamembertPreTrainedModel, GenerationMixin):\n _tied_weights_keys = {\n- \"lm_head.decoder.weight\": \"camembert.embeddings.word_embeddings.weight\...
ollama/ollama
14,584
model/renderers/glmocr: inject image tags in renderer prompt path
## Summary Fix `glm-ocr` image handling in renderer mode by injecting indexed image tags (`[img-{n}]`) into user content, matching the server renderer contract used by other multimodal renderers. This resolves the regression where `glm-ocr` receives only text prompt content (no image placeholders), causing blank OCR ...
da70c3222eff64680a608fb37c84ff59900db878
e8fcb295864f08edb041dbb8adc63e9c595bcfc9
23
medium
[ { "filename": "model/renderers/glmocr.go", "patch": "@@ -8,7 +8,21 @@ import (\n \t\"github.com/ollama/ollama/api\"\n )\n \n-type GlmOcrRenderer struct{}\n+type GlmOcrRenderer struct {\n+\tuseImgTags bool\n+}\n+\n+func (r *GlmOcrRenderer) renderContent(message api.Message, imageOffset int) (string, int) {\n...
vercel/next.js
92,198
[test] Skip flaky `prefetch-layout-sharing` suite
1 out of 9 tests fails: [`@test.source.file:test/e2e/app-dir/segment-cache/prefetch-layout-sharing/prefetch-layout-sharing.test.ts @git.branch:canary -@test_session.name:*development* -@test.status:skip @ci.pipeline.url:*/attempts/1 `](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40test.source.file...
null
a0ee1b8260094e76ff5b90ece2f4111166b53ea7
null
low
[ { "filename": "test/e2e/app-dir/segment-cache/prefetch-layout-sharing/prefetch-layout-sharing.test.ts", "patch": "@@ -3,7 +3,8 @@ import { Playwright as NextBrowser } from '../../../../lib/next-webdriver'\n import type * as Playwright from 'playwright'\n import { createRouterAct } from 'router-act'\n \n-des...
facebook/react
35,724
[Flight] Fix debug channel flag in Node.js server renderToPipeableStream
## Summary - Fixes the `createRequest` call in `renderToPipeableStream` to pass `debugChannelReadable !== undefined` instead of `debugChannel !== undefined` in the turbopack, esm, and parcel Node.js server implementations - The webpack version already had the correct check; this brings the other bundler implementation...
b1533b034ee5e38e825fe20d789f2e83ede163ad
2dd9b7cf76c31df5d7e26e5199e3c362c3e94f95
24
medium
[ { "filename": "packages/react-server-dom-esm/src/server/ReactFlightDOMServerNode.js", "patch": "@@ -187,7 +187,7 @@ function renderToPipeableStream(\n options ? options.startTime : undefined,\n __DEV__ && options ? options.environmentName : undefined,\n __DEV__ && options ? options.filterStackFr...
huggingface/transformers
44,146
Ensure final evaluation runs with step-based evaluation strategy
# What does this PR do? When using a step-based evaluation strategy (IntervalStrategy.STEPS), the trainer may skip evaluation at the final step if the last step does not align with eval_steps. This avoids missing the final evaluation while also preventing duplicate evaluations when the last step already matches eva...
e22f3088dd4d53c0a218151e124d45aaee64a63c
ec196140eb9b43653bc62877d7b746869a527c28
22
medium
[ { "filename": "src/transformers/trainer_callback.py", "patch": "@@ -591,6 +591,14 @@ def on_step_end(self, args: TrainingArguments, state: TrainerState, control: Tra\n # End training\n if state.global_step >= state.max_steps:\n control.should_training_stop = True\n+ # ...
electron/electron
50,521
ci: update nick-fields/retry to v4.0.0
#### Description of Change - Followup to #50373. Updates nick-fields/retry to v4.0.0 to get a version of that action that uses node 24. <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/electron/electron/blob/main...
null
b44b9ba316159e5303a098e0d1ffac57b3c45ad7
null
low
[ { "filename": ".github/actions/restore-cache-azcopy/action.yml", "patch": "@@ -24,7 +24,7 @@ runs:\n # The cache will always exist here as a result of the checkout job\n # Either it was uploaded to Azure in the checkout job for this commit\n # or it was uploaded in the checkout job for a previou...
ollama/ollama
14,084
cmd: ollama launch pi
Adds support for launching Pi (Pi Coding Agent) via ollama launch. Pi is a CLI tool distributed via npm that can use Ollama models. Usage: ollama launch pi ollama launch pi --model glm-4.7-flash
235ba3df5c5c9473191686e20714d37b37f0485a
5ef04dab529300b60cd427b0175e0b9d19cfdb9e
2
medium
[ { "filename": "cmd/config/integrations.go", "patch": "@@ -60,6 +60,7 @@ var integrations = map[string]Runner{\n \t\"droid\": &Droid{},\n \t\"opencode\": &OpenCode{},\n \t\"openclaw\": &Openclaw{},\n+\t\"pi\": &Pi{},\n }\n \n // recommendedModels are shown when the user has no models or as suggestio...
rust-lang/rust
153,532
Attributes containing rustc
r? @petrochenkov I noticed that attributes *containing* the word rustc as a segment also error with a message referring to "starting with rustc". The first commit shows this going wrong by re-exporting `#[test]`, a built-in macro, from a module called rustc. The 2nd commit addresses this by changing the diagnost...
null
45cec8bb3efd627cd4e975335c25619f0e252ccf
null
low
[ { "filename": "compiler/rustc_resolve/src/errors.rs", "patch": "@@ -1198,6 +1198,15 @@ pub(crate) struct AttributesStartingWithRustcAreReserved {\n pub(crate) span: Span,\n }\n \n+#[derive(Diagnostic)]\n+#[diag(\n+ \"attributes containing a segment starting with `rustc` are reserved for use by the `r...
nodejs/node
62,486
tools: update nixpkgs-unstable to 832efc09b4caf6b4569fbf9dc01bec3082a
This is an automated update of nixpkgs-unstable to 832efc09b4caf6b4569fbf9dc01bec3082a.
null
6a84d4a17cc192d30ba6692409709cab0d126637
null
low
[ { "filename": "tools/nix/pkgs.nix", "patch": "@@ -1,10 +1,10 @@\n arg:\n let\n repo = \"https://github.com/NixOS/nixpkgs\";\n- rev = \"9cf7092bdd603554bd8b63c216e8943cf9b12512\";\n+ rev = \"832efc09b4caf6b4569fbf9dc01bec3082a00611\";\n nixpkgs = import (builtins.fetchTarball {\n url = \"${repo}/ar...
vercel/next.js
92,199
[test] Skip flaky `cached-navigations` tests
Skips all [`@test.source.file:test/e2e/app-dir/segment-cache/cached-navigations/cached-navigations.test.ts @git.branch:canary -@test.status:skip @ci.pipeline.url:*/attempts/1 @test.is_known_flaky:true `](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40test.source.file%3Atest%2Fe2e%2Fapp-dir%2Fsegmen...
a215ea60a2d0012a9c52f96a97fcaf9af1f5d453
d6ab9e2a34c5cfc800df3b816c4b94343efc2788
23
medium
[ { "filename": "test/e2e/app-dir/segment-cache/cached-navigations/cached-navigations.test.ts", "patch": "@@ -13,7 +13,8 @@ describe('cached navigations', () => {\n return\n }\n \n- it('serves cached static segments instantly on the second navigation', async () => {\n+ // TODO: flaky\n+ it.skip('serv...
huggingface/transformers
44,668
Add `base_model_tp_plan` to `OlmoeConfig`
Fixes #44677 ## Summary - Add `base_model_tp_plan` to `OlmoeConfig`, enabling `from_pretrained(tp_plan="auto")` for OLMoE models - Add `TensorParallelTesterMixin` to OLMoE tests for TP validation coverage - Uses `"colwise"` for `q_norm` and `k_norm` because OLMoE applies these norms **after** the q/k projections — nor...
28e1cc59ecf479ea674f2cc4b443a2969aae3a69
da37a4d95758f90a0b37253b33618b382c7ca722
16
medium
[ { "filename": "src/transformers/models/olmoe/configuration_olmoe.py", "patch": "@@ -44,6 +44,17 @@ class OlmoeConfig(PreTrainedConfig):\n keys_to_ignore_at_inference = [\"past_key_values\"]\n attribute_map = {\"num_local_experts\": \"num_experts\"}\n \n+ # Default tensor parallel plan for base mo...
vercel/next.js
91,521
improve allowedDevOrigins error
This improves the blocked-request warning so it names the actual dev resource being requested and gives clearer guidance on how to allow it. When the source host is known, the message includes an inline `allowedDevOrigins` config snippet; when the source is missing or opaque, it explains why Next.js cannot infer a host...
b2b802c043f83b047276df48d93b76d3c742f240
a41bef94c5ec99cf71e286b8be02dca850b80062
6
medium
[ { "filename": "packages/next/src/server/lib/router-utils/block-cross-site-dev.ts", "patch": "@@ -4,14 +4,72 @@ import { parseUrl } from '../../../lib/url'\n import { warnOnce } from '../../../build/output/log'\n import { isCsrfOriginAllowed } from '../../app-render/csrf-protection'\n \n+const allowedDevOrig...
facebook/react
35,711
[test] Move profilingCommitTreeBuilder to versioned renderer
## Summary Avoids duplicating the tests. Assertions are and should be equivalent anyway. ## Test plan - [x] modern render test: CI - [x] legacy render test: `node ./scripts/ci/download_devtools_regression_build.js 16.9 --replaceBuild && node ./scripts/jest/jest-cli.js --build --project devtools --release-chan...
null
65db1000b944c8a07b5947c06b38eb8364dce4f2
null
low
[ { "filename": "packages/react-devtools-shared/src/__tests__/profilingCommitTreeBuilder-test.js", "patch": "@@ -9,10 +9,7 @@\n \n import type Store from 'react-devtools-shared/src/devtools/store';\n \n-import {\n- getLegacyRenderImplementation,\n- getModernRenderImplementation,\n-} from './utils';\n+import...
ollama/ollama
14,553
mlx: Remove peak memory from the API
This is still in flux so it is better to just log it for now.
86513cb697c9842265863b03ba1e916b959a63c0
ad16bffc7d5332c74f59c6afcf43efe60ca885cd
4
medium
[ { "filename": "api/types.go", "patch": "@@ -15,7 +15,6 @@ import (\n \t\"github.com/google/uuid\"\n \n \t\"github.com/ollama/ollama/envconfig\"\n-\t\"github.com/ollama/ollama/format\"\n \t\"github.com/ollama/ollama/internal/orderedmap\"\n \t\"github.com/ollama/ollama/types/model\"\n )\n@@ -570,7 +569,6 @@ t...
electron/electron
50,544
ci: update nick-fields/retry to v4.0.0
Backport of #50521 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
null
40eb41656ae6b043be3250868c4c370201ace159
null
low
[ { "filename": ".github/actions/restore-cache-azcopy/action.yml", "patch": "@@ -24,7 +24,7 @@ runs:\n # The cache will always exist here as a result of the checkout job\n # Either it was uploaded to Azure in the checkout job for this commit\n # or it was uploaded in the checkout job for a previou...
rust-lang/rust
154,671
Add a test for a past ICE when calling a const fn of an unresolved type with the wrong number of args
The ICE is fixed, but there needs to be a regression test for it. Closes rust-lang/rust#127423.
null
39ba2cd294eedadd7c195619658b04a5cf50bb25
null
low
[ { "filename": "tests/ui/consts/ice-extra-args-fn-abi-issue-127423.rs", "patch": "@@ -0,0 +1,15 @@\n+//! Regression test for https://github.com/rust-lang/rust/issues/127423\n+\n+#![allow(dead_code)]\n+\n+const fn add(a: &'self isize) -> usize {\n+ //~^ ERROR use of undeclared lifetime name `'self`\n+ /...
facebook/react
35,710
[DevTools] Fix broken commit tree builder for initial operations
## Summary Originally thought we can stop sending the root ID entirely but it's used by the commit tree builder. That made me realize https://github.com/facebook/react/pull/35093 introduced a regression. Flushing pending events is only safe without a root if we're not profiling or if we're flushing events that do...
b9323509be66759201c6a752233370970c2a613f
2a879cdc95228b1b3b4cdc81cfc04599716b5562
5
medium
[ { "filename": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -1138,7 +1138,7 @@ export function attach(\n // if any passive effects called console.warn / console.error.\n let needsToFlushComponentLogs = false;\n \n- function bruteForceFlushErrorsAndWarnings() {\n+ functio...
nodejs/node
62,484
deps: update googletest to 2461743991f9aa53e9a3625eafcbacd81a3c74cd
This is an automated update of googletest to 2461743991f9aa53e9a3625eafcbacd81a3c74cd.
null
d7b1589bd075d8c780b20e011369a5833709aa7a
null
low
[ { "filename": "deps/googletest/include/gtest/internal/gtest-port.h", "patch": "@@ -1236,16 +1236,46 @@ class GTEST_API_ [[nodiscard]] AutoHandle {\n // Nothing to do here.\n \n #else\n-GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \\\n-/* class A needs to have dll-interface to be used by clients of class B */)\n-\n...
vercel/next.js
91,467
[turbopack] update qfilter to 0.3.0-alpha
## What? Update the `qfilter` crate to an alpha version. ## Why? Performance improvements in the quotient filter implementation used by turbo-persistence for SST file lookups. ## Benchmark Results Benchmarks run on Apple Silicon (M-series), comparing `canary` baseline vs this branch. Focused on qfilter-sensitive p...
9b263e9811b0e6c73f265a576ebd5a482564a108
4050a5b09c4d4287a12ab4f92867724b5df7aeda
11
medium
[ { "filename": "Cargo.lock", "patch": "@@ -5663,9 +5663,9 @@ dependencies = [\n \n [[package]]\n name = \"qfilter\"\n-version = \"0.2.4\"\n+version = \"0.3.0-alpha.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"e1f7df258517b16d2677d20c0e8f660f1f7d9677076c64b564e7a3b3d...
facebook/react
35,705
[DevTools] Separate breadcrumbs with `»`
## Summary Stacked on https://github.com/facebook/react/pull/35700 This avoids a common confusion with the Suspense breadcrumbs by making it clearer that this is a hierarchy. Applied the same styling to the Owner Stack in the Components tab. <img width="450" height="40" alt="localhost_8080_ (5)" src="https://g...
8b276df415a29bee586473bfced9191b25166790
1c66ac740c650083f008805ed605e8826832dd4c
1
medium
[ { "filename": "packages/react-devtools-shared/src/devtools/views/Components/OwnersStack.css", "patch": "@@ -32,6 +32,14 @@\n overflow-x: auto;\n }\n \n+.OwnerStackFlatListContainer {\n+ display: inline-flex;\n+}\n+\n+.OwnerStackFlatListSeparator {\n+ user-select: none;\n+}\n+\n .VRule {\n flex: 0 0 au...
nodejs/node
62,483
test: update WPT for WebCryptoAPI to 2cb332d710
This is an automated update of the WPT for WebCryptoAPI to https://github.com/web-platform-tests/wpt/commit/2cb332d71030ba0200610d72b94bb1badf447418.
5ece312ac2ce54fd4bd2e248cffafd7998d56bd2
404c3f9620e1cdf36df5d9d62f6fe77c63c1b683
3
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...
huggingface/transformers
44,847
ci: add anti-slop action
# What does this PR do? Activated `anti-slop` action. Enabled checks: - `min-account-age: 30` to catch brand-new throwaway accounts, which are common in automated spam waves. - `max-daily-forks: 7` to catch accounts that fork many repositories in a 24-hour window. This workflow is label-only and does not c...
null
61efa3229a0cdd77cec9359a68e416a456c020c3
null
low
[ { "filename": ".github/workflows/anti-slop.yml", "patch": "@@ -0,0 +1,68 @@\n+name: Anti-Slop\n+\n+permissions:\n+ contents: read\n+ issues: read\n+ pull-requests: write\n+\n+on:\n+ pull_request_target:\n+ types: [opened, reopened]\n+\n+jobs:\n+ anti-slop:\n+ runs-on: ubuntu-latest\n+ steps:\n...
electron/electron
50,542
ci: update nick-fields/retry to v4.0.0
Backport of #50521 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
e7d473337fec3af8843c44bf5616783b77f668fe
e21a1b8cd1a9b387a909ae618cffc3eb9d1e381d
24
medium
[ { "filename": ".github/actions/restore-cache-azcopy/action.yml", "patch": "@@ -24,7 +24,7 @@ runs:\n # The cache will always exist here as a result of the checkout job\n # Either it was uploaded to Azure in the checkout job for this commit\n # or it was uploaded in the checkout job for a previou...
facebook/react
35,700
[DevTools] Avoid scrollbars in Suspense breadcrumbs
## Summary Alternate to https://github.com/facebook/react/pull/34914 The Suspense breadcrumbs are only a single line height high. Having a scrollbar in such a container looks bad since it takes up 50% of the space. MacOS also has this default where the scrollbar overlays the container on touch devices without a m...
c9ff56ec74393373dbe0f58c3e24d1846b469317
8b276df415a29bee586473bfced9191b25166790
12
medium
[ { "filename": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseBreadcrumbs.css", "patch": "@@ -1,8 +1,13 @@\n+.SuspenseBreadcrumbsContainer {\n+ flex: 1;\n+ display: flex;\n+}\n+\n .SuspenseBreadcrumbsList {\n margin: 0;\n padding: 0;\n list-style: none;\n- display: flex;\n+ ...
ollama/ollama
14,558
mlxrunner: Refcount pinned tensors
Otherwise, it is error prone to manage multiple components working with the same tensor.
5daf59cc6666dd036af8fab8c5df6b5571a9a9ba
c1e3ef4bccb6beacf401acab18e6b4b1e0c1d4f9
28
medium
[ { "filename": "x/mlxrunner/mlx/array.go", "patch": "@@ -20,7 +20,7 @@ import (\n type Array struct {\n \tctx C.mlx_array\n \tname string\n-\tpinned bool\n+\tpinned int\n }\n \n var arrays []*Array\n@@ -129,7 +129,7 @@ func (t *Array) Clone() *Array {\n func Pin(s ...*Array) {\n \tfor _, t := range s {\...
huggingface/transformers
44,947
Add doc page for capturing outputs
# What does this PR do? The doc was generated by Claude. I deleted unnecessary repetitions and fixed a few moments to be more precise. We don't really need to merge it now so if you think the text is too LLM, feel free to take this as an initial template and close the PR
2a54236620f75fdafb6be69492e6995e7869c14f
f87d392e8406507d33d3da74bec0ebaac467c9c3
6
medium
[ { "filename": "CONTRIBUTING.md", "patch": "@@ -252,7 +252,7 @@ The library has 400+ models with many established patterns:\n - Search for similar models (e.g., other vision-language models)\n - Reuse attention mechanisms, layer implementations, and processing patterns\n - Check models like LLaVA, Idefics2, ...
facebook/react
35,709
Disable parallel transitions in canary
Accidentally enabled this
3aaab92a265ebeb43b15e7c30c2f1dfb9fcd5961
95ffd6cd9c794842e5c8ab36150296afab1ae70c
3
high
[ { "filename": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -220,7 +220,7 @@ export const disableInputAttributeSyncing: boolean = false;\n export const disableTextareaChildren: boolean = false;\n \n // Disables children for <textarea> elements\n-export const enableParallelTransitions: boolean = true;...
rust-lang/rust
154,615
Moving issues
<!-- 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
0b7a11ff96ec923f4e63d7d5ebf9f945399877ea
null
low
[ { "filename": "tests/ui/enum/enum_u8_variant.rs", "patch": "@@ -0,0 +1,14 @@\n+//@ run-pass\n+//Test that checks pattern matching works correctly on a repr(u8) enum\n+// whose only variant contains an inner 'u8' field\n+//https://github.com/rust-lang/rust/issues/34571\n+#[repr(u8)]\n+enum Foo {\n+ Foo(#[...
vercel/next.js
90,477
SRI turbopack documentation
<!-- CURSOR_AGENT_PR_BODY_BEGIN --> Updates the Subresource Integrity (SRI) documentation to reflect that the feature is now supported on both Webpack and Turbopack bundlers. Previously, the documentation stated that SRI was "only available with webpack bundler". This has been updated to remove that restriction follow...
null
b61823d7b9dd26370fb1167b31098c24b1fcd199
null
low
[ { "filename": "docs/01-app/02-guides/content-security-policy.mdx", "patch": "@@ -457,7 +457,7 @@ module.exports = {\n \n As an alternative to nonces, Next.js offers experimental support for hash-based CSP using Subresource Integrity (SRI). This approach allows you to maintain static generation while still h...
electron/electron
50,592
fix: add missing HandleScope in contentTracing.getTraceBufferUsage()
Backport of #50556 See that PR for details. Notes: Fixed a crash when calling `contentTracing.getTraceBufferUsage()` while a trace session is active.
null
7f8e35c8c8f9fdd0468ff0c0933b61bb7162a8d1
null
low
[ { "filename": "shell/browser/api/electron_api_content_tracing.cc", "patch": "@@ -151,7 +151,10 @@ void OnTraceBufferUsageAvailable(\n gin_helper::Promise<gin_helper::Dictionary> promise,\n float percent_full,\n size_t approximate_count) {\n- auto dict = gin_helper::Dictionary::CreateEmpty(promi...
nodejs/node
62,379
test: update WPT for url to fc3e651593
This is an automated update of the WPT for url to https://github.com/web-platform-tests/wpt/commit/fc3e651593fab938433613eb5ad0b4dbd5a4e167.
1baafcc882e8056df7d17ce962517a6bd84c8a54
5ece312ac2ce54fd4bd2e248cffafd7998d56bd2
30
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/6a2f322376/resources\n - streams: https://github.com/web-platform...
ollama/ollama
14,566
cmd/opencode: rename provider from "Ollama (local)" to "Ollama"
The "(local)" qualifier is unnecessary since there's only one Ollama provider. Existing configs with the old name are migrated automatically; custom names are left unchanged.
null
a3093cd5e58a27f08a97e0122a57c83b50540f71
null
low
[ { "filename": "cmd/config/opencode.go", "patch": "@@ -122,13 +122,18 @@ func (o *OpenCode) Edit(modelList []string) error {\n \tif !ok {\n \t\tollama = map[string]any{\n \t\t\t\"npm\": \"@ai-sdk/openai-compatible\",\n-\t\t\t\"name\": \"Ollama (local)\",\n+\t\t\t\"name\": \"Ollama\",\n \t\t\t\"options\": ma...
facebook/react
35,702
[DevTools] Throw an error when attempting to clone non-existent node
There is an existing issue with serialisation logic for the traces from Profiler panel. I've discovered that `TREE_OPERATION_UPDATE_TREE_BASE_DURATION` operation for some reason appears earlier in a sequence of operations, before the `TREE_OPERATION_ADD` that registers the new node. It ends up cloning non-existent n...
null
b9323509be66759201c6a752233370970c2a613f
null
low
[ { "filename": "packages/react-devtools-shared/src/devtools/views/Profiler/CommitTreeBuilder.js", "patch": "@@ -160,11 +160,14 @@ function updateTree(\n \n // Clone nodes before mutating them so edits don't affect them.\n const getClonedNode = (id: number): CommitTreeNode => {\n- // $FlowFixMe[prop-mi...
rust-lang/rust
154,425
Migrate transmute tests
I have made the following changes in this PR: - `tests/ui/issues/issue-23477.rs` ➝ `tests/ui/transmute/transmute-slice-to-dst.rs` - `tests/ui/issues/issue-28625.{rs,stderr}` ➝ `tests/ui/transmute/transmute-associated-type-to-slice.{rs,stderr}` The reason I changed the trait name from `trait Bar` to `trait MyTrai...
null
d7d8255d504cab44986743bec7f6fbb69afee8e8
null
low
[ { "filename": "tests/ui/issues/issue-28625.rs", "patch": "@@ -1,22 +0,0 @@\n-//@ normalize-stderr: \"\\d+ bits\" -> \"N bits\"\n-\n-trait Bar {\n- type Bar;\n-}\n-\n-struct ArrayPeano<T: Bar> {\n- data: T::Bar,\n-}\n-\n-fn foo<T>(a: &ArrayPeano<T>) -> &[T] where T: Bar {\n- unsafe { std::mem::trans...
huggingface/transformers
45,014
Don't run `tests_hub` if no tests found
# What does this PR do? #30674 refactors the way we obtain CircleCI test files to run for each job. It always puts ["tests"] for `tests_hub`, so each commit of each PR will run it, no matter if there is any change to codebase. Let's reduce the CI load by running an `Empty` job instead (just what it did before ...
a48a63c27d1cdb7845d2c3acc4f11f580917b69b
b1ba6d7d2af770b9c7ab0bac38da2f242e40a6d3
26
medium
[ { "filename": "utils/tests_fetcher.py", "patch": "@@ -1106,16 +1106,29 @@ def parse_commit_message(commit_message: str) -> dict[str, bool]:\n def create_test_list_from_filter(full_test_list, out_path):\n os.makedirs(out_path, exist_ok=True)\n all_test_files = \"\\n\".join(full_test_list)\n+\n+ # ...
facebook/react
35,612
[Flight] Fix stack overflow in `visitAsyncNode` with deep async chains
Database libraries like Gel/EdgeDB can create very long linear chains of async sequences through temporal async sequencing in connection pools. The recursive traversal of `node.previous` chains in `visitAsyncNode` causes stack overflow on these deep chains. The fix converts the `previous` chain traversal from recurs...
b1533b034ee5e38e825fe20d789f2e83ede163ad
cf993fb457417e0f20535b1fd42c3f45df966583
12
medium
[ { "filename": "packages/react-server/src/ReactFlightServer.js", "patch": "@@ -2345,19 +2345,53 @@ function visitAsyncNode(\n >,\n cutOff: number,\n ): void | null | PromiseNode | IONode {\n- if (visited.has(node)) {\n- // It's possible to visit them same node twice when it's part of both an \"awaite...
vercel/next.js
92,176
Improve revalidateTag JSDoc to include guidance about required second parameter
### What? Improved the JSDoc comment on `revalidateTag` to explain the required second `profile` parameter, linking to `cacheLife` profile docs and mentioning `updateTag` as an alternative for immediate expiration. ### Why? The TypeScript error "Expected 2 arguments, but got 1" at `revalidateTag` call sites gi...
null
36fcc163070a5a0788a56a89791e00cc8ce0b861
null
low
[ { "filename": "packages/next/src/server/web/spec-extension/revalidate.ts", "patch": "@@ -24,6 +24,10 @@ type CacheLifeConfig = {\n /**\n * This function allows you to purge [cached data](https://nextjs.org/docs/app/building-your-application/caching) on-demand for a specific cache tag.\n *\n+ * The second ...
electron/electron
50,556
fix: add missing HandleScope in contentTracing.getTraceBufferUsage()
#### Description of Change The `OnTraceBufferUsageAvailable` callback creates V8 handles via `Dictionary::CreateEmpty()` before `promise.Resolve()` enters its `SettleScope` (which provides a `HandleScope`). When the callback fires asynchronously from a Mojo response (i.e., when a trace session is active), there is n...
null
e0bd4ffc39d6bd563d7094905f579c8d79643b4c
null
low
[ { "filename": "shell/browser/api/electron_api_content_tracing.cc", "patch": "@@ -151,7 +151,10 @@ void OnTraceBufferUsageAvailable(\n gin_helper::Promise<gin_helper::Dictionary> promise,\n float percent_full,\n size_t approximate_count) {\n- auto dict = gin_helper::Dictionary::CreateEmpty(promi...
huggingface/transformers
45,002
Fix type hint for `attention_chunk_size` in `Llama4TextConfig`
`None` is a valid value that can be used to disable chunked attention in `DynamicCache` and Flex Attention. hf.co/morgendave/EAGLE-Llama-4-Scout-17B-16E-Instruct is an example of a checkpoint which does this.
28e1cc59ecf479ea674f2cc4b443a2969aae3a69
c9faacd7d57459157656bdffe049dabb6293f011
11
medium
[ { "filename": "src/transformers/models/llama4/configuration_llama4.py", "patch": "@@ -165,7 +165,7 @@ class Llama4TextConfig(PreTrainedConfig):\n rope_parameters: RopeParameters | dict | None = None\n no_rope_layers: list[int] | None = None\n no_rope_layer_interval: int = 4\n- attention_chunk...
ollama/ollama
14,555
server: verify digest is not empty on create
An empty digest is not a valid digest for an incoming create request. Reject empty digests at the api level. Resolves #13223
null
23d4cad1a280147c5a0795a5f7552541be4d6ae3
null
low
[ { "filename": "server/create.go", "patch": "@@ -65,11 +65,22 @@ func (s *Server) CreateHandler(c *gin.Context) {\n \tconfig.Parser = r.Parser\n \tconfig.Requires = r.Requires\n \n-\tfor v := range r.Files {\n+\tfor v, digest := range r.Files {\n \t\tif !fs.ValidPath(v) {\n \t\t\tc.AbortWithStatusJSON(http.S...
vercel/next.js
91,454
Fix inconsistent cache life/tags propagation for cache handler hits
When a `"use cache"` entry is newly generated during a prerender (`prerender` or `prerender-runtime`), `collectResult` defers propagation of cache life and tags to the outer context. This is because the entry might later be omitted from the final prerender due to short expire or stale times, and omitted entries should ...
8283b1260ba3eb187baf20727e739fbd8ba7bbf6
23fa2787dd72acded58a5f2c62b2c347a137f401
3
medium
[ { "filename": "packages/next/src/server/use-cache/use-cache-wrapper.ts", "patch": "@@ -552,6 +552,63 @@ function propagateCacheEntryMetadata(\n }\n }\n \n+/**\n+ * Conditionally propagates cache life, tags, and root param names to the outer\n+ * context. During prerenders (`prerender` / `prerender-runtime...
nodejs/node
62,357
[v25.x backport] src: convert context_frame field in AsyncWrap to internal field
Backport the second (https://github.com/nodejs/node/commit/7dd5ca81a797d4b2de78c683ed67d513d75162eb / https://github.com/nodejs/node/commit/6ad5f7cb80c012244e9fda1e9afd01e31fd0dc35) commit of #62103 as it failed in 25.8.1 release. The other two commits were included in 25.8.1 Refs: https://github.com/nodejs/node/pul...
null
0e4af848bc321592da7b6ce3ab7b413f2f4f4476
null
low
[ { "filename": "src/async_wrap-inl.h", "patch": "@@ -50,7 +50,25 @@ inline double AsyncWrap::get_trigger_async_id() const {\n }\n \n inline v8::Local<v8::Value> AsyncWrap::context_frame() const {\n- return context_frame_.Get(env()->isolate());\n+ auto as_data = object()->GetInternalField(kAsyncContextFrame...
ollama/ollama
14,541
model/qwen3next: avoid crash in in DeltaNet when split offloading
Carries https://github.com/ollama/ollama/pull/14536 (thank you @yossiovadia) but also avoids a long concat-chain which would slow down longer prompts
8da09b1e7e7394a818bc0f36d4244a927a91c126
3490e9590bbaba174f89c03207b42727150460e0
1
medium
[ { "filename": "model/models/qwen3next/deltanet.go", "patch": "@@ -454,6 +454,10 @@ func (gdn *GatedDeltaNet) deltaNetChunked(\n \tvT := v.Permute(ctx, 1, 0, 2, 3).Contiguous(ctx, chunkSize, headVDim, nChunks, numVHeads*nSeqs)\n \tstateT := state.Permute(ctx, 1, 0, 2, 3).Contiguous(ctx, headVDim, headVDim, 1...
rust-lang/rust
154,712
Revert "`-Znext-solver` Remove the forced ambiguity hack from search graph"
This PR reverts https://github.com/rust-lang/rust/pull/149904 as discussed and requested in https://rust-lang.zulipchat.com/#narrow/channel/326866-t-types.2Fnominated/topic/.23153910.3A.20Significant.20compilation.20time.20regression.20starting.20i.E2.80.A6. We would like a bit of time to investigate without pressur...
null
7049a87275ad1fc37bce1735a2a466f8e3b1f6de
null
low
[ { "filename": "compiler/rustc_type_ir/src/search_graph/mod.rs", "patch": "@@ -926,9 +926,10 @@ impl<D: Delegate<Cx = X>, X: Cx> SearchGraph<D> {\n /// heads from the stack. This may not necessarily mean that we've actually\n /// reached a fixpoint for that cycle head, which impacts the way we rebase\n /// p...
ollama/ollama
14,415
model: add support for qwen3.5-27b model
da70c3222eff64680a608fb37c84ff59900db878
7f9efd53dfa6dd87ac423695f5ca8ffff5a6222c
1
medium
[ { "filename": "ml/backend.go", "patch": "@@ -195,6 +195,7 @@ type Tensor interface {\n \tConcat(ctx Context, t2 Tensor, dim int) Tensor\n \tRows(ctx Context, t2 Tensor) Tensor\n \tSetRows(ctx Context, src Tensor, idxs Tensor) Tensor\n+\tSetInplace(ctx Context, src Tensor, nb1, nb2, nb3, offset int) Tensor\n...
ollama/ollama
14,470
MLX runner memory fixes
A series of fixes for the MLX runner, primarily around memory: - Report live memory usage through `ollama ps` - Enforce model context limits in a way that is similar to most cloud services - Better error and timing reporting
a16f96658b92921dfe2bba68a4c6314eb0665a47
a60b9adcce8fb40b1ad3678d992de5969692a9ea
1
high
[ { "filename": "x/mlxrunner/pipeline.go", "patch": "@@ -74,6 +74,7 @@ func (r *Runner) TextGenerationPipeline(request Request) error {\n \tcaches := session.caches\n \ttokens := session.remaining\n \n+\tnow := time.Now()\n \ttotal, processed := len(tokens), 0\n \tfor total-processed > 1 {\n \t\tif err := req...
facebook/react
35,694
[DevTools] Shrink/Deshrink Owners breadcrumbs on any resizes
## Summary We only recalculated the size when the window resizes. However, resize also happens when the inner panes are resized. Deep owner tree took up all the space since resizing wasn't possible anymore. We use `ResizeObserver` now to cover all cases triggering a resize. ## How did you test this change? ...
null
bb53387716e96912cbfb48d92655bc23882798ff
null
low
[ { "filename": "packages/react-devtools-shared/src/devtools/views/hooks.js", "patch": "@@ -112,30 +112,38 @@ export function useEditableValue(\n }\n \n export function useIsOverflowing(\n- containerRef: {current: HTMLDivElement | null, ...},\n+ containerRef: {current: HTMLDivElement | null},\n totalChild...
electron/electron
50,595
fix: add missing HandleScope in contentTracing.getTraceBufferUsage()
Backport of #50556 See that PR for details. Notes: Fixed a crash when calling `contentTracing.getTraceBufferUsage()` while a trace session is active.
null
8f26c7a1b81ccf8fe750c6c13c067fa56c4f3183
null
low
[ { "filename": "shell/browser/api/electron_api_content_tracing.cc", "patch": "@@ -151,7 +151,10 @@ void OnTraceBufferUsageAvailable(\n gin_helper::Promise<gin_helper::Dictionary> promise,\n float percent_full,\n size_t approximate_count) {\n- auto dict = gin_helper::Dictionary::CreateEmpty(promi...
ollama/ollama
14,430
mlxrunner: Fix panic on full KV cache hit
When the entire prompt was already cached (e.g. repeated prompt), findRemaining returned an empty slice, causing FromValues to panic on an index-out-of-range accessing a zero-length byte slice. Fix by always keeping at least one token to re-evaluate so the pipeline can seed token generation. Also reject empty prompt...
79917cf80bf74538a4ae694e6b61adb908b0f8df
dd5eb6337dab84d76d7edec2c102064504d75378
1
medium
[ { "filename": "x/mlxrunner/cache.go", "patch": "@@ -78,6 +78,12 @@ func (c *kvCache) findRemaining(tokens []int32) []int32 {\n \t\tprefix++\n \t}\n \n+\t// Always keep at least one token to re-evaluate so the\n+\t// pipeline can seed token generation from it.\n+\tif prefix == len(tokens) && prefix > 0 {\n+\...
huggingface/transformers
44,710
Fix AutoProcessor.from_pretrained silently dropping hub kwargs
## What does this PR do? Fixes `AutoProcessor.from_pretrained` silently dropping hub kwargs like `force_download`, `cache_dir`, `token`, `revision`, etc. ### The bug The existing code on line ~300 filters kwargs using `inspect.signature(cached_file).parameters`: ```python cached_file_kwargs = {key: kwargs[key] for ...
null
35b005bba4de1d4b3c3789451adb5cf7469b1522
null
low
[ { "filename": "src/transformers/models/auto/processing_auto.py", "patch": "@@ -14,7 +14,6 @@\n \"\"\"AutoProcessor class.\"\"\"\n \n import importlib\n-import inspect\n import json\n from collections import OrderedDict\n from typing import TYPE_CHECKING\n@@ -299,7 +298,18 @@ def from_pretrained(cls, pretrai...
huggingface/transformers
44,984
Fix `maybe_autocast` crashing on meta device tensors
## What does this PR do? `maybe_autocast` calls `torch.is_autocast_enabled(device_type)` which raises a `RuntimeError` when `device_type` is `"meta"`: ``` RuntimeError: unknown device type for autocast in get_autocast_dispatch_key_from_device_type ``` This breaks any code that runs a forward pass on meta ten...
0e1978c9eb69ec64b55245212dbf63deab19d25b
c17877c2ad39f8f736d5ea8a34f98e562843fc83
3
high
[ { "filename": "src/transformers/utils/generic.py", "patch": "@@ -196,6 +196,8 @@ def maybe_autocast(\n Which makes graph splitting in `torch.compile` more flexible as it removes the\n requirement that partition IDs be monotonically increasing.\n \"\"\"\n+ if device_type == \"meta\":\n+ ...
nodejs/node
62,478
tools: adopt the `--check-for-duplicates` NCU flag
Refs: https://github.com/nodejs/node-core-utils/issues/1035 <!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md - the commit message formatting guidelines at https://github.com/nodejs/node/blob/HEAD/doc/contributing/pull-req...
null
fbf82766d623fd9855fdb2fde32aeb6794af84e9
null
low
[ { "filename": "tools/actions/start-ci.sh", "patch": "@@ -10,7 +10,7 @@ for pr in \"$@\"; do\n \n ci_started=yes\n rm -f output;\n- ncu-ci run \"$pr\" >output 2>&1 || ci_started=no\n+ ncu-ci run --check-for-duplicates \"$pr\" >output 2>&1 || ci_started=no\n cat output\n \n if [ \"$ci_started\" = \"...
ollama/ollama
14,477
model: fix parsing qwen3 tool calling in thinking
Align Qwen parser behavior with Transformers serve by allowing <tool_call> parsing while still in thinking collection. Changes: - qwen3vl: detect <tool_call> before </think> in thinking state and transition to tool parsing - qwen3: same thinking-state tool detection and partial-tag overlap handling - tests:...
da70c3222eff64680a608fb37c84ff59900db878
d98dda4676d44a3882fd38492cc00db257f35974
6
medium
[ { "filename": "model/parsers/qwen3.go", "patch": "@@ -204,6 +204,24 @@ func (p *Qwen3Parser) eat() ([]qwen3Event, bool) {\n \t\t\tp.maybeThinkingOpenAtBOL = false\n \t\t}\n \n+\t\tthinkingCloseIdx := strings.Index(acc, qwen3ThinkingCloseTag)\n+\t\ttoolOpenIdx := strings.Index(acc, qwen3ToolOpenTag)\n+\n+\t\...
rust-lang/rust
154,578
Rename `probe_ty_var` to `try_resolve_ty_var`
<!-- 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
1c155950d7fa3ea1e166a42ea3636b56aba7ff48
null
low
[ { "filename": "compiler/rustc_infer/src/infer/canonical/canonicalizer.rs", "patch": "@@ -341,7 +341,7 @@ impl<'cx, 'tcx> TypeFolder<TyCtxt<'tcx>> for Canonicalizer<'cx, 'tcx> {\n }\n \n debug!(\"canonical: type var found with vid {:?}\", vid);\n- match self.inf...
ollama/ollama
14,451
fix: window app crash on startup when update is pending
**Summary** - Fix nil pointer dereference panic on Windows when the app starts with a pending update - Add nil guard to UpdateAvailable to prevent crash when tray is not yet initialized - Re-check for pending updates inside osRun after the tray is initialized Fixes #14450
9bf41969f0c23d2ee980d7f092f5f80ea4521d2a
d69ddc1edc4c6df26cd6e6a20c040f2d6c6a29ef
1
medium
[ { "filename": "app/cmd/app/app.go", "patch": "@@ -296,8 +296,15 @@ func main() {\n \n \t// Check for pending updates on startup (show tray notification if update is ready)\n \tif updater.IsUpdatePending() {\n-\t\tslog.Debug(\"update pending on startup, showing tray notification\")\n-\t\tUpdateAvailable(\"\"...
facebook/react
35,547
[tests] add silent reporter
Adds silent reporter so you can run tests and only see the failed tests This helps reduce context agents use, if you're inclined to use agents: <img width="630" height="292" alt="Screenshot 2026-01-17 at 12 39 58 PM" src="https://github.com/user-attachments/assets/373b9803-59a6-4b9a-99f9-d74a7b41462e" />
null
d87298ae166b84cf6fcc8f9dbc25d2e320309841
null
low
[ { "filename": "package.json", "patch": "@@ -88,6 +88,7 @@\n \"jest-cli\": \"^29.4.2\",\n \"jest-diff\": \"^29.4.2\",\n \"jest-environment-jsdom\": \"^29.4.2\",\n+ \"jest-silent-reporter\": \"^0.6.0\",\n \"jest-snapshot-serializer-raw\": \"^1.2.0\",\n \"minimatch\": \"^3.0.4\",\n \...
electron/electron
50,593
fix: add missing HandleScope in contentTracing.getTraceBufferUsage()
Backport of #50556 See that PR for details. Notes: Fixed a crash when calling `contentTracing.getTraceBufferUsage()` while a trace session is active.
null
e57dc39746634d6d0b89ab30dd6a55bff7a5ef99
null
low
[ { "filename": "shell/browser/api/electron_api_content_tracing.cc", "patch": "@@ -151,7 +151,10 @@ void OnTraceBufferUsageAvailable(\n gin_helper::Promise<gin_helper::Dictionary> promise,\n float percent_full,\n size_t approximate_count) {\n- auto dict = gin_helper::Dictionary::CreateEmpty(promi...
ollama/ollama
14,427
app: fix first update check delayed by 1 hour
**Summary** - Fix a regression from #13512 where the first update check was delayed by ~60 minutes instead of ~3 seconds after startup. The refactor changed the loop from check-then-wait to wait-then-check, so the first iteration blocked on the ticker instead of checking immediately. - Reuse the existing store.Stor...
3323c1d31934158bd977961fb5fd7e4ca6989a8f
9bf41969f0c23d2ee980d7f092f5f80ea4521d2a
7
medium
[ { "filename": "app/cmd/app/app.go", "patch": "@@ -35,6 +35,7 @@ import (\n var (\n \twv = &Webview{}\n \tuiServerPort int\n+\tappStore *store.Store\n )\n \n var debug = strings.EqualFold(os.Getenv(\"OLLAMA_DEBUG\"), \"true\") || os.Getenv(\"OLLAMA_DEBUG\") == \"1\"\n@@ -208,6 +209,7 @@ func ma...
ollama/ollama
14,403
mlxrunner: Cancel in-flight requests when the client disconnects
Currently, a canceled request can result in computation continuing in the background to completion. It can also trigger a deadlock when there is nobody to read the output tokens and the pipeline cannot continue to the next request.
4e57d2094e127fcb32ed40d68289da7e41a83264
0f23b7bff5f3b2d53e11f6de60065a6ab09f5ff8
1
medium
[ { "filename": "x/mlxrunner/pipeline.go", "patch": "@@ -55,6 +55,10 @@ func (r *Runner) TextGenerationPipeline(request Request) error {\n \ttotal, processed := len(tokens), 0\n \tslog.Info(\"Prompt processing progress\", \"processed\", processed, \"total\", total)\n \tfor total-processed > 1 {\n+\t\tif err :...
vercel/next.js
91,511
Turbopack: correctly apply effects for issue snapshots
`snapshot_issues` emits effects when `UPDATE=1`
null
512d7e8128d9ba8e53955d0d3dd48d7c68b8afef
null
low
[ { "filename": "turbopack/crates/turbopack-tests/tests/snapshot.rs", "patch": "@@ -11,7 +11,7 @@ use rustc_hash::FxHashSet;\n use serde::Deserialize;\n use serde_json::json;\n use turbo_rcstr::{RcStr, rcstr};\n-use turbo_tasks::{Effects, ResolvedVc, TurboTasks, Vc, get_effects, turbofmt};\n+use turbo_tasks::...
huggingface/transformers
44,986
fix: remove Copied from comments between @torch.jit.script and def for Python 3.13 compat
## Summary Fixes #44855 On Python 3.13, placing a `# Copied from` comment between `@torch.jit.script` and the function definition causes an `IndentationError`. This happens because `torch.jit.script` calls `inspect.getsource()` followed by `ast.parse()`, and Python 3.13's stricter parser fails to associate the functi...
null
2f6249179233e880770c1dbc47ea834ada29fe59
null
low
[ { "filename": "src/transformers/models/deberta_v2/modeling_deberta_v2.py", "patch": "@@ -102,19 +102,16 @@ def build_relative_position(query_layer, key_layer, bucket_size: int = -1, max_p\n \n \n @torch.jit.script\n-# Copied from transformers.models.deberta.modeling_deberta.c2p_dynamic_expand\n def c2p_dyna...
nodejs/node
62,477
build: support empty libname flags in `configure.py`
Without this patch, passing e.g. `--shared-sqlite-libname=` ends up passing `-l''` in the lib flags, and there is no way to defer to the pkgconfig ones. <!-- 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
5913aa9adc1af1ea7032c91c9183f996590bed90
null
low
[ { "filename": "configure.py", "patch": "@@ -2007,10 +2007,9 @@ def configure_library(lib, output, pkgname=None):\n output['libraries'] += [pkg_libpath]\n \n default_libs = getattr(options, shared_lib + '_libname')\n- default_libs = [f'-l{l}' for l in default_libs.split(',')]\n \n if default...
rust-lang/rust
153,614
`FindParamInClause` handle edge-cases
<!-- homu-ignore:start --> *[View all comments](https://triagebot.infra.rust-lang.org/gh-comments/rust-lang/rust/pull/153614)* <!-- homu-ignore:end --> If normalization is ambiguous, we want to treat the where-bound as non-global. The affected code should pretty much always have other errors in that case. It does make...
null
fc758577be89e980c064bbc59e5962964ce49522
null
low
[ { "filename": "compiler/rustc_next_trait_solver/src/solve/assembly/mod.rs", "patch": "@@ -9,7 +9,6 @@ use derive_where::derive_where;\n use rustc_type_ir::inherent::*;\n use rustc_type_ir::lang_items::SolverTraitLangItem;\n use rustc_type_ir::search_graph::CandidateHeadUsages;\n-use rustc_type_ir::solve::Ce...
vercel/next.js
91,513
Turbopack: treat unknown CSS selectors as warnings
In many cases, these are just modern selectors that aren't supported yet.
891adaa6058519e4728ef852583f55a6b198de2f
892f7df054814144e313d347bd37ad391e42f728
6
medium
[ { "filename": "turbopack/crates/turbopack-css/src/process.rs", "patch": "@@ -3,6 +3,7 @@ use std::sync::{Arc, RwLock};\n use anyhow::{Result, bail};\n use lightningcss::{\n css_modules::{CssModuleExport, Pattern, Segment},\n+ error::SelectorError,\n stylesheet::{MinifyOptions, ParserOptions, Prin...
facebook/react
35,555
[test] add activity test with gSBU and enableViewTransition bugfix
Related to https://github.com/facebook/react/pull/35548, `enableViewTransition` fixes a bug where `getSnapshotBeforeUpdate` was running in hidden trees when it shouldn't (`componentWillUpdate` won't run for hidden updates, and when it becomes visible it will be called with `componentWillMount`).
3419420e8b8415c80ead82e4d95f0a039380aee5
087a34696f1eb484157b19aee1648bcbce51de64
13
medium
[ { "filename": "packages/react-reconciler/src/__tests__/Activity-test.js", "patch": "@@ -1527,6 +1527,87 @@ describe('Activity', () => {\n expect(root).toMatchRenderedOutput(<span prop={2} />);\n });\n \n+ // @gate enableActivity\n+ it('getSnapshotBeforeUpdate does not run in hidden trees', async () ...
electron/electron
50,316
ci: add functionality for programmatic add/remove needs-signed-commits label
#### Description of Change This PR adds functionality for the `needs-signed-commits` label to be added automatically. When a PR is opened or a new commit is pushed to the branch, if the label has not already been added, it will check to see if the commits are signed. A message will be sent once if any unsigned c...
null
2e2c56adde6652c9a80655ac1267ea0755f910fa
null
low
[ { "filename": ".github/workflows/build.yml", "patch": "@@ -446,3 +446,30 @@ jobs:\n - name: GitHub Actions Jobs Done\n run: |\n echo \"All GitHub Actions Jobs are done\"\n+\n+ check-signed-commits:\n+ name: Check signed commits in green PR\n+ needs: gha-done\n+ if: ${{ contains(g...