repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
huggingface/transformers
7805ec28c1b374fa1d4ffc77ed5e8c4cb1322bca
be8d8a4cae81fa4889a80d88d84e7a8b2a0c4850
[generate] Never use `cache_position` anymore in generation (#44816) * remove from generation * update tests * more tests * fix * doc * last changes * aqlm slipped through * add bc for remote code models * anton's review * add warning
[ { "path": "docs/source/en/attention_interface.md", "patch": "@@ -198,8 +198,9 @@ This is the default signature for an attention mask function.\n ```python\n def custom_attention_mask(\n batch_size: int, # required arg\n- cache_position: torch.Tensor, # required arg\n+ q_length: int, # required ...
2026-03-19T14:18:26
facebook/react
683a197a899b2914c80478b389132a8081e4eb24
b55cf78a4d23de06b96a3a5025ad86e4961baa96
Manually revert #2127 (allow mutating context in callbacks) #2127 introduced a special type for the result of `useContext()` that was sort of ref-like. The intent was to allow code like this: ``` function Foo() { const cx = useContext(...); function onEvent() { cx.foo = true; }; return <Bar onEvent={on...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Globals.ts", "patch": "@@ -9,7 +9,6 @@ import { Effect, ValueKind } from \"./HIR\";\n import {\n BUILTIN_SHAPES,\n BuiltInArrayId,\n- BuiltInContextId,\n BuiltInUseRefId,\n BuiltInUseStateId,\n ShapeRegistry,\n@@ -241,7 +240,7 @@ cons...
2023-10-09T22:21:12
golang/go
b1a11c54465f24d1861c3568ea3b1bb6304b450d
a9357490919feed070e952ebc681b1a7af30aac2
all: update vendored dependencies [generated] The tree has opened for Go 1.25 development. This is a time to update all golang.org/x/... module versions that contribute packages to the std and cmd modules in the standard library to latest master versions. For #36905. [git-generate] go install golang.org/x/build/cmd/...
[ { "path": "src/cmd/go.mod", "patch": "@@ -1,21 +1,21 @@\n module cmd\n \n-go 1.24\n+go 1.25\n \n require (\n \tgithub.com/google/pprof v0.0.0-20241101162523-b92577c0c142\n-\tgolang.org/x/arch v0.12.0\n-\tgolang.org/x/build v0.0.0-20241205234318-b850320af2a4\n-\tgolang.org/x/mod v0.22.0\n-\tgolang.org/x/sync...
2025-02-11T22:59:59
electron/electron
8a0b4fa338618e8afbc6291bf659870feddd230c
626e248dea71e6bb7aec4cfb335985aedfd2e465
feat: add app.getSystemLocale() method (#35697) * feat: add app.getSystemLocale() method * Update shell/browser/electron_browser_main_parts.cc Co-authored-by: Charles Kerr <charles@charleskerr.com> * Change methods to be const * Apply PR feedback * Fix mac compile * Add missing scope * Apply style...
[ { "path": "docs/api/app.md", "patch": "@@ -715,14 +715,20 @@ To set the locale, you'll want to use a command line switch at app startup, whic\n **Note:** When distributing your packaged app, you have to also ship the\n `locales` folder.\n \n-**Note:** On Windows, you have to call it after the `ready` events...
2022-09-23T18:50:46
ollama/ollama
7601f0e93e53858f09136a7e4ccf674a9b4580bd
aad3f03890b9cd015e42aef827cf5526d215b491
server: reject unexpected auth hosts (#13738) Added validation to ensure auth redirects stay on the same host as the original request. The fix is a single check in getAuthorizationToken comparing the realm URL's host against the request host. Added tests for the auth flow. Co-Authored-By: Gecko Security <188164982+ge...
[ { "path": "server/auth.go", "patch": "@@ -50,12 +50,17 @@ func (r registryChallenge) URL() (*url.URL, error) {\n \treturn redirectURL, nil\n }\n \n-func getAuthorizationToken(ctx context.Context, challenge registryChallenge) (string, error) {\n+func getAuthorizationToken(ctx context.Context, challenge regis...
2026-01-16T19:10:36
huggingface/transformers
25a91051ed7973a92b158f4fb7da1edb39b416ae
70e454c97368fcc5183066d86d37d1b493a72f8c
Fix KeyError in convert_to_native_format for dict vocab (#44452) When loading tokenizers like vesteinn/ScandiBERT whose tokenizer_config specifies XLMRobertaTokenizer (model=Unigram) but whose tokenizer.json contains a dict-type vocab, the expression vocab[0] raises KeyError because dict keys are strings, not integers...
[ { "path": "src/transformers/tokenization_utils_tokenizers.py", "patch": "@@ -155,7 +155,7 @@ def convert_to_native_format(cls, trust_remote_code=False, **kwargs):\n if isinstance(vocab, list):\n vocab = list(map(tuple, vocab)) # TODO just for now\n elif cls.m...
2026-03-19T13:46:43
facebook/react
fd87c9b9e13d06983194bc19f641a2caf2d12b50
2b417e2a5203f108ab3a5248332e5cd8dd2f8700
[patch] Bug in deriveMinimalDeps Found when enabling Forget on Webamp
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/DeriveMinimalDependencies.ts", "patch": "@@ -472,17 +472,10 @@ function addSubtreeIntersection(\n suggestions: null,\n });\n \n- otherProperties.forEach((properties) =>\n- properties.forEach((node, _) =>\n- CompilerErro...
2023-10-06T21:37:57
golang/go
a9357490919feed070e952ebc681b1a7af30aac2
58834c3ee08ea85b764c7cc3318ce7a68ea92cbd
runtime: make TestSpuriousWakeupsNeverHangSemasleep more robust This change modifies this test (which involves an arbitrary timeout) to be a little less flaky by double-checking that our subprocess program completed even if the ticker fires and we've exceeded our timeout. The logic behind this change is that the testi...
[ { "path": "src/runtime/semasleep_test.go", "patch": "@@ -91,10 +91,31 @@ func TestSpuriousWakeupsNeverHangSemasleep(t *testing.T) {\n \t// pthread_cond_timedwait_relative_np.\n \tticker := time.NewTicker(200 * time.Millisecond)\n \tdefer ticker.Stop()\n+\n+\tcheckDoneErr := func(err error) {\n+\t\tif err !=...
2025-02-11T17:56:21
electron/electron
d3572186547ec745fbd6b05fc0785bca28e38903
c69754b8e606af28b12271d53bc9456229b2b73c
docs: changed event.data to data under the message.port in docs (#35086) * docs: changed event.data to data under the message.port in docs * docs: corrected BrowserWindow wrong usage and change window.messagePort to window.electronMessagePort
[ { "path": "docs/tutorial/message-ports.md", "patch": "@@ -101,7 +101,7 @@ app.whenReady().then(async () => {\n }\n })\n \n- const secondaryWindow = BrowserWindow({\n+ const secondaryWindow = new BrowserWindow({\n show: false,\n webPreferences: {\n contextIsolation: false,\n@@ -144,7 +1...
2022-09-23T08:07:53
ollama/ollama
55d0b6e8b9498a621565c93625b7e29c96812f21
38eac40d56510f343ffa4d6f7613d4e820d14cd1
integration: fix tools_test.go for ToolCallFunctionArguments API change (#13731)
[ { "path": "integration/tools_test.go", "patch": "@@ -131,7 +131,7 @@ func TestAPIToolCalling(t *testing.T) {\n \t\t\t\t\tt.Errorf(\"unexpected tool called: got %q want %q\", lastToolCall.Function.Name, \"get_weather\")\n \t\t\t\t}\n \n-\t\t\t\tif _, ok := lastToolCall.Function.Arguments[\"location\"]; !ok {...
2026-01-16T00:08:09
huggingface/transformers
70e454c97368fcc5183066d86d37d1b493a72f8c
be6cf0848668852e3267d297211eb7e983e6c786
fix: XLNet: relative_positional_encoding computes on CPU every forward (#44782) fix: pass device to torch.arange in XLNet relative_positional_encoding
[ { "path": "src/transformers/models/xlnet/modeling_xlnet.py", "patch": "@@ -937,9 +937,9 @@ def positional_embedding(pos_seq, inv_freq, bsz=None):\n \n return pos_emb\n \n- def relative_positional_encoding(self, qlen, klen, bsz=None):\n+ def relative_positional_encoding(self, qlen, klen, bsz=No...
2026-03-19T13:16:31
golang/go
58834c3ee08ea85b764c7cc3318ce7a68ea92cbd
b574590c36b7ede1492239db2d55c35e8818c7a7
cmd/go: initialize req.Header when loading git credential Fixes #71604 Change-Id: I3d733a50b4451dfb571aba91a28387ba9e0614dc Reviewed-on: https://go-review.googlesource.com/c/go/+/647615 Reviewed-by: Michael Matloob <matloob@golang.org> Reviewed-by: Sam Thanawalla <samthanawalla@google.com> LUCI-TryBot-Result: Go LUCI...
[ { "path": "src/cmd/go/internal/auth/auth.go", "patch": "@@ -128,7 +128,8 @@ func runGoAuth(client *http.Client, res *http.Response, url string) {\n \t// If no GOAUTH command provided a credential for the given url\n \t// and an error occurred, log the error.\n \tif cfg.BuildX && url != \"\" {\n-\t\tif ok :=...
2025-02-07T11:42:26
facebook/react
2b417e2a5203f108ab3a5248332e5cd8dd2f8700
ed9ea81e4a73b02bf138508b4c4ec6acf71b9676
Playground uses new pragma parser, shows config being used The playground now uses the new pragma parser so it's guaranteed to use the right defaults and have consistent parsing with snap/sprout. In addition, we now emit a debug event from the compiler which contains pretty-printed environment config, making it ea...
[ { "path": "compiler/apps/playground/components/Editor/index.tsx", "patch": "@@ -11,6 +11,7 @@ import * as t from \"@babel/types\";\n import {\n Effect,\n Hook,\n+ parseConfigPragma,\n printHIR,\n printReactiveFunction,\n run,\n@@ -108,56 +109,6 @@ const COMMON_HOOKS: Array<[string, Hook]> = [\n ...
2023-10-05T18:06:56
vercel/next.js
5736391cf6b697cf37cb5f72354389525eb7b851
16d9f70203c4a90284c5cff057282c052376b6df
Turbopack Build: Fix metadata dynamic force-dynamic (#80167) ## What? `export const dynamic` was not being re-exported when creating the route handler wrapper so it wasn't picked up during builds, causing the tests to fail. Added the re-exports.
[ { "path": "crates/next-core/src/next_app/metadata/route.rs", "patch": "@@ -239,6 +239,8 @@ async fn dynamic_text_route_source(path: Vc<FileSystemPath>) -> Result<Vc<Box<dy\n }},\n }})\n }}\n+\n+ export * from {resource_path}\n \"#,\n resou...
2025-06-04T17:42:19
electron/electron
eb3262cd87f1602cea651f89166b0da0f2ee6e14
4ffdd284c398d3e18a71f636422eaa0cf28406da
fix: allow docking DevTools with WCO (#35754) fix: allow for docking devtools with WCO
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2424,14 +2424,6 @@ void WebContents::OpenDevTools(gin::Arguments* args) {\n !owner_window()) {\n state = \"detach\";\n }\n- bool activate = true;\n- if (args && args->Length() == 1) {\n- gin_helper::Dictionary options...
2022-09-22T08:44:27
ollama/ollama
38eac40d56510f343ffa4d6f7613d4e820d14cd1
80f3f1bc25e1ee58e0dd2a3ff8b14f332dfa4fc7
openai: tweak v1/responses to conform better (#13736) * openai: tweak v1/responses to conform better * openai: provide better error for image URLs * lint
[ { "path": "middleware/openai.go", "patch": "@@ -8,6 +8,7 @@ import (\n \t\"math/rand\"\n \t\"net/http\"\n \t\"strings\"\n+\t\"time\"\n \n \t\"github.com/gin-gonic/gin\"\n \n@@ -441,6 +442,7 @@ type ResponsesWriter struct {\n \tstream bool\n \tresponseID string\n \titemID string\n+\trequest openai...
2026-01-15T23:46:36
huggingface/transformers
be6cf0848668852e3267d297211eb7e983e6c786
e0f69d3810242b055a673a8b95f89ab20c6ca6d6
Fix annotations reader for python 3.14 in `PreTrainedModel` (#44672) Fix annotations reader for python 3.14
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1218,7 +1218,7 @@ def __init_subclass__(cls, **kwargs):\n # otherwise we derive it from the annotated `config` attribute.\n \n # defined in this particular subclass\n- child_annotation = cls.__dict__.get(\"__annotations__\"...
2026-03-19T13:15:25
facebook/react
546178f9109424f6a0176ea8702a7620c4417569
16619f106ab5ba8e6aca19d55be46cce22e4a7ff
`react-dom/server-rendering-stub`: restore experimental prefix for `useFormState` and `useFormStatus` (#27470) in #27461 the experimental prefix was added back for `useFormState` and `useFormStatus` in react-dom. However these functions are also exported from the server rendering stub too and when using the stub wit...
[ { "path": "packages/react-dom/server-rendering-stub.js", "patch": "@@ -28,3 +28,30 @@ export {\n useFormState,\n unstable_batchedUpdates,\n } from './src/server/ReactDOMServerRenderingStub';\n+\n+import type {FormStatus} from 'react-dom-bindings/src/shared/ReactDOMFormActions';\n+import {useFormStatus, ...
2023-10-05T15:53:14
golang/go
b574590c36b7ede1492239db2d55c35e8818c7a7
d9cc4944ce3f36fc8fd1c63f35c206b308a3503f
cmd/go: document -modfile and other flags for 'go tool' Mention -modfile, -C, -overlay, and -modcacherw in the 'go tool' documentation. We let a reference to 'go help build' give a pointer to more detailed information. The -modfile flag in particular is newly useful with the Go 1.24 support for user-defined tools wit...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1953,6 +1953,13 @@\n // The -n flag causes tool to print the command that would be\n // executed but not execute it.\n //\n+// The -modfile=file.mod build flag causes tool to use an alternate file\n+// instead of the go.mod in the module root directory.\n+//\...
2025-02-11T17:59:54
vercel/next.js
840a9ed4e00e5609485b76c3bc9658a9df730798
6d39c38d79eed42641c04cd7424e3e3beb4a473c
Turbopack: Fix sst filter handling and order for meta files (#80147) ### What? * fixes a bug where it crashes with `Unable to open static sorted file 00000286.sst` after a compaction which leaves a partial meta file. meta files need to be handled in reverse order as higher sequence numbers override lower ones * fix...
[ { "path": "turbopack/crates/turbo-persistence/src/db.rs", "patch": "@@ -333,7 +333,7 @@ impl TurboPersistence {\n .collect::<Result<Vec<MetaFile>>>()?;\n \n let mut sst_filter = SstFilter::new();\n- for meta_file in meta_files.iter_mut() {\n+ for meta_file in meta_files.ite...
2025-06-04T17:09:52
electron/electron
4935fd24222cf116d7fdbca88fcf7a8bcb98d83c
99f4a42d4135cf2a596abbb31782485e41734230
fix: WebAuthn Discoverable Credential (Resident Credential) (#35374) * fix: WebAuthn Discoverable Credential (Resident Credential) #33353 Enables support for Webauthn discoverable credentials (aka resident credentials). This allows users to authenticate without first having to select or type a username. To dec...
[ { "path": "filenames.gni", "patch": "@@ -515,6 +515,8 @@ filenames = {\n \"shell/browser/web_view_guest_delegate.h\",\n \"shell/browser/web_view_manager.cc\",\n \"shell/browser/web_view_manager.h\",\n+ \"shell/browser/webauthn/electron_authenticator_request_delegate.cc\",\n+ \"shell/browse...
2022-09-20T22:47:42
ollama/ollama
349d8148141b2204b52026d617d67120e03add27
c8743031e031fa0e74e08b95d24c90636ac9c222
docs: add marimo integration (#13326) * docs added * fix title * add marimo to docs.json --------- Co-authored-by: Devon Rifkin <drifkin@drifkin.net>
[ { "path": "docs/docs.json", "patch": "@@ -112,7 +112,8 @@\n \"/integrations/roo-code\",\n \"/integrations/n8n\",\n \"/integrations/xcode\",\n- \"/integrations/onyx\"\n+ \"/integrations/onyx\",\n+ \"/integrations/marimo\"\n ...
2026-01-15T01:37:38
golang/go
30f515898c9852f0529fe42b46c8b89d00e14949
b941d2b6d8bd9663abec7761de366b09a2be7445
make.bat,race.bat: simplify --dist-tool handling make.bat accepts the --dist-tool flag on multiple flag positions and also allows omitting the trailing dash. Doing so adds complexity and is not aligned with the make.bash and make.rc behavior. Remove that flexibility to simplify the code and make it more consistent. Th...
[ { "path": "src/make.bat", "patch": "@@ -101,14 +101,14 @@ call .\\env.bat\n del env.bat\r\n if x%vflag==x-v echo.\r\n \r\n-if x%1==x-dist-tool goto copydist\r\n-if x%2==x-dist-tool goto copydist\r\n-if x%3==x-dist-tool goto copydist\r\n-if x%4==x-dist-tool goto copydist\r\n-if x%1==x--dist-tool goto copydis...
2025-02-11T18:23:11
facebook/react
0fba3ecf73900a1b54ed6d3b0617462ac92d2fef
6f132439578ee11e04b41a278df51c52b0dc8563
[Fizz] Reset error component stack and fix error messages (#27456) The way we collect component stacks right now are pretty fragile. We expect that we'll call captureBoundaryErrorDetailsDev whenever an error happens. That resets lastBoundaryErrorComponentStackDev to null but if we don't, it just lingers and we do...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzStaticBrowser-test.js", "patch": "@@ -981,4 +981,149 @@ describe('ReactDOMFizzStaticBrowser', () => {\n \n expect(getVisibleChildren(container)).toEqual(<div>Hello</div>);\n });\n+\n+ // @gate enablePostpone\n+ it('errors if the replay does not...
2023-10-04T20:48:12
vercel/next.js
6d39c38d79eed42641c04cd7424e3e3beb4a473c
13b8d58a7600a74e586cec1e68dfb126bca49fbc
Add a `regions` property to the Functions Config Manifest file (#80104) <!-- 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": ".changeset/empty-paths-check.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Add `regions` to the function config manifest file", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "packages/next/src/build/index.ts", "patch": "@@ -531,6 +53...
2025-06-04T16:35:05
huggingface/transformers
e0f69d3810242b055a673a8b95f89ab20c6ca6d6
cecacd374f575ad7ffe37dcd69a98cf00b551011
[CB] Better parametrization for compile (#44578) * Stacked commits * New config * good logged and silent deletion * nits * better config * review * Update example script * Test for new flag * Better benchmarking of CB * Rebase fixes * Avoid deleting an non-existing arg * No refering non existing var * Remo...
[ { "path": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py", "patch": "@@ -6,7 +6,7 @@\n \n \n SCRIPT_LOCATION = (Path(__file__).parent.parent.parent / \"examples/pytorch/continuous_batching.py\").as_posix()\n-COMMON_ARGS = \"--log-level WARNING --seed 0\".split()\n+COMMON_ARGS = \"--log-level...
2026-03-19T11:37:05
ollama/ollama
4adb9cf4bbf21486113eb13680b8be6a08fc5d0e
74f475e7351162e3a3449d3564d61c6887a6f610
scripts: fix macOS auto-update signature verification failure (#13713) Add --norsrc flag to ditto commands when creating Ollama-darwin.zip to exclude AppleDouble resource fork files (._* files) from the archive. The mlx.metallib file has extended attributes, which causes ditto to include a ._mlx.metallib AppleDouble ...
[ { "path": "scripts/build_darwin.sh", "patch": "@@ -179,15 +179,15 @@ _build_macapp() {\n fi\n \n rm -f dist/Ollama-darwin.zip\n- ditto -c -k --keepParent dist/Ollama.app dist/Ollama-darwin.zip\n+ ditto -c -k --norsrc --keepParent dist/Ollama.app dist/Ollama-darwin.zip\n (cd dist/Ollama.app...
2026-01-14T15:48:10
golang/go
8c6fec6d25e7c83780d8b020e3e4f81051645d65
34e8541d24b5b6624ccc252125f832c1ea0bfa00
runtime: update HACKING.md with execution traces and debuglog Change-Id: Iedd3c6f292ad76f57c6c04beafd655e2e4d83043 Reviewed-on: https://go-review.googlesource.com/c/go/+/646017 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@google.com> Auto-...
[ { "path": "src/runtime/HACKING.md", "patch": "@@ -330,3 +330,69 @@ transitive calls) to prevent stack growth.\n The conversion from pointer to uintptr must appear in the argument list of any\n call to this function. This directive is used for some low-level system call\n implementations.\n+\n+Execution trac...
2025-02-01T05:51:33
facebook/react
ca237d6f0ab986e799f192224d3066f76d66b73b
44d40a077ae91bbf5e18a95b90d8a15c2ec978ca
Add back temporary `experimental_` aliases for Server Actions APIs (#27461) This adds back the `experimental_`-prefixed Server Actions APIs to the experimental builds only, so that apps that use those don't immediately break when upgrading. The APIs will log a warning to encourage people to move to the unprefixed v...
[ { "path": "packages/react-dom/index.experimental.js", "patch": "@@ -30,3 +30,30 @@ export {\n preinitModule,\n version,\n } from './src/client/ReactDOM';\n+\n+import type {FormStatus} from 'react-dom-bindings/src/shared/ReactDOMFormActions';\n+import {useFormStatus, useFormState} from './src/client/Reac...
2023-10-04T19:58:08
huggingface/transformers
cecacd374f575ad7ffe37dcd69a98cf00b551011
529504b2fa98970c6c44d3fafaeb07a39c40e7ea
Fix `KeyError` when patching mistral regex (#43376) * Avoid multiple fix_mistral_regex (KeyError) * add regression test * style * fix --------- Co-authored-by: Leonardo Emili <lemili@apple.com> Co-authored-by: vasqu <antonprogamer@gmail.com>
[ { "path": "src/transformers/tokenization_utils_tokenizers.py", "patch": "@@ -456,7 +456,7 @@ def __init__(self, *args, **kwargs):\n self._tokenizer,\n self.init_kwargs.get(\"name_or_path\", None),\n init_kwargs=self.init_kwargs,\n- fix_mistral_r...
2026-03-19T07:55:40
vercel/next.js
dcf28ec0aec1795a4891a7254602c27c8f076cd9
a9880a598b695a9bbdca0e306a10345a8f34d127
[dev-overlay] Remove indirection in app dev error boundary (#79984) Doesn't need to be put in JSX children and can directly returned from render. Allows for cleaner code separation with the future dedicated dev overlay bundle.
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/app-dev-overlay.tsx", "patch": "@@ -5,72 +5,10 @@ import {\n } from '../shared'\n import type { GlobalErrorComponent } from '../../global-error'\n \n-import { useCallback, useEffect } from 'react'\n+import { useCallback } from 'react'\n im...
2025-06-04T13:41:31
ollama/ollama
af7ea6e96e5272f7b5ccb2bf3fe9dadd92fc763d
8f1e0140e70f59cecf39df62b6fd5ce2e2572150
x/imagegen: install mlx.metallib and fix macOS rpath handling, add mlx library directories to LD_LIBRARY_PATH (#13695) - Install mlx.metallib for arm64 builds (required for Metal GPU acceleration) - Apply rpath settings to all macOS builds, not just x86_64 - Add CMAKE_BUILD_WITH_INSTALL_RPATH to avoid install_name_too...
[ { "path": "CMakeLists.txt", "patch": "@@ -48,9 +48,10 @@ if((CMAKE_OSX_ARCHITECTURES AND NOT CMAKE_OSX_ARCHITECTURES MATCHES \"arm64\")\n set(GGML_CPU_ALL_VARIANTS ON)\n endif()\n \n-if (CMAKE_OSX_ARCHITECTURES MATCHES \"x86_64\")\n+if(APPLE)\n set(CMAKE_BUILD_RPATH \"@loader_path\")\n set(CMAKE...
2026-01-13T03:03:11
golang/go
49eba8b15bcfc07eb272f23f1b6810d37e6fe342
659b895067400e1db64c57712729623970149e99
internal/trace: interpret string ID arguments for experimental events Currently one of the reasons experimental events are tricky to use is because: - There's no way to take advantage of the existing infrastructure, like strings and stacks, and - There's no way to attach arbitrary data to an event (except through ...
[ { "path": "src/cmd/trace/gen.go", "patch": "@@ -282,11 +282,11 @@ func (g *globalMetricGenerator) GlobalMetric(ctx *traceContext, ev *trace.Event)\n \tm := ev.Metric()\n \tswitch m.Name {\n \tcase \"/memory/classes/heap/objects:bytes\":\n-\t\tctx.HeapAlloc(ctx.elapsed(ev.Time()), m.Value.Uint64())\n+\t\tctx...
2025-01-28T20:54:34
huggingface/transformers
529504b2fa98970c6c44d3fafaeb07a39c40e7ea
16a5b0936dcaae6efbc03ab1a4fd98dc324bfb9e
Correct code block formatting in weightconverter.md (#44839) Fix formatting of code block in weightconverter.md
[ { "path": "docs/source/en/weightconverter.md", "patch": "@@ -66,7 +66,7 @@ model.layers.0.self_attn.k_proj.weight → model.layers.0.self_attn.k_proj.wei\n model.layers.0.mlp.gate_proj.weight → model.layers.0.mlp.gate_proj.weight\n model.layers.0.mlp.up_proj.weight → model.layers.0.mlp.up_proj.w...
2026-03-19T06:59:32
facebook/react
44d40a077ae91bbf5e18a95b90d8a15c2ec978ca
bfefb228422f7264a29b3a6b98ec95e05925e80e
Remove prefix from `formState` option (#27460) `useFormState` is now in canary.
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -173,7 +173,7 @@ app.all('/', async function (req, res, next) {\n res.set('Content-type', 'text/html');\n const {pipe} = renderToPipeableStream(React.createElement(Root), {\n bootstrapScripts: mainJSChunks,\n- experimental...
2023-10-04T19:17:37
vercel/next.js
10928dfa61fba9230a5c1f428e61ffc699bb2310
1a18884755973acb4d68ac3989971ef81e2876bb
[global-not-found] fix shared css imports not being picked (#80151)
[ { "path": "packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts", "patch": "@@ -108,6 +108,9 @@ const pluginState = getProxiedPluginState({\n injectedClientEntries: {} as Record<string, string>,\n })\n \n+const POSSIBLE_SHARED_CONVENTIONS = ['template', 'layout']\n+const STANDALONE_BUNDLE...
2025-06-04T12:54:45
ollama/ollama
8f1e0140e70f59cecf39df62b6fd5ce2e2572150
35c3c9e3c21d78dff93088f74eb8d14164adb15a
x/imagegen: fix mlx build in Dockerfile and macOS build script (#13693)
[ { "path": "Dockerfile", "patch": "@@ -161,6 +161,9 @@ ARG GOFLAGS=\"'-ldflags=-w -s'\"\n ENV CGO_ENABLED=1\n ARG CGO_CFLAGS\n ARG CGO_CXXFLAGS\n+RUN mkdir -p dist/bin\n+RUN --mount=type=cache,target=/root/.cache/go-build \\\n+ go build -tags mlx -trimpath -buildmode=pie -o dist/bin/ollama-mlx .\n \n FROM...
2026-01-12T23:52:43
electron/electron
b1d7b30ca35080212e3e2ffa8149c88cb5c96c69
d71b5e53fd9993fd32af18df0fc6b8bfbfec92ea
docs: fix wording mistake in security.md section 4 (#35682) Update security.md Under "4. Process Sandboxing", it said "For mor information on what `contextIsolation` is..." which was the previous section (copied from there). This updates it to say "For more information on what Process Sandboxing is..."
[ { "path": "docs/tutorial/security.md", "patch": "@@ -257,7 +257,7 @@ the sandbox in all renderers. Loading, reading or processing any untrusted\n content in an unsandboxed process, including the main process, is not advised.\n \n :::info\n-For more information on what `contextIsolation` is and how to enable...
2022-09-20T15:14:44
huggingface/transformers
16a5b0936dcaae6efbc03ab1a4fd98dc324bfb9e
c55f65056becad6df5f7eef7ce74ac0811fdfac6
deepseek_v2, deepseek_v3, and modernbert fix for having incorrect tokenizer class on the hub (#44801) * deepseek and modernbert * deepseek v2
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -347,13 +347,16 @@\n \"deepseek_vl\",\n \"deepseek_vl_v2\",\n \"deepseek_vl_hybrid\",\n+ \"deepseek_v2\",\n+ \"deepseek_v3\",\n \"fuyu\",\n \"hyperclovax_vlm\",\n \"internlm2\",\n \"janus\",\n \...
2026-03-18T21:21:04
facebook/react
bfefb228422f7264a29b3a6b98ec95e05925e80e
88d56b8e818d0c48eb6642303169c1fadeb99d59
Upgrade Server Actions to canary (#27459) Upgrades the stability of Server Actions from experimental to canary. - Turns on enableAsyncActions and enableFormActions - Removes "experimental_" prefix from useOptimistic, useFormStatus, and useFormState
[ { "path": "fixtures/flight-esm/src/Button.js", "patch": "@@ -1,7 +1,7 @@\n 'use client';\n \n import * as React from 'react';\n-import {experimental_useFormStatus as useFormStatus} from 'react-dom';\n+import {useFormStatus} from 'react-dom';\n import ErrorBoundary from './ErrorBoundary.js';\n \n const h = R...
2023-10-04T18:51:36
golang/go
e9eb88ae7291bf9f1b05e8e4860474c734c5448d
450f3f608d409e2b3d76af071ec726efacbdd17b
{all,clean,make,race,run}.bat: simplify error handling The bat files can use "if" + parentheses to make it easier to understand how the if-case is handled rather than the more cryptic "if" + "goto". While here, replace some "goto"s with direct "exit" calls. Change-Id: I20e1804439b5088f8f1e5cbf8676f3d58560109d Review...
[ { "path": "src/all.bat", "patch": "@@ -6,15 +6,11 @@\n \r\n setlocal\r\n \r\n-if exist make.bat goto ok\r\n-echo all.bat must be run from go\\src\r\n-exit /b 1\r\n-:ok\r\n+if not exist make.bat (\r\n+ echo all.bat must be run from go\\src\r\n+ exit /b 1\r\n+)\r\n \r\n-call .\\make.bat --no-banner || g...
2025-02-11T08:17:08
vercel/next.js
1a18884755973acb4d68ac3989971ef81e2876bb
6cbe40fb3cafdd0542ea38741e645b413da00ec8
Turbopack Build: Implement helpful error for missing sass package (#80155) ## What? Implements the same error message that we add to the webpack handling. I'm not super happy about this solution (though it matches what we do for webpack) ideally we improve the sass-loader error itself in the future but that requires ...
[ { "path": "packages/next/src/shared/lib/turbopack/utils.ts", "patch": "@@ -190,7 +190,17 @@ export function formatIssue(issue: Issue) {\n }\n \n if (description) {\n- message += renderStyledStringToErrorAnsi(description) + '\\n\\n'\n+ if (\n+ description.type === 'text' &&\n+ description...
2025-06-04T12:45:21
electron/electron
6cc69122ce298fd2025e08b891240084309370d5
76ce6d5fb40311407e0bfc9f02184322d221475f
chore: fix ambiguous reference gcc compile error (#35714)
[ { "path": "shell/browser/serial/electron_serial_delegate.cc", "patch": "@@ -66,16 +66,18 @@ device::mojom::SerialPortManager* ElectronSerialDelegate::GetPortManager(\n return GetChooserContext(frame)->GetPortManager();\n }\n \n-void ElectronSerialDelegate::AddObserver(content::RenderFrameHost* frame,\n- ...
2022-09-19T22:05:24
facebook/react
1ec1a0ceb84de690e50dfd45fe476302ea954c59
3f8831fb5c7e873993ed53a77189a22bcc7395d6
[fix] JSXElement identifiers now included in lambda capture deps --- `gatherCapturedDeps` previously did not visit JSXElements, so Forget did not read any local JSX identifiers as dependencies (in lambdas)
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -3457,78 +3457,141 @@ function gatherCapturedDeps(\n to: componentScope,\n });\n \n- function visit(path: NodePath<Expression>): void {\n- // Babel has a bug where it doesn't visit the LHS of an\n- // Assi...
2023-10-04T18:01:34
ollama/ollama
9667c2282f477fb3ba947585c5417ffbc4654a43
a937a6831763ec0c7e214c3408d29ca7be9078ca
x/imagegen: add naive TeaCache and FP8 quantization support (#13683) TeaCache: - Timestep embedding similarity caching for diffusion models - Polynomial rescaling with configurable thresholds - Reduces transformer forward passes by ~30-50% FP8 quantization: - Support for FP8 quantized models (8-bit weights with scale...
[ { "path": "api/client.go", "patch": "@@ -165,7 +165,7 @@ func (c *Client) do(ctx context.Context, method, path string, reqData, respData\n \treturn nil\n }\n \n-const maxBufferSize = 512 * format.KiloByte\n+const maxBufferSize = 8 * format.MegaByte\n \n func (c *Client) stream(ctx context.Context, method, p...
2026-01-12T21:45:22
golang/go
450f3f608d409e2b3d76af071ec726efacbdd17b
dcbdc1a2f7368ad8a9193e969cc76c7ffd2f7685
net/http/httptest: match net/http ContentLength behavior for http.NoBody Fixes #68476 Change-Id: I05122e5ec5e6b290eec93f3db444fcf1de19c030 Reviewed-on: https://go-review.googlesource.com/c/go/+/599815 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <d...
[ { "path": "src/net/http/httptest/httptest.go", "patch": "@@ -34,9 +34,9 @@ func NewRequest(method, target string, body io.Reader) *http.Request {\n //\n // An empty method means \"GET\".\n //\n-// The provided body may be nil. If the body is of type *bytes.Reader,\n-// *strings.Reader, or *bytes.Buffer, the...
2024-07-19T22:28:54
vercel/next.js
6cbe40fb3cafdd0542ea38741e645b413da00ec8
002fb28e1a3ff30373a8afe929b7406b0a590ffa
[dev-overlay] Remove unnecessary code from /pages dev error boundary (#79983) No longer needed in React 18+
[ { "path": "packages/next/src/client/components/react-dev-overlay/pages/pages-dev-overlay-error-boundary.tsx", "patch": "@@ -15,10 +15,6 @@ export class PagesDevOverlayErrorBoundary extends React.PureComponent<\n return { error }\n }\n \n- componentDidCatch(error: Error) {\n- this.setState({ error ...
2025-06-04T12:04:01
electron/electron
76ce6d5fb40311407e0bfc9f02184322d221475f
01cf5c5f993e6a8cd8a1a69abee9755824525677
fix: edge case in app.isInApplicationsFolder() (#35636) * fix: edge case in IsInApplicationsFolder * use realpath instead * lint * revert lowercasing * optimize * Update shell/browser/ui/cocoa/electron_bundle_mover.mm * lint Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/ui/cocoa/electron_bundle_mover.mm", "patch": "@@ -182,18 +182,27 @@\n return IsInApplicationsFolder([[NSBundle mainBundle] bundlePath]);\n }\n \n+NSString* resolvePath(NSString* path) {\n+ NSString* standardizedPath = [path stringByStandardizingPath];\n+ char resolved[PATH_MAX];...
2022-09-19T18:19:49
ollama/ollama
a937a6831763ec0c7e214c3408d29ca7be9078ca
2185112d8445d1e473a80f300d96865a62584c33
server: fix slow 'ollama rm' of models with many layers (#13680) RemoveLayers was calling Manifests() for each layer to check if it was shared with other models. For models with many blobs (e.g., tensor models), this caused O(N*M) manifest reads. Now loads manifests once and builds a set of in-use digests.
[ { "path": "server/manifest.go", "patch": "@@ -47,16 +47,40 @@ func (m *Manifest) Remove() error {\n }\n \n func (m *Manifest) RemoveLayers() error {\n-\tfor _, layer := range append(m.Layers, m.Config) {\n-\t\tif layer.Digest != \"\" {\n-\t\t\tif err := layer.Remove(); errors.Is(err, os.ErrNotExist) {\n-\t\...
2026-01-12T21:17:48
facebook/react
3f8831fb5c7e873993ed53a77189a22bcc7395d6
05d620521b4f628312020dec50eb5f36d085b32d
[snap][QoL] Pragma for implicit debug mode --- Implements popular feature request ✨ per feedback from a majority of snap users. **Add `@debug` to the first line of your `testfilter.txt` file to opt into implicit debug mode**, in which debug logging is enabled anytime filter mode is on + only one fixture file is...
[ { "path": "compiler/packages/fixture-test-utils/src/fixture-utils.ts", "patch": "@@ -1,16 +1,18 @@\n import fs from \"fs/promises\";\n import glob from \"glob\";\n-import invariant from \"invariant\";\n import path from \"path\";\n import { FILTER_PATH, FIXTURES_PATH } from \"./constants\";\n \n+const KIND_...
2023-10-04T18:01:33
golang/go
dcbdc1a2f7368ad8a9193e969cc76c7ffd2f7685
887d9ef6101c6efeef00b0c7c80e634ff983fdcc
cmd/go/internal/modload: don't set GIT_SSH_COMMAND Allows git core.sshcommand to take effect when set by the user. This was originally added to work around an issue in OpenSSH < 7.3 (2016), see https://go.dev/issue/13453 . A fixed version of OpenSSH should be widely available enough that it is no longer necessary Fix...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -452,23 +452,6 @@ func Init() {\n \t\tos.Setenv(\"GIT_TERMINAL_PROMPT\", \"0\")\n \t}\n \n-\t// Disable any ssh connection pooling by Git.\n-\t// If a Git subprocess forks a child into the background to cache a new connection,\n-\t// that child k...
2025-02-09T13:32:27
huggingface/transformers
c55f65056becad6df5f7eef7ce74ac0811fdfac6
21950930a657cdc446188d38b6979b90513bab41
[Model] Add PP-OCRv5_server_rec and PP-OCRv5_mobile_rec models Support (#44808) * init * fix * add image processor test * add mobile_rec * fix * fix * fix code style * add mobile_rec * fix * fix toctree * update * cleanup inits and docs etc * dang * make separate auto model for text recognition --------...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1276,8 +1276,12 @@\n title: PP-DocLayoutV3\n - local: model_doc/pp_ocrv5_mobile_det\n title: PP-OCRv5_mobile_det\n+ - local: model_doc/pp_ocrv5_mobile_rec\n+ title: PP-OCRv5_mobile_rec\n - local: model_doc/pp_ocrv...
2026-03-18T20:11:28
vercel/next.js
4ab7cacf0445664a0d391a0426043b26f3036d66
6f76e91dbc137a55f24a0845637ea575226aee59
Turbopack: Improve errors when opening SST files (#80106) ### What? add more context to error messages for database failures
[ { "path": "turbopack/crates/turbo-persistence/src/db.rs", "patch": "@@ -652,7 +652,8 @@ impl TurboPersistence {\n max_coverage,\n max_merge_sequence,\n max_merge_size,\n- )?;\n+ )\n+ .context(\"Failed to compact database\")?;\n...
2025-06-04T08:13:07
electron/electron
7d3f22dd32365d5432583d936fa4c7f3d480ef45
fa3cd1747556b66a3e714f99e988e47334187e44
fix: uv_os_gethostname failing on Windows 7 (libuv patch regression) (#35702) Co-authored-by: Milan Burda <miburda@microsoft.com>
[ { "path": "patches/node/fix_crash_caused_by_gethostnamew_on_windows_7.patch", "patch": "@@ -6,7 +6,7 @@ Subject: fix: crash caused by GetHostNameW on Windows 7\n Backported from https://github.com/libuv/libuv/pull/3285.\n \n diff --git a/deps/uv/src/win/util.c b/deps/uv/src/win/util.c\n-index 33e874ac442f88...
2022-09-16T05:33:01
ollama/ollama
361d6c16c23b60f84eb1d2134914610c0ae5836b
7e2496e88e916f8a4f08b21b3f2c472258fed629
x/imagegen/transfer: fix timeout and progress reporting (#13679) Removes 5-minute HTTP client timeout that caused "context deadline exceeded" errors on large file downloads. Stall detection (10s) already handles unresponsive connections. Fixes progress bar total going down on resume by calculating total from all blob...
[ { "path": "x/imagegen/transfer/download.go", "patch": "@@ -45,24 +45,33 @@ func download(ctx context.Context, opts DownloadOptions) error {\n \t\treturn nil\n \t}\n \n-\t// Filter existing\n-\tvar blobs []Blob\n+\t// Calculate total from all blobs (for accurate progress reporting on resume)\n \tvar total in...
2026-01-11T23:33:53
facebook/react
88d56b8e818d0c48eb6642303169c1fadeb99d59
bd6891742c606a4b8d6ce53760218c6ab3784b38
Warn if optimistic state is updated outside of a transition (#27454) ### Based on #27453 If optimistic state is updated, and there's no startTransition on the stack, there are two likely scenarios. One possibility is that the optimistic update is triggered by a regular event handler (e.g. `onSubmit`) instead...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -143,6 +143,7 @@ import type {BatchConfigTransition} from './ReactFiberTracingMarkerComponent';\n import {\n requestAsyncActionContext,\n requestSyncActionContext,\n+ peekEntangledActionLane,\n } from './ReactFiberAsyncAction';\...
2023-10-04T14:57:55
golang/go
887d9ef6101c6efeef00b0c7c80e634ff983fdcc
7c1a4134b4191e87ae05d07343329e83aada6132
internal/trace: increment sync counter before final Sync on error CL 648195 was supposed to have fixed #71615, but it didn't include an update to r.syncs. I can confirm this CL fixes the issue even when running the test many times in a row. Fixes #71615. Change-Id: I97db3d639dc5bc8648a191696f90b0e5087307c8 Reviewed-...
[ { "path": "src/internal/trace/reader.go", "patch": "@@ -154,6 +154,7 @@ func (r *Reader) ReadEvent() (e Event, err error) {\n \t\t// Read the next generation.\n \t\tr.gen, r.spill, r.spillErr = readGeneration(r.r, r.spill)\n \t\tif r.gen == nil {\n+\t\t\tr.syncs++\n \t\t\treturn syncEvent(nil, r.lastTs, r.s...
2025-02-10T23:54:56
vercel/next.js
6f76e91dbc137a55f24a0845637ea575226aee59
5a4a08fdce91a038f2ed3a70568d3ed040403150
[dev-overlay] Remove unused `onError` in /pages (#79982) Every implementation is a no-op and we don't have any plans. Can use the same pattern as App Router when we need it.
[ { "path": "packages/next/src/client/components/react-dev-overlay/pages/hooks.ts", "patch": "@@ -27,16 +27,8 @@ export const usePagesDevOverlay = () => {\n }\n }, [dispatch])\n \n- const onComponentError = React.useCallback(\n- (_error: Error, _componentStack: string | null) => {\n- // TODO: s...
2025-06-04T08:10:31
huggingface/transformers
21950930a657cdc446188d38b6979b90513bab41
2513237cbee84bae381c56c672b95b0a221ba51b
Add `Jina-Embeddings-V3` Model (#44251) * Added Model Documentation. * Added conversion_mapping weight renamings * Added Auto Mappings. * init * Modular jina_embeddings_v3 * modular -> modeling + config * __init__.py * Created folder for tests * Added documentation for the jina-embeddings-v3 Model * Tests * ...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -632,6 +632,8 @@\n title: Jamba\n - local: model_doc/jetmoe\n title: JetMoe\n+ - local: model_doc/jina_embeddings_v3\n+ title: jina_embeddings_v3\n - local: model_doc/led\n title: LED\n - local: model...
2026-03-18T19:05:49
ollama/ollama
7e2496e88e916f8a4f08b21b3f2c472258fed629
5b84e29882021dd80ecd858a675f80540d9b0627
Fix cmake install command in README (#13678) Update installation command for MLX component in README.
[ { "path": "x/README.md", "patch": "@@ -9,7 +9,7 @@ Support is currently limited to MacOS and Linux with CUDA GPUs. We're looking t\n ```\n cmake --preset MLX\n cmake --build --preset MLX --parallel\n-cmake --install --component MLX\n+cmake --install build --component MLX\n go build -tags mlx .\n ```\n ", ...
2026-01-11T21:16:42
electron/electron
f25c87dc7024397526bbe221efdaa0260392c243
5cf15cdab7f3d055a225dbc50c53d62614250468
feat: allow custom v8 snapshots to be used in the main process and the default snapshot in the renderer process (#35266) * Updates to allow for using a custom v8 snapshot file name * Allow using a custom v8 snapshot file name * Fix up patch due to merge * Use fuse to set up custom v8 snapshot file in browser ...
[ { "path": "build/fuses/fuses.json5", "patch": "@@ -7,5 +7,6 @@\n \"node_options\": \"1\",\n \"node_cli_inspect\": \"1\",\n \"embedded_asar_integrity_validation\": \"0\",\n- \"only_load_app_from_asar\": \"0\"\n+ \"only_load_app_from_asar\": \"0\",\n+ \"load_browser_process_specific_v8_snapshot\": \"...
2022-09-15T20:21:16
golang/go
2e8973aeea66f01d9770e1d307330a2d188b27cc
ea54d8a0efc22c092c1f714cb3c6f12f429c1459
crypto/internal/fips140test: add feedback KDF ACVP tests Adds ACVP test coverage for the SP 800-108r1 KDF feedback mode algorithm based on the NIST spec: https://pages.nist.gov/ACVP/draft-celi-acvp-kbkdf.html The HKDF-based implementation in our FIPS module fixes some parameters, requiring tailoring of the adverti...
[ { "path": "src/crypto/internal/fips140test/acvp_capabilities.json", "patch": "@@ -69,7 +69,7 @@\n \n {\"algorithm\":\"KAS-ECC-SSC\",\"revision\":\"Sp800-56Ar3\",\"scheme\":{\"ephemeralUnified\":{\"kasRole\":[\"initiator\",\"responder\"]},\"staticUnified\":{\"kasRole\":[\"initiator\",\"responder\"]}},\"dom...
2025-01-03T19:30:02
facebook/react
85c2b519b54269811002d26f4f711809ef68f123
db69f95e4876ec3c24117f58d55cbb4f315b9fa7
Fix: Optimistic update does not get reset (#27453) I found a bug where if an optimistic update causes a component to rerender, and there are no other state updates during that render, React bails out without applying the update. Whenever a hook detects a change, we must mark the component as dirty to prevent a b...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -1817,9 +1817,9 @@ function updateOptimisticImpl<S, A>(\n // as an argument. It's called a passthrough because if there are no pending\n // updates, it will be returned as-is.\n //\n- // Reset the base state and memoized state...
2023-10-03T19:01:40
vercel/next.js
5a4a08fdce91a038f2ed3a70568d3ed040403150
1a42db2b21522ce7d0b3536a9a7edbf6b4522a0c
[dynamicIO] prioritize preprocessing RSC rows when prerendering (#80125) When prerendering with dynamicIO we take advantage of a few things about microtask behavior to ensure that anything prerenderable in RSC is included in the HTML prerender. We found however that with large enough RSC payloads certain things that s...
[ { "path": "packages/next/errors.json", "patch": "@@ -692,5 +692,6 @@\n \"691\": \"Accessed fallback \\\\`params\\\\` during prerendering.\",\n \"692\": \"Expected clientReferenceManifest to be defined.\",\n \"693\": \"%s must not be used within a client component. Next.js should be preventing %s from ...
2025-06-04T05:00:27
huggingface/transformers
2513237cbee84bae381c56c672b95b0a221ba51b
981ca7bc26b0d5a5cf4042f0158f0caafe2e4726
feat(ci): added a network debug report (#44636) * feat(ci): added a network debug report * xdist-aware for parallel runs * fix fmt * moved the hooks to tests/utils/test_network_logging.py * forgot to add the new file * use plugin approach * rename env variables * narrow public API * fix the env name in circlec...
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -30,6 +30,7 @@\n # will be adjust in `CircleCIJob.to_dict`.\n \"RUN_FLAKY\": True,\n \"DISABLE_SAFETENSORS_CONVERSION\": True,\n+ \"NETWORK_DEBUG_REPORT\": True,\n }\n # Disable the use of {\"s\": None} as the output is way too lon...
2026-03-18T18:34:50
ollama/ollama
5b84e29882021dd80ecd858a675f80540d9b0627
7cc2a653f2634389403b4af4b07fc5c801a81604
docs: fix troubleshooting page (#13674) Updated the link in the log output description to point to the correct troubleshooting guide format.
[ { "path": ".github/ISSUE_TEMPLATE/10_bug_report.yml", "patch": "@@ -13,7 +13,7 @@ body:\n id: logs\n attributes:\n label: Relevant log output\n- description: Please copy and paste any relevant log output. See [Troubleshooting Guide](https://github.com/ollama/ollama/blob/main/docs/troubles...
2026-01-11T08:58:07
electron/electron
5cf15cdab7f3d055a225dbc50c53d62614250468
532162d2b5b0e05c1bca3d08e30c4e2b9387ac04
build: fix building with enable_basic_printing false (#35687) Co-authored-by: Milan Burda <miburda@microsoft.com>
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -144,6 +144,10 @@\n #include \"shell/browser/osr/osr_web_contents_view.h\"\n #endif\n \n+#if BUILDFLAG(IS_WIN)\n+#include \"shell/browser/native_window_views.h\"\n+#endif\n+\n #if !BUILDFLAG(IS_MAC)\n #include \"ui/aura/window.h\"\n #e...
2022-09-15T17:29:10
golang/go
ea54d8a0efc22c092c1f714cb3c6f12f429c1459
0c94c5fcae909de059ff5c9273e2839e0d5742bf
crypto/internal/fips140test: add RSA ACVP tests Adds ACVP test coverage for the RSA algorithm based on the NIST spec: https://pages.nist.gov/ACVP/draft-celi-acvp-rsa.html Includes coverage for keyGen, sigGen and sigVer across a variety of modulus sizes. For sigGen and sigVer both PKCS1v1.5 and PSS are supported wit...
[ { "path": "src/crypto/internal/fips140test/acvp_capabilities.json", "patch": "@@ -69,5 +69,9 @@\n \n {\"algorithm\":\"KAS-ECC-SSC\",\"revision\":\"Sp800-56Ar3\",\"scheme\":{\"ephemeralUnified\":{\"kasRole\":[\"initiator\",\"responder\"]},\"staticUnified\":{\"kasRole\":[\"initiator\",\"responder\"]}},\"dom...
2025-01-10T16:10:12
vercel/next.js
1a42db2b21522ce7d0b3536a9a7edbf6b4522a0c
4e110ef3af176385d669f1a886eb46f1d169bd87
fix(turbo-persistence): Atomically mark old versioned directories for deletion before deleting them (#80082) This uses a trick similar to what I did in https://app.graphite.dev/github/pr/vercel/next.js/79425 to mark the directory for deletion using an atomic operation (a directory rename in this case) before deleting ...
[ { "path": "Cargo.lock", "patch": "@@ -2308,12 +2308,12 @@ dependencies = [\n \n [[package]]\n name = \"errno\"\n-version = \"0.3.8\"\n+version = \"0.3.12\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245\"\n...
2025-06-04T02:13:51
huggingface/transformers
d00640b6e60679c117bc8530a25bb917b08c8573
24a4dc22b986a35fa5920bb080fddea49f4299d3
Fix unexpected `position_ids` keys when loading OwlViT models (#44508) * Fix unexpected `position_ids` keys when loading OwlViT models Older OwlViT checkpoints saved `position_ids` as buffers in the text and vision embedding modules. These tensors are simple integer ranges and are now recomputed dynamically during in...
[ { "path": "src/transformers/models/owlv2/modeling_owlv2.py", "patch": "@@ -539,6 +539,10 @@ class Owlv2PreTrainedModel(PreTrainedModel):\n \"hidden_states\": Owlv2EncoderLayer,\n \"attentions\": Owlv2Attention,\n }\n+ _keys_to_ignore_on_load_unexpected = [\n+ r\".*text_model\\....
2026-03-18T16:27:02
golang/go
0c94c5fcae909de059ff5c9273e2839e0d5742bf
0bc57a3e7f941f6a1aa32e0b0f708a1e02aa842e
crypto/internal/fips140test: add counter KDF ACVP tests Adds ACVP test coverage for the SP 800-108r1 KDF counter mode algorithm based on the NIST spec: https://pages.nist.gov/ACVP/draft-celi-acvp-kbkdf.html The implementation in our FIPS module fixes some parameters, requiring tailoring of the advertised capabilit...
[ { "path": "src/crypto/internal/fips140test/acvp_capabilities.json", "patch": "@@ -67,5 +67,7 @@\n {\"algorithm\":\"TLS-v1.3\",\"mode\":\"KDF\",\"revision\":\"RFC8446\",\"hmacAlg\":[\"SHA2-256\",\"SHA2-384\"],\"runningMode\":[\"DHE\",\"PSK\",\"PSK-DHE\"]},\n {\"algorithm\":\"kdf-components\",\"mode\":\"s...
2024-12-19T17:45:57
electron/electron
532162d2b5b0e05c1bca3d08e30c4e2b9387ac04
30bdede09fbb74e652f6884942cdeb739d24e6c1
fix: EventEmitter is missing properties in sandbox preload script. (#35522)
[ { "path": "package.json", "patch": "@@ -45,6 +45,7 @@\n \"eslint-plugin-node\": \"^11.1.0\",\n \"eslint-plugin-standard\": \"^4.0.1\",\n \"eslint-plugin-typescript\": \"^0.14.0\",\n+ \"events\": \"^3.2.0\",\n \"express\": \"^4.16.4\",\n \"folder-hash\": \"^2.1.1\",\n \"fs-extra\":...
2022-09-15T16:33:08
huggingface/transformers
24a4dc22b986a35fa5920bb080fddea49f4299d3
b49249811a8dd483e52587b4349073e6317cea1b
Update more modular examples (#44834) fix
[ { "path": "examples/modular-transformers/configuration_new_model.py", "patch": "@@ -45,7 +45,6 @@ class NewModelConfig(PreTrainedConfig):\n \"layers\": ([\"hidden_states\", \"attention_mask\"], [\"hidden_states\"]),\n \"norm\": ([\"hidden_states\"], [\"hidden_states\"]),\n }\n-\n voc...
2026-03-18T17:11:51
vercel/next.js
4e110ef3af176385d669f1a886eb46f1d169bd87
b981ac58e11714d3ad4e7253ac5f41cf2535bcc2
[turbopack] Eliminate many calls to `into` and from and cell involving RcStr (#80076) Adopt the `rcstr!` macro in turbopack Instead of `"foo".into()` call `rcstr!("foo")` while being slightly more annoying to type the macro approach is more readabie and faster as it can leverage constant folding for small strings and...
[ { "path": "Cargo.lock", "patch": "@@ -10180,6 +10180,7 @@ dependencies = [\n \"rustc-hash 2.1.1\",\n \"serde\",\n \"serde_with\",\n+ \"turbo-rcstr\",\n \"turbo-tasks\",\n \"turbo-tasks-build\",\n \"turbo-tasks-fs\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path...
2025-06-04T02:10:05
golang/go
283296195b7a06239310871a4321bd649a078924
ee8db080c8ca99bae0288f4cf19110cdfb179e35
internal/trace: emit a Sync event even if the next generation is broken Since CL 644215 each Sync event now represents the coming generation, with a final Sync event emitted even when there's nothing ahead. This change however failed to emit a Sync event at the end of a completely valid generation when the next genera...
[ { "path": "src/internal/trace/reader.go", "patch": "@@ -152,12 +152,10 @@ func (r *Reader) ReadEvent() (e Event, err error) {\n \t\t\treturn syncEvent(nil, r.lastTs, r.syncs), nil\n \t\t}\n \t\t// Read the next generation.\n-\t\tvar err error\n-\t\tr.gen, r.spill, err = readGeneration(r.r, r.spill)\n+\t\tr....
2025-02-10T20:10:22
electron/electron
c847229a7ef10e94f9ebf62984e1445c97ffc087
62502b893706f5ddc7c577256c0e298d9aeaf22d
docs: Markdown linting and typo (#35568) * Fix reference definitions should be needed * typo * typo * typo and style * Fix reference definitions should be needed * Fix typo * restore to previous
[ { "path": "docs/experimental.md", "patch": "@@ -20,4 +20,4 @@ happen at an API WG meeting. Things to consider when discussing / nominating:\n * During that time no major bugs / issues should have been caused by the adoption of this feature\n * The API is stable enough and hasn't been heavily impacted by Ch...
2022-09-13T20:49:11
ollama/ollama
33ee7168ba1e16c813b52dc2c9417efa1e2e9f20
34d0c55ea57e24d04b57e792f91a91eaa18ad9ce
Add experimental MLX backend and engine with imagegen support (#13648) * WIP - MLX backend with gemma3 * MLX: add cmake and go tag build toggles To build the new MLX backend code: cmake --preset MLX cmake --build --preset MLX --parallel cmake --install build --component MLX go build -tags mlx . Note: the ma...
[ { "path": "CMakeLists.txt", "patch": "@@ -2,6 +2,22 @@ cmake_minimum_required(VERSION 3.21)\n \n project(Ollama C CXX)\n \n+# Handle cross-compilation on macOS: when CMAKE_OSX_ARCHITECTURES is set to a\n+# single architecture different from the host, override CMAKE_SYSTEM_PROCESSOR\n+# to match. This is nec...
2026-01-09T00:18:59
vercel/next.js
035a12ea8e218a916aedc58f975384f7a6105861
33648de7f41f8822df0e9482a5ae0414c2681b2f
[dynamicIO] Document client component remediations for sync IO (#79787) When you use sync IO in the client in a way that needs to be fixed we currently still just provide you with the explanation for server components. The fixes when sync IO happens in the client are not the same as when they happen in a server compon...
[ { "path": "errors/next-prerender-crypto-client.mdx", "patch": "@@ -0,0 +1,149 @@\n+---\n+title: Cannot access `crypto.getRandomValue()`, `crypto.randomUUID()`, or another web or node crypto API that generates random values synchronously from a Client Component without a fallback UI defined\n+---\n+\n+## Why...
2025-06-03T23:44:51
facebook/react
b3d5e926675b159e55054553f108667311a47f96
216696dd889d258b6bfe0c380dd55454dece212e
Support/validate hooks called as methods Hooks can be called via method call syntax, eg `Foo.useBar(sathya)`. This PR teaches the compiler about this form of hooks for things like flattening scopes with hooks, validating conditional hooks, etc. Note that we still disallow calls on the React namespace, so things l...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts", "patch": "@@ -21,8 +21,8 @@ import {\n Effect,\n FunctionType,\n IdentifierId,\n- ObjectType,\n PolyType,\n+ Type,\n ValueKind,\n makeBlockId,\n makeIdentifierId,\n@@ -348,11 +348,7 @@ export class Environment {\...
2023-10-03T15:47:05
golang/go
072eea9b3b8e3c871707b5661948edd4090fc56a
c8664ced4ef61456a98acb9f910b1646ae81e3b5
cmd/compile: avoid ifaceeq call if we know the interface is direct We can just use == if the interface is direct. Fixes #70738 Change-Id: Ia9a644791a370fec969c04c42d28a9b58f16911f Reviewed-on: https://go-review.googlesource.com/c/go/+/635435 Auto-Submit: Keith Randall <khr@golang.org> Reviewed-by: Cuong Manh Le <cuo...
[ { "path": "src/cmd/compile/internal/reflectdata/reflect.go", "patch": "@@ -592,11 +592,21 @@ func TypePtrAt(pos src.XPos, t *types.Type) *ir.AddrExpr {\n // it may sometimes, but not always, be a type that can't implement the specified\n // interface.\n func ITabLsym(typ, iface *types.Type) *obj.LSym {\n+\t...
2024-12-09T20:55:33
electron/electron
62502b893706f5ddc7c577256c0e298d9aeaf22d
12a7d7eea52409ce02af6d5f51f8208f483f24d2
fix: allow maximizing when window enters tablet mode with WCO (#35617) * fix: Backport CL 3753528 for WCO * Update comment * Update shell/browser/ui/views/win_caption_button_container.cc Co-authored-by: Robo <hop2deep@gmail.com> Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -159,10 +159,11 @@ void WinCaptionButtonContainer::UpdateButtons() {\n const bool is_touch = ui::TouchUiController::Get()->touch_ui();\n restore_button_->SetEnabled(!is_touch);\n \n- // The maximize button should only be e...
2022-09-13T20:41:23
huggingface/transformers
b49249811a8dd483e52587b4349073e6317cea1b
4ec84a022d2ba1efb2cbbdc9eb415e4190113d22
Fix and re-run modular converter on examples (#44833) * fix and rerun modular * fix * fix
[ { "path": "examples/modular-transformers/configuration_duplicated_method.py", "patch": "@@ -5,79 +5,18 @@\n # modular_duplicated_method.py file directly. One of our CI enforces this.\n # 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨�...
2026-03-18T17:00:41
ollama/ollama
626af2d80973270c4d59b8df7153ac47ad67ed7b
76912c062aaa61652f50532fd74273e76b4979f3
template: fix args-as-json rendering (#13636) In #13525, I accidentally broke templates' ability to automatically render tool call function arguments as JSON. We do need these to be proper maps because we need templates to be able to call range, which can't be done on custom types.
[ { "path": "template/template.go", "patch": "@@ -381,6 +381,28 @@ func (t templateTools) String() string {\n \treturn string(bts)\n }\n \n+// templateArgs is a map type with JSON string output for templates.\n+type templateArgs map[string]any\n+\n+func (t templateArgs) String() string {\n+\tif t == nil {\n+\...
2026-01-07T02:33:57
vercel/next.js
a74a58721a8f881ae463aa35ac64e734b53aa85f
a9b5f9b64adbc425038f6eb3631de250346332c2
fix React 18 test failures (#80119) Fixes failing assertions related to the forked React 18 tests. [x-ref](https://github.com/vercel/next.js/actions/runs/15417191195/job/43385564776#step:34:533)
[ { "path": "test/development/acceptance/ReactRefreshLogBox.test.ts", "patch": "@@ -267,7 +267,7 @@ describe('ReactRefreshLogBox', () => {\n `export default function FunctionDefault() { throw new Error('no'); }`\n )\n \n- if (isReact18) {\n+ if (isReact18 && isTurbopack) {\n await expect...
2025-06-03T23:00:18
facebook/react
41cb3c722ee764ba5eeb4b4bf4556983cd5c57db
4779fa0f8101233a90e1959d80b000d54fa25436
Fix duplicate declaration from MergeConsecutiveScopes This is a distilled version of the duplicate declaration @mofeiZ and I saw when trying to sync latest Forget internally, plus a fix to avoid the duplicate instruction.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/MergeConsecutiveScopes.ts", "patch": "@@ -108,6 +108,9 @@ class Transform extends ReactiveFunctionTransform<void> {\n // The updated set of instructions for the block. Stays null until\n // we make changes (ie merge scopes)\n ...
2023-10-02T23:40:33
electron/electron
12a7d7eea52409ce02af6d5f51f8208f483f24d2
9f97c3e50a11b364f02f57209854bb4000ac1136
fix: remove extra dot in extension (#35618)
[ { "path": "shell/browser/electron_download_manager_delegate.cc", "patch": "@@ -99,14 +99,14 @@ bool GetRegistryDescriptionFromExtension(const std::string& file_ext,\n // Set up a filter for a Save/Open dialog, |ext_desc| as the text descriptions\n // of the |file_ext| types (optional), and (optionally) the ...
2022-09-13T18:47:04
golang/go
c8664ced4ef61456a98acb9f910b1646ae81e3b5
3105e3dca7be281cb12ff5cc88349c26827edfd0
cmd/compile/internal/gc: handle errors from *bio.Writer The error is stored internally in *bio.Writer, more specifically in *bufio.Writer and the current code does not handle it, ignoring errors silently. Change-Id: Iefa9bf7ddabb3c4fc03377e676a8098dcad9be6d GitHub-Last-Rev: a5d36223312773039c37bb1c52fffc96fff04fba Gi...
[ { "path": "src/cmd/compile/internal/gc/export.go", "patch": "@@ -47,5 +47,7 @@ func dumpasmhdr() {\n \t\t}\n \t}\n \n-\tb.Close()\n+\tif err := b.Close(); err != nil {\n+\t\tbase.Fatalf(\"%v\", err)\n+\t}\n }", "additions": 3, "deletions": 1, "language": "Go" }, { "path": "src/cmd/compil...
2025-02-08T13:59:18
huggingface/transformers
779cd2d6923c9d264d46136e90c58f8bafade6ab
c87deb21b9a4c466291de154ff0099aaf8014439
Fix loading issue in Sam3 (#44831) fix loading issue
[ { "path": "src/transformers/models/sam3_tracker_video/modeling_sam3_tracker_video.py", "patch": "@@ -683,7 +683,7 @@ class Sam3TrackerVideoSegmentationOutput(ModelOutput):\n @auto_docstring\n class Sam3TrackerVideoPreTrainedModel(PreTrainedModel):\n config_class = Sam3TrackerVideoConfig\n- base_model...
2026-03-18T15:36:01
ollama/ollama
6c3faafed27a1b7c3b0b4261f97fa1f82f51408e
e51dead6363e941b480f5bf1270254db7e175083
olmo3: fix flaky test (#13629) I introduced this in <https://github.com/ollama/ollama/pull/13525>
[ { "path": "model/renderers/olmo3_test.go", "patch": "@@ -227,9 +227,9 @@ func TestOlmo3Renderer(t *testing.T) {\n \t\t\t\t\t\t\tID: \"call_1\",\n \t\t\t\t\t\t\tFunction: api.ToolCallFunction{\n \t\t\t\t\t\t\t\tName: \"book_flight\",\n-\t\t\t\t\t\t\t\tArguments: testArgs(map[string]any{\n-\t\t\t\t\t\t\t\t\t\...
2026-01-06T06:37:20
vercel/next.js
a9b5f9b64adbc425038f6eb3631de250346332c2
5325afa65adf2497fe78394d66195fb9cbd519cd
chore(turbopack): Fix building local crates with `--all-features` (#80117) This is a prerequisite for using https://github.com/boshen/cargo-shear, which uses `--all-features`. This also avoids some noise in Rust Analyzer, which also uses `--all-features`.
[ { "path": "turbopack/crates/turbo-persistence/src/static_sorted_file.rs", "patch": "@@ -344,7 +344,7 @@ impl StaticSortedFile {\n bail!(\n \"Corrupted file seq:{} block:{} > number of blocks {} (block_offsets: {:x}, \\\n blocks: {:x})\",\n- self.se...
2025-06-03T21:48:57
golang/go
3105e3dca7be281cb12ff5cc88349c26827edfd0
7715ca32fcaad84059752c944f40768374796651
cmd/go/internal/work: allow a bunch of loong64-specific flags Recognize and allow all LoongArch-specific CFLAGS as standardized in the LoongArch Toolchain Conventions v1.1, and implemented in current versions of GCC and Clang, to enable advanced cgo use cases on loong64. These flags are also allowed for linker invocat...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -96,17 +96,21 @@ var validCompilerFlags = []*lazyregexp.Regexp{\n \tre(`-g([^@\\-].*)?`),\n \tre(`-m32`),\n \tre(`-m64`),\n-\tre(`-m(abi|arch|cpu|fpu|tune)=([^@\\-].*)`),\n+\tre(`-m(abi|arch|cpu|fpu|simd|tls-dialect|tune)=([^@\\-].*)`),\n \tre(`...
2025-02-09T10:57:49
electron/electron
200153da8e30bad1ffee3fefad03b1fadd6f9a74
71ba841f0af07a341ba3d34030f240cba5582bc0
docs: fix typescript error in code samples (#35641) Fixed typescript error
[ { "path": "docs/fiddles/features/web-serial/main.js", "patch": "@@ -33,12 +33,16 @@ function createWindow () {\n if (permission === 'serial' && details.securityOrigin === 'file:///') {\n return true\n }\n+ \n+ return false\n })\n \n mainWindow.webContents.session.setDevicePermissionH...
2022-09-13T16:38:06
facebook/react
e54e2e6ee4a74da6ead96a04e200014c926ecc19
e49a62c15d761ae7652e58e405a30dd2f8bd82be
Distinguish JSXText/StringLiteral during codegen Fixes an issue with incorrect spacing where spaces were getting dropped, despite an explicit `{" "}` in the input. The issue is that we didn't maintain JSXText all the way through compilation. BuildHIR distinguishes string literals (such as the above, inside an expr...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/PrintHIR.ts", "patch": "@@ -335,7 +335,10 @@ export function printInstructionValue(instrValue: ReactiveValue): string {\n )}(${instrValue.args.map((arg) => printPattern(arg)).join(\", \")})`;\n break;\n }\n- case \"JSXText\":\...
2023-10-02T21:58:05
huggingface/transformers
c87deb21b9a4c466291de154ff0099aaf8014439
aa57e1cd2fd0ede5ffbc70db3f193943b8f3e720
feat(integration): Add KubeflowCallback to enable automatic progress … (#44487) * feat(integration): Add KubeflowCallback to enable automatic progress and metrics reporting for training jobs running on Kubeflow Trainer. Signed-off-by: abhijeet-dhumal <abhijeetdhumal652@gmail.com> * fix: make KubeflowCallback self-co...
[ { "path": "docs/source/en/main_classes/callback.md", "patch": "@@ -67,6 +67,8 @@ Here is the list of the available [`TrainerCallback`] in the library:\n \n [[autodoc]] integrations.FlyteCallback\n \n+[[autodoc]] integrations.KubeflowCallback\n+\n [[autodoc]] integrations.DVCLiveCallback\n - setup\n ", ...
2026-03-18T14:33:24
ollama/ollama
d087e46bd193b1101cef13e28841185a465a077f
37f6f3af24ad567e2160f79545f1a10a207467a2
docs/capabilities/vision: fix curl related code snippet (#13615)
[ { "path": "docs/capabilities/vision.mdx", "patch": "@@ -36,7 +36,6 @@ Provide an `images` array. SDKs accept file paths, URLs or raw bytes while the R\n }],\n \"stream\": false\n }'\n- \"\n ```\n </Tab>\n <Tab title=\"Python\">", "additions": 0, "deletions": 1, "la...
2026-01-03T22:27:46
vercel/next.js
0a87d7524624e73ae2adc120d87fba4f4fdf98c0
69765f4d83c724a80cd7cc379ec44be82619b550
[dev-overlay] Inject `getSquashedHydrationErrorDetails` implementation (#80046) Same as with `get*Stack` implementation
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/app-dev-overlay.tsx", "patch": "@@ -72,6 +72,11 @@ function ReplaySsrOnlyErrors({\n return null\n }\n \n+function getSquashedHydrationErrorDetails() {\n+ // We don't squash hydration errors in the App Router.\n+ return null\n+}\n+\n ex...
2025-06-03T18:44:12
electron/electron
ef463b39be2d9f5a536730de57e8827a794f38cf
6ec4c7e563c4bf59abb684e593bc6c0e0ee921c6
docs: Use inline image link in faq.md (#35413) * Use absolute URL in faq.md image link The relative link is rendered relative to the host domain, which works fine when viewing it on Github, but since you also use the same generated HTML in your doc site, the link is broken. See here: https://www.electronjs.org/docs...
[ { "path": "docs/faq.md", "patch": "@@ -135,7 +135,7 @@ is only available in renderer processes.\n \n If [sub-pixel anti-aliasing](https://alienryderflex.com/sub_pixel/) is deactivated, then fonts on LCD screens can look blurry. Example:\n \n-![subpixel rendering example]\n+![Subpixel rendering example](imag...
2022-09-12T23:09:12
golang/go
715754ba86665b860c7245759149f1e86c24ee8d
0f62125487d572168b71be7acb3b9efead55b37c
internal/trace: be stricter about allowed events in v2 trace versions Currently all v2 trace versions, Go 1.22 and Go 1.23, share a full set of specs. This is mostly OK, but it means quite a few events will be accepted for 1.22 traces that should be rejected. This change fixes that by limiting which event specs are re...
[ { "path": "src/go/build/deps_test.go", "patch": "@@ -58,6 +58,7 @@ var depsRules = `\n \t internal/platform,\n \t internal/profilerecord,\n \t internal/syslist,\n+\t internal/trace/tracev2/event,\n \t internal/trace/traceviewer/format,\n \t log/internal,\n \t math/bits,\n@@ -698,9 +699,6 @@ var depsR...
2025-01-24T20:56:47
huggingface/transformers
7cd2dd86ce3b2e598535f9aa1a40f79d6894f80a
83a6c5b577cafa607d59e78af4de86592b9903ee
support xxxFast alias in v5 tokenizers (#44766) * support xxxFast alias in v5 tokenizers * rm wrong file * test
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -16,6 +16,7 @@\n import importlib\n import json\n import os\n+import sys\n from collections import OrderedDict\n from typing import Any\n \n@@ -410,7 +411,13 @@ def tokenizer_class_from_name(class_name: str) -> type[Any] | None:\n ...
2026-03-18T13:40:02
vercel/next.js
0329a7e2947c170c1fd393d34fd944e8910d873c
7a0db3a159e6c25424f6e784ac973cb6e044ad70
fix(turbopack): Allow google font fetch errors to propagate when in production (#79999) ## Fail Google Fonts in Production Builds When Fetch Fails ### What? This PR changes the behavior of Google Fonts in Next.js to properly fail production builds when font fetching fails, while still allowing development to continue...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -161,7 +161,7 @@ pub async fn get_client_resolve_options_context(\n execution_context: Vc<ExecutionContext>,\n ) -> Result<Vc<ResolveOptionsContext>> {\n let next_client_import_map =\n- get_next_client_import_map(*project_p...
2025-06-03T17:45:52