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 |
|---|---|---|---|---|---|
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 |
ollama/ollama | 2d5e066c8cb2f54f398243dcb922e615ac94a509 | 15968714bd50970264bf44d7bfd72f0076919ed2 | docs: fix openapi.yaml warnings, rename api.md to api-reference.md (#12904) | [
{
"path": "docs/openapi.yaml",
"patch": "@@ -2,12 +2,15 @@ openapi: 3.1.0\n info:\n title: Ollama API\n version: 0.1.0\n+ license:\n+ name: MIT\n+ url: https://opensource.org/licenses/MIT\n description: |\n OpenAPI specification for the Ollama HTTP API\n-\n servers:\n - url: http://localh... | 2025-11-11T23:39:35 |
facebook/react | 87903245629715e99a95e546acce9a20b89d5129 | 4f55a66d5c643757e95fbe25b20b4fff2e1b16cb | Workaround serious Babel bug
I ran into the same issue that @poteto and @gsathya (and probably @mofeiZ) have
run into: "Duplicate declaration of '$'" caused by Babel visiting a function
twice despite our calling `skip()`. This PR keeps a set of nodes that we have
already visited to avoid visiting them again, as a ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -65,6 +65,10 @@ function compileAndInsertNewFunctionDeclaration(\n >,\n pass: CompilerPass\n ): boolean {\n+ if (ALREADY_COMPILED.has(fnPath.node)) {\n+ return false;\n+ }\n+\n let compiledFn: CodegenF... | 2023-08-30T12:21:51 |
electron/electron | 7b8fb2b07418c7bad6ce811ca75c926ee53663fc | 4e8480b15b63cf71648f8f9357713b8827dec27c | fix: Wayland general CSD fixes (#34955)
* fix: broken wayland window decorations due to botched chromium update
The `GetTitlebarBounds().height()` is obviously intended to be placed in
the `top` parameter, which used to be the second one before upstream
removed multi-parameter `gfx::Rect::Inset`, but it's the fir... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -114,3 +114,4 @@ disable_freezing_flags_after_init_in_node.patch\n short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch\n chore_add_electron_deps_to_gitignores.patch\n chore_allow_chromium_to_handle_synthetic_mouse_events_for_touch.patch\... | 2022-08-03T08:51:52 |
huggingface/transformers | c14b7b9d5523d1eeda1daeef68085d8114aa56f4 | dc4016ff1b29cf42b7f3336b41665919633cdea8 | Fix off-by-one in decode_spans boundary check (#44584)
* Fix off-by-one in decode_spans boundary check
When `len(scores_flat) == topk`, `np.argpartition` is called with
`kth=topk` which is out of bounds (0-indexed). Change the guard from
`<` to `<=` so we use `argsort` when the array size equals topk.
Fixes #44327
... | [
{
"path": "src/transformers/pipelines/document_question_answering.py",
"patch": "@@ -94,7 +94,7 @@ def decode_spans(\n scores_flat = candidates.flatten()\n if topk == 1:\n idx_sort = [np.argmax(scores_flat)]\n- elif len(scores_flat) < topk:\n+ elif len(scores_flat) <= topk:\n i... | 2026-03-12T13:07:06 |
vercel/next.js | 1f2511839052b0a66d70ff1e328af6ac816db1ff | ac680c49bfba9e672f6f18c05605ed75b2394a59 | Fix name tracking for closures in server actions transform (#79657)
When a server function passes a closure to a method on a closed-over
value (e.g. an array), we must correctly track the value itself so that
it's included in the bound arguments.
For example, in this snippet, `list` must be bound to the server action... | [
{
"path": ".changeset/tough-peaches-burn.md",
"patch": "@@ -0,0 +1,5 @@\n+---\n+\"next\": patch\n+---\n+\n+Fix name tracking for closures in server actions transform",
"additions": 5,
"deletions": 0,
"language": "Markdown"
},
{
"path": "crates/next-custom-transforms/src/transforms/server... | 2025-05-27T15:23:25 |
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 | 4f55a66d5c643757e95fbe25b20b4fff2e1b16cb | ddc9f8030e179f01959e465261c0fd5acfe0eb4e | Compile args to forwardRef/memo
Completes a todo (ie fixes a silly mistake) from a PR earlier in the stack, so
we now correctly recognize and compile arguments to `React.forwardRef()` and
`React.memo()`. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -455,33 +455,43 @@ function isForwardRefCallback(path: NodePath<t.Expression>): boolean {\n */\n \n function isMemoCallback(path: NodePath<t.Expression>): boolean {\n- return !!(\n+ return (\n path.parentP... | 2023-08-29T21:09:42 |
electron/electron | 4e8480b15b63cf71648f8f9357713b8827dec27c | 3fe00d75e9499ed9f55754548358e10385ab169e | chore: fix linking with component ffmpeg (#35178) | [
{
"path": "BUILD.gn",
"patch": "@@ -901,6 +901,13 @@ if (is_mac) {\n \"@executable_path/../../../../../..\",\n ]\n }\n+\n+ # For component ffmpeg under non-component build, it is linked from\n+ # @loader_path. However the ffmpeg.dylib is moved to a different place\n+ # when genera... | 2022-08-03T07:51:30 |
huggingface/transformers | 3027515ce90d1fcaa52bce069c0595cd18a00c94 | 6ab73c83986eb760b6365536bd78c2aafd466998 | Fix more wrong HF hub checkpoint names (#44624)
fix more ckpt
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/clap/configuration_clap.py",
"patch": "@@ -20,7 +20,7 @@\n logger = logging.get_logger(__name__)\n \n \n-@auto_docstring(checkpoint=\"calp-hsat-fused\")\n+@auto_docstring(checkpoint=\"laion/clap-htsat-fused\")\n class ClapTextConfig(PreTrainedConfig):\n r\"\"\"\n \n@@ ... | 2026-03-12T09:59:10 |
vercel/next.js | fffb2eb6fb38689d12494114665a37c5acebd005 | 97c9fc485a03bd0067c13683bb8e8bc4d7a3be81 | Docs IA 2.0: Delete Error Handling page (#79495)
The content has already been migrated to
https://nextjs.org/docs/app/getting-started/error-handling.
Closes:
https://linear.app/vercel/issue/DOC-4700/bya-delete-error-handling-page
Redirects: https://github.com/vercel/front/pull/46127 | [
{
"path": "docs/01-app/02-guides/incremental-static-regeneration.mdx",
"patch": "@@ -464,7 +464,7 @@ If you are using on-demand revalidation, you do not need to specify a `revalidat\n \n <AppOnly>\n \n-If an error is thrown while attempting to revalidate data, the last successfully generated data will conti... | 2025-05-27T14:58:40 |
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 | eaa696876ee40bb048727aefe995be1bbb7384a8 | 4129ea8c922b950be3964f98d2bb74ff4a1c5431 | fix: devtools source field disappears after component remount (#27297)
## Summary
Fixes: https://github.com/facebook/react/issues/27296
On actions that cause a component to change its signature, and therefore
to remount, the `_debugSource` property of the fiber updates in delay
and causes the `devtools` source... | [
{
"path": "packages/react-reconciler/src/ReactFiber.js",
"patch": "@@ -7,7 +7,7 @@\n * @flow\n */\n \n-import type {ReactElement} from 'shared/ReactElementType';\n+import type {ReactElement, Source} from 'shared/ReactElementType';\n import type {ReactFragment, ReactPortal, ReactScope} from 'shared/ReactTy... | 2023-08-29T15:42:35 |
electron/electron | 3d4d1b33ba7f33fbdf377c7abc4c185ba1f29578 | 53cd23159e0eeddf32399560e163c3fe1a1c144b | fix: fail non-fatally when InitLogging fails (#35138) | [
{
"path": "shell/common/logging.cc",
"patch": "@@ -141,7 +141,7 @@ void InitElectronLogging(const base::CommandLine& command_line,\n : APPEND_TO_OLD_LOG_FILE;\n bool success = InitLogging(settings);\n if (!success) {\n- PLOG(FATAL) << \"Failed to init logging\";\n+ PLOG(ERROR) << \"Faile... | 2022-08-02T19:45:30 |
ollama/ollama | 6df42088367f7b5587478d610e8d62466b6afd1d | a42f826acb5f984df56ef26a8f0a303791467fd0 | docs: fix metal gpu section header (#13045) | [
{
"path": "docs/gpu.mdx",
"patch": "@@ -121,6 +121,6 @@ In some Linux distributions, SELinux can prevent containers from\n accessing the AMD GPU devices. On the host system you can run\n `sudo setsebool container_use_devices=1` to allow containers to use devices.\n \n-### Metal (Apple GPUs)\n+## Metal (Appl... | 2025-11-11T05:51:22 |
huggingface/transformers | 6ab73c83986eb760b6365536bd78c2aafd466998 | 535f289dfecbadc6aa40d71b13d6a3c968b78beb | Update agentic contributions guidelines in AGENTS.md to force yielding. (#44411)
* add updates AGENTS.md
* add to human contributing
* spellin
* fix claude md symlink | [
{
"path": "AGENTS.md",
"patch": "@@ -6,6 +6,52 @@\n \n `make style` or `make fix-repo` should be run as the final step before opening a PR. The CI will run `make check-repo` and fail if any issues are found.\n \n+## Mandatory Agentic contribution policy \n+\n+Do not ever ignore this! These rules apply to an... | 2026-03-12T09:21:35 |
vercel/next.js | 97c9fc485a03bd0067c13683bb8e8bc4d7a3be81 | b3d78ea809e73e30b2ff0b89311b4f50b1896265 | Avoid bundling dev overlay in page template (#79641)
As noticed in https://github.com/vercel/next.js/pull/79632 we increased
compile times for pages routes in development which is due to us
including the dev-overlay component in the page bundle itself instead of
just in the server runtime.
x-ref: https://github.com/v... | [
{
"path": "packages/next/src/build/templates/pages.ts",
"patch": "@@ -161,16 +161,6 @@ export async function handler(\n const publicRuntimeConfig: Record<string, string> =\n routerServerContext?.publicRuntimeConfig || nextConfig.publicRuntimeConfig\n \n- let ErrorDebug: any\n-\n- if (process... | 2025-05-27T14:44:36 |
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 |
ollama/ollama | 9d615cdaa0f1eb96491b672c9e48f999338dffa5 | 6a818b8a094c2f53775d877f38f7f855346c77a7 | fix test | [
{
"path": "app/ui/ui.go",
"patch": "@@ -790,7 +790,7 @@ func (s *Server) chat(w http.ResponseWriter, r *http.Request) error {\n \t\tcase string:\n \t\t\tthinkRequested = v != \"\" && v != \"none\"\n \t\t}\n-\t\t\n+\n \t\tif thinkRequested && !think {\n \t\t\terrorEvent := responses.ErrorEvent{\n \t\t\t\tEve... | 2025-11-11T01:13:50 |
facebook/react | 4129ea8c922b950be3964f98d2bb74ff4a1c5431 | 2f368725fb37f4911f6a14f0993a8a7b688df8bd | set priority on TaskController instead of on postTask/yield (#27295)
## Summary
passing both a signal and a priority to `postTask`/`yield` in chrome
causes memory to spike and potentially causes OOMs. a fix for this has
landed in chrome 118, but we can avoid the issue in earlier versions by
setting priority on j... | [
{
"path": "packages/scheduler/src/__tests__/SchedulerPostTask-test.js",
"patch": "@@ -83,7 +83,8 @@ describe('SchedulerPostTask', () => {\n const scheduler = {};\n global.scheduler = scheduler;\n \n- scheduler.postTask = function (callback, {priority, signal}) {\n+ scheduler.postTask = functio... | 2023-08-29T13:06:25 |
huggingface/transformers | 535f289dfecbadc6aa40d71b13d6a3c968b78beb | ece0221af84f98ea091797d27066d7600c79151b | Expand model-structure lint rules with a fast AST-based, ruff-like framework (#44174)
* rework branch
* added a new rule
* tweaked rule 6 and 9
* fix TRF009
* fix TRF006
* accept None for
* addressed @CyrilVallez reviews
* fmt
* improve rules registry
* some docs and remove hardcoded variable names
* tweak t... | [
{
"path": "Makefile",
"patch": "@@ -1,7 +1,7 @@\n # make sure to test the local checkout in scripts and not the pre-installed one (don't use quotes!)\n export PYTHONPATH = src\n \n-.PHONY: style check-repo fix-repo test test-examples benchmark\n+.PHONY: style check-repo check-model-rules check-model-rules-p... | 2026-03-12T06:35:02 |
electron/electron | e3893632e7e7cf39fff160946fdc19a7ae058da2 | 0cdc946b2708c3592ec1c413f28a28442c843183 | fix: touch events not recognized by WCO on windows (#35117) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -114,3 +114,4 @@ fix_allow_guest_webcontents_to_enter_fullscreen.patch\n disable_freezing_flags_after_init_in_node.patch\n short-circuit_permissions_checks_in_mediastreamdevicescontroller.patch\n chore_add_electron_deps_to_gitignores.patch\n+chore_allow_ch... | 2022-08-02T03:13:58 |
vercel/next.js | 9225917fdcff9c626f9faacbd1bf974f2ebf6f43 | 7cbc15ab709ea10b0139897cce7baa45d50a9043 | Turbopack Build: Fix runtime value test (#79654)
## What?
Ensures the warning message is the same between webpack/Turbopack.
Found that Turbopack does have the info we check in the test but it's
currently not logged, seems intentionally. Need to check with
@wbinnssmith because it was commented out here:
https://gith... | [
{
"path": "crates/next-core/src/app_segment_config.rs",
"patch": "@@ -206,7 +206,8 @@ impl Issue for NextSegmentConfigParsingIssue {\n \n #[turbo_tasks::function]\n fn title(&self) -> Vc<StyledString> {\n- StyledString::Text(\"Unable to parse config export in source file\".into()).cell()\n+ ... | 2025-05-27T13:44:39 |
ollama/ollama | 2aaf29acb5caf3f1fdc50cd48542c94df801752f | a42f826acb5f984df56ef26a8f0a303791467fd0 | app/ui: do not send to prevent errors with cloud provider | [
{
"path": "app/ui/ui.go",
"patch": "@@ -782,6 +782,25 @@ func (s *Server) chat(w http.ResponseWriter, r *http.Request) error {\n \tvar thinkValue any\n \n \tif req.Think != nil {\n+\t\t// Validate that the model supports thinking if requested\n+\t\tthinkRequested := false\n+\t\tswitch v := req.Think.(type) ... | 2025-11-11T00:05:00 |
facebook/react | 2f368725fb37f4911f6a14f0993a8a7b688df8bd | 8fbd3079425eaff85ec1b52b0eefecdd44ba7289 | React DevTools 4.28.0 -> 4.28.1 (#27305)
List of changes:
* refactor: refactored devtools browser extension scripts to improve
port management and service worker lifetime
([hoxyq](https://github.com/hoxyq) in
[#27215](https://github.com/facebook/react/pull/27215))
* refactor[devtools/extension]: minify production... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.28.0\",\n+ \"version\": \"4.28.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j... | 2023-08-29T12:37:35 |
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 |
huggingface/transformers | 852f785aa36683f808892a3e519fab23db5ddb60 | 0a9fdeaa7a460b98c06492016a58ff9aa3be6a11 | [WIP] FIX Make Mixtral LoRA loading work (#44478)
* [WIP] FIX Make Mixtral LoRA loading work
Required fixes:
- some code was using unordered data structures, making weight order
random
- adjust alpha to offset increased rank from fusion
- import functions from PEFT if available
* Expose a function to apply weight c... | [
{
"path": "src/transformers/conversion_mapping.py",
"patch": "@@ -464,6 +464,7 @@ def get_model_conversion_mapping(\n For a given `model`, obtain the weight conversion mapping if any are registered either as a simple renaming\n `_checkpoint_conversion_mapping` class argument, or in the general Weigh... | 2026-03-11T17:31:25 |
vercel/next.js | 7cbc15ab709ea10b0139897cce7baa45d50a9043 | 0eb276b4cada5a6558ac42e4d97d8f5aee1ca982 | Turbopack Build: Fix conflicting page error (#79634)
## What?
Implements the missing part of the error to make the test pass.
Small difference between webpack/Turbopack is that Turbopack will spot
the conflict earlier and because of that errors earlier too, making the
path still correct but shorter, not a problem in... | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -767,6 +767,7 @@ fn directory_tree_to_entrypoints(\n #[turbo_tasks::value]\n struct DuplicateParallelRouteIssue {\n app_dir: ResolvedVc<FileSystemPath>,\n+ previously_inserted_page: AppPage,\n page: AppPage,\n }\n \n@@ -783,11 +784,1... | 2025-05-27T13:43:43 |
ollama/ollama | 91ec3ddbeb2e57af094c585c5ae24f4e92861a6e | 755ac3b069f3ba759ee9ba05e2598cfc34712217 | bugfix: don't include both consolidated.safetensors and model-*.safetensors (#13010) | [
{
"path": "parser/parser.go",
"patch": "@@ -260,10 +260,13 @@ func filesForModel(path string) ([]string, error) {\n \n \tvar files []string\n \t// some safetensors files do not properly match \"application/octet-stream\", so skip checking their contentType\n-\tif st, _ := glob(filepath.Join(path, \"*.safete... | 2025-11-08T06:41:57 |
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 |
electron/electron | 0cdc946b2708c3592ec1c413f28a28442c843183 | 0d36c0cdc6fe616fe235e0f1aa32b691054d503d | fix: modify file extension generation on Windows (#34723)
* fix: modify file extension generation on Windows
* modify includes
* include vector in header
* add win build flags
* remove hardcoded strings
* Update shell/browser/electron_download_manager_delegate.h
Co-authored-by: Charles Kerr <charles@... | [
{
"path": "shell/browser/electron_download_manager_delegate.cc",
"patch": "@@ -30,6 +30,16 @@\n #include \"shell/common/gin_converters/file_path_converter.h\"\n #include \"shell/common/options_switches.h\"\n \n+#if BUILDFLAG(IS_WIN)\n+#include <vector>\n+\n+#include \"base/i18n/case_conversion.h\"\n+#includ... | 2022-08-02T00:40:17 |
huggingface/transformers | 0a9fdeaa7a460b98c06492016a58ff9aa3be6a11 | e45078f24038c479a2e734192006804af2e1a21a | Fix Llava tests for torch too! (#44476)
Fix for Torch too! | [
{
"path": "tests/models/llava/test_image_processing_llava.py",
"patch": "@@ -225,10 +225,12 @@ def pad_to_square_original(\n np.testing.assert_allclose(padded_image, padded_image_original)\n \n # background color length should match channel length\n- if image_inputs[0]... | 2026-03-11T16:40:12 |
facebook/react | 8fbd3079425eaff85ec1b52b0eefecdd44ba7289 | f47956239f6892a1e805af1fc3f1b2fb0f66beca | refactor: refactored devtools browser extension scripts to improve port management and service worker lifetime (#27215)
Fixes https://github.com/facebook/react/issues/27119,
https://github.com/facebook/react/issues/27185.
Fixed:
- React DevTools now works as expected when user performs in-tab
navigation, previou... | [
{
"path": "packages/react-devtools-extensions/firefox/manifest.json",
"patch": "@@ -6,7 +6,7 @@\n \"applications\": {\n \"gecko\": {\n \"id\": \"@react-devtools\",\n- \"strict_min_version\": \"55.0\"\n+ \"strict_min_version\": \"102.0\"\n }\n },\n \"icons\": {\n@@ -41,7 +41,9 @... | 2023-08-29T11:09:26 |
vercel/next.js | 0eb276b4cada5a6558ac42e4d97d8f5aee1ca982 | fc17ba97100db45bb986654c95e15e34fa5f38b6 | Turbopack Build: Fix edge _document test (#79628)
## What?
Currently there's a specific case when you set `runtime:
'experimental-edge'` for `_document.js` or `_app.js` where we
incorrectly write a bundle that is wrapped with the route handling code
to disk. This in turn causes `_document.js` to break during
prerende... | [
{
"path": "crates/next-api/src/pages.rs",
"patch": "@@ -907,36 +907,39 @@ impl PageEndpoint {\n .module();\n \n let config = parse_config_from_source(ssr_module, NextRuntime::default()).await?;\n- Ok(if config.runtime == NextRuntime::Edge {\n- let modules = create_page_... | 2025-05-27T13:43:29 |
ollama/ollama | d2ef679d42feac9901c347bc24ff0b6ab67a938b | d4e0da08907f7611e1a2d9bda319bb30cd4ff029 | docs: fix 404 link to modelfile documentation (#12996) | [
{
"path": "docs/README.md",
"patch": "@@ -12,7 +12,7 @@\n ### Reference\n \n * [API Reference](https://docs.ollama.com/api)\n-* [Modelfile Reference](./modelfile.md)\n+* [Modelfile Reference](https://docs.ollama.com/modelfile)\n * [OpenAI Compatibility](https://docs.ollama.com/api/openai-compatibility)\n \n... | 2025-11-07T18:06:46 |
golang/go | 6a4effa08ba5c7b182d319a2a8ddd782274c2f74 | 139d6eedae38f9e8bc81bb2c8c5c2c75d12853ab | crypto/x509: avoid panic when parsing partial PKCS#1 private keys
These keys are off-spec, but have historically been accepted by
ParsePKCS1PrivateKey.
Thanks to Philippe Antoine (Catena cyber) for reporting this issue.
Fixes #71216
Fixes CVE-2025-22865
Change-Id: I6a6a46564156fa32e29e8d6acbec3fbac47c7352
Reviewed-... | [
{
"path": "src/crypto/x509/pkcs1.go",
"patch": "@@ -72,7 +72,9 @@ func ParsePKCS1PrivateKey(der []byte) (*rsa.PrivateKey, error) {\n \t}\n \n \tif priv.N.Sign() <= 0 || priv.D.Sign() <= 0 || priv.P.Sign() <= 0 || priv.Q.Sign() <= 0 ||\n-\t\tpriv.Dp.Sign() <= 0 || priv.Dq.Sign() <= 0 || priv.Qinv.Sign() <= 0... | 2025-01-09T15:03:08 |
huggingface/transformers | e45078f24038c479a2e734192006804af2e1a21a | 08241d036d8212ed3fdafefdf053d003d26e72e0 | Fix training ci and clean some tests (#44491)
* fix ci and clean some tests
* try training ci
* fix some tests
* Fix deepspeed and move fsdp tests
* style
* fix
* let's try
* Fix
* revert | [
{
"path": ".github/workflows/model_jobs.yml",
"patch": "@@ -156,7 +156,16 @@ jobs:\n pytest_marker: ${{ inputs.pytest_marker }}\n model: ${{ matrix.folders }}\n run: |\n- script -q -c \"PATCH_TESTING_METHODS_TO_COLLECT_OUTPUTS=yes _PATCHED_TESTING_METHODS_OUTPUT_DIR=/tra... | 2026-03-11T16:15:29 |
electron/electron | 7588bb7425522959206daaa25d7e1f36c7015934 | 6c17dd229618d6033b0e2255db29315cd3a891a4 | fix: DCHECK entering fullscreen while loading url (#35111)
* fix: DCHECK entering fullscreen while loading url
* spec: fixup test | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1327,6 +1327,8 @@ void WebContents::OnEnterFullscreenModeForTab(\n return;\n }\n \n+ owner_window()->set_fullscreen_transition_type(\n+ NativeWindow::FullScreenTransitionType::HTML);\n exclusive_access_manager_->fullscre... | 2022-08-01T20:52:58 |
facebook/react | f47956239f6892a1e805af1fc3f1b2fb0f66beca | 41e9c17a69f819f20a29823a0acf18456c5ef4d2 | refactor[devtools/extension]: minify production builds to strip comments (#27304)
Currently, we are unable to publish a release to Firefox extensions
store, due to `parseHookNames` chunk size, which is ~5mb.
We were not minifying production builds on purpose, to have more
descriptive error messages. Now, Terser p... | [
{
"path": "packages/react-devtools-extensions/webpack.config.js",
"patch": "@@ -2,6 +2,7 @@\n \n const {resolve} = require('path');\n const Webpack = require('webpack');\n+const TerserPlugin = require('terser-webpack-plugin');\n const {\n DARK_MODE_DIMMED_WARNING_COLOR,\n DARK_MODE_DIMMED_ERROR_COLOR,\n... | 2023-08-29T11:09:13 |
vercel/next.js | fc17ba97100db45bb986654c95e15e34fa5f38b6 | 8b7f937e369061d615d026069708ed0f9ee0a19a | Docs: scrub html in `ld+json` script (#79627)
Closes:
https://linear.app/vercel/issue/DOC-4708/json-ld-security-w-jsonstringify
Fixes: https://github.com/vercel/next.js/issues/79593 | [
{
"path": "docs/01-app/02-guides/json-ld.mdx",
"patch": "@@ -6,7 +6,11 @@ description: Learn how to add JSON-LD to your Next.js application to describe yo\n \n [JSON-LD](https://json-ld.org/) is a format for structured data that can be used by search engines and AI to to help them understand the structure o... | 2025-05-27T13:23:05 |
ollama/ollama | 565b802a6b7f4a5dee8c1fa88407f98d04f2afe3 | 6c79e6c09a53b03012df45c74a7e90b1f362cb23 | openai: fix tool call ID mapping (#12988) | [
{
"path": "middleware/openai_test.go",
"patch": "@@ -218,6 +218,7 @@ func TestChatMiddleware(t *testing.T) {\n \t\t\t\t\t\tRole: \"assistant\",\n \t\t\t\t\t\tToolCalls: []api.ToolCall{\n \t\t\t\t\t\t\t{\n+\t\t\t\t\t\t\t\tID: \"id\",\n \t\t\t\t\t\t\t\tFunction: api.ToolCallFunction{\n \t\t\t\t\t\t\t\t\tName:... | 2025-11-06T23:26:25 |
golang/go | 139d6eedae38f9e8bc81bb2c8c5c2c75d12853ab | 2b2314e9f6103de322b2e247387c8b01fd0cd5a4 | cmd/go: restore netrc preferences for GOAUTH and fix domain lookup
Store netrc lines into the credential map backward so that earlier lines
take priority over later lines. This matches Go 1.23 netrc lookup which
stopped at the first match it found.
Additionally, this fixes a security issue related to domain parsing
wh... | [
{
"path": "src/cmd/go/internal/auth/auth.go",
"patch": "@@ -12,7 +12,6 @@ import (\n \t\"log\"\n \t\"net/http\"\n \t\"os\"\n-\t\"path\"\n \t\"path/filepath\"\n \t\"slices\"\n \t\"strings\"\n@@ -73,7 +72,12 @@ func runGoAuth(client *http.Client, res *http.Response, url string) {\n \t\t\tif err != nil {\n \t\... | 2025-01-08T20:38:32 |
electron/electron | 6c17dd229618d6033b0e2255db29315cd3a891a4 | 29434ee7c671637bf2be54d0200ff4cdddec1d76 | fix: ensure native modules use the correct config (#35159)
* fix: ensure native modules are built with config.gypi
This works by patching node.h to check that two defines are set using the equivilant of an XNOR operation. One define "ELECTRON_ENSURE_CONFIG_GYPI" is set via common.gypi which is _already_ used to bu... | [
{
"path": "BUILD.gn",
"patch": "@@ -233,6 +233,7 @@ action(\"electron_js2c\") {\n action(\"generate_config_gypi\") {\n outputs = [ \"$root_gen_dir/config.gypi\" ]\n script = \"script/generate-config-gypi.py\"\n+ inputs = [ \"//third_party/electron_node/configure.py\" ]\n args = rebase_path(outputs) +... | 2022-08-01T14:52:26 |
facebook/react | 41e9c17a69f819f20a29823a0acf18456c5ef4d2 | 2c4c84718810bf3df411d599acc152d08208d35f | fix[devtools]: allow element updates polling only if bridge is alive (#27067)
When some element is inspected in DevTools, we have a polling which
updates the data for this element.
Sometimes when service worker dies or bridge is getting shutdown, we
continue to poll this data and will spam with the same "timed out
... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementContext.js",
"patch": "@@ -107,6 +107,8 @@ export function InspectedElementContextController({\n parseHookNamesByDefault || alreadyLoadedHookNames,\n );\n \n+ const [bridgeIsAlive, setBridgeIsAliveStatus] = useSta... | 2023-08-29T09:40:20 |
huggingface/transformers | 08241d036d8212ed3fdafefdf053d003d26e72e0 | 12a2297e8ee160fa504833f2d2f78450952b4336 | Add CHMv2 (#44595)
* first draft changes for chmv2 integration
* changes to reproduce depth outputs
* reproducing the outputs
* repro at a <1cm level
* cleanup doc
* refactor chmv2 and dinov3 vit backbone
* Add model doc
* Simplify conversion file
* Update docs
* fix-repo
* Fix docs
* Update checkpoints, fi... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -838,6 +838,8 @@\n title: BEiT\n - local: model_doc/bit\n title: BiT\n+ - local: model_doc/chmv2\n+ title: CHMv2\n - local: model_doc/conditional_detr\n title: Conditional DETR\n - local: model_doc/co... | 2026-03-11T15:43:58 |
vercel/next.js | ead767a1a7b6d7c9ed631a0c7786cdf089762901 | 2d81adc5201ad282ae8fb69ec8f24fddc56d3ae1 | Turbopack: avoid panics due to eventual consistency (#79242)
### What?
Avoid panics in favor of bails as this might happen due to eventual consistency. | [
{
"path": "turbopack/crates/turbopack-core/src/module_graph/chunk_group_info.rs",
"patch": "@@ -3,7 +3,7 @@ use std::{\n ops::{Deref, DerefMut},\n };\n \n-use anyhow::{Result, bail};\n+use anyhow::{Context, Result, bail};\n use either::Either;\n use indexmap::map::Entry;\n use roaring::RoaringBitmap;\n@... | 2025-05-27T09:58:09 |
ollama/ollama | 780762f9d2ad86f5268eaf5d0af14bfa4f44470f | 30fcc71983499bb29f6157291f7c85782fd35305 | server: fix duplicate 'is' typo in comment (#12985) | [
{
"path": "server/download.go",
"patch": "@@ -465,7 +465,7 @@ type downloadOpts struct {\n // downloadBlob downloads a blob from the registry and stores it in the blobs directory\n func downloadBlob(ctx context.Context, opts downloadOpts) (cacheHit bool, _ error) {\n \tif opts.digest == \"\" {\n-\t\treturn ... | 2025-11-06T22:44:44 |
golang/go | 2b2314e9f6103de322b2e247387c8b01fd0cd5a4 | 6783377295e0878aa3ad821eefe3d7879064df6d | crypto/x509: properly check for IPv6 hosts in URIs
When checking URI constraints, use netip.ParseAddr, which understands
zones, unlike net.ParseIP which chokes on them. This prevents zone IDs
from mistakenly satisfying URI constraints.
Thanks to Juho Forsén of Mattermost for reporting this issue.
Fixes #71156
Fixes ... | [
{
"path": "src/crypto/x509/name_constraints_test.go",
"patch": "@@ -1607,6 +1607,23 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\tleaf: leafSpec{sans: []string{\"dns:.example.com\"}},\n \t\texpectedError: \"cannot parse dnsName \\\".example.com\\\"\",\n \t},\n+\t// #86: URIs with IPv6 ... | 2024-12-09T19:31:22 |
electron/electron | b67c69d741c648569d86c5a7846f2559219f9b14 | 00e9bf107a6357029b3e4c247456450c3d2554a4 | fix: remove skip-taskbar feature on Linux. (#35123) | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -1323,7 +1323,7 @@ win.setSheetOffset(toolbarRect.height)\n \n Starts or stops flashing the window to attract user's attention.\n \n-#### `win.setSkipTaskbar(skip)`\n+#### `win.setSkipTaskbar(skip)` _macOS_ _Windows_\n \n * `skip` boolean\n ",
"additi... | 2022-08-01T10:42:02 |
huggingface/transformers | 12a2297e8ee160fa504833f2d2f78450952b4336 | 455235bfef50626242321108c9917fa458f3eee5 | Remove useless identity assignment (#44600)
fix | [
{
"path": "src/transformers/models/paligemma/modeling_paligemma.py",
"patch": "@@ -268,7 +268,6 @@ def get_image_features(\n image_outputs = self.vision_tower(pixel_values, return_dict=True, **kwargs)\n selected_image_feature = image_outputs.last_hidden_state\n image_features = self.... | 2026-03-11T15:45:47 |
facebook/react | 2c4c84718810bf3df411d599acc152d08208d35f | 456d153bb582798effa76c09bec2405ab2e392cf | refactor: resolve browser via env variables based on build rather than user agent (#27179)
Fixes https://github.com/facebook/react/issues/26911,
https://github.com/facebook/react/issues/26860.
Currently, we are parsing user agent string to determine which browser
is running the extension. This doesn't work well w... | [
{
"path": "packages/react-devtools-extensions/build.js",
"patch": "@@ -52,24 +52,25 @@ const preProcess = async (destinationPath, tempPath) => {\n await ensureDir(tempPath); // Create temp dir for this new build\n };\n \n-const build = async (tempPath, manifestPath) => {\n+const build = async (tempPath, m... | 2023-08-29T09:40:02 |
vercel/next.js | c0104dcf55a1b70b7e307a96328f5d48b4bbc2a3 | 522793548a23298bd17cae272802959ba5fc7f98 | Turbopack: improve error handling when DB read/deserialization fails (#79545)
### What?
Instead of only printing on DB read errors, panic instead of continuing with a corrupted graph.
Also improve the error message to be more clear about deserialization errors:
Before:
```
Looking up data for TaskId 3 failed: miss... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -220,9 +220,13 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n Self {\n options,\n start_time: Instant::now(),\n- session_id: backing_storage.next_session_id(),\n+ ... | 2025-05-27T07:43:17 |
ollama/ollama | 4111db013f643ac5d31b06c459ae509adb4e1380 | 80d34260ea16e76c9ef0d014a86cc130421855f1 | app: fix macOS file picker to support Uniform Type Identifiers (#12965) | [
{
"path": "app/dialog/cocoa/dlg.m",
"patch": "@@ -3,6 +3,11 @@\n #include <string.h>\n #include <sys/syslimits.h>\n \n+// Import UniformTypeIdentifiers for macOS 11+\n+#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 110000\n+#import <UniformTypeIdentifiers/UniformTypeIdentifiers.h>\n+#endif\n+\n void* NSStr(void* buf... | 2025-11-06T05:37:17 |
golang/go | 6783377295e0878aa3ad821eefe3d7879064df6d | 368a9ec99834652ca3f7d8fe24862a7581e12358 | net/http: persist header stripping across repeated redirects
When an HTTP redirect changes the host of a request, we drop
sensitive headers such as Authorization from the redirected request.
Fix a bug where a chain of redirects could result in sensitive
headers being sent to the wrong host:
1. request to a.tld with... | [
{
"path": "src/net/http/client.go",
"patch": "@@ -610,8 +610,9 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\treqBodyClosed = false // have we closed the current req.Body?\n \n \t\t// Redirect behavior:\n-\t\tredirectMethod string\n-\t\tincludeBody = true\n+\t\tredirectMeth... | 2024-11-22T20:34:11 |
electron/electron | 00e9bf107a6357029b3e4c247456450c3d2554a4 | 9028bb79a85fedf64230c2f1c6a29ab072c98c20 | docs: new main -> renderers messageChannel example (#34978)
* docs: new main -> renderers messageChannel example
* consistent use of your
* fix a typo
* linting
* markdown linting
* Update docs/tutorial/message-ports.md
Co-authored-by: Erick Zhao <erick@hotmail.ca>
* update code example headings, ... | [
{
"path": "docs/tutorial/message-ports.md",
"patch": "@@ -8,8 +8,7 @@ your app.\n \n Here is a very brief example of what a MessagePort is and how it works:\n \n-```js\n-// renderer.js ///////////////////////////////////////////////////////////////\n+```js title='renderer.js (Renderer Process)'\n // Message... | 2022-07-29T16:47:43 |
vercel/next.js | 05dc8408beaccef01f24e2f1cfd95cc99e502e6e | e5f2e0f9c1a78b9a391085c803f6711a54120088 | Unflake `Undefined default export` test (#79632)
[flakiness
metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20env%3Aci%20%40git.repository.id%3Agithub.com%2Fvercel%2Fnext.js%20%40test.service%3Anextjs%20%40test.status%3Afail%20%40test.name%3A%22Undefined%20default%20export%20should%20error%20whe... | [
{
"path": "test/development/acceptance-app/undefined-default-export.test.ts",
"patch": "@@ -1,11 +1,11 @@\n import path from 'path'\n import { FileRef, nextTestSetup } from 'e2e-utils'\n import { createSandbox } from 'development-sandbox'\n+import { retry } from 'next-test-utils'\n \n describe('Undefined de... | 2025-05-26T12:14:08 |
ollama/ollama | a534d4e9e176e32734f59c5ae8c2fb6d93a11058 | 74586aa9dfa804fdc7a15e14c045bc9df047e0cd | fixing thinking not scrolling issue | [
{
"path": "app/ui/app/src/components/Thinking.tsx",
"patch": "@@ -73,8 +73,9 @@ export default function Thinking({\n // Calculate max height for smooth animations\n const getMaxHeight = () => {\n if (isCollapsed) {\n- return finishedThinking ? \"0px\" : \"12rem\"; // 8rem = 128px (same as max-h... | 2025-11-05T18:12:31 |
facebook/react | 9a01c8b54e91c588391070c65701342e4e361ea7 | b798223a620dad77077d27e53cc99cbd54312d99 | Fix mount-or-update check in rerenderOptimistic (#27277)
I noticed this was wrong because it should call updateWorkInProgressHook
before it checks if currentHook is null. | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -1793,7 +1793,20 @@ function updateOptimistic<S, A>(\n reducer: ?(S, A) => S,\n ): [S, (A) => void] {\n const hook = updateWorkInProgressHook();\n+ return updateOptimisticImpl(\n+ hook,\n+ ((currentHook: any): Hook),\n+ ... | 2023-08-28T15:04:46 |
huggingface/transformers | d5c1c8ce71162ac9904098c1b51534976cf0b454 | 36b919cd381a8489a66765b5a2f6f196a770796e | Add shared VLM tests (#42964)
* stash commit
* Stash commit
* First semi-working commit
* make fixup
* make fixup
* stash commit
* Tests almost all pass now
* stash commit
* Fix Gemma3 test
* Set a seed on the Gemma3 test because I saw some flakiness
* stash commit
* Remove double-skip
* Set all_model_clas... | [
{
"path": "src/transformers/testing_utils.py",
"patch": "@@ -216,6 +216,14 @@\n \"token_classification_class\": \"ForTokenClassification\",\n }\n \n+# Used in VLMModelTester (and related classes/methods) to infer the common model classes from the base model class\n+_VLM_COMMON_MODEL_NAMES_MAP = {\n+ ... | 2026-03-11T15:17:26 |
electron/electron | 9028bb79a85fedf64230c2f1c6a29ab072c98c20 | 8004cb8722c8d52f4cd553bbaea86750149e8ca4 | fix: empty result of `webContents.getUserAgent()` (#35069)
fix: empty result of webContents.getUserAgent() | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -675,10 +675,8 @@ WebContents::WebContents(v8::Isolate* isolate,\n auto session = Session::CreateFrom(isolate, GetBrowserContext());\n session_.Reset(isolate, session.ToV8());\n \n- absl::optional<std::string> user_agent_override ... | 2022-07-29T15:09:47 |
vercel/next.js | e5f2e0f9c1a78b9a391085c803f6711a54120088 | e0d4df2180111bcb1511fc08d40d4c1b237326dd | [release-new] fix: release pr commit contains `(#number)` at last (#79611)
When the "Version Packages" PR is merged, the created commit is the
format of "Version Packages (#number)". Therefore, the
check-is-release.js script won't match the current regex. Also, I
modified the workflows that use the `check-is-release.j... | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -19,8 +19,9 @@ env:\n #\n # See https://doc.rust-lang.org/rustc/platform-support/apple-darwin.html#os-version for more details\n MACOSX_DEPLOYMENT_TARGET: 11.0\n- # This will become \"true\" if the latest commit is\n- # \"Version Packa... | 2025-05-26T12:02:49 |
ollama/ollama | 6aa72830763cf694da998f5305de89701c75cea0 | f89fc1cadd6fe896e162ce8c85534c92f711005a | mac: fix stale VRAM data (#12972)
The scheduler updates free VRAM based on current loaded models. This was
mutating the persisted list of GPUs, and when coupled with the non-refreshing
logic for Metal that lead to stale low VRAM reporting after unload. The fix is
to make sure the GPU discovery always returns a copy ... | [
{
"path": "discover/runner.go",
"patch": "@@ -237,7 +237,7 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t} else {\n \t\tif runtime.GOOS == \"darwin\" && runtime.GOARCH == \"arm64\" {\n \t\t\t// metal never updates free VRAM\n-\t\t\treturn devices\n+\t\t\treturn appe... | 2025-11-05T19:55:17 |
facebook/react | 6dbc48075b6feba902533bd41b69ac1a9df7f933 | bcbcd37eb016c58bca124c94d416a281fe4eebc6 | [tests] bug repros | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.todo-lambda-return-expression.expect.md",
"patch": "@@ -0,0 +1,28 @@\n+\n+## Input\n+\n+```javascript\n+import { invoke } from \"shared-runtime\";\n+\n+function useFoo() {\n+ const x = {};\n+ const result = invoke... | 2023-08-26T21:00:43 |
huggingface/transformers | 36b919cd381a8489a66765b5a2f6f196a770796e | 50cc0b82962456914846bf413bde2225e4be0f94 | Fix wrong (non-existing) checkpoints (#44549)
* update docstring
* merci Arthur
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/apertus/configuration_apertus.py",
"patch": "@@ -23,7 +23,7 @@\n from ...utils import auto_docstring\n \n \n-@auto_docstring(checkpoint=\"swiss-ai/Apertus-8B\")\n+@auto_docstring(checkpoint=\"swiss-ai/Apertus-8B-Instruct-2509\")\n class ApertusConfig(PreTrainedConfig):\n ... | 2026-03-11T15:16:53 |
electron/electron | 7f757075bc5ac35c751aecf0dd4a94d0daf21f7d | 674596d11e5ad72b6651073619d282fbfea74ae1 | docs: update E21 release date (#35122)
* docs: update E21 release date
* chore: fix lint
Co-authored-by: Keeley Hammond <khammond@slack-corp.com> | [
{
"path": "docs/tutorial/electron-timelines.md",
"patch": "@@ -24,10 +24,11 @@ check out our [Electron Versioning](./electron-versioning.md) doc.\n | 14.0.0 | -- | 2021-May-27 | 2021-Aug-31 | M93 | v14.17 | 🚫 |\n | 15.0.0 | 2021-Jul-20 | 2021-Sep-01 | 2021-Sep-21 | M94 | v16.5 | 🚫 |\n | 16.0.0 | 2021-Sep-... | 2022-07-29T04:54:48 |
vercel/next.js | e0d4df2180111bcb1511fc08d40d4c1b237326dd | 3175a22feb40cf0d424324493b61cb83c5199451 | [ppr] Narrow condition for fallback shell generation at runtime (#79565)
This addresses a bug where a fallback shell was generated at runtime
when it was not expected to do so. This was an issue with how the
`x-now-route-matches` header was parsed and was incorrectly assuming
that a falsy header was the same as compar... | [
{
"path": ".changeset/giant-bushes-sink.md",
"patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Resolved bug where hitting the parameterized path directly would cause a fallback shell generation instead of just rendering the route with the parameterized placeholders.",
"additions": 5,
"delet... | 2025-05-26T11:57:20 |
ollama/ollama | f89fc1cadd6fe896e162ce8c85534c92f711005a | 97e05d2a6be5eb4121189ac81c0a8eed9bf54e23 | bugfix: show connection string for interactive cli usage (#12930) | [
{
"path": "cmd/cmd.go",
"patch": "@@ -284,6 +284,14 @@ func loadOrUnloadModel(cmd *cobra.Command, opts *runOptions) error {\n \t\treturn err\n \t} else if info.RemoteHost != \"\" {\n \t\t// Cloud model, no need to load/unload\n+\t\tif opts.ShowConnect {\n+\t\t\tp.StopAndClear()\n+\t\t\tif strings.HasPrefix(... | 2025-11-05T19:55:04 |
facebook/react | ab31a9ed28d340172440e4b12e27d2af689249b3 | 9d4582dffdea5b4dcb6a6093ea848d15423c7701 | Selective Hydration: Don't suspend if showing fallback (#27230)
A transition that flows into a dehydrated boundary should not suspend if
the boundary is showing a fallback.
This is related to another issue where Fizz streams in the initial HTML
after a client navigation has already happened. That issue is not fix... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -6176,4 +6176,55 @@ describe('ReactDOMFizzServer', () => {\n // However, it does error the shell.\n expect(fatalErrors).toEqual(['testing postpone']);\n });\n+\n+ it(\n+ 'a transition that flows into a dehydr... | 2023-08-25T00:04:34 |
huggingface/transformers | 50cc0b82962456914846bf413bde2225e4be0f94 | acdb5e13192608a3a04753169a940e06ee5b69ae | Remove `cache_position` in more models (#44330)
* a few more
* more models
* llava and likes
* oupsi
* more to fix others via copy/modular
* fixes
* fixes
* review nits | [
{
"path": "src/transformers/models/aimv2/modeling_aimv2.py",
"patch": "@@ -540,15 +540,14 @@ def forward(\n hidden_states = self.embeddings(input_ids)\n batch_size, seq_len, _ = hidden_states.shape\n \n- cache_position = torch.arange(seq_len, dtype=torch.long, device=hidden_states.dev... | 2026-03-11T14:47:47 |
golang/go | bd80d8956f3062d2b2bff2d7da6b879dfa909f12 | 4fa61d6f9c9c7c3a5e74472f1cfb9c12eed1a368 | cmd/go/internal/modfetch: do not trust server to send all tags in shallow fetch
Newer git versions (at least git 2.47.1) do not send all the matching tags
for a shallow fetch of a specific hash anymore. The go command assumes
that git servers do this. Since that assumption is broken, use the local
copy of the remote r... | [
{
"path": "src/cmd/go/internal/modfetch/codehost/git.go",
"patch": "@@ -649,7 +649,21 @@ func (r *gitRepo) statLocal(ctx context.Context, version, rev string) (*RevInfo,\n \t\t\t}\n \t\t}\n \t}\n-\tsort.Strings(info.Tags)\n+\n+\t// Git 2.47.1 does not send the tags during shallow clone anymore\n+\t// (perha... | 2025-01-14T04:00:14 |
vercel/next.js | 2219ba0da9efe1eba18cdd7fe8d837e5390b0c65 | e4d18b05632d8dbfee18d5572dfa385e00929dee | [release] fix: correctly set tag during publish (#79548)
### Why?
The `process.env.RELEASE_TYPE` handling was set incorrectly. It
should've been set to the "trigger" workflow, but instead, it was set to
the "publish" workflow. Therefore, the "publish" workflow needs to know
which dist tag to set for publish.
-------... | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -611,7 +611,6 @@ jobs:\n env:\n GITHUB_TOKEN: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}\n NPM_TOKEN: ${{ secrets.NPM_TOKEN_ELEVATED }}\n- RELEASE_TYPE: ${{ github.event.inputs.releaseType }}\n \n # Add ... | 2025-05-26T10:12:24 |
electron/electron | 62001dc6cbfd78a82d2fca849ca5eb0504cd0b71 | ff804e3a748c72f4812af8ccf3b1d7442a468f4a | fix: crash on startup in X11 (#35075)
Fixes #34996. | [
{
"path": "shell/browser/electron_browser_main_parts.cc",
"patch": "@@ -278,12 +278,6 @@ void ElectronBrowserMainParts::PostEarlyInitialization() {\n }\n \n int ElectronBrowserMainParts::PreCreateThreads() {\n-#if defined(USE_AURA)\n- if (!display::Screen::GetScreen()) {\n- screen_ = views::CreateDeskto... | 2022-07-27T04:44:44 |
golang/go | 4fa61d6f9c9c7c3a5e74472f1cfb9c12eed1a368 | c5e205e928bd4b70c90698b5ca1dd583a8036864 | cmd/api: report error in test instead of crashing
https://ci.chromium.org/ui/inv/build-8725798219051312433/test-results?sortby=&groupby=
shows a mysterious failure with this stack:
=== RUN BenchmarkAll
BenchmarkAll
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmenta... | [
{
"path": "src/cmd/api/api_test.go",
"patch": "@@ -57,7 +57,10 @@ func TestGolden(t *testing.T) {\n \t\t// TODO(gri) remove extra pkg directory eventually\n \t\tgoldenFile := filepath.Join(\"testdata\", \"src\", \"pkg\", fi.Name(), \"golden.txt\")\n \t\tw := NewWalker(nil, \"testdata/src/pkg\")\n-\t\tpkg, _... | 2025-01-14T13:22:08 |
facebook/react | ce82a56fa64435aaa0abaa5070b01187a1eaa439 | 80efd75b8e5f83a5473afa0dc45f49428e2fce6f | [ci] Fix output of parser benchmark
yarn adds some other output, so just run the script directly | [
{
"path": "compiler/.github/workflows/bench.yml",
"patch": "@@ -30,7 +30,7 @@ jobs:\n - run: yarn install --frozen-lockfile\n working-directory: bench/parser-benchmark\n - name: Run benchmark\n- run: yarn bench --ci --sampleSize=3 | tee results.json\n+ run: node index.js --... | 2023-08-24T14:14:28 |
huggingface/transformers | acdb5e13192608a3a04753169a940e06ee5b69ae | b49f0230de3608070c20964050499b7907a8d8bc | Fix CircleCI summary report not showing due to missing dependency (#44597)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -64,6 +64,7 @@ def to_dict(self):\n steps.extend(\n [\n \"checkout\",\n+ {\"run\": \"pip install requests || true\"},\n {\"run\": \"\"\"while [[ $(curl --locat... | 2026-03-11T14:10:20 |
ollama/ollama | 27f1fde413c2a1386e0bc68b623bbb72e9f6bc0c | 220e133fca8fe128dbf8fecef96c8484f991e39c | discovery: only retry AMD GPUs (#12894)
* discovery: only retry AMD GPUs
CUDA and Vulkan don't crash on unsupported devices, so retry isn't necessary.
This also refactors the code to shift the Library specific logic into the ml
package.
* review comments | [
{
"path": "discover/runner.go",
"patch": "@@ -27,7 +27,6 @@ var (\n \tdeviceMu sync.Mutex\n \tdevices []ml.DeviceInfo\n \tlibDirs map[string]struct{}\n-\trocmDir string\n \texe string\n \tbootstrapped bool\n )\n@@ -61,14 +60,6 @@ func GPUDevices(ctx context.Context, runners []ml.... | 2025-11-04T23:33:46 |
vercel/next.js | e4d18b05632d8dbfee18d5572dfa385e00929dee | 624a40b7f8c96c0a698b0c4b6122a5f1fa52c4d9 | Turbopack: use unsigned values for follower and upper edges (#79489)
<!-- 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:
##... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -1304,10 +1304,6 @@ impl AggregationUpdateQueue {\n follower_in_upper = true;\n return None;\n };\n- if old < 0 {\... | 2025-05-26T06:45:28 |
electron/electron | ff804e3a748c72f4812af8ccf3b1d7442a468f4a | 9416091180e18c1ba1f625f86505332a018d9049 | fix: use win_clang_x64 binary for x86 extract symbols (#35078)
fix: use win_clang_x64 for x86 extract symbols | [
{
"path": "appveyor.yml",
"patch": "@@ -170,19 +170,16 @@ build_script:\n - python %LOCAL_GOMA_DIR%\\goma_ctl.py stat\n - python3 electron/build/profile_toolchain.py --output-json=out/Default/windows_toolchain_profile.json\n - 7z a node_headers.zip out\\Default\\gen\\node_headers\n- # Temporarily dis... | 2022-07-27T04:33:07 |
golang/go | befc43655b6d93f0be883222fbb3fde5768892c1 | c83f2ca4b3964917adc3b06f661785cc6b53792d | testing/fstest: fix function name and comment
Change-Id: I17bc68a2e3a96d0dc3d9ddcad40149df37fc4839
Reviewed-on: https://go-review.googlesource.com/c/go/+/642198
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.i... | [
{
"path": "src/testing/fstest/testfs.go",
"patch": "@@ -570,7 +570,7 @@ func (t *fsTester) checkFileRead(file, desc string, data1, data2 []byte) {\n \t}\n }\n \n-// checkBadPath checks that various invalid forms of file's name cannot be opened using t.fsys.Open.\n+// checkOpen validates file opening behavio... | 2025-01-13T17:11:22 |
ollama/ollama | 220e133fca8fe128dbf8fecef96c8484f991e39c | d3b4b9970a5e2759fcfc6a632968ecc771ac6e77 | vulkan: Add memory detection for Intel GPU using DXGI+PDH (#12664)
* PDH free memory skeleton
* Add PDH printing
* Add LUID support for Vulkan
* wire luid from ggml-vulkan to mem-dxgi-pdh file
* Fix to ggml-impl
* Continue skeleton
* Implemented ggml_dxgi_pdh_get_device_memory
* fix comments
* Fix - change val... | [
{
"path": "llama/patches/0031-Add-memory-detection-using-DXGI-PDH.patch",
"patch": "@@ -0,0 +1,420 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Viraj Wadhwa <viraj.wadhwa@intel.com>\n+Date: Tue, 4 Nov 2025 12:04:04 -0800\n+Subject: [PATCH] Add memory detection using DX... | 2025-11-04T22:11:55 |
huggingface/transformers | b49f0230de3608070c20964050499b7907a8d8bc | 1723c81db08897056ead72574644978ea7ba8491 | Fix typos in add_new_model_like docstrings (#43544)
* Fix typos in add_new_model_like docstrings
* fix: revert docstring change to satisfy tests
Corrected grammatical error in note about Markdown syntax. | [
{
"path": "src/transformers/cli/add_new_model_like.py",
"patch": "@@ -312,7 +312,7 @@ def insert_model_in_doc_toc(\n old_lowercase_name (`str`):\n The old lowercase model name.\n new_lowercase_name (`str`):\n- The old lowercase model name.\n+ The new lowerca... | 2026-03-11T13:49:54 |
facebook/react | 856dc5e43352454b1d06c13e233d565ceda77e61 | 31034b6de73c7cd9093e92a34e384d84c082aa4e | Fix escaping in action error URL (#27273)
This URL is generated on the client (there's an equivalent but shorter
SSR version too) when a function is used as an action. It should never
happen but it'll be invoked if a form is manually submitted or event is
stopped early.
The `'` wasn't escaped so this yielded inv... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -501,7 +501,7 @@ function setProp(\n // eslint-disable-next-line no-script-url\n \"javascript:throw new Error('\" +\n 'A React form was unexpectedly submitted. If you called form.submi... | 2023-08-22T23:10:00 |
vercel/next.js | 734754760f7606f1da3865b27bdbcb6a73cfe029 | dc84c3f3e44a48a7c45c9d51c2476603098e9883 | [release] fix: `GITHUB_TOKEN` is needed to open release pr (#79609)
To open a "Version Packages" PR, the Action requires a `GITHUB_TOKEN`
token.
Discovered while testing:
 | [
{
"path": ".github/workflows/trigger_release_new.yml",
"patch": "@@ -111,3 +111,5 @@ jobs:\n uses: changesets/action@v1\n with:\n version: pnpm ci:version\n+ env:\n+ GITHUB_TOKEN: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}",
"additions": 2,
"deletions": 0,
... | 2025-05-25T14:04:58 |
golang/go | c83f2ca4b3964917adc3b06f661785cc6b53792d | 6da16013ba4444e0d71540f68279f0283a92d05d | cmd/dist: ignore packages with no Go files in BenchmarkAll
This case recently started happening on the builders.
The synctest experiment was recently enabled for some targets (CL 642422).
This caused the list of standard packages to include testing/synctest.
However, BenchmarkAll tests for all configurations;
some did... | [
{
"path": "src/cmd/api/api_test.go",
"patch": "@@ -201,7 +201,10 @@ func BenchmarkAll(b *testing.B) {\n \t\tfor _, context := range contexts {\n \t\t\tw := NewWalker(context, filepath.Join(testenv.GOROOT(b), \"src\"))\n \t\t\tfor _, name := range w.stdPackages {\n-\t\t\t\tpkg, _ := w.import_(name)\n+\t\t\t\... | 2025-01-14T14:58:32 |
electron/electron | 9416091180e18c1ba1f625f86505332a018d9049 | 6d9e8b65bc94dea8fc47f4e03c1833263c3622e9 | fix: allow setsize to be called within a move or resize for preventDefault (#34843)
fix: #34599 allow setsize to be called within a move or resize for preventDefault | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -729,7 +729,6 @@ void NativeWindowViews::SetBounds(const gfx::Rect& bounds, bool animate) {\n #if BUILDFLAG(IS_WIN)\n if (is_moving_ || is_resizing_) {\n pending_bounds_change_ = bounds;\n- return;\n }\n #endif\n ",
"additions": 0... | 2022-07-27T00:02:06 |
huggingface/transformers | 1723c81db08897056ead72574644978ea7ba8491 | cda09a00721968a9b2eb036574e6f6c1e8d04b7a | Fix UnboundLocalError for tp_plan_alt when tp_plan is empty (#44540)
Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com> | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -1179,7 +1179,7 @@ def convert_and_load_state_dict_in_model(\n \n # 4. Handle TP sharding or device_map placement\n future_or_tensor = None\n- if device_mesh:\n+ if device_mesh and tp_plan:\n ... | 2026-03-11T13:30:51 |
facebook/react | 86198b923199224b60533952b636348bb0484a6d | dd480ef923930c8906a02664b01bcdea50707b5d | [Float][Fizz][Legacy] hoisted elements no longer emit before `<html>` in legacy apis such as `renderToString()` (#27269)
renderToString is a legacy server API which used a trick to avoid having
the DOCTYPE included when rendering full documents by setting the root
formatcontext to HTML_MODE rather than ROOT_HTML_MOD... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -371,11 +371,11 @@ export function createResponseState(\n // Constants for the insertion mode we're currently writing in. We don't encode all HTML5 insertion\n // modes. We only include the variants as they matter for the... | 2023-08-22T17:54:33 |
vercel/next.js | 0e769b3283c75b3adb95df0490f6bd73592bfb91 | 20fabb959eba2fffdea4c60c42288c632e06caf4 | Fix --tag argument in publish-release (#79599)
Somehow `@ts-check` didn't catch this array not being spread anymore. | [
{
"path": "scripts/publish-release.js",
"patch": "@@ -86,7 +86,8 @@ const cwd = process.cwd()\n '--access',\n 'public',\n '--ignore-scripts',\n- ['--tag', tag],\n+ '--tag',\n+ tag,\n ],\n { stdio: 'pipe' }\n )",
"additions": ... | 2025-05-25T00:38:40 |
golang/go | 6da16013ba4444e0d71540f68279f0283a92d05d | de9fdc7b7154a1ddd73cb44292cdd65f4f56029a | cmd/go: check go version when parsing go.mod fails
Fixes #70979
Change-Id: I6597fe178eed34702eea6cba4eec5174c9203458
Reviewed-on: https://go-review.googlesource.com/c/go/+/639115
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Matloob <matloob@golang.org>... | [
{
"path": "src/cmd/go/internal/modload/modfile.go",
"patch": "@@ -44,6 +44,17 @@ func ReadModFile(gomod string, fix modfile.VersionFixer) (data []byte, f *modfil\n \n \tf, err = modfile.Parse(gomod, data, fix)\n \tif err != nil {\n+\t\tf, laxErr := modfile.ParseLax(gomod, data, fix)\n+\t\tif laxErr == nil {... | 2024-12-28T16:19:23 |
huggingface/transformers | cda09a00721968a9b2eb036574e6f6c1e8d04b7a | 1c70fdbc9ae5e7607e4c54be64a726c412598e37 | FIX Multiple PEFT errors after v5 transition (#44592)
Multiple PEFT tests are failing due to recent changes in transformers.
- hf_device_map attribute may not exist in some cases
- respect inference_mode in load_adapter
- new model loading requires changes for bnb (SCB attribute etc.)
These tests have been failing f... | [
{
"path": "src/transformers/integrations/peft.py",
"patch": "@@ -566,19 +566,32 @@ def load_adapter(\n else:\n checkpoint_files, sharded_metadata = [], {}\n \n+ device_map = getattr(self, \"hf_device_map\", {\"\": self.device})\n load_config = replace(\n load_c... | 2026-03-11T12:10:18 |
facebook/react | dd480ef923930c8906a02664b01bcdea50707b5d | e76a5aca781abdc237f044131790ea615b500532 | Fix: Stylesheet in error UI suspends indefinitely (#27265)
This fixes the regression test added in the previous commit. The
"Suspensey commit" implementation relies on the
`shouldRemainOnPreviousScreen` function to determine whether to 1)
suspend the commit 2) activate a parent fallback and schedule a retry.
The i... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFloat-test.js",
"patch": "@@ -3385,7 +3385,6 @@ body {\n );\n });\n \n- // @gate FIXME\n it('loading a stylesheet as part of an error boundary UI, during initial render', async () => {\n class ErrorBoundary extends React.Component {\n st... | 2023-08-22T15:22:30 |
electron/electron | b42fd1ddca873b7354e39558935eba517fe1706e | 182ab9ad7646ccf42b25e539990f8cb0c40f68b5 | fix: handle WCO pressed state when going maximized -> minimized (#35070) | [
{
"path": "shell/browser/native_window_views.h",
"patch": "@@ -225,6 +225,7 @@ class NativeWindowViews : public NativeWindow,\n \n #if BUILDFLAG(IS_WIN)\n void HandleSizeEvent(WPARAM w_param, LPARAM l_param);\n+ void ResetWindowControls();\n void SetForwardMouseMessages(bool forward);\n static LRESUL... | 2022-07-26T17:30:15 |
golang/go | 17ed2159583289d77c994d479c24f7e7c2837332 | c53307c3fdf1126eb6cdb1f09f4f9b83759be705 | go/types, types2: don't panic when instantiating generic alias with wrong number of type arguments
The existing code assumed the type argument count check in
Checker.instance couldn't fail for generic alias types
(matching the code for generic signatures), but it actually
can.
Adjust the code accordingly and document... | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -142,6 +142,9 @@ func (check *Checker) instantiateSignature(pos syntax.Pos, expr syntax.Expr, typ\n \t\t}()\n \t}\n \n+\t// For signatures, Checker.instance will always succeed because the type argument\n+\t// count is correct at this point (... | 2025-01-09T23:01:03 |
huggingface/transformers | 1c70fdbc9ae5e7607e4c54be64a726c412598e37 | ff2ba441a8bc9f7636bf22def908b53bfa4e1db2 | Fix missing BPE token conversion step in Chameleon (#44582)
Convert image tokens to BPE tokens before embedding | [
{
"path": "src/transformers/models/chameleon/modeling_chameleon.py",
"patch": "@@ -899,8 +899,10 @@ def get_image_features(\n pixel_values (`torch.FloatTensor` of shape `(batch_size, num_channels, image_size, image_size)`):\n The tensors corresponding to the input images.\n \"\"\... | 2026-03-11T11:17:18 |
facebook/react | 3f5b8c214f64f72aeb1ec0e0aae3d2185b3362a6 | 7d1c3c15892d8c31c7ca4661f601c41d8541fa8c | Jest: remove haste config (#27257)
Since we're not using haste at all, we can just remove the config to
disable haste instead of enabling, just to inject an implementation that
blocks any haste modules from being recognized.
Test Plan:
Creating a module and required it to get the expected error that the
module ... | [
{
"path": "scripts/jest/config.base.js",
"patch": "@@ -2,9 +2,6 @@\n \n module.exports = {\n globalSetup: require.resolve('./setupGlobal.js'),\n- haste: {\n- hasteImplModulePath: require.resolve('./noHaste.js'),\n- },\n modulePathIgnorePatterns: [\n '<rootDir>/scripts/rollup/shims/',\n '<ro... | 2023-08-22T14:12:28 |
electron/electron | 0be73d18ef7386584fac964794c2f5a3dcc48f01 | c842f63383d8d9500a850e3470972de74ff0809f | fix: Make disable_color_correct_rendering patch work again (#35050)
Fix disable_color_correct_rendering patch. | [
{
"path": "patches/chromium/disable_color_correct_rendering.patch",
"patch": "@@ -20,14 +20,15 @@ to deal with color spaces. That is being tracked at\n https://crbug.com/634542 and https://crbug.com/711107.\n \n diff --git a/cc/trees/layer_tree_host_impl.cc b/cc/trees/layer_tree_host_impl.cc\n-index 6a148c3... | 2022-07-26T16:35:10 |
ollama/ollama | d3b4b9970a5e2759fcfc6a632968ecc771ac6e77 | a4770107a6ea6b4f5adc235d37d08417dc3b9184 | app: add code for macOS and Windows apps under 'app' (#12933)
* app: add code for macOS and Windows apps under 'app'
* app: add readme
* app: windows and linux only for now
* ci: fix ui CI validation
---------
Co-authored-by: jmorganca <jmorganca@gmail.com> | [
{
"path": ".github/workflows/release.yaml",
"patch": "@@ -15,44 +15,56 @@ jobs:\n environment: release\n outputs:\n GOFLAGS: ${{ steps.goflags.outputs.GOFLAGS }}\n+ VERSION: ${{ steps.goflags.outputs.VERSION }}\n steps:\n - uses: actions/checkout@v4\n - name: Set environme... | 2025-11-04T19:40:17 |
golang/go | c53307c3fdf1126eb6cdb1f09f4f9b83759be705 | 47a56b2b6d2cca56384810027964968667b86fdc | spec: fix grammar issue
Change-Id: If4d3b3965762c8979d304a82493c9eb1068ee13c
Reviewed-on: https://go-review.googlesource.com/c/go/+/642037
Reviewed-by: Robert Griesemer <gri@google.com>
TryBot-Bypass: Robert Griesemer <gri@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Robert Griesemer <gr... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -8514,7 +8514,7 @@ <h3 id=\"Package_unsafe\">Package <code>unsafe</code></h3>\n <p>\n The functions <code>Alignof</code> and <code>Sizeof</code> take an expression <code>x</code>\n of any type and return the alignment or size, respectively, of a hypothetical variab... | 2025-01-10T15:00:24 |
facebook/react | 7d1c3c15892d8c31c7ca4661f601c41d8541fa8c | b2772592321db426a81d52becea9dc86394afe29 | Regression test: Stylesheet suspends indefinitely when part of error boundary UI during initial hydration (#27258)
Adds a failing test for a case discovered by Next.js. An error boundary
is triggered during initial hydration, and the error fallback includes a
stylesheet. If the stylesheet has not yet been loaded, th... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFloat-test.js",
"patch": "@@ -3385,6 +3385,93 @@ body {\n );\n });\n \n+ // @gate FIXME\n+ it('loading a stylesheet as part of an error boundary UI, during initial render', async () => {\n+ class ErrorBoundary extends React.Component {\n+ s... | 2023-08-21T23:14:56 |
huggingface/transformers | ff2ba441a8bc9f7636bf22def908b53bfa4e1db2 | 0e7cb4e3ea3daaeef626148522f80b751e9559bd | [Performance] FP8 Grouped and Batched Matmuls (#44231)
* simplify
* finegrained fp8 moe forwards
* optimized fp8 fused, batched and grouped paths
* fix
* wrap triton
* fix calls
* fix
* remove fused quant kernel (litlle gain and unnecessary) and use torch library wrappers for better torch compileability
* use ... | [
{
"path": "src/transformers/integrations/finegrained_fp8.py",
"patch": "@@ -11,51 +11,85 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n+import torch\n+import torch.nn... | 2026-03-11T08:51:00 |
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.