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
facebook/react
6c719f62a07114cfa23631e79a8962f6c770ddda
c3ec002d69e94b4b48ba2da41ab6cf4d2c3ff06d
[ez] ComponentDeclaration transforms only into FunctionDeclaration ComponentDeclarations can only be transformed into FunctionDeclarations, so the types were wrong
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -330,7 +330,7 @@ function shouldVisitNode(\n fn: NodePath<t.FunctionDeclaration | t.ArrowFunctionExpression>,\n pass: CompilerPass\n ): boolean {\n- if (pass.opts.enableOnlyOnReactScript) {\n+ if (pa...
2023-08-11T17:31:06
vercel/next.js
f4406d8c58c6d1caf7a9c547c53c278a214c7ea2
ddb727a4c0974008ba52ab9be9a2e24ba54c47be
docs: `htmlLimitedBots` config value should be a RegExp (#79454) Closes: https://linear.app/vercel/issue/DOC-4697/htmllimitedbots-value Also fixes `Behavior` sub heading
[ { "path": "docs/01-app/05-api-reference/04-functions/generate-metadata.mdx", "patch": "@@ -1152,7 +1152,7 @@ ReactDOM.prefetchDNS(href: string)\n > - These methods are currently only supported in Client Components, which are still Server Side Rendered on initial page load.\n > - Next.js in-built features su...
2025-05-21T14:27:41
huggingface/transformers
fefc3fa205aae3fb44127142e0771b0c8762ee46
4ffdc394cca2e3e63d3d72e1fa9e41f2aee6030e
Fixed typo in docs/source/en/kv_cache.md (#44501) Resolves: #44492
[ { "path": "docs/source/en/kv_cache.md", "patch": "@@ -67,7 +67,7 @@ out = model.generate(**inputs, do_sample=False, max_new_tokens=20, past_key_valu\n \n ## Fixed-size cache\n \n-The default [`DynamicCache`] prevents you from taking advantage of most just-in-time (JIT) optimizations because the cache size i...
2026-03-06T20:05:36
ollama/ollama
1fc35f1260a525aca8b63fcc9ed953b54c5eaace
aa45f7ce27f41ce28e08701cd7b0ef6671646053
kvcache: Clean up sliding window state with independent batches Sliding windows models (e.g. gpt-oss, gemma3) remove tokens that are out of the cache's window each time we start a new forward pass. The cache storage needs to handle the window size for each sequence plus the batch size, since the batch needs to attend...
[ { "path": "kvcache/causal.go", "patch": "@@ -160,7 +160,15 @@ func (c *Causal) Init(backend ml.Backend, dtype ml.DType, maxSequences, capacity\n \tif c.swaMemorySize == 0 {\n \t\tc.swaMemorySize = c.swaWindowSize\n \t}\n-\tif int(c.swaMemorySize) > capacity {\n+\t// We will allocate space in the cache for t...
2025-10-06T23:04:53
golang/go
62cd7cb6cdba5cd947c97ee5269699dffdbca1b0
7764c502e28e42279d033719b058690ca8fbaa44
crypto/hkdf: check error in TestFIPSServiceIndicator I don't know why this code calls panic(err) rather than t.Fatal(err), but I didn't change it. Change-Id: I9aa7503c604bd8d4f27cc295e2ec742446906df9 Reviewed-on: https://go-review.googlesource.com/c/go/+/643995 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> ...
[ { "path": "src/crypto/hkdf/hkdf_test.go", "patch": "@@ -404,6 +404,9 @@ func TestFIPSServiceIndicator(t *testing.T) {\n \t// Salt and info are short, which is ok, but translates to a short HMAC key.\n \tfips140.ResetServiceIndicator()\n \t_, err = Key(sha256.New, []byte(\"YELLOW SUBMARINE\"), []byte(\"salt\...
2025-01-23T23:50:32
facebook/react
cbb815e90739c788a9d9309e6dec9c93d74453a0
74a062ba9dfe0228069bfc776abc3e5bd9176440
[rust] Port EliminateRedundantPhi fix
[ { "path": "compiler/forget/crates/forget_fixtures/tests/snapshots/fixtures_test__fixtures@function-expressions.js.snap", "patch": "@@ -58,7 +58,7 @@ bb0 (block)\n [14] #16 = Binary unknown #14 + unknown #15\n [15] #17 = 8\n [16] #18 = Binary unknown #16 + unknown #17\n- [17] #...
2023-08-10T14:59:50
vercel/next.js
ddb727a4c0974008ba52ab9be9a2e24ba54c47be
f71cc1553390217e0de81eee29959ead8f0bb6b1
Turbopack Build: Fix css-modules test (#79441) ## What? The setup already works but the test fails because the urls are relative with Turbopack. I've updated the test.
[ { "path": "test/integration/css/test/css-modules.test.js", "patch": "@@ -153,20 +153,26 @@ describe('should handle unresolved files gracefully', () => {\n encoding: 'utf8',\n })\n .filter((f) => f.endsWith('.css'))\n+ // Ensure the loop is more deterministic\n+ ...
2025-05-21T14:08:43
electron/electron
f1746c81c66d6857e8b857a6eaedee8cc123c942
9d23a624c1e7c6ca4273d727cf4423d52d1a5de4
fix: do not define _LIBCPP_ABI_NAMESPACE=Cr for all native modules (#34932) This define is only needed when linking against Chromiums libc++ which we currently do not ship / expose the symbols of. We probably should make those symbols visible and actually ensure that electron-rebuild et. al link against our libc++ ...
[ { "path": "patches/node/.patches", "patch": "@@ -43,6 +43,5 @@ macos_avoid_posix_spawnp_cwd_bug_3597.patch\n src_update_importmoduledynamically.patch\n fix_add_v8_enable_reverse_jsargs_defines_in_common_gypi.patch\n json_parse_errors_made_user-friendly.patch\n-build_define_libcpp_abi_namespace_as_cr_to_alig...
2022-07-15T23:57:29
ollama/ollama
aa45f7ce27f41ce28e08701cd7b0ef6671646053
4e5d862ec47467a87124a180ae91de703283d14c
discover: Disable flash attention for Jetson Xavier (CC 7.2) GGML picks the wrong kernel and these systems fail with: Sep 28 22:25:39 xavier ollama[48999]: //ml/backend/ggml/ggml/src/ggml-cuda/fattn-wmma-f16.cu:437: ERROR: CUDA kernel flash_attn_ext_f16 has no device code compatible with CUDA arch 720. ggml-cuda.cu wa...
[ { "path": "discover/gpu.go", "patch": "@@ -2,7 +2,6 @@ package discover\n \n import (\n \t\"context\"\n-\t\"fmt\"\n \t\"log/slog\"\n \t\"os\"\n \t\"path/filepath\"\n@@ -62,17 +61,14 @@ func devInfoToInfoList(devs []ml.DeviceInfo) GpuInfoList {\n \t\t\tDependencyPath: dev.LibraryPath,\n \t\t\tDriverMajor: ...
2025-10-07T18:37:58
vercel/next.js
8751df4ee3d78a5ba53ae2ab7103da02d2637a06
6b1e48080e896e0d44a05fe009cb79d2d3f91774
[Segment Cache] Fix: Ensure server references can be prerendered (#79448)
[ { "path": ".changeset/spotty-hotels-train.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+\"next\": patch\n+---\n+\n+[Segment Cache] Fix: Ensure server references can be prerendered", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "packages/next/src/server/app-render/app-rend...
2025-05-21T12:40:02
golang/go
50455385b0e668656cac03d3012e48e071df6aa4
28d389ef30fc4c542a80603123990115035c6422
internal/coverage: fix bug in text-format coverage output with multiple packages In ProcessCoverTestDir pass the selected set of packages to EmitTextual in addition to EmitPercent, so that when we have runs with multiple packages selected but without -coverpkg, text format output for package P was incorrectly includin...
[ { "path": "src/cmd/go/testdata/script/cover_coverprofile_nocoverpkg.txt", "patch": "@@ -0,0 +1,50 @@\n+# Testcase for #70244. In this bug we're doing a \"go test -coverprofile\"\n+# run for a pair of packages, the first one without tests and the second\n+# one with tests. When writing the profile for the se...
2024-11-12T17:32:39
huggingface/transformers
4ffdc394cca2e3e63d3d72e1fa9e41f2aee6030e
6f8bc991d33c34bd75a05e79df8b8955eeea7d49
Docs: fix SigLIP2 usage examples (#43641) * Docs: fix SigLIP2 usage examples Use torch_dtype instead of dtype in pipeline/from_pretrained examples and keep processor/model IDs consistent in the quantization snippet. Ref: #39692 * Use dtype in SigLIP2 pipeline example * Use dtype in SigLIP2 AutoModel examples ----...
[ { "path": "docs/source/en/model_doc/siglip2.md", "patch": "@@ -284,4 +284,4 @@ inputs = tokenizer(\n ## Siglip2Tokenizer\n \n [[autodoc]] Siglip2Tokenizer\n- - __call__\n\\ No newline at end of file\n+ - __call__", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2026-03-06T20:02:56
facebook/react
74a062ba9dfe0228069bfc776abc3e5bd9176440
b8f1d37b6a4e5abbf3c9d80b45b6fc773fbd4c50
[rust] Autofix lints
[ { "path": "compiler/forget/crates/forget_build_hir/src/build.rs", "patch": "@@ -2,9 +2,8 @@ use std::collections::HashSet;\n \n use forget_diagnostics::Diagnostic;\n use forget_estree::{\n- AssignmentTarget, BinaryExpression, BlockStatement, Expression, ExpressionOrSpread,\n- ExpressionOrSuper, ForIni...
2023-08-10T14:59:50
electron/electron
9a5d759ea30724d2d3fd4872ddec54232a5e551a
d32e6cc2523b371b9a706775492c196582e1b17e
fix: ensure that v8 sandbox isnt enabled for arm (#34914)
[ { "path": "patches/node/build_ensure_v8_pointer_compression_sandbox_is_enabled_on_64bit.patch", "patch": "@@ -8,29 +8,26 @@ Aligns common.gypi with the current build flag state of //v8.\n Specifically enables `V8_ENABLE_SANDBOX`, `V8_SANDBOXED_POINTERS`, `V8_COMPRESS_POINTERS` and `V8_COMPRESS_POINTERS_IN_S...
2022-07-14T08:46:41
ollama/ollama
bd15eba4e4a2979df61e197573e75c8f2f62ffc8
bc712786707245cb739b53262b84b3bafbb31fec
Bring back escape valve for llm libraries and fix Jetpack6 crash (#12529) * Bring back escape valve for llm libraries If the new discovery logic picks the wrong library, this gives users the ability to force a specific one using the same pattern as before. This can also potentially speed up bootstrap discovery if one...
[ { "path": "discover/gpu.go", "patch": "@@ -6,7 +6,9 @@ import (\n \t\"log/slog\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"runtime\"\n+\t\"strconv\"\n \t\"strings\"\n \n \t\"github.com/ollama/ollama/format\"\n@@ -146,3 +148,35 @@ func GetSystemInfo() SystemInfo {\n \t\tGPUs: gpus,\n \t}\n }\n+\n...
2025-10-07T23:06:14
huggingface/transformers
6f8bc991d33c34bd75a05e79df8b8955eeea7d49
a1101f3aab7c0230873d8a5763f07164f633750a
Fix type checker (#44502) fix
[ { "path": "src/transformers/utils/import_utils.py", "patch": "@@ -505,7 +505,7 @@ def is_torch_bf16_gpu_available() -> bool:\n if is_torch_musa_available():\n return torch.musa.is_bf16_supported() if hasattr(torch, \"musa\") else False\n if is_torch_mlu_available():\n- return torch.ml...
2026-03-06T17:09:34
golang/go
28d389ef30fc4c542a80603123990115035c6422
8071f2a1697c2a8d7e93fb1f45285f18303ddc76
internal/godebug: check error from os.ReadFile in test Change-Id: I4770443c8eaa12add2e04cbf9d18ebfbbd851162 Reviewed-on: https://go-review.googlesource.com/c/go/+/643259 Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Commit...
[ { "path": "src/internal/godebug/godebug_test.go", "patch": "@@ -109,6 +109,9 @@ func TestCmdBisect(t *testing.T) {\n \n \tvar want []string\n \tsrc, err := os.ReadFile(\"godebug_test.go\")\n+\tif err != nil {\n+\t\tt.Fatal(err)\n+\t}\n \tfor i, line := range strings.Split(string(src), \"\\n\") {\n \t\tif st...
2025-01-24T01:37:29
facebook/react
7feaabfe68c94ad8d9817c06b8a792cf3fc47859
6bca9fb7a3f991b39c14a3f1c8a7bb00b1510a9a
[rust] Use hermes parser for Forget fixture tests Replaces the use of SWC parser in the Forget fixture tests with Hermes Parser. This includes aligning on a single type to represent JS Values and numbers (combining semi-duplicated code from forget_hir and forget_estree) and adding support for lowering babel-style ...
[ { "path": "compiler/forget/Cargo.lock", "patch": "@@ -515,7 +515,7 @@ version = \"0.1.0\"\n dependencies = [\n \"forget_build_hir\",\n \"forget_estree\",\n- \"forget_estree_swc\",\n+ \"forget_hermes_parser\",\n \"forget_hir\",\n \"forget_optimization\",\n \"forget_semantic_analysis\",", "additions"...
2023-08-10T14:59:49
vercel/next.js
5136f8ecfd06f638325a2f45656744cbebd3fe97
6440778d60690fe74a564de47f54d9496ea3fead
[dynamicIO] Avoid timeout errors with dynamic params in `"use cache"` (#78882)
[ { "path": ".changeset/tricky-planes-worry.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+\"next\": patch\n+---\n+\n+[dynamicIO] Avoid timeout errors with dynamic params in `\"use cache\"`", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": ".vscode/settings.json", "patch": ...
2025-05-20T21:15:55
ollama/ollama
918231931cb6db86ce1586788a47a3cba8d76d30
04c1849878b16c260bdddb8d80b5b48871b93f68
win: fix build script (#12513)
[ { "path": "scripts/build_windows.ps1", "patch": "@@ -179,7 +179,7 @@ function buildROCm() {\n if ($LASTEXITCODE -ne 0) { exit($LASTEXITCODE)}\n & cmake --install build --component \"HIP\" --strip\n if ($LASTEXITCODE -ne 0) { exit($LASTEXITCODE)}\n- rm -f $scrip...
2025-10-06T21:46:45
huggingface/transformers
03d0496893fb2b8f94379c1a87a451ec680d7453
821e3fbdfd117951089ab994e6626fb5ceb331ff
fix model parallelism bug for eurobert model (#44490) Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
[ { "path": "src/transformers/models/eurobert/modeling_eurobert.py", "patch": "@@ -512,6 +512,7 @@ def forward(\n if attention_mask is None:\n pooled_output = last_hidden_state.mean(dim=1)\n else:\n+ attention_mask = attention_mask.to(last...
2026-03-06T14:16:40
golang/go
8071f2a1697c2a8d7e93fb1f45285f18303ddc76
78e6f2a1c87df4d588b11b51da63a974ade0ca79
runtime: mapiter linkname compatibility layer This CL reintroduces the various mapiter* linkname functions with a compatibility layer that is careful to maintain compatibility with users of the linkname. The wrappers are straightforward. Callers of these APIs get an extra layer of indirection, with their hiter contai...
[ { "path": "src/runtime/linkname_swiss.go", "patch": "@@ -0,0 +1,211 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build goexperiment.swissmap\n+\n+package runtime\n+\n+import (...
2025-01-24T21:29:13
electron/electron
d32e6cc2523b371b9a706775492c196582e1b17e
440c575aa6c47a2258824945fa5442c5a89cfe0f
chore: bump chromium to 105.0.5173.0 (main) (#34770) * chore: bump chromium in DEPS to 105.0.5147.0 * chore: update chromium/can_create_window.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/3642216 fix minor code shear in patch * chore: update chromium/port_autofill_colors_to_the_col...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '105.0.5129.0',\n+ '105.0.5173.0',\n 'node_version':\n 'v16.15.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2022-07-13T21:26:16
facebook/react
a20eea25197df0da80104917df414747eeab1ac9
201becd3d294b38824930a818e3412c6e04ba2eb
Update README.md (#27209) Update links from the old documentation to the new version <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. ...
[ { "path": "README.md", "patch": "@@ -6,7 +6,7 @@ React is a JavaScript library for building user interfaces.\n * **Component-Based:** Build encapsulated components that manage their own state, then compose them to make complex UIs. Since component logic is written in JavaScript instead of templates, you can...
2023-08-09T17:21:43
vercel/next.js
e675d2ba99f3fcca2928dacee22e16c46df9ed28
deb49c4cd76e3850c620cb71a8011936adb53a11
docs: fix spacing in installation instructions (#79257) This PR fixes a minor spacing issue in the "Run the development server" section of the installation guide. No functionality is affected. --------- Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "docs/01-app/01-getting-started/01-installation.mdx", "patch": "@@ -226,7 +226,7 @@ export default function Page() {\n \n 1. Run `npm run dev` to start the development server.\n 2. Visit `http://localhost:3000` to view your application.\n-3. Edit the<AppOnly>`app/page.tsx`</AppOnly> <PagesOnly>`pa...
2025-05-20T17:59:53
ollama/ollama
292767afb48fe4c3acc3233e88a45e5a3f93ffec
ae5e0f08893346ba9a61e86c0507b39b90d1ed38
CI: fix win arm build (#12502) Resolve subtle erroraction stickiness difference between x86 and arm builder setup
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -214,11 +214,15 @@ jobs:\n go-version-file: go.mod\n - name: Verify gcc is actually clang\n run: |\n- gcc -v \n- if (((& gcc -v 2>&1) -join \"`n\") -notmatch 'clang') {\n+ $ErrorActionPreference='Cont...
2025-10-04T18:46:45
huggingface/transformers
821e3fbdfd117951089ab994e6626fb5ceb331ff
cb17d70d826be788f9fd7a9bc19aa7e7bbd56bf0
Update `ty` to 0.0.20 (#44494) - updates ty to 0.2.0 - pinned regex package (older versions did not have typing stubs) - fixed a couple of typing failures that went through via other parallel branches
[ { "path": "setup.py", "patch": "@@ -119,12 +119,12 @@\n \"pytest-xdist\",\n \"pytest-order\",\n \"python>=3.10.0\",\n- \"regex!=2019.12.17\",\n+ \"regex>=2025.10.22\",\n \"rhoknp>=1.1.0,<1.3.1\",\n \"rjieba\",\n \"rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1\",\n \"ruff==0.14.1...
2026-03-06T13:30:23
golang/go
f8937cb6255970de3f0c8cbccc5253ae81249c47
11e08d9d96fa13346d50b5f728058f2f2647664a
archive/zip, archive/tar: writer appends slash to directory names Fixes #71235 Change-Id: I62aebb9d421db0e4b57ad5cae25c70f47aa5f8f9 GitHub-Last-Rev: 6e0fba07dd128e20e32a3a6258edf80ee91d4690 GitHub-Pull-Request: golang/go#71239 Reviewed-on: https://go-review.googlesource.com/c/go/+/642375 Reviewed-by: Jonathan Amsterd...
[ { "path": "src/archive/tar/writer.go", "patch": "@@ -424,6 +424,9 @@ func (tw *Writer) AddFS(fsys fs.FS) error {\n \t\t\treturn err\n \t\t}\n \t\th.Name = name\n+\t\tif d.IsDir() {\n+\t\t\th.Name += \"/\"\n+\t\t}\n \t\tif err := tw.WriteHeader(h); err != nil {\n \t\t\treturn err\n \t\t}", "additions": 3...
2025-01-22T02:23:08
electron/electron
440c575aa6c47a2258824945fa5442c5a89cfe0f
46e5c537c87d8f81e468448629c36995329f824b
fix: alwaysOnTop browser window option for X11 Linux (#34766) fix: alwaysontop browser window option for x11
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -498,6 +498,13 @@ void NativeWindowViews::Show() {\n if (global_menu_bar_)\n global_menu_bar_->OnWindowMapped();\n #endif\n+\n+#if defined(USE_OZONE_PLATFORM_X11)\n+ // On X11, setting Z order before showing the window doesn't take effect...
2022-07-13T18:59:57
facebook/react
201becd3d294b38824930a818e3412c6e04ba2eb
cb3404a0ccd8b5edf5d2b90bd844742090e38f42
Bugfix: Fix crash when suspending in shell during useSES re-render (#27199) This adds a regression test for a bug where, after a store mutation, the updated data causes the shell of the app to suspend. When re-rendering due to a concurrent store mutation, we must check for the RootDidNotComplete exit status again...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -892,58 +892,39 @@ export function performConcurrentWorkOnRoot(\n let exitStatus = shouldTimeSlice\n ? renderRootConcurrent(root, lanes)\n : renderRootSync(root, lanes);\n- if (exitStatus !== RootInProgress) {\n- if ...
2023-08-08T18:11:11
vercel/next.js
dd7fed079cee6861172e749b3a31c257ab206406
e06d2d8705179171439ce7ca6dea91645378b08b
Fork the globset strategy for turbopack (#79333) ## What After discussion with [upstream](https://github.com/BurntSushi/ripgrep/issues/3049) it was determined that upstreaming a function like `can_skip_directory` wasn't aligned. It turns out the needs of ripgrep and ours are somewhat divergent. Instead they encourag...
[ { "path": "Cargo.lock", "patch": "@@ -9736,6 +9736,7 @@ dependencies = [\n \"notify\",\n \"parking_lot\",\n \"rayon\",\n+ \"regex\",\n \"rstest\",\n \"rustc-hash 2.1.1\",\n \"serde\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crates/next-core/src/next_se...
2025-05-20T17:08:39
ollama/ollama
33801c1597edca5dd04c5de117db89b5bc27f43a
e4340667e33e0efa5dee471917d71ad6011e59ba
Fixed Deepseek2 adding nil tensor error
[ { "path": "model/models/deepseek2/model.go", "patch": "@@ -150,7 +150,9 @@ func (moe *sparse) Moe(ctx ml.Context, hiddenStates, topKIndices, topKWeights ml\n }\n \n func (moe *sparse) topKIndices(ctx ml.Context, scores ml.Tensor, opts *Options) ml.Tensor {\n-\tscores = scores.Add(ctx, moe.ExpProbsBias)\n+\t...
2025-10-03T21:20:06
golang/go
f70aa3824b637d69aaaa944b3e4691c1fbe6c0d4
475e08349d48b172285fc8629ef1622136ee8173
cmd/go: do not call base.fatal for an unset HOME for GOAUTH=netrc This CL silences errors caused by GOAUTH=netrc and HOME being unset. Instead, we log the error if the -x flag is set. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Change-Id: Ibd323769f3562c169ebf559e060e9a...
[ { "path": "src/cmd/go/internal/auth/auth.go", "patch": "@@ -70,7 +70,8 @@ func runGoAuth(client *http.Client, res *http.Response, url string) {\n \t\tcase \"netrc\":\n \t\t\tlines, err := readNetrc()\n \t\t\tif err != nil {\n-\t\t\t\tbase.Fatalf(\"go: could not parse netrc (GOAUTH=%s): %v\", cfg.GOAUTH, err...
2025-01-23T19:35:34
facebook/react
ea17cc18f458010c89c1bf494be08bb782d034af
997f52fbb30ec4b777b66edcdd75f594d9fe0c55
[Fizz][Float] emit viewport meta before preloads (#27201) Fixes: #27200 preloads for images that appear before the viewport meta may be loaded twice because the proper device image information is not used with the preload but is with the image itself. The viewport meta should be emitted earlier than all preload...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -1920,6 +1920,9 @@ function pushMeta(\n \n if (typeof props.charSet === 'string') {\n return pushSelfClosing(responseState.charsetChunks, props, 'meta');\n+ } else if (props.name === 'viewport') {\n+ ...
2023-08-07T22:22:48
electron/electron
07d168343ade5e0b665a6a812c269a0785a45249
62aeb74d7c8ec49b7c47915d4befee8dba3e8c14
fix: enable `deviceName` validation on Linux (#34872)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -419,21 +419,34 @@ bool IsDeviceNameValid(const std::u16string& device_name) {\n bool printer_exists = new_printer != nullptr;\n PMRelease(new_printer);\n return printer_exists;\n-#elif BUILDFLAG(IS_WIN)\n- printing::ScopedPrint...
2022-07-13T10:23:24
vercel/next.js
e06d2d8705179171439ce7ca6dea91645378b08b
2d48158402645f2eb6d4e1ecccfdbcf47b2fe1c6
Turbopack build: Fix production-browser-sourcemaps test (#79374) ## What? The test assumes that the sourcemap files live at a certain place and match the js filename. In Turbopack they don't because they're content hashed. This fixes the tests by reading the sourcemap path and reading using that path instead.
[ { "path": "test/integration/production-browser-sourcemaps/test/index.test.js", "patch": "@@ -1,41 +1,26 @@\n /* eslint-env jest */\n import fs from 'fs-extra'\n-import { join } from 'path'\n-import { nextBuild, getPageFileFromBuildManifest } from 'next-test-utils'\n+import { dirname, join } from 'path'\n+im...
2025-05-20T16:47:04
ollama/ollama
e4340667e33e0efa5dee471917d71ad6011e59ba
2fa1e92a995e7599bf6403dc6055cf2f4a4d68ce
Workaround broken NVIDIA iGPU free VRAM data (#12490) The CUDA APIs for reporting free VRAM are useless on NVIDIA iGPU systems as they only return the kernels actual free memory and ignore buff/cache allocations which on a typical system will quickly fill up most of the free system memory. As a result, we incorrectly...
[ { "path": "discover/runner.go", "patch": "@@ -330,6 +330,9 @@ func GPUDevices(ctx context.Context, runners []FilteredRunnerDiscovery) []ml.Dev\n \t\t}\n \t}\n \n+\t// Apply any iGPU workarounds\n+\tiGPUWorkarounds(devices)\n+\n \treturn devices\n }\n \n@@ -540,3 +543,32 @@ func GetDevicesFromRunner(ctx cont...
2025-10-03T19:17:21
golang/go
475e08349d48b172285fc8629ef1622136ee8173
e2e700f8b174f34b44c32d7e923ffe4e7219e171
Revert "runtime: Check LSE support on ARM64 at runtime init" This reverts CL 610195. Reason for revert: SIGILL on macOS. See issue #71411. Updates #69124, #60905. Fixes #71411. Change-Id: Ie0624e516dfb32fb13563327bcd7f557e5cba940 Reviewed-on: https://go-review.googlesource.com/c/go/+/644695 LUCI-TryBot-Result: Go L...
[ { "path": "src/runtime/asm_arm64.s", "patch": "@@ -8,11 +8,6 @@\n #include \"funcdata.h\"\n #include \"textflag.h\"\n \n-#ifdef GOARM64_LSE\n-DATA no_lse_msg<>+0x00(SB)/64, $\"This program can only run on ARM64 processors with LSE support.\\n\"\n-GLOBL no_lse_msg<>(SB), RODATA, $64\n-#endif\n-\n TEXT runtim...
2025-01-27T17:11:36
facebook/react
43677da7e465d89ac33bc5603d6fba83c50f1bc1
e33c9c43ccd36113f2d85d700f231679c7068612
Add instructions for UpdateExpression variants Adds new instructions to accurately model UpdateExpression semantics, since `x++` is un-intuitively not the same as `x = x + 1`. There are a few different ways to model the combination of prefix/postfix and increment/decrement: * One instruction for all combinations ...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1753,56 +1753,43 @@ function lowerExpression(\n });\n return { kind: \"UnsupportedNode\", node: exprNode, loc: exprLoc };\n }\n- if (expr.node.prefix) {\n- builder.errors.push(...
2023-08-07T20:50:32
huggingface/transformers
cb17d70d826be788f9fd7a9bc19aa7e7bbd56bf0
4f91111b8ef37bd227f33c7facb92c41aa77604d
Add auto-docstring on configs (#44296) * seems to work like this * update more models * update more models * and more * more * add more model * more * update * update * more * all args are in auto file now * a bit more * update * last bacth * leftovers * fix repo * fix modular docs * fix repo * updat...
[ { "path": "src/transformers/models/afmoe/configuration_afmoe.py", "patch": "@@ -15,98 +15,29 @@\n \n from ...configuration_utils import PreTrainedConfig, layer_type_validation\n from ...modeling_rope_utils import RopeParameters\n-from ...utils import logging\n+from ...utils import auto_docstring, logging\n ...
2026-03-06T11:58:10
vercel/next.js
2d48158402645f2eb6d4e1ecccfdbcf47b2fe1c6
fb0968777419873d0b2c9c9063f9c22d04705505
Turbopack build: Fix NODE_ENV test (#79377) ## What? This test was checking for an arbitrary value, it wasn't clear to me why this particular value given it's not in the source code. I've changed it to an application-level check instead of checking the Next.js internals.
[ { "path": "test/integration/non-standard-node-env-warning/pages/index.js", "patch": "@@ -1 +1,7 @@\n-export default () => 'hi'\n+export default function Page() {\n+ if (process.env.NODE_ENV === 'production') {\n+ return <h1>Hello Production</h1>\n+ } else {\n+ return <h1>Hello Other</h1>\n+ }\n+}",...
2025-05-20T16:40:38
electron/electron
62aeb74d7c8ec49b7c47915d4befee8dba3e8c14
afd08c9450f5ad9b067b5f6dbf9b9243307d00b2
fix: `base::DictionaryValue` usage in APNS notifs (#34897)
[ { "path": "shell/browser/api/electron_api_push_notifications.h", "patch": "@@ -39,7 +39,7 @@ class PushNotifications\n PushNotifications& operator=(const PushNotifications&) = delete;\n \n #if BUILDFLAG(IS_MAC)\n- void OnDidReceiveAPNSNotification(const base::DictionaryValue& user_info);\n+ void OnDidRe...
2022-07-13T10:22:17
ollama/ollama
2fa1e92a995e7599bf6403dc6055cf2f4a4d68ce
07e36761c380b838b2d4156dafde59105892b1ad
test: add template error test (#12489)
[ { "path": "template/template_test.go", "patch": "@@ -154,24 +154,55 @@ func TestTemplate(t *testing.T) {\n }\n \n func TestParse(t *testing.T) {\n-\tcases := []struct {\n+\tvalidCases := []struct {\n+\t\tname string\n \t\ttemplate string\n \t\tvars []string\n \t}{\n-\t\t{\"{{ .Prompt }}\", []string{...
2025-10-03T19:05:34
golang/go
608acff8479640b00c85371d91280b64f5ec9594
9d21ef3bd43acedfe5317184e63cc6b3dd19cbdf
go/types: avoid importer.Default It uses a throwaway FileSet, so all position info is wrong, and potentially misleading. (Various other helpers in go/types testing also use a throwaway FileSet, and should really accept it as a parameter.) Fixes #71272 Change-Id: I9d899b987837b4041a299aad5ec266cb4f5d125c Reviewed-on...
[ { "path": "src/go/types/api_test.go", "patch": "@@ -19,11 +19,16 @@ import (\n \t\"testing\"\n \n \t. \"go/types\"\n+\t\"runtime\"\n )\n \n // nopos indicates an unknown position\n var nopos token.Pos\n \n+func defaultImporter(fset *token.FileSet) Importer {\n+\treturn importer.ForCompiler(fset, runtime.Com...
2025-01-22T15:43:44
huggingface/transformers
4f91111b8ef37bd227f33c7facb92c41aa77604d
d5e555a632682555332c3c8e938461efd49d52b9
Fix failed unit tests for moonshine_streaming model (#43936)
[ { "path": "src/transformers/models/moonshine_streaming/modeling_moonshine_streaming.py", "patch": "@@ -822,7 +822,7 @@ def forward(\n position_embeddings = self.pos_emb(\n torch.arange(encoder_hidden_states.shape[1], device=encoder_hidden_states.device)\n )\n- encoder_hidd...
2026-03-06T07:39:08
facebook/react
e33c9c43ccd36113f2d85d700f231679c7068612
ff2f2e068540a29d82b5ba7a970444621007f5a5
[ssa] Patch: propagate every rewrite to function expressions --- #1899 only propagated eliminated phi nodes to function expressions on the first iteration through blocks. However, this was buggy as later iterations could introduce rewrites that need to be propagated. [playground repro](https://0xeac7-forget.ve...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/SSA/EliminateRedundantPhi.ts", "patch": "@@ -46,7 +46,6 @@ export function eliminateRedundantPhi(\n // compare to see if any new rewrites were added in that iteration.\n let size = rewrites.size;\n do {\n- const isFirstIteration = !h...
2023-08-07T21:41:35
vercel/next.js
fb0968777419873d0b2c9c9063f9c22d04705505
1ae1b9ba23ff5521ccc8991f3eea6d5c62695671
[release] fix: use correct step id when publishing (#79408) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Cont...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -603,7 +603,7 @@ jobs:\n \n # New release process\n - name: Publish to NPM\n- id: publish-packages\n+ id: changesets\n if: ${{ env.__NEW_RELEASE == 'true' }}\n uses: changesets/action@v1\n with...
2025-05-20T16:15:16
electron/electron
511ff8bc8daf4f976654744d6018f3aa45c40f1f
95019f0454ba5b3c61bdabec48d1756a1f16ecae
fix: ensure that requestMediaKeySystemAccess resolves (#34886) When widevine was disabled at the build level we never dealt with the callback passed into GetSupportedKeySystems. This was ok until requests became marked pending in https://chromium-review.googlesource.com/c/chromium/src/+/3430502 until the callback was...
[ { "path": "shell/app/electron_content_client.cc", "patch": "@@ -22,17 +22,18 @@\n #include \"ppapi/buildflags/buildflags.h\"\n #include \"shell/common/electron_paths.h\"\n #include \"shell/common/options_switches.h\"\n+#include \"third_party/widevine/cdm/buildflags.h\"\n #include \"ui/base/l10n/l10n_util.h\...
2022-07-12T07:48:51
ollama/ollama
c29fb007c0695210b833008775aed67a507f1f5a
730ed6e9e12d0bf182d554a54dee8bbbef6a88c7
CI: temporarily disable clang install (#12486) This will likely yield builds that have problems with unicode characters but at least we can start testing the release while we try to find an alternate clang compiler for windows, or mingw ships a fixed version.
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -186,7 +186,8 @@ jobs:\n if: matrix.arch == 'amd64'\n run: |\n $ErrorActionPreference = \"Stop\"\n- Start-Process \"C:\\msys64\\usr\\bin\\pacman.exe\" -ArgumentList @(\"-S\", \"--noconfirm\", \"mingw-w64-clang-x86_64...
2025-10-03T03:31:18
golang/go
9d21ef3bd43acedfe5317184e63cc6b3dd19cbdf
5a46b17b5f62616bdbc973bbd6a221edc02a0619
runtime: fix the equality check in AddCleanup This fixes the check that ensures that arg is not equal to ptr in AddCleanup. This also changes any use of throw to panic in AddCleanup. Fixes #71316 Change-Id: Ie5a3e0163b254dff44b7fefedf75207ba587b771 Reviewed-on: https://go-review.googlesource.com/c/go/+/643655 Review...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -70,19 +70,19 @@ func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n \n \t// The pointer to the object must be valid.\n \tif ptr == nil {\n-\t\tthrow(\"runtime.AddCleanup: ptr is nil\")\n+\t\tpanic(\"runtime.AddCleanup: ptr is nil\")\n \t}\...
2025-01-21T16:52:41
huggingface/transformers
d8526c5052ea28af394f04c74b0fde3ffb57c3b6
1118de0e4953ce96e183ffa90a41c507669ba652
[vLLM] Fix backward compatibility with hardcoded subprocessors classes in processors (#44447) * Fix compatibility with hardcoded subprocessor class in processors * add deprecation warning
[ { "path": "src/transformers/processing_utils.py", "patch": "@@ -1521,6 +1521,14 @@ def _get_arguments_from_pretrained(cls, pretrained_model_name_or_path, processor\n elif is_primary:\n # Primary non-tokenizer sub-processor: load via Auto class\n auto_processor_cla...
2026-03-05T16:07:28
facebook/react
ff2f2e068540a29d82b5ba7a970444621007f5a5
adfae63f208b1e8e98c1923a2ac8e26686173253
[patch] Gate EliminatePhi fix behind feature flag
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/SSA/EliminateRedundantPhi.ts", "patch": "@@ -106,19 +106,20 @@ export function eliminateRedundantPhi(\n for (const place of eachInstructionOperand(instr)) {\n rewritePlace(place, rewrites);\n }\n- if (instr.va...
2023-08-07T21:41:34
ollama/ollama
730ed6e9e12d0bf182d554a54dee8bbbef6a88c7
dc06601677b6d5a833ae8206778b4acfdc290b81
ci: fix windows build (#12485)
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -163,7 +163,7 @@ jobs:\n cmake --preset \"${{ matrix.preset }}\" ${{ matrix.flags }} -DOLLAMA_RUNNER_DIR=\"${{ matrix.runner_dir }}\"\n cmake --build --parallel --preset \"${{ matrix.preset }}\"\n cmake --install build --...
2025-10-03T02:16:01
electron/electron
95019f0454ba5b3c61bdabec48d1756a1f16ecae
4190ec248260c3e7673889f2ed77625f47812a4e
fix: update Windows caption buttons to match Win11 style (#34790)
[ { "path": "filenames.gni", "patch": "@@ -85,6 +85,8 @@ filenames = {\n \"shell/browser/ui/message_box_win.cc\",\n \"shell/browser/ui/tray_icon_win.cc\",\n \"shell/browser/ui/views/electron_views_delegate_win.cc\",\n+ \"shell/browser/ui/views/win_icon_painter.cc\",\n+ \"shell/browser/ui/vie...
2022-07-12T07:13:40
vercel/next.js
1ae1b9ba23ff5521ccc8991f3eea6d5c62695671
cd2ab0d6c0eb6a623516002c12aa80bc3c7a36e4
Turbopack Build: Fix next/dynamic test (#79407) Alternative solution for #79406, see the extensive description over there Fixes PACK-4514 --------- Co-authored-by: Tim Neutkens <tim@timneutkens.nl>
[ { "path": "crates/next-api/src/loadable_manifest.rs", "patch": "@@ -1,8 +1,7 @@\n use anyhow::Result;\n use next_core::{next_manifests::LoadableManifest, util::NextRuntime};\n use rustc_hash::FxHashMap;\n-use turbo_rcstr::RcStr;\n-use turbo_tasks::{ResolvedVc, TryFlatJoinIterExt, ValueToString, Vc};\n+use t...
2025-05-20T15:00:13
huggingface/transformers
1118de0e4953ce96e183ffa90a41c507669ba652
f4825d59e7b828658d3915e652a81f4ae8645aff
[remote code/vllm] Fix incorrect tied weights (#44469) fix
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4609,11 +4609,13 @@ def mark_tied_weights_as_initialized(self, loading_info):\n # Note: this is never an issue in main Transformers, as we never do module-tying, only parameter-tying, and we know\n # which params are supposed to b...
2026-03-05T15:07:53
golang/go
5a46b17b5f62616bdbc973bbd6a221edc02a0619
6fc23a3cff5e38ff72923fee50f51254dcdc6e93
os: force a goroutine to be scheduled on WASM The TestRootConcurrentClose test can fail when GOARCH=WASM because of goroutine starvation. The spawned goroutine will sometimes run in a loop and never have the main goroutine be scheduled. This causes the test to fail due to a timeout. This change forces the goroutine to...
[ { "path": "src/os/root_test.go", "patch": "@@ -1077,6 +1077,10 @@ func TestRootConcurrentClose(t *testing.T) {\n \t\t\t\tfirst = false\n \t\t\t}\n \t\t\tf.Close()\n+\t\t\tif runtime.GOARCH == \"wasm\" {\n+\t\t\t\t// TODO(go.dev/issue/71134) can lead to goroutine starvation.\n+\t\t\t\truntime.Gosched()\n+\t\...
2025-01-03T21:53:32
facebook/react
997f52fbb30ec4b777b66edcdd75f594d9fe0c55
493f72b0a7111b601c16b8ad8bc2649d82c184a0
fix[devtools/updateFiberRecursively]: mount suspense fallback set in timed out case (#27147) Fixes https://github.com/facebook/react/issues/26793. I have received a constantly reproducible example of the error, that is mentioned in the issue above. When starting `Reload and Profile` in DevTools, React reports an ...
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -2345,6 +2345,18 @@ export function attach(\n const prevFallbackChildSet = prevFiberChild\n ? prevFiberChild.sibling\n : null;\n+\n+ if (prevFallbackChildSet == null && nextFallbackChildSet != null) {...
2023-08-03T19:02:18
electron/electron
f63bba8ce24917f1c78a8804496fe0f5b461b0af
8f3fb8db09ac049894c8ab099979810899f9435b
fix: set Wayland application ID (#34855) * refactor: extract XDG app ID logic into a method * fix: set application ID on Wayland
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -51,6 +51,7 @@\n #include \"shell/browser/ui/views/client_frame_view_linux.h\"\n #include \"shell/browser/ui/views/frameless_view.h\"\n #include \"shell/browser/ui/views/native_frame_view.h\"\n+#include \"shell/common/platform_util.h\"\n #includ...
2022-07-11T18:26:18
ollama/ollama
dc06601677b6d5a833ae8206778b4acfdc290b81
1ed2881ef05cd62d97f3fc3687301f9c69249e3b
ci: fix windows build (#12484)
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -163,7 +163,7 @@ jobs:\n cmake --preset \"${{ matrix.preset }}\" ${{ matrix.flags }} -DOLLAMA_RUNNER_DIR=\"${{ matrix.runner_dir }}\"\n cmake --build --parallel --preset \"${{ matrix.preset }}\"\n cmake --install build --...
2025-10-03T01:59:26
vercel/next.js
f3d3809f7db309e578fbbd93fa9879df12e0f36d
4f2b2de0d75a552a56f1df36f466bbb8ae936e73
fix: rspack framework and lib cacheGroups (#79172) This pull request updates the Webpack configuration in `webpack-config.ts` to add specific cache group settings for Rspack builds. The changes aim to improve the chunking strategy by introducing new cache groups for `framework` and `lib` when Rspack is used. ### Chan...
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -1931,3 +1931,7 @@ export function collectMeta({\n \n return meta\n }\n+\n+export const RSPACK_DEFAULT_LAYERS_REGEX = new RegExp(\n+ `^(|${[WEBPACK_LAYERS.pagesDirBrowser, WEBPACK_LAYERS.pagesDirEdge, WEBPACK_LAYERS.pagesDirNode].join('|')})$`\n+...
2025-05-20T03:18:56
golang/go
6fc23a3cff5e38ff72923fee50f51254dcdc6e93
70b603f4d295573197b43ad090d7cad21895144e
crypto/internal/fips140/nistec: make p256NegCond constant time on ppc64le Remove the branching instruction from p256NegCond which made it variable time. The technique used matches that used in p256MovCond. Fixes #71383 Fixes CVE-2025-22866 Change-Id: Ibc2a46814d856cbbdaf6cc0c5a415ed5d42ca793 Reviewed-on: https://go-...
[ { "path": "src/crypto/internal/fips140/nistec/p256_asm_ppc64le.s", "patch": "@@ -126,14 +126,23 @@ GLOBL p256mul<>(SB), 8, $160\n #define PH V31\n \n #define CAR1 V6\n+\n+#define SEL V8\n+#define ZER V9\n+\n // func p256NegCond(val *p256Point, cond int)\n TEXT ·p256NegCond(SB), NOSPLIT, $0-16\n \t...
2025-01-22T00:03:14
huggingface/transformers
b923fd1d63652b1e442f62c51391bc9d1e1f6f8d
23863c5413f9743cf2c9f33318ac06cfe41a5116
Fix failing `DepthProModelIntegrationTest` (#44456) Fix failing DepthProModelIntegrationTest
[ { "path": "tests/models/depth_pro/test_modeling_depth_pro.py", "patch": "@@ -311,7 +311,7 @@ class DepthProModelIntegrationTest(unittest.TestCase):\n def test_inference_depth_estimation(self):\n model_path = \"apple/DepthPro-hf\"\n image_processor = DepthProImageProcessor.from_pretrained...
2026-03-05T14:52:40
electron/electron
2eb0e5dcab7e339bb2bff763d21c27181cc99d9a
459404f53690fed4e9785dffebcb625e2d04d428
fix: safer check for WCO button updates (#34833)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -876,7 +876,7 @@ bool NativeWindowViews::IsMovable() {\n void NativeWindowViews::SetMinimizable(bool minimizable) {\n #if BUILDFLAG(IS_WIN)\n FlipWindowStyle(GetAcceleratedWidget(), minimizable, WS_MINIMIZEBOX);\n- if (titlebar_overlay_enable...
2022-07-11T09:45:01
ollama/ollama
1ed2881ef05cd62d97f3fc3687301f9c69249e3b
0bda72892cc8b42a649e950f004b100020bcd1aa
templates: fix crash in improperly defined templates (#12483)
[ { "path": "server/images.go", "patch": "@@ -105,12 +105,16 @@ func (m *Model) Capabilities() []model.Capability {\n \n \tbuiltinParser := parsers.ParserForName(m.Config.Parser)\n \t// Check for tools capability\n-\tif slices.Contains(m.Template.Vars(), \"tools\") || (builtinParser != nil && builtinParser.Ha...
2025-10-03T00:25:55
vercel/next.js
685a68716f78d9720044d064e94a615eaa59acb2
94b246469e6af89d7f509b7a5c3381452543d0f9
Always show warning if fetch cache limit hit (#79384) We previously weren't showing any indication when we weren't setting to the runtime cache in production due to the size limit being hit which can make debugging cache misses very tricky so this ensures we always show the warning not just in dev mode. x-ref: [slack...
[ { "path": "packages/next/src/server/lib/incremental-cache/index.ts", "patch": "@@ -571,11 +571,12 @@ export class IncrementalCache implements IncrementalCacheType {\n !this.hasCustomCacheHandler &&\n itemSize > 2 * 1024 * 1024\n ) {\n+ const warningText = `Failed to set Next.js data cac...
2025-05-19T19:29:15
huggingface/transformers
23863c5413f9743cf2c9f33318ac06cfe41a5116
df8b60222590ae4e563306dd35bbd3a1f8a3122f
[timesfm2_5] fix loss scaling (#44465) fix loss scaling
[ { "path": "src/transformers/models/timesfm2_5/modeling_timesfm2_5.py", "patch": "@@ -844,14 +844,17 @@ def _flip_quantiles(x: torch.Tensor) -> torch.Tensor:\n loss = None\n if future_values is not None:\n target_len = future_values.shape[1]\n- valid_mean_predictions = ...
2026-03-05T14:43:54
golang/go
f6d17c540024418ca8a92371931b1b4fb076d2b6
3aa7c5ef01e147fb482f4b3e79c6f875a4b1b9fb
net/http: update bundled golang.org/x/net/http2 [generated] Pull in x/net CL 642606 and CL 643256 and regenerate h2_bundle.go: http2: disable extended CONNECT by default http2: encode :protocol pseudo-header before regular headers For #36905. Fixes #70728. Fixes #71128. [git-generate] go install golang.org/x/buil...
[ { "path": "src/go.mod", "patch": "@@ -4,7 +4,7 @@ go 1.24\n \n require (\n \tgolang.org/x/crypto v0.30.0\n-\tgolang.org/x/net v0.32.1-0.20241206180132-552d8ac903a1\n+\tgolang.org/x/net v0.32.1-0.20250121202134-9a960c88dd98\n )\n \n require (", "additions": 1, "deletions": 1, "language": "Unknown...
2025-01-21T19:41:15
ollama/ollama
fdb109469f14631329a18bc782a381996842d0d6
05a43e078a89247dcc71c703c1bee2af97c1655d
llm: Allow overriding flash attention setting As we automatically enable flash attention for more models, there are likely some cases where we get it wrong. This allows setting OLLAMA_FLASH_ATTENTION=0 to disable it, even for models that usually have flash attention.
[ { "path": "envconfig/config.go", "patch": "@@ -145,8 +145,8 @@ func Remotes() []string {\n \treturn r\n }\n \n-func Bool(k string) func() bool {\n-\treturn func() bool {\n+func BoolWithDefault(k string) func(defaultValue bool) bool {\n+\treturn func(defaultValue bool) bool {\n \t\tif s := Var(k); s != \"\" ...
2025-10-01T21:38:09
vercel/next.js
f3f6b6c45255afd3d232efd6773b67b50383a316
77ecc7caf48d4c57c07009ee39c65ae5ba9d7923
[release] couple `next` and `@next/swc` versions (#79036) ### Why? Since Next.js emits a debug warning to help catch when a stale `@next/swc` version is being used, couple their versions to be published together. https://github.com/vercel/next.js/blob/3f2a3647ee619c92f2d576b83dfde748003a7f31/packages/next/src/build...
[ { "path": ".changeset/config.json", "patch": "@@ -2,7 +2,7 @@\n \"$schema\": \"https://unpkg.com/@changesets/config@3.1.1/schema.json\",\n \"changelog\": \"@changesets/cli/changelog\",\n \"commit\": false,\n- \"fixed\": [],\n+ \"fixed\": [[\"next\", \"@next/swc\"]],\n \"linked\": [],\n \"access\...
2025-05-19T17:47:55
electron/electron
eba9d3fc79ce636bacffa6ebf5ed69e674b0a2e9
1941c88442b61f3e83125f197becc83cf6975a9c
fix: ensure v8 pointer compression + sandbox is enabled on 64bit native modules (#34844) * fix: ensure v8 pointer compression + sandbox is enabled on 64bit native modules * build: rely on config.gypi to enable pointer compression
[ { "path": "patches/node/.patches", "patch": "@@ -45,3 +45,4 @@ fix_add_v8_enable_reverse_jsargs_defines_in_common_gypi.patch\n json_parse_errors_made_user-friendly.patch\n build_define_libcpp_abi_namespace_as_cr_to_align_with_chromium.patch\n support_v8_sandboxed_pointers.patch\n+build_ensure_v8_pointer_com...
2022-07-08T08:06:06
huggingface/transformers
df8b60222590ae4e563306dd35bbd3a1f8a3122f
522975849c4235fafe595b1808e93eb3b16f0124
Fix failing `ProphetNetModelIntegrationTest` (#44439) * Fix failing ProphetNetModelIntegrationTest * Remove comment. --------- Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com>
[ { "path": "tests/models/prophetnet/test_modeling_prophetnet.py", "patch": "@@ -1154,7 +1154,7 @@ def test_pretrained_checkpoint_hidden_states(self):\n @slow\n def test_cnndm_inference(self):\n model = ProphetNetForConditionalGeneration.from_pretrained(\"microsoft/prophetnet-large-uncased-cnn...
2026-03-05T14:33:03
golang/go
3aa7c5ef01e147fb482f4b3e79c6f875a4b1b9fb
3f4164f508b8148eb526fc096884dba2609f5835
testing: fix reference to B.N in docstring Currently, a documentation reference to a struct member (such as [B.N]) does not result in it being rendered as a link, and thus the square brackets remain in the rendered documentation which is mildly confusing. The issue can be seen at https://pkg.go.dev/testing@master#hdr...
[ { "path": "src/testing/testing.go", "patch": "@@ -120,7 +120,7 @@\n // # b.N-style benchmarks\n //\n // Prior to the introduction of [B.Loop], benchmarks were written in a\n-// different style using [B.N]. For example:\n+// different style using B.N. For example:\n //\n //\tfunc BenchmarkRandInt(b *testing....
2025-01-21T01:38:26
facebook/react
015029dc655d0593a470bb4bcefd08e4126aaf48
50b09542790824f8d973ad265e49aab41cf8e954
[patch] Fix for constant propagation bug in VR Store --- Changes in `@enableOptimizeFunctionExpressions` caused a bug in the last Forget sync to VR Store. The repro can be summarized to something like this: ```js function foo() { const x = true; // some constant or global // Add some branching for type inf...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/SSA/EliminateRedundantPhi.ts", "patch": "@@ -27,9 +27,13 @@ import {\n * and phis rewrite all their identifiers based on this table. The algorithm loops over the CFG repeatedly\n * until there are no new rewrites: for a CFG without back-edg...
2023-08-02T21:30:57
vercel/next.js
5d2082ba3637427fd5d09928b63207eae84b7687
854992f4d7ca576390c231c1ab97643b37dc44f6
fix(doc): fix typo (#79369) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Document...
[ { "path": "docs/01-app/05-api-reference/02-components/image.mdx", "patch": "@@ -122,7 +122,7 @@ A boolean that causes the image to expand to the size of the parent element.\n \n **Object Fit**:\n \n-If no styles are applied to the image, the image will stretch to fit the container. You can use `objectFit` t...
2025-05-19T17:31:21
ollama/ollama
05a43e078a89247dcc71c703c1bee2af97c1655d
bc8909fb38525c89dda842d4ecfc86a933089a99
fix panic on bootstrapDevices (#12475) Wrong index variable was used.
[ { "path": "discover/runner.go", "patch": "@@ -456,7 +456,7 @@ func bootstrapDevices(ctx context.Context, ollamaLibDirs []string, extraEnvs []s\n \t\t\t\textra := strings.SplitN(extraEnvs[j], \"=\", 2)\n \t\t\t\tif cmp[0] == extra[0] {\n \t\t\t\t\tcmd.Env[i] = extraEnvs[j]\n-\t\t\t\t\textraDone[i] = true\n+\...
2025-10-02T00:39:29
electron/electron
1941c88442b61f3e83125f197becc83cf6975a9c
e83c3ec74442f0533e2d66c53fa84a075ebc20ae
fix: `setRepresentedFilename` with non-default `titlebarStyle` (#34834) fix: setRepresentedFilename with non-default titlebarStyle
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1150,6 +1150,8 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n \n void NativeWindowMac::SetRepresentedFilename(const std::string& filename) {\n [window_ setRepresentedFilename:base::SysUTF8ToNSString(filename)];\n+ if (buttons_proxy...
2022-07-08T06:33:42
huggingface/transformers
522975849c4235fafe595b1808e93eb3b16f0124
81b53436bf97b8cb02040839a902e0b799be3159
fix: Load model with co-located adapter from local path (Granite Speech) (#43781) * fix: Only overwrite the pretrained_model_name_or_path if needed with adapter The check is based on the assumption that if the current value is a path on disk and there is a `config.json` present in that path, the path points to a full...
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -954,7 +954,14 @@ def maybe_load_adapters(\n if _adapter_model_path is not None and os.path.isfile(_adapter_model_path):\n with open(_adapter_model_path, \"r\", encoding=\"utf-8\") as f:\n _adapter_model_path = pretraine...
2026-03-05T14:14:43
golang/go
3f4164f508b8148eb526fc096884dba2609f5835
40b3c0e58a0ae8dec4684a009bf3806769e0fc41
runtime: delete out of date comment Fixes #71328 Change-Id: I5827255bf1f53b8fc4a84fa1accb4089f73d5e8a GitHub-Last-Rev: 26f4eab182130c709be269491049fade3327ddd3 GitHub-Pull-Request: golang/go#71337 Reviewed-on: https://go-review.googlesource.com/c/go/+/643456 Reviewed-by: Jorropo <jorropo.pgm@gmail.com> Reviewed-by: K...
[ { "path": "src/runtime/panic.go", "patch": "@@ -1068,9 +1068,6 @@ func internal_sync_fatal(s string) {\n // throw should be used for runtime-internal fatal errors where Go itself,\n // rather than user code, may be at fault for the failure.\n //\n-// NOTE: temporarily marked \"go:noinline\" pending investig...
2025-01-20T04:11:23
facebook/react
2d8da0d32dc3b5347689b8b58114d4312dafeb1f
203d5ad43bd9268a52c99aa0abd2b71f155b9695
[babel] Don't console.error on unknown options Internally these are considered errors in our pipelines
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -108,18 +108,12 @@ export function parsePluginOptions(obj: unknown): PluginOptions {\n if (obj == null || typeof obj !== \"object\") {\n return defaultOptions;\n }\n- const invalidOptions: Array<s...
2023-08-02T16:34:18
electron/electron
7ec88584b50f74b3d596448976781e91ea052e47
47d8d4cc5c0b945d52cc7c4b21c6cfe749b3df57
fix: WCO pressed background state updates (#34771)
[ { "path": "shell/browser/native_window_views_win.cc", "patch": "@@ -11,6 +11,7 @@\n #include \"shell/browser/browser.h\"\n #include \"shell/browser/native_window_views.h\"\n #include \"shell/browser/ui/views/root_view.h\"\n+#include \"shell/browser/ui/views/win_frame_view.h\"\n #include \"shell/common/elect...
2022-07-07T15:17:20
huggingface/transformers
81b53436bf97b8cb02040839a902e0b799be3159
130f1644873e2bbd4b234b68e71c65e85ed86825
[Trainer] fix SP loss (#44461) * fix SP loss * better fallback * Apply suggestion from @kashif
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -703,7 +703,18 @@ def deepspeed_sp_compute_loss(accelerator, model, inputs, return_outputs, pc):\n outputs = model(**inputs)\n loss = outputs.loss\n \n- sp_group = accelerator.torch_device_mesh[\"sp\"].get_group()\n+ # Prefer...
2026-03-05T12:45:36
golang/go
40b3c0e58a0ae8dec4684a009bf3806769e0fc41
87023bb27f2cbe86c5baa9cef5ad91a6fc9a1c14
internal/coverage: refactor EmitTextual in preparation for bugfix Refactor cformat.EmitTextual to accept a package filter (list of packages to report). This is a no-op in terms of exposed coverage functionality, but we will need this feature in a subsequent patch. Updates #70244. Change-Id: I1e6bcbfb5e68187d4d69d54b...
[ { "path": "src/cmd/covdata/dump.go", "patch": "@@ -331,7 +331,7 @@ func (d *dstate) Finish() {\n \t\t\td.format.EmitFuncs(os.Stdout)\n \t\t}\n \t\tif d.textfmtoutf != nil {\n-\t\t\tif err := d.format.EmitTextual(d.textfmtoutf); err != nil {\n+\t\t\tif err := d.format.EmitTextual(nil, d.textfmtoutf); err != ...
2024-11-12T17:12:44
facebook/react
5230e6d8491a21b8c4566d503d05bf05065e5185
e77d975b169a4e768e2efec2a506eb4a1bd1090d
Add failing test case for ValidateNoSetStateInRender bug The current heuristic to check if setState is called in render is based on whether the lambda containing the call to setState has a mutable range that got extended. This doesn't seem to work in all cases so this validation needs a bit more work before we can...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-validate-no-set-state-not-all-mutable-range-extensions-are-bad.expect.md", "patch": "@@ -0,0 +1,39 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const logEvent = useLogging(props.a...
2023-07-27T21:08:01
electron/electron
98cd16d336f512406eee3565be1cead86514db7b
e5db178ab6ced4bd2fb315457dc1e3cabf9d379f
chore: fix typos (#34731)
[ { "path": "docs/api/environment-variables.md", "patch": "@@ -139,8 +139,7 @@ green and non-draggable regions will be colored red to aid debugging.\n \n ### `ELECTRON_DEBUG_NOTIFICATIONS`\n \n-Adds extra logs to [`Notification`](./notification.md) lifecycles on macOS to aid in debugging. Extra logging will b...
2022-07-05T15:49:56
huggingface/transformers
5c31e940e3470ab92b8083dfa797200f67793d30
cc7ab9be508ce6ed3637bba9e50367b29b742dc6
skip 1 invalid test case for higgs_audio_v2 (#44350) * skip 1 invalid test case for higgs_audio_v2 Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * fix bug Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <...
[ { "path": "src/transformers/models/higgs_audio_v2/generation_higgs_audio_v2.py", "patch": "@@ -107,7 +107,7 @@ def __init__(\n \n @add_start_docstrings(LOGITS_PROCESSOR_INPUTS_DOCSTRING)\n def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> torch.FloatTensor:\n- scor...
2026-03-05T11:08:08
ollama/ollama
35ac4eb12c35644ce8bca38dfc5d6636d2cafa16
3d0b1734c006798960a56acb0ea23ea57e0dd1d9
fix keep alive this reference to keep alive was missed in #12041 so chat has a diffferent behaviour than generate
[ { "path": "server/routes.go", "patch": "@@ -1777,7 +1777,7 @@ func (s *Server) ChatHandler(c *gin.Context) {\n \t}\n \n \t// expire the runner\n-\tif len(req.Messages) == 0 && req.KeepAlive != nil && int(req.KeepAlive.Seconds()) == 0 {\n+\tif len(req.Messages) == 0 && req.KeepAlive != nil && req.KeepAlive.D...
2025-10-01T00:12:37
facebook/react
12e6cee06f64d7640047f60936822dd021b1c0f5
20b175fcd5f49e77b4f77e0a2dc1b3f236afde06
[eslint-plugin] Update hermes-parser to 0.15.0 This includes a fix where the HermesToBabelAdapter was incorrectly outputting a `ClassMethod` instead of `ClassPrivateMethod` in certain scenarios. This was causing issues with our eslint plugin as it would crash on any file containing private methods because a malfor...
[ { "path": "compiler/forget/packages/eslint-plugin-react-forget/package.json", "patch": "@@ -17,7 +17,7 @@\n \"@babel/core\": \"^7.19.1\",\n \"@babel/plugin-proposal-private-methods\": \"^7.18.6\",\n \"babel-plugin-react-forget\": \"*\",\n- \"hermes-parser\": \"^0.14.0\"\n+ \"hermes-parser\...
2023-07-27T15:46:50
golang/go
87023bb27f2cbe86c5baa9cef5ad91a6fc9a1c14
80bf7d83edbb48e2411d755f0636565467bb5a56
go/types, types2: ensure deterministic output when reporting an init cycle Fixes #71254 Change-Id: Ie3bad281403c8ff6215e03d92760b9a378714cee GitHub-Last-Rev: 9b804a7842421dca6a97c57ce18523b593b0817d GitHub-Pull-Request: golang/go#71264 Reviewed-on: https://go-review.googlesource.com/c/go/+/642396 LUCI-TryBot-Result: ...
[ { "path": "src/cmd/compile/internal/types2/initorder.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"fmt\"\n \t. \"internal/types/errors\"\n \t\"slices\"\n+\t\"sort\"\n )\n \n // initOrder computes the Info.InitOrder for package variables.\n@@ -139,7 +140,16 @@ func findPath(objMap map[Object]*declInfo, fro...
2025-01-17T00:38:59
electron/electron
c885f9063bda5032fe430bbee724f77b66ce034a
c3920c5c02a6875b444a7c4017ba85145b658fec
docs: document the removal of IA32 Linux support (#34787) * docs: document the removal of IA32 Linux support Chromium had dropped support for IA32 Linux, so the Chromium 102.0.4999.0 upgrade PR, https://github.com/electron/electron/pull/33731, had introduced the commit, https://github.com/electron/electron/pull/...
[ { "path": "docs/breaking-changes.md", "patch": "@@ -98,7 +98,10 @@ is the origin that is checking for device permission.\n \n ## Planned Breaking API Changes (19.0)\n \n-None\n+### Removed: IA32 Linux binaries\n+\n+This is a result of Chromium 102.0.4999.0 dropping support for IA32 Linux.\n+This concludes t...
2022-06-30T16:23:03
huggingface/transformers
cc7ab9be508ce6ed3637bba9e50367b29b742dc6
421c7f6248e28d24d84ee000252a1e71fbc24917
Fix position_ids typo in Qwen3_5TextModel forward pass (#44399) * Fix position_ids typo in Qwen3_5TextModel forward pass In `Qwen3_5TextModel.forward`, after splitting `position_ids` into `text_position_ids` (index 0, for text) and `position_ids` (indices 1:, for temporal/height/width), the decoder layer call incorre...
[ { "path": "src/transformers/models/qwen3_5/modeling_qwen3_5.py", "patch": "@@ -1354,7 +1354,7 @@ def forward(\n hidden_states,\n position_embeddings=position_embeddings,\n attention_mask=layer_mask,\n- position_ids=position_ids,\n+ ...
2026-03-05T09:47:23
ollama/ollama
3d0b1734c006798960a56acb0ea23ea57e0dd1d9
efaee8c2d658f7f40a2f44b411ebfb25fcc198b0
ggml: Preallocate CUDA pool memory The GGML CUDA backend allocates additional memory for intermediate results during calculation. This memory isn't currently allocated during worst case graph reservation and therefore not included in scheduling. This means that as these buffers potentially grow with context length, we...
[ { "path": "llama/patches/0022-ggml-No-alloc-mode.patch", "patch": "@@ -3,78 +3,102 @@ From: Jesse Gross <jesse@ollama.com>\n Date: Wed, 23 Jul 2025 11:58:49 -0700\n Subject: [PATCH] ggml: No-alloc mode\n \n-Callers can set a backend buffer type to be no-alloc, meaning that\n+Callers can set a scheduler to b...
2025-09-09T23:17:31
golang/go
80bf7d83edbb48e2411d755f0636565467bb5a56
1a93e4a2cf43b0ded141d33620966bb252cac1bd
go/types, types2: remove superfluous assertion (fix build) Remove an assertion that was overly restrictive and hard to get correct under all circumstances (i.e., in the presence of incorrect) code. This matches the code for *Named types in that specific switch. Fixes #71284. Change-Id: Ifccf8b73dc70cac9cb1c8b24946d1...
[ { "path": "src/cmd/compile/internal/types2/typexpr.go", "patch": "@@ -423,11 +423,6 @@ func setDefType(def *TypeName, typ Type) {\n \tif def != nil {\n \t\tswitch t := def.typ.(type) {\n \t\tcase *Alias:\n-\t\t\t// t.fromRHS should always be set, either to an invalid type\n-\t\t\t// in the beginning, or to ...
2025-01-17T00:08:26
facebook/react
8405d8644fd20758e422aa4fc58ea4a50df5ee3e
6912c31056651e2144a9b69d09ed3797dba60079
[eslint] Add plugin-proposal-private-methods There was a bug in our internal Hermes to Babel adapter which caused some malformed AST to be constructed, which babel would then validate as being incorrect. That bug was fixed, but we still have to add this plugin so that private class methods can be parsed by babel. ...
[ { "path": "compiler/forget/packages/eslint-plugin-react-forget/package.json", "patch": "@@ -15,6 +15,7 @@\n },\n \"dependencies\": {\n \"@babel/core\": \"^7.19.1\",\n+ \"@babel/plugin-proposal-private-methods\": \"^7.18.6\",\n \"babel-plugin-react-forget\": \"*\",\n \"hermes-parser\": \"^...
2023-07-27T14:52:28
vercel/next.js
854992f4d7ca576390c231c1ab97643b37dc44f6
8eaf44b0364b7bca794918da990f8c73420cff7f
[build-sourcemaps] Sourcemap errors during prerender if `experimental.enablePrerenderSourceMaps` is enabled (#79109)
[ { "path": ".changeset/swift-socks-find.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Sourcemap errors during prerender if `experimental.enablePrerenderSourceMaps` is enabled", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "packages/next/src/build/i...
2025-05-19T17:16:34
electron/electron
1f814eacb2875c17d6ef6d0f702fc1c4003bcde6
ad2b1fee59c2e4352b0c5664f72c0067a2ef4d7f
build: fix release_dependency_versions workflow (#34573) Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
[ { "path": ".github/workflows/release_dependency_versions.yml", "patch": "@@ -10,7 +10,7 @@ env:\n jobs:\n check_tag:\n runs-on: ubuntu-latest\n- id: check_tag\n+ steps:\n - uses: actions/checkout@v3\n - name: Check Tag\n run: |", "additions": 1, "deletions": 1, "languag...
2022-06-29T12:55:59
ollama/ollama
efaee8c2d658f7f40a2f44b411ebfb25fcc198b0
734b57da0e04d363e70ea47a3a6f372c0b9dac82
ggml: Backport scale kernel fixes The GGML scale kernel uses signed 32-bit ints to represent the number of elements in the tensor. For large images, mistral-small3.2 overflows this, triggering CUDA errors due to negative arguments. Currently, this can happen when the user passes a large image to mistral-small3.2. How...
[ { "path": "llama/patches/0026-ggml-Backport-scale-kernel-fixes.patch", "patch": "@@ -0,0 +1,57 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Jesse Gross <jesse@ollama.com>\n+Date: Tue, 23 Sep 2025 15:41:58 -0700\n+Subject: [PATCH] ggml: Backport scale kernel fixes\n+\n+...
2025-09-23T19:13:39
facebook/react
f21270a97d531c45e7f57960a5436a1fd9e9c35c
90c3a3866d59c76b504d5e6c87a64a71ee6641d0
[rust] Complete estree through ES2021 Adds more AST types to handle the full ES2021 spec. At least, in theory I defined the schema correctly, and we'll have to just fix any bugs as we encounter them.
[ { "path": "compiler/forget/crates/forget_estree/src/generated.rs", "patch": "@@ -36,6 +36,11 @@ pub struct RegExpValue {\n pub pattern: String,\n pub flags: String,\n }\n+#[derive(Serialize, Deserialize, Clone, Debug)]\n+pub struct TemplateElementValue {\n+ pub cooked: Option<String>,\n+ pub r...
2023-07-25T22:58:58
vercel/next.js
8eaf44b0364b7bca794918da990f8c73420cff7f
5333dda84f240cbbc9d89d11f67c10be8fd82487
Fixed rewrite param parsing for interception routes in Vercel deployments (#79204) > [!NOTE] > - Introduced in [PR #67400](https://github.com/vercel/next.js/pull/67400) and released in [v15.0.0-canary.54](https://github.com/vercel/next.js/releases/tag/v15.0.0-canary.54) > - See failed test in deployment [GitHub Acti...
[ { "path": ".changeset/shaggy-owls-visit.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Fixed rewrite params of the interception routes not being parsed correctly in certain deployed environments", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "packa...
2025-05-19T17:09:29
golang/go
0b632d26b99e3924aea14574e422065e13f2a1c5
6a4effa08ba5c7b182d319a2a8ddd782274c2f74
cmd/internal/obj/wasm, runtime: detect wasmexport call before runtime initialization If a wasmexport function is called from the host before initializing the Go Wasm module, currently it will likely fail with a bounds error, because the uninitialized SP is 0, and any SP decrement will make it out of bounds. As at lea...
[ { "path": "src/cmd/internal/obj/wasm/wasmobj.go", "patch": "@@ -129,6 +129,7 @@ var (\n \tmorestackNoCtxt *obj.LSym\n \tsigpanic *obj.LSym\n \twasm_pc_f_loop_export *obj.LSym\n+\truntimeNotInitialized *obj.LSym\n )\n \n const (\n@@ -149,6 +150,7 @@ func instinit(ctxt *obj.Link) {\n \tmore...
2025-01-16T18:56:15