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
huggingface/transformers
80572efa0501a0881d23ceb508e19464a6c24288
75aaf68307404eda6ad7f3b6401372c6f3dfeb7c
Another (small) set of fixes required for tiny model creation (#44666) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/gemma3n/test_modeling_gemma3n.py", "patch": "@@ -109,6 +109,9 @@ def get_audio_encoder_config(self):\n conf_attention_context_left=5,\n )\n \n+ def get_config(self):\n+ return self.get_audio_encoder_config()\n+\n def prepare_config_and_inputs_for_com...
2026-03-13T17:20:49
golang/go
b25b5f3ff4e671aa4f5897c788137fe91f62cf57
4f11d5879a01e64cb8bd59911bb205ffedd4f265
runtime: fix GODEBUG=gccheckmark=1 and add smoke test This change fixes GODEBUG=gccheckmark=1 which seems to have bit-rotted. Because the root jobs weren't being reset, it wasn't doing anything. Then, it turned out that checkmark mode would queue up noscan objects in workbufs, which caused it to fail. Then it turned o...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -752,8 +752,8 @@ func (t *tester) registerTests() {\n \t\t\t})\n \t}\n \n-\t// GODEBUG=gcstoptheworld=2 tests. We only run these in long-test\n-\t// mode (with GO_TEST_SHORT=0) because this is just testing a\n+\t// GC debug mode tests. We only run these in long...
2024-08-27T21:02:02
vercel/next.js
f2b0f9d26e963c9fed070a53515c5a4024fea1e6
52c5aed0d93ef7de5451a192bc8fb3b3c73f7588
fix(next/font): allow custom font-family in declarations (#76274) <!-- 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: ## Fo...
[ { "path": "packages/font/src/local/loader.test.ts", "patch": "@@ -229,5 +229,36 @@ describe('next/font/local loader', () => {\n \"\n `)\n })\n+\n+ test('Custom font-family in declarations', async () => {\n+ const { css } = await nextFontLocalFontLoader({\n+ functionName: '',...
2025-05-29T14:20:10
ollama/ollama
0796d79d19345bc3724bd08108a96b669b0f1841
92981ae3f2ce3c4e02d8a21f46874f167949feda
cuda: skip large batches cuda panics on batches larger than 1024 so skip those and fallback to cpu
[ { "path": "llama/patches/0028-Add-memory-detection-using-DXGI-PDH.patch", "patch": "@@ -38,7 +38,7 @@ index 44ae76d66..639d551a2 100644\n #ifdef __cplusplus\n }\n diff --git a/ggml/src/ggml-vulkan/ggml-vulkan.cpp b/ggml/src/ggml-vulkan/ggml-vulkan.cpp\n-index d2c278a35..221e29509 100644\n+index ca02ea079....
2025-11-18T19:13:37
electron/electron
e85450b21aea2bb1fd536313fbeca890ab083576
672539187c779cf874dfcecc198bcfbdec85aa97
fix: IPC emit order in -ipc-ports handler (#35320) Co-authored-by: Milan Burda <miburda@microsoft.com>
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -619,9 +619,9 @@ WebContents.prototype._init = function () {\n this.on('-ipc-ports' as any, function (event: Electron.IpcMainEvent, internal: boolean, channel: string, message: any, ports: any[]) {\n addSenderFrameToEvent(event);\n event.po...
2022-08-16T02:21:56
huggingface/transformers
75aaf68307404eda6ad7f3b6401372c6f3dfeb7c
f2f7c89413b89949a84f278b071e53f89f7fcb72
Fix CookieCutter (#44334) Fix
[ { "path": "src/transformers/cli/add_new_model_like.py", "patch": "@@ -142,6 +142,7 @@ def __init__(self, lowercase_name: str):\n \n # Get tokenizer class\n if self.lowercase_name in TOKENIZER_MAPPING_NAMES:\n+ self.tokenizer_class = None\n self.fast_tokenizer_class = T...
2026-03-13T17:06:17
golang/go
e5ae12ab82e09539b77cfba3fa1c4c31f5b948db
e2f342fc51a70351205af839dff2749bc7a977e2
net/url: add panic to unhex for imposible error case Change-Id: I9f39b3d2a1a0a3e510afc874dd071302b2b0c89e Reviewed-on: https://go-review.googlesource.com/c/go/+/643555 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian ...
[ { "path": "src/net/url/url.go", "patch": "@@ -67,8 +67,9 @@ func unhex(c byte) byte {\n \t\treturn c - 'a' + 10\n \tcase 'A' <= c && c <= 'F':\n \t\treturn c - 'A' + 10\n+\tdefault:\n+\t\tpanic(\"invalid hex character\")\n \t}\n-\treturn 0\n }\n \n type encoding int", "additions": 2, "deletions": 1,...
2025-01-20T20:54:28
facebook/react
a4aceafc63a4a54b507ab60d530b25d9ff189024
627b7abd62eb27f70af3934ca45b858103d4f30d
Fix: Skip hidden inputs before text instance (#27358) Found a hydration bug that happens when you pass a Server Action to `formAction` and the next node is a text instance. The HTML generated by Fizz is something like this: ```html <button name="$ACTION_REF_5" formAction="" formEncType="multipart/form-data" fo...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1216,7 +1216,15 @@ export function canHydrateTextInstance(\n if (text === '') return null;\n \n while (instance.nodeType !== TEXT_NODE) {\n- if (!inRootOrSingleton || !enableHostSingletons) {\n+ if (\n+ e...
2023-09-11T22:22:37
ollama/ollama
8ed1adf3dbda70c5ccfec766f4db4c4a4f3ef948
440a3823a66330650b6bfac8378babdb88b4d036
docs: fix typo in vscode.mdx (#13116)
[ { "path": "docs/integrations/vscode.mdx", "patch": "@@ -1,34 +1,34 @@\n ---\n-title: VS Code \n+title: VS Code\n ---\n \n ## Install\n \n-Install [VS Code](https://code.visualstudio.com/download). \n+Install [VS Code](https://code.visualstudio.com/download).\n \n-## Usage with Ollama \n+## Usage with Ollama...
2025-11-18T21:18:42
electron/electron
672539187c779cf874dfcecc198bcfbdec85aa97
cbc1ee5775375b7ec92f8c38bcbb157833b1b8a0
fix: `serialPort.open()` failing (#35306) fix: serialPort.open() failing
[ { "path": "shell/browser/serial/electron_serial_delegate.cc", "patch": "@@ -56,10 +56,7 @@ bool ElectronSerialDelegate::HasPortPermission(\n content::RenderFrameHost* frame,\n const device::mojom::SerialPortInfo& port) {\n auto* web_contents = content::WebContents::FromRenderFrameHost(frame);\n- ...
2022-08-15T15:49:20
huggingface/transformers
f2f7c89413b89949a84f278b071e53f89f7fcb72
036340b7bfb457f056c5ffa696cb11fcf3d098fd
Fix AWQ tests for GPTQModel migration (#44654) * fix awq tests Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * update ground truth Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix return replace_with_awq_linear Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * update linear type Signed-off-by: j...
[ { "path": "tests/quantization/autoawq/test_awq.py", "patch": "@@ -110,7 +110,8 @@ class AwqTest(unittest.TestCase):\n )\n \n EXPECTED_OUTPUT_BF16 = [\n- \"Hello my name is Katie and I am a 20 year old student at the University of North Carolina at Chapel Hill. I am a junior and I am majoring ...
2026-03-13T16:20:59
golang/go
37f27fbecd422da9fefb8ae1cc601bc5b4fec44b
77d20838e9cc3ad4f9c167db245752569d7ffc48
cmd/go: enable fips test and fix caching bug Enable the cmd/go fips test now that v1.0.0.zip has been checked in. Will still need to enable the alias half when the alias is checked in. Also fix a problem that was causing spurious failures, by fixing repeated unpackings and also disabling modindex reads of the virtual...
[ { "path": "src/cmd/go/internal/modfetch/cache.go", "patch": "@@ -113,6 +113,13 @@ func DownloadDir(ctx context.Context, m module.Version) (string, error) {\n \t\treturn dir, err\n \t}\n \n+\t// Special case: ziphash is not required for the golang.org/fips140 module,\n+\t// because it is unpacked from a file...
2024-11-17T22:17:50
facebook/react
edd9c52142609b8eeaa81b64f9505ebf068f96a5
e8d130bd1dcb093c28ff8197278e49cf9a671419
Sprout tests to double-check our destructuring I wanted to double-check the semantics of when default values are used, so i wrote out some fixtures with sprout enabled.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/destructuring-default-at-array-hole.expect.md", "patch": "@@ -0,0 +1,33 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ // destructure slot index has a hole in the input, should return default\n+ co...
2023-09-08T00:17:03
vercel/next.js
4ce288172c1b91b3746a817dd27f85c10bd9a199
b73644493a61901c9f3e20a99bef5a9b08de07b9
Turbopack: persist and compare errors and panics (#77935) ### What? Allow errors and panics to be serialized and store them in the task output. Compare errors when setting them to avoid unnecessary invalidations when tasks error again.
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -564,36 +564,38 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n \n if let Some(output) = get!(task, Output) {\n let result = match output {\n- OutputValue::Cell(cell) => Some(Ok(Ok(R...
2025-05-29T12:25:52
ollama/ollama
440a3823a66330650b6bfac8378babdb88b4d036
718961de68fb82f355bca53c1bdc3d126a42fb86
fix(tokenizer): add special tokens to empty inputs (#13091)
[ { "path": "model/bytepairencoding.go", "patch": "@@ -237,7 +237,7 @@ func (bpe BytePairEncoding) Encode(s string, addSpecial bool) ([]int32, error) {\n \t\t}\n \t}\n \n-\tif addSpecial && len(ids) > 0 {\n+\tif addSpecial {\n \t\tids = bpe.vocab.addSpecials(ids)\n \t}\n ", "additions": 1, "deletions"...
2025-11-18T19:16:56
electron/electron
cbc1ee5775375b7ec92f8c38bcbb157833b1b8a0
9c2d89476c4e0af61458e2951e4042ff8db3da2b
fix: add uv_loop_close when object release to fix crash (#35322) Co-authored-by: yangzuohui <yangzuohui@bytedance.com>
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -136,6 +136,7 @@ void stop_and_close_uv_loop(uv_loop_t* loop) {\n break;\n \n DCHECK_EQ(0, uv_loop_alive(loop));\n+ uv_loop_close(loop);\n }\n \n bool g_is_initialized = false;", "additions": 1, "deletions": 0, "language": "Unknown...
2022-08-15T14:40:52
huggingface/transformers
036340b7bfb457f056c5ffa696cb11fcf3d098fd
2548d0dbda93e29b1e94cbee64cfb25fbc03610a
[Model] Add PP-OCRV5_mobile_det Model Support (#43247) * Feat: Add PP-OCRV5_mobile_det model * fix code * fix code * fix * use cv and np to replace pyclipper * add model post_init() * fix * fix model init_weight * fix rename module * update * update * update * update * update * update * update * updat...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1268,8 +1268,14 @@\n title: PP-DocLayoutV2\n - local: model_doc/pp_doclayout_v3\n title: PP-DocLayoutV3\n+ - local: model_doc/pp_ocrv5_mobile_det\n+ title: PP-OCRv5_mobile_det\n - local: model_doc/pp_ocrv5_server_...
2026-03-13T15:21:39
golang/go
77d20838e9cc3ad4f9c167db245752569d7ffc48
ce7ea0a6a529ce91327900e29afc3abd620030b4
cmd: update golang.org/x/tools to CL 645697, and revendor go get golang.org/x/tools@9874647 # CL 645697 go mod tidy go mod vendor Fixes #71485 Change-Id: I72d8f82abd0c6e05f2698d8a372bf9485002d1b3 Reviewed-on: https://go-review.googlesource.com/c/go/+/645336 Reviewed-by: Carlos Amedee <carlos@golang.org> Auto-Submit:...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.28.0\n \tgolang.org/x/telemetry v0.0.0-20241204182053-c0ac0e154df3\n \tgolang.org/x/term v0.27.0\n-\tgolang.org/x/tools v0.28.0\n+\tgolang.org/x/tools v0.28.1-0.20250131145412-98746475647e\n )\n \n require (", "add...
2025-01-31T15:06:15
facebook/react
0052f2e591622fec493752b37af54e82a5752dac
ee77d91ca2a3862cd60b8f59391a9a13241607ea
TryStatement: enable sprout on new tests Enables sprout for all the new try/catch fixtures in this stack. I added new helpers and tried to make sure we're testing the most interesting codepath of each fixture. This is where property testing would help, since we could test multiple paths with a single block of code...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/try-catch-mutate-outer-value.expect.md", "patch": "@@ -2,52 +2,70 @@\n ## Input\n \n ```javascript\n+const { shallowCopy, throwErrorWithMessage } = require(\"shared-runtime\");\n+\n function Component(props) {\n const x...
2023-09-07T23:50:24
vercel/next.js
b73644493a61901c9f3e20a99bef5a9b08de07b9
ad898de735c393d98960a68c8d9eaeee32206c57
[dev-overlay] Fix highlighted line cut off on scroll (#79930) Tiny PR to fix the error highlight not spanning full width of the container. https://github.com/user-attachments/assets/595b7184-e325-4b24-afdb-7683c04f0999 --- Closes NDX-1025
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/code-frame/code-frame.tsx", "patch": "@@ -62,40 +62,42 @@ export function CodeFrame({ stackFrame, codeFrame }: CodeFrameProps) {\n </p>\n </div>\n <pre className=\"code-frame-pre\">\n- {parsedLineStates...
2025-05-29T11:30:10
ollama/ollama
330f62a7faf60096e00393b444b1b81a9b34de7e
584e2d646fb4d2f1643b4da81a096d01114f5b2b
docs: add Void Editor to community integrations (#13124) Void is an open source AI code editor and Cursor alternative that supports Ollama. It's built on VS Code and allows users to connect directly to Ollama for private LLM usage without going through a middleman backend. Key features: - Open source Cursor alternati...
[ { "path": "README.md", "patch": "@@ -367,6 +367,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Ollama4j Web UI](https://github.com/ollama4j/ollama4j-web-ui) - Java-based Web UI for Ollama built with Vaadin, Spring Boot, and Ollama4j\n - [PyOllaMx](https://github.com/kspviswa/pyOllaM...
2025-11-18T03:20:36
electron/electron
81766707fcc2f234785e1907c25c094a4a27adb7
4cb57ad1a0e7096336694fdfcbab54f7068265fe
test: migrate remaining webview specs to main (#35213) * test: migrate remaining webview specs to main * fix merge * add dirty-chai * retry capturePage() * fix test
[ { "path": "spec-main/webview-spec.ts", "patch": "@@ -3,12 +3,14 @@ import * as url from 'url';\n import { BrowserWindow, session, ipcMain, app, WebContents } from 'electron/main';\n import { closeAllWindows } from './window-helpers';\n import { emittedOnce, emittedUntil } from './events-helpers';\n-import {...
2022-08-15T08:06:02
huggingface/transformers
523759e218a89adcdc66a2c68aabc325f6377f44
b7626311663ee66509c7e691afc5a65ff7acacea
[`Chmv2`] Fix conversion after capture refactor (#44665) fix
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -68,6 +68,7 @@\n \n def _build_checkpoint_conversion_mapping():\n mapping = {\n+ \"chmv2\": [WeightRenaming(r\"backbone.layer.\", r\"backbone.model.layer.\")],\n \"dinov3_convnext\": [WeightRenaming(r\"(?<!model\\.)stages\",...
2026-03-13T14:14:48
golang/go
4f48ad5c6b2775ab295ea0062b93527cbf4ea9d0
1f58ad5d6d2eebc1939a65a511ca84c9b997cd6a
cmd/link/internal/loader: fix linknames from FIPS 140 frozen tree blockedLinknames was updated in CL 635676 after the lib/fips140 zip mechanism was last tested. linknames from crypto/internal/fips140/v1.0.0 need to be allowed if they'd be allowed from crypto/internal/fips140. Change-Id: I6a6a4656022118d4739ae14831f2a...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2394,6 +2394,16 @@ func (l *Loader) checkLinkname(pkg, name string, s Sym) {\n \t\t\tif pkg == p {\n \t\t\t\treturn // pkg is allowed\n \t\t\t}\n+\t\t\t// crypto/internal/fips140/vX.Y.Z/... is the frozen version of\n+\t\t\t// crypto/internal/...
2025-01-29T02:18:01
vercel/next.js
ad898de735c393d98960a68c8d9eaeee32206c57
3d398a8f17d95fda33c3d9c7f78a3013310f93f9
chore(turbo-tasks-backend): Fix build with `--features turbo-tasks-backend/lmdb` (#79530) This had bit-rotted. Sounds like we do want to keep it around for sanity checking things from time-to-time. Tested with: ``` cargo check --features turbo-tasks-backend/lmdb ```
[ { "path": "turbopack/crates/turbo-tasks-backend/src/database/fresh_db_optimization.rs", "patch": "@@ -137,6 +137,10 @@ impl<'a, B: SerialWriteBatch<'a>> SerialWriteBatch<'a> for FreshDbOptimizationWr\n fn delete(&mut self, key_space: KeySpace, key: WriteBuffer<'_>) -> Result<()> {\n self.write_b...
2025-05-29T05:48:40
facebook/react
e3622ee41383c84982dd9ffcb79efe24e0a0d166
ff0b05848b514e347d93fe8145bae24a4d21dc40
TryStatement: disallow throw inside try/catch Modeling `throw` inside of a try/catch is awkward because it's basically a variable reassignment and a goto together. Thankfully that is an antipattern — using exceptions instead of control-flow — so it seems pretty reasonable to just put a todo here and leave it.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -199,6 +199,19 @@ function lowerStatement(\n case \"ThrowStatement\": {\n const stmt = stmtPath as NodePath<t.ThrowStatement>;\n const value = lowerExpressionToTemporary(builder, stmt.get(\"argument\"))...
2023-09-07T23:32:54
huggingface/transformers
b7626311663ee66509c7e691afc5a65ff7acacea
5b57a1587caf3a040a69549837154dc1bcc9cd9e
fix(models, testing): Fix Llama4 vision rotary meta tensor initialization and MyT5 get_tokenizer signature (#44581) * fix: Recompute rotary embeddings on meta device and correct get_tokenizer signature * fix: Register freqs_ci as a non-persistent buffer * fix: Recompute freqs_ci in _init_weights instead * fix: Use ...
[ { "path": "src/transformers/models/llama4/modeling_llama4.py", "patch": "@@ -485,6 +485,8 @@ def _init_weights(self, module):\n if isinstance(module, Llama4TextExperts):\n init.normal_(module.gate_up_proj, mean=0.0, std=std)\n init.normal_(module.down_proj, mean=0.0, std=std)...
2026-03-13T14:14:28
ollama/ollama
4aba2e8b727795320f049a28c23bbd9882b272c0
2f36d769aa2db6e7bb41a0dbd079f9ce7a9bdc40
discover: Support cgroups cores and memory limitations (#10292) * Add supports for cgroups cores and memory limitations * fix compile error and add logs * remove cpu info log
[ { "path": "discover/cpu_linux.go", "patch": "@@ -2,6 +2,7 @@ package discover\n \n import (\n \t\"bufio\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"io\"\n \t\"log/slog\"\n@@ -10,12 +11,21 @@ import (\n \t\"reflect\"\n \t\"regexp\"\n \t\"sort\"\n+\t\"strconv\"\n \t\"strings\"\n \n \t\"github.com/ollama/ollama/format\...
2025-11-18T00:13:03
electron/electron
4cb57ad1a0e7096336694fdfcbab54f7068265fe
a8934d23024b6785c289d30c6336414df7e7ee49
docs: removes unused import in preload script (#35324) * Remove unused import of path This import gives out the error in the preload script: Error: module not found: path at preloadRequire * Removes unused import in preload script notes: Removes unused import which causes issue in preload script of dr...
[ { "path": "docs/fiddles/features/drag-and-drop/preload.js", "patch": "@@ -1,5 +1,4 @@\n const { contextBridge, ipcRenderer } = require('electron')\n-const path = require('path')\n \n contextBridge.exposeInMainWorld('electron', {\n startDrag: (fileName) => {", "additions": 0, "deletions": 1, "l...
2022-08-15T06:23:59
facebook/react
0977115440b53ca505a62e793ab3ec44355f69aa
20203cd889328ea3792febd2bfda77f2cfb881d1
TryStatement: maybe-throw terminal for per-instruction throw points Adds a "maybe-throw" terminal which represents the possibility that the block may or may not throw, and can either continue forward or exit to an exception handler (`catch`). Also updates HIRBuilder to track the current mode, and when inside a try...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/HIR.ts", "patch": "@@ -279,7 +279,8 @@ export type Terminal =\n | TernaryTerminal\n | OptionalTerminal\n | LabelTerminal\n- | SequenceTerminal;\n+ | SequenceTerminal\n+ | MaybeThrowTerminal;\n \n function _staticInvariantTerminalHasLoca...
2023-09-07T21:22:28
vercel/next.js
1c0712bcf55dc4f2a58f621d4d57e51f44d67e1a
c10c10daf9e95346c31c24dc49d6b7cda48b5bc8
fix(napi): Update generated types, add alias for RcStr (#79915) We have some annoying caching issues with napi, which led me to miss this in https://github.com/vercel/next.js/pull/79806. You can force a rebuild of the types with: ``` rm /tmp/*.napi_type_def.tmp cargo clean pnpm swc-build-native ```
[ { "path": "packages/next/src/build/swc/generated-native.d.ts", "patch": "@@ -12,6 +12,7 @@ export type NapiRouteHas = {\n value?: string\n readonly __tag: unique symbol\n }\n+export type RcStr = string\n \n export function lightningCssTransform(args: object): Promise<unknown>\n export function lightning...
2025-05-29T03:41:45
golang/go
1f58ad5d6d2eebc1939a65a511ca84c9b997cd6a
90ec9996cb6e7ea98ffeab1b6e28037d79e81026
Revert "os: employ sendfile(2) for file-to-file copying on Linux when needed" This reverts CL 603295. Reason for revert: can cause child exit_group to hang. This is not a clean revert. CL 603098 did a major refactoring of the tests. That refactor is kept, just the sendfile-specific tests are dropped from the linux t...
[ { "path": "src/os/readfrom_linux_test.go", "patch": "@@ -242,25 +242,19 @@ func testSpliceToTTY(t *testing.T, proto string, size int64) {\n }\n \n var (\n-\tcopyFileTests = []copyFileTestFunc{newCopyFileRangeTest, newSendfileOverCopyFileRangeTest}\n-\tcopyFileHooks = []copyFileTestHook{hookCopyFileRange, ho...
2025-01-27T22:05:22
huggingface/transformers
5b57a1587caf3a040a69549837154dc1bcc9cd9e
3dd82faf3e887043db772d4c1191ec40271a1584
[CB] Add dedicated config (#44434) * Added cb config object * Remove manual_eviction * Make cb config the preferred way to pass args * Review auto * Style * Fixes and removing traces of timing * style * Remove paged attention duplicates * nit * nitnit * nitnitnit * Auto review 1/2 * Auto review 2/2 * styl...
[ { "path": "docs/source/en/continuous_batching.md", "patch": "@@ -169,6 +169,14 @@ The [`Scheduler`] selects requests for processing at each step based on the toke\n \n [`ContinuousBatchingManager`] runs the model forward pass for the scheduled requests. It then collects and returns the results.\n \n+[`Conti...
2026-03-13T13:56:37
ollama/ollama
399eacf48677a96a809f6960b35d04a60dcba97a
231cc878cba3f5d080bc96faf8ecbded31b0b4e2
ci: fix missing vulkan binaries in linux bundles (#13123)
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -366,6 +366,7 @@ jobs:\n bin/ollama) echo $COMPONENT >>ollama-${{ matrix.os }}-${{ matrix.arch }}.tar.in ;;\n lib/ollama/*.so*) echo $COMPONENT >>ollama-${{ matrix.os }}-${{ matrix.arch }}.tar.in ;;\...
2025-11-17T23:39:59
electron/electron
a8934d23024b6785c289d30c6336414df7e7ee49
f1216ca593df5acf847b8d01c46f199fb821d052
docs: add Electron deps to license credits file (#35283) * docs: add Electron deps to license credits file * fixup! docs: add Electron deps to license credits file remove nan; it is dev-only
[ { "path": "patches/chromium/.patches", "patch": "@@ -115,3 +115,4 @@ short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch\n chore_add_electron_deps_to_gitignores.patch\n chore_allow_chromium_to_handle_synthetic_mouse_events_for_touch.patch\n add_maximized_parameter_to_linuxui_getwindowfram...
2022-08-15T01:35:12
golang/go
62cd7cb6cdba5cd947c97ee5269699dffdbca1b0
7764c502e28e42279d033719b058690ca8fbaa44
crypto/hkdf: check error in TestFIPSServiceIndicator I don't know why this code calls panic(err) rather than t.Fatal(err), but I didn't change it. Change-Id: I9aa7503c604bd8d4f27cc295e2ec742446906df9 Reviewed-on: https://go-review.googlesource.com/c/go/+/643995 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> ...
[ { "path": "src/crypto/hkdf/hkdf_test.go", "patch": "@@ -404,6 +404,9 @@ func TestFIPSServiceIndicator(t *testing.T) {\n \t// Salt and info are short, which is ok, but translates to a short HMAC key.\n \tfips140.ResetServiceIndicator()\n \t_, err = Key(sha256.New, []byte(\"YELLOW SUBMARINE\"), []byte(\"salt\...
2025-01-23T23:50:32
vercel/next.js
401bfe05f4adeb967586848642d8ee62759f707c
8fa42deefd59d8aae87112892c9af8aa0cf1290f
feat: using eval source map plugin for Rspack (#79199) Use rspack.EvalSourceMapDevToolPlugin when running with Rspack The modification specifically pass the test case in: test/integration/server-side-dev-errors/test/index.test.js
[ { "path": "packages/next/src/build/webpack/config/blocks/base.ts", "patch": "@@ -4,6 +4,7 @@ import { COMPILER_NAMES } from '../../../../shared/lib/constants'\n import type { ConfigurationContext } from '../utils'\n import DevToolsIgnorePlugin from '../../plugins/devtools-ignore-list-plugin'\n import EvalSo...
2025-05-29T02:30:36
huggingface/transformers
3dd82faf3e887043db772d4c1191ec40271a1584
9574fb69040fdf93df58463bef3d2f310533be2d
fix(models): Forward timm model kwargs to timm.create_model for OmDet-Turbo (#44611) * fix: Add and forward timm_model_kwargs to timm.create_model * fix: Revert TimmBackboneConfig, add BC migration comment * change: Address review * nit: Add comment
[ { "path": "src/transformers/models/omdet_turbo/configuration_omdet_turbo.py", "patch": "@@ -161,6 +161,13 @@ def __init__(\n **kwargs,\n )\n \n+ # Extract timm.create_model kwargs; TimmBackbone doesn't forward arbitrary config attrs to timm\n+ timm_kwargs = {}\n+ if ...
2026-03-13T11:47:34
electron/electron
4d54cadb281cceb9cf8de91773047ea2cc41da5f
eab7ab2c47c0750359a247450d9c7a41642b3dd1
fix: WCO occlusion of DevTools (#35209)
[ { "path": "docs/api/web-contents.md", "patch": "@@ -1568,6 +1568,8 @@ Opens the devtools.\n When `contents` is a `<webview>` tag, the `mode` would be `detach` by default,\n explicitly passing an empty `mode` can force using last used dock state.\n \n+On Windows, if Windows Control Overlay is enabled, Devtoo...
2022-08-11T13:16:12
ollama/ollama
231cc878cba3f5d080bc96faf8ecbded31b0b4e2
aa676b313fffcdaef34b107a943a72133eeb8fa1
app/ui: fix to point ollama client to ui backend in dev mode (#13079)
[ { "path": "app/ui/app/src/api.ts", "patch": "@@ -15,6 +15,7 @@ import {\n import { parseJsonlFromResponse } from \"./util/jsonl-parsing\";\n import { ollamaClient as ollama } from \"./lib/ollama-client\";\n import type { ModelResponse } from \"ollama/browser\";\n+import { API_BASE } from \"./lib/config\";\n...
2025-11-17T17:58:35
facebook/react
ee7f9c9351f8902e07ceacf4234ef75e7e4ecd73
b9be4537c2459f8fc0312b796570003620bc8600
useId: Remove unnecessary try/finally blocks (#27340) To generate IDs for useId, we modify a context variable whenever multiple siblings are rendered, or when a component includes a useId hook. When this happens, we must ensure that the context is reset properly on unwind if something errors or suspends. When I ...
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -1021,12 +1021,13 @@ function renderIndeterminateComponent(\n const prevTreeContext = task.treeContext;\n const totalChildren = 1;\n const index = 0;\n+ // Modify the id context. Because we'll need to reset this if...
2023-09-06T20:30:29
vercel/next.js
42487f26da984391c81a638e01dc791d6758f6c2
fea5c8ccc38c535d7614f8cecf5e3091f3473e62
fix: preload fonts in template.js (#79417) Fonts imported in a template module do not preload or preconnect when used in a template.js file. This PR adds a small fix and a e2e test. Co-authored-by: Zack Tanner <1939140+ztanner@users.noreply.github.com>
[ { "path": "packages/next/src/server/app-render/parse-loader-tree.ts", "patch": "@@ -3,13 +3,13 @@ import type { LoaderTree } from '../lib/app-dir-module'\n \n export function parseLoaderTree(tree: LoaderTree) {\n const [segment, parallelRoutes, modules] = tree\n- const { layout } = modules\n+ const { la...
2025-05-28T23:54:24
golang/go
50455385b0e668656cac03d3012e48e071df6aa4
28d389ef30fc4c542a80603123990115035c6422
internal/coverage: fix bug in text-format coverage output with multiple packages In ProcessCoverTestDir pass the selected set of packages to EmitTextual in addition to EmitPercent, so that when we have runs with multiple packages selected but without -coverpkg, text format output for package P was incorrectly includin...
[ { "path": "src/cmd/go/testdata/script/cover_coverprofile_nocoverpkg.txt", "patch": "@@ -0,0 +1,50 @@\n+# Testcase for #70244. In this bug we're doing a \"go test -coverprofile\"\n+# run for a pair of packages, the first one without tests and the second\n+# one with tests. When writing the profile for the se...
2024-11-12T17:32:39
huggingface/transformers
9574fb69040fdf93df58463bef3d2f310533be2d
ca960f0cc0d2c2549b0f1834a51fa91230e50134
Ensure same `dtype` for subconfig when `_from_config` (#44629) fix for vllm Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1454,6 +1454,12 @@ def _from_config(cls, config, **kwargs):\n if isinstance(dtype, str):\n dtype = getattr(torch, dtype)\n \n+ # Set the same `dtype` on all subconfigs to avoid dtype mismatch. When \"auto\" dtype\n+ ...
2026-03-13T11:21:05
electron/electron
1d95b98cc86a4b4ed757931fd38105b06e3e2556
8646bf8d304d8dc97988227cdf76007c6fa4bfdf
docs: fix getStoragePath return type (#35288) Fixes #35255
[ { "path": "docs/api/session.md", "patch": "@@ -1049,7 +1049,7 @@ is emitted.\n \n #### `ses.getStoragePath()`\n \n-A `string | null` indicating the absolute file system path where data for this\n+Returns `string | null` - The absolute file system path where data for this\n session is persisted on disk. For...
2022-08-10T05:39:36
facebook/react
59504e1cb49733d00e4d1613cfd712c5d29c7bfb
a93aa8f3228c32b0a03a8efd2336e15c2a1e10a2
[hir] Traverse function to capture deps, not just body node Technically there is a body node created for implicit return expression in a arrow function, so the existing logic should've worked fine. But there seems to be a Babel bug, so let's work around it by traversing the function. Added a test case that captur...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -3058,7 +3058,7 @@ function gatherCapturedDeps(\n }\n }\n \n- fn.get(\"body\").traverse({\n+ fn.traverse({\n Expression(path) {\n visit(path);\n },", "additions": 1, "deletions": 1, "l...
2023-09-06T13:58:04
golang/go
28d389ef30fc4c542a80603123990115035c6422
8071f2a1697c2a8d7e93fb1f45285f18303ddc76
internal/godebug: check error from os.ReadFile in test Change-Id: I4770443c8eaa12add2e04cbf9d18ebfbbd851162 Reviewed-on: https://go-review.googlesource.com/c/go/+/643259 Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Commit...
[ { "path": "src/internal/godebug/godebug_test.go", "patch": "@@ -109,6 +109,9 @@ func TestCmdBisect(t *testing.T) {\n \n \tvar want []string\n \tsrc, err := os.ReadFile(\"godebug_test.go\")\n+\tif err != nil {\n+\t\tt.Fatal(err)\n+\t}\n \tfor i, line := range strings.Split(string(src), \"\\n\") {\n \t\tif st...
2025-01-24T01:37:29
vercel/next.js
2c142f085450843c4fed8c7ee07f7acf311d18ef
ebd87edb01a8791e8593ad0ca1ffcb37c9b35209
fix(next-swc): Fix specificity issue of `styled-jsx` in lightningcss mode (#79802) ### What? Update the `styled-jsx` SWC plugin to the latest ### Why? Apply https://github.com/swc-project/plugins/pull/464 x-ref: https://vercel.slack.com/archives/C08GMHRF7NC/p1748451540079049?thread_ts=1741381916.437039&cid=C08GMHR...
[ { "path": "Cargo.lock", "patch": "@@ -7314,9 +7314,9 @@ dependencies = [\n \n [[package]]\n name = \"styled_jsx\"\n-version = \"0.90.2\"\n+version = \"0.90.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ad543134d46a26fc674ff59809eac1da01e244067500ce003478f2d2623e0b10...
2025-05-28T21:49:16
ollama/ollama
dd0ed0ef172cdc270ef062ac764a58780c5c8093
d5649821aea25c3c02747ac1b19d8ac6e138817b
docs: fix typos in repository documentation (#10683)
[ { "path": "CONTRIBUTING.md", "patch": "@@ -16,7 +16,7 @@ See the [development documentation](./docs/development.md) for instructions on h\n \n * New features: new features (e.g. API fields, environment variables) add surface area to Ollama and make it harder to maintain in the long run as they cannot be rem...
2025-11-16T04:22:29
electron/electron
32fefb1f505ba0a79e7e54f2db54d19497bbddb0
6548808054d2e327a69cee0e9bcb7e5a9dd03203
fix(docs): fix a typo in section on debugging with VSCode (#35256) fix(docs): fix a typo
[ { "path": "docs/tutorial/tutorial-2-first-app.md", "patch": "@@ -350,7 +350,7 @@ app.whenReady().then(() => {\n \n ## Optional: Debugging from VS Code\n \n-If you want to debug your application using VS Code, you have need attach VS Code to\n+If you want to debug your application using VS Code, you need to ...
2022-08-09T19:01:38
facebook/react
b9be4537c2459f8fc0312b796570003620bc8600
2c2bdd0ffe54df60201ee93b29de5cb7b93ff029
[Flight] provide property descriptors for client references (#27328) Client reference proxy should implement getOwnPropertyDescriptor. One practical place where this shows up is when consuming CJS module.exports in ESM modules. Node creates named exports it statically infers from the underlying source but it only s...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -10,6 +10,10 @@ const Counter3 = await(AsyncModule);\n import ShowMore from './ShowMore.js';\n import Button from './Button.js';\n import Form from './Form.js';\n+import {Dynamic} from './Dynamic.js';\n+import {Client} from './Client.js';\n+\n+import {Not...
2023-09-05T20:45:16
huggingface/transformers
ca960f0cc0d2c2549b0f1834a51fa91230e50134
adc2f16bf1824f7b57c790b4cf3bc48f95ecec69
Remove `cache_position` in more models (2) (#44602) * bert and the likes * NO COPIED FROM IN MODULAR IT IS AUTOMATIC * more more * idefics * more * t5 and the likes * fix and simplify the t5s * fix random test * review comments * those got added in between but were previously removed * this random signature ...
[ { "path": "docs/source/en/model_doc/pp_ocrv5_server_det.md", "patch": "@@ -13,7 +13,7 @@ specific language governing permissions and limitations under the License.\n rendered properly in your Markdown viewer.\n \n -->\n-*This model was released on 2025-5-20 and added to Hugging Face Transformers on 2026-03-...
2026-03-12T22:38:12
golang/go
8071f2a1697c2a8d7e93fb1f45285f18303ddc76
78e6f2a1c87df4d588b11b51da63a974ade0ca79
runtime: mapiter linkname compatibility layer This CL reintroduces the various mapiter* linkname functions with a compatibility layer that is careful to maintain compatibility with users of the linkname. The wrappers are straightforward. Callers of these APIs get an extra layer of indirection, with their hiter contai...
[ { "path": "src/runtime/linkname_swiss.go", "patch": "@@ -0,0 +1,211 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build goexperiment.swissmap\n+\n+package runtime\n+\n+import (...
2025-01-24T21:29:13
ollama/ollama
5d31242fbfc09302e611df8c2202cb8d2c72037a
d7fd72193fbf113ddf97411fc404be3962f33584
discover: fix typos in runner.go (#13096)
[ { "path": "discover/runner.go", "patch": "@@ -94,7 +94,7 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t\tvar dirs []string\n \t\t\tif dir != \"\" {\n \t\t\t\tif requested != \"\" && filepath.Base(dir) != requested {\n-\t\t\t\t\tslog.Debug(\"skipping available libr...
2025-11-16T02:52:54
facebook/react
9d6170ab98cdd811ccc7cdf1b53d8520aa7f5c15
6a71868d4c159c8089f0c70f17bfcf2abc68173d
Update snap fixture Missed this in my last PR
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/for-of-mutate.expect.md", "patch": "@@ -2,15 +2,13 @@\n ## Input\n \n ```javascript\n-import { makeObject_Primitives, mutateObject, Stringify } from \"shared-runtime\";\n+import { makeObject_Primitives, mutate, Stringify ...
2023-09-05T19:07:37
huggingface/transformers
adc2f16bf1824f7b57c790b4cf3bc48f95ecec69
745341d8a27e6160caf1a18cdd3e81d876a4a3ad
fix: cast to proper dtype in EmbeddingParallel (#44612) Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com>
[ { "path": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -967,7 +967,7 @@ def _prepare_output_fn(self, mod, outputs, device_mesh):\n input_mask = mod._input_mask\n # Use multiplication instead of in-place assignment to preserve gradients\n mask_expanded ...
2026-03-12T20:45:17
electron/electron
faa2f7afa3d5b0a21d153412d8c728d76c2a45d9
f3dbdaaf33f29e8ffe6921e767fcab877f921dec
test: migrate asar specs to main runner (#35230) * test: migrate node specs to main * test: migrate asar specs to main runner * fix execFile
[ { "path": "spec-main/asar-spec.ts", "patch": "@@ -5,6 +5,10 @@ import { Worker } from 'worker_threads';\n import { BrowserWindow, ipcMain } from 'electron/main';\n import { closeAllWindows } from './window-helpers';\n import { emittedOnce } from './events-helpers';\n+import { getRemoteContext, ifdescribe, i...
2022-08-09T07:39:14
vercel/next.js
bfeb2216d7429eb8e348b49f8a2e4c25eb3b4906
6654a98a9b5d87170a25fc369e419c1de9ab4f72
refactor(turbopack): Preserve indents in dev mode codegen (#79786) ### What? Preserve indents in dev modes (inverts #79754) ### Why? Indent can be useful for debugging.
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -78,6 +78,7 @@ use turbopack_core::{\n asset::{Asset, AssetContent},\n chunk::{\n AsyncModuleInfo, ChunkItem, ChunkType, ChunkableModule, ChunkingContext, EvaluatableAsset,\n+ MinifyType,\n },\n compile...
2025-05-28T16:22:40
ollama/ollama
72ff5b9d8c7a07df46f7a7db68a42562ddab2994
ce29f695b4072209dd8238f8bd732d16505b7e1c
log: warn if user overrides detected (#13088) Many failed GPU discovery issues recently can be traced to incorrect override settings. This extra logging should help quickly spot these and guide users to try unsetting them first.
[ { "path": "discover/runner.go", "patch": "@@ -65,6 +65,10 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t}\n \n \t\tslog.Info(\"discovering available GPUs...\")\n+\n+\t\t// Warn if any user-overrides are set which could lead to incorrect GPU discovery\n+\t\toverrid...
2025-11-14T22:36:28
golang/go
f8937cb6255970de3f0c8cbccc5253ae81249c47
11e08d9d96fa13346d50b5f728058f2f2647664a
archive/zip, archive/tar: writer appends slash to directory names Fixes #71235 Change-Id: I62aebb9d421db0e4b57ad5cae25c70f47aa5f8f9 GitHub-Last-Rev: 6e0fba07dd128e20e32a3a6258edf80ee91d4690 GitHub-Pull-Request: golang/go#71239 Reviewed-on: https://go-review.googlesource.com/c/go/+/642375 Reviewed-by: Jonathan Amsterd...
[ { "path": "src/archive/tar/writer.go", "patch": "@@ -424,6 +424,9 @@ func (tw *Writer) AddFS(fsys fs.FS) error {\n \t\t\treturn err\n \t\t}\n \t\th.Name = name\n+\t\tif d.IsDir() {\n+\t\t\th.Name += \"/\"\n+\t\t}\n \t\tif err := tw.WriteHeader(h); err != nil {\n \t\t\treturn err\n \t\t}", "additions": 3...
2025-01-22T02:23:08
facebook/react
a374287feae1b37f19fb43d428463b153d552b20
a27df56a5cc54b77a9206d1344b457af4ec64b30
React DevTools 4.28.2 -> 4.28.3 (#27337) This is a patch version to fix some bugs in a previous internal release. I am expecting this one also to be internal-only, need to make sure that extension is stable in Chrome. Some changes and improvements are expected for Firefox, though, before going public. * refactor...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.28.2\",\n+ \"version\": \"4.28.3\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j...
2023-09-05T17:58:27
vercel/next.js
6654a98a9b5d87170a25fc369e419c1de9ab4f72
6492a52b5394dd5b9448b4b23b0f3aed2e348b02
Run `tsc` in watch mode during `pnpm dev` (#79785) Now that `tsc` can be run repeatedly without erroring, we can run it in watch mode during `pnpm dev` to ensure that type errors are always up-to-date while developing. Previously, we had to restart `pnpm dev`, like animals.
[ { "path": "packages/next/taskfile.js", "patch": "@@ -2835,9 +2835,11 @@ export async function build(task, opts) {\n }\n \n export async function generate_types(task, opts) {\n- await execa.command('pnpm run types', {\n- stdio: 'inherit',\n- })\n+ await execa(\n+ 'pnpm',\n+ ['run', 'types', ...(o...
2025-05-28T15:36:18
electron/electron
f3dbdaaf33f29e8ffe6921e767fcab877f921dec
0400eb2e60578add06d48fb662236e7eaf2122fb
build: fix error in the `ts-compile-doc-change` step (#35258) build: fix error in the ts-compile-doc-change step Fixes the following error: https://app.circleci.com/pipelines/github/electron/electron/56517/workflows/ea0f6548-e0ac-40c6-bacb-e24610cd6670/jobs/1287168?invite=true#step-103-29 ```sh $ webpack --conf...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -990,7 +990,7 @@ step-ts-compile: &step-ts-compile\n do\n out=\"${f:29}\"\n if [ \"$out\" != \"base.js\" ]; then\n- node script/yarn webpack --config $f --output-filename=$out --output-path=./.tmp --env.mode=development\n+ ...
2022-08-08T21:09:09
ollama/ollama
12b174b10e5f3d0cf8cf5856a344e1f765203535
333203d871339414d266a75e2134e87022ff110f
fix tensor merge (#13053)
[ { "path": "convert/tensor.go", "patch": "@@ -2,10 +2,12 @@ package convert\n \n import (\n \t\"cmp\"\n+\t\"errors\"\n \t\"io\"\n \t\"iter\"\n \t\"path\"\n \t\"slices\"\n+\t\"strconv\"\n \t\"strings\"\n \n \t\"github.com/pdevine/tensor\"\n@@ -94,6 +96,26 @@ func mergeTensors(unmatched []Tensor, merges ...mer...
2025-11-13T23:32:34
golang/go
f70aa3824b637d69aaaa944b3e4691c1fbe6c0d4
475e08349d48b172285fc8629ef1622136ee8173
cmd/go: do not call base.fatal for an unset HOME for GOAUTH=netrc This CL silences errors caused by GOAUTH=netrc and HOME being unset. Instead, we log the error if the -x flag is set. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Change-Id: Ibd323769f3562c169ebf559e060e9a...
[ { "path": "src/cmd/go/internal/auth/auth.go", "patch": "@@ -70,7 +70,8 @@ func runGoAuth(client *http.Client, res *http.Response, url string) {\n \t\tcase \"netrc\":\n \t\t\tlines, err := readNetrc()\n \t\t\tif err != nil {\n-\t\t\t\tbase.Fatalf(\"go: could not parse netrc (GOAUTH=%s): %v\", cfg.GOAUTH, err...
2025-01-23T19:35:34
facebook/react
a27df56a5cc54b77a9206d1344b457af4ec64b30
9b4f847d93aa302c953543ae0631023c06408ad3
refactor[devtools/extension]: handle ports disconnection, instead of frequent reconnection (#27336) - Instead of reconnecting ports from devtools page and proxy content script, now handling their disconnection properly - `proxy.js` is now dynamically registered as a content script, which loaded for each page. This ...
[ { "path": "packages/react-devtools-extensions/src/background/dynamicallyInjectContentScripts.js", "patch": "@@ -2,26 +2,46 @@\n \n import {IS_FIREFOX} from '../utils';\n \n-async function dynamicallyInjectContentScripts() {\n- const contentScriptsToInject = [\n- {\n- id: '@react-devtools/hook',\n- ...
2023-09-05T17:41:39
vercel/next.js
54acbd43476e615f4c0994cc1fab4096385ddee5
e66680dcf9e8aa1eb978e51564e2e73511be4ae0
Turbopack Build: Fix metadata test (#79776) ## What? Changes the test to not use the `.next` folder but instead fetch the running server which makes sure it does not rely on specific formats.
[ { "path": "test/lib/next-modes/base.ts", "patch": "@@ -545,6 +545,16 @@ export class NextInstance {\n return fs.readFile(path.join(this.testDir, filename), 'utf8')\n }\n \n+ public async readFileBuffer(\n+ filename: string\n+ ): Promise<Buffer<ArrayBufferLike>> {\n+ return fs.readFile(path.joi...
2025-05-28T10:58:37
electron/electron
91f9436ad8e6028bf2909008e5814867289b9310
34b985c5560aac4bb86d3697f8358647d38e79a7
fix: app.relaunch loses args when execPath specified (#35108)
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -1151,7 +1151,9 @@ bool App::Relaunch(gin::Arguments* js_args) {\n \n gin_helper::Dictionary options;\n if (js_args->GetNext(&options)) {\n- if (options.Get(\"execPath\", &exec_path) || options.Get(\"args\", &args))\n+ bool has_exec_p...
2022-08-08T08:12:06
ollama/ollama
684a9a8c5a01acfe13ee4a55a7dc7aff69f6b17a
54a76d377301f9b1bcf00895a857e84cc45f0b3a
docs: fix typo (VSCode -> VS Code) (#13072)
[ { "path": "README.md", "patch": "@@ -366,7 +366,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [PartCAD](https://github.com/openvmp/partcad/) (CAD model generation with OpenSCAD and CadQuery)\n - [Ollama4j Web UI](https://github.com/ollama4j/ollama4j-web-ui) - Java-based Web UI for O...
2025-11-13T04:49:33
golang/go
475e08349d48b172285fc8629ef1622136ee8173
e2e700f8b174f34b44c32d7e923ffe4e7219e171
Revert "runtime: Check LSE support on ARM64 at runtime init" This reverts CL 610195. Reason for revert: SIGILL on macOS. See issue #71411. Updates #69124, #60905. Fixes #71411. Change-Id: Ie0624e516dfb32fb13563327bcd7f557e5cba940 Reviewed-on: https://go-review.googlesource.com/c/go/+/644695 LUCI-TryBot-Result: Go L...
[ { "path": "src/runtime/asm_arm64.s", "patch": "@@ -8,11 +8,6 @@\n #include \"funcdata.h\"\n #include \"textflag.h\"\n \n-#ifdef GOARM64_LSE\n-DATA no_lse_msg<>+0x00(SB)/64, $\"This program can only run on ARM64 processors with LSE support.\\n\"\n-GLOBL no_lse_msg<>(SB), RODATA, $64\n-#endif\n-\n TEXT runtim...
2025-01-27T17:11:36
huggingface/transformers
e2d4ac03709f3670133c79196814205ce1531faa
96a33c5a8ffb66b2b3fac71c48bcbabd519f31e6
Remove many output_attentions and other traced outputs on 100+ models (#43590) * first batch, let's see * propagate changes * fixup broken tests * simplify more models * hack * fix attentions * I'm bullied by the new fix-repo * this one too * fix-repo * ...fix-repo? * change up * propagate changes again *...
[ { "path": "src/transformers/backbone_utils.py", "patch": "@@ -15,6 +15,7 @@\n \"\"\"Collection of utils to be used by backbones and their components.\"\"\"\n \n import enum\n+import functools\n import inspect\n \n from huggingface_hub import repo_exists\n@@ -156,6 +157,27 @@ def to_dict(self):\n ret...
2026-03-12T19:08:37
facebook/react
9b4f847d93aa302c953543ae0631023c06408ad3
7022e8d6a3222c97d287dfa0f2361acc8a30683a
refactor[devtools/extension]: migrate from using setInterval for polling if react is loaded (#27323) `chrome.devtools.inspectedWindow.eval` is asynchronous, so using it in `setInterval` is a mistake. Sometimes this results into mounting React DevTools twice, and user sees errors about duplicated fibers in store. ...
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -29,7 +29,23 @@ import registerEventsLogger from './registerEventsLogger';\n import getProfilingFlags from './getProfilingFlags';\n import './requestAnimationFramePolyfill';\n \n-function executeIfReactHasLoaded(callback) {\n+// ...
2023-09-01T15:23:04
vercel/next.js
e66680dcf9e8aa1eb978e51564e2e73511be4ae0
3168c1a0282041aa1341d228af4e3d63ec1ccc0a
Docs: Fix headings (#79777)
[ { "path": "docs/01-app/01-getting-started/09-caching-and-revalidating.mdx", "patch": "@@ -21,7 +21,7 @@ Next.js provides a few APIs to handle caching and revalidation. This guide will\n - [`revalidatePath`](#revalidatepath)\n - [`revalidateTag`](#revalidatetag)\n \n-### `fetch`\n+## `fetch`\n \n By default,...
2025-05-28T10:31:06
ollama/ollama
f206357412cfac5a885b843bd9a1c64ec89ac213
8224cd9063f29fe1bd775d386988aac8e6fd2ea6
readme: fix incorrect header in community integrations (#13065)
[ { "path": "README.md", "patch": "@@ -640,5 +640,5 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Langfuse](https://langfuse.com/docs/integrations/ollama) is an open source LLM observability platform that enables teams to collaboratively monitor, evaluate and debug AI applications.\n -...
2025-11-13T01:00:16
electron/electron
76431ac1fa395386da6655d006d3f96119d37995
a11cc3274f3db09a72f4cc0ff71da4bb1b6da4b1
test: temporarily disable tests on mas arm64 that are causing a crash (#35226) * test: temporarily disable test on mas arm64 that is causing crash * disable the right test * chore: speculative fix for CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER crash * enable all the tests * Revert "chore: speculati...
[ { "path": "spec-main/api-browser-window-spec.ts", "patch": "@@ -5255,7 +5255,8 @@ describe('BrowserWindow module', () => {\n });\n });\n \n- describe('contextIsolation option with and without sandbox option', () => {\n+ // TODO (jkleinsc) renable these tests on mas arm64\n+ ifdescribe(!process.mas ...
2022-08-06T23:02:04
golang/go
608acff8479640b00c85371d91280b64f5ec9594
9d21ef3bd43acedfe5317184e63cc6b3dd19cbdf
go/types: avoid importer.Default It uses a throwaway FileSet, so all position info is wrong, and potentially misleading. (Various other helpers in go/types testing also use a throwaway FileSet, and should really accept it as a parameter.) Fixes #71272 Change-Id: I9d899b987837b4041a299aad5ec266cb4f5d125c Reviewed-on...
[ { "path": "src/go/types/api_test.go", "patch": "@@ -19,11 +19,16 @@ import (\n \t\"testing\"\n \n \t. \"go/types\"\n+\t\"runtime\"\n )\n \n // nopos indicates an unknown position\n var nopos token.Pos\n \n+func defaultImporter(fset *token.FileSet) Importer {\n+\treturn importer.ForCompiler(fset, runtime.Com...
2025-01-22T15:43:44
vercel/next.js
0ee8d5c7a8210e802314a766b6f2115f4b3e80b2
123524832c2b686381407740604cdb99f65f9c65
fix(turbopack): Use comments instead of AST nodes for unreachables (#79703) ### What? Use unreachable comments instead of AST nodes for statically analyzable unreachable AST nodes. ### Why? It causes fewer problems for Firefox and potentially reduces RSS. ### How? - Closes PACK-3843 - Closes #74185
[ { "path": "turbopack/crates/turbopack-ecmascript/src/code_gen.rs", "patch": "@@ -1,11 +1,14 @@\n use anyhow::Result;\n use serde::{Deserialize, Serialize};\n-use swc_core::ecma::{\n- ast::{\n- BlockStmt, CallExpr, Expr, Lit, MemberExpr, ModuleDecl, ModuleItem, Pat, Program, Prop,\n- SimpleA...
2025-05-27T22:46:51
facebook/react
7022e8d6a3222c97d287dfa0f2361acc8a30683a
b70a0d70224ceb4e277bd8ac535a2caafa5c075a
fix[devtools/extension]: fixed duplicating panels in firefox (#27320) Multiple `chrome.panels.create` calls result into having duplicate panels created in Firefox, these changes fix that. Now calling `chrome.panels.create` only if there are no panels created yet.
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -340,16 +340,24 @@ function ensureInitialHTMLIsCleared(container) {\n \n function createComponentsPanel() {\n if (componentsPortalContainer) {\n+ // Panel is created and user opened it at least once\n render('components'...
2023-08-31T17:24:26
huggingface/transformers
96a33c5a8ffb66b2b3fac71c48bcbabd519f31e6
88bd2fdf26ec9d99db0622268be613fa23cfcc10
[Model] Add PP-OCRV5_server_det Model Support (#43274) * Feat: Add PP-OCRV5_server_det Model Support * Fix fix diff * Fix fix doc and forward for check_repo * fix format * Fix for pass CI * fix * fix module init_weight and rename module * fix use numpy and pil to replace cv2, refactor model * fix * fix * upd...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1268,6 +1268,8 @@\n title: PP-DocLayoutV2\n - local: model_doc/pp_doclayout_v3\n title: PP-DocLayoutV3\n+ - local: model_doc/pp_ocrv5_server_det\n+ title: PP-OCRv5_server_det\n - local: model_doc/qwen2_5_omni\n ...
2026-03-12T18:41:28
ollama/ollama
8224cd9063f29fe1bd775d386988aac8e6fd2ea6
6286d9a3a549c600896a4a7029983a09a8488b56
ci: fix win vulkan (#13062)
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -192,7 +192,7 @@ jobs:\n Enter-VsDevShell -VsInstallPath 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise' -SkipAutomaticLocation -DevCmdArguments '-arch=x64 -no_logo'\n cmake --preset \"${{ matrix.preset }}\" ${{ mat...
2025-11-12T18:32:24
electron/electron
a11cc3274f3db09a72f4cc0ff71da4bb1b6da4b1
a719568ac131885c736047e4bb532c70ba4591a8
build: fix webpack prod failure (#35227)
[ { "path": "package.json", "patch": "@@ -73,7 +73,7 @@\n \"typescript\": \"^4.5.5\",\n \"webpack\": \"^5.73.0\",\n \"webpack-cli\": \"^4.10.0\",\n- \"wrapper-webpack-plugin\": \"^2.1.0\"\n+ \"wrapper-webpack-plugin\": \"^2.2.0\"\n },\n \"private\": true,\n \"scripts\": {", "additi...
2022-08-05T16:21:00
golang/go
9d21ef3bd43acedfe5317184e63cc6b3dd19cbdf
5a46b17b5f62616bdbc973bbd6a221edc02a0619
runtime: fix the equality check in AddCleanup This fixes the check that ensures that arg is not equal to ptr in AddCleanup. This also changes any use of throw to panic in AddCleanup. Fixes #71316 Change-Id: Ie5a3e0163b254dff44b7fefedf75207ba587b771 Reviewed-on: https://go-review.googlesource.com/c/go/+/643655 Review...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -70,19 +70,19 @@ func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n \n \t// The pointer to the object must be valid.\n \tif ptr == nil {\n-\t\tthrow(\"runtime.AddCleanup: ptr is nil\")\n+\t\tpanic(\"runtime.AddCleanup: ptr is nil\")\n \t}\...
2025-01-21T16:52:41
huggingface/transformers
88bd2fdf26ec9d99db0622268be613fa23cfcc10
45d8d93659fe08cb0530f37a3a519d1cef663687
fix: raise error if mm_token_type_ids not supplied (#44433) * fix: raise error on missing arg mm_token_type_ids * fix tests
[ { "path": "src/transformers/models/ernie4_5_vl_moe/modeling_ernie4_5_vl_moe.py", "patch": "@@ -1353,11 +1353,14 @@ def compute_3d_position_ids(\n mm_token_type_ids: torch.IntTensor | None = None,\n ) -> torch.Tensor | None:\n past_key_values_length = 0 if past_key_values is None else pas...
2026-03-12T17:12:46
vercel/next.js
826da1f78652a606149523a8bb2dc24b93f96595
fc05711d58e0b28e2f84a8d995eee4fbb60724a7
update(turbopack): Update the messaging UX for timing writing files to disk (#79469) ## Refactor Turbopack Compilation Events and Timing Reporting ### What? This PR refactors how compilation events are created, displayed, and formatted in Turbopack. It introduces a dedicated `TimingEvent` type for timing-related mess...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -31,7 +31,7 @@ use turbo_rcstr::RcStr;\n use turbo_tasks::{\n Completion, Effects, FxIndexSet, OperationVc, ReadRef, ResolvedVc, TransientInstance,\n TryJoinIterExt, UpdateInfo, Vc, get_effects,\n- message_queue::{CompilationEvent, Dia...
2025-05-27T20:52:11
facebook/react
3808b01b3a6d116151b5de742866360ed70450c7
29b405b2de6b4abaa67ff53f3b5e067f80b106d3
React DevTools 4.28.1 -> 4.28.2 (#27318) List of changes: * fix[devtools/extension]: handle tab navigation events before react is loaded ([hoxyq](https://github.com/hoxyq) in [#27316](https://github.com/facebook/react/pull/27316))
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.28.1\",\n+ \"version\": \"4.28.2\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j...
2023-08-30T18:47:08
golang/go
5a46b17b5f62616bdbc973bbd6a221edc02a0619
6fc23a3cff5e38ff72923fee50f51254dcdc6e93
os: force a goroutine to be scheduled on WASM The TestRootConcurrentClose test can fail when GOARCH=WASM because of goroutine starvation. The spawned goroutine will sometimes run in a loop and never have the main goroutine be scheduled. This causes the test to fail due to a timeout. This change forces the goroutine to...
[ { "path": "src/os/root_test.go", "patch": "@@ -1077,6 +1077,10 @@ func TestRootConcurrentClose(t *testing.T) {\n \t\t\t\tfirst = false\n \t\t\t}\n \t\t\tf.Close()\n+\t\t\tif runtime.GOARCH == \"wasm\" {\n+\t\t\t\t// TODO(go.dev/issue/71134) can lead to goroutine starvation.\n+\t\t\t\truntime.Gosched()\n+\t\...
2025-01-03T21:53:32
electron/electron
c47031a279492a074804ed5cfe714d5c92b3d128
74432a313cb05bf61b1aaae889357d81f8620031
docs: Fix the URL bugs at tutorial-6-publishing-updating.md (#35175) * Update tutorial-6-publishing-updating.md The dot at the end of the URL will depend on the site that cannot open. Because it will open `https://update.electronjs.org./` which does not exist. * docs: fix the URL problems at tutorial-6-publishin...
[ { "path": "docs/tutorial/tutorial-6-publishing-updating.md", "patch": "@@ -27,7 +27,7 @@ into your app code.\n ## Using update.electronjs.org\n \n The Electron maintainers provide a free auto-updating service for open-source apps\n-at https://update.electronjs.org. Its requirements are:\n+at [https://update...
2022-08-03T14:20:37
huggingface/transformers
45d8d93659fe08cb0530f37a3a519d1cef663687
e5a861d381bf65a146ce487c3d3c0fca919ef316
Fix output capturing for Backbones (#44638) * fix * remove default in init
[ { "path": "src/transformers/backbone_utils.py", "patch": "@@ -20,6 +20,7 @@\n from huggingface_hub import repo_exists\n \n from .utils import logging\n+from .utils.output_capturing import maybe_install_capturing_hooks\n \n \n logger = logging.get_logger(__name__)\n@@ -181,6 +182,18 @@ def __init__(self, *ar...
2026-03-12T17:11:30
vercel/next.js
89d40df2effae5789073259aa55729dc900e4118
0bcbab529e26ebd3d92b56a32287525700df2c43
Turbopack Build: Fix middleware rewrite test (#79697) ## What? The reason this test fails seems to be that the `browser.on('request'` gets registered too late and the requests are not tracked because of that. Seems it can flake with webpack too. Switched to `beforePageLoad` to register it always. That switch makes th...
[ { "path": "test/e2e/middleware-rewrites/test/index.test.ts", "patch": "@@ -24,15 +24,19 @@ describe('Middleware Rewrite', () => {\n \n function tests() {\n it('should handle catch-all rewrite correctly', async () => {\n- const browser = await next.browser('/', { waitHydration: false })\n+ le...
2025-05-27T19:55:57
facebook/react
29b405b2de6b4abaa67ff53f3b5e067f80b106d3
d23b8b5dbf72cd0a3a1a85e22af19772b32feacd
fix[devtools/extension]: handle tab navigation events before react is loaded (#27316) This is mostly hotfix for https://github.com/facebook/react/pull/27215. Contains 3 fixes: - Handle cases when `react` is not loaded yet and user performs in-tab navigation. Previously, because of the uncleared interval we would ...
[ { "path": "packages/react-devtools-extensions/src/background/index.js", "patch": "@@ -95,7 +95,7 @@ function isNumeric(str: string): boolean {\n return +str + '' === str;\n }\n \n-chrome.runtime.onConnect.addListener(async port => {\n+chrome.runtime.onConnect.addListener(port => {\n if (port.name === 'p...
2023-08-30T18:31:18
golang/go
6fc23a3cff5e38ff72923fee50f51254dcdc6e93
70b603f4d295573197b43ad090d7cad21895144e
crypto/internal/fips140/nistec: make p256NegCond constant time on ppc64le Remove the branching instruction from p256NegCond which made it variable time. The technique used matches that used in p256MovCond. Fixes #71383 Fixes CVE-2025-22866 Change-Id: Ibc2a46814d856cbbdaf6cc0c5a415ed5d42ca793 Reviewed-on: https://go-...
[ { "path": "src/crypto/internal/fips140/nistec/p256_asm_ppc64le.s", "patch": "@@ -126,14 +126,23 @@ GLOBL p256mul<>(SB), 8, $160\n #define PH V31\n \n #define CAR1 V6\n+\n+#define SEL V8\n+#define ZER V9\n+\n // func p256NegCond(val *p256Point, cond int)\n TEXT ·p256NegCond(SB), NOSPLIT, $0-16\n \t...
2025-01-22T00:03:14
electron/electron
74432a313cb05bf61b1aaae889357d81f8620031
4e919c919c030cdcf215256a7573864afd7748a2
docs: fix link in tutorial (#35192) Relands https://github.com/electron/electronjs.org-new/pull/240 upstream
[ { "path": "docs/tutorial/tutorial-4-adding-features.md", "patch": "@@ -64,7 +64,7 @@ into end users' hands.\n \n [discord]: https://discord.gg/electronjs\n [github]: https://github.com/electron/electronjs.org-new/issues/new\n-[how to]: ./examples.md\n+[how-to]: ./examples.md\n [node-platform]: https://nodej...
2022-08-03T14:12:06
huggingface/transformers
e5a861d381bf65a146ce487c3d3c0fca919ef316
cd7164aff1e3d598e18e84a513ab2a7295243b7c
Fix lfm2 kernel path (#44634) * fix * nit
[ { "path": "src/transformers/models/lfm2/modeling_lfm2.py", "patch": "@@ -459,14 +459,22 @@ def cuda_kernels_forward(\n past_key_values: Lfm2HybridConvCache | None = None,\n attention_mask: torch.Tensor | None = None,\n ):\n+ seqlen = x.shape[1]\n x = apply_mask_to_padding_...
2026-03-12T14:48:19
vercel/next.js
0bcbab529e26ebd3d92b56a32287525700df2c43
c51300807ea7e0590104343b8616572503f0b78d
[dev-overlay] Move error handlers into dispatcher in /app (#79660) The dispatcher will later be the bridge between user code and the dev overlay so it should house all logic that communicates with the Dev Overlay frontend.
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -1,7 +1,7 @@\n /// <reference types=\"webpack/module.d.ts\" />\n \n import type { ReactNode } from 'react'\n-import { useCallback, useEffect, startTransition, useMemo, useRef } from 'react'\n+import {...
2025-05-27T18:55:33
golang/go
f6d17c540024418ca8a92371931b1b4fb076d2b6
3aa7c5ef01e147fb482f4b3e79c6f875a4b1b9fb
net/http: update bundled golang.org/x/net/http2 [generated] Pull in x/net CL 642606 and CL 643256 and regenerate h2_bundle.go: http2: disable extended CONNECT by default http2: encode :protocol pseudo-header before regular headers For #36905. Fixes #70728. Fixes #71128. [git-generate] go install golang.org/x/buil...
[ { "path": "src/go.mod", "patch": "@@ -4,7 +4,7 @@ go 1.24\n \n require (\n \tgolang.org/x/crypto v0.30.0\n-\tgolang.org/x/net v0.32.1-0.20241206180132-552d8ac903a1\n+\tgolang.org/x/net v0.32.1-0.20250121202134-9a960c88dd98\n )\n \n require (", "additions": 1, "deletions": 1, "language": "Unknown...
2025-01-21T19:41:15
ollama/ollama
3a9e8e9fd42f32711b8aeea355e3ed5e155d49b2
cb1cb06478af1a973092b163dddee2a256c1d2f3
vulkan: temporary cary of vulkan fixes (#12971) This should be reverted once we update ggml past b6897
[ { "path": "llama/patches/0029-vulkan-Call-ggml_vk_buffer_write_2d-from-ggml_vk_buf.patch", "patch": "@@ -0,0 +1,32 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Jeff Bolz <jbolz@nvidia.com>\n+Date: Wed, 29 Oct 2025 03:53:04 -0500\n+Subject: [PATCH] vulkan: Call ggml_vk_...
2025-11-12T16:31:40
electron/electron
afa4f5052bf5984821b01729a94dcd5b0e04d794
7b8fb2b07418c7bad6ce811ca75c926ee53663fc
fix: consider dock space when showing menu (#35194)
[ { "path": "shell/browser/api/electron_api_menu_mac.mm", "patch": "@@ -131,7 +131,7 @@\n if (!item) {\n CGFloat windowBottom = CGRectGetMinY([view window].frame);\n CGFloat lowestMenuPoint = windowBottom + position.y - [menu size].height;\n- CGFloat screenBottom = CGRectGetMinY([view window].scr...
2022-08-03T08:52:42
facebook/react
2fba484cd095ea79b940364cea5107fa4ca9f0c8
ddff504695f33c19e8c0792bff82bd8f8b8f7c05
useFormState fix: action -> target (#27309) I mixed these attributes up in https://github.com/facebook/react/pull/27302
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMForm-test.js", "patch": "@@ -354,7 +354,7 @@ describe('ReactFlightDOMForm', () => {\n \n // @gate enableFormActions\n // @gate enableAsyncActions\n- it(\"useFormState can change the action's target with the `permalink` argument\",...
2023-08-30T02:17:15
huggingface/transformers
cd7164aff1e3d598e18e84a513ab2a7295243b7c
c14b7b9d5523d1eeda1daeef68085d8114aa56f4
Fix for `VibeVoiceAcousticTokenizer` (#44628) * fix * update --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/models/vibevoice_acoustic_tokenizer/configuration_vibevoice_acoustic_tokenizer.py", "patch": "@@ -19,7 +19,7 @@\n from ...utils import auto_docstring\n \n \n-@auto_docstring(checkpoint=\"microsoft/VibeVoice-1.5B\")\n+@auto_docstring(checkpoint=\"microsoft/VibeVoice-AcousticTokeni...
2026-03-12T13:23:12
vercel/next.js
c51300807ea7e0590104343b8616572503f0b78d
d55e2f84933bbbd84413c80afa0521ec15a7b801
[dev-overlay] Show error overlay on any thrown value in /app (#79658) May have been a leftover from earlier. We always consider any throw. Even without a sync stack, we might still have an async stack to show. And even if we have no stack at all, the message is still relevant. Basically, never hide errors.
[ { "path": ".changeset/smooth-bears-run.md", "patch": "@@ -0,0 +1,8 @@\n+---\n+'next': patch\n+---\n+\n+[dev-overlay] Show error overlay on any thrown value\n+\n+We used to only show the error overlay on thrown values with a stack property.\n+On other thrown values we kept the overlay collapsed.", "addit...
2025-05-27T18:17:38