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 |
|---|---|---|---|---|---|
vercel/next.js | d60157fc0b8f0c6b2caf189c0b24dae96e0e5683 | c6abe5ae767856badf0202814281855beb129392 | [devtools] Port cache invalidation logic from turbopack to webpack (#80184)
We want to support the "reset bundler cache" button in webpack/rspack. The webpack cache is a lot more stable, but it'd be good to have as a relative baseline once we have telemetry.
We don't use a persistent cache in rspack (it's an experime... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -707,5 +707,6 @@\n \"706\": \"Invariant: static responses cannot be streamed %s\",\n \"707\": \"Invariant app-page handler received invalid cache entry %s\",\n \"708\": \"Failed to persist Chrome DevTools workspace UUID. The Chrome DevTools Workspace... | 2025-06-17T01:01:33 |
ollama/ollama | 9bf41969f0c23d2ee980d7f092f5f80ea4521d2a | 0f23b7bff5f3b2d53e11f6de60065a6ab09f5ff8 | app: fix first update check delayed by 1 hour (#14427) | [
{
"path": "app/cmd/app/app.go",
"patch": "@@ -35,6 +35,7 @@ import (\n var (\n \twv = &Webview{}\n \tuiServerPort int\n+\tappStore *store.Store\n )\n \n var debug = strings.EqualFold(os.Getenv(\"OLLAMA_DEBUG\"), \"true\") || os.Getenv(\"OLLAMA_DEBUG\") == \"1\"\n@@ -208,6 +209,7 @@ func main()... | 2026-02-25T23:29:55 |
facebook/react | 64dffe9e78607dda0977b72f77cadf17c404a57b | 9d5ff320badcb81c914a010105fc033c2a595d4c | repro for gating error despite no compiled functions | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.gating-with-no-compiled-functions.expect.md",
"patch": "@@ -0,0 +1,19 @@\n+\n+## Input\n+\n+```javascript\n+// @gating\n+import { isForgetEnabled_Fixtures } from \"ReactForgetFeatureFlag\";\n+\n+export default 42;\n... | 2023-11-08T00:09:29 |
golang/go | 938b6c15e92e6a80b8368798a350a1a811487d88 | 66b76403547b9e517d532619c4a31063eb7ef93c | os: more godoc links
Add missing links to *PathError.
Also a few links to O_ flags and Mode and syscall constants.
Change-Id: Ic6ec5780a44942050a83ed07dbf16d6fa9f83eb9
Reviewed-on: https://go-review.googlesource.com/c/go/+/655375
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-... | [
{
"path": "src/os/file.go",
"patch": "@@ -216,7 +216,7 @@ var errWriteAtInAppendMode = errors.New(\"os: invalid use of WriteAt on file open\n // It returns the number of bytes written and an error, if any.\n // WriteAt returns a non-nil error when n != len(b).\n //\n-// If file was opened with the O_APPEND ... | 2025-03-06T12:23:52 |
vercel/next.js | 27fed1c1b6ef86c88d99749105256a6117e9c69b | 1e5bb42a817f08b55bd0821698b552d69ae3245b | docs: fix typo (#80501)
<!-- 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 Documentatio... | [
{
"path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx",
"patch": "@@ -135,7 +135,7 @@ export default function Loading() {\n }\n ```\n \n-Behind the scenes, Next.js will automatically wrap the `page.tsx` contents and in a `<Suspense>` boundary. The prefetched fallback UI will be shown while... | 2025-06-16T11:47:46 |
electron/electron | 8acf6039e78725918af5797fad6fc4f7cf1e177c | 2a26cef577dbf6cf3bf52959a86af311e2b56b96 | chore: bump chromium to 110.0.5451.0 (main) (#36394)
* chore: bump chromium in DEPS to 110.0.5425.0
* chore: bump chromium in DEPS to 110.0.5427.0
* chore: bump chromium in DEPS to 110.0.5429.0
* chore: bump chromium in DEPS to 110.0.5431.0
* chore: update patches/chromium/picture-in-picture.patch to fix u... | [
{
"path": "BUILD.gn",
"patch": "@@ -746,7 +746,7 @@ source_set(\"electron_lib\") {\n \"//components/update_client:update_client\",\n \"//components/zoom\",\n \"//extensions/browser\",\n- \"//extensions/browser:core_api_provider\",\n+ \"//extensions/browser/api:api_provider\",\n ... | 2022-12-05T22:59:19 |
ollama/ollama | 4e57d2094e127fcb32ed40d68289da7e41a83264 | 7f9efd53dfa6dd87ac423695f5ca8ffff5a6222c | mlxrunner: Simplify pipeline memory and cache management
Particularly in error cases, it can be difficult to ensure that
all pinned memory is unpinned, MLX buffers are released and cache
state is consistent. This encapsulates those pieces and sets up
proper deferrals so that this happens automatically on exit. | [
{
"path": "x/mlxrunner/cache.go",
"patch": "@@ -9,59 +9,99 @@ import (\n \t\"github.com/ollama/ollama/logutil\"\n \t\"github.com/ollama/ollama/x/mlxrunner/cache\"\n \t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n+\t\"github.com/ollama/ollama/x/mlxrunner/model/base\"\n )\n \n-// CacheEntry stores a single s... | 2026-02-24T22:19:12 |
facebook/react | 9d5ff320badcb81c914a010105fc033c2a595d4c | 00cb557b12ecc3991ed35570f69b3f0284a9a545 | [babel] Fix default value for `environment` option
When an `environment` isn't explicitly provided by the user's config, we used to
default this to `null` in `parsePluginOptions` which is called right at the
start of the Babel plugin. These parsed options were then being passed to zod,
which was expecting an objec... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts",
"patch": "@@ -146,7 +146,7 @@ export type Logger = {\n export const defaultOptions: PluginOptions = {\n compilationMode: \"infer\",\n panicThreshold: \"CRITICAL_ERRORS\",\n- environment: null,\n+ environment: {},\n lo... | 2023-11-07T23:58:21 |
golang/go | 3aef716168475c9cdc508c5afd71782a8c2b5506 | 70dcc78871ee47a6b181a99e6bad70b3454e8aec | doc: update godebug doc to clarify godebug directive in workspace
Make it clear that we only use godebug directives in the go.work, and
that we don't use those in go.mod, when we're in a workspace.
Fixes #72109
Change-Id: I648bfa4dd9b3ca0ac299c0a890843d41fe1ac7f0
Reviewed-on: https://go-review.googlesource.com/c/go/... | [
{
"path": "doc/godebug.md",
"patch": "@@ -109,7 +109,9 @@ Only the work module's `go.mod` is consulted for `godebug` directives.\n Any directives in required dependency modules are ignored.\n It is an error to list a `godebug` with an unrecognized setting.\n (Toolchains older than Go 1.23 reject all `godebu... | 2025-03-05T20:20:46 |
vercel/next.js | 1e5bb42a817f08b55bd0821698b552d69ae3245b | 029c8638f71dd8360ab8215bc4582d0d99b19d92 | docs: fix typo (#80500)
<!-- 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 Documentatio... | [
{
"path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx",
"patch": "@@ -8,7 +8,7 @@ related:\n - app/guides/prefetching\n ---\n \n-In Next.js, routes are rendered on the server by default. This often means the client has to wait for a server response before a new route can be shown. Next... | 2025-06-16T11:46:52 |
huggingface/transformers | 09832b2ae515cfbd020327f5d3ba2dafe6edf83c | b1ba6d7d2af770b9c7ab0bac38da2f242e40a6d3 | Dynamic weight conversion is recursive (#44300)
* split out from timm PR
* all other VLMs
* timm backbone is not here
* oops, extra key is breaking eveerything
* .
* this test
* maybe
* fix missing keys when loading from hub
* now fix fast tests
* merge gone wrong
* fix repo
* refine the regex again!
* clo... | [
{
"path": "docs/source/en/model_doc/maskformer.md",
"patch": "@@ -64,6 +64,10 @@ This model was contributed by [francesco](https://huggingface.co/francesco). The\n \n [[autodoc]] models.maskformer.modeling_maskformer.MaskFormerForInstanceSegmentationOutput\n \n+## MaskFormerDetrConfig\n+\n+[[autodoc]] MaskF... | 2026-03-26T11:45:57 |
ollama/ollama | f20dc6b698eba22c125b1b86a301d6e42673c85e | 4b2ac1f369cc6ce2666d4a332d20548766150ed1 | mlx: don't default to affine quantization for unquantized models
Otherwise the BF16 version of models trigger segfaults when they
call into quantized kernels. | [
{
"path": "x/imagegen/safetensors/loader.go",
"patch": "@@ -37,9 +37,11 @@ func QuantizationParams(quantization string) (groupSize, bits int, mode string)\n \tcase \"MXFP8\":\n \t\t// Microsoft MX FP8: group_size=32, bits=8, E4M3 scales (no qbias)\n \t\treturn 32, 8, \"mxfp8\"\n-\tcase \"FP8\", \"Q8\", \"IN... | 2026-02-18T23:32:40 |
electron/electron | 993d0337a78bd361a3ce89364e811eb4a25c434f | b90a5baa6dc7f745bf8779dd79d51229a3f8593d | docs: fix broken links (#36519)
* docs: fix broken links
* docs: change link to navigator.getUserMedia
Co-authored-by: Jeremy Rose <nornagon@nornagon.net>
* docs: fix link in examples.md
Co-authored-by: Jeremy Rose <nornagon@nornagon.net> | [
{
"path": "docs/api/app.md",
"patch": "@@ -1509,7 +1509,6 @@ dock on macOS.\n \n A `boolean` property that returns `true` if the app is packaged, `false` otherwise. For many apps, this property can be used to distinguish development and production environments.\n \n-[dock-menu]:https://developer.apple.com/... | 2022-12-05T18:18:57 |
facebook/react | bccd06a6326978ca7dc6287880f0a8046d47140c | 688305a978958c087e3a204fc40db9ea5d2cfc7f | [babel] Simplify noEmit and hasCriticalError check | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -283,9 +283,7 @@ export function compileProgram(\n return;\n }\n \n- if (pass.opts.noEmit) {\n- return;\n- } else if (!hasCriticalError) {\n+ if (!pass.opts.noEmit && !hasCriticalError) {\... | 2023-11-07T11:04:35 |
golang/go | 70dcc78871ee47a6b181a99e6bad70b3454e8aec | 5e0dbec7c99cb1e62c6e61b8f64f5b211aae67fc | math/big: avoid negative slice size in nat.rem
In a division, normally the answer to N digits / D digits has N-D digits,
but not when N-D is negative. Fix the calculation of the number of
digits for the temporary in nat.rem not to be negative.
Fixes #72043.
Change-Id: Ib9faa430aeb6c5f4c4a730f1ec631d2bf3f7472c
Review... | [
{
"path": "src/math/big/alias_test.go",
"patch": "@@ -309,4 +309,28 @@ func TestAliasing(t *testing.T) {\n \t\t\t}\n \t\t})\n \t}\n+\n+\tt.Run(\"Issue72043a\", func(t *testing.T) {\n+\t\tv := new(big.Int).SetBytes([]byte{0x4b, 0xd2, 0x7a, 0x6c, 0xb3, 0x16, 0x5a, 0xf3, 0xa0, 0x45, 0x2b, 0xbe, 0x38, 0xba, 0x1... | 2025-03-05T19:43:44 |
vercel/next.js | 029c8638f71dd8360ab8215bc4582d0d99b19d92 | 4d133b0aeb1da1a376ef533271f2c8ea289639bc | docs: fix typos (#80503)
<!-- 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 Documentati... | [
{
"path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx",
"patch": "@@ -297,7 +297,7 @@ However, disabling prefetching comes with trade-offs:\n - **Static routes** will only be fetched when the user clicks the link.\n - **Dynamic routes** will need to be rendered on the server first before t... | 2025-06-16T11:44:53 |
huggingface/transformers | b1ba6d7d2af770b9c7ab0bac38da2f242e40a6d3 | c9faacd7d57459157656bdffe049dabb6293f011 | Don't run `tests_hub` if no tests found (#45014)
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "utils/tests_fetcher.py",
"patch": "@@ -1106,16 +1106,29 @@ def parse_commit_message(commit_message: str) -> dict[str, bool]:\n def create_test_list_from_filter(full_test_list, out_path):\n os.makedirs(out_path, exist_ok=True)\n all_test_files = \"\\n\".join(full_test_list)\n+\n+ # Coll... | 2026-03-26T09:32:37 |
ollama/ollama | 8daf47fb3afec28de3e447d974c2bf911bcafc20 | 6c980579cdc62d67aee13511102437a6fe5aa13a | mlxrunner: Fix duplicate log prefixes and reduce log noise
Pass subprocess stdout/stderr through to the parent's stderr directly
instead of re-wrapping each line with slog. The subprocess already
writes structured slog output, so the re-wrapping produced nested
timestamps, levels, and message fields that were hard to ... | [
{
"path": "x/mlxrunner/cache/cache.go",
"patch": "@@ -3,8 +3,7 @@\n package cache\n \n import (\n-\t\"log/slog\"\n-\n+\t\"github.com/ollama/ollama/logutil\"\n \t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n )\n \n@@ -113,7 +112,7 @@ func (c *RotatingKVCache) Update(keys, values *mlx.Array) (*mlx.Array, *ml... | 2026-02-23T21:28:01 |
golang/go | 645ea530191105dc89dd8d67640d61a4d0526df9 | cad4dca518a3a984bfd6b19ee304a59f51937fd8 | runtime: in asan mode call __lsan_do_leak_check when exiting
This enables the ASAN default behavior of reporting C memory leaks.
It can be disabled with ASAN_OPTIONS=detect_leaks=0.
Fixes #67833
Change-Id: I420da1b5d79cf70d8cf134eaf97bf0a22f61ffd0
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-asan-clang15,go... | [
{
"path": "doc/next/3-tools.md",
"patch": "@@ -2,5 +2,13 @@\n \n ### Go command {#go-command}\n \n+The `go build` `-asan` option now defaults to doing leak detection at\n+program exit.\n+This will report an error if memory allocated by C is not freed and is\n+not referenced by any other memory allocated by ... | 2025-02-22T01:13:20 |
electron/electron | b90a5baa6dc7f745bf8779dd79d51229a3f8593d | 909ee0ed6bbdf57ebaeda027b67a3a44185f6f7d | fix: new WebAssembly API support in Node.js (#36420) | [
{
"path": "script/node-disabled-tests.json",
"patch": "@@ -121,7 +121,6 @@\n \"parallel/test-trace-events-v8\",\n \"parallel/test-trace-events-vm\",\n \"parallel/test-trace-events-worker-metadata\",\n- \"parallel/test-wasm-web-api\",\n \"parallel/test-webcrypto-derivebits-cfrg\",\n \"parallel/tes... | 2022-12-05T17:07:49 |
facebook/react | 688305a978958c087e3a204fc40db9ea5d2cfc7f | cf70ef899e50db5eb463d98ac41e1ed1f08ff031 | Check if critical error before throwing | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -278,9 +278,8 @@ export function compileProgram(\n memoSlots: compiledFn.memoSlotsUsed,\n });\n } catch (err) {\n- handleError(pass, fn.node.loc ?? null, err);\n-\n hasCriticalError |... | 2023-11-07T11:04:34 |
vercel/next.js | 4d133b0aeb1da1a376ef533271f2c8ea289639bc | dcdb2e18d6c7faadc56c22d4087affd0d29cab48 | docs: fix a typo in `static-exports.mdx` (#80541)
<!-- 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
... | [
{
"path": "docs/01-app/02-guides/static-exports.mdx",
"patch": "@@ -1,5 +1,5 @@\n ---\n-title: How to create an static export of your Next.js application\n+title: How to create a static export of your Next.js application\n nav_title: Static Exports\n description: Next.js enables starting as a static site or... | 2025-06-16T11:39:12 |
huggingface/transformers | c9faacd7d57459157656bdffe049dabb6293f011 | 35b005bba4de1d4b3c3789451adb5cf7469b1522 | Fix type hint for `attention_chunk_size` in `Llama4TextConfig` (#45002)
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> | [
{
"path": "src/transformers/models/llama4/configuration_llama4.py",
"patch": "@@ -165,7 +165,7 @@ class Llama4TextConfig(PreTrainedConfig):\n rope_parameters: RopeParameters | dict | None = None\n no_rope_layers: list[int] | None = None\n no_rope_layer_interval: int = 4\n- attention_chunk_siz... | 2026-03-25T20:34:42 |
ollama/ollama | 5c73c4e2eedeeb847743f43b4d2e85ff4b02be4b | 5daf59cc6666dd036af8fab8c5df6b5571a9a9ba | mlxrunner: Simplify KV cache to single-entry prefix matching
The KV cache previously used a tree structure which could
store multiple divergent sequences, which is good for cache
reuse. However, this is typically used in conjunction with
paged attention so each node in the tree can store just a
chunk of the KV cache a... | [
{
"path": "x/mlxrunner/cache.go",
"patch": "@@ -3,94 +3,65 @@\n package mlxrunner\n \n import (\n+\t\"fmt\"\n \t\"log/slog\"\n \n+\t\"github.com/ollama/ollama/logutil\"\n \t\"github.com/ollama/ollama/x/mlxrunner/cache\"\n+\t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n )\n \n+// CacheEntry stores a single ... | 2026-02-20T00:50:18 |
electron/electron | 79d2fc9c234059baf474e7f33a722bd1cb142e39 | d092e6bda4c7ba840f76ef835135f6ac94e02803 | build: fixup mksnapshot args on linux (#36531) | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -707,7 +707,7 @@ step-mksnapshot-build: &step-mksnapshot-build\n ninja -C out/Default electron:electron_mksnapshot -j $NUMBER_OF_NINJA_PROCESSES\n gn desc out/Default v8:run_mksnapshot_default args > out/Default/mksnapshot_args\n # ... | 2022-12-01T19:12:32 |
golang/go | cad4dca518a3a984bfd6b19ee304a59f51937fd8 | 9189921e4759055141b51fdbb8b7b69ee4fdd477 | cmd/compile: use inline-Pos-based recursion test
Look at the inlining stack of positions for a call site,
if the line/col/file of the call site appears in that
stack, do not inline. This subsumes all the other
recently-added recursive inlining checks, but they are
left in to make this easier+safer to backport.
Fixes... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -42,6 +42,7 @@ import (\n \t\"cmd/compile/internal/types\"\n \t\"cmd/internal/obj\"\n \t\"cmd/internal/pgo\"\n+\t\"cmd/internal/src\"\n )\n \n // Inlining budget parameters, gathered in one place\n@@ -974,6 +975,16 @@ func inlineCostOK(n *ir.C... | 2025-03-05T18:44:12 |
facebook/react | d6ff65ecc707af73a1775aa10e88b18049721d67 | 337c17a66fc326ded8f1614783712fbdf05b8d25 | Add runtime validation for ExternalFunction
Use zod to do runtime validation and throw if incorrect.
This PR only adds validation for ExternalFunction, will validate other options
in follow on PRs. | [
{
"path": "compiler/packages/babel-plugin-react-forget/package.json",
"patch": "@@ -31,7 +31,9 @@\n \"@babel/types\": \"^7.19.0\",\n \"chalk\": \"4\",\n \"invariant\": \"^2.2.4\",\n- \"pretty-format\": \"^24\"\n+ \"pretty-format\": \"^24\",\n+ \"zod\": \"^3.22.4\",\n+ \"zod-validatio... | 2023-11-07T11:04:33 |
huggingface/transformers | 35b005bba4de1d4b3c3789451adb5cf7469b1522 | c17877c2ad39f8f736d5ea8a34f98e562843fc83 | Fix AutoProcessor.from_pretrained silently dropping hub kwargs (#44710)
* Fix AutoProcessor.from_pretrained silently dropping hub kwargs
The previous code used inspect.signature(cached_file).parameters to
filter kwargs before passing them to cached_file(). However, since
cached_file() is defined with **kwargs in its ... | [
{
"path": "src/transformers/models/auto/processing_auto.py",
"patch": "@@ -14,7 +14,6 @@\n \"\"\"AutoProcessor class.\"\"\"\n \n import importlib\n-import inspect\n import json\n from collections import OrderedDict\n from typing import TYPE_CHECKING\n@@ -299,7 +298,18 @@ def from_pretrained(cls, pretrained_... | 2026-03-25T18:04:21 |
vercel/next.js | dcdb2e18d6c7faadc56c22d4087affd0d29cab48 | 3efa94ec5bdc37b05e069b1cfc9082b83e5afeac | Fix small grammar error in searchParams section (#80548)
<!-- 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 Contrib... | [
{
"path": "docs/01-app/05-api-reference/03-file-conventions/page.mdx",
"patch": "@@ -60,7 +60,7 @@ export default async function Page({ params }) {\n | `app/shop/[category]/[item]/page.js` | `/shop/1/2` | `Promise<{ category: '1', item: '2' }>` |\n | `app/shop/[...slug]/page.js` | `/shop/1/2` | `Pro... | 2025-06-16T11:38:21 |
ollama/ollama | 5daf59cc6666dd036af8fab8c5df6b5571a9a9ba | 0ade9205cce88006245dc54ea8884607822b103b | mlxrunner: Fix memory leaks with pin/sweep lifecycle management
The previous approach tracked array lifecycles through reference
counting, where each array recorded its inputs and a reference count
that was decremented as dependents were freed. This is not really
necessary as MLX tracks references internally. It is al... | [
{
"path": "x/mlxrunner/cache/cache.go",
"patch": "@@ -47,6 +47,7 @@ func (c *KVCache) Update(keys, values *mlx.Array) (*mlx.Array, *mlx.Array) {\n \t\t\tc.values.Set(c.values.Concatenate(2, newValues))\n \t\t} else {\n \t\t\tc.keys, c.values = newKeys, newValues\n+\t\t\tmlx.Pin(c.keys, c.values)\n \t\t}\n \... | 2026-02-19T23:05:35 |
facebook/react | 72c27b6893188be833839923b33d739a93b3ed6e | c424cbbfa7822b47fc73b112514426d149d3c98a | Feature flag for transitively freezing values
This PR adds a feature flag to model a potential new-in-practice rule in React:
that freezing a function expression also freezes its closed-over values,
transitively. For example, in the following code `data` is frozen when the
lambda that captures it is is passed to u... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts",
"patch": "@@ -175,6 +175,41 @@ export type EnvironmentConfig = {\n */\n enableEmitFreeze: ExternalFunction | null;\n \n+ /**\n+ * Forget infers certain operations as \"freezing\" a value, such that those\n+ * values sh... | 2023-11-06T16:33:32 |
golang/go | 9189921e4759055141b51fdbb8b7b69ee4fdd477 | f7204d76bc3af681c12e8ed9bfb18c20bf6f8bc1 | go/types,types2: externalize used objects
The 'used' field on Var and PkgName is fundamentally an aspect of the
type checking pass: it records when objects are used, for the purposes
of reporting errors for unused variables or package names. While
expedient and performant, recording this information in the types.Objec... | [
{
"path": "src/cmd/compile/internal/types2/assignments.go",
"patch": "@@ -204,7 +204,7 @@ func (check *Checker) lhsVar(lhs syntax.Expr) Type {\n \t\t\t// dot-imported variables.\n \t\t\tif w, _ := obj.(*Var); w != nil && w.pkg == check.pkg {\n \t\t\t\tv = w\n-\t\t\t\tv_used = v.used\n+\t\t\t\tv_used = check... | 2025-02-19T22:07:09 |
huggingface/transformers | c17877c2ad39f8f736d5ea8a34f98e562843fc83 | 2a54236620f75fdafb6be69492e6995e7869c14f | Fix `maybe_autocast` crashing on meta device tensors (#44984)
`torch.is_autocast_enabled("meta")` raises a RuntimeError because
torch does not support autocast for the meta device. This breaks any
code that runs a forward pass on meta tensors (e.g. nnsight's `.scan()`
for tracing without materializing weights).
Since... | [
{
"path": "src/transformers/utils/generic.py",
"patch": "@@ -196,6 +196,8 @@ def maybe_autocast(\n Which makes graph splitting in `torch.compile` more flexible as it removes the\n requirement that partition IDs be monotonically increasing.\n \"\"\"\n+ if device_type == \"meta\":\n+ ret... | 2026-03-25T17:42:52 |
vercel/next.js | 3efa94ec5bdc37b05e069b1cfc9082b83e5afeac | 64702a9e422d42034a714ae40a8514d7911d0150 | docs: fix typo (#80549)
<!-- 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 Documentatio... | [
{
"path": "docs/01-app/02-guides/forms.mdx",
"patch": "@@ -111,7 +111,7 @@ export async function updateUser(userId, formData) {}\n \n ## Form validation\n \n-Forms can be validate on the client or server.\n+Forms can be validated on the client or server.\n \n - For **client-side validation**, you can use th... | 2025-06-16T11:33:58 |
electron/electron | eb291485bb655c5e2f18224481e3858de3dcb8dc | 4ff0642af745e57df6736b9d68fe0228b8e28968 | chore: drop support for Windows 7 / 8 / 8.1 (#36427)
* chore: drop support for Windows 7 & 8
* chore: remove disable-redraw-lock.patch
* chore: update patches
* Update docs/breaking-changes.md
Co-authored-by: Erick Zhao <erick@hotmail.ca>
* Update docs/breaking-changes.md
Co-authored-by: Keeley Hammo... | [
{
"path": "README.md",
"patch": "@@ -39,7 +39,7 @@ For more installation options and troubleshooting tips, see\n Each Electron release provides binaries for macOS, Windows, and Linux.\n \n * macOS (High Sierra and up): Electron provides 64-bit Intel and ARM binaries for macOS. Apple Silicon support was adde... | 2022-12-01T01:13:29 |
ollama/ollama | 8b4e5a82a8dc3aadfa385eb0ff0641a8c9cbbfad | 34452233116171391f770e8079002620d0a9fd7a | mlx: remove noisy error output from dynamic library loading (#14346)
The recent change in #14322 added tryLoadByName() which attempts to
load libmlxc.dylib via rpath before searching directories. This is an
optimization for Homebrew installations where rpath is correctly set.
However, when rpath isn't set (which is t... | [
{
"path": "x/mlxrunner/mlx/dynamic.c",
"patch": "@@ -18,7 +18,9 @@\n \n static int mlx_dynamic_open(mlx_dynamic_handle* handle, const char* path) {\n handle->ctx = (void*) DLOPEN(path);\n- CHECK(handle->ctx != NULL);\n+ if (handle->ctx == NULL) {\n+ return 1;\n+ }\n return 0;\n }\n "... | 2026-02-21T07:46:07 |
facebook/react | c424cbbfa7822b47fc73b112514426d149d3c98a | 35fee3135561ec3259cce695f4e2bb0863f7d7e0 | Add validation against instructions not part of their scope
Adds an internal compiler assertion pass which checks that all the instructions
which are necessary for constructing a given scope correctly end up within the
corresponding ReactiveScopeBlock. All known cases where this can occur are fixed
earlier in the ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -36,6 +36,7 @@ import {\n import {\n CodegenFunction,\n alignReactiveScopesToBlockScopes,\n+ assertScopeInstructionsWithinScopes,\n buildReactiveBlocks,\n buildReactiveFunction,\n codegenReactiveFunct... | 2023-11-06T16:33:31 |
golang/go | f7204d76bc3af681c12e8ed9bfb18c20bf6f8bc1 | 061efaa8a761458eaa41119ffd59033738cf141c | html/template: example for disallowed script type change
Fixes #59112
Change-Id: I617f8a4581a55a0f134f488462f415ec22eb4ee3
Reviewed-on: https://go-review.googlesource.com/c/go/+/496145
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou... | [
{
"path": "src/html/template/error.go",
"patch": "@@ -79,15 +79,18 @@ const (\n \tErrBadHTML\n \n \t// ErrBranchEnd: \"{{if}} branches end in different contexts\"\n-\t// Example:\n+\t// Examples:\n \t// {{if .C}}<a href=\"{{end}}{{.X}}\n+\t// <script {{with .T}}type=\"{{.}}\"{{end}}>\n \t// Discussion:\... | 2023-05-19T19:11:19 |
huggingface/transformers | 2a54236620f75fdafb6be69492e6995e7869c14f | 2f6249179233e880770c1dbc47ea834ada29fe59 | Add VidEoMT (#44285)
* First draft
* [Videomt] Extend query-stage parity checks to 3-frame inputs
* [Videomt] Add full-model parity check against EoMT reference
* [Videomt] Compare conversion against official GitHub reference
* [Videomt] Simplify conversion to checkpoint-based HF mapping
* [Videomt] Add --verify ... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -974,6 +974,8 @@\n title: UperNet\n - local: model_doc/uvdoc\n title: UVDoc\n+ - local: model_doc/videomt\n+ title: VidEoMT\n - local: model_doc/vit\n title: Vision Transformer (ViT)\n - local: model_... | 2026-03-25T17:05:21 |
electron/electron | 4ff0642af745e57df6736b9d68fe0228b8e28968 | 835e248dfff8bb585770be18ed0df74b29e81c7b | fix: treat maxWidth/Height<=0 as unlimited (#36487) | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -175,7 +175,11 @@ void NativeWindow::InitFromOptions(const gin_helper::Dictionary& options) {\n int max_width = max_size.width() > 0 ? max_size.width() : INT_MAX;\n int max_height = max_size.height() > 0 ? max_size.height() : INT_MAX;\n bool hav... | 2022-12-01T01:02:22 |
vercel/next.js | 2c95fefdacdeed440893273d34f956fb8d36e8f8 | c6775aef908f4a85ffdf3f8d25cc038b937bbc15 | [dynamicIO] Use filled Resume Data Cache for final-phase prerenders (#79743)
When a route with dynamic params is prerendered using defined params
from `generateStaticParams`, the filled Resume Data Cache is now used
for the final-phase prerender of the matching optional fallback shell.
This ensures that the fallback ... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -365,9 +365,9 @@ export async function handler(\n \n // If the warmup is successful, we should use the resume data\n // cache from the warmup.\n- if (warmup.metadata.devRenderResumeDataCache) {\n- ... | 2025-06-14T13:19:32 |
golang/go | 061efaa8a761458eaa41119ffd59033738cf141c | 37026a7c563c580bef0fac1e5b60e9498650e3a2 | net/http: make http.FileServer return 404 when a path is invalid/unsafe
This PR adds error handling in net/http toHTTPError to return a 404
instead of a 500 when net/http fs.Dir.Open throws the error http:
invalid or unsafe file path.
Fixes #72091
Change-Id: I7941c8fca5160a4a82732dc1d05b9b95eac84fbf
GitHub-Last-Rev:... | [
{
"path": "src/net/http/fs.go",
"patch": "@@ -67,6 +67,11 @@ func mapOpenError(originalErr error, name string, sep rune, stat func(string) (f\n \treturn originalErr\n }\n \n+// errInvalidUnsafePath is returned by Dir.Open when the call to\n+// filepath.Localize fails. filepath.Localize returns an error if t... | 2025-03-05T09:44:46 |
facebook/react | 0d3f3884b871088c92a76822dd221d06bad40df6 | 1607fb39c3148eb1dc31005af4b07a7024954de3 | Fix for IIFE return values mutated later
Fixes for the previous PR. What was happening is that our inference was
inferring the correct mutable ranges and reactive scopes, but the inlining
process left the instructions from the IIFEs inside a separate block, with a
'label' terminal preceding it. When we converted t... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -115,6 +115,18 @@ function* runWithEnvironment(\n pruneMaybeThrows(hir);\n yield log({ kind: \"hir\", name: \"PruneMaybeThrows\", value: hir });\n \n+ validateUseMemo(hir);\n+\n+ dropManualMemoization(hir)... | 2023-11-06T16:33:29 |
ollama/ollama | 97323d1c68f1eb7a860ce7bc4e627a97d9c38835 | 458dd1b9d98a5981d1ed4134258e07186b219a69 | consolidate the tokenizer (#14327)
This change adds a new x/tokenizer package which includes:
* New BPE and SentencePiece tokenizers
* Removing the dependency on the imagegen tokenizers
* Fixes to multibyte decoding in the pipeline
* Various correctness and benchmark tests
Not included in this PR is the WordP... | [
{
"path": "x/mlxrunner/model/base/base.go",
"patch": "@@ -8,10 +8,10 @@ import (\n \t\"log/slog\"\n \t\"sync\"\n \n-\t\"github.com/ollama/ollama/x/imagegen/tokenizer\"\n \t\"github.com/ollama/ollama/x/mlxrunner/cache\"\n \t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n \t\"github.com/ollama/ollama/x/mlxrunn... | 2026-02-19T23:55:45 |
huggingface/transformers | 2f6249179233e880770c1dbc47ea834ada29fe59 | 0e1978c9eb69ec64b55245212dbf63deab19d25b | fix: remove Copied from comments between @torch.jit.script and def for Python 3.13 compat (#44986)
fix: remove `# Copied from` comments between @torch.jit.script and def for Python 3.13 compat
On Python 3.13, placing a comment between @torch.jit.script and the
function definition causes an IndentationError when torch... | [
{
"path": "src/transformers/models/deberta_v2/modeling_deberta_v2.py",
"patch": "@@ -102,19 +102,16 @@ def build_relative_position(query_layer, key_layer, bucket_size: int = -1, max_p\n \n \n @torch.jit.script\n-# Copied from transformers.models.deberta.modeling_deberta.c2p_dynamic_expand\n def c2p_dynamic_... | 2026-03-25T13:31:30 |
electron/electron | 665cf03f741f3d0bcb0800db5bb31c0707e4987e | f527b8aa2a670edb84c6bda1f01623a69bc40212 | fix: handle Notification requireInteraction option (#36477) | [
{
"path": "shell/browser/notifications/platform_notification_service.cc",
"patch": "@@ -35,6 +35,9 @@ void OnWebNotificationAllowed(base::WeakPtr<Notification> notification,\n options.icon = icon;\n options.silent = audio_muted ? true : data.silent;\n options.has_reply = false;\n+ if (data.re... | 2022-11-30T21:18:35 |
vercel/next.js | 16cb4c5360a7f27cc3d89c0e03840e26511888f2 | 8e0c32228be83d3acf8ffced5c61e4320440c5db | fix(turbopack): Fix config caching for turbopack + React Compiler (#80498)
### What?
Modify the caching logic to include the whole filename when compiling with the React Compiler.
### Why?
When RC is enabled, we cannot cache the config merely using the extension. | [
{
"path": "packages/next/src/build/babel/loader/get-config.ts",
"patch": "@@ -37,27 +37,31 @@ interface CharacteristicsGermaneToCaching {\n isPageFile: boolean\n isNextDist: boolean\n hasModuleExports: boolean\n- fileExt: string\n+ fileNameOrExt: string\n }\n \n const fileExtensionRegex = /\\.([a-z]... | 2025-06-13T20:24:02 |
huggingface/transformers | 0e1978c9eb69ec64b55245212dbf63deab19d25b | 2620c4ddd41afcc8d3b1d1134803bd418ffa45a7 | More small vllm fixes (#44990)
* BC
* update
* revert
* update
* style | [
{
"path": "src/transformers/utils/generic.py",
"patch": "@@ -940,6 +940,14 @@ def wrapper(self, *args, **kwargs):\n return wrapper\n \n \n+# bc for check_model_inputs:\n+\n+\n+def check_model_inputs(func):\n+ logger.warning_once(\"The `check_model_inputs` decorator is deprecated in favor of `merge_wi... | 2026-03-25T13:05:41 |
golang/go | 2e6cbab1c84363638ed48f259c3db57c4d2aaab3 | 6f90ae362352552a8b6384e28c5751bb7110c33b | encoding/pem: clarify Decode only works on lines
Fixes #53524
Change-Id: I929ee3c055c3ca564cd6cc374124f493aea2fbf6
Reviewed-on: https://go-review.googlesource.com/c/go/+/421636
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped... | [
{
"path": "src/encoding/pem/pem.go",
"patch": "@@ -85,7 +85,7 @@ var colon = []byte(\":\")\n // Decode will find the next PEM formatted block (certificate, private key\n // etc) in the input. It returns that block and the remainder of the input. If\n // no PEM data is found, p is nil and the whole of the in... | 2022-08-06T13:28:16 |
facebook/react | 1607fb39c3148eb1dc31005af4b07a7024954de3 | 60af6671d72540b472c1701ce7d42da4f4e3a16d | Repro for incorrect memoization of iife
We construct invalid mutable ranges in these cases because the range starts
within a labeled block. We need to run merge consecutive scopes and EnterSSA
after inlining so that the code is lifted out of the labeled block to the
correct scope, and so that we create phis for re... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug.iife-return-modified-later-phi.expect.md",
"patch": "@@ -0,0 +1,53 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const items = (() => {\n+ if (props.cond) {\n+ return [];\n+ } else {... | 2023-11-06T16:33:28 |
ollama/ollama | 458dd1b9d98a5981d1ed4134258e07186b219a69 | 9d02d1d767b075221031be19ad9695f1259b3519 | mlx: try loading library via rpath before searching directories (#14322)
The existing code manually searches directories for libmlxc.* and passes
full paths to dlopen, bypassing the binary's rpath. This means MLX
libraries installed via package managers (e.g., Homebrew) aren't found
even when rpath is correctly set at... | [
{
"path": "x/mlxrunner/mlx/dynamic.go",
"patch": "@@ -55,6 +55,30 @@ func tryLoadFromDir(dir string) bool {\n \treturn false\n }\n \n+// tryLoadByName attempts to load the library using just its name,\n+// allowing the system to use rpath, LD_LIBRARY_PATH, or standard search paths.\n+// Returns true if the ... | 2026-02-19T18:55:02 |
electron/electron | e3b7c3024f6f70155efb1022b691954280f983cb | 9f007b9afb5217b35ee3bb582024bf762d70e4ce | docs: fix loadExtension example (#36489) | [
{
"path": "docs/api/extensions.md",
"patch": "@@ -20,7 +20,7 @@ work). Extensions are installed per-`session`. To load an extension, call\n ```js\n const { session } = require('electron')\n \n-session.loadExtension('path/to/unpacked/extension').then(({ id }) => {\n+session.defaultSession.loadExtension('path... | 2022-11-30T19:29:02 |
vercel/next.js | 711b1bad5fff3045bc880c88ca4c384d47b48fd3 | 2aa74a8978ec056f9358c66a46a0329da096feae | [dynamicIO] Split up static generation into two phases (#79629)
When `experimental.dynamicIO` is enabled, we're now prerendering
fallback shells for routes that have some entries defined in
`generateStaticParams` in a second phase, after the more specific route
are prerendered.
This will allow us to offer better erro... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -735,7 +735,7 @@ const staticWorkerExposedMethods = [\n 'getDefinedNamedExports',\n 'exportPages',\n ] as const\n-type StaticWorker = typeof import('./worker') & Worker\n+export type StaticWorker = typeof import('./worker') & Worker\n export fun... | 2025-06-13T18:15:26 |
huggingface/transformers | 2620c4ddd41afcc8d3b1d1134803bd418ffa45a7 | c532659b8734b88d2bbaac2542c2a5a8b525f3f7 | fix(models): Fix Perceiver interpolate_pos_encoding interpolating to the source size (#44899)
* fix: Correct interpolation target size
* test: Add fast test coverage | [
{
"path": "src/transformers/models/perceiver/modeling_perceiver.py",
"patch": "@@ -2567,7 +2567,7 @@ def interpolate_pos_encoding(self, position_embeddings: torch.Tensor, height: in\n \n position_embeddings = nn.functional.interpolate(\n position_embeddings,\n- size=(new_heigh... | 2026-03-25T11:41:05 |
facebook/react | a2aa032276a9546a7bc06d118ca7de98a5fae651 | fe147cb16a3ec82220d2599bb59ee12fc7319687 | [eslint] Plugin should never throw
This has caused issues for people when things like Babel cause issues. It's not
actionable and it crashes eslint. Just like the Babel plugin, the eslint plugin
should never throw. Instead, let's log the error so the data isn't lost. | [
{
"path": "compiler/packages/eslint-plugin-react-forget/src/rules/ReactForgetDiagnostics.ts",
"patch": "@@ -23,6 +23,8 @@ type CompilerErrorDetailWithLoc = Omit<CompilerErrorDetail, \"loc\"> & {\n loc: BabelSourceLocation;\n };\n \n+type UserProvidedLogger = (...args: unknown[]) => void;\n+\n function ass... | 2023-11-03T20:27:18 |
golang/go | 350118666d75445761bef5c45e681415e6d1b326 | a1889554fc3e0c15b4a9870b49bf3a0252f80688 | net/http: don't modify caller's tls.Config.NextProtos
Clone the input slice before adjusting NextProtos
to add or remove "http/1.1" and "h2" entries,
so as not to modify a slice that the caller might be using.
(We clone the tls.Config that contains the slice, but
that's a shallow clone.)
Fixes #72100
Change-Id: I9f2... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"compress/zlib\"\n \t\"context\"\n \t\"crypto/tls\"\n+\t\"crypto/x509\"\n \t\"encoding/json\"\n \t\"errors\"\n \t\"fmt\"\n@@ -7335,3 +7336,71 @@ func TestInvalidChunkedBodies(t *testing.T) {\n \t\t})\n \t}\n }\n+\n+// Issue #7... | 2025-03-04T23:20:28 |
ollama/ollama | d07e4a1dd39c6334184c05e1c3b8192865e114c2 | 8a257ec00a76d3dd90f0106fba1e56215588efae | bugfix: better mlx model scheduling (#14290)
This fixes a bug with current MLX based models which don't get loaded/unloaded correctly. The first model currently gets loaded and then subsequent model starts get shunted to the first runner which results in the wrong model being run. | [
{
"path": "server/routes_generate_test.go",
"patch": "@@ -2371,6 +2371,26 @@ func TestImageGenerateStreamFalse(t *testing.T) {\n \t\treturn nil\n \t}\n \n+\t// Create model manifest with image capability\n+\tn := model.ParseName(\"test-image\")\n+\tcfg := model.ConfigV2{Capabilities: []string{\"image\"}}\n+... | 2026-02-17T21:57:05 |
electron/electron | 2c723d7e84dfab5ad97fc0927426a0b2cd7a15b5 | 16a7bd71024789fcabb9362888ee4638852b1eb1 | fix: enable crashpad for ELECTRON_RUN_AS_NODE processes (#36460)
* wip: enable crashpad for node processes
fix: add PID testing method
wip: plumb fd into child_process in node
* node::ProcessInitializationFlags::kNoDefaultSignalHandling
* chore: clean up debug logging
* chore: gate platform includes
... | [
{
"path": "filenames.gni",
"patch": "@@ -530,6 +530,7 @@ filenames = {\n \"shell/browser/window_list_observer.h\",\n \"shell/browser/zoom_level_delegate.cc\",\n \"shell/browser/zoom_level_delegate.h\",\n+ \"shell/common/api/crashpad_support.cc\",\n \"shell/common/api/electron_api_asar.cc\... | 2022-11-29T15:33:54 |
vercel/next.js | 7dad4ac2bc32e4c3c408b1d5368243296fa1b75c | 3d599a673b725132df9adcba42bea69a8976d143 | chore: fix link to good first issue (#80478)
Fixes: #80472
Link to good-first-issue lacked some encoding | [
{
"path": "packages/next/README.md",
"patch": "@@ -39,7 +39,7 @@ Contributions to Next.js are welcome and highly appreciated. However, before you\n \n ### Good First Issues:\n \n-We have a list of **[good first issues](https://github.com/vercel/next.js/labels/good%20first%20issue)** that contain bugs that h... | 2025-06-13T12:57:40 |
facebook/react | 4a793bb86e6aa8c27b7dcba5783a2f8dbb5b68d0 | dca54c8932cfad5905c8b079be551ba741e07268 | [hoisting] Add more repros for hoisting bugs | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-hoisting.expect.md",
"patch": "@@ -0,0 +1,26 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const wat = () => {\n+ const pathname = \"wat\";\n+ pathname;\n+ };\n+\n+ const pathname... | 2023-11-02T15:01:29 |
huggingface/transformers | c532659b8734b88d2bbaac2542c2a5a8b525f3f7 | c3b41c6c57be42e5dc2834af25c0c15be98a6678 | Allow `mm_token_type` be non-padded lists (#44563)
* squash commit
* several forks mixed up, revert
* oops
* glms
* commit lost when rebasing, revert
* typing hints
* more failures
* fix repo
* comments and revert unrelated
* fix style
* fix repo | [
{
"path": "src/transformers/models/aria/modular_aria.py",
"patch": "@@ -11,7 +11,6 @@\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 numpy as np\n import torch\n ... | 2026-03-25T11:20:06 |
electron/electron | 16a7bd71024789fcabb9362888ee4638852b1eb1 | bbb590b7776cd9cbb15a4866171e71408924e988 | fix: reimplement Tray with StatusIconLinuxDbus on Linux (#36333) | [
{
"path": "BUILD.gn",
"patch": "@@ -632,16 +632,8 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/browser/certificate_manager_model.cc\",\n \"shell/browser/certificate_manager_model.h\",\n- \"shell/browser/ui/gtk/app_indicator_icon.cc\",\n- \"shell/browser/ui/gtk/app_ind... | 2022-11-28T19:36:25 |
ollama/ollama | 3a88f7eb2087170a0835dd2a1bdb2ddad4e5cdd5 | 0d5da826d47f6ca219f04302234b77a849476fba | bugfix: add missing linear layer factory (#14289) | [
{
"path": "x/mlxrunner/model/linear.go",
"patch": "@@ -0,0 +1,92 @@\n+//go:build mlx\n+\n+package model\n+\n+import (\n+\t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n+\t\"github.com/ollama/ollama/x/models/nn\"\n+)\n+\n+// LinearFactory builds linear layers using shared tensor maps and quant defaults.\n+ty... | 2026-02-17T01:22:20 |
golang/go | 52eaed66335e90ceb6ad65873889ccca46851ee9 | f95941de4908a45287d700697347aa69d714457b | runtime: decorate anonymous memory mappings
Leverage the prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, ...) API to name
the anonymous memory areas.
This API has been introduced in Linux 5.17 to decorate the anonymous
memory areas shown in /proc/<pid>/maps.
This is already used by glibc. See:
* https://sourceware.org/git/?... | [
{
"path": "src/internal/runtime/syscall/defs_linux.go",
"patch": "@@ -16,4 +16,7 @@ const (\n \tEPOLL_CTL_DEL = 0x2\n \tEPOLL_CTL_MOD = 0x3\n \tEFD_CLOEXEC = 0x80000\n+\n+\tPR_SET_VMA = 0x53564d41\n+\tPR_SET_VMA_ANON_NAME = 0\n )",
"additions": 3,
"deletions": 0,
"language": "Go"
}... | 2025-02-01T13:19:04 |
vercel/next.js | 3d599a673b725132df9adcba42bea69a8976d143 | e1045df08d9f8f0d6c57afbf9ab9ab576bf67a25 | Fix variable assignment in docs example (#80418)
### What?
Fixes small bug in Javascript code example where same variable is
declared again.
### How?
Same as this PR #74744 which fixed the Typescript code.
Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com> | [
{
"path": "docs/01-app/01-getting-started/07-fetching-data.mdx",
"patch": "@@ -165,11 +165,11 @@ export default function Posts({\n import { use } from 'react'\n \n export default function Posts({ posts }) {\n- const posts = use(posts)\n+ const allPosts = use(posts)\n \n return (\n <ul>\n- {post... | 2025-06-13T12:22:26 |
facebook/react | faa65778b7c277e0020b8bb1fc172e11a863c0b7 | 9ddfe614f228d89c8d9807a50009004aa8f014c6 | Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/expiration (#27600) | [
{
"path": "fixtures/expiration/yarn.lock",
"patch": "@@ -230,6 +230,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07... | 2023-11-01T19:31:28 |
huggingface/transformers | c3b41c6c57be42e5dc2834af25c0c15be98a6678 | b3d7942fbaedda791668d7fe42eaaa323ed7a089 | Fix CPU 16 bytes alignment issue using equivalent fallback (#44970)
* fix 16 bytes alignement issue
* add issue for reference
* test fix for non-aligned inputs as well
* avoid dims non divisible by 8 for grouped_mm testing
* test
* style
* final fix that works for cpu builds as well
* move coment | [
{
"path": "docs/source/en/weightconverter.md",
"patch": "@@ -168,7 +168,6 @@ Operations are fully reversible. Saving reverses the conversions and returns the\n | [`MergeModulelist(dim)`] | [`SplitModulelist(dim)`] |\n | [`SplitModulelist(dim)`] | [`MergeModulelist(dim)`] |\n | [`Transpose(d0, d1)`] | [`Tran... | 2026-03-25T08:45:47 |
golang/go | f95941de4908a45287d700697347aa69d714457b | ba3c57fc7ceb6c1158e81ccd8071cdeb7a6d6793 | net/http/httputil: skip new test on Plan 9
TestReverseProxyWebSocketHalfTCP requires half closed connections,
which aren't supported on Plan 9.
For #35892
Fixes #72095
Change-Id: I64b458bc15ac3b8eda43dc871bf67ada32a59708
Reviewed-on: https://go-review.googlesource.com/c/go/+/654636
Reviewed-by: Ian Lance Taylor <ian... | [
{
"path": "src/net/http/httputil/reverseproxy_test.go",
"patch": "@@ -23,6 +23,7 @@ import (\n \t\"net/url\"\n \t\"os\"\n \t\"reflect\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n@@ -1560,6 +1561,11 @@ func TestReverseProxyWebSocketHalfTCP(t *testing.T) {\n \t// - that closing the write... | 2025-03-04T18:07:15 |
electron/electron | 679ce632a99d35e42ee3c42be5cb05401bd2af77 | 629c54ba36fcca787cd3ac69924a2527ba131bfc | build: fixup appveyor image for release (#36429)
* build: make sure symstore is in the PATH when baking an image
* build: update to use fixed baked image
* cleanup sdk install | [
{
"path": "appveyor.yml",
"patch": "@@ -25,7 +25,7 @@\n \n version: 1.0.{build}\n build_cloud: electronhq-16-core\n-image: e-110.0.5415.0\n+image: e-110.0.5415.0-fix\n environment:\n GIT_CACHE_PATH: C:\\Users\\appveyor\\libcc_cache\n ELECTRON_OUT_DIR: Default",
"additions": 1,
"deletions": 1,
... | 2022-11-22T21:57:49 |
vercel/next.js | e1045df08d9f8f0d6c57afbf9ab9ab576bf67a25 | 3019c227827d58a14aba3417d485ed650b168bb9 | Update from-create-react-app.mdx (#80451)
<!-- 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
### Impr... | [
{
"path": "docs/01-app/02-guides/migrating/from-create-react-app.mdx",
"patch": "@@ -12,7 +12,7 @@ There are several reasons why you might want to switch from Create React App to\n \n ### Slow initial page loading time\n \n-Create React App uses purely client-side React. Client-side only applications, also ... | 2025-06-13T12:11:26 |
facebook/react | 9ddfe614f228d89c8d9807a50009004aa8f014c6 | 6bfc0e032acc7e5ad6da2a09f3c4f47f3321da2c | Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/packaging/brunch/prod (#27598) | [
{
"path": "fixtures/packaging/brunch/prod/yarn.lock",
"patch": "@@ -86,6 +86,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee29... | 2023-11-01T19:30:25 |
huggingface/transformers | b3d7942fbaedda791668d7fe42eaaa323ed7a089 | 28af8184fb00a0e9bc778c3defdec39bbe7e8839 | refactor: unify QA calls (#44879)
* unify calls
* give me make!
* added tomli to quality extra
* keep teh exact same behavior
* remove circleCI from agent file
* unified UI
* better UX
* fix typing target
* dev-ci
* dev-ci
* hardcoded :dev
* removed dev blocks and python version marker
* make fix-repo | [
{
"path": ".ai/AGENTS.md",
"patch": "@@ -2,10 +2,10 @@\n - `make style`: runs formatters and linters (ruff), necessary to pass code style checks\n - `make typing`: runs the ty type checker and model structure rules\n - `make fix-repo`: auto-fixes copies, modular conversions, doc TOCs, docstrings in addition... | 2026-03-25T08:39:39 |
golang/go | ba3c57fc7ceb6c1158e81ccd8071cdeb7a6d6793 | fd8938c799969ad8caec2aaec5a4966e48a17895 | os: guarantee min buffer size for ReadFile reads on /proc-like files
For instance, this fixes os.ReadFile on plan9's /net/iproute file.
But it's not necessarily plan9-specific; Linux /proc and /sys filesystems
can exhibit the same problems.
Fixes #72080
Change-Id: I60b035913f583a91c6d84df95a6ea7b7ec2b3c92
Reviewed-... | [
{
"path": "src/os/export_test.go",
"patch": "@@ -15,3 +15,5 @@ var ErrPatternHasSeparator = errPatternHasSeparator\n func init() {\n \tcheckWrapErr = true\n }\n+\n+var ExportReadFileContents = readFileContents",
"additions": 2,
"deletions": 0,
"language": "Go"
},
{
"path": "src/os/file.g... | 2025-03-03T17:21:26 |
vercel/next.js | 7e310f8d2a076cb036297cca9408703083dfd1d2 | 9c1f2727f929b92e1a04d31c6cf425b4f42b5072 | fix(turbopack): Improve error message for PURE selector error (#80068)
### What?
Use CSS string for CSS errors instead of Rust debug representation, and remove `lightningcss` text from the error message.
### Why?
We don't need them. | [
{
"path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts",
"patch": "@@ -464,7 +464,7 @@ describe('ReactRefreshLogBox app', () => {\n \"label\": \"Build Error\",\n \"source\": \"./index.module.css\n Parsing css source code failed\n- Selector is not pure (pure sele... | 2025-06-12T22:44:36 |
electron/electron | 629c54ba36fcca787cd3ac69924a2527ba131bfc | 2751c2b07f52b65822dc1c1f25687f4f4770d01f | feat: add support for WebUSB (#36289)
* feat: add support for WebUSB
* fixup for gn check
* fixup gn check on Windows
* Apply review feedback
Co-authored-by: Charles Kerr <charles@charleskerr.com>
* chore: address review feedback
* chore: removed unneeded code
* Migrate non-default ScopedObservati... | [
{
"path": "docs/api/session.md",
"patch": "@@ -239,7 +239,7 @@ app.whenReady().then(() => {\n const selectedDevice = details.deviceList.find((device) => {\n return device.vendorId === '9025' && device.productId === '67'\n })\n- callback(selectedPort?.deviceId)\n+ callback(selectedDevice?... | 2022-11-22T21:50:32 |
facebook/react | 3eaa0c3871b63b6542a939d9c0e7040bf42b75b7 | 00409516371ac536d0ba5a7093699a36f9316070 | Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/packaging/brunch/dev (#27606)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.0.4 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CHANGE... | [
{
"path": "fixtures/packaging/brunch/dev/yarn.lock",
"patch": "@@ -86,6 +86,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294... | 2023-11-01T19:20:57 |
huggingface/transformers | 28af8184fb00a0e9bc778c3defdec39bbe7e8839 | 28e1cc59ecf479ea674f2cc4b443a2969aae3a69 | Fix tie_word_embedding issues with `Qwen2VL` (#44976)
* Fix tie_word_embedding issues with `Qwen2VL`
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
* remove colqwen hack
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
---------
Signed-off-by: Harry Mellor <19981378... | [
{
"path": "src/transformers/models/colmodernvbert/configuration_colmodernvbert.py",
"patch": "@@ -72,9 +72,6 @@ def __post_init__(self, **kwargs):\n if not hasattr(self.vlm_config, \"vocab_size\"):\n self.vlm_config.vocab_size = self.vlm_config.get_text_config().vocab_size\n \n- #... | 2026-03-24T20:48:14 |
golang/go | fd8938c799969ad8caec2aaec5a4966e48a17895 | 32fdcd7ca5156b2a0e928aa34a7b88f301ddc6f1 | net/http: speed up cookie and method validation
Fixes #67031
Change-Id: I1d764afdc7e50d61007f5f71a674eb6872ce507a
GitHub-Last-Rev: 869535e843d2133fa5279297b002dd96725384e0
GitHub-Pull-Request: golang/go#71798
Reviewed-on: https://go-review.googlesource.com/c/go/+/650195
Auto-Submit: Sean Liao <sean@liao.dev>
LUCI-Try... | [
{
"path": "src/net/http/cookie.go",
"patch": "@@ -79,7 +79,7 @@ func ParseCookie(line string) ([]*Cookie, error) {\n \t\tif !found {\n \t\t\treturn nil, errEqualNotFoundInCookie\n \t\t}\n-\t\tif !isCookieNameValid(name) {\n+\t\tif !isToken(name) {\n \t\t\treturn nil, errInvalidCookieName\n \t\t}\n \t\tvalue... | 2025-02-17T18:39:58 |
vercel/next.js | 9c1f2727f929b92e1a04d31c6cf425b4f42b5072 | 50d6dd0332a68ab6ab73cd2a014331644917bd82 | Revert "refactor(turbopack): Make invalidator flag explicit" (#80466)
Reverts vercel/next.js#80414
it turns out that we were not running debug assertions from CI.
x-ref: https://vercel.slack.com/archives/C03EWR7LGEN/p1749765841011769 | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -423,7 +423,7 @@ impl ProjectContainer {\n \n #[turbo_tasks::value_impl]\n impl ProjectContainer {\n- #[turbo_tasks::function(invalidator)]\n+ #[turbo_tasks::function]\n pub async fn project(&self) -> Result<Vc<Project>> {\n let env_... | 2025-06-12T22:43:11 |
ollama/ollama | 0d5da826d47f6ca219f04302234b77a849476fba | 9b795698b8fe99369ca7dc208f8368b3ba47b918 | bugfix: display the parameter count correctly in mlx for ollama show (#14285) | [
{
"path": "x/server/show.go",
"patch": "@@ -5,6 +5,7 @@ import (\n \t\"encoding/json\"\n \t\"fmt\"\n \t\"io\"\n+\t\"math\"\n \t\"os\"\n \t\"sort\"\n \t\"strings\"\n@@ -58,7 +59,15 @@ func GetSafetensorsLLMInfo(name model.Name) (map[string]any, error) {\n \t\t}\n \t}\n \n-\treturn buildModelInfo(config, tota... | 2026-02-16T21:03:34 |
facebook/react | 00409516371ac536d0ba5a7093699a36f9316070 | d0fcd36af479c4c8d419d689550768f535493b68 | Bump browserify-sign from 4.2.1 to 4.2.2 in /fixtures/dom (#27608)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.2.1 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CHANGELOG.md">browserif... | [
{
"path": "fixtures/dom/yarn.lock",
"patch": "@@ -1248,11 +1248,21 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:\n resolved \"https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828\"\n integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn... | 2023-11-01T19:20:39 |
golang/go | 32fdcd7ca5156b2a0e928aa34a7b88f301ddc6f1 | a053e79024f56a2a64728b1287509e880fad203e | mime/quotedprintable: accept LWSP-char after =
SP and HTAB are allowed after a = before the following CRLF.
RFC 2045 section 6.7 describes the ABNF for the quoted-printable encoding:
qp-line := *(qp-segment transport-padding CRLF)
qp-part transport-padding
qp-segment := qp-section *(SPACE / TA... | [
{
"path": "src/mime/quotedprintable/reader.go",
"patch": "@@ -66,6 +66,7 @@ var (\n \tcrlf = []byte(\"\\r\\n\")\n \tlf = []byte(\"\\n\")\n \tsoftSuffix = []byte(\"=\")\n+\tlwspChar = \" \\t\"\n )\n \n // Read reads and decodes quoted-printable data from the underlying reader.\n@@ -92,7 +93,7... | 2024-12-22T10:28:56 |
vercel/next.js | 1a854967e8a5cbdfb985316a04d0e5734b883df4 | a720ef8e056d6dcea8bc5ed8f34f43968d3a0c0d | fix(next-swc): Update `styled-jsx` SWC plugin (#80459)
### What?
Apply https://github.com/swc-project/plugins/pull/471
### Why?
To fix the content escaping bug of `styled-jsx` | [
{
"path": "Cargo.lock",
"patch": "@@ -6894,9 +6894,9 @@ dependencies = [\n \n [[package]]\n name = \"styled_jsx\"\n-version = \"0.91.1\"\n+version = \"0.91.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4eeb6bc4423bb2f48d3aad71b09e37ac704fa509b9ddb36540ca321cfb8e91da... | 2025-06-12T22:21:50 |
ollama/ollama | d18dcd77755b55c9d761e483abee17d1e2b6c58c | 5f5ef2013199968a59a330e686b0eab6196fdb6d | mlxrunner fixes (#14247)
* load glm4_moe_lite from the mlxrunner
* fix loading diffusion models
* remove log lines
* fix --imagegen flag | [
{
"path": "cmd/cmd.go",
"patch": "@@ -581,6 +581,17 @@ func RunHandler(cmd *cobra.Command, args []string) error {\n \t}\n \topts.WordWrap = !nowrap\n \n+\tuseImagegen := false\n+\tif cmd.Flags().Lookup(\"imagegen\") != nil {\n+\t\tuseImagegen, err = cmd.Flags().GetBool(\"imagegen\")\n+\t\tif err != nil {\n+... | 2026-02-14T06:30:42 |
electron/electron | c6d6af255109b9fc0c48f245c908d87830c26620 | b71cccb0d657919ac80d30fde646b0260425f1a1 | chore: bump node to v18.12.1 (main) (#36356)
* chore: bump node in DEPS to v18.12.1
* chore: update patches
* chore: add missing <algorithm> include
* src: add detailed embedder process initialization AP
https://github.com/nodejs/node/pull/44121
* chore: update gn build files
* dns: support dns modul... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '110.0.5415.0',\n 'node_version':\n- 'v18.10.0',\n+ 'v18.12.1',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2022-11-21T15:55:01 |
huggingface/transformers | 28e1cc59ecf479ea674f2cc4b443a2969aae3a69 | 692d187dc7b1091717bfe941785d272f7d575563 | Support Modular (!!) + Configs in `check_auto_docstrings` (#44803)
* Support config in check_auto_docstrings, fix all configs docstrings
* Add checking and fixing in modular
* fix style
* fix document ownly own attributes in configs, not inherited ones
* Add back removed examples, look through mro until PreTrained... | [
{
"path": "docs/source/en/auto_docstring.md",
"patch": "@@ -31,7 +31,7 @@ from ...utils import auto_docstring\n Select whether you'd like to apply `@auto_docstring` to a class or function below to see how to use it.\n \n <hfoptions id=\"type\">\n-<hfoption id=\"classes\">\n+<hfoption id=\"model classes\">\n... | 2026-03-24T17:46:05 |
golang/go | a053e79024f56a2a64728b1287509e880fad203e | 7181118a851bc22cf7acc604fe24940eb4926288 | net/http: support TCP half-close when HTTP is upgraded in ReverseProxy
This CL propagates closing the write stream from either side of the
reverse proxy and ensures the proxy waits for both copy-to and the
copy-from the backend to complete.
The new unit test checks communication through the reverse proxy when
the bac... | [
{
"path": "src/net/http/httputil/reverseproxy.go",
"patch": "@@ -793,7 +793,15 @@ func (p *ReverseProxy) handleUpgradeResponse(rw http.ResponseWriter, req *http.R\n \tspc := switchProtocolCopier{user: conn, backend: backConn}\n \tgo spc.copyToBackend(errc)\n \tgo spc.copyFromBackend(errc)\n-\t<-errc\n+\n+\t... | 2025-01-02T19:18:01 |
vercel/next.js | f8add0d9ffadf0287542eb19421fbcb918a5f861 | ae1f0be351dbf83bc7cb1c9210123fc609aba0b7 | [segment explorer] fix soft navigation case (#80443) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx",
"patch": "@@ -80,6 +80,8 @@ function PageSegmentTreeLayerPresentation({\n {folderName && (\n <span className=\"segment-explorer-filename--path\">\n {f... | 2025-06-12T11:10:33 |
electron/electron | 9c48992e21c64f25391b7057c85f35a61ba5ff08 | 7529ebfe0e20ff0456aaab29c22346e35cf074ce | chore: fix dangling promise in npm install (#36379)
* Fix dangling promise introduced in #33979
* fix reject in callback
* simplify code
Co-authored-by: Black-Hole <158blackhole@gmail.com>
Co-authored-by: Black-Hole <158blackhole@gmail.com> | [
{
"path": "npm/install.js",
"patch": "@@ -70,29 +70,21 @@ function isInstalled () {\n \n // unzips and makes path.txt point at the correct executable\n function extractFile (zipPath) {\n- return new Promise((resolve, reject) => {\n- const distPath = process.env.ELECTRON_OVERRIDE_DIST_PATH || path.join(_... | 2022-11-18T23:21:11 |
facebook/react | d0fcd36af479c4c8d419d689550768f535493b68 | 169d3350f005a0ab184746e7eca3548116472a34 | Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/attribute-behavior (#27601)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.0.4 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CHANGELO... | [
{
"path": "fixtures/attribute-behavior/yarn.lock",
"patch": "@@ -242,6 +242,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294... | 2023-11-01T19:20:01 |
ollama/ollama | f0a07a353b0892decebd5364443ffd2dde5f5679 | 948de6bbd2d07e1050d91c2422c3ee7af2d591da | cmd/tui: fix powershell search (#14242) | [
{
"path": "cmd/cmd.go",
"patch": "@@ -1887,10 +1887,7 @@ func runInteractiveTUI(cmd *cobra.Command) {\n \n \t// Selector adapters for tui\n \tsingleSelector := func(title string, items []config.ModelItem) (string, error) {\n-\t\ttuiItems := make([]tui.SelectItem, len(items))\n-\t\tfor i, item := range items... | 2026-02-13T23:53:11 |
huggingface/transformers | 692d187dc7b1091717bfe941785d272f7d575563 | 18f88de7f575410f3ad8a64418abf2572fecb259 | [ `vllm x v5`] nit (#44971)
* remove class
* remove more
* fix repo
* up up | [
{
"path": "src/transformers/configuration_utils.py",
"patch": "@@ -32,7 +32,6 @@\n from .generation.configuration_utils import GenerationConfig\n from .modeling_gguf_pytorch_utils import load_gguf_checkpoint\n from .modeling_rope_utils import RotaryEmbeddingConfigMixin\n-from .tokenization_utils_base import... | 2026-03-24T17:40:02 |
golang/go | 7181118a851bc22cf7acc604fe24940eb4926288 | bef2bb80a942a06bda2ff3aaedf46ff42d43aaf0 | net/http: check server shutting down before processing the request
The root cause of issue #65802 is a small race condition that occurs between
two events:
1. During the HTTP server shutdown, a connection in an idle state is identified
and closed.
2. The connection, although idle, has just finished reading a complete... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -2006,6 +2006,9 @@ func (c *conn) serve(ctx context.Context) {\n \t\t\t// If we read any bytes off the wire, we're active.\n \t\t\tc.setState(c.rwc, StateActive, runHooks)\n \t\t}\n+\t\tif c.server.shuttingDown() {\n+\t\t\treturn\n+\t\t}\n \t\tif err != nil {... | 2024-02-20T07:18:11 |
vercel/next.js | f646f4df2fda7fe0005c93a95c0492e06aac9278 | 301e79db455f2c1c4eb2448dd074863ae3512269 | chore: Remove useActionState from auto wrapping list (#80420)
Fixes: https://github.com/vercel/next.js/issues/80419 | [
{
"path": "docs/01-app/01-getting-started/08-updating-data.mdx",
"patch": "@@ -22,7 +22,6 @@ By convention, a Server Action is an async function used with [`startTransition`\n \n - Passed to a `<form>` using the `action` prop.\n - Passed to a `<button>` using the `formAction` prop.\n-- Passed to `useActionS... | 2025-06-12T10:41:26 |
electron/electron | 7529ebfe0e20ff0456aaab29c22346e35cf074ce | 4f1f263a9a98abb1c4e265c1d19e281312adf5b2 | fix: remove unneeded --turbo-profiling-input arg from mksnapshot_args (#36378)
fix: remove unneeded --turbo-profiling-input args from mksnapshot_args | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -701,6 +701,13 @@ step-mksnapshot-build: &step-mksnapshot-build\n if [ \"$USE_PREBUILT_V8_CONTEXT_SNAPSHOT\" != \"1\" ]; then\n ninja -C out/Default electron:electron_mksnapshot -j $NUMBER_OF_NINJA_PROCESSES\n gn desc out/Default v8:r... | 2022-11-17T22:49:12 |
facebook/react | 169d3350f005a0ab184746e7eca3548116472a34 | a675e5751b969750fc9ec4beeb43a72750644ac3 | Bump browserify-sign from 4.2.1 to 4.2.2 in /fixtures/ssr2 (#27616)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.2.1 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CHANGELOG.md">browseri... | [
{
"path": "fixtures/ssr2/package-lock.json",
"patch": "@@ -17,8 +17,8 @@\n \"concurrently\": \"^5.3.0\",\n \"express\": \"^4.17.1\",\n \"nodemon\": \"^2.0.6\",\n- \"react\": \"18.0.0-alpha-7ec4c5597\",\n- \"react-dom\": \"18.0.0-alpha-7ec4c5597\",\n+ \"react\": \... | 2023-11-01T19:19:34 |
huggingface/transformers | 18f88de7f575410f3ad8a64418abf2572fecb259 | b94fee049373eb2e140d4866847559c4c42b3d7e | LwDetrImageLoss: Fix dtype casting to prevent crash when using amp on cuda device (#44886)
* LwDetrImageLoss: Fix dtype casting to prevent crash when using amp on cuda device
* fix PR review comments
* add comments and apply similar fix rt_detr
---------
Co-authored-by: Matthias <matthias.meier@autonomous-teaming.... | [
{
"path": "src/transformers/loss/loss_lw_detr.py",
"patch": "@@ -112,6 +112,7 @@ def loss_labels(self, outputs, targets, indices, num_boxes):\n if \"logits\" not in outputs:\n raise KeyError(\"No logits were found in the outputs\")\n source_logits = outputs[\"logits\"]\n+ ... | 2026-03-24T16:47:07 |
vercel/next.js | e52ffc1f91402ae8a188d9cf86638ffd9d0813ab | 9dd1db5e6e2a4b18719ef86bd09e40445b8ae977 | Turbopack: fix persistent caching bit number typo (#80431)
### What?
fix typo discovered by @bgw | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/storage.rs",
"patch": "@@ -97,7 +97,7 @@ bitfield! {\n pub data_modified, set_data_modified: 3;\n /// Item was modified after snapshot mode was entered. A snapshot was taken.\n pub meta_snapshot, set_meta_snapshot: 4;\n- pub data_sna... | 2025-06-12T08:43:05 |
golang/go | bef2bb80a942a06bda2ff3aaedf46ff42d43aaf0 | 4c0a47a8ff74c5fe4366e1016250607943562569 | cmd/compile,cmd/link: move to DWARF5-style location lists
This patch updates the compiler to generate DWARF5-style location
lists (e.g. entries that feed into .debug_loclists) as opposed to
DWARF4-style location lists (which wind up in .debug_loc). The DWARF5
format is much more compact, and can make indirect referenc... | [
{
"path": "src/cmd/compile/internal/ssa/debug.go",
"patch": "@@ -1486,8 +1486,67 @@ func (state *debugState) writePendingEntry(varID VarID, endBlock, endValue ID) {\n \tstate.lists[varID] = list\n }\n \n-// PutLocationList adds list (a location list in its intermediate representation) to listSym.\n+// PutLo... | 2024-12-13T01:47:30 |
ollama/ollama | 948de6bbd2d07e1050d91c2422c3ee7af2d591da | 598b74d42c8cced0aad5fea90592fc23fe108c2c | add ability to disable cloud (#14221)
* add ability to disable cloud
Users can now easily opt-out of cloud inference and web search by
setting
```
"disable_ollama_cloud": true
```
in their `~/.ollama/server.json` settings file. After a setting update,
the server must be restarted.
Alternatively, setting the enviro... | [
{
"path": "api/client.go",
"patch": "@@ -449,6 +449,16 @@ func (c *Client) Version(ctx context.Context) (string, error) {\n \treturn version.Version, nil\n }\n \n+// CloudStatusExperimental returns whether cloud features are disabled on the server.\n+func (c *Client) CloudStatusExperimental(ctx context.Cont... | 2026-02-12T23:47: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.