repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
electron/electron
b3a744db8a1aa85f27f4467ae2eb1a8c2eff0233
c14f52aeb708a4860ddc9c207788e4c801e58103
fix: potential "Object has been destroyed" error in BrowserWindow.getFocusedWindow (#35520)
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -72,9 +72,8 @@ BrowserWindow.getAllWindows = () => {\n \n BrowserWindow.getFocusedWindow = () => {\n for (const window of BrowserWindow.getAllWindows()) {\n- const hasWC = window.webContents && !window.webContents.isDestroyed();\n- if (!win...
2022-09-12T21:46:05
golang/go
a704d39b29dfc21599f644909c0f98bbfa745cb4
47d0b0f2bf9d507d5bc9ea8f456cc821829fe21c
os: hide SetFinalizer from users of Root Currently Root embeds a root and calls SetFinalizer on &r.root. This sets the finalizer on the outer root, which is visible to users of os.Root, and thus they can mutate the finalizer attached to it. This change modifies Root to not embed its inner root, but rather to refer to...
[ { "path": "src/os/root.go", "patch": "@@ -60,7 +60,7 @@ func OpenInRoot(dir, name string) (*File, error) {\n // - When GOOS=plan9 or GOOS=js, Root does not track directories across renames.\n // On these platforms, a Root references a directory name, not a file descriptor.\n type Root struct {\n-\troo...
2025-02-07T23:22:50
ollama/ollama
37f6f3af24ad567e2160f79545f1a10a207467a2
e1bdc23dd27cc615ae5ab2334429c05e241d3a02
server: return error when embedding contains NaN or Inf values (#13599) The normalize function now checks for NaN and Inf values in the embedding vector before processing. This prevents JSON encoding failures when models produce invalid floating-point values. Fixes #13572 Signed-off-by: majiayu000 <1835304752@qq.com...
[ { "path": "server/routes.go", "patch": "@@ -752,9 +752,15 @@ func (s *Server) EmbedHandler(c *gin.Context) {\n \t\t\t\treturn err\n \t\t\t}\n \t\t\t// TODO: this first normalization should be done by the model\n-\t\t\tembedding = normalize(embedding)\n+\t\t\tembedding, err = normalize(embedding)\n+\t\t\tif ...
2026-01-03T07:20:12
facebook/react
db69f95e4876ec3c24117f58d55cbb4f315b9fa7
4f4c52a3c8f9c8a2d8133c654841fee257c37249
Fix checkbox and radio hydration (#27401) Fixes whatever part of https://github.com/facebook/react/issues/26876 and https://github.com/vercel/next.js/issues/49499 that https://github.com/facebook/react/pull/27394 didn't fix, probably. From manual tests I believe this behavior brings us back to parity with latest...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMInput.js", "patch": "@@ -297,12 +297,10 @@ export function initInput(\n typeof checkedOrDefault !== 'symbol' &&\n !!checkedOrDefault;\n \n- // The checked property never gets assigned. It must be manually set.\n- // We don't want to do this...
2023-10-02T18:38:44
huggingface/transformers
83a6c5b577cafa607d59e78af4de86592b9903ee
9f93b61209e3a3cac026566bc11a77036941bbeb
Remove cache_position in more models (3) (#44759) * start on the mambas * fix mambas * moshi and kyutai * a few more special ones * refactor recurrent gemma * a bit more * zambas * fix mamba * fixes * fix csm * kyutao * fix test * align and simpolify mamba cache * fix mask for recurrent gemma * small oup...
[ { "path": "src/transformers/models/chameleon/modeling_chameleon.py", "patch": "@@ -307,7 +307,6 @@ def forward(\n past_key_values: Cache | None = None,\n output_attentions: bool = False,\n use_cache: bool = False,\n- cache_position: torch.LongTensor | None = None,\n po...
2026-03-18T13:09:35
vercel/next.js
7a0db3a159e6c25424f6e784ac973cb6e044ad70
0b0d03a07f14ce64d7aeed9c4ef44851d34eede8
[testmode] Fix types of `wrapRequestHandler` (#80055) Was previously shadowed because we used an uncast `require` which results in `any`. Fixes ``` Argument of type '<T>(request: NextRequestHint, fn: () => T) => T' is not assignable to parameter of type '(req: Request, fn: () => T) => T'. Types of parameters '...
[ { "path": "packages/next/src/experimental/testmode/server-edge.ts", "patch": "@@ -5,8 +5,8 @@ export function interceptTestApis(): () => void {\n return interceptFetch(global.fetch)\n }\n \n-export function wrapRequestHandler<T>(\n- handler: (req: Request, fn: () => T) => T\n-): (req: Request, fn: () => ...
2025-06-03T17:36:10
electron/electron
730d9181b3de8561c1d87d82ccb923b1859122ae
b0036ea43afda71e33c1450a0dc2c96c1f8f4ce4
fix: ensure history navigations are sandboxed-iframe-aware (#35420)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1380,11 +1380,6 @@ bool WebContents::HandleContextMenu(content::RenderFrameHost& render_frame_host,\n return true;\n }\n \n-bool WebContents::OnGoToEntryOffset(int offset) {\n- GoToOffset(offset);\n- return false;\n-}\n-\n void We...
2022-09-09T00:08:56
ollama/ollama
e1bdc23dd27cc615ae5ab2334429c05e241d3a02
2e78653ff99536885ab6bbbc00f20dd34d499102
docs: fix tool name mismatch and trailing commas in api.md example (#13559) The tool calling example used "get_temperature" for tool_calls but defined the tool as "get_weather". Also removed trailing commas that made the JSON invalid. Fixes #13031
[ { "path": "docs/api.md", "patch": "@@ -895,19 +895,19 @@ curl http://localhost:11434/api/chat -d '{\n \"tool_calls\": [\n {\n \"function\": {\n- \"name\": \"get_temperature\",\n+ \"name\": \"get_weather\",\n \"arguments\": {\n \"city\":...
2026-01-03T07:14:53
golang/go
a4fcfaa1676f40a1dc5879cdabe98471c6054daf
ff627d28dbc5fc3ef156c36f74b5dd026b41d21b
go/types, types2: better error messages for channel sends and receives Use the same code pattern for sends and receives and factor it out into a new helper method Checker.chanElem. Provide the exact error cause rather than simply referring to the core type. For #70128. Change-Id: I4a0b597a487b78c057eebe06c4ac28f9bf...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -148,26 +148,13 @@ func (check *Checker) unary(x *operand, e *syntax.Operation) {\n \t\treturn\n \n \tcase syntax.Recv:\n-\t\tu := coreType(x.typ)\n-\t\tif u == nil {\n-\t\t\tcheck.errorf(x, InvalidReceive, invalidOp+\"cannot receive from %s ...
2025-02-06T21:51:51
facebook/react
4f4c52a3c8f9c8a2d8133c654841fee257c37249
843ec0702140f2d1e9407a38859abdf5b8dfe4e4
Fix controlled radios, maybe for real this time (#27443) Fixes #26876 for real? In 18.2.0 (last stable), we set .checked unconditionally: https://github.com/facebook/react/blob/v18.2.0/packages/react-dom/src/client/ReactDOMInput.js#L129-L135 This is important because if we are updating two radios' checkedne...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMInput.js", "patch": "@@ -175,8 +175,13 @@ export function updateInput(\n }\n }\n \n- if (checked != null && node.checked !== !!checked) {\n- node.checked = checked;\n+ if (checked != null) {\n+ // Important to set this even if it's not ...
2023-10-02T18:38:13
huggingface/transformers
9f93b61209e3a3cac026566bc11a77036941bbeb
09fea1e6e970a1051b1141ce320a3d696b2c15ed
Fix `supports_{tp/pp}_plan` (#44696) * Fix `supports_{tp/pp}_plan` Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> * Apply repo consistency fixes --------- Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users....
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -26,7 +26,6 @@\n from collections.abc import Callable, Iterator\n from contextlib import contextmanager\n from dataclasses import dataclass, field\n-from enum import Enum\n from functools import partial, wraps\n from itertools import cycle\n from ...
2026-03-18T12:22:17
vercel/next.js
3b3d5eeea4efdade5740940c9ef82d8481b296ff
750eae084a1dfe923c84ba1e6cdc38bd9b4f8776
[dev-tools] add restart dev server button to error overlay (#80060) ### Why? When the user reloads on a specific error, and that error persists, we show the restart server button as an option. This is because some errors are recoverable by restarting the server and rebuilding the app. https://github.com/user-attach...
[ { "path": "packages/next/src/build/define-env.ts", "patch": "@@ -286,6 +286,8 @@ export function getDefineEnv({\n : {}),\n 'process.env.__NEXT_DEVTOOL_SEGMENT_EXPLORER':\n config.experimental.devtoolSegmentExplorer ?? false,\n+ 'process.env.__NEXT_TURBOPACK_PERSISTENT_CACHE':\n+ conf...
2025-06-03T17:22:54
ollama/ollama
2e78653ff99536885ab6bbbc00f20dd34d499102
f5f74e12c19f2a4e19119dd962c0845e37dbb74e
app/ui: add swift syntax highlighting support (#13574) Fixes #13476 Signed-off-by: majiayu000 <1835304752@qq.com>
[ { "path": "app/ui/app/src/lib/highlighter.ts", "patch": "@@ -147,6 +147,7 @@ export const highlighterPromise = createHighlighter({\n \"c\",\n \"cpp\",\n \"sql\",\n+ \"swift\",\n \"yaml\",\n \"markdown\",\n ],", "additions": 1, "deletions": 0, "language": "Unknown" } ]
2026-01-03T07:12:08
golang/go
580a383103f2bc67955a146a2d45b7c0c98dae8a
302bf3631493417b365d693788357973a379a03d
{all,clean,make,race,run}.bat: use || instead of "if errorlevel 1" "if errorlevel 1" is and old construct that returns true if the errorlevel is greater than or equal to 1. There are better alternatives since Windows NT. For example, the || operator runs the RHS operand if the preceding command failed, determined by c...
[ { "path": "src/all.bat", "patch": "@@ -11,10 +11,8 @@ echo all.bat must be run from go\\src\n exit /b 1\r\n :ok\r\n \r\n-call .\\make.bat --no-banner --no-local\r\n-if errorlevel 1 goto fail\r\n-call .\\run.bat --no-rebuild\r\n-if errorlevel 1 goto fail\r\n+call .\\make.bat --no-banner --no-local || goto fa...
2025-02-06T09:55:59
huggingface/transformers
6f308258772a8fe21ba1f905248616d977a9c1c5
3bf92002f84291f61fd6556a946e895609c516f3
[Gemma] Update conversion scripts for Transformers v5 Comaptibility (#44631) * maintenance(gemma): Update gemma conversion scripts for v5 * style: fix conversion scripts style
[ { "path": "src/transformers/models/gemma/convert_gemma_weights_to_hf.py", "patch": "@@ -13,22 +13,13 @@\n # limitations under the License.\n import argparse\n import os\n-import warnings\n \n import torch\n \n from transformers import GemmaConfig, GemmaForCausalLM, GemmaTokenizer\n+from transformers.tokeniz...
2026-03-18T10:39:52
facebook/react
a6ed60a8eb0626e5f84d0bdbb62c0b61219150d3
c7ba8c098889b6dc47fa9c807bbba3975a658584
[Fizz] Don't double replay elements when it's the postpone point (#27440) The `resumeElement` function wasn't actually doing the correct thing because it was resuming the element itself but what the child slot means is that we're supposed to resume in the direct child of the element. This is difficult to check for ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -6988,4 +6988,100 @@ describe('ReactDOMFizzServer', () => {\n </div>,\n );\n });\n+\n+ // @gate enablePostpone\n+ it('can discover new suspense boundaries in the resume', async () => {\n+ let prerendering ...
2023-09-29T22:24:38
electron/electron
b0036ea43afda71e33c1450a0dc2c96c1f8f4ce4
a0dbae72c8b2d192835e01798dd4241e67a5f44f
chore: bump chromium to 107.0.5286.0 (main) (#35590) * chore: bump chromium in DEPS to 107.0.5286.0 * 3866335: media: Rename KeySystemProperties to KeySystemInfo - file renaming https://chromium-review.googlesource.com/c/chromium/src/+/3866335 * 3864686: [PA] Introduce *Scan buildflag https://chromium-revi...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '107.0.5274.0',\n+ '107.0.5286.0',\n 'node_version':\n 'v16.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2022-09-08T23:23:08
vercel/next.js
bc4b72df8eab4451391c8b49a9d684fd533989cc
81ab1ffc14a4454dae13dac4318bec2aab9c2f2c
[devtool] fix explorer flag consuming and style (#80110)
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -369,6 +369,8 @@ export async function handler(\n enableTainting: nextConfig.experimental.taint,\n // @ts-expect-error fix issue with readonly regex object type\n htmlLimitedBots: nextConfig.htmlLimitedBots...
2025-06-03T16:40:59
ollama/ollama
18fdcc94e55d8ca393be9d01b30246dbbca6f6af
7ad036992f3f31cba3c567f7054ad4aa77e01c1a
docs: fix broken .md links and render issues (#13550)
[ { "path": "docs/faq.mdx", "patch": "@@ -14,11 +14,11 @@ curl -fsSL https://ollama.com/install.sh | sh\n \n ## How can I view the logs?\n \n-Review the [Troubleshooting](./troubleshooting.md) docs for more about using logs.\n+Review the [Troubleshooting](./troubleshooting) docs for more about using logs.\n \...
2025-12-23T17:44:55
golang/go
d9d87edc56e72808b004a80e8c6846bde690d6c1
9125e214a1d3341836d41ec3f297f42b9b141db1
Revert "cmd/go: report gcc ld error message when linking fails" This reverts CL 646315. Reason for revert: broke cgo_undef test Change-Id: Ic992a1666a446736c605a8caefa77f791dceb64c Reviewed-on: https://go-review.googlesource.com/c/go/+/647415 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Ian Lance Taylo...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2208,7 +2208,7 @@ func (b *Builder) gccld(a *Action, objdir, outfile string, flags []string, objs\n \t}\n \n \tcmdargs := []any{cmd, \"-o\", outfile, objs, flags}\n-\tout, err := sh.runOut(base.Cwd(), b.cCompilerEnv(), cmdargs...)\n+\t_, err := sh....
2025-02-06T21:16:34
huggingface/transformers
3bf92002f84291f61fd6556a946e895609c516f3
6b01cc4be766ba0bc2e3423731a9de036ec9b2c7
fix bug embedding_size mismatch with hidden_size in electra model test (#44657) * fix bug embedding_size mismatch with hidden_size in electra model test Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * add comment Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> --------- Signed-off-by: Liu, Kaixuan <kaix...
[ { "path": "tests/models/electra/test_modeling_electra.py", "patch": "@@ -126,6 +126,7 @@ def prepare_config_and_inputs(self):\n def get_config(self):\n return ElectraConfig(\n vocab_size=self.vocab_size,\n+ embedding_size=self.hidden_size, # Match hidden_size to avoid dim...
2026-03-18T10:12:44
facebook/react
d900fadbf9017063fecb2641b7e99303b82a6f17
13d0225c7d4715d98772a85d8deb26d244921287
Bugfix: Selective hydration triggers false update loop error (#27439) This adds a regression test and fix for a case where a sync update triggers selective hydration, which then leads to a "Maximum update depth exceeded" error, even though there was only a single update. This happens when a single sync update flow...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerSelectiveHydration-test.internal.js", "patch": "@@ -1853,4 +1853,58 @@ describe('ReactDOMServerSelectiveHydration', () => {\n assertLog(['App', 'A', 'App', 'AA', 'DefaultContext', 'Commit']);\n });\n });\n+\n+ it('regression: selective h...
2023-09-29T18:29:35
vercel/next.js
81ab1ffc14a4454dae13dac4318bec2aab9c2f2c
d14df6cc29b4b765952ac8adf0963d6854b79531
[dev-overlay] Inject `isRecoverableError` implementation (#80003) Same as with `get*Stack` implementation
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -45,6 +45,7 @@ import reportHmrLatency from '../utils/report-hmr-latency'\n import { TurbopackHmr } from '../utils/turbopack-hot-reloader-common'\n import { NEXT_HMR_REFRESH_HASH_COOKIE } from '../../...
2025-06-03T15:24:20
electron/electron
a0c20fef968ae86fc398ddaccee802ec55e56041
34cb360730000e2f046921ee0bd90f5a50987253
docs: fix misspelling in fuses (#35609)
[ { "path": "docs/tutorial/fuses.md", "patch": "@@ -52,7 +52,7 @@ For more information on how to use asar integrity validation please read the [As\n **Default:** Disabled\n **@electron/fuses:** `FuseV1Options.OnlyLoadAppFromAsar`\n \n-The onlyLoadAppFromAsar fuse changes the search system that Electron uses t...
2022-09-08T22:33:58
ollama/ollama
172b5924af1f08277a7d6133d9bbfd4bd7438f01
8852220f59c12cf3165f5643d38453ffecbb722d
llm: Avoid integer underflow on llama engine memory layout On the llama engine, when we compute the memory layout, we reserve a buffer to allow for some flexibility for incorrect estimates. This is subtracted from GPU free memory and on GPUs with limited memory, it may underflow. Fixes #13494
[ { "path": "llm/server.go", "patch": "@@ -524,8 +524,13 @@ func (s *llamaServer) Load(ctx context.Context, systemInfo ml.SystemInfo, system\n \t// Use the size of one layer as a buffer\n \tlayers := s.ggml.Tensors().GroupLayers()\n \tif blk0, ok := layers[\"blk.0\"]; ok {\n+\t\tbuffer := blk0.Size() + kv[0]\...
2025-12-19T23:10:55
huggingface/transformers
6b01cc4be766ba0bc2e3423731a9de036ec9b2c7
869dea750f56a39bf2a9ac24bf5e422be7bbe689
Fix pegasus conversion (#44571) * fix pegasus conversion * Apply repo consistency fixes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Force merged since tests are passing
[ { "path": "src/transformers/convert_slow_tokenizer.py", "patch": "@@ -1290,6 +1290,28 @@ def vocab(self, proto):\n vocab += [(piece.piece, piece.score) for piece in proto.pieces[2:]]\n return vocab\n \n+ @classmethod\n+ def convert_from_spm(cls, vocab=None, **kwargs):\n+ pad_tok...
2026-03-18T09:54:57
golang/go
09fdcdc97d6dcf90aaac3177a6ce2088613547be
7a2f757c521d9af201c6d3463a0e203c4104d5aa
{all,clean,make,race,run}.bat: remove %GOBUILDEXIT% and %GOBUILDFAIL% %GOBUILDEXIT% is used to avoid closing the terminal window when the build or the tests fail on a dev machine. It is only set in CI to get a non-zero exit code in case of failure. %GOBUILDFAIL% is used to pass the exit code from a child batch file t...
[ { "path": "src/all.bat", "patch": "@@ -8,15 +8,15 @@ setlocal\n \r\n if exist make.bat goto ok\r\n echo all.bat must be run from go\\src\r\n-:: cannot exit: would kill parent command interpreter\r\n-goto end\r\n+exit /b 1\r\n :ok\r\n \r\n call .\\make.bat --no-banner --no-local\r\n-if %GOBUILDFAIL%==1 goto ...
2025-02-06T08:07:08
vercel/next.js
602a5a63fef85af888dd17cfcad7aa9ff10a9c08
447f20e5efaebb35b5e59f6147f288730f149d74
[dev-overlay] Fix dark‐mode styling for `<option>` in Preferences dropdowns (#80025) When Preferences is in dark mode, `<option>` items in the `<select>` components were using the browser’s native white panel with white text, making them unreadable. This change explicitly adds CSS styles to the `<option>` items so th...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/dev-tools-indicator/dev-tools-info/user-preferences.tsx", "patch": "@@ -270,6 +270,11 @@ export const DEV_TOOLS_INFO_USER_PREFERENCES_STYLES = css`\n select {\n all: unset;\n }\n+\n+ option {\n+ color...
2025-06-03T15:06:24
facebook/react
62512bafc635e165eb0db26dc8efbed12d0d02fb
5b5665342b34b12940874bf38d61ef7b2a784bbd
Test fix: Add missing warning assertion (#27434) Adds a missing test assertion for Server Context deprecation. The PR that added this warning was based on an older revision than the PR that added the test.
[ { "path": "packages/react-server-dom-turbopack/src/__tests__/ReactFlightDOMBrowser-test.js", "patch": "@@ -612,8 +612,22 @@ describe('ReactFlightDOMBrowser', () => {\n });\n \n it('basic use(context)', async () => {\n- const ContextA = React.createServerContext('ContextA', '');\n- const ContextB =...
2023-09-28T16:21:11
electron/electron
4fb4167b8b42276710b658a3c62f0ebe9fffe446
17d501616368e2a0c709cbc2174de38e1781e8c3
fix: Set background for WCO container (#35569) * fix: Set background for WCO container * Add background when invalidating as well
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -14,6 +14,7 @@\n #include \"shell/browser/ui/views/win_frame_view.h\"\n #include \"ui/base/l10n/l10n_util.h\"\n #include \"ui/strings/grit/ui_strings.h\"\n+#include \"ui/views/background.h\"\n #include \"ui/views/layout/flex_la...
2022-09-08T13:11:51
ollama/ollama
971d62595a14e4b349bb18d7980662cec7080e8c
ffbe8e076df9e2e67aab016ea3ec64822369b725
fix: qwen2.5 vl rope (#13486) * qwen25vl: bump max pixels * qwen25vl: mrope fix qwen2.5vl window * qwen25vl: vision rope
[ { "path": "ml/backend/ggml/ggml.go", "patch": "@@ -1534,7 +1534,8 @@ func (t *Tensor) RoPE(ctx ml.Context, positions ml.Tensor, ropeDim int, ropeBase\n \t\t\tunsafe.SliceData(mropeSections),\n \t\t\tC.int(opts.Type),\n \t\t\tcmp.Or(C.int(opts.YaRN.OriginalContextLength), 128<<10),\n-\t\t\tC.float(ropeBase),...
2025-12-16T01:30:33
golang/go
76c18e2ed2e62f34a9afed5e6fa681837cc16b77
e7c9667defe1aed61818d63ace6ebb7a27b9c13e
cmd/link: add -e (no limit on errors) flag The compiler and assembler have a -e flag that disables the limit on the number of errors before the build fails. This flag is useful for debugging, the linker should have it too. Change-Id: I892cfd6ee1519e9e86261af7d05e1af2ded21684 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/cmd/link/doc.go", "patch": "@@ -72,6 +72,8 @@ Flags:\n \t\tsystem tools now assume the presence of the header.\n \t-dumpdep\n \t\tDump symbol dependency graph.\n+\t-e\n+\t\tNo limit on number of errors reported.\n \t-extar ar\n \t\tSet the external archive program (default \"ar\").\n \t\tUsed...
2025-02-04T10:16:40
vercel/next.js
447f20e5efaebb35b5e59f6147f288730f149d74
6d8bcd6255e805baf534c08f4f026879d82dd9fe
[dev-tools] Re-focus previous item after closing sub menu (#80099) This PR fixes a small bug with the menu keyboard interactions. Namely, if you open a sub-menu and close it, visually the correct item is highlighted but does not respond when pressing Enter. The bug is visible here on this video: https://github.com...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -219,18 +219,21 @@ function DevToolsPopover({\n dispatch({ type: ACTION_ERROR_OVERLAY_TOGGLE })\n }\n \n- function openRootMenu() {\n- setOpen((prevOpen)...
2025-06-03T14:43:17
electron/electron
e3efa16415ac090b38bd87d6b509ccecc90cefa0
3a6d6ff0083408588af10a8931f881d7ee134622
fix: session.getBlobData never resolves with blob sizes > 65536 (#35277) * fix: session.getBlobData never resolves with blob sizes > 65536 (#34398) * Add unit test case for session.getBlobData Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/api/electron_api_data_pipe_holder.cc", "patch": "@@ -86,8 +86,11 @@ class DataPipeReader {\n if (result == MOJO_RESULT_OK) { // success\n remaining_size_ -= length;\n head_ += length;\n- if (remaining_size_ == 0)\n+ if (remaining_size_ == 0) {\n On...
2022-09-07T21:47:06
huggingface/transformers
869dea750f56a39bf2a9ac24bf5e422be7bbe689
f1f34de0a68497ebc95ae690893fb75b89814c0d
Fix repo-check bot (#44812) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/pr-repo-consistency-bot.yml", "patch": "@@ -172,6 +172,13 @@ jobs:\n cp utils/check_docstrings.py pr-repo/utils/check_docstrings.py\n cp utils/add_dates.py pr-repo/utils/add_dates.py\n \n+ - name: Install editable transformers from PR branch with copied ...
2026-03-18T09:47:57
ollama/ollama
aacd1cb3947d9a9e2c7be4ad52b15a03984cac2d
e3731fb1605dd0949766b9d209427c62fe588bf8
fix: define GGML_VERSION variables for proper SOVERSION expansion (#13469) The ggml/src/CMakeLists.txt uses GGML_VERSION_MAJOR for the shared library SOVERSION property, but these variables were not defined when building from ollama's CMakeLists.txt. This caused libggml-base.so to be named with a literal "SOVERSION" ...
[ { "path": "CMakeLists.txt", "patch": "@@ -54,6 +54,13 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/ml/backend/ggml/ggml/src/ggml-cp\n \n add_compile_definitions(NDEBUG GGML_VERSION=0x0 GGML_COMMIT=0x0)\n \n+# Define GGML version variables for shared library SOVERSION\n+# These are required by ggml/src...
2025-12-15T22:42:15
golang/go
caf29da4ccf0ca64b422835dfa48fa6e06f87f24
637c235b510a885622cdbb914ad9e0d4bbce9a14
os: don't store reference count in Process.state We only need a reference count in processHandle. For #70907 Fixes #71564 Change-Id: I209ded869203dea10f12b070190774fb5f1d3d71 Reviewed-on: https://go-review.googlesource.com/c/go/+/638577 Commit-Queue: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <...
[ { "path": "src/os/exec.go", "patch": "@@ -38,31 +38,10 @@ const (\n type Process struct {\n \tPid int\n \n-\t// State contains the atomic process state.\n+\t// state contains the atomic process state.\n \t//\n-\t// If handle is nil, this consists only of the processStatus fields,\n+\t// This consists of the...
2024-12-23T05:00:58
vercel/next.js
6d8bcd6255e805baf534c08f4f026879d82dd9fe
4172a4f4cc0ca2178711e9bf06d8e76630dc9173
[dev-overlay] Inject `get*Stack` implementation (#79789) The stitched-errors module will live in a different layer than the dev-overlay. In that future we need to pass the `get*Stack` implementations to the dev-overlay. Right now it's not meaningful but makes future diffs smaller.
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -44,6 +44,7 @@ import type { DevIndicatorServerState } from '../../../../server/dev/dev-indicat\n import reportHmrLatency from '../utils/report-hmr-latency'\n import { TurbopackHmr } from '../utils/tu...
2025-06-03T14:27:05
facebook/react
959c6685be0368cb9c545984a1a56d4b70a5cd08
7b58600fb928dae935e85182c2142629af38dfe5
Merge consecutive reactive scopes that invalidate together This is something we've wanted to do for a while, and which @sophiebits also brought up. The idea is to merge consecutive reactive scopes that will always invalidate together. There are two cases of this: * Both scopes have the exact same inputs * Or th...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -42,6 +42,7 @@ import {\n flattenScopesWithHooks,\n inferReactiveScopeVariables,\n memoizeFbtOperandsInSameScope,\n+ mergeConsecutiveScopes,\n mergeOverlappingReactiveScopes,\n promoteUsedTemporaries,...
2023-09-27T18:03:59
huggingface/transformers
f1f34de0a68497ebc95ae690893fb75b89814c0d
03205a9dd636b54a19ddd34a08ff4b4245f00150
Sdpa for owlvit (#42136) * Added sdpa attention * Added Changes to OWL-Vit as suggested * Fixed nits * removed unwanted files * Fixed nits * Fixed past_key_values_length to length 0 * Fixed nits * Fixed dim issue * fixed nits * Fixed dim issue * add sdpa for owlvit * fixes * fixe * fixes * fixes * fixes...
[ { "path": "src/transformers/models/owlv2/modeling_owlv2.py", "patch": "@@ -13,6 +13,7 @@\n # limitations under the License.\n \"\"\"PyTorch OWLv2 model.\"\"\"\n \n+from collections.abc import Callable\n from dataclasses import dataclass\n from typing import Any\n \n@@ -24,18 +25,17 @@\n from ...masking_util...
2026-03-17T19:52:21
electron/electron
c16baa063a404c9afefe452ef88a28cfa7cc2241
87145c393c08203e6e18f0615a13baff59fb3e30
docs: fix missing includes in code example (#35479)
[ { "path": "docs/tutorial/tutorial-3-preload.md", "patch": "@@ -185,7 +185,8 @@ loading the HTML file so that the handler is guaranteed to be ready before\n you send out the `invoke` call from the renderer.\n \n ```js {1,11} title=\"main.js\"\n-const { ipcMain } = require('electron')\n+const { app, BrowserWi...
2022-09-07T13:37:29
ollama/ollama
e3731fb1605dd0949766b9d209427c62fe588bf8
8dbc9e7b68eedcffb44ad2b29b4bdacce5f936ac
renderers: add olmo3.1 and olmo3 fixes (#13447)
[ { "path": "model/renderers/olmo3.go", "patch": "@@ -10,12 +10,15 @@ import (\n )\n \n const (\n-\tolmo3DefaultSystemMessage = \"You are a helpful function-calling AI assistant. \"\n-\tolmo3NoFunctionsMessage = \"You do not currently have access to any functions. \"\n-\tolmo3WithFunctionsMessage = \"You ar...
2025-12-15T19:26:43
golang/go
290ec2d92bca6472fdabce51fc331b3bcaa7129d
7c6b047ea14dcc6aa948f901956511c4e8691abf
bufio: don't do empty Write at start of WriteTo The empty Write will cause the wrong thing to happen when using io.Copy to copy to a package-based stream. Fixes #71424 Change-Id: I046a27539447182692ac76a8bdd422327345dd8d Reviewed-on: https://go-review.googlesource.com/c/go/+/644535 Reviewed-by: Keith Randall <khr@go...
[ { "path": "src/bufio/bufio.go", "patch": "@@ -519,9 +519,11 @@ func (b *Reader) WriteTo(w io.Writer) (n int64, err error) {\n \tb.lastByte = -1\n \tb.lastRuneSize = -1\n \n-\tn, err = b.writeBuf(w)\n-\tif err != nil {\n-\t\treturn\n+\tif b.r < b.w {\n+\t\tn, err = b.writeBuf(w)\n+\t\tif err != nil {\n+\t\t\...
2025-01-27T05:52:58
vercel/next.js
fdc82f5c32b1ca0d723e682ba852ad0a0c8c1477
6d7523a58b12f9c36c2c07d86c2a0a744d18b9ef
Remove obsolete `@ts-expect-error` (#80065) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Im...
[ { "path": "packages/next/src/client/image-component.tsx", "patch": "@@ -314,7 +314,7 @@ function ImagePreload({\n isAppRouter: boolean\n imgAttributes: ImgProps\n }) {\n- const opts = {\n+ const opts: ReactDOM.PreloadOptions = {\n as: 'image',\n imageSrcSet: imgAttributes.srcSet,\n imageSi...
2025-06-03T12:53:35
ollama/ollama
1b308e1d2a478e70ef3e31e6b24d687a44b33016
bd6c1d6b49aca86dbb1a59182b293c0d1f7b8db8
model: fix global layer rope scale values for gemma 3 (#13452)
[ { "path": "model/models/gemma3/model_text.go", "patch": "@@ -28,10 +28,10 @@ type TextConfig struct {\n \tfinalLogitSoftcap float32\n }\n \n-func (o TextConfig) applyRotaryPositionEmbeddings(ctx ml.Context, states, positions ml.Tensor, base float32) ml.Tensor {\n+func (o TextConfig) applyRota...
2025-12-13T00:29:01
electron/electron
7d89cb1bd4ef0d15429d66a8ee34d7df98e32e73
08ccc815748fcc55b319c7ee73ae90202bc44fa0
chore: remove no-op force-paint for hidden windows (#35532) * chore: remove no-op force-paint for hidden windows * fix build
[ { "path": "shell/browser/api/electron_api_browser_window.cc", "patch": "@@ -158,17 +158,6 @@ void BrowserWindow::RenderViewHostChanged(content::RenderViewHost* old_host,\n new_host->GetWidget()->AddInputEventObserver(this);\n }\n \n-void BrowserWindow::DidFirstVisuallyNonEmptyPaint() {\n- if (window()-...
2022-09-07T09:48:59
golang/go
88108cc563418ab962e41bdcc54a1d2010c2efcf
372f2d802201583b0af2db2fa023d355812db2b1
cmd/go: adjust testsuite to add reraised panic message A couple of tests generate different output due to CL 645916 for issue #71517. Fixes #71593 Fixes #71594 Change-Id: Ifaeff4e9de8d881202bd9e6394c9b9cff8959596 Reviewed-on: https://go-review.googlesource.com/c/go/+/647495 LUCI-TryBot-Result: Go LUCI <golang-scoped...
[ { "path": "src/cmd/go/testdata/script/test_cleanup_failnow.txt", "patch": "@@ -14,8 +14,8 @@ env GOGC=off\n \n ! go test -v cleanup_failnow/panic_nocleanup_test.go\n ! stdout 'no tests to run'\n-stdout '(?s)panic: die \\[recovered\\].*panic: die'\n-! stdout '(?s)panic: die \\[recovered\\].*panic: die.*panic...
2025-02-06T23:01:17
facebook/react
701ac2e57290f913502c6012c15e815f412f84b7
49eba01930e9e1f331b34967fca65d5a0ba62846
[Flight][Float] Preinitialize module imports during SSR (#27314) Currently when we SSR a Flight response we do not emit any resources for module imports. This means that when the client hydrates it won't have already loaded the necessary scripts to satisfy the Imports defined in the Flight payload which will lead t...
[ { "path": "fixtures/flight-esm/.nvmrc", "patch": "@@ -0,0 +1 @@\n+v18", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "fixtures/flight-esm/server/global.js", "patch": "@@ -10,6 +10,7 @@ const compress = require('compression');\n const chalk = require('chalk');\n ...
2023-09-27T16:53:31
vercel/next.js
6d7523a58b12f9c36c2c07d86c2a0a744d18b9ef
ebcec54e03e7269767f2de2a0a6ed38e7e2588da
[dev-overlay] Parse stacks in reducer not during dispatch (#79788) In the reducer we'll later inject the implementation of `get*Stack`. The reducer will live in a different module than `stitched-errors` so we need to make sure `get*Stack` is a singleton. Dependency injection makes this easier to achieve. `getOwnerS...
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -20,7 +20,6 @@ import {\n reportInvalidHmrMessage,\n useErrorOverlayReducer,\n } from '../shared'\n-import { parseStack } from '../utils/parse-stack'\n import { AppDevOverlay } from './app-dev-ove...
2025-06-03T12:23:21
golang/go
372f2d802201583b0af2db2fa023d355812db2b1
8163ea1458763aa38fa9197e479bd30cb0145429
unicode/utf8: remove init from utf8_test TestConstants and init test the same thing, remove init, it does not exist in utf16_test.go either. Fixes #71579 Change-Id: Ie0afd640bebde822733b6eac0bf98a17872f4e5f GitHub-Last-Rev: d7224c18376e00038261279abdfa954abc3a8303 GitHub-Pull-Request: golang/go#71582 Reviewed-on: ht...
[ { "path": "src/unicode/utf8/utf8_test.go", "patch": "@@ -12,16 +12,6 @@ import (\n \t. \"unicode/utf8\"\n )\n \n-// Validate the constants redefined from unicode.\n-func init() {\n-\tif MaxRune != unicode.MaxRune {\n-\t\tpanic(\"utf8.MaxRune is wrong\")\n-\t}\n-\tif RuneError != unicode.ReplacementChar {\n-...
2025-02-06T21:33:18
facebook/react
bff6be8eb1d77980c13f3e01be63cb813a377058
94d5b5b2bf5204ebd289a113989c0e2c51b626ef
[Fizz] Track postpones in fallbacks (#27421) This fixes so that you can postpone in a fallback. This postpones the parent boundary. I track the fallbacks in a separate replay node so that when we resume, we can replay the fallback itself and finish the fallback and then possibly later the content. By doing this we ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -6261,6 +6261,59 @@ describe('ReactDOMFizzServer', () => {\n expect(fatalErrors).toEqual(['testing postpone']);\n });\n \n+ // @gate enablePostpone\n+ it('can postpone in a fallback', async () => {\n+ function P...
2023-09-25T23:02:25
vercel/next.js
ebcec54e03e7269767f2de2a0a6ed38e7e2588da
f94e9b463c096b05b5e5aaa207e46b73b3478b93
docs: Manual calls to action should we wrapped in startTransition (#80101) Fixes: #78063 As noted, not wrapping in `startTransition`, doesn't really work as expected, for example `isPending` is not updated at all.
[ { "path": "docs/01-app/01-getting-started/10-updating-data.mdx", "patch": "@@ -259,15 +259,15 @@ While executing a Server Function, you can show a loading indicator with React's\n ```tsx filename=\"app/ui/button.tsx\" switcher\n 'use client'\n \n-import { useActionState } from 'react'\n+import { useActionSt...
2025-06-03T12:13:55
golang/go
8163ea1458763aa38fa9197e479bd30cb0145429
478ad013f90fe1dbb199d22f41b93c920ae0d5e9
weak: prevent unsafe conversions using weak pointers Prevent conversions between Pointer types, like we do for sync/atomic.Pointer. Fixes #71583 Change-Id: I20e83106d8a27996f221e6cd9d52637b0442cea4 Reviewed-on: https://go-review.googlesource.com/c/go/+/647195 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a...
[ { "path": "src/weak/pointer.go", "patch": "@@ -56,6 +56,9 @@ import (\n // referenced object. Typically, this batching only happens for tiny\n // (on the order of 16 bytes or less) and pointer-free objects.\n type Pointer[T any] struct {\n+\t// Mention T in the type definition to prevent conversions\n+\t// ...
2025-02-06T13:07:38
facebook/react
94d5b5b2bf5204ebd289a113989c0e2c51b626ef
430e712bbd2e33cceb302b6e25fd7d8148b62019
React DevTools 4.28.3 -> 4.28.4 (#27419) * refactor[devtools/extension]: refactored messaging logic across different parts of the extension ([hoxyq](https://github.com/hoxyq) in [#27417](https://github.com/facebook/react/pull/27417)) * fix[devtools/extension]: added a workaround for proxy content script injection ...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.28.3\",\n+ \"version\": \"4.28.4\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j...
2023-09-25T17:24:52
huggingface/transformers
acc89e749b0fc66e56ebfd6ba8c81b2f45c88a63
2f896be7272cefb92869bd27aefec2f78d0d27f4
docs(tasks): remove references to removed question-answering pipeline (#44787) The question-answering pipeline was removed in v5.0.0 per MIGRATION_GUIDE_V5.md. This updates the non-English task guides to remove usage of pipeline('question-answering') which no longer exists and would raise: Unknown task question-answ...
[ { "path": "docs/source/ar/tasks/question_answering.md", "patch": "@@ -252,23 +252,7 @@ pip install transformers datasets evaluate\n >>> context = \"BLOOM has 176 billion parameters and can generate text in 46 languages natural languages and 13 programming languages.\"\n ```\n \n-أبسط طريقة لتجربة نموذجك الم...
2026-03-17T16:16:37
ollama/ollama
95fdd8d619ad4dc9215cdce8a8665284a96cd96f
9f7822851c1f080d7d2a1dbe0e4d51233e5a28bc
fix: select and update models folder in settings (#13412)
[ { "path": "app/dialog/cocoa/dlg.m", "patch": "@@ -169,37 +169,47 @@ - (DlgResult)load {\n \t}\n \t\n \tNSArray* urls = [panel URLs];\n-\tif(self->params->allowMultiple && [urls count] >= 1) {\n+\tif([urls count] == 0) {\n+\t\treturn DLG_CANCEL;\n+\t}\n+\t\n+\tif(self->params->allowMultiple) {\n \t\t// For m...
2025-12-12T16:09:37
electron/electron
08ccc815748fcc55b319c7ee73ae90202bc44fa0
f53ca20d415b6a6029e03d0129d5118aa43919ee
chore: bump chromium to 107.0.5274.0 (main) (#35375) * chore: bump chromium in DEPS to 106.0.5247.1 * chore: update can_create_window.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/3805043 content/renderer/render_view_impl.cc was removed * chore: update patches/chromium/printing.patc...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '106.0.5216.0',\n+ '107.0.5274.0',\n 'node_version':\n 'v16.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2022-09-07T07:46:37
vercel/next.js
669a8ca5390dadead6835b63bc8cffdae7550c79
3a0af1410999f59c7b8f5740a97a0759e9cf13e8
Fix(turbopack): Resolve experimentalDecorators from extended tsconfig (#79755) Co-authored-by: Jude Gao <jude.gao@vercel.com>
[ { "path": "crates/next-core/src/transform_options.rs", "patch": "@@ -66,51 +66,62 @@ pub async fn get_decorators_transform_options(\n ) -> Result<Vc<DecoratorsOptions>> {\n let tsconfig = get_typescript_options(project_path).await?;\n \n- let decorators_transform_options = if let Some(tsconfig) = tsc...
2025-06-03T10:25:56
golang/go
478ad013f90fe1dbb199d22f41b93c920ae0d5e9
9b4a462a7d85753738723402e298039c3424e584
runtime: don't duplicate reraised panic values in printpanics Change the output printed when crashing with a reraised panic value to not duplicate that value. Changes output of panicking with "PANIC", recovering, and reraising from: panic: PANIC [recovered] panic: PANIC to: panic: PANIC [recovered, reraise...
[ { "path": "doc/next/4-runtime.md", "patch": "@@ -1 +1,18 @@\n ## Runtime {#runtime}\n+\n+<!-- go.dev/issue/71517 -->\n+\n+The message printed when a program exits due to an unhandled panic\n+that was recovered and re-raised no longer repeats the text of\n+the panic value.\n+\n+Previously, a program which pa...
2025-01-31T23:03:15
facebook/react
d9e00f795b77676fb14f2a3c6f421f48f73bec2a
f9d75e32ba85b3c6a2a5d20fa27ba7e23d5529b2
Stop flowing and then abort if a stream is cancelled (#27405) We currently abort a stream either it's explicitly told to abort (e.g. by an abortsignal). In this case we still finish writing what we have as well as instructions for the client about what happened so it can trigger fallback cases and log appropriately...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServerBrowser-test.js", "patch": "@@ -342,7 +342,8 @@ describe('ReactDOMFizzServerBrowser', () => {\n expect(isComplete).toBe(false);\n \n const reader = stream.getReader();\n- reader.cancel();\n+ await reader.read();\n+ await reader.c...
2023-09-22T19:16:49
huggingface/transformers
2f896be7272cefb92869bd27aefec2f78d0d27f4
af93d3841a29e793c481a326b8e911b78259e936
Fix configs with `@strict` (#44770) * how did this even happen, CI was green O_o * two more models * what a weird model, too many BC lines * fix * . * and tests
[ { "path": "src/transformers/models/edgetam_video/configuration_edgetam_video.py", "patch": "@@ -297,7 +297,7 @@ def __post_init__(self, **kwargs):\n self.vision_config[\"model_type\"] = self.vision_config.get(\"model_type\", \"sam2_vision_model\")\n self.vision_config = CONFIG_MAPPIN...
2026-03-17T15:30:24
ollama/ollama
93d45d7a0464e534c0211f2fb9d720b1855ce43a
709f842457f40550c88da80f84bc8d7ba29371b9
docs: fix link to modelfile.mdx (#13220)
[ { "path": "api/client.go", "patch": "@@ -347,7 +347,7 @@ type CreateProgressFunc func(ProgressResponse) error\n // Create creates a model from a [Modelfile]. fn is a progress function that\n // behaves similarly to other methods (see [Client.Pull]).\n //\n-// [Modelfile]: https://github.com/ollama/ollama/bl...
2025-12-12T00:14:45
electron/electron
2db0f7f8d44be93190323a94c4a1fc255251bfa5
98c0fa1c8b4759eff243807b625094d5ef2840a8
fix: `screen.getCursorScreenPoint()` crash on Wayland (#35503) fix: screen.getCursorScreenPoint() crash on Wayland
[ { "path": "shell/browser/api/electron_api_screen.cc", "patch": "@@ -24,6 +24,10 @@\n #include \"ui/display/win/screen_win.h\"\n #endif\n \n+#if defined(USE_OZONE)\n+#include \"ui/ozone/public/ozone_platform.h\"\n+#endif\n+\n namespace electron::api {\n \n gin::WrapperInfo Screen::kWrapperInfo = {gin::kEmbed...
2022-09-05T08:10:50
vercel/next.js
3a0af1410999f59c7b8f5740a97a0759e9cf13e8
f6ad3dc065c14f2ae1e90eaea071cb757c2289d4
[dev-overlay] Remove unused hydration error state (#80045) Leftover from when we stopped squashing hydration errors when React 19 is used.
[ { "path": "packages/next/src/client/components/errors/hydration-error-info.ts", "patch": "@@ -1,17 +1,5 @@\n-export type HydrationErrorState = {\n- // Hydration warning template format: <message> <serverContent> <clientContent>\n- warning?: [string, string, string]\n- serverContent?: string\n- clientCon...
2025-06-03T10:24:23
golang/go
0da7fafac4eabec799df40278f68ba86b574afea
65004c7bf4a1193af7742a6de9bc515c4b07bb75
net: fix ListenMulitcastUDP to work properly when interface has no IPv4 The existing implementation would either fail or bind to the wrong interface when the requested interface had no IPv4 address, such as when the Ethernet cable was unplugged. Now on Linux, it will always bind to the requested interface. On other o...
[ { "path": "src/net/sockopt_posix.go", "patch": "@@ -7,7 +7,6 @@\n package net\n \n import (\n-\t\"internal/bytealg\"\n \t\"runtime\"\n \t\"syscall\"\n )\n@@ -43,35 +42,6 @@ func interfaceToIPv4Addr(ifi *Interface) (IP, error) {\n \treturn nil, errNoSuchInterface\n }\n \n-func setIPv4MreqToInterface(mreq *sy...
2025-01-25T21:21:53
facebook/react
f9d75e32ba85b3c6a2a5d20fa27ba7e23d5529b2
9ba1bbd6568f170dfbc31e05d7ee88e3d9101523
fix[devtools/extension]: added a workaround for proxy content script injection in firefox (#27375) Changes: 1. [Firefox-only] For some reason, Firefox might try to inject dynamically registered content script in pages like `about:blank`. I couldn't find a way to change this behaviour, `about:` is not a valid schem...
[ { "path": "packages/react-devtools-extensions/src/background/index.js", "patch": "@@ -60,6 +60,12 @@ function isNumeric(str: string): boolean {\n \n chrome.runtime.onConnect.addListener(port => {\n if (port.name === 'proxy') {\n+ // Might not be present for restricted pages in Firefox\n+ if (port.se...
2023-09-22T18:36:03
huggingface/transformers
af93d3841a29e793c481a326b8e911b78259e936
bbe251a4d4e06d141f3e60c91e15d4b9d34e82c9
[AMD CI] Fix test failures across important models (#44632) * qwen2 * merge * qwen_2_audio * fix more * qwen2_5_vl * style * fix
[ { "path": "docker/transformers-pytorch-amd-gpu/Dockerfile", "patch": "@@ -44,7 +44,7 @@ RUN git clone https://github.com/ROCm/flash-attention/ -b tridao && \\\n GPU_ARCHS=\"gfx942\" python setup.py install\n # GPU_ARCHS builds for MI300, MI325 but not MI355: we would need to add `;gfx950` but it takes t...
2026-03-17T14:50:39
ollama/ollama
2dfb74410d2cca08fa6dd62a0863e2e8d5ad1a8a
1eb5e759724a10fea90a2f8e9ab7c292e7287191
model: fix rotary embeddings for ministral 3 (#13432)
[ { "path": "model/models/mistral3/model_text.go", "patch": "@@ -29,24 +29,13 @@ type TextOptions struct {\n func (o TextOptions) applyRotaryPositionEmbeddings(ctx ml.Context, states, positions ml.Tensor) ml.Tensor {\n \tvar ropeOpts []func(*rope.Options)\n \tif o.ropeType == \"yarn\" {\n-\t\tgetMscale := fun...
2025-12-12T00:02:05
electron/electron
e0fb5cbe1fd84d9651e6030ebab683dd9e4af42d
bfced8cbfe6bad6d119ea9276d13aa67accc9c9a
fix: crash loading non-standard schemes in iframes (#35485)
[ { "path": "patches/chromium/.patches", "patch": "@@ -118,3 +118,4 @@ revert_spellcheck_fully_launch_spell_check_delayed_initialization.patch\n add_electron_deps_to_license_credits_file.patch\n feat_add_set_can_resize_mutator.patch\n fix_revert_emulationhandler_update_functions_to_early_return.patch\n+fix_cr...
2022-08-31T08:08:11
golang/go
65004c7bf4a1193af7742a6de9bc515c4b07bb75
cd595be6d669af171bc28bdc939cc36785717718
cmd/go: report gcc ld error message when linking fails The output of the gcc ld command is useful to understand why a package that uses cgo can't use internal linking. We should log it. Change-Id: Id524065fc5348be57387f2b67d1e00861f9adf15 Reviewed-on: https://go-review.googlesource.com/c/go/+/646315 LUCI-TryBot-Resul...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2208,7 +2208,7 @@ func (b *Builder) gccld(a *Action, objdir, outfile string, flags []string, objs\n \t}\n \n \tcmdargs := []any{cmd, \"-o\", outfile, objs, flags}\n-\t_, err := sh.runOut(base.Cwd(), b.cCompilerEnv(), cmdargs...)\n+\tout, err := sh....
2025-02-03T20:05:51
vercel/next.js
f6ad3dc065c14f2ae1e90eaea071cb757c2289d4
71ef3e555a167633ec21113371ae7239b68cee6d
Turbopack Build: Update manifest for #80063 fix (#80094)
[ { "path": "test/turbopack-build-tests-manifest.json", "patch": "@@ -7306,12 +7306,11 @@\n \"Middleware Runtime without i18n should validate & parse request url from any route\",\n \"Middleware Runtime without i18n should warn when using NextResponse.redirect with a relative URL\",\n \"Midd...
2025-06-03T10:10:53
facebook/react
7b58600fb928dae935e85182c2142629af38dfe5
b9275f65bc77824b4f938637a8c4f972a5e21e21
[tests] Repros for bugs and todos
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-lambda-array-access-member-expr.expect.md", "patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+import { invoke } from \"shared-runtime\";\n+\n+function Foo() {\n+ const x = [{ value: 0 }, { value: 1 ...
2023-09-22T02:38:40
ollama/ollama
3475d915cb0882042041d7746e6baf888469c3e0
48e78e9be1cb39473a8220dd0d293c9e65ffb07d
embeddings: modified batch size (#13429) This PR detects embedding models and sets batch_size = context_size so the full input fits in a single batch. Previously, if batch size was smaller than the input, tokens could be split across batches and cause a SIGTRAP crash. This change ensures all tokens stay in one batch a...
[ { "path": "integration/embed_test.go", "patch": "@@ -487,6 +487,63 @@ func TestEmbedTruncation(t *testing.T) {\n \t}\n }\n \n+// TestEmbedLargeInput tests that embedding models can handle large inputs that would exceed typical batch sizes.\n+func TestEmbedLargeInput(t *testing.T) {\n+\tctx, cancel := contex...
2025-12-11T23:36:31
huggingface/transformers
bbe251a4d4e06d141f3e60c91e15d4b9d34e82c9
160618abed3c92e4c0ad017328b8c7b142da950b
Move VLM conversions to the main mapping (#44627) * oke, let's see * revert core and check * ooops * nope revert it back * forgot revert * simplify loading changes * make sure classes will be reset * fix modular * these don't recurse so copy * a few typos in model type and regex * another fix: model type has...
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -63,11 +63,68 @@\n \"rt_detr_v2\": \"rt_detr\",\n \"pp_doclayout_v2\": \"rt_detr\",\n \"pp_doclayout_v3\": \"rt_detr\",\n+ \"paligemma\": \"llava\",\n+ \"aya_vision\": \"llava\",\n+ \"fuyu\": \"llava\",\n+ \"got_ocr2\":...
2026-03-17T10:01:42
electron/electron
75f9573e53338e15af7c7ccd07a529332847ea2c
d0e220cbcecb6fcca6b6e8acf161dd51864718f2
fix: compensate for title bar height when setting bounds on `BrowserView` (#34713) fix: compensate for title bar height when setting bounds
[ { "path": "shell/browser/native_browser_view_mac.mm", "patch": "@@ -262,9 +262,21 @@ - (void)drawDebugRect:(NSRect)aRect {\n auto* view = iwc_view->GetNativeView().GetNativeNSView();\n auto* superview = view.superview;\n const auto superview_height = superview ? superview.frame.size.height : 0;\n+\n+ ...
2022-08-29T15:53:03
golang/go
cd595be6d669af171bc28bdc939cc36785717718
a8e532b0f234b3bbf7a1cdcd4213d154e82ba08e
cmd/compile: prefer an add when shifting left by 1 ADD(Q|L) has generally twice the throughput. Came up in CL 626998. Throughput by arch: Zen 4: SHLL (R64, 1): 0.5 ADD (R64, R64): 0.25 Intel Alder Lake: SHLL (R64, 1): 0.5 ADD (R64, R64): 0.2 Intel Haswell: SHLL (R64, 1): 0.5 ADD (R64, R64): 0.25 Also...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -664,9 +664,11 @@\n // Handle bit-testing in the form (a>>b)&1 != 0 by building the above rules\n // and further combining shifts.\n (BT(Q|L)const [c] (SHRQconst [d] x)) && (c+d)<64 => (BTQconst [c+d] x)\n+(BT(Q|L)const [c] (ADDQ x x)) ...
2025-01-11T18:26:57
vercel/next.js
71ef3e555a167633ec21113371ae7239b68cee6d
f80d30058e8c3496055ab84c260713f10093ff14
suggested fix for issue #74564 (#74565) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improv...
[ { "path": "packages/next-mdx/mdx-js-loader.js", "patch": "@@ -1,13 +1,18 @@\n const mdxLoader = require('@mdx-js/loader')\n+const { pathToFileURL } = require('node:url')\n \n function interopDefault(mod) {\n return mod.default || mod\n }\n \n async function importPlugin(plugin, projectRoot) {\n if (Arra...
2025-06-03T09:34:48
facebook/react
b9275f65bc77824b4f938637a8c4f972a5e21e21
8b679e9138025c8e632b8b89d0bf3f4835bcfc18
[ez] Add TODO bailout on non-backward compatible holey arrays --- (pasted from comment) Instead of handling holey arrays, bail out with a TODO error. Older versions of babel seem to have inconsistent handling of holey arrays, at least when paired with HermesParser. When using these versions, we should bail ou...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1385,6 +1385,14 @@ function lowerExpression(\n elements.push({\n kind: \"Hole\",\n });\n+ if (builder.environment.bailoutOnHoleyArrays) {\n+ builder.errors.push({\n+...
2023-09-22T00:54:58
huggingface/transformers
160618abed3c92e4c0ad017328b8c7b142da950b
b4bdaadd643c6f80b36c599571729bb7fed44fa9
Fix config loading issues (type issues) (#44789) * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/models/deepseek_v2/configuration_deepseek_v2.py", "patch": "@@ -96,7 +96,7 @@ class DeepseekV2Config(PreTrainedConfig):\n head_dim: int | None = None\n first_k_dense_replace: int = 0\n kv_lora_rank: int = 512\n- q_lora_rank: int = 1536\n+ q_lora_rank: int | None...
2026-03-17T09:36:55
ollama/ollama
a838421ea35366ea35a39102981c96a4a16658bb
1c4e85b4df1a8ebcb0f578ea423cc1a0d0adf873
model: conversion and hyperparameter fixes for ministral and devstral (#13424)
[ { "path": "convert/convert.go", "patch": "@@ -182,6 +182,8 @@ func ConvertModel(fsys fs.FS, f *os.File) error {\n \t\tconv = &llama4Model{}\n \tcase \"Mistral3ForConditionalGeneration\":\n \t\tconv = &mistral3Model{}\n+\tcase \"Ministral3ForCausalLM\":\n+\t\tconv = &mistral3CausalModel{}\n \tcase \"MixtralF...
2025-12-11T21:04:00
vercel/next.js
f80d30058e8c3496055ab84c260713f10093ff14
4e67ca6117b10691ca425c0275b91742c0124a74
Turbopack Build: Fix CSS test (#80064) ## What? Updates the check as it's slightly different with Turbopack.
[ { "path": "test/integration/css-features/test/css-modules.test.js", "patch": "@@ -56,9 +56,16 @@ describe('Custom Properties: Fail for global element in CSS Modules', () => {\n stderr: true,\n })\n expect(code).not.toBe(0)\n- expect(stderr).toContain('Failed to compile')\n- ...
2025-06-03T08:00:51
facebook/react
8b679e9138025c8e632b8b89d0bf3f4835bcfc18
1ce952e687b7d2031bf3d6aa69f917506bc2c2cb
[ez] Fix prettier not formatting test fixtures in vscode This was super annoying. Turns out we had a top level directory for old projects called fixtures that shared a name with our fixture directories.
[ { "path": "compiler/.prettierignore", "patch": "@@ -1,4 +1,4 @@\n-fixtures/\n+.fixtures/\n bench/\n **/dist\n **/__tests__/fixtures/**/*.expect.md", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2023-09-21T21:04:25
electron/electron
d0e220cbcecb6fcca6b6e8acf161dd51864718f2
18475818486be806e891e8e6cb13b83c620ec0aa
chore: bump node to v16.17.0 (main) (#35350) * chore: bump node in DEPS to v16.17.0 * chore: fixup asar patch * lib: use null-prototype objects for property descriptors https://github.com/nodejs/node/pull/43270 * src: make SecureContext fields private https://github.com/nodejs/node/pull/43173 * crypt...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '106.0.5216.0',\n 'node_version':\n- 'v16.16.0',\n+ 'v16.17.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2022-08-29T13:55:36
huggingface/transformers
75c836b7853cb65f48ab2ce13cddfb12d14ecf5a
3b5032739b0faa2a0ad16d7e47b8c986152943b8
[fix] mistral 4 docs (#44776) fix
[ { "path": "docs/source/en/model_doc/mistral4.md", "patch": "@@ -110,7 +110,3 @@ print(decoded_output)\n ## Mistral4ForTokenClassification\n \n [[autodoc]] Mistral4ForTokenClassification\n-\n-## Mistral4ForQuestionAnswering\n-\n-[[autodoc]] Mistral4ForQuestionAnswering", "additions": 0, "deletions": ...
2026-03-16T21:03:23
ollama/ollama
dac4f17fea99dc18628d743e80f91dcd15ab4bce
56b8fb024cb530c738dc6ddb5cd76714255f1a6e
cmd/bench: fix binary name in README (#13276)
[ { "path": "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 \n U...
2025-12-10T22:16:58
vercel/next.js
504bfbd253a749fbc3077b045c03bd0d64d9cdd7
1aba8edea26e1dd651e4746b3e043a7c8061f58e
fix(turbopack): keep the original sourcemap of styles after source transform (#79700) ## Why The original sourcemap be lost after source transform. For example, a`xyz.sass` file processed by sass-loader, return a `xyz.sass.css`, the output css chunk only contains the sourcemap of `xyz.sass.css` produced by lightningcs...
[ { "path": "test/e2e/app-dir/scss/compilation-and-prefixing/compilation-and-prefixing.test.ts", "patch": "@@ -87,25 +87,45 @@ describe.each([\n if (process.env.IS_TURBOPACK_TEST) {\n if (dependencies.sass) {\n expect(sourceMapContentParsed).toMatchInlineSnapshot(`\n- ...
2025-06-03T05:05:16
facebook/react
56b14477e902ac076018be2e7bf2ea3092ac9e7d
68ac6dbcf8d58a67e94e9061395dd96a52d92377
fix[devtools/useTransition]: don't check for dispatch property when determining if hook is stateful (#27365) https://github.com/facebook/react/pull/26740 introduced regression: React DevTools doesn't record updates for `useTransition` hook. I can add more details about things on DevTools side, if needed. The root...
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -1419,22 +1419,20 @@ export function attach(\n \n const boundHasOwnProperty = hasOwnProperty.bind(queue);\n \n- // Detect the shape of useState() or useReducer()\n+ // Detect the shape of useState() / useReducer() / u...
2023-09-21T20:26:20
electron/electron
18475818486be806e891e8e6cb13b83c620ec0aa
2f23bdb19ea76029907ae247cc8eb47114df1d0c
fix: crash on WebWorker destruction (#35422)
[ { "path": "patches/node/feat_add_uv_loop_interrupt_on_io_change_option_to_uv_loop_configure.patch", "patch": "@@ -136,7 +136,7 @@ index 7cd3a2a954ff7d70e6ba7a6f7538648841bc54b2..f89b7158218be60ac10e61484a2d5e5e\n \n \n diff --git a/deps/uv/src/unix/loop.c b/deps/uv/src/unix/loop.c\n-index a88e71c339351f2e...
2022-08-29T13:45:48
ollama/ollama
56b8fb024cb530c738dc6ddb5cd76714255f1a6e
b95693056c62a3acaa172f555e3bdb2b438684e3
cmd/bench: fix options table in cmd/bench/README.md (#13216)
[ { "path": "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 iter...
2025-12-10T22:07:48
huggingface/transformers
3b5032739b0faa2a0ad16d7e47b8c986152943b8
67fd5bc2b4da337f4a3763637e1ea15b23d7d776
Add Mistral 4 (#44760) * Add Mistral Small 4 * add mistral4 to toctree * Quality * Update src/transformers/models/mistral4/__init__.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> * wip * docstring * Make config dataclass * Fixes fixes fixes * update tp plan --------- Co-authored-...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1232,6 +1232,8 @@\n title: MGP-STR\n - local: model_doc/mistral3\n title: Mistral3\n+ - local: model_doc/mistral4\n+ title: Mistral4\n - local: model_doc/mllama\n title: mllama\n - local: model_doc/m...
2026-03-16T19:39:38
vercel/next.js
f30797f8fb682ff7777018ddab077647f844d9d0
29e0b965a3820f73f9a98a1358598562865e8350
fix(napi): Use strong consistency for the entire project_trace_source function (#79917) This function does a few more `Vc` reads than just looking up the source map, so it's better to move the entire thing inside one strongly-consistent operation. This was an attempt to fix a loop (tracing an error -> react fast refr...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -1,4 +1,4 @@\n-use std::{io::Write, path::PathBuf, sync::Arc, thread, time::Duration};\n+use std::{borrow::Cow, io::Write, path::PathBuf, sync::Arc, thread, time::Duration};\n \n use anyhow::{Context, Result, anyhow, bail};\n use napi::{\n@@ -24,...
2025-06-03T01:02:21
golang/go
51bf2cf7cfa999777697a9548d59d22c3716fbde
220fe7987138a4b6c63de4b750fda58852237560
Revert "cmd/go/internal/work: allow @ character in some -Wl, linker flags on darwin" This reverts CL 638075 (commit e3cd55e9d293d519e622e788e902f372dc30338a). This change introduced a security issue as @ flags are first resolved as files by the darwin linker, before their meaning as flags, allowing the flag filtering...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -227,21 +227,6 @@ var validLinkerFlags = []*lazyregexp.Regexp{\n \tre(`\\./.*\\.(a|o|obj|dll|dylib|so|tbd)`),\n }\n \n-var validLinkerFlagsOnDarwin = []*lazyregexp.Regexp{\n-\t// The GNU linker interprets `@file` as \"read command-line options f...
2025-01-29T16:03:59
facebook/react
3c27178a2f2c74f14d90613028e3929e1f06d830
2b3d5826836ac59f8446281976762d594e55d97e
Update tracked value after resetting radio group (#27394) Fixes #26876, I think. Review each commit separately (all assertions pass in main already, except the last assertInputTrackingIsClean in "should control radio buttons"). I'm actually a little confused on two things here: * All the isCheckedDirty assertion...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMInput.js", "patch": "@@ -388,10 +388,6 @@ export function restoreControlledInputState(element: Element, props: Object) {\n );\n }\n \n- // We need update the tracked value on the named cousin since the value\n- // was changed ...
2023-09-21T04:57:09
electron/electron
4744674e933ebbd294878b60c93732500fd4217a
f6bbad287a7b15a760a018b85a3bb667d384e3c0
fix: crash when switching origins with emulation settings set (#35466)
[ { "path": "patches/chromium/.patches", "patch": "@@ -117,3 +117,4 @@ add_maximized_parameter_to_linuxui_getwindowframeprovider.patch\n revert_spellcheck_fully_launch_spell_check_delayed_initialization.patch\n add_electron_deps_to_license_credits_file.patch\n feat_add_set_can_resize_mutator.patch\n+fix_rever...
2022-08-29T12:53:24
huggingface/transformers
67fd5bc2b4da337f4a3763637e1ea15b23d7d776
4cac50ff5414dd0b591e6d5fc1c5ca3f32a20a16
Fix: Eurobert model was missing @strict decorator and invalid test kwargs (#44767) * Fix: added missing attribute in docstring * Fix EuroBertConfig missing @strict decorator and invalid test kwargs EuroBertConfig was missing `@strict(accept_kwargs=True)` unlike its parent LlamaConfig, causing failures when reloading...
[ { "path": "src/transformers/models/eurobert/configuration_eurobert.py", "patch": "@@ -19,18 +19,23 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n+\n+from ...configuration_utils import strict\n from ...modeling_rope_utils import RopeParamete...
2026-03-16T18:20:45
vercel/next.js
047cb99a7462b0ea2e8733fb88acda3dfbbb8962
e76436fed9bf925c61012d1a1d0f8a5bbb2ce088
[dynamicIO] Only report client sync IO errors if they are above a Suspense boundary (#80026) Currently if the client has any sync IO during prerenders and no shell is produced dynamicIO will assume that the sync IO in the client is the cause. This is often incorrect because you might abort the prerender in a component...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -132,6 +132,7 @@ import {\n createDynamicValidationState,\n trackAllowedDynamicAccess,\n throwIfDisallowedDynamic,\n+ PreludeState,\n consumeDynamicAccess,\n type DynamicAccess,\n } from './dynamic-rendering'\n@@ -2611,7...
2025-06-02T22:26:17
golang/go
220fe7987138a4b6c63de4b750fda58852237560
b45c7d546669c37bbfdb1dedffa1b3e12acfc18c
cmd/go: add '-skip' to list of cacheable test flags -run is cacheable, so -skip should be cacheable too. Fixes #70692 Change-Id: I16880189b0d3a963f8f08008fc7fedcdc6f11630 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Reviewed-on: https://go-review.googlesource.com/c/go/+...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1890,7 +1890,7 @@\n // The rule for a match in the cache is that the run involves the same\n // test binary and the flags on the command line come entirely from a\n // restricted set of 'cacheable' test flags, defined as -benchtime, -cpu,\n-// -list, -paralle...
2025-02-05T20:27:29
facebook/react
1f4936660dcaba2e5722013f0ad12d7369543a9f
b775564d35d6fe9f9acead0f380bbc86bb6bdd2c
[Fizz] Allow passing a reason to `abortStream` (#26992) ## Summary Currently `ReactFizzServer.abort` allows you to pass in the a `reason` error, which then gets passed to the `onError` handler for each task that ends up getting aborted. This adds in the ability to pass down that same `reason` error to `ReactDOMS...
[ { "path": "packages/react-server-dom-fb/src/ReactDOMServerFB.js", "patch": "@@ -81,8 +81,8 @@ function renderToStream(children: ReactNodeList, options: Options): Stream {\n };\n }\n \n-function abortStream(stream: Stream): void {\n- abort(stream.request);\n+function abortStream(stream: Stream, reason: mi...
2023-09-20T20:41:12
electron/electron
f65b05b8cc91e745c60a7cffd7d0c13d186970ba
8128fa6d8586048d6fff2a40c710c8d6c279b640
fix: pass rfh instances through to the permission helper (#35419) * fix: pass rfh instances through to the permission helper * refactor: use WeakDocumentPtr instead of frame node id * fix: handle missing initiator document * fix: dispatch openExternal event for top level webview navs still
[ { "path": "docs/api/session.md", "patch": "@@ -635,7 +635,7 @@ win.webContents.session.setCertificateVerifyProc((request, callback) => {\n * `notifications` - Request notification creation and the ability to display them in the user's system tray.\n * `midi` - Request MIDI access in the `webmidi` AP...
2022-08-26T10:31:33
huggingface/transformers
4cac50ff5414dd0b591e6d5fc1c5ca3f32a20a16
a7e73cdf6f9ffe65e5eeb4949379dcc00cadd209
fix: sig lip import (#44764) * fix: sig lip import * remove test fetcher failures silencing
[ { "path": ".circleci/config.yml", "patch": "@@ -46,7 +46,7 @@ jobs:\n - run: uv pip install -U -e .\n - run: echo 'export \"GIT_COMMIT_MESSAGE=$(git show -s --format=%s)\"' >> \"$BASH_ENV\" && source \"$BASH_ENV\"\n - run: mkdir -p test_preparation\n- - run: py...
2026-03-16T17:21:45