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 | 4932e9721e230bea915341e7f04db32885b6c6af | 57e84139542c8c297873f35fcd25f66ffcf132ae | Fix resized LM head weights being overwritten by post_init (#45079)
When `tie_word_embeddings=False`, `_get_resized_lm_head()` creates a new
`nn.Linear` without `_is_hf_initialized`, causing `post_init()` to
reinitialize its weights. Set the flag after weight copying is done.
Fixes #35141 | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -2984,6 +2984,7 @@ def _get_resized_lm_head(\n new_lm_head, old_lm_head, num_tokens_to_copy, transposed, has_new_lm_head_bias\n )\n \n+ new_lm_head._is_hf_initialized = True\n return new_lm_head\n \n ... | 2026-04-02T14:13:31 |
ollama/ollama | 036ed1b9b50558907789c66b407a6cd05d31cc20 | 3536ef58f613b9f448a040b09417aa057e52bc2d | model/parsers: fix gemma4 arg parsing when quoted strings contain " (#15254)
* model/parsers: fix gemma4 arg parsing when quoted strings contain "
Fixes: #15241
* add more tests, be careful about what we escape
We want Windows-style paths to not get misinterpreted
* fix backslash-quote case, it really should be a ... | [
{
"path": "model/parsers/gemma4.go",
"patch": "@@ -345,27 +345,85 @@ func parseGemma4ToolCall(content string) (api.ToolCall, error) {\n \n // gemma4ArgsToJSON converts Gemma 4's custom argument format to valid JSON.\n func gemma4ArgsToJSON(s string) string {\n-\ts = strings.ReplaceAll(s, `<|\"|>`, `\"`)\n+\... | 2026-04-03T05:52:51 |
electron/electron | 55c818d0a84400621c0817c8a2e4cc17d9eb24c8 | 9630e26e6dec503bc82ca4b9f87ebf0344311ca5 | fix: `<datalist>` dropdown positioning (#36934)
fix: datalist dropdown positioning | [
{
"path": "shell/browser/ui/autofill_popup.cc",
"patch": "@@ -33,12 +33,14 @@\n \n namespace electron {\n \n+namespace {\n+\n void CalculatePopupXAndWidthHorizontallyCentered(\n int popup_preferred_width,\n const gfx::Rect& content_area_bounds,\n const gfx::Rect& element_bounds,\n bool is_rt... | 2023-01-19T18:44:23 |
golang/go | 350118666d75445761bef5c45e681415e6d1b326 | a1889554fc3e0c15b4a9870b49bf3a0252f80688 | net/http: don't modify caller's tls.Config.NextProtos
Clone the input slice before adjusting NextProtos
to add or remove "http/1.1" and "h2" entries,
so as not to modify a slice that the caller might be using.
(We clone the tls.Config that contains the slice, but
that's a shallow clone.)
Fixes #72100
Change-Id: I9f2... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"compress/zlib\"\n \t\"context\"\n \t\"crypto/tls\"\n+\t\"crypto/x509\"\n \t\"encoding/json\"\n \t\"errors\"\n \t\"fmt\"\n@@ -7335,3 +7336,71 @@ func TestInvalidChunkedBodies(t *testing.T) {\n \t\t})\n \t}\n }\n+\n+// Issue #7... | 2025-03-04T23:20:28 |
facebook/react | df42058237fdc0420116529a257f9550bce3312f | b55ccb1b84e4fb7f15a092c05b6c159c397c9922 | Fix variable-resolution hoisting issues
Fixes one category of bugs with const hoisting. The algorithm finds all consts
that need to be hoisted, then looks through the statements of a block to find
the first statement which references that const, delaying the emission of the
HoistedConst instruction until its actua... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -369,7 +369,7 @@ function lowerStatement(\n */\n s.traverse({\n Identifier(id: NodePath<t.Identifier>) {\n- const binding = stmt.scope.getBinding(id.node.name);\n+ const... | 2023-11-16T00:55:01 |
huggingface/transformers | b10552e99dc4974b30126995baea455df43f8476 | 423f2a31d2bd05bdc1dc30dd938389edaa998fde | Fix TypeError: 'NoneType' object is not iterable in GenerationMixin.generate (#45164)
Fix for None layer_types | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -1852,7 +1852,7 @@ def _prepare_cache_for_generation(\n # linear attention models always need to pass the config, otherwise it will use an Attention cache for the LinearAttention layers\n is_linear_attention = any(\n ... | 2026-04-02T13:55:16 |
electron/electron | b69236d1770d98768b3698760c81388c0ae9e3e2 | b1548c2dbefdcd8f823c18175715fc5d34b09781 | test: fix test for USB device.forget() (#36942) | [
{
"path": "spec/chromium-spec.ts",
"patch": "@@ -3071,7 +3071,7 @@ describe('navigator.usb', () => {\n if (haveDevices) {\n const grantedDevices = await w.webContents.executeJavaScript('navigator.usb.getDevices()');\n if (grantedDevices.length > 0) {\n- const deletedDevice = await w.w... | 2023-01-18T21:30:01 |
facebook/react | b55ccb1b84e4fb7f15a092c05b6c159c397c9922 | eacf189eca0af417f3250b9bbf15a987e3710da3 | Repro for hoisting bug
I had added a repro for this earlier but hadn't realized it was due to const
hoisting. Renaming this test to clarify what's causing the problem and to make
it easier to find. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.repro-uninitialized-value-kind-with-function-expression-params.expect.md",
"patch": "@@ -1,24 +0,0 @@\n-\n-## Input\n-\n-```javascript\n-function Component(props) {\n- // This `x` uses a context variable:\n- const... | 2023-11-16T00:34:28 |
golang/go | 52eaed66335e90ceb6ad65873889ccca46851ee9 | f95941de4908a45287d700697347aa69d714457b | runtime: decorate anonymous memory mappings
Leverage the prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, ...) API to name
the anonymous memory areas.
This API has been introduced in Linux 5.17 to decorate the anonymous
memory areas shown in /proc/<pid>/maps.
This is already used by glibc. See:
* https://sourceware.org/git/?... | [
{
"path": "src/internal/runtime/syscall/defs_linux.go",
"patch": "@@ -16,4 +16,7 @@ const (\n \tEPOLL_CTL_DEL = 0x2\n \tEPOLL_CTL_MOD = 0x3\n \tEFD_CLOEXEC = 0x80000\n+\n+\tPR_SET_VMA = 0x53564d41\n+\tPR_SET_VMA_ANON_NAME = 0\n )",
"additions": 3,
"deletions": 0,
"language": "Go"
}... | 2025-02-01T13:19:04 |
huggingface/transformers | 423f2a31d2bd05bdc1dc30dd938389edaa998fde | ade7a05a42bf53b183bb78c181743be063c5ff14 | fix(models): Fix dtype mismatch in SwitchTransformers and TimmWrapperModel (#45074)
* fix: Cast inputs to match weight dtype
* new: Add test
* change: Upcast to float32 instead of downcasting | [
{
"path": "src/transformers/models/switch_transformers/modeling_switch_transformers.py",
"patch": "@@ -91,6 +91,7 @@ def forward(self, hidden_states: torch.Tensor) -> tuple[torch.Tensor, torch.Tens\n if self.training and self.jitter_noise > 0:\n # Multiply the token inputs by the uniform... | 2026-04-02T13:21:19 |
vercel/next.js | 3d2150b73db346d5a54a5567d71564571d3dcec8 | 3e24a9f25140396d83b957e662d169b3862da6dd | [segment-explorer] Fix segment alignment (#80797) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx",
"patch": "@@ -236,7 +236,6 @@ export const DEV_TOOLS_INFO_RENDER_FILES_STYLES = css`\n padding: 2px 6px;\n border-radius: 16px;\n font-size: var(--size-12);\n- line-height: 16px;\n font-weigh... | 2025-06-23T11:59:41 |
ollama/ollama | de9673ac3fb1c57fbf6e5e194f1f3dc5a8b48668 | 96b202d34b82d1755887bf4204e1f2e053720d4f | tokenizer: add byte fallback for SentencePiece BPE encoding (#15232)
* tokenizer: add byte fallback for SentencePiece BPE encoding
When BPE merging produces tokens not in the vocabulary, fall back to
encoding each UTF-8 byte as <0xHH> byte tokens instead of silently
dropping the character. Also teach Decode to conver... | [
{
"path": "model/models/gemma4/tokenizer_reference_test.go",
"patch": "@@ -0,0 +1,341 @@\n+package gemma4\n+\n+// TestGemma4TokenizerMatchesReference verifies our BPE tokenizer matches\n+// the Rust tokenizers library (the reference implementation) for Gemma 4.\n+//\n+// The test loads vocabulary from any l... | 2026-04-02T20:04:45 |
electron/electron | b1548c2dbefdcd8f823c18175715fc5d34b09781 | 1d98b27a6643d6b6cbc4d9d426d6d5acc4b45e2a | fix: webview background color on reload (#36920) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1523,13 +1523,15 @@ void WebContents::HandleNewRenderFrame(\n // Set the background color of RenderWidgetHostView.\n auto* web_preferences = WebContentsPreferences::From(web_contents());\n if (web_preferences) {\n- absl::opti... | 2023-01-18T13:46:47 |
huggingface/transformers | 538368903c6ecdc5f489a8eed4ce809e58fdafb5 | abc417a4b6cf05e474921449641f2ff0cc93d3dd | [misc] fix qwen35 tests: correct the text model type and skip reverse_mapping (#45173)
* tests: skip qwen3.5 reverse mapping for vlm
* update | [
{
"path": "tests/models/qwen3_5/test_modeling_qwen3_5.py",
"patch": "@@ -162,7 +162,7 @@ def __init__(\n \"vocab_size\": 99,\n \"intermediate_size\": 37,\n \"max_position_embeddings\": 512,\n- \"model_type\": \"qwen3_vl\",\n+ \"model_type\": \"qwen3_... | 2026-04-02T12:47:39 |
facebook/react | eacf189eca0af417f3250b9bbf15a987e3710da3 | 369c315ac49806f5869ec3754cbd9747fe72993d | [playground] Remove button from error message
We show the entire error in panel, no need to click to console.log
This makes it easier to copy the error now.
Before:
https://github.com/facebook/react-forget/assets/565765/4c13abfe-a06d-4580-b3d7-b02792f53e57
After:
https://github.com/facebook/react-forget/a... | [
{
"path": "compiler/apps/playground/components/Editor/Output.tsx",
"patch": "@@ -17,7 +17,7 @@ import { type CompilerError } from \"babel-plugin-react-forget\";\n import parserBabel from \"prettier/plugins/babel\";\n import * as prettierPluginEstree from \"prettier/plugins/estree\";\n import * as prettier f... | 2023-11-16T12:01:59 |
golang/go | f95941de4908a45287d700697347aa69d714457b | ba3c57fc7ceb6c1158e81ccd8071cdeb7a6d6793 | net/http/httputil: skip new test on Plan 9
TestReverseProxyWebSocketHalfTCP requires half closed connections,
which aren't supported on Plan 9.
For #35892
Fixes #72095
Change-Id: I64b458bc15ac3b8eda43dc871bf67ada32a59708
Reviewed-on: https://go-review.googlesource.com/c/go/+/654636
Reviewed-by: Ian Lance Taylor <ian... | [
{
"path": "src/net/http/httputil/reverseproxy_test.go",
"patch": "@@ -23,6 +23,7 @@ import (\n \t\"net/url\"\n \t\"os\"\n \t\"reflect\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -1560,6 +1561,11 @@ func TestReverseProxyWebSocketHalfTCP(t *testing.T) {\n \t// - that closing the write... | 2025-03-04T18:07:15 |
vercel/next.js | 7acb9b6b5adb7953a4892b2b07ae241826d446c4 | e231928cb72587995d0ce995ef7c398c98e1f845 | [turbopack] Update Napi CLI to the latest 2x release (#80697)
## What
Update the napi cli to the latest 2x build 2.18.4
## Why
This will make it easy to pass custom cargo profiles to napi, which will make it easier to enable debug assertions, which will happen in a followup.
Part-of PACK-4578 | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -9,7 +9,7 @@ on:\n workflow_dispatch:\n \n env:\n- NAPI_CLI_VERSION: 2.16.2\n+ NAPI_CLI_VERSION: 2.18.4\n TURBO_VERSION: 2.3.3\n NODE_LTS_VERSION: 20\n CARGO_PROFILE_RELEASE_LTO: 'true'",
"additions": 1,
"deletions": 1,
"... | 2025-06-23T07:30:21 |
electron/electron | a9e7bb0027d6fc29a864d41fcd76cadd61a01e72 | ad1a09bb10870a73de95232d97886ae273226242 | fix: Cmd+Tab not working when exiting kiosk mode (#36854) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1030,9 +1030,12 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n is_kiosk_ = true;\n SetFullScreen(true);\n } else if (!kiosk && is_kiosk_) {\n- [NSApp setPresentationOptions:kiosk_options_];\n is_kiosk_ = false;\n ... | 2023-01-16T09:06:43 |
huggingface/transformers | a118714602774818c3a003b18d83ab48548e51d7 | bb8031052cbd88f8b30c75df84b9703eee80200f | Use doc-builder runnable example for GLM-ASR (#44277)
* use real tests frm the doc
* revert change
* now in main
* added runnable in the CI doctest (in parallel)
* explicitely activate hf-doc-builder
* added extra step for circleci
* doc pointers
* remove custom step
* use a single source of truth for the hf-d... | [
{
"path": "CONTRIBUTING.md",
"patch": "@@ -394,7 +394,7 @@ You'll need **[Python 3.9](https://github.com/huggingface/transformers/blob/main\n make sure you install the [documentation builder](https://github.com/huggingface/doc-builder).\n \n ```bash\n- pip install hf-doc-builder\n+ pip install \".... | 2026-04-02T08:47:07 |
golang/go | ba3c57fc7ceb6c1158e81ccd8071cdeb7a6d6793 | fd8938c799969ad8caec2aaec5a4966e48a17895 | os: guarantee min buffer size for ReadFile reads on /proc-like files
For instance, this fixes os.ReadFile on plan9's /net/iproute file.
But it's not necessarily plan9-specific; Linux /proc and /sys filesystems
can exhibit the same problems.
Fixes #72080
Change-Id: I60b035913f583a91c6d84df95a6ea7b7ec2b3c92
Reviewed-... | [
{
"path": "src/os/export_test.go",
"patch": "@@ -15,3 +15,5 @@ var ErrPatternHasSeparator = errPatternHasSeparator\n func init() {\n \tcheckWrapErr = true\n }\n+\n+var ExportReadFileContents = readFileContents",
"additions": 2,
"deletions": 0,
"language": "Go"
},
{
"path": "src/os/file.g... | 2025-03-03T17:21:26 |
facebook/react | ee68446ff198755bd38202ac9139275b657968b0 | aec521a96d3f1bebc2ba38553d14f4989c6e88e0 | [Fizz] handle errors in `onHeaders` (#27712)
`onHeaders` can throw however for now we can assume that headers are
optimistic values since the only things we produce for them are preload
links. This is a pragmatic decision because React could concievably have
headers in the future which were not optimistic and thus ... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -6131,6 +6131,10 @@ export function emitEarlyPreloads(\n if (onHeaders) {\n const headers = renderState.headers;\n if (headers) {\n+ // Even if onHeaders throws we don't want to call this again so\n+ /... | 2023-11-15T20:53:38 |
electron/electron | c953109f01ec595b5986542995fa7b86326e411d | 3f764cbbd52ee75755915928f7a604af788c3bb8 | build: remove older branch migration helpers (#36888)
* build: remove older branch migration helpers
* chore: fix typo | [
{
"path": "script/lib/utils.js",
"patch": "@@ -6,11 +6,6 @@ const path = require('path');\n const ELECTRON_DIR = path.resolve(__dirname, '..', '..');\n const SRC_DIR = path.resolve(ELECTRON_DIR, '..');\n \n-const RELEASE_BRANCH_PATTERN = /(\\d)+-(?:(?:[0-9]+-x$)|(?:x+-y$))/;\n-// TODO(main-migration): Simpl... | 2023-01-12T17:05:26 |
vercel/next.js | 5cbee8aef9ca95d372ab20486bcb71d0aeabe30f | 8a5545633e97063a1bc45dde0571a6e7a1955da8 | fix: fixed merge driver output, does not expect debugging messages to output on stdout (#80736)
The git merge driver does not expect debugging messages to output on
stdout, and instead requires them to output on stderr. This changes the
`console.log` to a `console.error` to account for this requirement. | [
{
"path": "scripts/merge-errors-json/merge.mjs",
"patch": "@@ -44,7 +44,7 @@ function main() {\n writeJsonSync(currentPath, merged)\n \n const addedCount = Object.keys(merged).length - Object.keys(current).length\n- console.log(\n+ console.error(\n `merge-errors-json: added ${addedCount ... | 2025-06-22T10:33:05 |
huggingface/transformers | bb8031052cbd88f8b30c75df84b9703eee80200f | f38d6639fa6b82a401f4e2ea7fef1a3eb550c1a6 | CI] Small T5 expectations updated (#45138)
fix t5 | [
{
"path": "tests/models/t5/test_modeling_t5.py",
"patch": "@@ -1058,7 +1058,7 @@ def test_small_v1_1_integration_test(self):\n loss = model(input_ids.to(torch_device), labels=labels.to(torch_device)).loss\n mtf_score = -(labels.shape[-1] * loss.item())\n \n- EXPECTED_SCORE = -40.1645\... | 2026-04-02T08:07:18 |
golang/go | fd8938c799969ad8caec2aaec5a4966e48a17895 | 32fdcd7ca5156b2a0e928aa34a7b88f301ddc6f1 | net/http: speed up cookie and method validation
Fixes #67031
Change-Id: I1d764afdc7e50d61007f5f71a674eb6872ce507a
GitHub-Last-Rev: 869535e843d2133fa5279297b002dd96725384e0
GitHub-Pull-Request: golang/go#71798
Reviewed-on: https://go-review.googlesource.com/c/go/+/650195
Auto-Submit: Sean Liao <sean@liao.dev>
LUCI-Try... | [
{
"path": "src/net/http/cookie.go",
"patch": "@@ -79,7 +79,7 @@ func ParseCookie(line string) ([]*Cookie, error) {\n \t\tif !found {\n \t\t\treturn nil, errEqualNotFoundInCookie\n \t\t}\n-\t\tif !isCookieNameValid(name) {\n+\t\tif !isToken(name) {\n \t\t\treturn nil, errInvalidCookieName\n \t\t}\n \t\tvalue... | 2025-02-17T18:39:58 |
facebook/react | 369c315ac49806f5869ec3754cbd9747fe72993d | 392a4fd9da8ff45f8cd050a17d4a01d89fc0c25f | [hir] Update error message to say global
This is non ideal but at least it's a step in the right direction.
Getting the correct error requires us to track every identifier and global,
which seems a bit excessive for now.
We can revisit and improve this error if this is starting to confuse folks. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -353,7 +353,7 @@ class InferenceState {\n effect = Effect.Mutate;\n } else {\n CompilerError.throwInvalidReact({\n- reason: `This mutates a variable after it wa... | 2023-11-15T17:03:55 |
ollama/ollama | 96b202d34b82d1755887bf4204e1f2e053720d4f | 79865e6c5a2f8aa7bc8135eacffdcbe2fea953d9 | Add support for gemma4 (#15214)
* bench: add prompt calibration, context size flag, and NumCtx reporting
Add --num-ctx flag to set context size, and report NumCtx in model info
header. Calibrate tokens-per-word ratio during warmup using actual
tokenization metrics from the model, replacing the fixed 1.3 heuristic.
Th... | [
{
"path": "api/types.go",
"patch": "@@ -436,6 +436,7 @@ type ToolProperty struct {\n \tDescription string `json:\"description,omitempty\"`\n \tEnum []any `json:\"enum,omitempty\"`\n \tProperties *ToolPropertiesMap `json:\"properties,omitempty\"`\n+\tRequired []string ... | 2026-04-02T18:33:33 |
electron/electron | ce56d614a373fee7d412143825e13d9bbbfb69b0 | a9c03950c080e31111e04c87ae5532ec2f608280 | chore: fix typo in promise rejection (#36763) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -272,7 +272,7 @@ WebContents.prototype.printToPDF = async function (options) {\n \n if (options.pageRanges !== undefined) {\n if (typeof options.pageRanges !== 'string') {\n- return Promise.reject(new Error('printBackground must be a Strin... | 2023-01-12T11:32:56 |
vercel/next.js | 8a5545633e97063a1bc45dde0571a6e7a1955da8 | da46d66667bbd877d651b12c2717b250301f52c0 | fix(turbopack): Do not run `inject_helpers` pass multiple times (#80755)
### What?
Remove `inject_helpers` passes from `apply_transforms`
### Why?
We run `inject_helpers` from `fn parse` anyway, so we don't need to run
it from `apply_transforms`. | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/transform/mod.rs",
"patch": "@@ -10,11 +10,7 @@ use swc_core::{\n ecma::{\n ast::{Module, ModuleItem, Program, Script},\n preset_env::{self, Targets},\n- transforms::{\n- base::{assumptions::Assumptions, helpers::inje... | 2025-06-22T10:31:06 |
facebook/react | 392a4fd9da8ff45f8cd050a17d4a01d89fc0c25f | 306fe03e7897199175780f80974b05bf376ad4f9 | [test] Add tests for mutating a global
The error is thrown correctly but the error message is incorrect. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.mutate-property-from-global.expect.md",
"patch": "@@ -0,0 +1,21 @@\n+\n+## Input\n+\n+```javascript\n+let wat = {};\n+\n+function Foo() {\n+ delete wat.foo;\n+ return wat;\n+}\n+\n+```\n+\n+\n+## Error\n+\n+```\n+... | 2023-11-15T17:03:51 |
ollama/ollama | 9e7cb9697edf3782a0f763dab1a36985ae0ff6a5 | 3824e380a82d3368855cc1c5b9d128cc2849c4f6 | mlx: fix vision capability + min version (#15106) | [
{
"path": "cmd/cmd_test.go",
"patch": "@@ -301,7 +301,7 @@ Weigh anchor!\n \t\t\t\tParameterSize: \"7B\",\n \t\t\t\tQuantizationLevel: \"FP16\",\n \t\t\t},\n-\t\t\tRequires: \"0.14.0\",\n+\t\t\tRequires: \"0.19.0\",\n \t\t}, false, &b); err != nil {\n \t\t\tt.Fatal(err)\n \t\t}\n@@ -310,10 +310,17 @@ We... | 2026-03-28T00:09:28 |
golang/go | 32fdcd7ca5156b2a0e928aa34a7b88f301ddc6f1 | a053e79024f56a2a64728b1287509e880fad203e | mime/quotedprintable: accept LWSP-char after =
SP and HTAB are allowed after a = before the following CRLF.
RFC 2045 section 6.7 describes the ABNF for the quoted-printable encoding:
qp-line := *(qp-segment transport-padding CRLF)
qp-part transport-padding
qp-segment := qp-section *(SPACE / TA... | [
{
"path": "src/mime/quotedprintable/reader.go",
"patch": "@@ -66,6 +66,7 @@ var (\n \tcrlf = []byte(\"\\r\\n\")\n \tlf = []byte(\"\\n\")\n \tsoftSuffix = []byte(\"=\")\n+\tlwspChar = \" \\t\"\n )\n \n // Read reads and decodes quoted-printable data from the underlying reader.\n@@ -92,7 +93,7... | 2024-12-22T10:28:56 |
huggingface/transformers | f38d6639fa6b82a401f4e2ea7fef1a3eb550c1a6 | 43ed69fe91642e0b37cdc243bb3af2629108f727 | fix: correct type annotations across config classes for @strict validation (#45007)
* fix: correct type annotations across config classes for @strict validation
Fix bool fields mistyped as int (would fail @strict validation):
- BigBird, Cohere2: use_cache: int → bool
- MBart, M2M100: scale_embedding: int → bool
- OLM... | [
{
"path": "src/transformers/models/align/configuration_align.py",
"patch": "@@ -50,8 +50,8 @@ class AlignTextConfig(PreTrainedConfig):\n num_attention_heads: int = 12\n intermediate_size: int = 3072\n hidden_act: str = \"gelu\"\n- hidden_dropout_prob: float = 0.1\n- attention_probs_dropout... | 2026-04-01T17:37:55 |
vercel/next.js | 322adb9835e6cadf3b33c9963ac2c1953581195a | 992d507c4ddd4f20ab3760fe91c42279d132bc03 | [devtools] Fix Turbopack indicator (#80753) | [
{
"path": "packages/next/next-devtools.webpack-config.js",
"patch": "@@ -18,7 +18,6 @@ function shouldIgnorePath(modulePath) {\n */\n module.exports = ({ dev, ...rest }) => {\n const experimental = false\n- const turbo = false\n \n const bundledReactChannel = experimental ? '-experimental' : ''\n \n@@... | 2025-06-22T08:13:42 |
electron/electron | fefb22a83d8f3ed4d16a8b2814873bdfbb4ee8a0 | 2a7d0a84c0c0e18b98e94816f2655cd69eeac471 | chore: enable microtask queue per window agent (#36870)
* chore: enable microtask queue per window agent
* chore: switch policies on context microtask queue
* fix: ensure node::Environment is valid | [
{
"path": "patches/v8/.patches",
"patch": "@@ -9,3 +9,4 @@ fix_disable_implies_dcheck_for_node_stream_array_buffers.patch\n revert_runtime_dhceck_terminating_exception_in_microtasks.patch\n chore_disable_is_execution_terminating_dcheck.patch\n force_cppheapcreateparams_to_be_noncopyable.patch\n+chore_allow_... | 2023-01-11T16:59:32 |
facebook/react | 696434fed83215829c6d907999ad7d636aa0baf5 | c434ef4b704ede228471697a49ba1e48d9d2486b | Fix ValidateNoSetStateInRender for loops | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateNoSetStateInRender.ts",
"patch": "@@ -16,7 +16,6 @@ import {\n } from \"../HIR\";\n import { PostDominator } from \"../HIR/Dominator\";\n import { eachInstructionValueOperand } from \"../HIR/visitors\";\n-import { findBlocksWithBa... | 2023-11-14T19:33:39 |
ollama/ollama | c9b2dcfc52e6fe172ea1169f94f1f6839a822c09 | b00bd1dfd4e9c8cf012eb8a1d2e406565f00d13e | anthropic: fix empty inputs in content blocks (#15105)
* anthropic: fix empty inputs in content blocks
When we switched to `api.ToolCallFunctionArguments`, `omitempty` stopped
doing what we were relying on it for before. This would cause non-tool
content blocks to have an `"input": {}` field, which doesn't match our
... | [
{
"path": "anthropic/anthropic.go",
"patch": "@@ -123,7 +123,7 @@ type ContentBlock struct {\n \t// For tool_use and server_tool_use blocks\n \tID string `json:\"id,omitempty\"`\n \tName string `json:\"name,omitempty\"`\n-\tInput api.ToolCallFunctionArgument... | 2026-03-27T22:41:27 |
golang/go | a053e79024f56a2a64728b1287509e880fad203e | 7181118a851bc22cf7acc604fe24940eb4926288 | net/http: support TCP half-close when HTTP is upgraded in ReverseProxy
This CL propagates closing the write stream from either side of the
reverse proxy and ensures the proxy waits for both copy-to and the
copy-from the backend to complete.
The new unit test checks communication through the reverse proxy when
the bac... | [
{
"path": "src/net/http/httputil/reverseproxy.go",
"patch": "@@ -793,7 +793,15 @@ func (p *ReverseProxy) handleUpgradeResponse(rw http.ResponseWriter, req *http.R\n \tspc := switchProtocolCopier{user: conn, backend: backConn}\n \tgo spc.copyToBackend(errc)\n \tgo spc.copyFromBackend(errc)\n-\t<-errc\n+\n+\t... | 2025-01-02T19:18:01 |
huggingface/transformers | 43ed69fe91642e0b37cdc243bb3af2629108f727 | d55f0350a25333406daeafb7c250bb4ba3bf43a1 | Fix explicit local code resolution for tokenizers and image processors (#45169)
* Fix tokenizer `explicit_local_code` detection
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
* Fix image processor `explicit_local_code` detection
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.gi... | [
{
"path": "src/transformers/models/auto/image_processing_auto.py",
"patch": "@@ -725,7 +725,7 @@ def from_pretrained(cls, pretrained_model_name_or_path, *inputs, **kwargs):\n has_remote_code = image_processor_auto_map is not None\n has_local_code = image_processor_class is not None or type(c... | 2026-04-01T17:00:34 |
electron/electron | 2a7d0a84c0c0e18b98e94816f2655cd69eeac471 | f31826f4a0c44756305087f11cf0de794e68c447 | fix: missing libcxx headers (#36863)
* chore: add libcxx script to precommit hook
* chore: run gen-libc++-filename.js | [
{
"path": "filenames.libcxx.gni",
"patch": "@@ -271,6 +271,10 @@ libcxx_headers = [\n \"//buildtools/third_party/libc++/trunk/include/__debug\",\n \"//buildtools/third_party/libc++/trunk/include/__debug_utils/randomize_range.h\",\n \"//buildtools/third_party/libc++/trunk/include/__errc\",\n+ \"//buil... | 2023-01-11T16:59:03 |
vercel/next.js | 4a4715e76105bd962e9a02e4bbcaf14d4034b4c7 | e830e85fd0e5f95d8e3fe83d2351bdd5a87b6781 | feat(turbopack): Print a warning about performance when starting with an invalidated cache (#80631)
We want to show a warning to the user when we start up with an invalidated cache, letting them know why `next dev` might be a little slower than usual.
This is done by writing a JSON-encoded `reason_code` value to the ... | [
{
"path": "crates/napi/src/next_api/project.rs",
"patch": "@@ -35,6 +35,7 @@ use turbo_tasks::{\n message_queue::{CompilationEvent, Severity, TimingEvent},\n trace::TraceRawVcs,\n };\n+use turbo_tasks_backend::db_invalidation::invalidation_reasons;\n use turbo_tasks_fs::{\n DiskFileSystem, FileC... | 2025-06-20T23:01:07 |
facebook/react | aec521a96d3f1bebc2ba38553d14f4989c6e88e0 | 593ecee66a609d4a4c2b36b39b1e5e23b2456dd1 | fix[devtools/useMemoCache]: implement a working copy of useMemoCache (#27659)
In https://github.com/facebook/react/pull/27472 I've removed broken
`useMemoCache` implementation and replaced it with a stub. It actually
produces errors when trying to inspect components, which are compiled
with Forget.
The main diff... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -26,6 +26,7 @@ import {\n ContextProvider,\n ForwardRef,\n } from 'react-reconciler/src/ReactWorkTags';\n+import {REACT_MEMO_CACHE_SENTINEL} from 'shared/ReactSymbols';\n \n type CurrentDispatcherRef = typeof ReactSharedInternal... | 2023-11-14T18:23:39 |
ollama/ollama | ac83ac20c444656f0f7d5bbad5b62da389395439 | e7ccc129ea45cd9383d91f0c233f324a95ad0572 | anthropic: fix KV cache reuse degraded by tool call argument reordering
Use typed structs for tool call arguments instead of map[string]any to
preserve JSON key order, which Go maps do not guarantee. | [
{
"path": "anthropic/anthropic.go",
"patch": "@@ -68,7 +68,7 @@ type MessagesRequest struct {\n \tModel string `json:\"model\"`\n \tMaxTokens int `json:\"max_tokens\"`\n \tMessages []MessageParam `json:\"messages\"`\n-\tSystem any `json:\"system,omit... | 2026-03-09T23:24:57 |
golang/go | 7181118a851bc22cf7acc604fe24940eb4926288 | bef2bb80a942a06bda2ff3aaedf46ff42d43aaf0 | net/http: check server shutting down before processing the request
The root cause of issue #65802 is a small race condition that occurs between
two events:
1. During the HTTP server shutdown, a connection in an idle state is identified
and closed.
2. The connection, although idle, has just finished reading a complete... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -2006,6 +2006,9 @@ func (c *conn) serve(ctx context.Context) {\n \t\t\t// If we read any bytes off the wire, we're active.\n \t\t\tc.setState(c.rwc, StateActive, runHooks)\n \t\t}\n+\t\tif c.server.shuttingDown() {\n+\t\t\treturn\n+\t\t}\n \t\tif err != nil {... | 2024-02-20T07:18:11 |
huggingface/transformers | d55f0350a25333406daeafb7c250bb4ba3bf43a1 | 38593c2e83964079576eb646fe9b68cce16114dc | Fix T5Attention shape mismatch under Tensor Parallelism (#45109)
* Fix T5Attention shape mismatch under Tensor Parallelism
T5Attention.forward hard-codes n_heads and inner_dim in view()
calls. When ColwiseParallel shards q/k/v projections, the output
dim becomes inner_dim / tp_size, but n_heads stays unchanged,
causi... | [
{
"path": "src/transformers/models/longt5/modeling_longt5.py",
"patch": "@@ -433,8 +433,8 @@ def forward(\n # if key_value_states are provided this layer is used as a cross-attention layer for the decoder\n is_cross_attention = key_value_states is not None\n \n- query_states = self.q(... | 2026-04-01T16:11:11 |
electron/electron | f31826f4a0c44756305087f11cf0de794e68c447 | 1d9a4ab02cb198de27de8636d0893bcc27c671cf | fix: `getUserMedia` duplicate permissions call (#36787)
* fix: getUserMedia duplicate permissions call
* test: add regression test | [
{
"path": "patches/chromium/short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch",
"patch": "@@ -15,60 +15,60 @@ short-circuit all the permissions checks in MSDC for now to allow us to\n unduplicate this code.\n \n diff --git a/components/webrtc/media_stream_devices_controller.cc b/compone... | 2023-01-11T10:55:31 |
facebook/react | c434ef4b704ede228471697a49ba1e48d9d2486b | 00abc5acf5e02fc72b1f7107d803efcdb358f441 | [validation] Patch false positives for hook calls after loops
---
We were throwing `InvalidReact` errors on valid inputs.
```js
// Input
function Foo() {
log("block0");
for (const _ of foo) {
log("loop");
}
useBar();
}
// IR
bb0:
// log("block0");
ForOf init=bb2 loop=bb3 fallthrough=bb1
... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateUnconditionalHooks.ts",
"patch": "@@ -12,7 +12,6 @@ import {\n } from \"../CompilerError\";\n import { PostDominator, computePostDominatorTree } from \"../HIR/Dominator\";\n import { BlockId, HIRFunction, SourceLocation, getHookKi... | 2023-11-14T18:04:31 |
ollama/ollama | e7ccc129ea45cd9383d91f0c233f324a95ad0572 | 69ed0c2729cfc9d30c797bd34bf12f5c6baaf373 | app: fix false "out of date" model warnings (#15101)
The staleness check compared the local manifest digest (SHA256 of the
file on disk) against the registry's Ollama-Content-Digest header.
These never matched because PullModel re-serializes the manifest JSON
before writing, producing different bytes than the registry... | [
{
"path": "app/ui/app/codegen/gotypes.gen.ts",
"patch": "@@ -550,14 +550,12 @@ export class Error {\n }\n }\n export class ModelUpstreamResponse {\n- digest?: string;\n- pushTime: number;\n+ stale: boolean;\n error?: string;\n \n constructor(source: any = {}) {\n if ('string' ==... | 2026-03-27T21:15:10 |
vercel/next.js | 6c70938cb748c0d196da9344d072a52d31e62914 | 1f04759542ae24defecf72de0fd00fc560e48b68 | [ppr] RDC for RSCs (#79638)
This pull request introduces support for handling postponed state in
dynamic React Server Components (or RSC) requests, enabling the use of
the encoded Resume Data Cache (or RDC). The changes include adjustments
to the server logic to better manage dynamic responses and improve
caching beha... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -712,5 +712,7 @@\n \"711\": \"Can't resolve %s\",\n \"712\": \"`rspack.warnForEdgeRuntime` is not supported by the wasm bindings.\",\n \"713\": \"Unexpected error during process lookup\",\n- \"714\": \"cannot run loadNative when `NEXT_TEST_WASM` is ... | 2025-06-20T22:04:44 |
golang/go | bef2bb80a942a06bda2ff3aaedf46ff42d43aaf0 | 4c0a47a8ff74c5fe4366e1016250607943562569 | cmd/compile,cmd/link: move to DWARF5-style location lists
This patch updates the compiler to generate DWARF5-style location
lists (e.g. entries that feed into .debug_loclists) as opposed to
DWARF4-style location lists (which wind up in .debug_loc). The DWARF5
format is much more compact, and can make indirect referenc... | [
{
"path": "src/cmd/compile/internal/ssa/debug.go",
"patch": "@@ -1486,8 +1486,67 @@ func (state *debugState) writePendingEntry(varID VarID, endBlock, endValue ID) {\n \tstate.lists[varID] = list\n }\n \n-// PutLocationList adds list (a location list in its intermediate representation) to listSym.\n+// PutLo... | 2024-12-13T01:47:30 |
huggingface/transformers | 38593c2e83964079576eb646fe9b68cce16114dc | c1237d9bec73c24546b909b10468eef5043ec30f | [refactor] Serving into proper modules (#44796)
* new serve file
* app
* model_manager done
* update serve
* style
* poc done
* renaming
* fix
* new tests
* update metrics and processor
* hardcode n_batch for now
* add response api + compile
* more tests
* add it for now but we will move it
* remove cach... | [
{
"path": "docker/transformers-all-latest-gpu/Dockerfile",
"patch": "@@ -105,6 +105,9 @@ RUN python3 -m pip install --no-cache-dir python-Levenshtein\n # For `FastSpeech2ConformerTokenizer` tokenizer\n RUN python3 -m pip install --no-cache-dir g2p-en\n \n+# For serving tests (audio pipelines)\n+RUN python3 ... | 2026-04-01T15:42:00 |
ollama/ollama | d1151e18a1a689e47d2c1c27538213ae412d0297 | ebbce136c7e035872ca7027dc9438bc2efc17123 | mlx: fix KV cache snapshot memory leak
mlx.Copy shares the backing buffer with its source (via
copy_shared_buffer) rather than allocating independent storage.
When used to snapshot a slice of the KV cache, the snapshot array
holds the entire original cache buffer alive through the shared
data pointer — even after eval... | [
{
"path": "x/mlxrunner/cache/cache.go",
"patch": "@@ -109,8 +109,8 @@ func (c *KVCache) Snapshot(fromOffset int) Snapshot {\n \n \tkSlice := c.keys.Slice(mlx.Slice(), mlx.Slice(), mlx.Slice(from, to), mlx.Slice())\n \tvSlice := c.values.Slice(mlx.Slice(), mlx.Slice(), mlx.Slice(from, to), mlx.Slice())\n-\tk... | 2026-03-25T17:47:59 |
facebook/react | 00abc5acf5e02fc72b1f7107d803efcdb358f441 | 2efd85f145c021ac61098844b69353fc49b3878d | [be][tests] Run todo fixtures
---
Snap should compile all fixtures to record changes in results, even `todo`
prefixed ones. Previously, they were skipped as we noted the correlation of `//
@skip` pragmas and file naming.
Now, no fixture should be skipped as our compiler pipeline should be able to
handle every ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/rules-of-hooks/todo.bail.rules-of-hooks-279ac76f53af.expect.md",
"patch": "@@ -0,0 +1,29 @@\n+\n+## Input\n+\n+```javascript\n+// @skip\n+// Unsupported input\n+\n+// Valid -- this is a regression test.\n+jest.useFakeTime... | 2023-11-14T18:04:28 |
golang/go | 4c0a47a8ff74c5fe4366e1016250607943562569 | 4f45b2b7e079fc03d3444642e8a33ce6f959c6a6 | cmd/compile,cmd/link: move to DWARF5-style range lists
This patch updates the compiler to generate DWARF5-style range lists
(e.g. entries that feed into .debug_rnglists) as opposed to
DWARF4-style range lists (which wind up in .debug_ranges). The DWARF5
format is much more compact, and can make indirect references to ... | [
{
"path": "src/cmd/internal/dwarf/dwarf.go",
"patch": "@@ -1059,12 +1059,41 @@ func PutBasedRanges(ctxt Context, sym Sym, ranges []Range) {\n \tctxt.AddInt(sym, ps, 0)\n }\n \n+// PutRngListRanges writes a DWARF5-style set of rangelist entries to sym,\n+// using base as a starting/base address.\n+func PutRn... | 2024-12-12T00:20:58 |
huggingface/transformers | c1237d9bec73c24546b909b10468eef5043ec30f | 6abd9725ee7d809dc974991f8ff6c958afb63a3a | Re-add regex substitutions to the response parsing spec (#45166)
* Re-add regex substitutions to the spec
* make fix-repo
* Update the test schema to drop the empty content block
* Trigger tests | [
{
"path": "src/transformers/utils/chat_parsing_utils.py",
"patch": "@@ -70,14 +70,22 @@ def recursive_parse(\n \n # If not, we have to do a little parsing. First, set some vars and do basic validation\n node_type = node_schema.get(\"type\")\n- has_regex = \"x-regex\" in node_schema or \"x-regex-i... | 2026-04-01T15:46:32 |
vercel/next.js | 6afdb1b8778438e2d69e894049a0ba49c90fa542 | 2502c0a40c78b4eaa284c5b2925430764c384137 | [turbopack] Reduce indirection in turbo-tasks dispatching (#80695)
### What?
TurboTasks uses numeric ids to reference traits, values and functions, these are used to in serialization routines, dispatching and runtime type checking for traits.
This PR adjusts the dispatching codepaths to instead leverage `&'static` re... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -24,8 +24,8 @@ use rustc_hash::{FxHashMap, FxHashSet, FxHasher};\n use smallvec::{SmallVec, smallvec};\n use tokio::time::{Duration, Instant};\n use turbo_tasks::{\n- CellId, FunctionId, FxDashMap, KeyValuePair, RawVc, Read... | 2025-06-20T20:46:43 |
ollama/ollama | 4fda69809a3fecf73d0f71657ef50f8f7e8f43f7 | c9b5da6b0c862ccf6c92f89a26aad27442d4c59b | ci: fix windows cgo compiler error (#15046) | [
{
"path": ".github/workflows/test.yaml",
"patch": "@@ -64,6 +64,7 @@ jobs:\n container: nvidia/cuda:13.0.0-devel-ubuntu22.04\n extra-packages: libcudnn9-dev-cuda-13 libopenblas-dev liblapack-dev liblapacke-dev git curl\n flags: '-DCMAKE_CUDA_ARCHITECTURES=87 -DBLAS_INCLUD... | 2026-03-24T23:45:36 |
facebook/react | 593ecee66a609d4a4c2b36b39b1e5e23b2456dd1 | 07cc4a0002d0bbaaf8910404895eeb9c199831c4 | Add a feature flag to enable expiration of retry lanes (#27694)
An attempt to see if we can bring back expiration of retry lanes to
avoid cases resolving Suspense can be starved by frequent updates.
In the past, this caused increase browser crashes, but a lot of time has
passed since then. Just trying if we can r... | [
{
"path": "packages/react-reconciler/src/ReactFiberLane.js",
"patch": "@@ -19,11 +19,12 @@ export type Lane = number;\n export type LaneMap<T> = Array<T>;\n \n import {\n- enableSchedulingProfiler,\n- enableUpdaterTracking,\n allowConcurrentByDefault,\n+ enableRetryLaneExpiration,\n+ enableSchedulingP... | 2023-11-14T15:15:17 |
golang/go | 4f45b2b7e079fc03d3444642e8a33ce6f959c6a6 | 82791889ccfbcf7656b31211619a213b7f3109c5 | cmd/compile: fix out of memory when inlining closure
CL 629195 strongly favor closure inlining, allowing closures to be
inlined more aggressively.
However, if the closure body contains a call to a function, which itself
is one of the call arguments, it causes the infinite inlining.
Fixing this by prevent this kind o... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -1033,6 +1033,28 @@ func canInlineCallExpr(callerfn *ir.Func, n *ir.CallExpr, callee *ir.Func, bigCa\n \t\t\treturn false, 0, false\n \t\t}\n \t}\n+\tdo := func(fn *ir.Func) bool {\n+\t\t// Can't recursively inline a function if the function b... | 2025-03-03T13:45:13 |
huggingface/transformers | 6abd9725ee7d809dc974991f8ff6c958afb63a3a | 9914a3641f7aaaabb0bcdfcd73a54a1cfa70c3e7 | fix bug for janus model image generation (#45044)
* fix bug for janus model image generation
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* update expected tokens
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* update
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* update comment
Signed-off-b... | [
{
"path": "src/transformers/models/janus/modeling_janus.py",
"patch": "@@ -18,7 +18,6 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n-import copy\n from collections.abc import Callable\n from dataclasses import dataclass\n \n@@ -1204,23 +120... | 2026-04-01T10:02:10 |
vercel/next.js | 2502c0a40c78b4eaa284c5b2925430764c384137 | baf3a7123f0fa8734ec5e452cc325cd2b1926991 | chore(swc-wasm): Fix and clean up various issues with swc-wasm tests (#80471)
- Follow the naming conventions of other environment variables and prefix `TEST_WASM` with `NEXT_TEST_WASM` so that there's less chance of conflicts with user code
- Remove the logic in `setup-wasm.mjs` that modifies the repository (not grea... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -473,15 +473,12 @@ jobs:\n skipNativeInstall: 'yes'\n afterBuild: |\n rustup target add wasm32-unknown-unknown\n- curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh\n node ./scripts/normalize... | 2025-06-20T20:14:43 |
ollama/ollama | 95ee7fbd29c6a0ceff073db87b81b005cd15b9c5 | ec55536734976ae12f0186b667cd698d1e9f92d2 | mlxrunner: panic on double unpin | [
{
"path": "x/mlxrunner/cache/recurrent.go",
"patch": "@@ -22,14 +22,9 @@ func (c *RecurrentCache) setStateRaw(old, v *mlx.Array) *mlx.Array {\n \tif v == nil || !v.Valid() {\n \t\treturn old\n \t}\n-\tif old == v {\n-\t\treturn old\n-\t}\n \n \tmlx.Pin(v)\n-\tif old != nil && old != v {\n-\t\tmlx.Unpin(old)... | 2026-03-20T23:10:19 |
electron/electron | 1d9a4ab02cb198de27de8636d0893bcc27c671cf | b3d16e727c587cd9933b3f9f76276ab4511c5aac | chore: bump node to v18.13.0 (main) (#36818)
* chore: bump node in DEPS to v18.13.0
* child_process: validate arguments for null bytes
https://github.com/nodejs/node/pull/44782
* bootstrap: merge main thread and worker thread initializations
https://github.com/nodejs/node/pull/44869
* module: ensure rel... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '111.0.5518.0',\n 'node_version':\n- 'v18.12.1',\n+ 'v18.13.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2023-01-11T10:33:48 |
facebook/react | 084e4325b9eaa26d4c5313f55c2d612579d379fb | 0821a57fa88021ffaca92043653c7ff8646f89ba | Convert PanicThresholdOptions to zod type | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts",
"patch": "@@ -6,25 +6,29 @@\n */\n \n import * as t from \"@babel/types\";\n+import { z } from \"zod\";\n import { CompilerErrorDetailOptions } from \"../CompilerError\";\n import { ExternalFunction, PartialEnvironmentConfig... | 2023-11-14T11:46:23 |
golang/go | 82791889ccfbcf7656b31211619a213b7f3109c5 | 3b9d10cce787a6ab358a489b604edccb5414baf2 | crypto/internal/fips140/bigmod/_asm: update avo to v0.6.0
avo v0.4.0 x/tools dependency crashes while parsing with Go 1.25.
Change-Id: Ic951066b0b39b477887ad0e32be44f4d88d4c2f1
Reviewed-on: https://go-review.googlesource.com/c/go/+/653175
Reviewed-by: Michael Pratt <mpratt@google.com>
Auto-Submit: Daniel Martí <mvdan... | [
{
"path": "src/crypto/internal/fips140/bigmod/_asm/go.mod",
"patch": "@@ -1,12 +1,10 @@\n module crypto/internal/fips140/bigmod/_asm\n \n-go 1.19\n+go 1.25\n \n-require github.com/mmcloughlin/avo v0.4.0\n+require github.com/mmcloughlin/avo v0.6.0\n \n require (\n-\tgolang.org/x/mod v0.4.2 // indirect\n-\tgo... | 2025-02-27T01:43:43 |
huggingface/transformers | 9914a3641f7aaaabb0bcdfcd73a54a1cfa70c3e7 | e7e9efaa455d037f8fb33432c535555915b17e2f | Fix incorrect TrainingArguments example in training.md (#45150)
* Correct comment in training.md for TrainingArguments
Fix comment formatting for TrainingArguments instantiation.
* Update docs/source/en/training.md
Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com>
---------
Co-authored-by: S... | [
{
"path": "docs/source/en/training.md",
"patch": "@@ -115,7 +115,7 @@ model = AutoModelForCausalLM.from_pretrained(model_name, dtype=\"auto\")\n </hfoptions>\n \n ```py\n-TrainingArguments(\n+training_args = TrainingArguments(\n output_dir=\"qwen3-finetuned\",\n num_train_epochs=3,\n per_device_... | 2026-03-31T18:25:06 |
electron/electron | 414791232a79c783d3d758fe11a864344d513660 | 168726a0521dd53f160b216f7b84832b1368fff5 | fix: RTL `WindowButtonsProxy` buttons (#36839)
* fix: RTL WindowButtonsProxy buttons
* chore: address review feedback | [
{
"path": "shell/browser/browser.h",
"patch": "@@ -202,6 +202,8 @@ class Browser : public WindowListObserver {\n bool UpdateUserActivityState(const std::string& type,\n base::Value::Dict user_info);\n \n+ void ApplyForcedRTL();\n+\n // Bounce the dock icon.\n enum class... | 2023-01-10T11:19:00 |
vercel/next.js | ac59bdad61163bf2b8ff2503c5ff6951a95e197e | 0fbbb6a3e025aba3d18f2b2853ee677ba8d4984c | [devtools] port runtime error handling to hook (#80567)
This will be used for sharing the error across the Error Overlay and the DevTools Panel. | [
{
"path": "packages/next/src/next-devtools/dev-overlay/container/errors.tsx",
"patch": "@@ -1,11 +1,10 @@\n-import { useState, useMemo, useRef, Suspense } from 'react'\n+import { useMemo, useRef, Suspense } from 'react'\n import type { DebugInfo } from '../../shared/types'\n import { Overlay, OverlayBackdro... | 2025-06-20T18:09:12 |
facebook/react | 0821a57fa88021ffaca92043653c7ff8646f89ba | 07d6c6d8aad8767f1b6dc9b6724e60951df5598d | [playground] Capture Babel parsing errors
Before:
<img width="1416" alt="Screenshot 2023-11-14 at 9 09 53 AM"
src="https://github.com/facebook/react-forget/assets/565765/f53daf34-080a-4804-9a61-77c141c05d21">
After:
<img width="1444" alt="Screenshot 2023-11-14 at 9 09 45 AM"
src="https://github.com/facebook/r... | [
{
"path": "compiler/apps/playground/components/Editor/EditorImpl.tsx",
"patch": "@@ -84,6 +84,12 @@ function parseFunctions(\n });\n } catch (e) {\n console.error(e);\n+ CompilerError.throwInvalidJS({\n+ reason: String(e),\n+ description: null,\n+ loc: null,\n+ suggestions: ... | 2023-11-14T18:24:38 |
ollama/ollama | c2b0bb7a52b02a50e63274f07a21a4539e3cfe19 | 22c2bdbd8add79c6fca2eb2538ab36fcd4a9ca48 | mlx: update as of 3/23 (#14789)
* mlx: update to HEAD on 3/23
Also fixes a few misc vendoring bugs uncovered with this first update.
This also renames the version files to make them clearer.
* CUDA Fast Gated Delta kernel
* mlx: detect eval errors and panic
On model errors or missing kernels, don't mask the error,... | [
{
"path": "Dockerfile",
"patch": "@@ -157,7 +157,7 @@ COPY CMakeLists.txt CMakePresets.json .\n COPY ml/backend/ggml/ggml ml/backend/ggml/ggml\n COPY x/imagegen/mlx x/imagegen/mlx\n COPY go.mod go.sum .\n-COPY MLX_VERSION MLX_CORE_VERSION .\n+COPY MLX_VERSION MLX_C_VERSION .\n RUN curl -fsSL https://golang.... | 2026-03-23T18:28:44 |
golang/go | 3b9d10cce787a6ab358a489b604edccb5414baf2 | 2ce1fb4220e1978d8ea7c615f8ae2d9170985640 | net/textproto: document enforcement of RFC 9112 for headers
Fixes #68590
Change-Id: Ie7cf1fe8379182f86317d5ebb7f45a404ecd70e9
Reviewed-on: https://go-review.googlesource.com/c/go/+/601555
Auto-Submit: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "src/net/textproto/reader.go",
"patch": "@@ -642,8 +642,8 @@ func (r *Reader) upcomingHeaderKeys() (n int) {\n // the rest are converted to lowercase. For example, the\n // canonical key for \"accept-encoding\" is \"Accept-Encoding\".\n // MIME header keys are assumed to be ASCII only.\n-// If s c... | 2024-07-27T08:15:31 |
huggingface/transformers | bc576731d46cdf0936daf0833dc1a1bdd1b4898a | 81db7d3513a7045ef96c55eec71b8075c529d098 | DeepGEMM (#44832)
* deep gemm
* standardize
* clear deepgemm flow and blackwell optimization
* avoid unnecessary gathers in grouped mm
* assertions and drop the synced path
* use lazy load kernel
* style
* add prefix and check for cuda runtime version
* better names
* exit on missing functions
* comment abou... | [
{
"path": "src/transformers/integrations/finegrained_fp8.py",
"patch": "@@ -19,8 +19,9 @@\n from ..activations import ACT2FN\n from ..core_model_loading import ConversionOps, _IdentityOp\n from ..quantizers.quantizers_utils import should_convert_module\n-from ..utils import is_kernels_available, is_torch_av... | 2026-03-31T15:04:02 |
electron/electron | 168726a0521dd53f160b216f7b84832b1368fff5 | 1c9e7687f9a13580fb38a93bd0578f2f849ebd07 | fix: handle null/undefined options for fs.readdir (#34764) | [
{
"path": "lib/asar/fs-wrapper.ts",
"patch": "@@ -623,11 +623,11 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n };\n \n const { readdir } = fs;\n- fs.readdir = function (pathArgument: string, options: { encoding?: string | null; withFileTypes?: boolean } = {}, callback?: Function) {\... | 2023-01-10T11:16:39 |
facebook/react | 07d6c6d8aad8767f1b6dc9b6724e60951df5598d | 0794aacdbf8b3a995cdbb49966c716cf8d6d224f | [playground] Show error when compiling unsupported functions
Before:
<img width="1117" alt="Screenshot 2023-11-14 at 9 11 28 AM"
src="https://github.com/facebook/react-forget/assets/565765/d1ec2b5f-1bc5-4d29-9811-effcd39581e4">
After:
<img width="1115" alt="Screenshot 2023-11-14 at 9 11 18 AM"
src="https://gi... | [
{
"path": "compiler/apps/playground/components/Editor/EditorImpl.tsx",
"patch": "@@ -9,7 +9,10 @@ import { parse, ParserPlugin } from \"@babel/parser\";\n import traverse, { NodePath } from \"@babel/traverse\";\n import * as t from \"@babel/types\";\n import {\n+ CompilerError,\n+ CompilerErrorDetail,\n ... | 2023-11-14T09:10:31 |
vercel/next.js | 44c0809a31fd23e5c33c24636bfe82a6024e230b | 8a9682f791953e13af7f53fd17caa29c749e503a | [devtools] port call stack (#80550)
Since the Error Overlay call stack had dedicated handlers for animation, it wasn't able to reuse them. Therefore, port the UI part of the call stack and receive handlers as props, so that the call stack component can be shared with the Error Overlay and the DevTools panel. | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/call-stack/call-stack.stories.tsx",
"patch": "@@ -1,6 +1,6 @@\n import type { Meta, StoryObj } from '@storybook/react'\n import { CallStack } from './call-stack'\n-import { withShadowPortal } from '../../../storybook/with-shadow-portal'\n+imp... | 2025-06-20T16:45:23 |
ollama/ollama | d7c176ab91724751df0eb74ee1df1f8571b515ce | 0ff7d724ff5a807c420dfe6f9bd1870c546ea426 | llm, mlxrunner: fix done channel value consumed by first receiver
Receiving from a buffered chan error consumes the value, so only the
first caller (WaitUntilRunning, HasExited, or Close) sees the signal.
Subsequent receivers block or take the wrong branch. Replace with a
closed chan struct{} which can be received fro... | [
{
"path": "llm/server.go",
"patch": "@@ -87,7 +87,8 @@ type LlamaServer interface {\n type llmServer struct {\n \tport int\n \tcmd *exec.Cmd\n-\tdone chan error // Channel to signal when the process exits\n+\tdone chan struct{} // closed when the process exits\n+\tdoneErr error ... | 2026-03-18T23:30:43 |
golang/go | 7e81bcf39fe40e975e2c72375ab28ae9bf272d62 | 0a0e6af39b0ff38f7d5a8a9f3f6d38ebc081663f | go/types, types2: remove remaining mentions of core type in error messages
The implementatiom still calls coreType in places and refers to
"core types" in comments, but user-visible error messages don't
know about core types anymore.
This brings the user-visible part of the implementation in sync with
the spec which ... | [
{
"path": "src/cmd/compile/internal/types2/index.go",
"patch": "@@ -217,7 +217,7 @@ func (check *Checker) sliceExpr(x *operand, e *syntax.SliceExpr) {\n \tlength := int64(-1) // valid if >= 0\n \tswitch u := coreString(x.typ).(type) {\n \tcase nil:\n-\t\tcheck.errorf(x, NonSliceableOperand, invalidOp+\"cann... | 2025-03-03T20:26:51 |
huggingface/transformers | 81db7d3513a7045ef96c55eec71b8075c529d098 | 2dba8e0495974930af02274d75bd182d22cc1686 | fix: prefer registered config over remote code in AutoConfig.from_pretrained (#45094)
* Prefer registered classes over remote code in Auto*.from_pretrained
When a class has been explicitly registered via AutoConfig.register()
(or other Auto*.register()), it should take precedence over auto_map
remote code. Previously... | [
{
"path": "src/transformers/models/auto/auto_factory.py",
"patch": "@@ -208,6 +208,9 @@ def from_config(cls, config, **kwargs):\n trust_remote_code = kwargs.pop(\"trust_remote_code\", None)\n has_remote_code = hasattr(config, \"auto_map\") and cls.__name__ in config.auto_map\n has_lo... | 2026-03-31T14:40:50 |
ollama/ollama | 0ff7d724ff5a807c420dfe6f9bd1870c546ea426 | 46cb7795e1b59e24c6f540ce1fad5ac630982a0a | mlx: fix subprocess log deadlock
The stderr reader used bufio.Scanner which has a 64KB max line size.
If the subprocess wrote a line exceeding this limit, the scanner would
stop reading, the OS pipe buffer would fill, and the subprocess would
deadlock.
Replace the scanner with a statusWriter that wraps io.Copy. The w... | [
{
"path": "x/mlxrunner/client.go",
"patch": "@@ -2,6 +2,7 @@ package mlxrunner\n \n import (\n \t\"bufio\"\n+\t\"bytes\"\n \t\"context\"\n \t\"encoding/json\"\n \t\"errors\"\n@@ -38,12 +39,66 @@ type Client struct {\n \tmemory atomic.Uint64\n \tdone chan error\n \tclient *http.Client\... | 2026-03-18T00:02:51 |
electron/electron | f56a26c4f70dca6e9468ba15a82007d4a9ad53d6 | 1a9c338c92a50ad2891953a7fd2cecc2e7414bc0 | build: fix broken stale issues workflow (#36843) | [
{
"path": ".github/workflows/stale.yml",
"patch": "@@ -24,6 +24,7 @@ jobs:\n exempt-issue-labels: \"discussion,security \\U0001F512,enhancement :sparkles:\"\n only-pr-labels: not-a-real-label\n pending-repro:\n+ runs-on: ubuntu-latest\n steps:\n - uses: actions/stale@3de26... | 2023-01-09T18:16:58 |
facebook/react | 480c11bdb199794160cab0ede3a7b696e47edb98 | 800b874ed1841220e97737136a3a18b1a139eb31 | [hoisting] Make hoisting related errors consolidatable
Noticed from our paste that we weren't correctly rolling up hoisting related
errors due to specific information being in the error title, so this PR moves
them into description instead. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -27,6 +27,7 @@ import {\n } from \"../HIR/HIR\";\n import { FunctionSignature } from \"../HIR/ObjectShape\";\n import {\n+ printIdentifier,\n printMixedHIR,\n printPlace,\n printSourceLocation... | 2023-11-13T21:54:54 |
vercel/next.js | 80062e58bb8df11b987ee6e96a16815073605b6b | 7446af4fce02d37d943163e146b369e169edb421 | fix: rspack code analyzer should only handle javascript module (#80711)
When import json module in middleware will case error, because
codeAnalyzerBySwc should only handle javascript module. | [
{
"path": "packages/next/src/build/webpack/plugins/middleware-plugin.ts",
"patch": "@@ -583,7 +583,12 @@ async function codeAnalyzerBySwc(\n if (module.constructor.name !== 'NormalModule') {\n continue\n }\n- const originalSource = (module as webpack.NormalModule).originalSource()\n+ con... | 2025-06-20T16:34:47 |
golang/go | 0a0e6af39b0ff38f7d5a8a9f3f6d38ebc081663f | 14647b0ac881f084f0063ddb32341fba71e1d2e4 | context: use atomic operation in ctx.Err
oos: darwin
goarch: arm64
pkg: context
cpu: Apple M1 Pro
│ /tmp/bench.0.mac │ /tmp/bench.1.mac │
│ sec/op │ sec/op vs base │
ErrOK-10 13.750n ± 1% 2.080n ± 0% -84.87% (p=0.000 n=10)
E... | [
{
"path": "src/context/benchmark_test.go",
"patch": "@@ -188,3 +188,23 @@ func BenchmarkDeepValueSameGoRoutine(b *testing.B) {\n \t\t})\n \t}\n }\n+\n+func BenchmarkErrOK(b *testing.B) {\n+\tctx, cancel := WithCancel(Background())\n+\tdefer cancel()\n+\tfor b.Loop() {\n+\t\tif err := ctx.Err(); err != nil {... | 2025-02-28T23:22:58 |
facebook/react | 800b874ed1841220e97737136a3a18b1a139eb31 | e6c5c9a0053a466b3049e3bd4513b92b5c18e1c5 | fix main
Forgot to update snapshots when addressing PR feedback. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/validate-no-set-state-in-render-uncalled-function-with-mutable-range-is-valid.expect.md",
"patch": "@@ -7,12 +7,12 @@ function Component(props) {\n const logEvent = useLogging(props.appId);\n const [currentStep, setCu... | 2023-11-13T21:14:27 |
electron/electron | 0d05273024459e911097948fcaaca834f15c9f04 | 90af7d7fe2fc70984404474feec4ac2c827794fe | docs: fix link in breaking-changes.md (#36793) | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -260,7 +260,7 @@ requires unsafe mode), so Electron is unable to support this feature on Linux.\n \n The handler invoked when `session.setDevicePermissionHandler(handler)` is used\n has a change to its arguments. This handler no longer is passed a frame\n-... | 2023-01-09T07:37:57 |
ollama/ollama | 46cb7795e1b59e24c6f540ce1fad5ac630982a0a | 126d8db7f3ad151ead9fb588f3a56cd5f5c9c13b | add ability to turn on debug request logging (#14106)
If `OLLAMA_DEBUG_LOG_REQUESTS` is set, then on server startup a temp
folder will be created. Upon any inference request, the body will be
logged to a file in this folder, as well as a small shell script to
"replay" the request using cURL.
This is just intended for... | [
{
"path": "envconfig/config.go",
"patch": "@@ -214,6 +214,8 @@ func LogLevel() slog.Level {\n var (\n \t// FlashAttention enables the experimental flash attention feature.\n \tFlashAttention = BoolWithDefault(\"OLLAMA_FLASH_ATTENTION\")\n+\t// DebugLogRequests logs inference requests to disk for replay/debu... | 2026-03-20T00:08:17 |
vercel/next.js | 7446af4fce02d37d943163e146b369e169edb421 | f004f2cd854a7bec5f3e3c2157f2674977b6d67e | add git merge driver for errors.json (#80722)
Adds a merge driver that can automatically re-number messages added to
`errors.json` if a merge conflict occurs. Now, it would be easier to
just run `pnpm update-error-codes`, but that's slow and requires
installing deps + building everything, so i'm just manually merging ... | [
{
"path": ".gitattributes",
"patch": "@@ -4,3 +4,6 @@ packages/next/compiled/** -text linguist-vendored\n \n # Make next/src/build folder indexable for github search\n build/** linguist-generated=false\n+\n+# Custom merge driver for auto-generated errors.json\n+packages/next/errors.json merge=errors-json",
... | 2025-06-20T15:56:28 |
huggingface/transformers | 2dba8e0495974930af02274d75bd182d22cc1686 | a91232af09f59e2e1c96561901c92e01e238c355 | 🚨 [Cache] Native mamba & hybrid cache (#44950)
* add Cache and test on Mamba
* fix
* fix
* fix
* fix
* fix
* final fix
* test hybrid with jamba
* fix tests
* fixes
* fix
* fix
* fix
* combine both types + zambas
* add config mapèping
* adjust tests
* fix
* fix
* fix
* more models
* final mambas
*... | [
{
"path": "docs/source/en/model_doc/falcon_mamba.md",
"patch": "@@ -111,13 +111,6 @@ outputs = model.generate(**inputs, max_new_tokens=100)\n print(tokenizer.decode(outputs[0], skip_special_tokens=True))\n ```\n \n-## FalconMambaCache\n-\n-[[autodoc]] FalconMambaCache\n- - update_conv_state\n- - updat... | 2026-03-31T13:09:42 |
facebook/react | dcbdf064915fc2187687acc12cf62232ab2b2a47 | 8d415296009b3a014e4d4678c41a9520d5acd894 | Extra test case related to memoization "within" freeze
I found an interesting edge case in the previous diff with mutation of a value
that appears in the expression of an object key:
```javascript
const key = {}
const object = {
[mutateAndReturnOtherValue(key)]: 42,
};
mutate(key);
```
We analyze and... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/mutation-during-jsx-construction.expect.md",
"patch": "@@ -0,0 +1,53 @@\n+\n+## Input\n+\n+```javascript\n+import { identity, mutate, mutateAndReturnNewValue } from \"shared-runtime\";\n+\n+function Component(props) {\n+ ... | 2023-11-13T19:03:00 |
vercel/next.js | bc640c09966b26dfb8330ac3cd4d89f3c2600bb8 | 0b6a580c6cc0384b18325ea0f9ed6c16f24a2292 | Fix Next DevTools Storybook in recent Node.js versions (#80713)
Affected all Node.js versions with `require(esm)` support. We needed https://github.com/storybookjs/addon-webpack5-compiler-swc/commit/70a8e63516bd4f664c2751b9094f38697f39f0ff to fix `pnpm storybook`.
Tested with Node.js 20.19.2 which previously failed. | [
{
"path": "packages/next/package.json",
"patch": "@@ -173,7 +173,7 @@\n \"@storybook/addon-a11y\": \"8.6.0\",\n \"@storybook/addon-essentials\": \"8.6.0\",\n \"@storybook/addon-interactions\": \"8.6.0\",\n- \"@storybook/addon-webpack5-compiler-swc\": \"1.0.5\",\n+ \"@storybook/addon-webpac... | 2025-06-20T11:07:13 |
huggingface/transformers | a91232af09f59e2e1c96561901c92e01e238c355 | 3a4a66278555bbe7d6a617a16191a51e1a998fe7 | [serving] Fix continuous batching JSON response serialization (#45057)
* Fix continuous batching JSON response serialization
Change model_dump_json() to model_dump() to avoid double JSON encoding.
When using continuous batching with stream=false, the response was being
double-encoded as a string instead of returning ... | [
{
"path": "examples/pytorch/transformers_serve_cb_eval_job.py",
"patch": "@@ -0,0 +1,192 @@\n+# /// script\n+# dependencies = [\n+# \"inspect-ai\",\n+# \"inspect-evals\",\n+# \"huggingface-hub\",\n+# \"transformers[serving] @ git+https://github.com/huggingface/transformers.git@main\",\n+# ... | 2026-03-31T12:56:00 |
ollama/ollama | 126d8db7f3ad151ead9fb588f3a56cd5f5c9c13b | 3f3a24b4189a6c143d691c0747af3f284ff8928f | parsers: robust xml tool repair (#14961)
Previous xml repair for glm was a good start, but we need to go further and repair any incorrect open or closing tags
Co-authored-by: Dongluo Chen <dongluo.chen@gmail.com> | [
{
"path": "model/parsers/glm46.go",
"patch": "@@ -345,44 +345,163 @@ func escapeGLM46Content(s string) string {\n \treturn result.String()\n }\n \n-// repairUnclosedArgValues inserts missing </arg_value> closing tags.\n-// GLM models sometimes omit the closing tag, producing XML like:\n-//\n-//\t<arg_value>... | 2026-03-19T18:24:48 |
electron/electron | 90af7d7fe2fc70984404474feec4ac2c827794fe | ba962c94cc20a08560c2143d3f5295c5fe22a2e8 | chore: bump chromium to 111.0.5518.0 (main) (#36575)
* chore: bump chromium in DEPS to 110.0.5461.0
* chore: update patches
* 3903024: hid: Add connection count tracking methods for HidDelegate
https://chromium-review.googlesource.com/c/chromium/src/+/3903024
* 4076211: Turn FrameTreeNode::frame_tree into ... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -218,6 +218,7 @@ step-maybe-cleanup-arm64-mac: &step-maybe-cleanup-arm64-mac\n security delete-generic-password -l \"Chromium Safe Storage\" || echo \"✓ Keychain does not contain password from tests\"\n security delete-generic-password -l \... | 2023-01-06T02:35:34 |
facebook/react | f47685c6020cf3a9b5cec21e2c6eef02c7303ec6 | 7db2388fff15a6c66a9b9e96ce596ccd3c98f099 | [be] Flag and test for unexpected exceptions during compilations | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -361,6 +361,15 @@ function* runWithEnvironment(\n const ast = codegenReactiveFunction(reactiveFunction).unwrap();\n yield log({ kind: \"ast\", name: \"Codegen\", value: ast });\n \n+ /**\n+ * This flag sh... | 2023-11-12T19:56:10 |
vercel/next.js | 0b6a580c6cc0384b18325ea0f9ed6c16f24a2292 | 7c458922eaf10adb840962c12512c9655829b616 | [test] Add repro for SSR bug when large chunks are deferred in Flight (#80661) | [
{
"path": "test/e2e/app-dir/metadata/app/large-shell/[slug]/page.tsx",
"patch": "@@ -0,0 +1,125 @@\n+import type { Metadata } from 'next'\n+\n+export const experimental_ppr = true\n+\n+export const generateMetadata = async ({ params }): Promise<Metadata> => {\n+ const { slug } = await params\n+ return { t... | 2025-06-20T10:57:03 |
ollama/ollama | 3f3a24b4189a6c143d691c0747af3f284ff8928f | 96e36c0d90b1da23304658a2ba90784b4a1c822d | app: fix desktop app stuck loading when OLLAMA_HOST is an unspecified bind address (#14885) | [
{
"path": "app/ui/ui.go",
"patch": "@@ -155,7 +155,7 @@ func (s *Server) ollamaProxy() http.Handler {\n \t\t\t\t\treturn\n \t\t\t\t}\n \n-\t\t\t\ttarget := envconfig.Host()\n+\t\t\t\ttarget := envconfig.ConnectableHost()\n \t\t\t\ts.log().Info(\"configuring ollama proxy\", \"target\", target.String())\n \n ... | 2026-03-19T16:57:57 |
huggingface/transformers | 3a4a66278555bbe7d6a617a16191a51e1a998fe7 | 676559d5022b74aaa0cee1cee0842b7f27c5320e | refactoring: speedup static checks with disk cache (#44992)
* added a cache
* use a shared cache
* added cache in repo checker
* more caching
* more caching
* display elapsed times
* added test coverage
* Remove check_repo cache changes from speedup branch
* fix bad merge
* per-checker glob
* fixed a couple ... | [
{
"path": ".gitignore",
"patch": "@@ -172,6 +172,7 @@ tags\n \n # modeling structure lint cache\n utils/mlinter/.mlinter_cache.json\n+utils/.checkers_cache.json\n \n # modular conversion\n *.modular_backup",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "tests/repo_u... | 2026-03-31T12:23:32 |
golang/go | 05354fc3b431a5ff8281a145552b3f62178d560c | 26ba61dfad46f24a2a3138a40f738ecd22536edf | go/types, types2: remove remaining references to coreType in literals.go
For now, use commonUnder (formerly called sharedUnder) and update
error messages and comments. We can provide better error messages
in individual cases eventually.
For #70128.
Change-Id: I906ba9a0c768f6499c1683dc9be3ad27da8007a9
Reviewed-on: ht... | [
{
"path": "src/cmd/compile/internal/types2/literals.go",
"patch": "@@ -129,7 +129,7 @@ func (check *Checker) compositeLit(x *operand, e *syntax.CompositeLit, hint Type\n \t\ttyp = hint\n \t\tbase = typ\n \t\t// *T implies &T{}\n-\t\tif b, ok := deref(coreType(base)); ok {\n+\t\tif b, ok := deref(commonUnder... | 2025-02-26T23:23:59 |
facebook/react | 9965db70bdb7b97a12e791e1463d67fe169c2b50 | bd3661020e325378efd0bd2fe3e391ded9923ce0 | Revert "[babel] Remove unused PipelineError"
This reverts commit 10d129a8406e9d226abdb6943bf8512e34ce91db
---
Reverts #2311 due to undocumented assumptions being broken. I also added some
comments to `LoggerEvents` to explain each event type.
In `Program.ts`, we have something like the following code. `compile... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts",
"patch": "@@ -138,6 +138,11 @@ export type LoggerEvent =\n fnLoc: t.SourceLocation | null;\n fnName: string | null;\n memoSlots: number;\n+ }\n+ | {\n+ kind: \"PipelineError\";\n+ fnLoc: t.Sour... | 2023-11-10T22:09:29 |
vercel/next.js | 7c458922eaf10adb840962c12512c9655829b616 | ce5796a9f4476726ba4ecede21fd66d29de72e03 | [test] Reduce flakiness of instrumentation-order (#80712)
The test was implicitly relying on `preloadEntriesOnStart` to load the module in our prod tests.
Fixes https://github.com/vercel/next.js/actions/runs/15774186781/job/44464850249?pr=80710#step:34:282 and [other flakes](https://app.datadoghq.com/ci/test/runs?q... | [
{
"path": "test/e2e/app-dir/instrumentation-order/instrumentation-order.test.ts",
"patch": "@@ -1,35 +1,31 @@\n import { nextTestSetup } from 'e2e-utils'\n-import { waitFor } from 'next-test-utils'\n-\n-const ORDERED_LOGS = [\n- 'instrumentation:side-effect',\n- 'instrumentation:register:begin',\n- 'inst... | 2025-06-20T09:57:43 |
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.