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
ollama/ollama
a343ae53a4fa0f75a37e1653df3b61a9ed1b843d
d0cf6c82811c2268a396888347ff95087a618d56
ggml: Use ordinal IDs for AMD GPUs on Linux when UUID is unavailable Some AMD GPUs do not provide UUIDs and report only "XX". In these cases, we should use the ordinal ID as an alternate identifier. This is the same as we always need to do on Windows for AMD. In addition, this prints out the ID for each GPU when enum...
[ { "path": "llama/patches/0017-ggml-Export-GPU-UUIDs.patch", "patch": "@@ -7,12 +7,12 @@ This enables matching up devices and information reported by the backend\n with tools (e.g. nvidia-smi) and system management libraries (e.g. nvml).\n ---\n ggml/include/ggml-backend.h | 1 +\n- ggml/src/ggml-cuda/...
2025-08-12T00:01:07
facebook/react
a558b1536a41768d50f4cd5f20ab01ac0eaf9824
501cf92f1e06cf88e4f0f2b49099f36568e794a5
[babel-plugin] buildFunctionDeclaration errors are todos The existing errors thrown were marked as InvalidInput, which is now considered critical. This was causing an error in the sync since we had 2 occurrences of the errors being thrown. These are really todos and not invalid code.
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -144,8 +144,9 @@ export function compileProgram(\n }\n \n const loweredFn = buildFunctionDeclaration(fn);\n- if (loweredFn instanceof CompilerError) {\n- const error = loweredFn;\n+...
2023-06-16T16:18:45
golang/go
b9955f0ad952a22388eead15e3d15610a29e03a0
eef35e3bd989afcbf4141a570d933ff05b866504
cmd/link, runtime: apply a delta to RODATA->DATA relocations On AIX, an R_ADDR relocation from an RODATA symbol to a DATA symbol does not work, as the dynamic loader can change the address of the data section, and it is not possible to apply a dynamic relocation to RODATA. In order to get the correct address, we apply...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -424,6 +424,9 @@ func (st *relocSymState) relocsym(s loader.Sym, P []byte) {\n \t\t\t\t// FIXME: It should be forbidden to have R_ADDR from a\n \t\t\t\t// symbol which isn't in .data. However, as .text has the\n \t\t\t\t// same address once loaded, ...
2024-12-21T03:33:15
electron/electron
97c9451efc3035a1072b1ff87aee125f7a9fa053
4e3587c7c6e051193c6bbe346192ff08d2b594c1
fix: WCO crash on bad `titlebarStyle` (#34140) fix: WCO crash on bad titlebarStyle
[ { "path": "shell/browser/ui/views/win_frame_view.cc", "patch": "@@ -55,8 +55,8 @@ SkColor WinFrameView::GetReadableFeatureColor(SkColor background_color) {\n }\n \n void WinFrameView::InvalidateCaptionButtons() {\n- // Ensure that the caption buttons container exists\n- DCHECK(caption_button_container_);\...
2022-05-17T15:50:27
vercel/next.js
d1ee0f0cd7568318fa2cb5c23356f1a01fcd21db
66acc8393090225a4e86d82962bb4ee991741883
Prevent `"use cache"` timeout errors from being caught in userland code (#78998) When `dynamicIO` is enabled and a `"use cache"` function accesses dynamic request APIs, we fail the prerendering with a timeout error after 50 seconds. This error could be swallowed in userland code however, when the cached function is w...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -187,7 +187,6 @@ import {\n } from '../resume-data-cache/resume-data-cache'\n import type { MetadataErrorType } from '../../lib/metadata/resolve-metadata'\n import isError from '../../lib/is-error'\n-import { isUseCacheTimeoutError...
2025-05-10T08:37:28
huggingface/transformers
f2ba01971f37a13ec7ed5b05e9a8cd6cb01e2274
0133a75cd28b3a481e3d4b94fc5cb89f01fbbefb
[docs] trainer part 1 (#44185) * trainer part 1 * feedback * fix title * fix title
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -142,14 +142,26 @@\n - isExpanded: false\n sections:\n - local: trainer\n- title: Trainer\n+ title: Trainer overview\n - local: training\n title: Fine-tuning\n+ title: Get started\n+ - isExpanded: false\n+ sections:\n...
2026-02-24T21:18:37
facebook/react
fc929cf4ead35f99c4e9612a95e8a0bb8f5df25d
86acc10f2596e1a6fe2fd57a5b325de85175800b
[Float][Fizz][Fiber] support imagesrcset and imagesizes for `ReactDOM.preload()` (#26940) For float methods the href argument is usually all we need to uniquely key the request. However when preloading responsive images it is possible that you may need more than one preload for differing imagesizes attributes. When...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -105,7 +105,6 @@ import {\n } from 'react-reconciler/src/ReactWorkTags';\n import {listenToAllSupportedEvents} from '../events/DOMPluginEventSystem';\n import {\n- validatePreloadArguments,\n validatePreinitArguments,...
2023-06-15T21:50:22
ollama/ollama
d0cf6c82811c2268a396888347ff95087a618d56
8f4ec9ab289fd2a1f96384926a7f7bfd888d4ef9
fix(openai): handle reasoning_effort (#11868)
[ { "path": "api/types.go", "patch": "@@ -769,8 +769,8 @@ func (t *ThinkValue) IsString() bool {\n \treturn ok\n }\n \n-// AsBool returns the value as a bool (true if enabled in any way)\n-func (t *ThinkValue) AsBool() bool {\n+// Bool returns the value as a bool (true if enabled in any way)\n+func (t *ThinkV...
2025-08-12T18:02:01
golang/go
9f6c80a76ad56f653b743fe2df3f2296210c90d6
05d8984781f7cf2f0f39b53699a558b6a1965c6c
cmd/go/internal/work: allow single character values in -Wl, linker flags Allow single character values in -Wl, linker flags by modifying the regular expressions to use the star operator instead of the plus operator. Fixes #70924 Change-Id: Ie7940197cc8503440a87c6b29409a13377a20534 GitHub-Last-Rev: 42e8ac87d600239cef...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -201,23 +201,23 @@ var validLinkerFlags = []*lazyregexp.Regexp{\n \tre(`-Wl,--end-group`),\n \tre(`-Wl,--(no-)?export-dynamic`),\n \tre(`-Wl,-E`),\n-\tre(`-Wl,-framework,[^,@\\-][^,]+`),\n+\tre(`-Wl,-framework,[^,@\\-][^,]*`),\n \tre(`-Wl,--hash...
2024-12-20T06:45:52
electron/electron
8b5613efcbd322ea19407f8655b4691b09c3b2b4
a8103691ac33b6a71e127532cdea26d2de12d708
fix: fetching PDF element from `WebLocalFrame` (#34176) fix: fetching PDF element from WebLocalFrame
[ { "path": "shell/renderer/printing/print_render_frame_helper_delegate.cc", "patch": "@@ -10,6 +10,7 @@\n #include \"third_party/blink/public/web/web_local_frame.h\"\n \n #if BUILDFLAG(ENABLE_EXTENSIONS)\n+#include \"chrome/common/pdf_util.h\"\n #include \"extensions/common/constants.h\"\n #include \"extensi...
2022-05-13T00:20:45
vercel/next.js
66acc8393090225a4e86d82962bb4ee991741883
3719be2c03759604c1ae74b8a2bae2358b9c667b
Turbopack next/font: Use a custom enum instead of `Result` for failed local font files (#78941) Previously, we used `anyhow::Result` for this, but this conflicts with how we use `Error` in Turbo Tasks as system-level exceptions. Test Plan: `pnpm test-dev-turbo test/e2e/app-dir/next-font/next-font.test.ts`
[ { "path": "crates/next-core/src/next_font/font_fallback.rs", "patch": "@@ -60,7 +60,7 @@ impl FontFallback {\n }\n \n #[turbo_tasks::value(transparent)]\n-pub(crate) struct FontFallbacks(Vec<ResolvedVc<FontFallback>>);\n+pub(crate) struct FontFallbacks(pub Vec<ResolvedVc<FontFallback>>);\n \n #[turbo_tasks:...
2025-05-10T00:33:54
facebook/react
0fdb1e5ac74e46ad4302c31a4334f7dd8dc8765f
87a39e1995865b72b719ff9159786da7417d7e31
[eslint-plugin] Add test for invariants Turning off this flag makes only critical errors throw, so TODO errors will no longer be surfaced by the plugin. The previously failing test for unsupported syntax is now valid.
[ { "path": "compiler/forget/packages/eslint-plugin-react-forget/__tests__/ReactForgetDiagnostics-test.ts", "patch": "@@ -30,8 +30,6 @@ const tests: ForgetTestCases = {\n }\n `,\n },\n- ],\n- invalid: [\n {\n name: \"Unsupported syntax\",\n code: normalizeIndent`\n@@ -40,8 ...
2023-06-15T18:57:07
huggingface/transformers
0133a75cd28b3a481e3d4b94fc5cb89f01fbbefb
0ff46c9015474ec2da5e364273bd393d8b5176e0
🚨 More V5 pipeline cleanup (#43325) * Rename the feature extraction pipelines and remove question-answering * make style * Remove more refs to the question-answering pipelines * Remove more refs to the question-answering pipelines * More migration guide * make fix-repo * Correct the name imports in init.py * C...
[ { "path": "MIGRATION_GUIDE_V5.md", "patch": "@@ -600,9 +600,11 @@ Linked PRs:\n \n ## Pipelines\n \n-`Text2TextGenerationPipeline`, as well as the related `SummarizationPipeline` and `TranslationPipeline`, were deprecated and will now be removed.\n-`pipeline` classes are intended as a high-level beginner-fr...
2026-02-24T17:22:39
golang/go
500675a7c8c72bd6b1054a7eb4daaf61970f5ad7
06b191e11f6f78b19e5c5a43b3d0c461226c7084
cmd/compile: load map length with the right type len(map) is lowered to loading the first field of the map structure, which is the length. Currently it is a load of an int. With the old map, the first field is indeed an int. With Swiss map, however, it is a uint64. On big-endian 32-bit machine, loading an (32-bit) int...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -5452,12 +5452,15 @@ func (s *state) referenceTypeBuiltin(n *ir.UnaryExpr, x *ssa.Value) *ssa.Value {\n \tif n.X.Type().IsChan() && n.Op() == ir.OCAP {\n \t\ts.Fatalf(\"cannot inline cap(chan)\") // must use runtime.chancap now\n \t}\n+\tif n....
2024-12-21T20:54:34
electron/electron
a8103691ac33b6a71e127532cdea26d2de12d708
142e1f667bff0ae755406876295205708a4cd887
fix: tray icon not highlighting on empty menu (#34173)
[ { "path": "shell/browser/ui/tray_icon_cocoa.mm", "patch": "@@ -190,9 +190,9 @@ - (void)mouseDown:(NSEvent*)event {\n gfx::ScreenPointFromNSPoint([event locationInWindow]),\n ui::EventFlagsFromModifiers([event modifierFlags]));\n \n- // Pass click to superclass to show menu. Custom mouseUp handl...
2022-05-12T14:14:11
vercel/next.js
3719be2c03759604c1ae74b8a2bae2358b9c667b
cf1eea49e33d7130fe233afecca502fc13837f53
fix(CI): Remove comments from labeler config (#79015) The labeler reads this as json5 here: https://github.com/vercel/next-labeler-webhook/blob/1ecc3b54c2b03fae950c7cb2dd859cf63c3e8684/src/app/api/label/utils/fetchConfig.ts#L1 But apparently something else is also reading it and expecting JSON? ![Screenshot 2025-05-...
[ { "path": ".github/labeler.json", "patch": "@@ -1,4 +1,3 @@\n-// This is a JSON5 file, processed by https://github.com/vercel/next-labeler-webhook/\n {\n \"labels\": {\n \"create-next-app\": [\"packages/create-next-app/**\"],\n@@ -8,8 +7,6 @@\n \"tests\": [\"test/**\", \"bench/**\"],\n \"Turbo...
2025-05-09T23:48:39
facebook/react
87a39e1995865b72b719ff9159786da7417d7e31
b68c409a6b8adb0e58d978b4d085b1197c030ac9
Mark InvalidInput errors as critical
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -237,8 +237,8 @@ export class CompilerError extends Error {\n return this.details.some((detail) => {\n switch (detail.severity) {\n case ErrorSeverity.Invariant:\n- return true;\n ...
2023-06-15T18:34:49
ollama/ollama
ee04dbba51a4299b6ff4bb19f758eeacbf2b35d8
735c41f9ca38fd2507c3e8e93efe6bbb94455a6f
server: fix error when parsing bad harmony tool calls Thanks @moll for reporting! Fixes: #11781
[ { "path": "server/routes.go", "patch": "@@ -364,7 +364,8 @@ func (s *Server) GenerateHandler(c *gin.Context) {\n \t\t\t\t\t\t*toolName = strings.TrimPrefix(*toolName, \"functions.\")\n \t\t\t\t\t\tvar args api.ToolCallFunctionArguments\n \t\t\t\t\t\tif err := json.Unmarshal([]byte(toolContent), &args); err ...
2025-08-11T21:09:13
huggingface/transformers
69fd225a38c5eda95bf7b37a27e6f44aa77e34a7
5dd090d7d5814a785864fc171df0e901ab8eb153
Enable mxfp4 model on CPU (#43512) * enable mxfp4 on CPU Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * test mxfp4 Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * revert error change Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix mxfp4 device check Signed-off-by: jiqing-feng <jiqing.feng@in...
[ { "path": "src/transformers/integrations/hub_kernels.py", "patch": "@@ -158,6 +158,12 @@ def use_kernel_func_from_hub(func_name: str):\n layer_name=\"MegaBlocksMoeMLP\",\n )\n },\n+ \"cpu\": {\n+ Mode.INFERENCE: LayerRepository(\n+ ...
2026-02-24T15:22:00
golang/go
06b191e11f6f78b19e5c5a43b3d0c461226c7084
110ab1aaf4b0055027b86ff564b66a47e0f37b58
internal/syscall/unix: apply fstatat fix to linux/mips64le Apply CL 633280 to linux/mips64le, as it has the same struct as mips64. Updates #70659. Change-Id: Ibab635e69e44682eb214bf6a00f4cd75816b2d34 Reviewed-on: https://go-review.googlesource.com/c/go/+/637739 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed...
[ { "path": "src/internal/syscall/unix/at_fstatat.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build dragonfly || (linux && !(loong64 || mips64)) || netbsd || (openbsd && mips64)\n+//go:build dragonfly || (...
2024-12-21T05:07:34
electron/electron
ba3aca8200aaaa40c9641171b7c867d1aea065e7
d67532ee9f836857bc43989fbb8376d1fe769a48
test: fix background transparency flake (#34190)
[ { "path": "spec-main/api-browser-window-spec.ts", "patch": "@@ -1828,7 +1828,7 @@ describe('BrowserWindow module', () => {\n });\n \n ifdescribe(process.platform === 'darwin')('BrowserWindow.setVibrancy(type)', () => {\n- let appProcess: childProcess.ChildProcessWithoutNullStreams | undefined;\n+ ...
2022-05-12T07:41:58
vercel/next.js
5c3a298dc75b727ad5bcab8d18b5d8e468f4c12f
06a81414acfd54e41be57ee9749c9119f2c2fb53
[not-found] Add global-not-found convention (#78783) ### Feature Introducing a new convention `global-not-found.js`, which let you build your own 404 page within app router. This convention is similar to `global-error.js` but for not found in general case, it's similar to `not-found.js` but including the layout. ...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -194,7 +194,12 @@ impl AppProject {\n \n #[turbo_tasks::function]\n fn app_entrypoints(&self) -> Vc<AppEntrypoints> {\n- get_entrypoints(*self.app_dir, self.project.next_config().page_extensions())\n+ let conf = self.project.next_con...
2025-05-09T22:33:17
facebook/react
b68c409a6b8adb0e58d978b4d085b1197c030ac9
fe91cd8ac18e3a99e6a941cc4c5b0a4f20edbd4a
[eslint-plugin] Throw non CompilerErrors
[ { "path": "compiler/forget/packages/eslint-plugin-react-forget/src/rules/ReactForgetDiagnostics.ts", "patch": "@@ -48,6 +48,8 @@ const rule: Rule.RuleModule = {\n });\n }\n }\n+ } else {\n+ throw new Error(err);\n }\n ...
2023-06-15T18:34:46
huggingface/transformers
5dd090d7d5814a785864fc171df0e901ab8eb153
45b62bcd18242af01aa2aef1eccdc98329ce5d87
Fix image processors `from_dict` backward compatibility with old remote code (#44245) * Improve bc with remote code in image_processing_base * add warning and fancy reversed loop on kwargs
[ { "path": "src/transformers/image_processing_base.py", "patch": "@@ -369,10 +369,18 @@ def from_dict(cls, image_processor_dict: dict[str, Any], **kwargs):\n image_processor_dict.update({k: v for k, v in kwargs.items() if k in cls.valid_kwargs.__annotations__})\n image_processor = cls(**image...
2026-02-24T15:17:37
ollama/ollama
203c137810846865f6358b25c8937bc4b55dfda4
30f8a68c4cc55e0f3a717b891931847c97190843
openai: allow for content _and_ tool calls in the same message Previously our OpenAI chat completions compat layer assumed that tool calls and content would never be provided together, but this is not a correct assumption. Content is only optional when tool calls are present, but tool calls and content can be provided...
[ { "path": "openai/openai.go", "patch": "@@ -403,7 +403,11 @@ func fromChatRequest(r ChatCompletionRequest) (*api.ChatRequest, error) {\n \tfor _, msg := range r.Messages {\n \t\tswitch content := msg.Content.(type) {\n \t\tcase string:\n-\t\t\tmessages = append(messages, api.Message{Role: msg.Role, Content:...
2025-08-06T22:50:30
electron/electron
d67532ee9f836857bc43989fbb8376d1fe769a48
4f8a84360603230059ffc4ca5f90b60708cc4869
fix: crash when loading extension with missing manifest (#34168) * fix: crash when loading extension missing manifest * Update electron_paks.gni Co-authored-by: Robo <hop2deep@gmail.com> Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "electron_paks.gni", "patch": "@@ -183,6 +183,7 @@ template(\"electron_paks\") {\n \"${root_gen_dir}/components/strings/components_locale_settings_\",\n \"${root_gen_dir}/components/strings/components_strings_\",\n \"${root_gen_dir}/device/bluetooth/strings/bluetooth_strings_\",\...
2022-05-11T20:41:06
golang/go
110ab1aaf4b0055027b86ff564b66a47e0f37b58
669d87a935536eb14cb2db311a83345359189924
slices: document two oddities Fixes #70935 Change-Id: Idf4a38a05ba595d616b6469a14419ff873bbd354 Reviewed-on: https://go-review.googlesource.com/c/go/+/638095 Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall...
[ { "path": "src/slices/slices.go", "patch": "@@ -414,6 +414,7 @@ func Grow[S ~[]E, E any](s S, n int) S {\n \t\tpanic(\"cannot be negative\")\n \t}\n \tif n -= cap(s) - len(s); n > 0 {\n+\t\t// This expression allocates only once (see test).\n \t\ts = append(s[:cap(s)], make([]E, n)...)[:len(s)]\n \t}\n \tre...
2024-12-20T14:28:55
facebook/react
f5c249db8b0bec00faa9633d67814e980c24fbb5
a1723e18fd42e67d610adb0107c9015319613bd7
fix[devtools]: display NaN as string in values (#26947) ## Summary >Warning: Received NaN for the `children` attribute. If this is expected, cast the value to a string. Fixes this warning, when we try to display NaN as NaN in key-value list.
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/KeyValue.js", "patch": "@@ -255,6 +255,8 @@ export default function KeyValue({\n displayValue = 'null';\n } else if (value === undefined) {\n displayValue = 'undefined';\n+ } else if (isNaN(value)) {\n+ displayVa...
2023-06-14T10:45:30
huggingface/transformers
45b62bcd18242af01aa2aef1eccdc98329ce5d87
d4c50c5dee9296a3a360129cd57c1c5c352ce437
Fix local dataset loading priority in run_image_classification_no_tra… (#44199) * Fix local dataset loading priority in run_image_classification_no_trainer.py * Apply ruff formatting * Gitignore File Removed * Space Removed
[ { "path": "examples/pytorch/image-classification/run_image_classification_no_trainer.py", "patch": "@@ -291,8 +291,9 @@ def main():\n \n # In distributed training, the load_dataset function guarantees that only one local process can concurrently\n # download the dataset.\n- if args.dataset_name i...
2026-02-24T15:09:21
vercel/next.js
06a81414acfd54e41be57ee9749c9119f2c2fb53
163a9a32ba3e96f411812abe93ede90e5015ad8a
chore: update rspack to 1.3.9 (#78984) <!-- 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 ### Improvi...
[ { "path": "package.json", "patch": "@@ -111,7 +111,7 @@\n \"@next/third-parties\": \"workspace:*\",\n \"@opentelemetry/api\": \"1.4.1\",\n \"@picocss/pico\": \"1.5.10\",\n- \"@rspack/core\": \"1.3.8\",\n+ \"@rspack/core\": \"1.3.9\",\n \"@rspack/plugin-react-refresh\": \"1.2.0\",\n ...
2025-05-09T21:51:05
ollama/ollama
fa8be9e35ce88ef28cd59062f1c8b647a8261bfc
8a75e9ee151933d71182d31125cec0fb821d0183
clean up debugging (#11756)
[ { "path": "ml/backend/ggml/ggml.go", "patch": "@@ -239,12 +239,10 @@ func New(modelPath string, params ml.BackendParams) (ml.Backend, error) {\n \tcreateTensor := func(t tensor, bts []*C.struct_ggml_backend_buffer_type, layer int) *C.struct_ggml_tensor {\n \t\tfor _, bt := range bts {\n \t\t\tif _, ok := ct...
2025-08-06T20:31:22
golang/go
669d87a935536eb14cb2db311a83345359189924
45f49139f5c0c4921239b7f0865c4041e663b1d0
runtime/pprof: continued attempt to deflake the VMInfo test. This change catches an additional error message to trigger skipping the test when the underlying system is failing. Fixes #62352 Change-Id: I5c12b20f3e9023597ff89fc905c0646a80ec4811 Reviewed-on: https://go-review.googlesource.com/c/go/+/637995 Reviewed-by:...
[ { "path": "src/runtime/pprof/vminfo_darwin_test.go", "patch": "@@ -97,7 +97,7 @@ func useVMMap(t *testing.T) (hi, lo uint64, retryable bool, err error) {\n \t\tt.Logf(\"vmmap output: %s\", out)\n \t\tif ee, ok := cmdErr.(*exec.ExitError); ok && len(ee.Stderr) > 0 {\n \t\t\tt.Logf(\"%v: %v\\n%s\", cmd, cmdEr...
2024-12-19T23:55:05
electron/electron
dd6ce91f5766c9eea0ffca23e42ef8766851e0a2
6f8a36f4047ba6300f93d4470193d6b54afabacf
fix: call loadUrl when opening new windows from links (#34159) * fix: call loadUrl when opening new windows from links * spec: add regression test
[ { "path": "lib/browser/guest-window-manager.ts", "patch": "@@ -78,6 +78,19 @@ export function openGuestWindow ({ event, embedder, guest, referrer, disposition\n ...browserWindowOptions\n });\n \n+ if (!guest) {\n+ // When we open a new window from a link (via OpenURLFromTab),\n+ // the browser ...
2022-05-11T18:34:33
facebook/react
88df88f9441e0f83917e60e04d4f75118c1adec5
db50164dbac39d7421c936689a5c026e9fd2f034
fix: devtools cannot be closed correctly (#25510) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, plea...
[ { "path": "packages/react-devtools-shared/src/__tests__/bridge-test.js", "patch": "@@ -21,6 +21,8 @@ describe('Bridge', () => {\n send: jest.fn(),\n };\n const bridge = new Bridge(wall);\n+ const shutdownCallback = jest.fn();\n+ bridge.addListener('shutdown', shutdownCallback);\n \n ...
2023-06-13T09:04:38
huggingface/transformers
49067bc9ddb17e7e97aa82f4e9327f750add0fc4
f56522d79e70e19eebad7eb58b651d538ae9330c
Add Four Over Six quantization integration (#43970) * Add fouroversix integration and docs * Small fix * Update quantized modules outside of FourOverSixQuantize * Delete high-precision parameters during conversion and before weight loading * Update year Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.n...
[ { "path": "docker/transformers-quantization-latest-gpu/Dockerfile", "patch": "@@ -77,6 +77,9 @@ RUN python3 -m pip uninstall -y flash-attn\n # this line must be added in order for python to be aware of transformers.\n RUN cd transformers && python3 setup.py develop\n \n+# Add fouroversix for quantization te...
2026-02-24T14:29:49
vercel/next.js
163a9a32ba3e96f411812abe93ede90e5015ad8a
c4c3aee98f7da0ea5739192f3dc0cdc8537efc68
fix(CI): Wait for lock when running apt-get (#78979) Sometimes this step can fail because something else has the lock (I'm not sure what, as I thought these things run in isolated containers), but we can mitigate this by waiting for the lock up to 60 seconds. ![Screenshot 2025-05-08 at 9.33.10 PM.png](https://graphit...
[ { "path": ".github/actions/setup-rust/action.yml", "patch": "@@ -19,7 +19,9 @@ runs:\n - name: 'Install LLD (LLVM Linker) for Linux'\n if: runner.os == 'Linux'\n shell: bash\n- run: sudo apt-get -y update && sudo apt-get install -y lld\n+ run: |\n+ sudo apt-get -y -o DPkg::L...
2025-05-09T16:23:18
ollama/ollama
fcec04bf4249f91c553ec3d2914a493bf794d105
ee92ca3e1d1f95ce5372a395d19b6a5ed11afaeb
gptoss: fix memory calc (#11700)
[ { "path": "fs/ggml/ggml.go", "patch": "@@ -676,7 +676,7 @@ func (f GGML) GraphSize(context, batch uint64, numParallel int, kvCacheType stri\n \t\t\t}\n \t\t}\n \t\tfullOffload = 4 * f.KV().HeadCountMax() / cmp.Or(f.KV().HeadCountKVMin(), 1) * kvTotal / 6\n-\t\tpartialOffload = 2 * fullOffload\n+\t\tpartialO...
2025-08-05T22:56:12
golang/go
45f49139f5c0c4921239b7f0865c4041e663b1d0
e63eb98e98709a68bf7781a34a3297b72521826e
runtime: test trap panic parsing in TestTracebackSystem This mirrors https://go.dev/cl/637755, as x/telemetry is now aware of sigpanic preceding trap frames. For #70637. Change-Id: I13a775f25e89047702d4f2d463ce3210bcf192d9 Reviewed-on: https://go-review.googlesource.com/c/go/+/638015 Reviewed-by: Cherry Mui <cherryy...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -32,8 +32,11 @@ const entrypointVar = \"RUNTIME_TEST_ENTRYPOINT\"\n \n func TestMain(m *testing.M) {\n \tswitch entrypoint := os.Getenv(entrypointVar); entrypoint {\n-\tcase \"crash\":\n-\t\tcrash()\n+\tcase \"panic\":\n+\t\tcrashViaPanic()\n+\t\tpanic(\"u...
2024-12-20T01:58:19
facebook/react
db50164dbac39d7421c936689a5c026e9fd2f034
ce6842d8f528977119b80d969306c8475099f66e
[Flight] Optimize Large Strings by Not Escaping Them (#26932) This introduces a Text row (T) which is essentially a string blob and refactors the parsing to now happen at the binary level. ``` RowID + ":" + "T" + ByteLengthInHex + "," + Text ``` Today, we encode all row data in JSON, which conveniently never ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -52,6 +52,14 @@ export type JSONValue =\n | {+[key: string]: JSONValue}\n | $ReadOnlyArray<JSONValue>;\n \n+const ROW_ID = 0;\n+const ROW_TAG = 1;\n+const ROW_LENGTH = 2;\n+const ROW_CHUNK_BY_NEWLINE = 3;\n+const ROW_CHUNK_BY_LENGT...
2023-06-13T02:16:47
electron/electron
6f8a36f4047ba6300f93d4470193d6b54afabacf
c512993744145e594c9ee8d55e5c4190c943f841
test: fixup done being called multiple times (#34175)
[ { "path": "spec-main/api-browser-window-spec.ts", "patch": "@@ -3516,9 +3516,14 @@ describe('BrowserWindow module', () => {\n describe('beginFrameSubscription method', () => {\n it('does not crash when callback returns nothing', (done) => {\n const w = new BrowserWindow({ show: false });\n+ ...
2022-05-11T17:23:24
huggingface/transformers
f56522d79e70e19eebad7eb58b651d538ae9330c
efdcbc77ea10f4eb5106b9a4d6df80c541f10a07
fix: add missing return type annotations to type-checking utilities in generic.py (#44241) Adds missing `-> bool`, `-> int`, and `-> str | None` return type annotations to public utility functions in `utils/generic.py`, making them consistent with the newer `is_timm_config_dict` and `is_timm_local_checkpoint` function...
[ { "path": "src/transformers/utils/generic.py", "patch": "@@ -60,7 +60,7 @@\n \n \n # vendored from distutils.util\n-def strtobool(val):\n+def strtobool(val) -> int:\n \"\"\"Convert a string representation of truth to true (1) or false (0).\n \n True values are 'y', 'yes', 't', 'true', 'on', and '1';...
2026-02-24T13:25:11
vercel/next.js
c4c3aee98f7da0ea5739192f3dc0cdc8537efc68
2086975c3c27d453e4a74fb584b76ea714a05631
Fix `--no-mangling` for `"use cache"` functions (#78993) When mangling is disabled with `next build --no-mangling`, the function names of `"use cache"` functions are currently still mangled. The reason is that those functions are transformed to inline function expressions whose names are removed by the SWC minifier e...
[ { "path": "packages/next/src/build/webpack/plugins/minify-webpack-plugin/src/index.ts", "patch": "@@ -145,6 +145,8 @@ export class MinifyPlugin {\n global_defs: {\n 'process.env.__NEXT_PRIVATE_MINIMIZE_MACRO_FALSE': false,\n },\n+ keep_classna...
2025-05-09T11:41:38
ollama/ollama
8253ad4d2b2e7ac58268192051b92b59986c874f
fa7776fd2458fc3a8aeb7f12e4bc65b439955319
ggml: Prevent kv cache quanitization on gpt-oss KV cache quantization has a dependency on the flash attention kernel. We currently cannot use flash attention with gpt-oss as it requires additional operations. The model definition does not call flash attention, so it works regardless of the setting but the cache will ...
[ { "path": "fs/ggml/ggml.go", "patch": "@@ -761,6 +761,10 @@ func (f GGML) SupportsFlashAttention() bool {\n \t\treturn false\n \t}\n \n+\tif f.KV().Architecture() == \"gptoss\" {\n+\t\treturn false\n+\t}\n+\n \t// Check head counts match and are non-zero\n \theadCountK := f.KV().EmbeddingHeadCountK()\n \the...
2025-08-05T19:42:07
golang/go
e63eb98e98709a68bf7781a34a3297b72521826e
7b6c94dd037b5d78afca70975109294d7439517c
net/http: fix nil panic in test Observed on a builder in an unrelated CL. https://logs.chromium.org/logs/golang/buildbucket/cr-buildbucket/8728107031663629713/+/u/step/11/log/2 goroutine 27937 gp=0xc00000f6c0 m=20 mp=0xc000085008 [running]: panic({0x560ac0?, 0xa1f400?}) C:/b/s/w/ir/x/w/goroot/src/runtime/panic.go:80...
[ { "path": "src/net/http/transport_test.go", "patch": "@@ -5500,7 +5500,9 @@ timeoutLoop:\n \t\t\t\t\treturn false\n \t\t\t\t}\n \t\t\t}\n-\t\t\tres.Body.Close()\n+\t\t\tif err == nil {\n+\t\t\t\tres.Body.Close()\n+\t\t\t}\n \t\t\tconns := idleConns()\n \t\t\tif len(conns) != 1 {\n \t\t\t\tif len(conns) == 0...
2024-12-19T18:35:34
facebook/react
a21660de006416018d1fc799be92540417fcb8bb
a8fff7cc5c67f4f8f5fbd9171081be6ef3949158
Fix calculation of nested function dependencies We were incorrectly calculating the dependencies of nested lambdas, because the "component" scope was incorrectly set to the next closest parent rather than outermost React function (component/hook) being compiled.
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -2344,7 +2344,7 @@ function lowerFunctionExpression(\n if (expr.isFunctionExpression()) {\n name = expr.get(\"id\")?.node?.name ?? null;\n }\n- const componentScope: Scope = expr.scope.parent.getFunctio...
2023-06-14T21:04:26
electron/electron
6063d4f8df7298b6fbc66cc71e76c04e913faaf3
64dc90824b43b5ab18bbfd3c687a51207956298b
docs: fix typo in quick-start.md (#34149) According to Jetbrains LanguageTool, "Consider using All the. "
[ { "path": "docs/tutorial/quick-start.md", "patch": "@@ -404,7 +404,7 @@ app.on('window-all-closed', () => {\n ```js\n // preload.js\n \n-// All of the Node.js APIs are available in the preload process.\n+// All the Node.js APIs are available in the preload process.\n // It has the same sandbox as a Chrome e...
2022-05-11T14:05:59
huggingface/transformers
efdcbc77ea10f4eb5106b9a4d6df80c541f10a07
503aff221f2c2285883e18e3921c0ba188fa6f26
Fix return value - fixes #44238 (#44240)
[ { "path": "utils/check_bad_commit.py", "patch": "@@ -231,7 +231,8 @@ def find_bad_commit(target_test, start_commit, end_commit):\n if \"error: bisect run failed\" in bash_result.stderr:\n error_msg = f\"Error when running git bisect:\\nbash error: {bash_result.stderr}\\nbash output:\\n{bash_resu...
2026-02-24T13:02:57
vercel/next.js
16eb3b2906492eb6d96040321c23377fc1275b51
af0473b7f43bbabe0b327ec65348bf85610a1153
Revert "fix: alternate bundler support for dropping client page" (#78974) This reverts commit fa6f96f0 <!-- 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 th...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -1948,7 +1948,7 @@ export default async function getBaseWebpackConfig(\n dev,\n }),\n // rspack doesn't support the parser hooks used here\n- (isClient || isEdgeServer) && new DropClientPage(),\n+ !isRspack...
2025-05-08T22:59:51
golang/go
7b6c94dd037b5d78afca70975109294d7439517c
cb72406c36e5c39c049fd150d65be67372ba60e2
cmd/go: drop fips140 build ID hacks We were trying to keep all binaries stale in fips140 mode so that every build would write and leave behind a fips.o in the work directory for use by validating labs. That breaks various staleness checks, including the one in cmd/dist during GOFIPS140=latest ./make.bash. Revert the ...
[ { "path": "src/cmd/go/internal/fips140/fips140.go", "patch": "@@ -40,14 +40,8 @@\n //\n //\tGOFIPS140=latest go build -work my/binary\n //\n-// will leave fips.o behind in $WORK/b001. Auditors like to be able to\n-// see that file. Accordingly, when [Enabled] returns true,\n-// [cmd/go/internal/work.Builder...
2024-12-17T15:40:41
facebook/react
21a161fa37dce969c58ae17f67f2856d06514892
910045696bb5f693acb77890e6750c5e4659b420
refactor[renderer]: expose getInspectorDataForInstance in rendererConfig (#26913) ## Summary This is required for the case when we have an instance and want to get inspector data for it. Such case occurs when RN's application being debugged via React DevTools. React DevTools sends instance to RN, which then gets...
[ { "path": "packages/react-native-renderer/src/ReactFabric.js", "patch": "@@ -137,6 +137,7 @@ injectIntoDevTools({\n version: ReactVersion,\n rendererPackageName: 'react-native-renderer',\n rendererConfig: {\n+ getInspectorDataForInstance,\n getInspectorDataForViewTag: getInspectorDataForViewTag...
2023-06-09T09:55:34
huggingface/transformers
503aff221f2c2285883e18e3921c0ba188fa6f26
c281a2de8998e66e93fac30a236225528531df9b
fix regression report_to "all" (#44250) * fix regression * rm comment
[ { "path": "src/transformers/training_args.py", "patch": "@@ -1515,7 +1515,11 @@ def __post_init__(self):\n if self.greater_is_better is None and self.metric_for_best_model is not None:\n self.greater_is_better = not self.metric_for_best_model.endswith(\"loss\")\n \n- if self.repor...
2026-02-24T12:55:05
electron/electron
e76cf3e2ed01e1b7199a336463c21b5b8904c745
627c2987ba1d3b8b4204b3e8762782885a8f490b
fix: building node modules with Visual Studio 2017 (#34109)
[ { "path": "patches/v8/.patches", "patch": "@@ -4,6 +4,6 @@ dcheck.patch\n export_symbols_needed_for_windows_build.patch\n workaround_an_undefined_symbol_error.patch\n do_not_export_private_v8_symbols_on_windows.patch\n-fix_build_deprecated_attirbute_for_older_msvc_versions.patch\n+fix_build_deprecated_attri...
2022-05-10T21:26:07
ollama/ollama
fa7776fd2458fc3a8aeb7f12e4bc65b439955319
0d38b6650259e6e95c4cc7192d8588e5945427f9
gpt-oss (#11672) * bf16 * tests * gpt-oss * enable gptoss for engine * rough estimate * convert to mxfp4 * handle safetensors U8 * clamp glu/linear * update tokenizer * MXFP4 support This implements the Open Compute Microscaling (MX) FP4 format as a tensor type with backend implementations focusing on mulmat...
[ { "path": "api/types.go", "patch": "@@ -85,10 +85,11 @@ type GenerateRequest struct {\n \tOptions map[string]any `json:\"options\"`\n \n \t// Think controls whether thinking/reasoning models will think before\n-\t// responding. Needs to be a pointer so we can distinguish between false\n+\t// responding. Can...
2025-08-05T19:21:16
vercel/next.js
af0473b7f43bbabe0b327ec65348bf85610a1153
9f4a7f03b3e23d187eaea59c1cebea183920a928
Fix tracing of server actions imported by client components (#78968) This fixes us failing to trace actions imported by client components due to the transform removing the actions import so our tracing isn't able to discover the action import correctly. This was previously handled in https://github.com/vercel/next.js/...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -1962,6 +1962,7 @@ export default async function getBaseWebpackConfig(\n appDirEnabled: hasAppDir,\n traceIgnores: [],\n compilerType,\n+ swcLoaderConfig: swcDefaultLoader,\n }\n ...
2025-05-08T22:54:46
golang/go
cb72406c36e5c39c049fd150d65be67372ba60e2
4f0561f9d354233787de7aa9eff8119a2d4cd5c6
cmd/go: fix two-step toolchain upgrade through go install, GOTOOLCHAIN If we do one upgrade because of a go install target's go.mod file, we still might need a second upgrade to implement the GOTOOLCHAIN minimum. Instead of allowing a two-step switch (which we were cutting off anyway), skip the first step and go strai...
[ { "path": "src/cmd/go/internal/toolchain/select.go", "patch": "@@ -169,7 +169,7 @@ func Select() {\n \t}\n \n \tgotoolchain = minToolchain\n-\tif (mode == \"auto\" || mode == \"path\") && !goInstallVersion() {\n+\tif (mode == \"auto\" || mode == \"path\") && !goInstallVersion(minVers) {\n \t\t// Read go.mod...
2024-12-18T20:42:48
electron/electron
627c2987ba1d3b8b4204b3e8762782885a8f490b
7f5346b9545a9d6bf0de514fee24d0e0442a4047
fix: create singleton pipename from user & executable (#34139) * fix: create singleton pipename from user & executable * fix: use process id & main thread id for pipe name * fix: write rand to file using WIN method * fix: remove file rand, add user_name to pipe * chore: style fixes, shorten program_name & ...
[ { "path": "patches/chromium/feat_add_data_transfer_to_requestsingleinstancelock.patch", "patch": "@@ -282,22 +282,31 @@ index be2c417c07a4206fac4a9a6c03e516fd0493c942..78f74b0b21242553b6af98628dc48190\n return PROCESS_NOTIFIED;\n }\n diff --git a/chrome/browser/process_singleton_win.cc b/chrome/brow...
2022-05-10T20:24:40
ollama/ollama
0d38b6650259e6e95c4cc7192d8588e5945427f9
4183bb0574a28b73276efef944107d0c45d79c95
kvcache: Log contents of cache when unable to find a slot There is a bug when using sliding window attention where we run out of KV cache slots. This is likely due to not correctly removing all of the entries as they slide out of range. This adds additional logging when this occurs to track down the source. Bug #1012...
[ { "path": "kvcache/causal.go", "patch": "@@ -214,6 +214,7 @@ func (c *Causal) StartForward(ctx ml.Context, batch input.Batch, reserve bool) e\n \t\t\tc.curLoc, err = c.findStartLoc()\n \t\t}\n \t\tif err != nil {\n+\t\t\tslog.Warn(\"unable to find a kv cache slot\", \"cache\", c)\n \t\t\treturn err\n \t\t}\...
2025-08-04T23:44:23
huggingface/transformers
c281a2de8998e66e93fac30a236225528531df9b
3c52b78ac083cd98e794105c7e822fdaeb6d37cd
:rotating_light: Unify 3D position ids (#43972) * draft before I lose it * dump and come back after position ids PR is merged * fix fast tests * let qwen-vl return `mm-token-type-ids` always! * fix repo * fix fast tests * this should be it! * fix style * oops fix this one is swapped * glm uses the same token ...
[ { "path": "src/transformers/models/ernie4_5_vl_moe/modeling_ernie4_5_vl_moe.py", "patch": "@@ -1106,52 +1106,97 @@ def get_input_embeddings(self):\n def set_input_embeddings(self, value):\n self.language_model.set_input_embeddings(value)\n \n+ def get_vision_position_ids(\n+ self,\n+ ...
2026-02-24T11:41:33
vercel/next.js
9f4a7f03b3e23d187eaea59c1cebea183920a928
884f5860b1dc9e2639d23242c1c146f29edb933d
[Fix] Inverse prefetch segment for Pages routes (#78932) Another follow-up to https://github.com/vercel/next.js/pull/78387 and https://github.com/vercel/next.js/pull/78568. Refer to those PRs for full details. Fixes a routing conflict related to per-segment prefetches in sites that use both App Router and Pages Route...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -3557,18 +3557,11 @@ export default async function build(\n ...routesManifest.staticRoutes,\n ...routesManifest.dynamicRoutes,\n ]) {\n- // We only want to handle pages that are using the app rout...
2025-05-08T22:00:05
golang/go
f4e3ec3dbe3b8e04a058d266adf8e048bab563f2
6aa46eb75005c87ab4d44d989e1688362991c731
crypto/ecdsa: fix condition for fips140=only check Fixes #70894 Change-Id: I78c9f2e46006ffc5f1d2886218f8aaaf3f1b59eb GitHub-Last-Rev: 11f0b452f57aacc40139eab557a8bed1386ad07b GitHub-Pull-Request: golang/go#70904 Reviewed-on: https://go-review.googlesource.com/c/go/+/637455 Reviewed-by: Filippo Valsorda <filippo@golan...
[ { "path": "src/crypto/ecdsa/ecdsa.go", "patch": "@@ -183,7 +183,7 @@ func GenerateKey(c elliptic.Curve, rand io.Reader) (*PrivateKey, error) {\n }\n \n func generateFIPS[P ecdsa.Point[P]](curve elliptic.Curve, c *ecdsa.Curve[P], rand io.Reader) (*PrivateKey, error) {\n-\tif fips140only.Enabled && fips140onl...
2024-12-18T16:19:24
electron/electron
9483e714c46cfa134209691b29b4ab5cf9fdb2ac
03e68e2efeee34715a5b37e6f7065ac8487f2485
feat: allow customizing browser data location (#33554) * feat: redirect Electron/Chromium cache location * fix: network services should also use browserData * test: browserData * chore: no need to explicitly create dir * feat: browserData => sessionData * test: check existings of specific items * doc...
[ { "path": "docs/api/app.md", "patch": "@@ -635,8 +635,18 @@ Returns `string` - The current application directory.\n * `%APPDATA%` on Windows\n * `$XDG_CONFIG_HOME` or `~/.config` on Linux\n * `~/Library/Application Support` on macOS\n- * `userData` The directory for storing your app's configura...
2022-05-09T14:26:57
ollama/ollama
4183bb0574a28b73276efef944107d0c45d79c95
ff89ba90bc97e9f58b8378a664b904bbc94e6f26
kvcache: Enable SWA to retain additional entries Models that use sliding window attention can only resume a sequence from the cache if it falls within the saved windows. This works well if the next message picks up where the old one left off. However, it generally prevents a partial prefix match unless the entire conv...
[ { "path": "kvcache/causal.go", "patch": "@@ -19,9 +19,16 @@ type shiftFn func(ctx ml.Context, layer int, key, shift ml.Tensor) (ml.Tensor, e\n // The tensors are of shape embed dim, kv heads, batch size\n // The mask is of shape history size, batch size\n type Causal struct {\n-\tDType ml.DType\n-\twin...
2025-07-30T21:42:57
huggingface/transformers
3c52b78ac083cd98e794105c7e822fdaeb6d37cd
22b40e67338e7735e7e62720a74d8c1562601b76
[generate] Always pass full input_ids in `prepare_inputs_for_generation` (#44226) * send full input_ids, slice after * fix xlm * fix * improve * fix * make sure * finally get it... they are modified in-place and clone was saving us... * all the same * fix * fix * finally * doc * higgs * add comment
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -493,6 +493,7 @@ def load_custom_generate(\n def prepare_inputs_for_generation(\n self,\n input_ids: torch.LongTensor,\n+ next_sequence_length: int | None = None,\n past_key_values: Cache | None = None,\n ...
2026-02-24T10:45:47
vercel/next.js
884f5860b1dc9e2639d23242c1c146f29edb933d
10c308ea2257cc06ffcf7550db076bd94c94d871
bugfix: Fix a bug that caused conflicting assets when adding a child compiler (#78011) fixes #76930 ## Summary Fixes an issue where using a Webpack plugin that creates child compilers in a Next.js project could result in asset emission conflicts. ## Description Starting from [vercel/next.js#75927](https://github.c...
[ { "path": "packages/next/src/build/webpack/plugins/flight-manifest-plugin.ts", "patch": "@@ -223,7 +223,7 @@ export class ClientReferenceManifestPlugin {\n }\n \n apply(compiler: webpack.Compiler) {\n- compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => {\n+ compiler.hooks.thisCompilation...
2025-05-08T21:17:03
golang/go
971448ddf8c55a5f4a829735a5a96cacf982f230
95b433eed428afbb4ab32f0f2541774e939989c7
testing: support B.Context and F.Context CL 603959 added T.Context for #36532. The discussion on the proposal only mentions t.Context. However, the implementation of CL 603959 also added B.Context and F.Context. They were added to the API listing, and B.Context was mentioned in the release notes. Unfortunately, the ...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_context.txt", "patch": "@@ -0,0 +1,47 @@\n+[!fuzz] skip\n+[short] skip\n+env GOCACHE=$WORK/cache\n+\n+# Test fuzz.Context.\n+go test -vet=off context_fuzz_test.go\n+stdout ^ok\n+! stdout FAIL\n+\n+go test -vet=off -fuzz=Fuzz -fuzztime=1x context_fuzz_test.go\n...
2024-12-17T23:31:10
ollama/ollama
ff89ba90bc97e9f58b8378a664b904bbc94e6f26
6dcc5dfb9c0a033e4e8dde627d55580600418fb6
fixing broken AMD driver link (#11579)
[ { "path": "discover/amd_linux.go", "patch": "@@ -58,7 +58,7 @@ func AMDGetGPUInfo() ([]RocmGPUInfo, error) {\n \tdriverMajor, driverMinor, err := AMDDriverVersion()\n \tif err != nil {\n \t\t// TODO - if we see users crash and burn with the upstreamed kernel this can be adjusted to hard-fail rocm support an...
2025-07-30T19:02:54
electron/electron
03e68e2efeee34715a5b37e6f7065ac8487f2485
6fea35271c67c6ad69cf026560cb221054a505a8
fix: fix a crash in `safeStorage` on Linux (#33913) On Linux, `isEncryptionAvailable()` was crashing instead of returning a boolean before the 'ready' event was emitted by the app. The reason of the crash is that [`CreateKeyStorage()`](https://source.chromium.org/chromium/chromium/src/+/main:components/os_crypt/os_c...
[ { "path": "docs/api/safe-storage.md", "patch": "@@ -18,8 +18,8 @@ The `safeStorage` module has the following methods:\n \n Returns `boolean` - Whether encryption is available.\n \n-On Linux, returns true if the secret key is\n-available. On MacOS, returns true if Keychain is available.\n+On Linux, returns t...
2022-05-09T13:38:53
vercel/next.js
10c308ea2257cc06ffcf7550db076bd94c94d871
b0c4181305d381453c141c5abfd071a2930358a8
build: Update `swc_core` to `v23.1.0` again with macos build fix (#78940) ### What? Update swc_core to `v23.1.0` again. And add `MACOSX_DEPLOYMENT_TARGET=11.0`. ### Why? It's required to fix the build. ### How? Closes PACK-4544
[ { "path": ".github/workflows/build_reusable.yml", "patch": "@@ -97,6 +97,11 @@ env:\n NEXT_TEST_PREFER_OFFLINE: 1\n NEXT_CI_RUNNER: ${{ inputs.runs_on_labels }}\n \n+ # Without this environment variable, rust-lld will fail because some dependencies defaults to newer version of macOS by default.\n+ #\n...
2025-05-08T20:57:54
huggingface/transformers
22b40e67338e7735e7e62720a74d8c1562601b76
91d7b6456c5ef62d72ffd9faac5d21260b91df5b
[`fix`] Set input_modalities on various architectures that aren't just text (#44078) * Set input_modalities on various architectures that aren't just text * Set Qwen3OmniMoeTalkerModel input_modalities to audio
[ { "path": "src/transformers/models/qwen3_5/modeling_qwen3_5.py", "patch": "@@ -1086,6 +1086,7 @@ def forward(\n \n class Qwen3_5VisionModel(Qwen3_5PreTrainedModel):\n config: Qwen3_5VisionConfig\n+ input_modalities = (\"image\", \"video\")\n _no_split_modules = [\"Qwen3_5VisionBlock\"]\n _can...
2026-02-24T10:39:31
facebook/react
166f47a41e1396fcedf1eb7d324a30d414fc99f8
8192cd253d340554d151f853ed80626ce63dbca2
[snap] Fix snap ignored paths
[ { "path": "compiler/forget/packages/snap/src/compiler-worker.ts", "patch": "@@ -13,7 +13,7 @@ const originalConsoleError = console.error;\n // Try to avoid clearing the entire require cache, which (as of this PR)\n // contains ~1250 files. This assumes that no dependencies have global caches\n // that may n...
2023-06-08T18:32:22
electron/electron
90eb47f70ba0ba1b89933ba505f6cc8805411bcf
323f7d4c19b232ec5661d9d87fcecaf6918d8abf
fix: offscreen rendering crash on input select (#34069)
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -397,7 +397,7 @@ void OffScreenRenderWidgetHostView::ResetFallbackToFirstNavigationSurface() {\n \n void OffScreenRenderWidgetHostView::InitAsPopup(\n content::RenderWidgetHostView* parent_host_view,\n- const gfx::Rect& pos,\n...
2022-05-05T13:53:39
ollama/ollama
3515cc377ce2506c95a0ea408fd5d15d306fc6aa
bbf66c0b960be42936e861f13dd0284b2aa03b9d
docs: fix typos and remove trailing whitespaces (#11554)
[ { "path": "docs/api.md", "patch": "@@ -500,11 +500,11 @@ The `message` object has the following fields:\n - `thinking`: (for thinking models) the model's thinking process\n - `images` (optional): a list of images to include in the message (for multimodal models such as `llava`)\n - `tool_calls` (optional): ...
2025-07-28T18:19:13
vercel/next.js
b0c4181305d381453c141c5abfd071a2930358a8
29276c19741decf231ab1d01c42c996b2a976c46
perf(turbopack): Remove needless clone of sourcemap (#78972) ### What? Use `sourcemap::SourceMap::adjust_mapping` directly instead of relying on `swc_common`. ### Why? https://github.com/swc-project/swc/blob/6750459d9180048a39c11e14b02c9bfed251a12e/crates/swc_common/src/source_map.rs#L1385-L1388 ```rust if l...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/parse.rs", "patch": "@@ -114,11 +114,16 @@ pub fn generate_js_source_map(\n None\n };\n \n- let mut map = files_map.build_source_map_with_config(\n- &mappings,\n- input_map.as_ref(),\n- InlineSourcesContentConfig {},\n-...
2025-05-08T19:31:51
huggingface/transformers
91d7b6456c5ef62d72ffd9faac5d21260b91df5b
aa156b7fb677101f30d2848d9c26d10d87cd1769
Add processing tests for phi4 multimodal (#44234) * Fix tied weight keys sam2 video * add tests for phi4 processor
[ { "path": "src/transformers/models/phi4_multimodal/processing_phi4_multimodal.py", "patch": "@@ -58,7 +58,7 @@ def __call__(\n text: TextInput | list[TextInput],\n images: ImageInput | None = None,\n audio: AudioInput | None = None,\n- **kwargs: Unpack[ProcessingKwargs],\n+ ...
2026-02-23T22:08:11
facebook/react
8192cd253d340554d151f853ed80626ce63dbca2
5673672ff9fd8ab69b3ed4d5a083357471cfaa35
Fix missing memoization of scope-less variable being reassigned
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/ReactiveScopes/PropagateScopeDependencies.ts", "patch": "@@ -419,15 +419,12 @@ class Context {\n * current one as a {@link ReactiveScope.reassignments}\n */\n visitReassignment(place: Place): void {\n- const declaration = this.#dec...
2023-06-08T02:15:59
electron/electron
706d585eb8b2ba2fb396f1f673df9c61ad6161bc
5b648854d59180cc9d72c6def8849ec59489bba6
build: fix run-clang-format extension matching (#34076)
[ { "path": "script/run-clang-format.py", "patch": "@@ -55,8 +55,7 @@ def list_files(files, recursive=False, extensions=None, exclude=None):\n x for x in fpaths if not fnmatch.fnmatch(x, pattern)\n ]\n for fp in fpaths:\n- ext = os...
2022-05-05T08:41:52
ollama/ollama
764be7480f19f1749c518b21cead7c3a44c04b1d
b72e5adb14338f78937b103f0c8c668d5f4c4006
kvcache: Group shift operations into batches Currently, when we need to do a shift on the cache, it is one RoPE operation on the entire size of the cache (per layer). In some cases, this can create a compute graph that is larger than the forward pass since the forward pass is working in batches. Since we don't conside...
[ { "path": "kvcache/causal.go", "patch": "@@ -25,6 +25,9 @@ type Causal struct {\n \n \topts CausalOptions\n \n+\t// maxBatch is the largest batch that we might receive\n+\tmaxBatch int\n+\n \t// config controls mostly backend-specific optimizations\n \tconfig *ml.CacheConfig\n \n@@ -147,6 +150,7 @@ func (c ...
2025-07-25T21:50:05
vercel/next.js
29276c19741decf231ab1d01c42c996b2a976c46
ea30af4a38f9a24803b9fd70a39e23eef76009b6
Turbopack: properly replace `__dirname` and `__filename` (#78843) Replace `__dirname` and `__filename` references at compile time Our current approach of computing `__dirname` at runtime based on the module id is broken in production builds where numeric ids are used. Arguably it is incorrect in development builds a...
[ { "path": "turbopack/crates/turbopack-core/src/compile_time_info.rs", "patch": "@@ -1,6 +1,7 @@\n use anyhow::Result;\n+use serde::{Deserialize, Serialize};\n use turbo_rcstr::RcStr;\n-use turbo_tasks::{FxIndexMap, ResolvedVc, Vc};\n+use turbo_tasks::{trace::TraceRawVcs, FxIndexMap, NonLocalValue, ResolvedV...
2025-05-08T17:53:31
golang/go
95b433eed428afbb4ab32f0f2541774e939989c7
b2c0168893a7f27927630198cdf63911374035c3
debug/elf: adjust version API per issue discussion This updates the new version API for the discussion on #63952. Note that the current tests do not have symbols with hidden versions. Leaving that for later. For #63952 Change-Id: I1ad4b1e485429a216ba8e5b68f7f4299d120628f Reviewed-on: https://go-review.googlesource....
[ { "path": "api/go1.24.txt", "patch": "@@ -106,16 +106,6 @@ pkg debug/elf, const VER_FLG_INFO = 4 #63952\n pkg debug/elf, const VER_FLG_INFO DynamicVersionFlag #63952\n pkg debug/elf, const VER_FLG_WEAK = 2 #63952\n pkg debug/elf, const VER_FLG_WEAK DynamicVersionFlag #63952\n-pkg debug/elf, const VersionSco...
2024-12-17T19:31:17
facebook/react
910045696bb5f693acb77890e6750c5e4659b420
e6fae308e9300ca545003ac147cc7e4e541f561c
Fix:- Fixed dev tools inspect mode on Shadow dom (#26888) Fixes #26200 ### PR explanation I tried to induce the change by the `event.composed` to check whether the event was created in a ShadowRoot, And replaced `pointerOver` with `pointerMove`, pointerOver event did not fired correctly Before PR:- ht...
[ { "path": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js", "patch": "@@ -46,7 +46,7 @@ export default function setupHighlighter(\n window.addEventListener('mouseover', onMouseEvent, true);\n window.addEventListener('mouseup', onMouseEvent, true);\n window.addEventLi...
2023-06-07T15:38:38
ollama/ollama
b72e5adb14338f78937b103f0c8c668d5f4c4006
80b538e312c173d124fdcb91d40285b32e80d0a9
CONTRIBUTING: fix typo in commit message example (#11528)
[ { "path": "CONTRIBUTING.md", "patch": "@@ -65,7 +65,7 @@ continuation of the sentence:\n Examples:\n \n llm/backend/mlx: support the llama architecture\n- CONTRIBUTING: provide clairity on good commit messages, and bad\n+ CONTRIBUTING: provide clarity on good commit messages, and bad\n \n Ba...
2025-07-25T21:24:06
huggingface/transformers
f26814d9ec63842a381e521375bc8052c98199f2
c0773fefa653682dc74c4f771bb6232d9bbaab28
refactor _inner_training_loop to smaller methods (#44041) * refactor _inner_training_loop to smaller methods * address PR comments and remove unused args * move _train_batch_size * big update * move DummyScheduler * style * make it private * switch to kwargs_handlers * style * fix resuming * style * revert ...
[ { "path": "src/transformers/testing_utils.py", "patch": "@@ -1468,12 +1468,8 @@ def get_steps_per_epoch(trainer: Trainer) -> int:\n training_args = trainer.args\n train_dataloader = trainer.get_train_dataloader()\n \n- initial_training_values = trainer.set_initial_training_values(\n- args=...
2026-02-23T16:52:08
electron/electron
5b648854d59180cc9d72c6def8849ec59489bba6
2091343b78e5b3b865f406a72a4047df9a6486cf
fix: requestSingleInstanceLock API sometimes hangs (#33777)
[ { "path": "patches/chromium/feat_add_data_transfer_to_requestsingleinstancelock.patch", "patch": "@@ -282,7 +282,7 @@ index be2c417c07a4206fac4a9a6c03e516fd0493c942..78f74b0b21242553b6af98628dc48190\n return PROCESS_NOTIFIED;\n }\n diff --git a/chrome/browser/process_singleton_win.cc b/chrome/browse...
2022-05-04T17:30:30
vercel/next.js
5dfd866ed292acfd34063475ea22a001dcb0b1e9
7049b93e388c87b90f44600ba3f593816c2ebf3d
Treat _debugInfo as a wellknown property for sync request data access purposes (#78942) When we converted our request access APIs to async we supported sync access to make the adoption easier. We do have a list of certain builtin properties that exist on promises or are tested for in the course of runtime operations t...
[ { "path": "packages/next/src/shared/lib/utils/reflect-utils.ts", "patch": "@@ -40,6 +40,7 @@ export const wellKnownProperties = new Set([\n \n // React introspection\n 'displayName',\n+ '_debugInfo',\n \n // Common tested properties\n // fallthrough", "additions": 1, "deletions": 0, "la...
2025-05-08T15:43:23
golang/go
b2c0168893a7f27927630198cdf63911374035c3
b9e2ffdcd2520c136c4e98f67f0c714f989d31ab
crypto/internal/fips140/aes/gcm: use aes.EncryptBlockInternal on ppc64x and s390x Left them out of CL 636775 because I did a search by reference, which does not span architectures. Fixes crypto/cipher.TestFIPSServiceIndicator failure on ppc64x and s390x. For #69536 Change-Id: I34b49705a7099066e8c3871a7a34b394a9298e...
[ { "path": "src/crypto/internal/fips140/aes/gcm/gcm_ppc64x.go", "patch": "@@ -51,7 +51,7 @@ func initGCM(g *GCM) {\n \t}\n \n \thle := make([]byte, gcmBlockSize)\n-\tg.cipher.Encrypt(hle, hle)\n+\taes.EncryptBlockInternal(&g.cipher, hle, hle)\n \n \t// Reverse the bytes in each 8 byte chunk\n \t// Load littl...
2024-12-17T16:55:01
facebook/react
4e22fa6451060476ca3cef40631573d8496b49d9
5ebb7f1a8e7b72626ae430da9bdb7b4f8d6ab71d
Try to fix test262 in ci
[ { "path": "compiler/.github/workflows/test262.yml", "patch": "@@ -22,7 +22,7 @@ jobs:\n working-directory: forget\n - id: test262\n name: Run test262\n- run: echo results=\"$(yarn run --silent test262:ci)\" >> $GITHUB_OUTPUT\n+ run: echo results=$(yarn --silent workspace ...
2023-06-06T19:25:20
ollama/ollama
80b538e312c173d124fdcb91d40285b32e80d0a9
4f8a0166ccc540346dd160796dacdaceac1fde73
cli: catch upstream errors gracefully (#11512)
[ { "path": "cmd/cmd.go", "patch": "@@ -1137,6 +1137,14 @@ func chat(cmd *cobra.Command, opts runOptions) (*api.Message, error) {\n \t\tif errors.Is(err, context.Canceled) {\n \t\t\treturn nil, nil\n \t\t}\n+\n+\t\t// this error should ideally be wrapped properly by the client\n+\t\tif strings.Contains(err.Er...
2025-07-24T05:16:55
huggingface/transformers
c0773fefa653682dc74c4f771bb6232d9bbaab28
fb086ef707b5e707a1983741ab3b3a725ae55735
[docs] fix broken chat_templating links in tasks docs (#44115) Links in docs/source/en/tasks/ used ./chat_templating which resolves within the tasks/ subdirectory. Corrected to ../chat_templating. Co-authored-by: Deep-unlearning <steven@hugginface.co>
[ { "path": "docs/source/en/tasks/any_to_any.md", "patch": "@@ -44,7 +44,7 @@ model = AutoModelForMultimodalLM.from_pretrained(\n processor = AutoProcessor.from_pretrained(\"Qwen/Qwen2.5-Omni-3B\")\n ```\n \n-These models typically include a [chat template](./chat_templating) to structure conversations across...
2026-02-23T16:27:56
electron/electron
349cd98b0a5517ffeb3bf2c277af4b2bae130565
747dfe585151e8971ae4b2a1aa002708d2faf12b
test: fix nativeModulesEnabled in spec/webview-spec.js (#34027)
[ { "path": "spec/webview-spec.js", "patch": "@@ -7,7 +7,7 @@ const { emittedOnce, waitForEvent } = require('./events-helpers');\n const { ifdescribe, ifit, delay } = require('./spec-helpers');\n \n const features = process._linkedBinding('electron_common_features');\n-const nativeModulesEnabled = process.env...
2022-05-04T06:56:45
vercel/next.js
48e739089cb28d55fbbff1fbeba871c1399267d4
39f1f9d807cd9f5fd04470bf2b08dd01c6326a45
Docs: Fix headings in Getting Started (#78965)
[ { "path": "docs/01-app/01-getting-started/02-project-structure.mdx", "patch": "@@ -297,13 +297,13 @@ Next.js supports storing application code (including `app`) inside an optional [\n height=\"687\"\n />\n \n-### Examples\n+## Examples\n \n The following section lists a very high-level overview of common ...
2025-05-08T15:06:15
ollama/ollama
3bac5cba60b08afb1164611dac3b710583f3b241
4151ef8cf7d2f2c2dc6bd5fab77b5a45a388be29
Fix GetModelInfo (#11496) --------- Co-authored-by: Richard Lyons <frob@cloudstaff.com>
[ { "path": "cmd/interactive.go", "patch": "@@ -385,18 +385,21 @@ func generateInteractive(cmd *cobra.Command, opts runOptions) error {\n \t\t\t\tcase \"modelfile\":\n \t\t\t\t\tfmt.Println(resp.Modelfile)\n \t\t\t\tcase \"parameters\":\n+\t\t\t\t\tfmt.Println(\"Model defined parameters:\")\n \t\t\t\t\tif res...
2025-07-22T20:40:47
facebook/react
39d837d9185fa2543c5fd2dff0a9e97176aae49b
66ca1c75cb6d205b88f7761d432a84710f0b1683
Update fixtures from workspace rebase I updated these yesterday, looks like they got added back in the workspace PR. Rebases are hard, all good!
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/_bug.capturing-reference-changes-type.expect.md", "patch": "@@ -1,41 +0,0 @@\n-\n-## Input\n-\n-```javascript\n-function component(a) {\n- let x = { a };\n- let y = 1;\n- (function () {\n- y = x;\n- })();\n-...
2023-06-05T18:16:14
golang/go
8790372a8d7e777d23d6b77d248318d01f4d7c4d
b057b8872d8297ec9ccbfd9d29dad51dff795846
cmd, go: fix some typos Change-Id: I0fd54ae5294eb4ef30cdef05adb8825f69077b14 GitHub-Last-Rev: ccfa48cbe4525dc2bd60e9ac7e2c150e480ba13f GitHub-Pull-Request: golang/go#70823 Reviewed-on: https://go-review.googlesource.com/c/go/+/635915 Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Robert Griesemer <gri@go...
[ { "path": "src/cmd/compile/internal/types2/README.md", "patch": "@@ -56,7 +56,7 @@ The tests are in:\n Tests are .go files annotated with `/* ERROR \"msg\" */` or `/* ERRORx \"msg\" */`\n comments (or the respective line comment form).\n For each such error comment, typechecking the respective file is expec...
2024-12-17T12:50:44
electron/electron
658407df7aa5300091028a37b42f9914940ab21c
08937334966fa484539252b21758ea38745dd60c
test: fix require('echo') -> require('@electron-ci/echo') (#34026)
[ { "path": "spec/fixtures/pages/native-module.html", "patch": "@@ -2,7 +2,7 @@\n <body>\n <script type=\"text/javascript\" charset=\"utf-8\">\n var path = require('path');\n- console.log(typeof require(path.join(__dirname, '..', '..', '..', 'spec-main', 'node_modules', 'echo')));\n+ console.log(typeof re...
2022-05-03T15:49:01
huggingface/transformers
a10c2cea742798b4e52c42a687744790178f3fea
be0b2d2a686cb0ad54185acb28166b0ec6fbca7c
Docs(it): fix typo in sentencepiece install command (#44218) Docs(it): fix sentencepiece install typo Co-authored-by: matisgagneux21 <matisgagneux21@users.noreply.github.com>
[ { "path": "docs/source/it/migration.md", "patch": "@@ -79,7 +79,7 @@ pip install transformers[sentencepiece]\n ```\n o\n ```bash\n-pip install transformers stentencepiece\n+pip install transformers sentencepiece\n ```\n #### 3. L'architettura delle repo è stato aggiornata in modo che ogni modello abbia la p...
2026-02-23T15:04:48
facebook/react
66ca1c75cb6d205b88f7761d432a84710f0b1683
ad32811b649985322528483596a2cbb88451b080
Fix dropped constant declaration bug
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/Optimization/ConstantPropagation.ts", "patch": "@@ -81,6 +81,23 @@ export function constantPropagation(fn: HIRFunction): void {\n }\n \n function applyConstantPropagation(fn: HIRFunction): boolean {\n+ // Track the set of identifiers which a...
2023-06-05T18:08:29
ollama/ollama
bdd9d22dfd9798cad0b17e812e251f9af4c30f12
5fc38d042ff53145026e51027c99a35a08c303ee
tools: fix parsing issue when a tool name is a substring of another (#11456) Co-authored-by: frob <rick+github@frob.com.au>
[ { "path": "tools/tools.go", "patch": "@@ -115,21 +115,7 @@ func (p *Parser) findTag() (int, bool) {\n // parseToolCall finds the next complete tool call in the buffer\n // incrementing n and advancing the buffer.\n func (p *Parser) parseToolCall() *api.ToolCall {\n-\tvar tool *api.Tool\n-\tvar end int = len...
2025-07-20T21:55:14
vercel/next.js
07f815c46a0d01663fd1dae07645349cbd742490
3bf570d84dc5bd0836f83c347cc5db4f697350df
chore(test/e2e): Remove stale TODO comment from webpack persistent caching test (#78946) It looks like this is a stale comment from https://github.com/vercel/next.js/pull/78944 where this was fixed.
[ { "path": "test/e2e/persistent-caching/persistent-caching.test.ts", "patch": "@@ -55,19 +55,16 @@ describe('persistent-caching', () => {\n \n {\n const browser = await next.browser('/')\n- // TODO Persistent Caching for webpack dev server is broken\n expect(await browser.elementByCss('m...
2025-05-08T13:52:31
golang/go
4ac8f552e95521d292cc18ccc546739d41283b31
236a0b4ffb79854546b9f437499092cec23a5725
syscall, internal/syscall/unix: fix fstatat on linux/mips64 On linux/mips64, the syscall.Stat_t struct does not match the kernel version of the struct. Functions that operate on a Stat_t translate between it and the kernel struct. The fstatat function was not doing this translation. Make it do so. Export a syscall.F...
[ { "path": "src/internal/syscall/unix/at_fstatat.go", "patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build dragonfly || (linux && !loong64) || netbsd || (openbsd && mips64)\n+//go:build dragonfly || (linux && !(l...
2024-12-03T20:22:49
electron/electron
f887000d505cb6dbc4d195c03f38cef943f135fd
7dee5179cb0f4a79056204a243aa3317fbe711a6
fix: make BrowserWindow#isFocused() return false when blur() is called on macOS (#33734) The isFocused() method on macOS works by checking if the selected BrowserWindow is a key window. Unfortunately, this didn't work well with blur() because it wasn't calling any macOS APIs that would change the key status of the ...
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -507,6 +507,7 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n [[NSApplication sharedApplication] activateIgnoringOtherApps:NO];\n [window_ makeKeyAndOrderFront:nil];\n } else {\n+ [window_ orderOut:nil];\n [window_ orde...
2022-05-03T07:39:18