repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
electron/electron | 74d59af3c5ce9400342fe4487063a413e97578f1 | c09c94fc98f261dce4a35847e2dd9699dcd5213e | fix: Handle an electron.d.ts file in a custom build (#33979)
* Handle an electron.d.ts file in a custom build
* Fix linter issues
Co-authored-by: Felix Rieseberg <felixr@stripe.com> | [
{
"path": "npm/install.js",
"patch": "@@ -70,8 +70,30 @@ function isInstalled () {\n \n // unzips and makes path.txt point at the correct executable\n function extractFile (zipPath) {\n- return extract(zipPath, { dir: path.join(__dirname, 'dist') })\n- .then(() => fs.promises.writeFile(path.join(__dirna... | 2022-09-26T18:39:26 |
golang/go | 00635de759b38610dd86f60074856367d6a1ceaa | 0de8fc852704d672e3379b05d617ce75dc0b2613 | cmd/compile: don't report newLimit discovered when unsat happens multiple times
Fixes #71852
Change-Id: I696fcb8fc8c0c2e5e5ae6ab50596f6bdb9b7d498
Reviewed-on: https://go-review.googlesource.com/c/go/+/650975
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith R... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -552,8 +552,9 @@ func (ft *factsTable) newLimit(v *Value, newLim limit) bool {\n \t}\n \n \tif lim.unsat() {\n+\t\tr := !ft.unsat\n \t\tft.unsat = true\n-\t\treturn true\n+\t\treturn r\n \t}\n \n \t// Check for recursion. This normally happens ... | 2025-02-20T10:50:53 |
huggingface/transformers | c87deb21b9a4c466291de154ff0099aaf8014439 | aa57e1cd2fd0ede5ffbc70db3f193943b8f3e720 | feat(integration): Add KubeflowCallback to enable automatic progress … (#44487)
* feat(integration): Add KubeflowCallback to enable automatic progress and metrics reporting for training jobs running on Kubeflow Trainer.
Signed-off-by: abhijeet-dhumal <abhijeetdhumal652@gmail.com>
* fix: make KubeflowCallback self-co... | [
{
"path": "docs/source/en/main_classes/callback.md",
"patch": "@@ -67,6 +67,8 @@ Here is the list of the available [`TrainerCallback`] in the library:\n \n [[autodoc]] integrations.FlyteCallback\n \n+[[autodoc]] integrations.KubeflowCallback\n+\n [[autodoc]] integrations.DVCLiveCallback\n - setup\n ",
... | 2026-03-18T14:33:24 |
facebook/react | 88d56b8e818d0c48eb6642303169c1fadeb99d59 | bd6891742c606a4b8d6ce53760218c6ab3784b38 | Warn if optimistic state is updated outside of a transition (#27454)
### Based on #27453
If optimistic state is updated, and there's no startTransition on the
stack, there are two likely scenarios.
One possibility is that the optimistic update is triggered by a regular
event handler (e.g. `onSubmit`) instead... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -143,6 +143,7 @@ import type {BatchConfigTransition} from './ReactFiberTracingMarkerComponent';\n import {\n requestAsyncActionContext,\n requestSyncActionContext,\n+ peekEntangledActionLane,\n } from './ReactFiberAsyncAction';\... | 2023-10-04T14:57:55 |
ollama/ollama | 18fdcc94e55d8ca393be9d01b30246dbbca6f6af | 7ad036992f3f31cba3c567f7054ad4aa77e01c1a | docs: fix broken .md links and render issues (#13550) | [
{
"path": "docs/faq.mdx",
"patch": "@@ -14,11 +14,11 @@ curl -fsSL https://ollama.com/install.sh | sh\n \n ## How can I view the logs?\n \n-Review the [Troubleshooting](./troubleshooting.md) docs for more about using logs.\n+Review the [Troubleshooting](./troubleshooting) docs for more about using logs.\n \... | 2025-12-23T17:44:55 |
vercel/next.js | dcf28ec0aec1795a4891a7254602c27c8f076cd9 | a9880a598b695a9bbdca0e306a10345a8f34d127 | [dev-overlay] Remove indirection in app dev error boundary (#79984)
Doesn't need to be put in JSX children and can directly returned from render.
Allows for cleaner code separation with the future dedicated dev overlay bundle. | [
{
"path": "packages/next/src/client/components/react-dev-overlay/app/app-dev-overlay.tsx",
"patch": "@@ -5,72 +5,10 @@ import {\n } from '../shared'\n import type { GlobalErrorComponent } from '../../global-error'\n \n-import { useCallback, useEffect } from 'react'\n+import { useCallback } from 'react'\n im... | 2025-06-04T13:41:31 |
huggingface/transformers | 7cd2dd86ce3b2e598535f9aa1a40f79d6894f80a | 83a6c5b577cafa607d59e78af4de86592b9903ee | support xxxFast alias in v5 tokenizers (#44766)
* support xxxFast alias in v5 tokenizers
* rm wrong file
* test | [
{
"path": "src/transformers/models/auto/tokenization_auto.py",
"patch": "@@ -16,6 +16,7 @@\n import importlib\n import json\n import os\n+import sys\n from collections import OrderedDict\n from typing import Any\n \n@@ -410,7 +411,13 @@ def tokenizer_class_from_name(class_name: str) -> type[Any] | None:\n ... | 2026-03-18T13:40:02 |
electron/electron | c09c94fc98f261dce4a35847e2dd9699dcd5213e | 697a219bcb7bc520bdf2d39a76387e2f99869a2a | feat: add WebContents.opener and webContents.fromFrame() (#35140)
* feat: add WebContents.opener
* feat: add webContents.fromFrame(frame)
* fix: unknown type name
* test: fix and add more fromFrame cases
* docs: clarified terminology | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -45,6 +45,13 @@ returns `null`.\n Returns `WebContents` | undefined - A WebContents instance with the given ID, or\n `undefined` if there is no WebContents associated with the given ID.\n \n+### `webContents.fromFrame(frame)`\n+\n+* `frame` WebFrameMain\n+\... | 2022-09-26T16:37:08 |
golang/go | 0de8fc852704d672e3379b05d617ce75dc0b2613 | 458ac1b01590506891b2ad2b300ead76aaa4e119 | syscall: don't send child signal when testing pidfd
Avoid a spurious SIGCHLD the first time we start a process.
Fixes #71828
Change-Id: I744100d21bf6aaaaafc99bc5eec9f9f807a50682
Reviewed-on: https://go-review.googlesource.com/c/go/+/650835
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Michael Knyszek ... | [
{
"path": "src/os/exec/exec_posix_test.go",
"patch": "@@ -11,19 +11,23 @@ import (\n \t\"internal/testenv\"\n \t\"io\"\n \t\"os\"\n+\t\"os/exec\"\n+\t\"os/signal\"\n \t\"os/user\"\n \t\"path/filepath\"\n \t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync\"\n \t\"syscall\"\n \t\"testing\... | 2025-02-20T01:37:49 |
ollama/ollama | 172b5924af1f08277a7d6133d9bbfd4bd7438f01 | 8852220f59c12cf3165f5643d38453ffecbb722d | llm: Avoid integer underflow on llama engine memory layout
On the llama engine, when we compute the memory layout, we reserve
a buffer to allow for some flexibility for incorrect estimates.
This is subtracted from GPU free memory and on GPUs with limited
memory, it may underflow.
Fixes #13494 | [
{
"path": "llm/server.go",
"patch": "@@ -524,8 +524,13 @@ func (s *llamaServer) Load(ctx context.Context, systemInfo ml.SystemInfo, system\n \t// Use the size of one layer as a buffer\n \tlayers := s.ggml.Tensors().GroupLayers()\n \tif blk0, ok := layers[\"blk.0\"]; ok {\n+\t\tbuffer := blk0.Size() + kv[0]\... | 2025-12-19T23:10:55 |
facebook/react | 85c2b519b54269811002d26f4f711809ef68f123 | db69f95e4876ec3c24117f58d55cbb4f315b9fa7 | Fix: Optimistic update does not get reset (#27453)
I found a bug where if an optimistic update causes a component to
rerender, and there are no other state updates during that render, React
bails out without applying the update.
Whenever a hook detects a change, we must mark the component as dirty to
prevent a b... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -1817,9 +1817,9 @@ function updateOptimisticImpl<S, A>(\n // as an argument. It's called a passthrough because if there are no pending\n // updates, it will be returned as-is.\n //\n- // Reset the base state and memoized state... | 2023-10-03T19:01:40 |
vercel/next.js | 10928dfa61fba9230a5c1f428e61ffc699bb2310 | 1a18884755973acb4d68ac3989971ef81e2876bb | [global-not-found] fix shared css imports not being picked (#80151) | [
{
"path": "packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts",
"patch": "@@ -108,6 +108,9 @@ const pluginState = getProxiedPluginState({\n injectedClientEntries: {} as Record<string, string>,\n })\n \n+const POSSIBLE_SHARED_CONVENTIONS = ['template', 'layout']\n+const STANDALONE_BUNDLE... | 2025-06-04T12:54:45 |
electron/electron | f8077cc0041bd1779e750fceaf7758e87de0d7c9 | e0b4c485febc721317635da5eb280c8a8a228a40 | build: fix major dependencies update workflow file (#35811) | [
{
"path": ".github/workflows/release_dependency_versions.yml",
"patch": "@@ -20,7 +20,7 @@ jobs:\n trigger:\n runs-on: ubuntu-latest\n needs: check_tag\n- if: jobs.check_tag.outputs.should_release == 'true'\n+ if: needs.check_tag.outputs.should_release == 'true'\n steps:\n - uses: ... | 2022-09-26T14:15:37 |
ollama/ollama | 971d62595a14e4b349bb18d7980662cec7080e8c | ffbe8e076df9e2e67aab016ea3ec64822369b725 | fix: qwen2.5 vl rope (#13486)
* qwen25vl: bump max pixels
* qwen25vl: mrope
fix qwen2.5vl window
* qwen25vl: vision rope | [
{
"path": "ml/backend/ggml/ggml.go",
"patch": "@@ -1534,7 +1534,8 @@ func (t *Tensor) RoPE(ctx ml.Context, positions ml.Tensor, ropeDim int, ropeBase\n \t\t\tunsafe.SliceData(mropeSections),\n \t\t\tC.int(opts.Type),\n \t\t\tcmp.Or(C.int(opts.YaRN.OriginalContextLength), 128<<10),\n-\t\t\tC.float(ropeBase),... | 2025-12-16T01:30:33 |
golang/go | b9630c56db42dd58fd7ce21ea854815d0ab31878 | ad39fd94860661d022c633cd2856a76221adedc8 | cmd/internal/obj/loong64: optimize immediate loading
| old | new |
| sec/op | sec/op vs base |
BinaryTree17 11.08 ± 2% 11.16 ± 1% ~ (p=0.529 n=10)
Fannkuch11 ... | [
{
"path": "src/cmd/asm/internal/asm/endtoend_test.go",
"patch": "@@ -465,6 +465,8 @@ func TestLOONG64Encoder(t *testing.T) {\n \ttestEndToEnd(t, \"loong64\", \"loong64enc1\")\n \ttestEndToEnd(t, \"loong64\", \"loong64enc2\")\n \ttestEndToEnd(t, \"loong64\", \"loong64enc3\")\n+\ttestEndToEnd(t, \"loong64\", ... | 2024-07-11T13:03:45 |
vercel/next.js | 1a18884755973acb4d68ac3989971ef81e2876bb | 6cbe40fb3cafdd0542ea38741e645b413da00ec8 | Turbopack Build: Implement helpful error for missing sass package (#80155)
## What?
Implements the same error message that we add to the webpack handling. I'm not super happy about this solution (though it matches what we do for webpack) ideally we improve the sass-loader error itself in the future but that requires ... | [
{
"path": "packages/next/src/shared/lib/turbopack/utils.ts",
"patch": "@@ -190,7 +190,17 @@ export function formatIssue(issue: Issue) {\n }\n \n if (description) {\n- message += renderStyledStringToErrorAnsi(description) + '\\n\\n'\n+ if (\n+ description.type === 'text' &&\n+ description... | 2025-06-04T12:45:21 |
huggingface/transformers | 83a6c5b577cafa607d59e78af4de86592b9903ee | 9f93b61209e3a3cac026566bc11a77036941bbeb | Remove cache_position in more models (3) (#44759)
* start on the mambas
* fix mambas
* moshi and kyutai
* a few more special ones
* refactor recurrent gemma
* a bit more
* zambas
* fix mamba
* fixes
* fix csm
* kyutao
* fix test
* align and simpolify mamba cache
* fix mask for recurrent gemma
* small oup... | [
{
"path": "src/transformers/models/chameleon/modeling_chameleon.py",
"patch": "@@ -307,7 +307,6 @@ def forward(\n past_key_values: Cache | None = None,\n output_attentions: bool = False,\n use_cache: bool = False,\n- cache_position: torch.LongTensor | None = None,\n po... | 2026-03-18T13:09:35 |
electron/electron | 7d96321786d72563c034b9f905c8b7195e26bb8e | 39d79c5c28fb03f6730b4aca6aa65a1e140219e3 | docs: minor grammar fixes in tutorial (#35804) | [
{
"path": "docs/tutorial/tutorial-2-first-app.md",
"patch": "@@ -186,7 +186,7 @@ by creating a barebones web page in an `index.html` file in the root folder of y\n ```\n \n Now that you have a web page, you can load it into an Electron [BrowserWindow][browser-window].\n-Replace the contents your `main.js` f... | 2022-09-26T08:53:08 |
ollama/ollama | aacd1cb3947d9a9e2c7be4ad52b15a03984cac2d | e3731fb1605dd0949766b9d209427c62fe588bf8 | fix: define GGML_VERSION variables for proper SOVERSION expansion (#13469)
The ggml/src/CMakeLists.txt uses GGML_VERSION_MAJOR for the shared
library SOVERSION property, but these variables were not defined when
building from ollama's CMakeLists.txt.
This caused libggml-base.so to be named with a literal "SOVERSION"
... | [
{
"path": "CMakeLists.txt",
"patch": "@@ -54,6 +54,13 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/ml/backend/ggml/ggml/src/ggml-cp\n \n add_compile_definitions(NDEBUG GGML_VERSION=0x0 GGML_COMMIT=0x0)\n \n+# Define GGML version variables for shared library SOVERSION\n+# These are required by ggml/src... | 2025-12-15T22:42:15 |
golang/go | 9b842e2e63b660dd5e9ac39bac58a578d7b69824 | 3013231f46908bf5908624385cc9717354c0deba | crypto/tls: improve ech parsing errors
Make the errors we return when parsing an ECHConfig slightly more
verbose.
Fixes #71706
Change-Id: Id138fd9defec71ce492a490a71af4981cb9ede51
Reviewed-on: https://go-review.googlesource.com/c/go/+/650720
Auto-Submit: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LU... | [
{
"path": "src/crypto/tls/ech.go",
"patch": "@@ -53,67 +53,78 @@ type echConfig struct {\n \tExtensions []echExtension\n }\n \n-var errMalformedECHConfig = errors.New(\"tls: malformed ECHConfigList\")\n+var errMalformedECHConfigList = errors.New(\"tls: malformed ECHConfigList\")\n+\n+type echConfigErr st... | 2025-02-19T22:27:33 |
huggingface/transformers | 9f93b61209e3a3cac026566bc11a77036941bbeb | 09fea1e6e970a1051b1141ce320a3d696b2c15ed | Fix `supports_{tp/pp}_plan` (#44696)
* Fix `supports_{tp/pp}_plan`
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
* Apply repo consistency fixes
---------
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.... | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -26,7 +26,6 @@\n from collections.abc import Callable, Iterator\n from contextlib import contextmanager\n from dataclasses import dataclass, field\n-from enum import Enum\n from functools import partial, wraps\n from itertools import cycle\n from ... | 2026-03-18T12:22:17 |
vercel/next.js | 6cbe40fb3cafdd0542ea38741e645b413da00ec8 | 002fb28e1a3ff30373a8afe929b7406b0a590ffa | [dev-overlay] Remove unnecessary code from /pages dev error boundary (#79983)
No longer needed in React 18+ | [
{
"path": "packages/next/src/client/components/react-dev-overlay/pages/pages-dev-overlay-error-boundary.tsx",
"patch": "@@ -15,10 +15,6 @@ export class PagesDevOverlayErrorBoundary extends React.PureComponent<\n return { error }\n }\n \n- componentDidCatch(error: Error) {\n- this.setState({ error ... | 2025-06-04T12:04:01 |
facebook/react | b3d5e926675b159e55054553f108667311a47f96 | 216696dd889d258b6bfe0c380dd55454dece212e | Support/validate hooks called as methods
Hooks can be called via method call syntax, eg `Foo.useBar(sathya)`. This PR
teaches the compiler about this form of hooks for things like flattening scopes
with hooks, validating conditional hooks, etc.
Note that we still disallow calls on the React namespace, so things l... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts",
"patch": "@@ -21,8 +21,8 @@ import {\n Effect,\n FunctionType,\n IdentifierId,\n- ObjectType,\n PolyType,\n+ Type,\n ValueKind,\n makeBlockId,\n makeIdentifierId,\n@@ -348,11 +348,7 @@ export class Environment {\... | 2023-10-03T15:47:05 |
electron/electron | f62aab76b352fc6a34834d0b2f315200d2dcb31e | 324db14969c74461b849ba02c66af387c0d70d49 | fix: potential exception when calling webFrameMainBinding.fromIdOrNull() (#35785)
* fix: potential exception when calling webFrameMainBinding.fromIdOrNull()
* replace try/catch in getWebFrameForEvent
Co-authored-by: Milan Burda <miburda@microsoft.com> | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -537,6 +537,11 @@ const addReturnValueToEvent = (event: Electron.IpcMainEvent) => {\n });\n };\n \n+const getWebFrameForEvent = (event: Electron.IpcMainEvent | Electron.IpcMainInvokeEvent) => {\n+ if (!event.processId || !event.frameId) return nul... | 2022-09-24T19:19:07 |
ollama/ollama | e3731fb1605dd0949766b9d209427c62fe588bf8 | 8dbc9e7b68eedcffb44ad2b29b4bdacce5f936ac | renderers: add olmo3.1 and olmo3 fixes (#13447) | [
{
"path": "model/renderers/olmo3.go",
"patch": "@@ -10,12 +10,15 @@ import (\n )\n \n const (\n-\tolmo3DefaultSystemMessage = \"You are a helpful function-calling AI assistant. \"\n-\tolmo3NoFunctionsMessage = \"You do not currently have access to any functions. \"\n-\tolmo3WithFunctionsMessage = \"You ar... | 2025-12-15T19:26:43 |
golang/go | 3013231f46908bf5908624385cc9717354c0deba | 07a121383c52fc2edb96d4d58d1dd600bc3e7dfd | crypto/tls: fix incorrect EncryptedClientHelloKey comment
Updates #71706
Change-Id: Id689ec476eb3f76500dbf59d716a4376749de700
Reviewed-on: https://go-review.googlesource.com/c/go/+/650719
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Auto-Submit: Roland Shoemaker <roland@golang.org>
Reviewed-by: Michael Kny... | [
{
"path": "src/crypto/tls/common.go",
"patch": "@@ -870,7 +870,7 @@ type EncryptedClientHelloKey struct {\n \t// must match the config provided to clients byte-for-byte. The config\n \t// should only specify the DHKEM(X25519, HKDF-SHA256) KEM ID (0x0020), the\n \t// HKDF-SHA256 KDF ID (0x0001), and a subset... | 2025-02-19T22:14:54 |
huggingface/transformers | 6f308258772a8fe21ba1f905248616d977a9c1c5 | 3bf92002f84291f61fd6556a946e895609c516f3 | [Gemma] Update conversion scripts for Transformers v5 Comaptibility (#44631)
* maintenance(gemma): Update gemma conversion scripts for v5
* style: fix conversion scripts style | [
{
"path": "src/transformers/models/gemma/convert_gemma_weights_to_hf.py",
"patch": "@@ -13,22 +13,13 @@\n # limitations under the License.\n import argparse\n import os\n-import warnings\n \n import torch\n \n from transformers import GemmaConfig, GemmaForCausalLM, GemmaTokenizer\n+from transformers.tokeniz... | 2026-03-18T10:39:52 |
vercel/next.js | 4ab7cacf0445664a0d391a0426043b26f3036d66 | 6f76e91dbc137a55f24a0845637ea575226aee59 | Turbopack: Improve errors when opening SST files (#80106)
### What?
add more context to error messages for database failures | [
{
"path": "turbopack/crates/turbo-persistence/src/db.rs",
"patch": "@@ -652,7 +652,8 @@ impl TurboPersistence {\n max_coverage,\n max_merge_sequence,\n max_merge_size,\n- )?;\n+ )\n+ .context(\"Failed to compact database\")?;\n... | 2025-06-04T08:13:07 |
electron/electron | 324db14969c74461b849ba02c66af387c0d70d49 | 8a0b4fa338618e8afbc6291bf659870feddd230c | fix: set macOS crypto keychain name earlier (#34683)
* fix: set macOS crypto keychain name earlier
* spec: ensure arm64 mac tests are cleaned up | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -216,6 +216,7 @@ step-maybe-cleanup-arm64-mac: &step-maybe-cleanup-arm64-mac\n rm -rf ~/Library/Application\\ Support/electron*\n security delete-generic-password -l \"Chromium Safe Storage\" || echo \"✓ Keychain does not contain password f... | 2022-09-23T19:32:10 |
facebook/react | 41cb3c722ee764ba5eeb4b4bf4556983cd5c57db | 4779fa0f8101233a90e1959d80b000d54fa25436 | Fix duplicate declaration from MergeConsecutiveScopes
This is a distilled version of the duplicate declaration @mofeiZ and I saw when
trying to sync latest Forget internally, plus a fix to avoid the duplicate
instruction. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/MergeConsecutiveScopes.ts",
"patch": "@@ -108,6 +108,9 @@ class Transform extends ReactiveFunctionTransform<void> {\n // The updated set of instructions for the block. Stays null until\n // we make changes (ie merge scopes)\n ... | 2023-10-02T23:40:33 |
ollama/ollama | 1b308e1d2a478e70ef3e31e6b24d687a44b33016 | bd6c1d6b49aca86dbb1a59182b293c0d1f7b8db8 | model: fix global layer rope scale values for gemma 3 (#13452) | [
{
"path": "model/models/gemma3/model_text.go",
"patch": "@@ -28,10 +28,10 @@ type TextConfig struct {\n \tfinalLogitSoftcap float32\n }\n \n-func (o TextConfig) applyRotaryPositionEmbeddings(ctx ml.Context, states, positions ml.Tensor, base float32) ml.Tensor {\n+func (o TextConfig) applyRota... | 2025-12-13T00:29:01 |
golang/go | 0d8c512ce9186b7e188713ec3a29f9dbb4817668 | 57cd75a351a170e6ec6f3525972d16a3135b9398 | internal/poll: note that copy_file_range bug is fixed
We shouldn't drop the workaround in case we're running on an unpatched
kernel.
For #44272.
Change-Id: I6a6a636cb81c31856ac9b682e7d02fa1d8efa5d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/644878
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryB... | [
{
"path": "src/internal/poll/copy_file_range_linux.go",
"patch": "@@ -67,10 +67,11 @@ func handleCopyFileRangeErr(err error, copied, written int64) (bool, error) {\n \t\treturn false, nil\n \tcase nil:\n \t\tif copied == 0 {\n-\t\t\t// If we did not read any bytes at all,\n-\t\t\t// then this file may be in... | 2025-01-27T21:50:35 |
huggingface/transformers | 3bf92002f84291f61fd6556a946e895609c516f3 | 6b01cc4be766ba0bc2e3423731a9de036ec9b2c7 | fix bug embedding_size mismatch with hidden_size in electra model test (#44657)
* fix bug embedding_size mismatch with hidden_size in electra model test
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* add comment
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
---------
Signed-off-by: Liu, Kaixuan <kaix... | [
{
"path": "tests/models/electra/test_modeling_electra.py",
"patch": "@@ -126,6 +126,7 @@ def prepare_config_and_inputs(self):\n def get_config(self):\n return ElectraConfig(\n vocab_size=self.vocab_size,\n+ embedding_size=self.hidden_size, # Match hidden_size to avoid dim... | 2026-03-18T10:12:44 |
vercel/next.js | 6f76e91dbc137a55f24a0845637ea575226aee59 | 5a4a08fdce91a038f2ed3a70568d3ed040403150 | [dev-overlay] Remove unused `onError` in /pages (#79982)
Every implementation is a no-op and we don't have any plans.
Can use the same pattern as App Router when we need it. | [
{
"path": "packages/next/src/client/components/react-dev-overlay/pages/hooks.ts",
"patch": "@@ -27,16 +27,8 @@ export const usePagesDevOverlay = () => {\n }\n }, [dispatch])\n \n- const onComponentError = React.useCallback(\n- (_error: Error, _componentStack: string | null) => {\n- // TODO: s... | 2025-06-04T08:10:31 |
facebook/react | e54e2e6ee4a74da6ead96a04e200014c926ecc19 | e49a62c15d761ae7652e58e405a30dd2f8bd82be | Distinguish JSXText/StringLiteral during codegen
Fixes an issue with incorrect spacing where spaces were getting dropped, despite
an explicit `{" "}` in the input. The issue is that we didn't maintain JSXText
all the way through compilation. BuildHIR distinguishes string literals (such as
the above, inside an expr... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/PrintHIR.ts",
"patch": "@@ -335,7 +335,10 @@ export function printInstructionValue(instrValue: ReactiveValue): string {\n )}(${instrValue.args.map((arg) => printPattern(arg)).join(\", \")})`;\n break;\n }\n- case \"JSXText\":\... | 2023-10-02T21:58:05 |
electron/electron | 8a0b4fa338618e8afbc6291bf659870feddd230c | 626e248dea71e6bb7aec4cfb335985aedfd2e465 | feat: add app.getSystemLocale() method (#35697)
* feat: add app.getSystemLocale() method
* Update shell/browser/electron_browser_main_parts.cc
Co-authored-by: Charles Kerr <charles@charleskerr.com>
* Change methods to be const
* Apply PR feedback
* Fix mac compile
* Add missing scope
* Apply style... | [
{
"path": "docs/api/app.md",
"patch": "@@ -715,14 +715,20 @@ To set the locale, you'll want to use a command line switch at app startup, whic\n **Note:** When distributing your packaged app, you have to also ship the\n `locales` folder.\n \n-**Note:** On Windows, you have to call it after the `ready` events... | 2022-09-23T18:50:46 |
golang/go | 6d7cb594b358b9b22709fb7a7940abc4c9778074 | 51f3ca35942c39c8ed2b6c9fb46cc1030e638a92 | weak: accept linker-allocated objects to Make
Currently Make panics when passed a linker-allocated object. This is
inconsistent with both runtime.AddCleanup and runtime.SetFinalizer. Not
panicking in this case is important so that all pointers can be treated
equally by these APIs. Libraries should not have to worry wh... | [
{
"path": "src/runtime/mheap.go",
"patch": "@@ -9,6 +9,7 @@\n package runtime\n \n import (\n+\t\"internal/abi\"\n \t\"internal/cpu\"\n \t\"internal/goarch\"\n \t\"internal/runtime/atomic\"\n@@ -246,6 +247,10 @@ type mheap struct {\n \t// the lock.\n \tcleanupID uint64\n \n+\t_ cpu.CacheLinePad\n+\n+\timmor... | 2025-02-14T18:39:29 |
huggingface/transformers | 6b01cc4be766ba0bc2e3423731a9de036ec9b2c7 | 869dea750f56a39bf2a9ac24bf5e422be7bbe689 | Fix pegasus conversion (#44571)
* fix pegasus conversion
* Apply repo consistency fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Force merged since tests are passing | [
{
"path": "src/transformers/convert_slow_tokenizer.py",
"patch": "@@ -1290,6 +1290,28 @@ def vocab(self, proto):\n vocab += [(piece.piece, piece.score) for piece in proto.pieces[2:]]\n return vocab\n \n+ @classmethod\n+ def convert_from_spm(cls, vocab=None, **kwargs):\n+ pad_tok... | 2026-03-18T09:54:57 |
vercel/next.js | 5a4a08fdce91a038f2ed3a70568d3ed040403150 | 1a42db2b21522ce7d0b3536a9a7edbf6b4522a0c | [dynamicIO] prioritize preprocessing RSC rows when prerendering (#80125)
When prerendering with dynamicIO we take advantage of a few things about
microtask behavior to ensure that anything prerenderable in RSC is
included in the HTML prerender. We found however that with large enough
RSC payloads certain things that s... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -692,5 +692,6 @@\n \"691\": \"Accessed fallback \\\\`params\\\\` during prerendering.\",\n \"692\": \"Expected clientReferenceManifest to be defined.\",\n \"693\": \"%s must not be used within a client component. Next.js should be preventing %s from ... | 2025-06-04T05:00:27 |
golang/go | abd023911360006fedee9fccc707c73cdfb20b23 | 3f46587fe05f745a0bf91b74c2834f1317acba24 | go/parser: deprecate parser.ParseDir
Fixes #71122
Change-Id: Icaf27842f4a42e11eea4bd2203eba5d56610c196
Reviewed-on: https://go-review.googlesource.com/c/go/+/649275
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
Commit-Queue: Alan Donovan <adonovan@google.com>
LUCI... | [
{
"path": "api/next/71122.txt",
"patch": "@@ -0,0 +1 @@\n+pkg go/parser, func ParseDir //deprecated #71122",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/go/parser/71122.md",
"patch": "@@ -0,0 +1 @@\n+The [ParseDir] function is dep... | 2025-02-13T17:07:54 |
facebook/react | db69f95e4876ec3c24117f58d55cbb4f315b9fa7 | 4f4c52a3c8f9c8a2d8133c654841fee257c37249 | Fix checkbox and radio hydration (#27401)
Fixes whatever part of https://github.com/facebook/react/issues/26876
and https://github.com/vercel/next.js/issues/49499 that
https://github.com/facebook/react/pull/27394 didn't fix, probably.
From manual tests I believe this behavior brings us back to parity with
latest... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMInput.js",
"patch": "@@ -297,12 +297,10 @@ export function initInput(\n typeof checkedOrDefault !== 'symbol' &&\n !!checkedOrDefault;\n \n- // The checked property never gets assigned. It must be manually set.\n- // We don't want to do this... | 2023-10-02T18:38:44 |
huggingface/transformers | 869dea750f56a39bf2a9ac24bf5e422be7bbe689 | f1f34de0a68497ebc95ae690893fb75b89814c0d | Fix repo-check bot (#44812)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/pr-repo-consistency-bot.yml",
"patch": "@@ -172,6 +172,13 @@ jobs:\n cp utils/check_docstrings.py pr-repo/utils/check_docstrings.py\n cp utils/add_dates.py pr-repo/utils/add_dates.py\n \n+ - name: Install editable transformers from PR branch with copied ... | 2026-03-18T09:47:57 |
electron/electron | d3572186547ec745fbd6b05fc0785bca28e38903 | c69754b8e606af28b12271d53bc9456229b2b73c | docs: changed event.data to data under the message.port in docs (#35086)
* docs: changed event.data to data under the message.port in docs
* docs: corrected BrowserWindow wrong usage and change window.messagePort to window.electronMessagePort | [
{
"path": "docs/tutorial/message-ports.md",
"patch": "@@ -101,7 +101,7 @@ app.whenReady().then(async () => {\n }\n })\n \n- const secondaryWindow = BrowserWindow({\n+ const secondaryWindow = new BrowserWindow({\n show: false,\n webPreferences: {\n contextIsolation: false,\n@@ -144,7 +1... | 2022-09-23T08:07:53 |
vercel/next.js | 1a42db2b21522ce7d0b3536a9a7edbf6b4522a0c | 4e110ef3af176385d669f1a886eb46f1d169bd87 | fix(turbo-persistence): Atomically mark old versioned directories for deletion before deleting them (#80082)
This uses a trick similar to what I did in https://app.graphite.dev/github/pr/vercel/next.js/79425 to mark the directory for deletion using an atomic operation (a directory rename in this case) before deleting ... | [
{
"path": "Cargo.lock",
"patch": "@@ -2308,12 +2308,12 @@ dependencies = [\n \n [[package]]\n name = \"errno\"\n-version = \"0.3.8\"\n+version = \"0.3.12\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245\"\n... | 2025-06-04T02:13:51 |
golang/go | 3f46587fe05f745a0bf91b74c2834f1317acba24 | 3c05790d4847ba2d0d06b5ba3f82b311a99d531c | cmd/go: explicitly reject overlays affecting GOMODCACHE
The go command assumes that GOMODCACHE is immutable. As an example of
one place the assumption is made, the modindex won't stat the files in
GOMODCACHE when getting the cache key for the index entry and just uses
the path of the module in the modcache (basically ... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -211,15 +211,16 @@\n //\t\t-modfile flag by trimming the \".mod\" extension and appending \".sum\".\n //\t-overlay file\n //\t\tread a JSON config file that provides an overlay for build operations.\n-//\t\tThe file is a JSON struct with a single field, named ... | 2025-02-18T20:31:14 |
facebook/react | 4f4c52a3c8f9c8a2d8133c654841fee257c37249 | 843ec0702140f2d1e9407a38859abdf5b8dfe4e4 | Fix controlled radios, maybe for real this time (#27443)
Fixes #26876 for real?
In 18.2.0 (last stable), we set .checked unconditionally:
https://github.com/facebook/react/blob/v18.2.0/packages/react-dom/src/client/ReactDOMInput.js#L129-L135
This is important because if we are updating two radios' checkedne... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMInput.js",
"patch": "@@ -175,8 +175,13 @@ export function updateInput(\n }\n }\n \n- if (checked != null && node.checked !== !!checked) {\n- node.checked = checked;\n+ if (checked != null) {\n+ // Important to set this even if it's not ... | 2023-10-02T18:38:13 |
huggingface/transformers | f1f34de0a68497ebc95ae690893fb75b89814c0d | 03205a9dd636b54a19ddd34a08ff4b4245f00150 | Sdpa for owlvit (#42136)
* Added sdpa attention
* Added Changes to OWL-Vit as suggested
* Fixed nits
* removed unwanted files
* Fixed nits
* Fixed past_key_values_length to length 0
* Fixed nits
* Fixed dim issue
* fixed nits
* Fixed dim issue
* add sdpa for owlvit
* fixes
* fixe
* fixes
* fixes
* fixes... | [
{
"path": "src/transformers/models/owlv2/modeling_owlv2.py",
"patch": "@@ -13,6 +13,7 @@\n # limitations under the License.\n \"\"\"PyTorch OWLv2 model.\"\"\"\n \n+from collections.abc import Callable\n from dataclasses import dataclass\n from typing import Any\n \n@@ -24,18 +25,17 @@\n from ...masking_util... | 2026-03-17T19:52:21 |
electron/electron | eb3262cd87f1602cea651f89166b0da0f2ee6e14 | 4ffdd284c398d3e18a71f636422eaa0cf28406da | fix: allow docking DevTools with WCO (#35754)
fix: allow for docking devtools with WCO | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -2424,14 +2424,6 @@ void WebContents::OpenDevTools(gin::Arguments* args) {\n !owner_window()) {\n state = \"detach\";\n }\n- bool activate = true;\n- if (args && args->Length() == 1) {\n- gin_helper::Dictionary options... | 2022-09-22T08:44:27 |
ollama/ollama | 95fdd8d619ad4dc9215cdce8a8665284a96cd96f | 9f7822851c1f080d7d2a1dbe0e4d51233e5a28bc | fix: select and update models folder in settings (#13412) | [
{
"path": "app/dialog/cocoa/dlg.m",
"patch": "@@ -169,37 +169,47 @@ - (DlgResult)load {\n \t}\n \t\n \tNSArray* urls = [panel URLs];\n-\tif(self->params->allowMultiple && [urls count] >= 1) {\n+\tif([urls count] == 0) {\n+\t\treturn DLG_CANCEL;\n+\t}\n+\t\n+\tif(self->params->allowMultiple) {\n \t\t// For m... | 2025-12-12T16:09:37 |
golang/go | 9ddeac30b5c41f223564e1dedef3095a5a909cb9 | 4267fd389e941cf197cc3890cc42e474866c0d30 | cmd/compile, runtime: use deferreturn as target PC for recover from deferrangefunc
The existing code for recover from deferrangefunc was broken in
several ways.
1. the code following a deferrangefunc call did not check the return
value for an out-of-band value indicating "return now" (i.e., recover
was called)
2. th... | [
{
"path": "src/cmd/compile/internal/ssa/func.go",
"patch": "@@ -41,11 +41,12 @@ type Func struct {\n \tABISelf *abi.ABIConfig // ABI for function being compiled\n \tABIDefault *abi.ABIConfig // ABI for rtcall and other no-parsed-signature/pragma functions.\n \n-\tscheduled bool // Values in Bl... | 2025-02-18T22:34:24 |
facebook/react | a6ed60a8eb0626e5f84d0bdbb62c0b61219150d3 | c7ba8c098889b6dc47fa9c807bbba3975a658584 | [Fizz] Don't double replay elements when it's the postpone point (#27440)
The `resumeElement` function wasn't actually doing the correct thing
because it was resuming the element itself but what the child slot means
is that we're supposed to resume in the direct child of the element.
This is difficult to check for ... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -6988,4 +6988,100 @@ describe('ReactDOMFizzServer', () => {\n </div>,\n );\n });\n+\n+ // @gate enablePostpone\n+ it('can discover new suspense boundaries in the resume', async () => {\n+ let prerendering ... | 2023-09-29T22:24:38 |
vercel/next.js | 4e110ef3af176385d669f1a886eb46f1d169bd87 | b981ac58e11714d3ad4e7253ac5f41cf2535bcc2 | [turbopack] Eliminate many calls to `into` and from and cell involving RcStr (#80076)
Adopt the `rcstr!` macro in turbopack
Instead of `"foo".into()` call `rcstr!("foo")` while being slightly more annoying to type the macro approach is more readabie and faster as it can leverage constant folding for small strings and... | [
{
"path": "Cargo.lock",
"patch": "@@ -10180,6 +10180,7 @@ dependencies = [\n \"rustc-hash 2.1.1\",\n \"serde\",\n \"serde_with\",\n+ \"turbo-rcstr\",\n \"turbo-tasks\",\n \"turbo-tasks-build\",\n \"turbo-tasks-fs\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path... | 2025-06-04T02:10:05 |
electron/electron | 4935fd24222cf116d7fdbca88fcf7a8bcb98d83c | 99f4a42d4135cf2a596abbb31782485e41734230 | fix: WebAuthn Discoverable Credential (Resident Credential) (#35374)
* fix: WebAuthn Discoverable Credential (Resident Credential) #33353
Enables support for Webauthn discoverable credentials (aka resident
credentials). This allows users to authenticate without first having to
select or type a username.
To dec... | [
{
"path": "filenames.gni",
"patch": "@@ -515,6 +515,8 @@ filenames = {\n \"shell/browser/web_view_guest_delegate.h\",\n \"shell/browser/web_view_manager.cc\",\n \"shell/browser/web_view_manager.h\",\n+ \"shell/browser/webauthn/electron_authenticator_request_delegate.cc\",\n+ \"shell/browse... | 2022-09-20T22:47:42 |
ollama/ollama | 93d45d7a0464e534c0211f2fb9d720b1855ce43a | 709f842457f40550c88da80f84bc8d7ba29371b9 | docs: fix link to modelfile.mdx (#13220) | [
{
"path": "api/client.go",
"patch": "@@ -347,7 +347,7 @@ type CreateProgressFunc func(ProgressResponse) error\n // Create creates a model from a [Modelfile]. fn is a progress function that\n // behaves similarly to other methods (see [Client.Pull]).\n //\n-// [Modelfile]: https://github.com/ollama/ollama/bl... | 2025-12-12T00:14:45 |
golang/go | 4267fd389e941cf197cc3890cc42e474866c0d30 | a08984bc8f2acacebeeadf7445ecfb67b7e7d7b1 | syscall: don't truncate newly created files on Windows
There is no need for syscall.OpenFile to truncate newly created files.
Some special Windows files, like the NUL device, can't be
truncated, so we should avoid truncating unless it is really necessary.
Fixes #71752.
Change-Id: I8238048594f706f6a5281053d55cfe3dc89... | [
{
"path": "src/os/os_test.go",
"patch": "@@ -3844,3 +3844,14 @@ func TestRemoveReadOnlyFile(t *testing.T) {\n \t\t}\n \t})\n }\n+\n+func TestOpenFileDevNull(t *testing.T) {\n+\t// See https://go.dev/issue/71752.\n+\tt.Parallel()\n+\n+\tf, err := OpenFile(DevNull, O_WRONLY|O_CREATE|O_TRUNC, 0o644)\n+\tif err... | 2025-02-18T10:55:07 |
facebook/react | d900fadbf9017063fecb2641b7e99303b82a6f17 | 13d0225c7d4715d98772a85d8deb26d244921287 | Bugfix: Selective hydration triggers false update loop error (#27439)
This adds a regression test and fix for a case where a sync update
triggers selective hydration, which then leads to a "Maximum update
depth exceeded" error, even though there was only a single update. This
happens when a single sync update flow... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerSelectiveHydration-test.internal.js",
"patch": "@@ -1853,4 +1853,58 @@ describe('ReactDOMServerSelectiveHydration', () => {\n assertLog(['App', 'A', 'App', 'AA', 'DefaultContext', 'Commit']);\n });\n });\n+\n+ it('regression: selective h... | 2023-09-29T18:29:35 |
vercel/next.js | 035a12ea8e218a916aedc58f975384f7a6105861 | 33648de7f41f8822df0e9482a5ae0414c2681b2f | [dynamicIO] Document client component remediations for sync IO (#79787)
When you use sync IO in the client in a way that needs to be fixed we
currently still just provide you with the explanation for server
components. The fixes when sync IO happens in the client are not the
same as when they happen in a server compon... | [
{
"path": "errors/next-prerender-crypto-client.mdx",
"patch": "@@ -0,0 +1,149 @@\n+---\n+title: Cannot access `crypto.getRandomValue()`, `crypto.randomUUID()`, or another web or node crypto API that generates random values synchronously from a Client Component without a fallback UI defined\n+---\n+\n+## Why... | 2025-06-03T23:44:51 |
golang/go | 34073a736ab87d346399b8eef60d520a8b3cc5d4 | a7489b864879e89182ddf32d4a108c6967aa0522 | cmd/compile: avoid infinite recursion when inlining closures
CL 630696 changes budget for once-called closures, making them more
inlinable. However, when recursive inlining involve both the closure and
its parent, the inliner goes into an infinite loop:
parent (a closure) -> closure -> parent -> ...
The problem he... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -1009,6 +1009,38 @@ func canInlineCallExpr(callerfn *ir.Func, n *ir.CallExpr, callee *ir.Func, bigCa\n \t\treturn false, 0, false\n \t}\n \n+\tisClosureParent := func(closure, parent *ir.Func) bool {\n+\t\tfor p := closure.ClosureParent; p != ... | 2025-02-14T20:00:27 |
ollama/ollama | 2dfb74410d2cca08fa6dd62a0863e2e8d5ad1a8a | 1eb5e759724a10fea90a2f8e9ab7c292e7287191 | model: fix rotary embeddings for ministral 3 (#13432) | [
{
"path": "model/models/mistral3/model_text.go",
"patch": "@@ -29,24 +29,13 @@ type TextOptions struct {\n func (o TextOptions) applyRotaryPositionEmbeddings(ctx ml.Context, states, positions ml.Tensor) ml.Tensor {\n \tvar ropeOpts []func(*rope.Options)\n \tif o.ropeType == \"yarn\" {\n-\t\tgetMscale := fun... | 2025-12-12T00:02:05 |
facebook/react | 62512bafc635e165eb0db26dc8efbed12d0d02fb | 5b5665342b34b12940874bf38d61ef7b2a784bbd | Test fix: Add missing warning assertion (#27434)
Adds a missing test assertion for Server Context deprecation.
The PR that added this warning was based on an older revision than the
PR that added the test. | [
{
"path": "packages/react-server-dom-turbopack/src/__tests__/ReactFlightDOMBrowser-test.js",
"patch": "@@ -612,8 +612,22 @@ describe('ReactFlightDOMBrowser', () => {\n });\n \n it('basic use(context)', async () => {\n- const ContextA = React.createServerContext('ContextA', '');\n- const ContextB =... | 2023-09-28T16:21:11 |
huggingface/transformers | acc89e749b0fc66e56ebfd6ba8c81b2f45c88a63 | 2f896be7272cefb92869bd27aefec2f78d0d27f4 | docs(tasks): remove references to removed question-answering pipeline (#44787)
The question-answering pipeline was removed in v5.0.0 per MIGRATION_GUIDE_V5.md.
This updates the non-English task guides to remove usage of pipeline('question-answering')
which no longer exists and would raise:
Unknown task question-answ... | [
{
"path": "docs/source/ar/tasks/question_answering.md",
"patch": "@@ -252,23 +252,7 @@ pip install transformers datasets evaluate\n >>> context = \"BLOOM has 176 billion parameters and can generate text in 46 languages natural languages and 13 programming languages.\"\n ```\n \n-أبسط طريقة لتجربة نموذجك الم... | 2026-03-17T16:16:37 |
vercel/next.js | a74a58721a8f881ae463aa35ac64e734b53aa85f | a9b5f9b64adbc425038f6eb3631de250346332c2 | fix React 18 test failures (#80119)
Fixes failing assertions related to the forked React 18 tests.
[x-ref](https://github.com/vercel/next.js/actions/runs/15417191195/job/43385564776#step:34:533) | [
{
"path": "test/development/acceptance/ReactRefreshLogBox.test.ts",
"patch": "@@ -267,7 +267,7 @@ describe('ReactRefreshLogBox', () => {\n `export default function FunctionDefault() { throw new Error('no'); }`\n )\n \n- if (isReact18) {\n+ if (isReact18 && isTurbopack) {\n await expect... | 2025-06-03T23:00:18 |
golang/go | 279da965329a74cd75320f15cb9672a282690ab7 | fcdf444924dcd5dc2fb9e3044e32072460e7c374 | runtime: add some linknames back for `github.com/bytedance/sonic`
Add some linknames back, therefore sonic (github.com/bytedance/sonic) can work correctly.
Fixes #71672
Change-Id: Iae86c837d8a714855106a26766aa08b128e17e58
GitHub-Last-Rev: 4de0a4871766f9e7763394fdcdcaa9d683e97987
GitHub-Pull-Request: golang/go#71673
... | [
{
"path": "src/runtime/stubs.go",
"patch": "@@ -312,6 +312,16 @@ func asmcgocall(fn, arg unsafe.Pointer) int32\n \n func morestack()\n \n+// morestack_noctxt should be an internal detail,\n+// but widely used packages access it using linkname.\n+// Notable members of the hall of shame include:\n+// - gith... | 2025-02-18T18:01:45 |
ollama/ollama | 3475d915cb0882042041d7746e6baf888469c3e0 | 48e78e9be1cb39473a8220dd0d293c9e65ffb07d | embeddings: modified batch size (#13429)
This PR detects embedding models and sets batch_size = context_size so the full input fits in a single batch.
Previously, if batch size was smaller than the input, tokens could be split across batches and cause a SIGTRAP crash.
This change ensures all tokens stay in one batch a... | [
{
"path": "integration/embed_test.go",
"patch": "@@ -487,6 +487,63 @@ func TestEmbedTruncation(t *testing.T) {\n \t}\n }\n \n+// TestEmbedLargeInput tests that embedding models can handle large inputs that would exceed typical batch sizes.\n+func TestEmbedLargeInput(t *testing.T) {\n+\tctx, cancel := contex... | 2025-12-11T23:36:31 |
huggingface/transformers | 2f896be7272cefb92869bd27aefec2f78d0d27f4 | af93d3841a29e793c481a326b8e911b78259e936 | Fix configs with `@strict` (#44770)
* how did this even happen, CI was green O_o
* two more models
* what a weird model, too many BC lines
* fix
* .
* and tests | [
{
"path": "src/transformers/models/edgetam_video/configuration_edgetam_video.py",
"patch": "@@ -297,7 +297,7 @@ def __post_init__(self, **kwargs):\n self.vision_config[\"model_type\"] = self.vision_config.get(\"model_type\", \"sam2_vision_model\")\n self.vision_config = CONFIG_MAPPIN... | 2026-03-17T15:30:24 |
facebook/react | 959c6685be0368cb9c545984a1a56d4b70a5cd08 | 7b58600fb928dae935e85182c2142629af38dfe5 | Merge consecutive reactive scopes that invalidate together
This is something we've wanted to do for a while, and which @sophiebits also
brought up. The idea is to merge consecutive reactive scopes that will always
invalidate together. There are two cases of this:
* Both scopes have the exact same inputs
* Or th... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -42,6 +42,7 @@ import {\n flattenScopesWithHooks,\n inferReactiveScopeVariables,\n memoizeFbtOperandsInSameScope,\n+ mergeConsecutiveScopes,\n mergeOverlappingReactiveScopes,\n promoteUsedTemporaries,... | 2023-09-27T18:03:59 |
vercel/next.js | a9b5f9b64adbc425038f6eb3631de250346332c2 | 5325afa65adf2497fe78394d66195fb9cbd519cd | chore(turbopack): Fix building local crates with `--all-features` (#80117)
This is a prerequisite for using https://github.com/boshen/cargo-shear, which uses `--all-features`. This also avoids some noise in Rust Analyzer, which also uses `--all-features`. | [
{
"path": "turbopack/crates/turbo-persistence/src/static_sorted_file.rs",
"patch": "@@ -344,7 +344,7 @@ impl StaticSortedFile {\n bail!(\n \"Corrupted file seq:{} block:{} > number of blocks {} (block_offsets: {:x}, \\\n blocks: {:x})\",\n- self.se... | 2025-06-03T21:48:57 |
golang/go | fcdf444924dcd5dc2fb9e3044e32072460e7c374 | ad8b33002bb5cb0c910694339e1cc6c75f781c5a | os: document that OpenRoot follows symlinks
OpenRoot is expected to be called with a trusted path,
and does not attempt to defend against symlinks in that path.
Fixes #71806
Change-Id: Ib8b2e123e323d22d5c23ed9f711d21995139a7ef
Reviewed-on: https://go-review.googlesource.com/c/go/+/650355
Auto-Submit: Damien Neil <dn... | [
{
"path": "src/os/root.go",
"patch": "@@ -76,6 +76,7 @@ const (\n )\n \n // OpenRoot opens the named directory.\n+// It follows symbolic links in the directory name.\n // If there is an error, it will be of type *PathError.\n func OpenRoot(name string) (*Root, error) {\n \ttestlog.Open(name)",
"addition... | 2025-02-18T17:36:14 |
electron/electron | b1d7b30ca35080212e3e2ffa8149c88cb5c96c69 | d71b5e53fd9993fd32af18df0fc6b8bfbfec92ea | docs: fix wording mistake in security.md section 4 (#35682)
Update security.md
Under "4. Process Sandboxing", it said "For mor information on what `contextIsolation` is..." which was the previous section (copied from there). This updates it to say "For more information on what Process Sandboxing is..." | [
{
"path": "docs/tutorial/security.md",
"patch": "@@ -257,7 +257,7 @@ the sandbox in all renderers. Loading, reading or processing any untrusted\n content in an unsandboxed process, including the main process, is not advised.\n \n :::info\n-For more information on what `contextIsolation` is and how to enable... | 2022-09-20T15:14:44 |
ollama/ollama | a838421ea35366ea35a39102981c96a4a16658bb | 1c4e85b4df1a8ebcb0f578ea423cc1a0d0adf873 | model: conversion and hyperparameter fixes for ministral and devstral (#13424) | [
{
"path": "convert/convert.go",
"patch": "@@ -182,6 +182,8 @@ func ConvertModel(fsys fs.FS, f *os.File) error {\n \t\tconv = &llama4Model{}\n \tcase \"Mistral3ForConditionalGeneration\":\n \t\tconv = &mistral3Model{}\n+\tcase \"Ministral3ForCausalLM\":\n+\t\tconv = &mistral3CausalModel{}\n \tcase \"MixtralF... | 2025-12-11T21:04:00 |
huggingface/transformers | af93d3841a29e793c481a326b8e911b78259e936 | bbe251a4d4e06d141f3e60c91e15d4b9d34e82c9 | [AMD CI] Fix test failures across important models (#44632)
* qwen2
* merge
* qwen_2_audio
* fix more
* qwen2_5_vl
* style
* fix | [
{
"path": "docker/transformers-pytorch-amd-gpu/Dockerfile",
"patch": "@@ -44,7 +44,7 @@ RUN git clone https://github.com/ROCm/flash-attention/ -b tridao && \\\n GPU_ARCHS=\"gfx942\" python setup.py install\n # GPU_ARCHS builds for MI300, MI325 but not MI355: we would need to add `;gfx950` but it takes t... | 2026-03-17T14:50:39 |
vercel/next.js | 0a87d7524624e73ae2adc120d87fba4f4fdf98c0 | 69765f4d83c724a80cd7cc379ec44be82619b550 | [dev-overlay] Inject `getSquashedHydrationErrorDetails` implementation (#80046)
Same as with `get*Stack` implementation | [
{
"path": "packages/next/src/client/components/react-dev-overlay/app/app-dev-overlay.tsx",
"patch": "@@ -72,6 +72,11 @@ function ReplaySsrOnlyErrors({\n return null\n }\n \n+function getSquashedHydrationErrorDetails() {\n+ // We don't squash hydration errors in the App Router.\n+ return null\n+}\n+\n ex... | 2025-06-03T18:44:12 |
golang/go | ad8b33002bb5cb0c910694339e1cc6c75f781c5a | 0bdc792145acaf10c5f7bac1783a6692fb327dfb | syscall: disable O_DIRECTORY on Windows for js/wasm
O_DIRECTORY is not available on all platforms, as described at
https://nodejs.org/docs/latest/api/fs.html#file-open-constants .
On Windows, only O_APPEND, O_CREAT, O_EXCL, O_RDONLY, O_RDWR,
O_TRUNC, O_WRONLY, and UV_FS_O_FILEMAP are available.
Fixes #71758
Change... | [
{
"path": "src/syscall/fs_js.go",
"patch": "@@ -23,15 +23,26 @@ var constants = jsFS.Get(\"constants\")\n var uint8Array = js.Global().Get(\"Uint8Array\")\n \n var (\n-\tnodeWRONLY = constants.Get(\"O_WRONLY\").Int()\n-\tnodeRDWR = constants.Get(\"O_RDWR\").Int()\n-\tnodeCREATE = constants.Get(\"... | 2025-02-18T15:21:23 |
electron/electron | 6cc69122ce298fd2025e08b891240084309370d5 | 76ce6d5fb40311407e0bfc9f02184322d221475f | chore: fix ambiguous reference gcc compile error (#35714) | [
{
"path": "shell/browser/serial/electron_serial_delegate.cc",
"patch": "@@ -66,16 +66,18 @@ device::mojom::SerialPortManager* ElectronSerialDelegate::GetPortManager(\n return GetChooserContext(frame)->GetPortManager();\n }\n \n-void ElectronSerialDelegate::AddObserver(content::RenderFrameHost* frame,\n- ... | 2022-09-19T22:05:24 |
ollama/ollama | dac4f17fea99dc18628d743e80f91dcd15ab4bce | 56b8fb024cb530c738dc6ddb5cd76714255f1a6e | cmd/bench: fix binary name in README (#13276) | [
{
"path": "cmd/bench/README.md",
"patch": "@@ -15,7 +15,7 @@ A Go-based command-line tool for benchmarking Ollama models with configurable pa\n \n ```\n go build -o ollama-bench bench.go\n-./bench -model gpt-oss:20b -epochs 6 -format csv\n+./ollama-bench -model gpt-oss:20b -epochs 6 -format csv\n ```\n \n U... | 2025-12-10T22:16:58 |
facebook/react | 701ac2e57290f913502c6012c15e815f412f84b7 | 49eba01930e9e1f331b34967fca65d5a0ba62846 | [Flight][Float] Preinitialize module imports during SSR (#27314)
Currently when we SSR a Flight response we do not emit any resources for
module imports. This means that when the client hydrates it won't have
already loaded the necessary scripts to satisfy the Imports defined in
the Flight payload which will lead t... | [
{
"path": "fixtures/flight-esm/.nvmrc",
"patch": "@@ -0,0 +1 @@\n+v18",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "fixtures/flight-esm/server/global.js",
"patch": "@@ -10,6 +10,7 @@ const compress = require('compression');\n const chalk = require('chalk');\n ... | 2023-09-27T16:53:31 |
vercel/next.js | 0329a7e2947c170c1fd393d34fd944e8910d873c | 7a0db3a159e6c25424f6e784ac973cb6e044ad70 | fix(turbopack): Allow google font fetch errors to propagate when in production (#79999)
## Fail Google Fonts in Production Builds When Fetch Fails
### What?
This PR changes the behavior of Google Fonts in Next.js to properly fail
production builds when font fetching fails, while still allowing
development to continue... | [
{
"path": "crates/next-core/src/next_client/context.rs",
"patch": "@@ -161,7 +161,7 @@ pub async fn get_client_resolve_options_context(\n execution_context: Vc<ExecutionContext>,\n ) -> Result<Vc<ResolveOptionsContext>> {\n let next_client_import_map =\n- get_next_client_import_map(*project_p... | 2025-06-03T17:45:52 |
huggingface/transformers | bbe251a4d4e06d141f3e60c91e15d4b9d34e82c9 | 160618abed3c92e4c0ad017328b8c7b142da950b | Move VLM conversions to the main mapping (#44627)
* oke, let's see
* revert core and check
* ooops
* nope revert it back
* forgot revert
* simplify loading changes
* make sure classes will be reset
* fix modular
* these don't recurse so copy
* a few typos in model type and regex
* another fix: model type has... | [
{
"path": "src/transformers/conversion_mapping.py",
"patch": "@@ -63,11 +63,68 @@\n \"rt_detr_v2\": \"rt_detr\",\n \"pp_doclayout_v2\": \"rt_detr\",\n \"pp_doclayout_v3\": \"rt_detr\",\n+ \"paligemma\": \"llava\",\n+ \"aya_vision\": \"llava\",\n+ \"fuyu\": \"llava\",\n+ \"got_ocr2\":... | 2026-03-17T10:01:42 |
golang/go | 43d8b1e8fed9be5f61f864e0b185e918e3fadf2c | 896de17f8069626f8e52b662c0d5a46ee9cac699 | os: deal with chmod error for TestRootConsistencyChmod
Previously the error returned by chmod has not actually been used.
Change-Id: I97c947a2278a084c58784fd100630ce2a54bfb03
GitHub-Last-Rev: ddc60a044f641d264c9ee88d87b2da7e2f766741
GitHub-Pull-Request: golang/go#71744
Reviewed-on: https://go-review.googlesource.com/... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -928,12 +928,16 @@ func TestRootConsistencyChmod(t *testing.T) {\n \t\t\t}\n \n \t\t\tvar m1, m2 os.FileMode\n-\t\t\terr := chmod(path, 0o555)\n+\t\t\tif err := chmod(path, 0o555); err != nil {\n+\t\t\t\treturn \"chmod 0o555\", err\n+\t\t\t}\n \t\t\tfi, err := l... | 2025-02-17T11:45:51 |
electron/electron | 76ce6d5fb40311407e0bfc9f02184322d221475f | 01cf5c5f993e6a8cd8a1a69abee9755824525677 | fix: edge case in app.isInApplicationsFolder() (#35636)
* fix: edge case in IsInApplicationsFolder
* use realpath instead
* lint
* revert lowercasing
* optimize
* Update shell/browser/ui/cocoa/electron_bundle_mover.mm
* lint
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> | [
{
"path": "shell/browser/ui/cocoa/electron_bundle_mover.mm",
"patch": "@@ -182,18 +182,27 @@\n return IsInApplicationsFolder([[NSBundle mainBundle] bundlePath]);\n }\n \n+NSString* resolvePath(NSString* path) {\n+ NSString* standardizedPath = [path stringByStandardizingPath];\n+ char resolved[PATH_MAX];... | 2022-09-19T18:19:49 |
ollama/ollama | 56b8fb024cb530c738dc6ddb5cd76714255f1a6e | b95693056c62a3acaa172f555e3bdb2b438684e3 | cmd/bench: fix options table in cmd/bench/README.md (#13216) | [
{
"path": "cmd/bench/README.md",
"patch": "@@ -54,6 +54,7 @@ benchstat -col /name gemma.bench\n ## Command Line Options\n \n | Option \t| Description | Default |\n+|----------|-------------|---------|\n | -model\t| Comma-separated list of models to benchmark\t| (required)\t\t|\n | -epochs\t| Number of iter... | 2025-12-10T22:07:48 |
facebook/react | bff6be8eb1d77980c13f3e01be63cb813a377058 | 94d5b5b2bf5204ebd289a113989c0e2c51b626ef | [Fizz] Track postpones in fallbacks (#27421)
This fixes so that you can postpone in a fallback. This postpones the
parent boundary. I track the fallbacks in a separate replay node so that
when we resume, we can replay the fallback itself and finish the
fallback and then possibly later the content. By doing this we ... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -6261,6 +6261,59 @@ describe('ReactDOMFizzServer', () => {\n expect(fatalErrors).toEqual(['testing postpone']);\n });\n \n+ // @gate enablePostpone\n+ it('can postpone in a fallback', async () => {\n+ function P... | 2023-09-25T23:02:25 |
huggingface/transformers | 160618abed3c92e4c0ad017328b8c7b142da950b | b4bdaadd643c6f80b36c599571729bb7fed44fa9 | Fix config loading issues (type issues) (#44789)
* fix
* fix
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/deepseek_v2/configuration_deepseek_v2.py",
"patch": "@@ -96,7 +96,7 @@ class DeepseekV2Config(PreTrainedConfig):\n head_dim: int | None = None\n first_k_dense_replace: int = 0\n kv_lora_rank: int = 512\n- q_lora_rank: int = 1536\n+ q_lora_rank: int | None... | 2026-03-17T09:36:55 |
golang/go | 896de17f8069626f8e52b662c0d5a46ee9cac699 | a73c6545d27afaad631ba2f5c593ab3a97d11bdc | cmd/cgo: explicitly use void for functions with no parameters
Currently, exported Go functions with no parameters generate C functions
with an empty parameter list. In C, a function with an empty parameter
list can accept any number of arguments, whereas a function with a single
void parameter explicitly declares that... | [
{
"path": "src/cmd/cgo/internal/testcshared/cshared_test.go",
"patch": "@@ -880,3 +880,44 @@ func TestIssue36233(t *testing.T) {\n \t\tt.Error(\"missing functions\")\n \t}\n }\n+\n+func TestIssue68411(t *testing.T) {\n+\tglobalSkip(t)\n+\ttestenv.MustHaveCGO(t)\n+\n+\tt.Parallel()\n+\n+\t// Test that the ex... | 2025-02-17T13:57:12 |
vercel/next.js | 7a0db3a159e6c25424f6e784ac973cb6e044ad70 | 0b0d03a07f14ce64d7aeed9c4ef44851d34eede8 | [testmode] Fix types of `wrapRequestHandler` (#80055)
Was previously shadowed because we used an uncast `require` which results in `any`.
Fixes
```
Argument of type '<T>(request: NextRequestHint, fn: () => T) => T' is not assignable to parameter of type '(req: Request, fn: () => T) => T'.
Types of parameters '... | [
{
"path": "packages/next/src/experimental/testmode/server-edge.ts",
"patch": "@@ -5,8 +5,8 @@ export function interceptTestApis(): () => void {\n return interceptFetch(global.fetch)\n }\n \n-export function wrapRequestHandler<T>(\n- handler: (req: Request, fn: () => T) => T\n-): (req: Request, fn: () => ... | 2025-06-03T17:36:10 |
electron/electron | 7d3f22dd32365d5432583d936fa4c7f3d480ef45 | fa3cd1747556b66a3e714f99e988e47334187e44 | fix: uv_os_gethostname failing on Windows 7 (libuv patch regression) (#35702)
Co-authored-by: Milan Burda <miburda@microsoft.com> | [
{
"path": "patches/node/fix_crash_caused_by_gethostnamew_on_windows_7.patch",
"patch": "@@ -6,7 +6,7 @@ Subject: fix: crash caused by GetHostNameW on Windows 7\n Backported from https://github.com/libuv/libuv/pull/3285.\n \n diff --git a/deps/uv/src/win/util.c b/deps/uv/src/win/util.c\n-index 33e874ac442f88... | 2022-09-16T05:33:01 |
facebook/react | 94d5b5b2bf5204ebd289a113989c0e2c51b626ef | 430e712bbd2e33cceb302b6e25fd7d8148b62019 | React DevTools 4.28.3 -> 4.28.4 (#27419)
* refactor[devtools/extension]: refactored messaging logic across
different parts of the extension ([hoxyq](https://github.com/hoxyq) in
[#27417](https://github.com/facebook/react/pull/27417))
* fix[devtools/extension]: added a workaround for proxy content script
injection ... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.28.3\",\n+ \"version\": \"4.28.4\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j... | 2023-09-25T17:24:52 |
huggingface/transformers | 75c836b7853cb65f48ab2ce13cddfb12d14ecf5a | 3b5032739b0faa2a0ad16d7e47b8c986152943b8 | [fix] mistral 4 docs (#44776)
fix | [
{
"path": "docs/source/en/model_doc/mistral4.md",
"patch": "@@ -110,7 +110,3 @@ print(decoded_output)\n ## Mistral4ForTokenClassification\n \n [[autodoc]] Mistral4ForTokenClassification\n-\n-## Mistral4ForQuestionAnswering\n-\n-[[autodoc]] Mistral4ForQuestionAnswering",
"additions": 0,
"deletions": ... | 2026-03-16T21:03:23 |
golang/go | 81c66e71d480ae2372b7eea4bcdf600b50fdd5e1 | d524e1eccd559b40130c3bac77f3f7dc33d476ab | runtime: check LSE support on ARM64 at runtime init
Check presence of LSE support on ARM64 chip if we targeted it at compile
time.
Related to #69124
Updates #60905
Fixes #71411
Change-Id: I65e899a28ff64a390182572c0c353aa5931fc85d
Reviewed-on: https://go-review.googlesource.com/c/go/+/645795
Reviewed-by: Cherry Mui <... | [
{
"path": "src/runtime/asm_arm64.s",
"patch": "@@ -8,6 +8,28 @@\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+// We know ... | 2025-01-31T13:59:02 |
vercel/next.js | 3b3d5eeea4efdade5740940c9ef82d8481b296ff | 750eae084a1dfe923c84ba1e6cdc38bd9b4f8776 | [dev-tools] add restart dev server button to error overlay (#80060)
### Why?
When the user reloads on a specific error, and that error persists, we
show the restart server button as an option. This is because some errors
are recoverable by restarting the server and rebuilding the app.
https://github.com/user-attach... | [
{
"path": "packages/next/src/build/define-env.ts",
"patch": "@@ -286,6 +286,8 @@ export function getDefineEnv({\n : {}),\n 'process.env.__NEXT_DEVTOOL_SEGMENT_EXPLORER':\n config.experimental.devtoolSegmentExplorer ?? false,\n+ 'process.env.__NEXT_TURBOPACK_PERSISTENT_CACHE':\n+ conf... | 2025-06-03T17:22:54 |
electron/electron | f25c87dc7024397526bbe221efdaa0260392c243 | 5cf15cdab7f3d055a225dbc50c53d62614250468 | feat: allow custom v8 snapshots to be used in the main process and the default snapshot in the renderer process (#35266)
* Updates to allow for using a custom v8 snapshot file name
* Allow using a custom v8 snapshot file name
* Fix up patch due to merge
* Use fuse to set up custom v8 snapshot file in browser ... | [
{
"path": "build/fuses/fuses.json5",
"patch": "@@ -7,5 +7,6 @@\n \"node_options\": \"1\",\n \"node_cli_inspect\": \"1\",\n \"embedded_asar_integrity_validation\": \"0\",\n- \"only_load_app_from_asar\": \"0\"\n+ \"only_load_app_from_asar\": \"0\",\n+ \"load_browser_process_specific_v8_snapshot\": \"... | 2022-09-15T20:21:16 |
ollama/ollama | b95693056c62a3acaa172f555e3bdb2b438684e3 | c34fc64688396bb9f2e17a2a89251a63f58ee4f7 | feat: llama.cpp bump (17f7f4) for SSM performance improvements (#13408)
* feat: Bump llama.cpp to the latest master (17f7f4b)
This brings in significant improvements to prefill performance for all
models using the SSM_CONV and SSM_SCAN ops (granite4, jamba, falcon-h,
nemotron-h, Qwen3 Next) on Apple Metal.
See https... | [
{
"path": "Makefile.sync",
"patch": "@@ -1,6 +1,6 @@\n UPSTREAM=https://github.com/ggml-org/llama.cpp.git\n WORKDIR=llama/vendor\n-FETCH_HEAD=7f8ef50cce40e3e7e4526a3696cb45658190e69a\n+FETCH_HEAD=17f7f4baad8b3a716ee139da7bb56ae984e8c0fa\n \n .PHONY: help\n help:",
"additions": 1,
"deletions": 1,
... | 2025-12-10T20:59:27 |
huggingface/transformers | 3b5032739b0faa2a0ad16d7e47b8c986152943b8 | 67fd5bc2b4da337f4a3763637e1ea15b23d7d776 | Add Mistral 4 (#44760)
* Add Mistral Small 4
* add mistral4 to toctree
* Quality
* Update src/transformers/models/mistral4/__init__.py
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
* wip
* docstring
* Make config dataclass
* Fixes fixes fixes
* update tp plan
---------
Co-authored-... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1232,6 +1232,8 @@\n title: MGP-STR\n - local: model_doc/mistral3\n title: Mistral3\n+ - local: model_doc/mistral4\n+ title: Mistral4\n - local: model_doc/mllama\n title: mllama\n - local: model_doc/m... | 2026-03-16T19:39:38 |
golang/go | d5b75e40462c2b357df96de3083705d8ea4c8954 | b38415d7e9abad2a8255c6b527ab7a033851c5f2 | runtime/maps: fix typo in group.go comment (H1 -> H2)
Fixes a typo to correctly describe the hash bits of the control word.
Change-Id: Id3c2ae0bd529e579a95258845f9d8028e23d10d2
GitHub-Last-Rev: 1baa81be5d292d5625d5d7788b8ea090453f962c
GitHub-Pull-Request: golang/go#71730
Reviewed-on: https://go-review.googlesource.co... | [
{
"path": "src/internal/runtime/maps/group.go",
"patch": "@@ -111,7 +111,7 @@ func bitsetShiftOutLowest(b bitset) bitset {\n //\n //\t empty: 1 0 0 0 0 0 0 0\n //\tdeleted: 1 1 1 1 1 1 1 0\n-//\t full: 0 h h h h h h h // h represents the H1 hash bits\n+//\t full: 0 h h h h h h h // h represents the H... | 2025-02-14T12:03:06 |
facebook/react | d9e00f795b77676fb14f2a3c6f421f48f73bec2a | f9d75e32ba85b3c6a2a5d20fa27ba7e23d5529b2 | Stop flowing and then abort if a stream is cancelled (#27405)
We currently abort a stream either it's explicitly told to abort (e.g.
by an abortsignal). In this case we still finish writing what we have as
well as instructions for the client about what happened so it can
trigger fallback cases and log appropriately... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServerBrowser-test.js",
"patch": "@@ -342,7 +342,8 @@ describe('ReactDOMFizzServerBrowser', () => {\n expect(isComplete).toBe(false);\n \n const reader = stream.getReader();\n- reader.cancel();\n+ await reader.read();\n+ await reader.c... | 2023-09-22T19:16:49 |
vercel/next.js | bc4b72df8eab4451391c8b49a9d684fd533989cc | 81ab1ffc14a4454dae13dac4318bec2aab9c2f2c | [devtool] fix explorer flag consuming and style (#80110) | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -369,6 +369,8 @@ export async function handler(\n enableTainting: nextConfig.experimental.taint,\n // @ts-expect-error fix issue with readonly regex object type\n htmlLimitedBots: nextConfig.htmlLimitedBots... | 2025-06-03T16:40:59 |
electron/electron | 5cf15cdab7f3d055a225dbc50c53d62614250468 | 532162d2b5b0e05c1bca3d08e30c4e2b9387ac04 | build: fix building with enable_basic_printing false (#35687)
Co-authored-by: Milan Burda <miburda@microsoft.com> | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -144,6 +144,10 @@\n #include \"shell/browser/osr/osr_web_contents_view.h\"\n #endif\n \n+#if BUILDFLAG(IS_WIN)\n+#include \"shell/browser/native_window_views.h\"\n+#endif\n+\n #if !BUILDFLAG(IS_MAC)\n #include \"ui/aura/window.h\"\n #e... | 2022-09-15T17:29:10 |
huggingface/transformers | 67fd5bc2b4da337f4a3763637e1ea15b23d7d776 | 4cac50ff5414dd0b591e6d5fc1c5ca3f32a20a16 | Fix: Eurobert model was missing @strict decorator and invalid test kwargs (#44767)
* Fix: added missing attribute in docstring
* Fix EuroBertConfig missing @strict decorator and invalid test kwargs
EuroBertConfig was missing `@strict(accept_kwargs=True)` unlike its parent
LlamaConfig, causing failures when reloading... | [
{
"path": "src/transformers/models/eurobert/configuration_eurobert.py",
"patch": "@@ -19,18 +19,23 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n+\n+from ...configuration_utils import strict\n from ...modeling_rope_utils import RopeParamete... | 2026-03-16T18:20:45 |
ollama/ollama | bbbb6b2a013b3fb27ddd7d7132a9dd6026f3e7ad | 76f88caf437c3f48b68ff6df649e283f7370b27b | app/ui: fix model capabilities not updating after download completion (#13179) | [
{
"path": "app/ui/app/src/hooks/useChats.ts",
"patch": "@@ -7,6 +7,7 @@ import { createQueryBatcher } from \"./useQueryBatcher\";\n import { useRefetchModels } from \"./useModels\";\n import { useStreamingContext } from \"@/contexts/StreamingContext\";\n import { useSettings } from \"./useSettings\";\n+impo... | 2025-12-10T19:40:02 |
golang/go | 586e205522279406a9fcd2ab6cd1a1f416f1eae4 | beac2f7d3b72ecaff146b98afb690489f0192422 | std: add //go:fix inline directives to some deprecated functions
In particular, we apply it only to functions where it is always
a code improvement to inline the call.
We also apply it to some constants.
In a few cases this may introduce a panic statement at the
caller, which is debatable, but making the potential fo... | [
{
"path": "src/cmd/compile/internal/noder/noder.go",
"patch": "@@ -162,6 +162,7 @@ var allowedStdPragmas = map[string]bool{\n \t\"go:cgo_ldflag\": true,\n \t\"go:cgo_dynamic_linker\": true,\n \t\"go:embed\": true,\n+\t\"go:fix\": true,\n \t\"go:generate\": true,... | 2025-02-12T16:18:30 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.