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
9dc8d8aa3090ab3f39e6086d02b712f9274bc795
687a70daa99d1e1cce4a681291a5348890843254
fix(camembert): add tie_word_embeddings=True to CamembertConfig (#44931) In v5, `modeling_utils.get_expanded_tied_weights_keys()` checks `config.tie_word_embeddings` and returns an empty dict (skipping all weight tying) when the attribute is absent or False. `CamembertConfig` was missing `tie_word_embeddings: bool = ...
[ { "path": "src/transformers/models/camembert/configuration_camembert.py", "patch": "@@ -60,6 +60,7 @@ class CamembertConfig(PreTrainedConfig):\n classifier_dropout: float | int | None = None\n is_decoder: bool = False\n add_cross_attention: bool = False\n+ tie_word_embeddings: bool = True\n \...
2026-03-23T10:47:48
golang/go
2e71ae33ca3339cc2f7554ec6a8a39c5938f1001
c55c1cbd04ca42c70adadc86e1f48f3678be10cc
runtime/cgo: avoid errors from -Wdeclaration-after-statement CL 652181 accidentally missed this iPhone only code. For #71961 Change-Id: I567f8bb38958907442e69494da330d5199d11f54 Reviewed-on: https://go-review.googlesource.com/c/go/+/653135 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor...
[ { "path": "src/runtime/cgo/gcc_darwin_arm64.c", "patch": "@@ -76,19 +76,27 @@ threadentry(void *v)\n static void\n init_working_dir()\n {\n-\tCFBundleRef bundle = CFBundleGetMainBundle();\n+\tCFBundleRef bundle;\n+\tCFURLRef url_ref;\n+\tCFStringRef url_str_ref;\n+\tchar buf[MAXPATHLEN];\n+\tBoolean res;\n+...
2025-02-26T22:02:14
vercel/next.js
e5d296c4d9b29e77324470e3161ad4bd8a121ec5
16933e9edca38648927e82091c4f83fe7b79dae1
fix(turbopack): Restore `sources` field in the source map (#80337) ### What? Restore the `sources` field by picking up https://github.com/kdy1/rust-sourcemap/commit/27e1bf8b92498425fbc6e2f31d2f755b6ae94f19 ### Why? It's expected to be exist
[ { "path": "Cargo.lock", "patch": "@@ -6683,7 +6683,7 @@ dependencies = [\n [[package]]\n name = \"sourcemap\"\n version = \"9.2.2\"\n-source = \"git+https://github.com/kdy1/rust-sourcemap?branch=main#804d663521d6109b3746d800918d483b97e8e108\"\n+source = \"git+https://github.com/kdy1/rust-sourcemap?branch=ma...
2025-06-10T04:26:01
ollama/ollama
912d98434664b8a49ba6d0ffc42b0d0e5b435546
aae6ecbaffb1909018f3d9e289166c50a2eaffc5
llama: fix fattn-tile shared memory overflow on sm_50/52 (#13872) Use nthreads=128 for ncols=4 configurations in flash attention tile kernel to reduce shared memory usage below 48KB limit on Maxwell architectures (sm_50/52). With nthreads=256 and ncols=4, np=2 which caused shared memory to exceed 48KB. With nthreads=...
[ { "path": "llama/patches/0032-ggml-enable-MLA-flash-attention-for-GLM-4.7-flash.patch", "patch": "@@ -17,7 +17,6 @@ CUDA changes:\n - Add tile configs for (576, 512, 4) and (576, 512, 8)\n - Add MMA config cases for ncols 4\n - Add template instances for ncols2=4\n-- Fix nbatch_fa values in nvidia_fp32 conf...
2026-01-24T03:22:32
facebook/react
3e812df89cee2686bcb1086038fcb2e609802dd4
f648e4ce85dd3b1a8ecc4120a0629a4b75859480
[repro] Test case for more variable naming collision bugs --- bug repro from @JacksonGL (we currently bailout for references to `useMemoCache`, but not other variables that may collide with codegenned ones). ``` % yarn sprout --filter yarn run v1.22.19 $ node ../sprout/dist/main.js --filter FAIL todo ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/todo-rename-source-variables.expect.md", "patch": "@@ -0,0 +1,57 @@\n+\n+## Input\n+\n+```javascript\n+import { identity } from \"shared-runtime\";\n+\n+const $ = \"module_$\";\n+const t0 = \"module_t0\";\n+const c_0 = \"...
2023-10-30T16:01:24
huggingface/transformers
a8683756653094e3fc3016df8abcdeaaec758f9a
55cc1a7fb8e53a5e7e35ca9cf9759498f20abb93
fix `processing_utils.py`: avoid deepcopying tokenizer in `ProcessorMixin` to improve performance (#44894) fix(processing_utils): avoid deepcopying tokenizer in ProcessorMixin.to_dict to improve performance Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/processing_utils.py", "patch": "@@ -704,7 +704,16 @@ def to_dict(self) -> dict[str, Any]:\n Returns:\n `dict[str, Any]`: Dictionary of all the attributes that make up this processor instance.\n \"\"\"\n- output = copy.deepcopy(self.__dict__)\n+ ...
2026-03-23T09:56:33
electron/electron
625b4619d61619b4d327dd58be3a2cf9b348ffa3
a75e8e051e4854bd65721f82ec1acc7c51764f30
fix: resolve loadURL properly for in-page navigations (#36129)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -450,12 +450,14 @@ WebContents.prototype.loadURL = function (url, options) {\n const removeListeners = () => {\n this.removeListener('did-finish-load', finishListener);\n this.removeListener('did-fail-load', failListener);\n+ thi...
2022-10-26T20:57:39
golang/go
c55c1cbd04ca42c70adadc86e1f48f3678be10cc
9cceaf87361d0b797dd23ec7467d9adb62910fc9
net: return proper error from Context Sadly err was a named parameter so this did not cause compile error. Fixes #71974 Change-Id: I10cf29ae14c52d48a793c9a6cb01b01d79b1b356 GitHub-Last-Rev: 4dc0e6670a9265612b8ec26dbc378219b25156b4 GitHub-Pull-Request: golang/go#71976 Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/net/lookup_plan9.go", "patch": "@@ -65,7 +65,7 @@ func query(ctx context.Context, filename, query string, bufSize int) (addrs []st\n \tcase r := <-ch:\n \t\treturn r.addrs, r.err\n \tcase <-ctx.Done():\n-\t\treturn nil, mapErr(err)\n+\t\treturn nil, mapErr(ctx.Err())\n \t}\n }\n ", "addit...
2025-02-26T16:31:58
vercel/next.js
16933e9edca38648927e82091c4f83fe7b79dae1
4250c5b318be660a94ce58252ab9dcb68a992741
perf(turbopack): Optimize `Rope` correctly (#80335) ### What? Utilize _cheap clone_ of `bytes::Bytes`. I made an error in the previous pull request. ### Why? - In the name of the performance. - `bytes::Bytes` is cheap to clone.
[ { "path": "turbopack/crates/turbo-tasks-fs/src/rope.rs", "patch": "@@ -550,6 +550,10 @@ impl InnerRope {\n return data.into_iter().next().unwrap().into_bytes(len);\n }\n Err(data) => {\n+ // If we have a single element, we can return it ...
2025-06-10T04:25:03
ollama/ollama
64737330a4684a052a67a208bc97cdbf21c54011
2eda97f1c336a2db2cbe7556fbc96b965705240e
Re-apply "model: add MLA absorption for glm4moelite" with fix (#13870) The nvidia_fp32 config for (576, 512) head sizes had nbatch_fa=32, which caused zero-sized arrays when computing array dimensions: nbatch_fa / (np * warp_size) = 32 / (2 * 32) = 0 This resulted in CUDA compilation failures on CUDA 12 (Windows an...
[ { "path": "convert/convert_glm4moelite.go", "patch": "@@ -6,6 +6,10 @@ import (\n \t\"log/slog\"\n \t\"regexp\"\n \t\"strconv\"\n+\t\"strings\"\n+\n+\t\"github.com/pdevine/tensor\"\n+\t\"github.com/pdevine/tensor/native\"\n \n \t\"github.com/ollama/ollama/fs/ggml\"\n )\n@@ -69,6 +73,9 @@ func (p *glm4MoeLit...
2026-01-24T02:40:28
facebook/react
51baf5807e6d99d27dd1b233225402330cc0375c
419310cd15673d1c3d4112cbedf85ea08c1c1e61
[test/react] Fix github workflow The flattening broke the shell script because the directory structure changed. Instead of depending on a flaky shell script, this PR encodes the commands as part of the github workflow.
[ { "path": "compiler/.github/workflows/react.yml", "patch": "@@ -17,6 +17,10 @@ jobs:\n cache-dependency-path: yarn.lock\n - run: yarn install --frozen-lockfile\n - run: yarn workspace babel-plugin-react-forget run build\n+ - run: yarn link\n+ working-directory: packages/bab...
2023-10-25T11:36:55
huggingface/transformers
55cc1a7fb8e53a5e7e35ca9cf9759498f20abb93
394b1a0eaa8e6199e372334da0aff3753a117fdb
fix: set `clean_up_tokenization_spaces=False` in Llama 3 tokenizer conversion (#44914) fix: set clean_up_tokenization_spaces=False in Llama 3 tokenizer conversion The Llama3Converter hardcodes clean_up_tokenization_spaces=True, which applies BERT-era string replacements (` .` → `.`, ` !` → `!`, etc.) that silently co...
[ { "path": "src/transformers/models/llama/convert_llama_weights_to_hf.py", "patch": "@@ -465,7 +465,7 @@ def __init__(self, vocab_file, special_tokens=None, instruct=False, llama_versio\n eos_token=\"<|end_of_text|>\" if not instruct else \"<|eot_id|>\",\n model_input_names=[\"input_i...
2026-03-23T08:28:31
electron/electron
a75e8e051e4854bd65721f82ec1acc7c51764f30
09302a2fc6a4cf45e5a36165b8b3f22b8209525f
docs: document that when `invoke` rejects, it gives a different Error (#36127)
[ { "path": "docs/api/ipc-renderer.md", "patch": "@@ -96,14 +96,6 @@ Algorithm][SCA], just like [`window.postMessage`][], so prototype chains will no\n included. Sending Functions, Promises, Symbols, WeakMaps, or WeakSets will\n throw an exception.\n \n-> **NOTE:** Sending non-standard JavaScript types such a...
2022-10-26T20:56:41
golang/go
9cceaf87361d0b797dd23ec7467d9adb62910fc9
983e30bd3b78ca77a5028a94323c6da363358648
cmd/link: require cgo for -linkmode=external test For #71416 Fixes #71957 Change-Id: I2180dada34d9dd2d3f5b0aaf8525951fd2e86a27 Reviewed-on: https://go-review.googlesource.com/c/go/+/652277 Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Quim Muntal <quimmuntal@gmail.com> LUCI-TryBot-Result: Go LUCI <golan...
[ { "path": "src/cmd/link/internal/ld/macho_test.go", "patch": "@@ -40,10 +40,11 @@ func TestMachoSectionsReadOnly(t *testing.T) {\n \t\t\twantSecsRO: []string{\"__nl_symbol_ptr\", \"__rodata\", \"__itablink\", \"__typelink\", \"__gosymtab\", \"__gopclntab\"},\n \t\t},\n \t\t{\n-\t\t\tname: \"link...
2025-02-26T05:44:25
ollama/ollama
66831dcf701913b2ebc2d659e3624131944bf86d
1044b0419a5e9f2508e3268ce3af8d83292d62fb
x/imagegen: fix image editing support (#13866) - Fix panic in ollama show for image gen models (safe type assertion) - Add vision capability for Flux2KleinPipeline models at create time - Flatten transparent PNG images onto white background for better results
[ { "path": "cmd/cmd.go", "patch": "@@ -1019,8 +1019,10 @@ func showInfo(resp *api.ShowResponse, verbose bool, w io.Writer) error {\n \t\t}\n \n \t\tif resp.ModelInfo != nil {\n-\t\t\tarch := resp.ModelInfo[\"general.architecture\"].(string)\n-\t\t\trows = append(rows, []string{\"\", \"architecture\", arch})\...
2026-01-23T23:37:17
vercel/next.js
4250c5b318be660a94ce58252ab9dcb68a992741
9be85fadc2010d6f7685c0fa7d41c700c58962c2
feat(turbopack): Invalidate the persistent cache upon panic (#80225) This is intended as a band-aid "fix" for persistent caching where issues stick around after restarts of the development server. It builds on top of the same codepath we're using for the explicit cache clearing button in the devtools. As part of this...
[ { "path": "crates/napi/src/lib.rs", "patch": "@@ -72,7 +72,7 @@ fn init() {\n use std::panic::{set_hook, take_hook};\n \n use tokio::runtime::Builder;\n- use turbo_tasks::handle_panic;\n+ use turbo_tasks::panic_hooks::handle_panic;\n use turbo_tasks_malloc::TurboMalloc;\n \n let prev_h...
2025-06-10T04:10:39
facebook/react
c72673bd8f1a6a47f8b403f5600959c6d92b1582
ad1fe50546f112e5efae55ab2957007dee29d86c
[fixtures] Run prettier after babel-plugin This moves prettier formatting into fixture-test-utils instead, so we can remove the dependency on prettier in the babel plugin. I want to do this because I don't want to include prettier in the rolledup artifact when we build the babel plugin.
[ { "path": "compiler/packages/fixture-test-utils/package.json", "patch": "@@ -11,6 +11,7 @@\n \"dependencies\": {\n \"@parcel/watcher\": \"^2.1.0\",\n \"chalk\": \"4\",\n+ \"prettier\": \"2.8.8\",\n \"readline\": \"^1.3.0\",\n \"typescript\": \"^5.1.0\",\n \"yargs\": \"^17.7.1\"\n@@ ...
2023-10-27T18:07:55
huggingface/transformers
52bc9b7e4da1d108f358d77b58f518c61d6319be
e168f86efb28d92fa4ebd7e137d1fba4bec60bc3
[Model] Add UVDoc Model Support (#43385) * Feat: Add UVDoc model * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * u...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -970,6 +970,8 @@\n title: Timm Wrapper\n - local: model_doc/upernet\n title: UperNet\n+ - local: model_doc/uvdoc\n+ title: UVDoc\n - local: model_doc/vit\n title: Vision Transformer (ViT)\n - local: m...
2026-03-20T22:02:35
electron/electron
ad289d120f18a8a72e811b3312b849ac1537d319
85b193178f35ebd80dc0a2521621146b9449fd16
docs: fixed MenuItem documentation to use the same formatting for all role options (#36112) Fixed MenuItem documentation Some of the items in the list of possible roles were formatted differently, which made it harder to read. Sorry if this was intended, but I found it easier to read with them all formatted the sa...
[ { "path": "docs/api/menu-item.md", "patch": "@@ -14,7 +14,7 @@ See [`Menu`](menu.md) for examples.\n * `menuItem` MenuItem\n * `browserWindow` [BrowserWindow](browser-window.md) | undefined - This will not be defined if no window is open.\n * `event` [KeyboardEvent](structures/keyboard-event.md)...
2022-10-24T18:51:50
golang/go
ee0d03fab6e38dc3f8d10032e7c30c68ac7ec066
1421b982dca738daf47fe11aec9b56050798d739
sync: don't keep func alive after OnceFunc panics This moves the f = nil assignment to the defer statement, so that in case the functions panics, the f func is not referenced anymore. Change-Id: I3e53b90a10f21741e26602270822c8a75679f163 GitHub-Last-Rev: bda01100c6d48d1b0ca3e1baefef4d592cca1fee GitHub-Pull-Request: go...
[ { "path": "src/sync/oncefunc.go", "patch": "@@ -21,6 +21,7 @@ func OnceFunc(f func()) func() {\n \treturn func() {\n \t\td.once.Do(func() {\n \t\t\tdefer func() {\n+\t\t\t\td.f = nil // Do not keep f alive after invoking it.\n \t\t\t\td.p = recover()\n \t\t\t\tif !d.valid {\n \t\t\t\t\t// Re-panic immediate...
2025-02-25T20:07:12
ollama/ollama
771d9280ec36ab72b8465aa405d71772e3f1721b
862bc0a3bf1612d69e4799e3b66fc77addb3bc16
cmd: ollama config fix droid model name configuration (#13856)
[ { "path": "cmd/config/droid.go", "patch": "@@ -7,14 +7,23 @@ import (\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"slices\"\n-\t\"strings\"\n )\n \n // Droid implements Runner and Editor for Droid integration\n type Droid struct{}\n \n-// droidModelEntry represents a custom model entry in Droid's settings.js...
2026-01-23T19:44:22
vercel/next.js
3e0c228f6aa1da7e30f60a343462ab618170e15b
d69496704a433acefb7784b2c5e0897ac75a1c21
[test] separate tracing error test from action test suite (#80324)
[ { "path": "test/e2e/app-dir/actions/app-action.test.ts", "patch": "@@ -10,7 +10,7 @@ import {\n import type { Request, Response } from 'playwright'\n import fs from 'fs-extra'\n import nodeFs from 'fs'\n-import path, { join } from 'path'\n+import { join } from 'path'\n import { outdent } from 'outdent'\n \n...
2025-06-09T21:12:06
facebook/react
b8e47d988eb3ba547c102c0b12c351250ed955e0
05fbd1aab036ecbd14469d6376024439bc931f68
Bugfix: useFormState queues actions in wrong order (#27570) I neglected to update the "last" pointer of the action queue. Since the queue is circular, rather than dropping the update, the effect was to add the update to the front of the queue instead of the back. I didn't notice earlier because in my demos/tests, t...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js", "patch": "@@ -90,7 +90,7 @@ describe('ReactDOMForm', () => {\n const thenable = record.value;\n record.status = 'resolved';\n record.value = text;\n- thenable.pings.forEach(t => t());\n+ thenable.pings.forEach(t =...
2023-10-23T21:52:15
huggingface/transformers
e168f86efb28d92fa4ebd7e137d1fba4bec60bc3
e6ed96c7e93a6408a151e3177793212b02b8bb53
Add backward compatibility for direct imports from legacy `image_processing_utils_fast` (#44897) fix direct imports from image_processing_utils_fast
[ { "path": "src/transformers/__init__.py", "patch": "@@ -119,6 +119,7 @@\n ],\n \"hf_argparser\": [\"HfArgumentParser\"],\n \"hyperparameter_search\": [],\n+ \"image_processing_utils_fast\": [],\n \"image_transforms\": [],\n \"integrations\": [\n \"is_clearml_available\",\n@@ -...
2026-03-20T19:47:10
golang/go
1421b982dca738daf47fe11aec9b56050798d739
76c70282538bf4cccd6f98b5b26df7f5a7f2cebd
runtime: document that cleanups can run concurrently with each other Fixes #71825. Change-Id: I25af19eb72d75f13cf661fc47ee5717782785326 Reviewed-on: https://go-review.googlesource.com/c/go/+/650696 Reviewed-by: Carlos Amedee <carlos@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -30,8 +30,10 @@ import (\n // unreachable at the same time, their cleanups all become eligible to run\n // and can run in any order. This is true even if the objects form a cycle.\n //\n-// A single goroutine runs all cleanup calls for a program, sequentiall...
2025-02-19T17:28:45
facebook/react
6db7f4209e6f32ebde298a0b7451710dd6aa3e19
90172d12e8f06936ade78ed916397c16a2bec4f8
Bugfix: useDeferredValue loop during popstate transition (#27559) During a popstate event, we attempt to render updates synchronously even if they are transitions, to preserve scroll position if possible. We do this by entangling the transition lane with the Sync lane. However, if rendering the transition spawns ...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -583,8 +583,29 @@ export function getCurrentEventPriority(): EventPriority {\n return getEventPriority(currentEvent.type);\n }\n \n+let currentPopstateTransitionEvent: Event | null = null;\n export function shouldAttem...
2023-10-21T16:11:25
huggingface/transformers
a269c990e8571d9b9f8adfc1add9472eec3f252d
d4f88c206295338b545a602ac2c2ab26cad82faf
Bump kernels version dependency to avoid crashes (#44887) * bump * fix * add max version --------- Co-authored-by: vasqu <antonprogamer@gmail.com>
[ { "path": "setup.py", "patch": "@@ -91,7 +91,7 @@\n \"jinja2>=3.1.0\",\n \"jmespath>=1.0.1\",\n \"kenlm\",\n- \"kernels>=0.10.2,<0.11\",\n+ \"kernels>=0.12.0,<0.13\",\n \"librosa\",\n \"mistral-common[image]>=1.10.0\",\n \"nltk<=3.8.1\",", "additions": 1, "deletions": 1...
2026-03-20T18:49:41
vercel/next.js
f607d0cf976d6cbe654dd3b7914113701d5a93f9
1d70e57826823a8355f44798b2985e62b4006ffa
[turbopack] Remove the final uses of `Value<..>` and delete the type (#80144) Remove the final uses of `Value<..>` and destroy it. ### Why? The `Value<>` type is confusing and error prone, lets destroy it! As discussed over slack, turbo_tasks::Value type always implements is_resolved as true and is_transient as fals...
[ { "path": "crates/next-api/src/pages.rs", "patch": "@@ -29,8 +29,8 @@ use serde::{Deserialize, Serialize};\n use tracing::Instrument;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n- Completion, FxIndexMap, NonLocalValue, ResolvedVc, TaskInput, Value, ValueToString, Vc,\n- fxindexmap, fxinde...
2025-06-09T00:36:10
golang/go
76c70282538bf4cccd6f98b5b26df7f5a7f2cebd
194696f1d1f6e5609f96d0fb0192595e7e0f5b90
runtime/cgo: avoid errors from -Wdeclaration-after-statement It's used by the SWIG CI build, at least, and it's an easy fix. Fixes #71961 Change-Id: Id21071a5aef216b35ecf0e9cd3e05d08972d92fe Reviewed-on: https://go-review.googlesource.com/c/go/+/652181 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Micha...
[ { "path": "src/runtime/cgo/cgo.go", "patch": "@@ -25,7 +25,8 @@ package cgo\n \n // Use -fno-stack-protector to avoid problems locating the\n // proper support functions. See issues #52919, #54313, #58385.\n-#cgo CFLAGS: -Wall -Werror -fno-stack-protector\n+// Use -Wdeclaration-after-statement because some ...
2025-02-26T05:35:32
facebook/react
b049c14bb37965940aeeaa622d484981a2cf25a3
f8cee28f1d7c8da8522974dd3e61b7fc0815c85d
Repro of hoisting bug Adds a test case reproducing an issue with hoisting. This seems like a case where hoisting was incorrectly applied as this example doesn't require it
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-hoisting-nested-block-statements.expect.md", "patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+function hoisting(cond) {\n+ if (cond) {\n+ const x = 1;\n+ foo(x);\n+ }\n+\n+ const x = 2;\n+ ...
2023-10-20T10:34:41
huggingface/transformers
d4f88c206295338b545a602ac2c2ab26cad82faf
e87125508b9dad4a52894b131a53d4e93f4507ae
[Model] Add SLANeXt Model Support (#43707) * add SLANeXt models * refine codes * refine codes * refine models * refine codes * refine codes * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * lets commit this first * img processor and tests * more fixup * fix in...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1314,6 +1314,8 @@\n title: SigLIP\n - local: model_doc/siglip2\n title: SigLIP2\n+ - local: model_doc/slanext\n+ title: SLANeXt\n - local: model_doc/smollm3\n title: SmolLM3\n - local: model_doc/smol...
2026-03-20T17:11:02
vercel/next.js
1d70e57826823a8355f44798b2985e62b4006ffa
a01169523a3abc6c192a377e2e7ddcffef459f17
[turbopack] Remove uses of `Value<..>` instead make the payloads impl Taskinput (#80142) Remove uses of `Value<..>` instead make the payloads impl Taskinput ### Why? The Value<> type is confusing and error prone, lets destroy it! As discussed over slack, turbo_tasks::Value type always implements is_resolved as true...
[ { "path": "turbopack/crates/turbopack-browser/src/ecmascript/evaluate/chunk.rs", "patch": "@@ -228,7 +228,7 @@ impl EcmascriptBrowserEvaluateChunk {\n .await?,\n );\n \n- Ok(AssetIdent::new(Value::new(ident)))\n+ Ok(AssetIdent::new(ident))\n }\n \n #[turbo_tasks...
2025-06-08T23:36:59
electron/electron
0158077bec9a136f0eb71f61a57fa56ee59674ec
7921fec7612c0565c4cc4076ae9e83568c39269a
test: disable flaky linux arm/arm64 crash test case (#36094) test: disable failing linux arm/arm64 crash test case
[ { "path": "spec/crash-spec.ts", "patch": "@@ -31,6 +31,22 @@ const runFixtureAndEnsureCleanExit = (args: string[]) => {\n });\n };\n \n+const shouldRunCase = (crashCase: string) => {\n+ switch (crashCase) {\n+ // TODO(jkleinsc) fix this flaky test on Windows 32-bit\n+ case 'quit-on-crashed-event': ...
2022-10-20T22:06:06
golang/go
194696f1d1f6e5609f96d0fb0192595e7e0f5b90
8b8bff7bb29210db868306cd07a03fb15e247b2f
reflect: let Value.Seq return the iteration value correct type Fixes #71905 Change-Id: I50a418f8552e071c6e5011af5b9accc7d41548d0 Reviewed-on: https://go-review.googlesource.com/c/go/+/651855 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceac...
[ { "path": "src/reflect/iter.go", "patch": "@@ -4,15 +4,24 @@\n \n package reflect\n \n-import \"iter\"\n+import (\n+\t\"iter\"\n+)\n \n func rangeNum[T int8 | int16 | int32 | int64 | int |\n \tuint8 | uint16 | uint32 | uint64 | uint |\n-\tuintptr, N int64 | uint64](v N) iter.Seq[Value] {\n+\tuintptr, N int6...
2025-02-23T03:06:17
huggingface/transformers
e87125508b9dad4a52894b131a53d4e93f4507ae
20a233bdc5c0fae8fa116184f105adf498d44ba2
Fix core dumped when `NemotronH` is torch compiled (#44854) * fix * fix * fix * Update src/transformers/models/nemotron_h/modular_nemotron_h.py Co-authored-by: Cyril Vallez <cyril.vallez@huggingface.co> * correct fix * much better fix * type hint --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github...
[ { "path": "src/transformers/models/nemotron_h/modeling_nemotron_h.py", "patch": "@@ -20,7 +20,6 @@\n # limitations under the License.\n \n \n-import contextlib\n import math\n from collections.abc import Callable\n from typing import Any\n@@ -222,6 +221,9 @@ def segment_sum(input_tensor):\n return tenso...
2026-03-20T14:29:13
vercel/next.js
1009c5061e608583ed365bbea5b2e91ca3a2b679
f05106dad54d5cd34eae81c072cd3cd05a15b1c9
[turbopack] Remove uses of `Value<..>` instead make the payloads impl Taskinput (#80141) Remove uses of `Value<..>` instead make the payloads impl Taskinput ### Why? The Value<> type is confusing and error prone, lets destroy it! As discussed over slack, turbo_tasks::Value type always implements is_resolved as true ...
[ { "path": "crates/next-core/src/next_font/google/mod.rs", "patch": "@@ -6,7 +6,7 @@ use indoc::formatdoc;\n use rustc_hash::FxHashMap;\n use serde::{Deserialize, Serialize};\n use turbo_rcstr::{RcStr, rcstr};\n-use turbo_tasks::{Completion, FxIndexMap, ResolvedVc, Value, Vc};\n+use turbo_tasks::{Completion,...
2025-06-08T16:47:26
facebook/react
f8cee28f1d7c8da8522974dd3e61b7fc0815c85d
84da8994bd55f4a908fe0ca8446d1bb4d09adee2
Retain minimal variable declarations in DCE Currently DCE can remove variable declarations that are unused, ie where all control-flow paths to usage of the variable are overwritten by a reassignment. We then have to reconstruct the original variable declaration at the appropriate block scope during LeaveSSA, which...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -3204,11 +3204,19 @@ function lowerAssignment(\n }\n }\n case \"ArrayPattern\": {\n- // TODO\n const lvalue = lvaluePath as NodePath<t.ArrayPattern>;\n const elements = lvalue.get(\"eleme...
2023-10-19T21:08:15
ollama/ollama
f52c21f457e0822b31195e258dbe89c5139ecebb
b5d0f72f1660857180b5644262fb576c25f0c0de
fix: handle Enter key pressed during model loading (#13839)
[ { "path": "cmd/interactive.go", "patch": "@@ -159,6 +159,7 @@ func generateInteractive(cmd *cobra.Command, opts runOptions) error {\n \t\t\tsb.WriteString(before)\n \t\t\tif !ok {\n \t\t\t\tfmt.Fprintln(&sb)\n+\t\t\t\tscanner.Prompt.UseAlt = true\n \t\t\t\tcontinue\n \t\t\t}\n ", "additions": 1, "de...
2026-01-23T02:32:02
golang/go
8b8bff7bb29210db868306cd07a03fb15e247b2f
4c75671871af56fa68076ee3741780e52726ec82
cmd/compile: don't pull constant offsets out of pointer arithmetic This could lead to manufacturing a pointer that points outside its original allocation. Bug was introduced in CL 629858. Fixes #71932 Change-Id: Ia86ab0b65ce5f80a8e0f4f4c81babd07c5904f8d Reviewed-on: https://go-review.googlesource.com/c/go/+/652078 ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules", "patch": "@@ -1149,10 +1149,12 @@\n (SUB a l:(MNEGW x y)) && v.Type.Size() <= 4 && l.Uses==1 && clobber(l) => (MADDW a x y)\n \n // madd/msub can't take constant arguments, so do a bit of reordering if a non-constant is available.\n-(ADD a p:(ADDcon...
2025-02-24T21:07:29
electron/electron
da0fd286b44846da0e8207691a3df081051d7b5c
44c40efecf3cf7b960964c8bbecc0d4de4a26a0e
feat: UtilityProcess API (#34980) * chore: initial scaffolding * chore: implement interface and docs * chore: address code style review * fix: cleanup of utility process on shutdown * chore: simplify NodeBindings::CreateEnvironment * chore: rename disableLibraryValidation => allowLoadingUnsignedLibrarie...
[ { "path": "BUILD.gn", "patch": "@@ -202,13 +202,23 @@ webpack_build(\"electron_isolated_renderer_bundle\") {\n out_file = \"$target_gen_dir/js2c/isolated_bundle.js\"\n }\n \n+webpack_build(\"electron_utility_bundle\") {\n+ deps = [ \":build_electron_definitions\" ]\n+\n+ inputs = auto_filenames.utility_...
2022-10-20T05:49:49
vercel/next.js
f05106dad54d5cd34eae81c072cd3cd05a15b1c9
4e2f3a4e5400c48192f99adb666c5384e928bd88
fix typo (#80282) <!-- 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 ### Improving Documentation - R...
[ { "path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx", "patch": "@@ -29,7 +29,7 @@ There are two types of server rendering, based on _when_ it happens:\n - **Static Rendering (or Prerendering)** happens at build time or during [revalidation](/docs/app/getting-started/caching-and-revalidat...
2025-06-07T23:28:44
ollama/ollama
31085d5e53811bedc53a9cb2afdea45554749d01
c42e9d244f03dca90709383576ab3237263d79ac
fix: use api.GenerateRequest for image generation test (#13793) Remove non-existent x/imagegen/api import and use the standard api.GenerateRequest/GenerateResponse with the Image field instead.
[ { "path": "integration/imagegen_test.go", "patch": "@@ -3,18 +3,14 @@\n package integration\n \n import (\n-\t\"bytes\"\n \t\"context\"\n \t\"encoding/base64\"\n-\t\"encoding/json\"\n \t\"fmt\"\n-\t\"net/http\"\n \t\"strings\"\n \t\"testing\"\n \t\"time\"\n \n \t\"github.com/ollama/ollama/api\"\n-\timagegen...
2026-01-20T11:23:31
facebook/react
2eeb9f9226af60149792f5c33e29a9c0001bba61
b67ddaa434d590f312fee6f9acee24accd064192
[Flight Reply] Update error message (#27549) This is in the reverse direction.
[ { "path": "packages/react-client/src/ReactFlightReplyClient.js", "patch": "@@ -304,22 +304,22 @@ export function processReply(\n );\n } else if (objectName(value) !== 'Object') {\n console.error(\n- 'Only plain objects can be passed to Client Components from Server Com...
2023-10-19T17:40:24
huggingface/transformers
20a233bdc5c0fae8fa116184f105adf498d44ba2
81128509a539bd6146c7b1baccecf090d71b5350
Fix several based models' pipeline parallel support (#44699) * Fix Qwen2-VL based models' pipeline parallel support Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> * Fix other models too Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> * Fix docs modular Signed-off-b...
[ { "path": "src/transformers/models/afmoe/modeling_afmoe.py", "patch": "@@ -423,7 +423,6 @@ def __init__(self, config: AfmoeConfig, layer_idx: int):\n self.layer_idx = layer_idx\n \n self.self_attn = AfmoeAttention(config=config, layer_idx=layer_idx)\n- self.attention_type = config.lay...
2026-03-20T13:43:07
golang/go
011da163f475b38ad70c9c652df6dc8dc2ba5168
1b1c6b838e678cbc9d93a78324fb5de873cd4487
cmd/compile/internal/test: fix noopt builder The function argument passed to hash function escaped to heap when optimization is disabled, causing the builder failed. To fix this, skip the test on noopt builder. Updates #71943 Fixes #71965 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-noopt Change-Id: I3a9ec...
[ { "path": "src/cmd/compile/internal/test/issue71943_test.go", "patch": "@@ -6,6 +6,7 @@ package test\n \n import (\n \t\"crypto/sha256\"\n+\t\"internal/testenv\"\n \t\"runtime\"\n \t\"testing\"\n )\n@@ -15,6 +16,7 @@ func Verify(token, salt string) [32]byte {\n }\n \n func TestIssue71943(t *testing.T) {\n+\...
2025-02-26T14:04:04
electron/electron
44c40efecf3cf7b960964c8bbecc0d4de4a26a0e
8bd66026a89c817eef9dcb8f3aa2654d9f0c1636
refactor: migrate from asar to @electron/asar (#36070) * refactor: migrate from asar to @electron/asar * fix: update asar require calls
[ { "path": "package.json", "patch": "@@ -5,6 +5,7 @@\n \"description\": \"Build cross platform desktop apps with JavaScript, HTML, and CSS\",\n \"devDependencies\": {\n \"@azure/storage-blob\": \"^12.9.0\",\n+ \"@electron/asar\": \"^3.2.1\",\n \"@electron/docs-parser\": \"^0.12.4\",\n \"@e...
2022-10-19T20:39:31
vercel/next.js
9e9d13fb4d43fa0cb7bc4f51180678fc5099950c
aa4d90c754ece54f831a7402590819f6e779c1fe
Turbopack: really fix export collection (#80240) - For `export default class Foo`, we don't insert a `var __TURBOPACK__default__export__ = Foo` variable because it should be a live binding. So put the correct name/syntax context into `ImportMap.exports` - The `__TURBOPACK__default__export__` generated by module fragm...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs", "patch": "@@ -643,13 +643,30 @@ impl Visit for Analyzer<'_> {\n \n self.data.exports.insert(\n rcstr!(\"default\"),\n- (\n- // `EsmModuleItem::code_generation` inserts this variable.\n- ...
2025-06-07T12:08:52
facebook/react
9617d39eca1fbac58afe73a23580d781ea20211d
601e5c38505ebc0ee099d8666b2f7a8b03159ac4
[Fizz] Add proper assertion for stream fix (#27543) In https://github.com/facebook/react/pull/27541 I added tests to assert that the write after close bug was fixed. However the Node implementation has an abort behavior preventing reproduction of the original issue and the Browser build does not use AsyncLocalStora...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServerBrowser-test.js", "patch": "@@ -15,15 +15,13 @@ global.ReadableStream =\n global.TextEncoder = require('util').TextEncoder;\n \n let React;\n-let ReactDOM;\n let ReactDOMFizzServer;\n let Suspense;\n \n describe('ReactDOMFizzServerBrowser', () =>...
2023-10-18T19:01:09
huggingface/transformers
81128509a539bd6146c7b1baccecf090d71b5350
82db888e29753c891a246933b60518191d83d835
fix(testing): Fix PaliGemma 2 and PaddleOCR-VL test failures on main (#44765) * fix: Fix PaliGemma 2 and PaddleOCR-VL test failures on main * nit: Fix ci/circleci: check_code_quality
[ { "path": "tests/models/paddleocr_vl/test_modeling_paddleocr_vl.py", "patch": "@@ -184,6 +184,24 @@ def setUp(self):\n def test_config(self):\n self.config_tester.run_common_tests()\n \n+ @unittest.skip(\n+ reason=\"embed_tokens is ~80% of test model size, exceeding the 70% GPU budget ...
2026-03-20T13:33:51
ollama/ollama
c42e9d244f03dca90709383576ab3237263d79ac
e98b5e8b4e1075987679b71c8d205be417c147f9
test: add image gen test case (#13698) * test: fix type regression in tools test. * test: add image gen integration test
[ { "path": "integration/imagegen_test.go", "patch": "@@ -0,0 +1,174 @@\n+//go:build integration\n+\n+package integration\n+\n+import (\n+\t\"bytes\"\n+\t\"context\"\n+\t\"encoding/base64\"\n+\t\"encoding/json\"\n+\t\"fmt\"\n+\t\"net/http\"\n+\t\"strings\"\n+\t\"testing\"\n+\t\"time\"\n+\n+\t\"github.com/olla...
2026-01-20T00:01:31
golang/go
969a0da362ce846360782b34bfad7a18c2f64628
767c0fb9fd1e7d7210276be45b0abb5d14d34484
runtime: route calls to msan_memmove through cgo This avoids problems when the C linker doesn't want to see the Go relocation. Fixes #71954 Change-Id: I7cf884c4059d596cad6074ade02020d5a724f20e Reviewed-on: https://go-review.googlesource.com/c/go/+/652180 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/runtime/msan.go", "patch": "@@ -64,4 +64,4 @@ func msanmove(dst, src unsafe.Pointer, sz uintptr)\n //go:cgo_import_static __msan_write_go\n //go:cgo_import_static __msan_malloc_go\n //go:cgo_import_static __msan_free_go\n-//go:cgo_import_static __msan_memmove\n+//go:cgo_import_static __msan_m...
2025-02-25T23:40:39
electron/electron
dde513b0d38e3e90ff03761b0b912f60a1fad94e
a8d89b3d5267030ea52de0b47dd49408aa2f43c0
fix: printToPDF default margins (#36060) printToPDF default margins The document printToPDF has a 1cm margin and this default value has been added in the code.
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -177,10 +177,10 @@ WebContents.prototype.printToPDF = async function (options) {\n scale: 1.0,\n paperWidth: 8.5,\n paperHeight: 11.0,\n- marginTop: 0.0,\n- marginBottom: 0.0,\n- marginLeft: 0.0,\n- marginRight: 0.0,\n+ mar...
2022-10-19T08:16:28
huggingface/transformers
82db888e29753c891a246933b60518191d83d835
7cd9b985e0698d4f625a18be0125231b6b930390
Fix dtype guessing from state dict (#44883) * fix * style * preshot fp4 as well
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -259,7 +259,8 @@ def get_state_dict_dtype(state_dict):\n Returns the first found floating dtype in `state_dict` if there is one, otherwise returns the first dtype.\n \"\"\"\n for t in state_dict.values():\n- if t.is_floating_poi...
2026-03-20T13:12:31
facebook/react
601e5c38505ebc0ee099d8666b2f7a8b03159ac4
20c91b65341fd404185fc778c6844ac29ab815d5
[Fizz][Float] Do not write after closing the stream (#27541) Float methods can hang on to a reference to a Request after the request is closed due to AsyncLocalStorage. If a Float method is called at this point we do not want to attempt to flush anything. This change updates the closing logic to also call `stopFlow...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -3650,6 +3650,46 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ // https://github.com/facebook/react/issues/27540\n+ // This test is not actually asserting much because there is possibly a bug in the cl...
2023-10-18T17:05:18
vercel/next.js
aa4d90c754ece54f831a7402590819f6e779c1fe
70cbcf1aa0866b284a14ebf6e48e23483dc60ae9
Revert "[test] fix flaky test of basepath navigation" (#80259)
[ { "path": "test/e2e/app-dir/app-basepath/index.test.ts", "patch": "@@ -12,12 +12,7 @@ describe('app dir - basepath', () => {\n \n it('should successfully hard navigate from pages -> app', async () => {\n const browser = await next.browser('/base/pages-path')\n- await browser.waitForElementByCss('#t...
2025-06-07T06:49:23
ollama/ollama
e98b5e8b4e1075987679b71c8d205be417c147f9
68e00c7c36714814a0a3642caca539f6794c0d35
`/api/show`: default to empty model_info (#13785) For `/api/show`, a fully missing `model_info` field trips up various integrators (including a recent Android Studio integration). The primary source of missing info tends to come from models with a remote that are also missing other data. It seems better to me to retu...
[ { "path": "api/types.go", "patch": "@@ -749,7 +749,7 @@ type ShowResponse struct {\n \tMessages []Message `json:\"messages,omitempty\"`\n \tRemoteModel string `json:\"remote_model,omitempty\"`\n \tRemoteHost string `json:\"remote_host,omitempty\"`\n-\tModelInfo ...
2026-01-19T23:26:17
golang/go
767c0fb9fd1e7d7210276be45b0abb5d14d34484
b38b0c0088039b03117b87eee61583ac4153f2b7
go/scanner: report specific error for UCS-2 encoded files Windows text files may be encoded as UCS-2 (i.e. 2-byte UTF-16). This CL causes the scanner to emit a better error when it reads a file in this encoding. + test Fixes #71950 Change-Id: Ia65bbf9a60e36984b0f3e4865591aa6978d2bde2 Reviewed-on: https://go-review....
[ { "path": "src/go/scanner/scanner.go", "patch": "@@ -71,7 +71,17 @@ func (s *Scanner) next() {\n \t\t\t// not ASCII\n \t\t\tr, w = utf8.DecodeRune(s.src[s.rdOffset:])\n \t\t\tif r == utf8.RuneError && w == 1 {\n-\t\t\t\ts.error(s.offset, \"illegal UTF-8 encoding\")\n+\t\t\t\tin := s.src[s.rdOffset:]\n+\t\t\...
2025-02-25T20:25:56
electron/electron
a8d89b3d5267030ea52de0b47dd49408aa2f43c0
b13606e55d1b98ad1a3c3d6b24ba207ce872cf36
fix: headless job tracking in printToPDF (#36046)
[ { "path": "shell/browser/printing/print_view_manager_electron.cc", "patch": "@@ -126,6 +126,7 @@ void PrintViewManagerElectron::PrintToPdf(\n \n printing_rfh_ = rfh;\n print_pages_params->pages = absl::get<printing::PageRanges>(parsed_ranges);\n+ headless_jobs_.emplace_back(print_pages_params->params->...
2022-10-18T13:46:19
facebook/react
20c91b65341fd404185fc778c6844ac29ab815d5
e3748a0bde80dd1f097fd8000702aba9fca454ef
React DevTools 4.28.4 -> 4.28.5 (#27538) Changes: * fix[devtools/useMemoCache]: add stub for useMemoCache in ReactDebugHook ([hoxyq](https://github.com/hoxyq) in [#27472](https://github.com/facebook/react/pull/27472)) * useDeferredValue should skip initialValue if it suspends ([acdlite](https://github.com/acdlite...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.28.4\",\n+ \"version\": \"4.28.5\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j...
2023-10-18T13:08:23
huggingface/transformers
b7164eca8675e5223cf73fb430a6aaf6ceafc9cc
1229e90d46532f334f3c679006bee34ed502c123
Fix VL model rope_deltas batch size mismatch in online RL training (#44873) * Fix Qwen3.5 rope_deltas persistence causing crash in online RL training * Extend * Extend
[ { "path": "src/transformers/models/ernie4_5_vl_moe/modeling_ernie4_5_vl_moe.py", "patch": "@@ -1383,8 +1383,11 @@ def compute_3d_position_ids(\n mm_token_type_ids=mm_token_type_ids,\n )\n self.rope_deltas = rope_deltas\n- # Use pre-calculated rope-deltas to inf...
2026-03-20T11:51:22
ollama/ollama
68e00c7c36714814a0a3642caca539f6794c0d35
4f138a1749ba684b8ad0f27ec77d299ff2071337
fix: prevent image generation models from loading during deletion (#13781) Move the unload check (empty prompt + KeepAlive=0) before the image generation model dispatch in GenerateHandler. This prevents models like flux from being loaded into memory just to be immediately unloaded when running `ollama rm`. Also fix a...
[ { "path": "cmd/cmd.go", "patch": "@@ -899,11 +899,11 @@ func DeleteHandler(cmd *cobra.Command, args []string) error {\n \tfor _, arg := range args {\n \t\t// Unload the model if it's running before deletion\n \t\tif err := loadOrUnloadModel(cmd, &runOptions{\n-\t\t\tModel: args[0],\n+\t\t\tModel: ar...
2026-01-19T20:48:34
golang/go
b38b0c0088039b03117b87eee61583ac4153f2b7
8203265d5eef37bf41d7d2df126f77ebd5abc999
cmd/compile: document -embedcfg flag Fixes #71942 Change-Id: Ie7e795506a9c8781f0e0963012233a7ed1093855 Reviewed-on: https://go-review.googlesource.com/c/go/+/652475 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Mi...
[ { "path": "src/cmd/compile/doc.go", "patch": "@@ -60,6 +60,11 @@ Flags:\n \t\tAllow references to Go symbols in shared libraries (experimental).\n \t-e\n \t\tRemove the limit on the number of errors reported (default limit is 10).\n+\t-embedcfg file\n+\t\tRead go:embed configuration from file.\n+\t\tThis is...
2025-02-25T18:51:29
vercel/next.js
b8b85c6739848284ea6d7472b58fd6f1685d4d3f
85c718fd65ef6f3947257e3095f4fb0fbe4ed1a0
[turbopack] Replace uses of `Value<ContentSourceData>` with just `ContentSourceData` (#80140) Remove Value<ContentSourceData> instead just use ContentSourceData ### Why? The Value<> type is confusing and error prone, lets destroy it! As discussed over slack, turbo_tasks::Value type always implements is_resolved as t...
[ { "path": "turbopack/crates/turbo-tasks/src/task/task_input.rs", "patch": "@@ -1,4 +1,7 @@\n-use std::{any::Any, fmt::Debug, future::Future, hash::Hash, sync::Arc, time::Duration};\n+use std::{\n+ any::Any, collections::BTreeMap, fmt::Debug, future::Future, hash::Hash, sync::Arc,\n+ time::Duration,\n+...
2025-06-06T22:20:53
huggingface/transformers
1229e90d46532f334f3c679006bee34ed502c123
cef283004847f44c2c07e48670ba524b7cb2ac24
Fix `layer_types` type hint for `AFMoE` and `Llama4` (#44874) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
[ { "path": "src/transformers/models/afmoe/configuration_afmoe.py", "patch": "@@ -87,7 +87,7 @@ class AfmoeConfig(PreTrainedConfig):\n output_router_logits: bool = False\n global_attn_every_n_layers: int | None = 4\n sliding_window: int | None = 1024\n- layer_types: list | None = None\n+ lay...
2026-03-20T11:50:31
facebook/react
a4195750779dbd9a13e1615fbbd493bf2c5768ca
75c1bd7ee7e4a87a4dd0f560e157c57957ef823b
fix[devtools/useMemoCache]: add stub for useMemoCache in ReactDebugHook (#27472) Currently, we have this error in our logs of the internal version of React DevTools: ``` TypeError: Cannot read properties of undefined (reading 'memoCache') at Proxy.useMemoCache (chrome-extension://dnjnjgbfilfphmojnmhliehogmojhc...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -48,19 +48,9 @@ type Dispatch<A> = A => void;\n \n let primitiveStackCache: null | Map<string, Array<any>> = null;\n \n-type MemoCache = {\n- data: Array<Array<any>>,\n- index: number,\n-};\n-\n-type FunctionComponentUpdateQueue =...
2023-10-17T17:39:10
vercel/next.js
9155c8ac3cf6160e6140033d0cefa07fbc23abdc
660df3c9256bae23653963b6b69afc6621720277
fix: invalid middleware configs should fail the build (#80221) In #68638 we intended to fail the build if an invalid matcher configuration was provided by importing a shared constant from the static page analysis fn. This worked fine for segment validations for pages/route handlers. However, the build would incorrectl...
[ { "path": "packages/next/src/build/analysis/get-page-static-info.ts", "patch": "@@ -79,6 +79,7 @@ export interface AppPageStaticInfo {\n runtime: AppSegmentConfig['runtime'] | undefined\n preferredRegion: AppSegmentConfig['preferredRegion'] | undefined\n maxDuration: number | undefined\n+ hadUnsuppor...
2025-06-06T19:08:07
electron/electron
23d4a252c69f68c576933d745a95b70bad2946df
f2c341b655406434b5a44bc8b1e2418d664c319b
chore: Move draggable regions implementation from NativeBrowserView into InspectableWebContentsView (#35007) * hore: Move draggable regions implementation from NativeBrowserView into InspectableWebContentsView The draggable regions implementation is related to WebView, so InspectableWebContentsView is a more appro...
[ { "path": "filenames.gni", "patch": "@@ -494,6 +494,7 @@ filenames = {\n \"shell/browser/ui/inspectable_web_contents.cc\",\n \"shell/browser/ui/inspectable_web_contents.h\",\n \"shell/browser/ui/inspectable_web_contents_delegate.h\",\n+ \"shell/browser/ui/inspectable_web_contents_view.cc\",\n...
2022-10-17T15:10:07
golang/go
8203265d5eef37bf41d7d2df126f77ebd5abc999
beb314c0dbcbe03b576123e99e1331348f858ecc
cmd/compile, runtime: optimize concatbytes CL 527935 optimized []byte(string1 + string2) to use runtime.concatbytes to prevent concatenating of strings before converting to slices. However, the optimization is implemented without allowing temporary buffer for slice on stack, causing un-necessary allocations. To fix t...
[ { "path": "src/cmd/compile/internal/test/issue71943_test.go", "patch": "@@ -0,0 +1,23 @@\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+package test\n+\n+import (\n+\t\"crypto/sha256\"\...
2025-02-25T16:59:14
ollama/ollama
3d01f2aa341dde88ccc8318528c4192f81407975
634c416645790c84dfc80849b05f84b3853b127f
parsers: refactor Nemotron parser to reuse Qwen3Coder for tool calls (#13764) Simplify Nemotron3NanoParser by delegating tool call parsing to Qwen3CoderParser instead of duplicating the parsing logic. The Nemotron parser now only handles the thinking state machine and transitions to Qwen3CoderParser for content and to...
[ { "path": "model/parsers/nemotron3nano.go", "patch": "@@ -1,7 +1,6 @@\n package parsers\n \n import (\n-\t\"regexp\"\n \t\"strings\"\n \t\"unicode\"\n \n@@ -14,243 +13,114 @@ const (\n \tNemotron3NanoCollectingThinking Nemotron3NanoParserState = iota\n \tNemotron3NanoSkipWhitespaceAfterThinking\n \tNemotron...
2026-01-18T02:28:52
huggingface/transformers
cef283004847f44c2c07e48670ba524b7cb2ac24
f5e573080ae0838799c1f9a0ba28be8431120b56
Align lfm2 cache to other mamba caches (#44866) * align to other mambas * oupsi * fix
[ { "path": "src/transformers/models/lfm2/modeling_lfm2.py", "patch": "@@ -179,8 +179,10 @@ def __init__(\n self.max_batch_size = max_batch_size\n self.layer_types = config.layer_types\n self.first_attention_layer = self.layer_types.index(\"full_attention\")\n+ self.last_conv_la...
2026-03-20T10:50:26
facebook/react
9abf6fa31cd7ff4c6e54de75950620e203c59ebf
67cc9ba8789335b9da0838a446137c1be62adbcd
feat[react-devtools-extensions/logging]: initialize session id on the client for logging (#27517) This code is executed once React DevTools panels are mounted, basically when user opens browser's DevTools. Based on this fact, session in this case is defined by browser's DevTools session, while they are open. A sess...
[ { "path": "packages/react-devtools-shared/src/registerDevToolsEventLogger.js", "patch": "@@ -12,7 +12,8 @@ import type {LoggerEvent} from 'react-devtools-shared/src/Logger';\n import {registerEventLogger} from 'react-devtools-shared/src/Logger';\n import {enableLogger} from 'react-devtools-feature-flags';\n...
2023-10-17T14:23:53
vercel/next.js
660df3c9256bae23653963b6b69afc6621720277
bdd2afe733cd8140765cf250002c29aa1eb3e358
[turbopack] Replace uses of `Value<ExecutionEnvironment>` with just `ExecutionEnvironment` (#80135) Remove Value<ExecutionEnvironment> instead just use ExecutionEnvironment Why? The Value<> type is confusing and error prone, lets destroy it! As discussed over slack, turbo_tasks::Value type always implements is_resol...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -2,7 +2,7 @@ use std::iter::once;\n \n use anyhow::Result;\n use turbo_rcstr::{RcStr, rcstr};\n-use turbo_tasks::{FxIndexMap, OptionVcExt, ResolvedVc, TaskInput, Value, Vc};\n+use turbo_tasks::{FxIndexMap, OptionVcExt, ResolvedVc, TaskInp...
2025-06-06T16:07:35
golang/go
61641c11455af9571e6e01449c7ea774b0069594
eed2208f152d1172993a3193374625683e244100
cmd/link: put .got section in __DATA_CONST segment On Darwin, the .got section can be placed in a read-only segment. Only the dynamic linker should modify it at start-up time. Other read-only sections, like .typelink and .itablink, are already placed in the __DATA_CONST segment. Do the same for the .got section. Fix...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1920,7 +1920,6 @@ func (state *dodataState) allocateDataSections(ctxt *Link) {\n \t\tsym.SFIPSINFO,\n \t\tsym.SELFSECT,\n \t\tsym.SMACHO,\n-\t\tsym.SMACHOGOT,\n \t\tsym.SWINDOWS,\n \t}\n \tfor _, symn := range writable {\n@@ -1932,6 +1931,9 @@ func...
2025-01-24T11:23:42
ollama/ollama
634c416645790c84dfc80849b05f84b3853b127f
57de86cc610bdfd11831d80e464c05bb240afa64
Add experimental image generation fields to /api/generate (#13753) Request fields (experimental): - width: image width (max 4096) - height: image height (max 4096) - steps: denoising steps - seed: random seed Response fields (experimental): - images: base64-encoded generated images - completed: current step progress ...
[ { "path": "api/types.go", "patch": "@@ -127,6 +127,20 @@ type GenerateRequest struct {\n \t// each with an associated log probability. Only applies when Logprobs is true.\n \t// Valid values are 0-20. Default is 0 (only return the selected token's logprob).\n \tTopLogprobs int `json:\"top_logprobs,omitempty...
2026-01-18T02:27:41
electron/electron
f2c341b655406434b5a44bc8b1e2418d664c319b
bcafe8f65462202715af92d9c43be182ba3999bb
chore: bump chromium to 108.0.5355.0 (main) (#35900) * chore: bump chromium in DEPS to 108.0.5339.0 * chore: bump chromium in DEPS to 108.0.5341.0 * chore: sync patch to unrelated upstream code shear patches/chromium/network_service_allow_remote_certificate_verification_logic.patch Xref: https://chromium-r...
[ { "path": "BUILD.gn", "patch": "@@ -490,13 +490,6 @@ source_set(\"electron_lib\") {\n ]\n }\n \n- if (is_linux) {\n- deps += [\n- \"//components/crash/content/browser\",\n- \"//ui/gtk:gtk_config\",\n- ]\n- }\n-\n if (is_mac) {\n deps += [\n \"//components/remote_cocoa/app...
2022-10-17T14:22:24
huggingface/transformers
f5e573080ae0838799c1f9a0ba28be8431120b56
8dc7a52d766efe76c121c0654a5d24d633bffe9e
Fix nemotron config docstrings (#44878) nemotron-config
[ { "path": "src/transformers/models/nemotron_h/configuration_nemotron_h.py", "patch": "@@ -39,14 +39,14 @@ class NemotronHConfig(PreTrainedConfig):\n Number of groups for expert routing.\n mamba_hidden_act (`str`, *optional*, defaults to `\"silu\"`):\n The non-linear activation function i...
2026-03-20T10:02:26
facebook/react
84da8994bd55f4a908fe0ca8446d1bb4d09adee2
4fc392e6280fcf0459cc950ee750e109f3701766
Test cases for reactive (control) dependencies Adds test cases for all the cases of control dependencies that I can think of. We don't currently handle control dependencies correctly in any of these cases. There's also another test case which demonstrates why reactive dependency inference needs to be fixpoint, ev...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug.reactive-control-dependency-do-while-test.expect.md", "patch": "@@ -0,0 +1,64 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ let x;\n+ let i = 0;\n+ do {\n+ if (i > 10) {\n+ x = 10;\n+...
2023-10-17T08:48:23
vercel/next.js
352b80d70225180229a19037910714718e544d5b
6794df96dfcec256748d9a477dfb751d0aba1f5d
[turbopack] Replace uses of `Value<Pattern>` with just `Pattern` (#80134) Replace uses of `Value<Pattern>` in the resolve crate with `Pattern` This required a manual implementation of `TaskInput` which ended up being trivial since there are no captured `Vcs`. However, the `derive` macro failed because it is a recurs...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -39,7 +39,7 @@ use serde::{Deserialize, Serialize};\n use tracing::Instrument;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n- Completion, FxIndexSet, NonLocalValue, ResolvedVc, TryJoinIterExt, Value, ValueToString, Vc,\n+ Completion, FxI...
2025-06-06T14:04:11
golang/go
cc16fb52e6f1eafaee468f8563525ec391e016f5
1e92ff11f5fa9d495c05414591516402a202539c
cmd/compile: ensure we don't reuse temporary register Before this CL, we could use the same register for both a temporary register and for moving a value in the output register out of the way. Fixes #71857 Change-Id: Iefbfd9d4139136174570d8aadf8a0fb391791ea9 Reviewed-on: https://go-review.googlesource.com/c/go/+/651...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -1677,6 +1677,7 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t}\n \t\t\t\ttmpReg = s.allocReg(m, &tmpVal)\n \t\t\t\ts.nospill |= regMask(1) << tmpReg\n+\t\t\t\ts.tmpused |= regMask(1) << tmpReg\n \t\t\t}\n \n \t\t\t// Now that all...
2025-02-23T18:34:00
huggingface/transformers
8dc7a52d766efe76c121c0654a5d24d633bffe9e
2cd52c267ce4d0212eaa40c0ec7192a11654336f
Fix nemotron_h modular (#44876) fix
[ { "path": "src/transformers/models/nemotron_h/modeling_nemotron_h.py", "patch": "@@ -1083,7 +1083,6 @@ class NemotronHPreTrainedModel(PreTrainedModel):\n _keep_in_fp32_modules_strict = [\n \"e_score_correction_bias\",\n ]\n- _tied_weights_keys = {}\n _keys_to_ignore_on_load_unexpected...
2026-03-20T10:00:32
electron/electron
d8d5d4a4a18796d2ec78e2ffa75d6f5908372c26
295c5331eeb2cce40419b6a54875fba88d61422d
docs: update VS Code debugger types to remove "pwa-" prefix (#36042)
[ { "path": "docs/tutorial/tutorial-2-first-app.md", "patch": "@@ -369,12 +369,12 @@ run. Create a launch.json configuration in a new `.vscode` folder in your projec\n \"name\": \"Renderer\",\n \"port\": 9222,\n \"request\": \"attach\",\n- \"type\": \"pwa-chrome\",\n+ \"type\": \"c...
2022-10-17T11:35:36
ollama/ollama
12719b6e87e738f76d0456dd9a9d7571be58cb68
a077d996e39eaee6ed26cb219a2e37f003d4b01d
MLX - dynamic loading of mlx-c (#13735) * MLX - dynamic loading of mlx-c Create a wrapper layer to indirect the dependency on mlx-c so the main ollama binary does not have a load-time dependency on mlx-c, mlx, and on linux, cuda. Lazy load the library via dlopen so we can adjust the path to ensure the dependencies a...
[ { "path": "Dockerfile", "patch": "@@ -32,7 +32,7 @@ ENV PATH=/${VULKANVERSION}/x86_64/bin:$PATH\n FROM --platform=linux/arm64 almalinux:8 AS base-arm64\n # install epel-release for ccache\n RUN yum install -y yum-utils epel-release \\\n- && dnf install -y clang ccache \\\n+ && dnf install -y clang cca...
2026-01-17T00:34:22
facebook/react
640994f49b5cfb09eb65632b155570ba1c90878f
f5d1ff0a3c84b004bc8f7dd04d9e490b5b85b160
[playground] Only log error to console when clicked
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -16,7 +16,7 @@ import MonacoEditor, { DiffEditor } from \"@monaco-editor/react\";\n import { type CompilerError } from \"babel-plugin-react-forget\";\n import prettier from \"prettier\";\n import prettierParserBabel from \"prett...
2023-10-16T14:54:33
vercel/next.js
b89463ac2ff9738515bda8e66a441f35eb095d5a
c2621a14eff1044f3840409dfdef39cf58dea79e
Prerender with streaming metadata during revalidation (#80245) During the export phase of `next build` we're hard-coding `serveStreamingMetadata` to `true`, so we need to do the same during revalidation. Otherwise we're checking the user agent to decide if we should serve streaming metadata. This fixes a hydration e...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -233,16 +233,6 @@ export async function handler(\n const botType = getBotType(userAgent)\n const isHtmlBot = isHtmlBotRequest(req)\n const shouldWaitOnAllReady = isHtmlBot && isRoutePPREnabled\n- let serveStreamingMetadata = shou...
2025-06-06T13:30:52
golang/go
973a9eb8bf883b3856d94624138ecfe30cac3ea0
434de2f8e9d3837711e0f853a2873cbb83325019
net: properly wrap context cancellation errors and return DNSErrors consistently Fixes #71939 Change-Id: Id7cd720fcca2812ffca2b1b20fe923914422d994 GitHub-Last-Rev: 4671f338c91b5826c669fbd113c176e22f5020e5 GitHub-Pull-Request: golang/go#71941 Reviewed-on: https://go-review.googlesource.com/c/go/+/652275 Commit-Queue: ...
[ { "path": "src/net/cgo_unix.go", "patch": "@@ -47,11 +47,7 @@ func (eai addrinfoErrno) isAddrinfoErrno() {}\n func doBlockingWithCtx[T any](ctx context.Context, lookupName string, blocking func() (T, error)) (T, error) {\n \tif err := acquireThread(ctx); err != nil {\n \t\tvar zero T\n-\t\treturn zero, &DNS...
2025-02-25T08:23:26
electron/electron
295c5331eeb2cce40419b6a54875fba88d61422d
76880be6d2cc466a44cf437bf34bf32f94a9f6ad
fix: override app's desktop name and v8 flags in default-app (#35997)
[ { "path": "default_app/main.ts", "patch": "@@ -83,7 +83,7 @@ function loadApplicationPackage (packagePath: string) {\n });\n \n try {\n- // Override app name and version.\n+ // Override app's package.json data.\n packagePath = path.resolve(packagePath);\n const packageJsonPath = path.join(...
2022-10-17T08:34:24
huggingface/transformers
aa1c36f1a9f454e69c4eac83071ced235942c7ed
b96f8a98965a744ef5137dd25efd2e280cddcc25
[Model] Add PP-Chart2Table Model Support (#43767) * init * fix doc * update * update * update * update * update * update * update * update * refactor image_processor_fast * update * update * update * update * update * update * update * update * update * update * update * update * update * updat...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1284,6 +1284,8 @@\n title: PP-OCRv5_server_det\n - local: model_doc/pp_ocrv5_server_rec\n title: PP-OCRv5_server_rec\n+ - local: model_doc/pp_chart2table\n+ title: PPChart2Table\n - local: model_doc/pp_lcnet\n ...
2026-03-19T19:00:37
facebook/react
67cc9ba8789335b9da0838a446137c1be62adbcd
18a9dd1c60fdb711982f32ce5d91acfe8f158fe1
Fix: error messages (#27523) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please make sure the foll...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMAttribute-test.js", "patch": "@@ -106,7 +106,7 @@ describe('ReactDOM unknown attribute', () => {\n expect(test).toThrowError(new TypeError('prod message')),\n ).toErrorDev(\n 'Warning: The provided `unknown` attribute is an unsupporte...
2023-10-16T14:05:42
ollama/ollama
a077d996e39eaee6ed26cb219a2e37f003d4b01d
c23d5095de19460d1390b0df12d141bad1a247f9
Fix `create` and `show` commands for experimental models (#13741) * x: make `ollama create --experimental` import from safetensors This change allows pulling in safetensors models into the new experimental model format, and also fixes the `ollama show` command to be able to correctly display the model information. *...
[ { "path": "cmd/cmd.go", "patch": "@@ -46,8 +46,9 @@ import (\n \t\"github.com/ollama/ollama/types/syncmap\"\n \t\"github.com/ollama/ollama/version\"\n \txcmd \"github.com/ollama/ollama/x/cmd\"\n+\t\"github.com/ollama/ollama/x/create\"\n+\txcreateclient \"github.com/ollama/ollama/x/create/client\"\n \t\"gith...
2026-01-16T22:31:55
vercel/next.js
4272eb0aedc9ce2e6b744bf3e682332ca3824a26
ae96d7bee6811a0bc1aa074f278a506fa6b1a4fd
Turbopack: fix export collection (#80203) This was slightly broken, as I noticed while debugging scope hoisting
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs", "patch": "@@ -3,7 +3,7 @@ use std::{collections::BTreeMap, fmt::Display};\n use once_cell::sync::Lazy;\n use rustc_hash::{FxHashMap, FxHashSet};\n use swc_core::{\n- common::{BytePos, Span, Spanned, comments::Comments, source_map:...
2025-06-06T07:53:25
electron/electron
dc5d27a73bd3f58d992f793d127122d3eef8e34c
ce138fe96954b23c76583b5c1af3abbff0b2f661
docs: fix erroneous removal warning for decrementCapturerCount (#36016)
[ { "path": "docs/breaking-changes.md", "patch": "@@ -103,7 +103,7 @@ w.capturePage().then(image => {\n })\n ```\n \n-### Removed: `webContents.decrementCapturerCount(stayHidden, stayAwake)`\n+### Deprecated: `webContents.decrementCapturerCount(stayHidden, stayAwake)`\n \n `webContents.decrementCapturerCount(...
2022-10-13T15:40:25
golang/go
434de2f8e9d3837711e0f853a2873cbb83325019
bdef1778311c19c997d4fb14a4374bd712014d13
spec: remove notion of core types This CL removes the notion of core types from the spec. Instead of referring to core types, each section that did so before is reverted to approx. the pre-generics (1.17) prose, and additional paragraphs cover the type parameter cases as needed. The hope is that this makes it easier...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.25 (Feb 3, 2025)\",\n+\t\"Subtitle\": \"Language version go1.25 (Feb 25, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -1856,110 +1856,1...
2025-01-30T23:11:19
huggingface/transformers
b96f8a98965a744ef5137dd25efd2e280cddcc25
e94695e574f969ba5eeb8e442a7fb1e9f72ff37f
[Mistral] Fix query scaling for Mistral4 and Ministral3 (#44860) fix
[ { "path": "src/transformers/models/ministral3/modeling_ministral3.py", "patch": "@@ -104,7 +104,7 @@ def eager_attention_forward(\n \n def get_llama_4_attn_scale(positions_ids: torch.Tensor, beta: float, max_position_embeddings: int) -> torch.Tensor:\n scaling = 1 + beta * torch.log(1 + torch.floor(posi...
2026-03-19T18:02:04
facebook/react
1b4ba7489978247fc955a99f01537f6fc79ffd97
bb778528d1ca22b44dad832f0258aaa4c0e6d4a4
refactor: align ReactNativeViewConfigRegistry flow typing (#27514) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a p...
[ { "path": "scripts/flow/react-native-host-hooks.js", "patch": "@@ -134,7 +134,6 @@ declare module 'react-native/Libraries/ReactPrivate/ReactNativePrivateInterface'\n declare export var ReactNativeViewConfigRegistry: {\n customBubblingEventTypes: Object,\n customDirectEventTypes: Object,\n- even...
2023-10-13T09:33:55
vercel/next.js
ae96d7bee6811a0bc1aa074f278a506fa6b1a4fd
f75598fe43e20c4778aff3ee264fc22d133d59c5
[turbopack] Remove Value::new wrapper for ServerContextType parameters (#80133) Remove Value::new wrapper for ServerContextType parameters ### Why? The Value<> type is confusing and error prone, lets destroy it! As discussed over slack, turbo_tasks::Value type always implements is_resolved as true and is_transient a...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -237,7 +237,7 @@ impl AppProject {\n Ok(get_server_module_options_context(\n self.project().project_path(),\n self.project().execution_context(),\n- Value::new(self.rsc_ty().owned().await?),\n+ self.rs...
2025-06-06T00:44:15
ollama/ollama
7601f0e93e53858f09136a7e4ccf674a9b4580bd
aad3f03890b9cd015e42aef827cf5526d215b491
server: reject unexpected auth hosts (#13738) Added validation to ensure auth redirects stay on the same host as the original request. The fix is a single check in getAuthorizationToken comparing the realm URL's host against the request host. Added tests for the auth flow. Co-Authored-By: Gecko Security <188164982+ge...
[ { "path": "server/auth.go", "patch": "@@ -50,12 +50,17 @@ func (r registryChallenge) URL() (*url.URL, error) {\n \treturn redirectURL, nil\n }\n \n-func getAuthorizationToken(ctx context.Context, challenge registryChallenge) (string, error) {\n+func getAuthorizationToken(ctx context.Context, challenge regis...
2026-01-16T19:10:36
golang/go
bdef1778311c19c997d4fb14a4374bd712014d13
2f036e1475f9d794451927d90c07d9f8c258db77
go/parser: require label after goto Fixes #70957 Change-Id: Ied7cf29ea3e02bb71ddce8a19ddd381ce5991ed1 GitHub-Last-Rev: 310bd1537b7a36758f3fbf8db476fa68e1a11599 GitHub-Pull-Request: golang/go#70958 Reviewed-on: https://go-review.googlesource.com/c/go/+/638395 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc...
[ { "path": "src/cmd/compile/internal/syntax/testdata/issue70957.go", "patch": "@@ -0,0 +1,9 @@\n+// Copyright 2024 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+package p\n+\n+func f() { goto /* ERROR synt...
2025-01-07T18:28:10
electron/electron
ce138fe96954b23c76583b5c1af3abbff0b2f661
79454dc50dfaff7ea2872f3f0724251f4b4bc901
fix: Windows 7 frame showing for frameless non-resizable windows (#35365)
[ { "path": "patches/chromium/.patches", "patch": "@@ -115,11 +115,11 @@ chore_allow_chromium_to_handle_synthetic_mouse_events_for_touch.patch\n add_maximized_parameter_to_linuxui_getwindowframeprovider.patch\n revert_spellcheck_fully_launch_spell_check_delayed_initialization.patch\n add_electron_deps_to_lice...
2022-10-13T15:39:40
huggingface/transformers
f4ed5b8d3600eb302c0031129fe51684ae004c8d
62c46ce2ff6e8ed18592eb2c2ac53456689a2013
Update some type hints (#44851) * update eos and q-lora-ranl * oops, wrong name for class
[ { "path": "src/transformers/configuration_utils.py", "patch": "@@ -31,6 +31,7 @@\n from .generation.configuration_utils import GenerationConfig\n from .modeling_gguf_pytorch_utils import load_gguf_checkpoint\n from .modeling_rope_utils import RotaryEmbeddingConfigMixin\n+from .tokenization_utils_base import...
2026-03-19T16:18:52
facebook/react
bb778528d1ca22b44dad832f0258aaa4c0e6d4a4
ea8a8619ce51a0f8f0a78f87485e4e2a6f9d8c27
[Fizz] Fix children rendering in custom elements with `enableCustomElementPropertySupport` (#27511) The `enableCustomElementPropertySupport` flag changes React's handling of custom elements in a way that is more useful that just treating every prop as an attribute. However when server rendering we have no choice bu...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -3134,32 +3134,13 @@ function pushStartCustomElement(\n \n let children = null;\n let innerHTML = null;\n- for (let propKey in props) {\n+ for (const propKey in props) {\n if (hasOwnProperty.call(props, propKey)...
2023-10-12T22:02:26