repo
stringclasses
10 values
pr_number
int64
7
155k
title
stringlengths
4
137
body
stringlengths
0
68.4k
buggy_commit
stringlengths
40
40
fix_commit
stringlengths
40
40
buggy_distance
int64
1
30
confidence
stringclasses
3 values
files
listlengths
1
5
nodejs/node
61,179
doc: correct options for net.Socket class and socket.connect
blockList, keepAlive, keepAliveInitialDelay and noDelay are wrongly documented for socket.connect options and missing on net.Socket constructor options documentation Fixes: https://github.com/nodejs/node/issues/59823
null
879b95efeaf433939df0d47e044cce7f7037dc59
null
low
[ { "filename": "doc/api/net.md", "patch": "@@ -759,8 +759,17 @@ changes:\n automatically end the writable side when the readable side ends. See\n [`net.createServer()`][] and the [`'end'`][] event for details. **Default:**\n `false`.\n+ * `blockList` {net.BlockList} `blockList` can be used for d...
vuejs/vue
8,229
fix(types): add refInFor to VNodeData
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
496635e7c9e56b30c3993c4c1dcb27559327e999
bfd722bb5d4a489a7c9f9b0f6681bf6f83f21bb5
2
medium
[ { "filename": "types/test/options-test.ts", "patch": "@@ -176,7 +176,8 @@ Vue.component('component', {\n fontSize: '14px'\n },\n key: 'myKey',\n- ref: 'myRef'\n+ ref: 'myRef',\n+ refInFor: true\n }, [\n createElement(),\n createElement(\"div\", \"message\")...
ollama/ollama
9,204
ml: Abstract attention out of model definitions
There are two benefits to doing this: - Provide a library function that models can use, reducing code for each model implementation - Enables a single place to drop in optimized implementations of attention based on the backend or other factors. One is provided for GGML. On CUDA this improves token generation ra...
2192a28eedc24398c7f274a15617341389b6c143
f53f4198c36d0a943de598ad91a20baa9481c5c5
1
medium
[ { "filename": "ml/backend.go", "patch": "@@ -111,6 +111,26 @@ type Tensor interface {\n \tCopy(ctx Context, t2 Tensor) Tensor\n }\n \n+// ScaledDotProductAttention implements a fused attention\n+// operation equivalent to following code on a tensor named\n+// query:\n+//\n+// kq := key.MulmatFullPrec(ctx, q...
facebook/react
33,314
Remove leftover Rust script
For now we removed Rust from the codebase, remove this leftover script. Also remove some dupes and Rust related files from `.gitignore`.
null
d38c7e10d3625c550744ce36c623a73c15c2b5d8
null
low
[ { "filename": "compiler/.gitignore", "patch": "@@ -1,28 +1,14 @@\n .DS_Store\n .spr.yml\n \n-# Generated by Cargo\n-# will have compiled files and executables\n-debug/\n-target/\n-\n-# These are backup files generated by rustfmt\n-**/*.rs.bk\n-\n-# MSVC Windows builds of rustc generate these, which store de...
ollama/ollama
9,259
ml/backend/ggml: fix rms norm
e5bcc51ae199116a635d74be3a510c5aeeb2894a
2192a28eedc24398c7f274a15617341389b6c143
3
high
[ { "filename": "ml/backend/ggml/ggml.go", "patch": "@@ -485,7 +485,7 @@ func (t *Tensor) LayerNorm(ctx ml.Context, w, b ml.Tensor, eps float32) ml.Tenso\n }\n \n func (t *Tensor) RMSNorm(ctx ml.Context, w ml.Tensor, eps float32) ml.Tensor {\n-\treturn (&Tensor{t: C.ggml_norm(ctx.(*Context).ctx, t.t, C.float(...
facebook/react
33,308
[Fizz] Handle nested SuspenseList
Follow up to #33306. If we're nested inside a SuspenseList and we have a row, then we can point our last row to block the parent row and unblock the parent when the last child unblocks.
5dc1b212c330b6f456789f8d58e0f87abefbb86c
c4676e72a630f3e93634c2b004b3be07b17a79c8
3
medium
[ { "filename": "packages/react-dom/src/__tests__/ReactDOMFizzSuspenseList-test.js", "patch": "@@ -324,4 +324,77 @@ describe('ReactDOMFizSuspenseList', () => {\n </div>,\n );\n });\n+\n+ // @gate enableSuspenseList\n+ it('waits for a nested SuspenseList to complete before resolving \"forwards\"'...
huggingface/transformers
43,137
Fix Fuyu processor width dimension bug in `_get_num_multimodal_tokens`
# What does this PR do? This PR fixes a critical bug in the Fuyu processor's `_get_num_multimodal_tokens` method where the image width calculation incorrectly uses the height dimension. ## The Bug In `src/transformers/models/fuyu/processing_fuyu.py` at line 629, the code was: ```python image_unpadded_h = m...
null
474bbf59b3f4f77091f39625077aa25ac4bd4072
null
low
[ { "filename": "src/transformers/models/fuyu/processing_fuyu.py", "patch": "@@ -625,7 +625,7 @@ def _get_num_multimodal_tokens(self, image_sizes=None, **kwargs):\n optimal_scale_factor = min(height_scale_factor, width_scale_factor)\n \n image_unpadded_h = min(int(image_size[0]...
electron/electron
49,406
fix: try clearing `InspectableWebContents` delegate earlier
#### Description of Change Closes https://github.com/electron/electron/issues/34042 Fixes a crash in `WebContents::DevToolsOpened()` that could occur when the DevTools frontend fires its `loadCompleted` callback while the WebContents destructor is running. The `DevToolsEmbedderMessageDispatcher` uses `base::Unret...
null
5bd2938f6af2ef9060772796f02c3ac9c80d5cdb
null
low
[ { "filename": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1051,6 +1051,9 @@ void WebContents::InitWithWebContents(\n }\n \n WebContents::~WebContents() {\n+ if (inspectable_web_contents_)\n+ inspectable_web_contents_->GetView()->SetDelegate(nullptr);\n+\n if (owner_window_) {\n ...
ollama/ollama
9,272
doc(README): add `RockChinQ/LangBot` to integrations list
Thank you for your incredible work. Our project [LangBot](https://github.com/RockChinQ/LangBot) is a platform for building instant messaging bots, it's free and supports multiple messaging platforms (e.g. Telegram, Discord, WeChat ...). Currently has up to 8000 stars and 30+ contributors.
3d4cc7833c21bf9189cb1d3fa8365997e46fad33
5d81c1a1842712e218d0311546037d152502b2c0
7
medium
[ { "filename": "README.md", "patch": "@@ -385,6 +385,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [AntSK](https://github.com/AIDotNet/AntSK) (Out-of-the-box & Adaptable RAG Chatbot)\n - [MaxKB](https://github.com/1Panel-dev/MaxKB/) (Ready-to-use & flexible RAG Chatbot)\n - [yla](htt...
facebook/react
33,299
[Fiber] Support AsyncIterable children in SuspenseList
We support AsyncIterable (more so when it's a cached form like in coming from Flight) as children. This fixes some warnings and bugs when passed to SuspenseList. Ideally SuspenseList with `tail="hidden"` should support unblocking before the full result has resolved but that's an optimization on top. We also might...
462d08f9ba41d48ab36bf405235c1c22023603dc
4c6967be290fc31182c61cfdac19915fdb16aa60
4
medium
[ { "filename": "packages/react-reconciler/src/ReactChildFiber.js", "patch": "@@ -13,6 +13,7 @@ import type {\n Thenable,\n ReactContext,\n ReactDebugInfo,\n+ SuspenseListRevealOrder,\n } from 'shared/ReactTypes';\n import type {Fiber} from './ReactInternalTypes';\n import type {Lanes} from './ReactFib...
ggml-org/llama.cpp
20,173
ggml webgpu: faster normal quant and some k-quant matrix operations, better shader parameter handling
TLDR: The WebGPU implementation is pretty fast now for some quantization types, and hopefully it's more stable/works on a decent number of devices now. Try this code out in wllama here: https://reeselevine.github.io/wllama/. At least on my machine, it mostly seems to outperform WebLLM and OnnxRuntimeWeb (through transf...
null
aa2d278a11124bc0edcd103a1307ffde12985572
null
low
[ { "filename": "ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp", "patch": "@@ -42,11 +42,20 @@\n #define WEBGPU_MUL_MAT_SUBGROUP_MATRIX_N 2\n \n // Matrix-vector multiplication parameters\n-#define WEBGPU_MUL_MAT_VEC_WG_SIZE 256\n+#define WEBGPU_MUL_MAT_VEC_WG_SIZE 256\n+\n // Must be multiple of 4 t...
vuejs/vue
8,192
allow functional components to return multiple VNodes (fix #8191)
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
99a51b452fa13fc4392e87215a8c3024adf5f710
bf2e2ed159f680cd4e230427ce94739c657c1b61
27
medium
[ { "filename": "types/options.d.ts", "patch": "@@ -113,7 +113,7 @@ export interface FunctionalComponentOptions<Props = DefaultProps, PropDefs = Pro\n props?: PropDefs;\n inject?: InjectOptions;\n functional: boolean;\n- render?(this: undefined, createElement: CreateElement, context: RenderContext<Prop...
facebook/react
33,306
[Fizz] Support basic SuspenseList forwards/backwards revealOrder
Basically we track a `SuspenseListRow` on the task. These keep track of "pending tasks" that block the row. A row is blocked by: - First itself completing rendering. - A previous row completing. - Any tasks inside the row and before the Suspense boundary inside the row. This is mainly because we don't yet know if ...
6060367ef8a7a5bac12e0f830367bb13626db83a
5dc1b212c330b6f456789f8d58e0f87abefbb86c
3
medium
[ { "filename": "fixtures/ssr/src/components/LargeContent.js", "patch": "@@ -1,8 +1,12 @@\n-import React, {Fragment, Suspense} from 'react';\n+import React, {\n+ Fragment,\n+ Suspense,\n+ unstable_SuspenseList as SuspenseList,\n+} from 'react';\n \n export default function LargeContent() {\n return (\n- ...
vercel/next.js
88,600
[CC] Fix dev validation error from server action bound args
In Cache Components, bound args encryption needs to be cached (and tracked with cacheSignal) because it's tasky. We use the serialized bound args themselves as a cache key. However, in dev, the key ends up containing debug info (in particular, timing information) so it's different every time . This causes a cache miss ...
null
bd90b6c581532788f8f1492d03a2587f8e17fa88
null
low
[ { "filename": "packages/next/src/server/app-render/encryption.ts", "patch": "@@ -153,11 +153,35 @@ export const encryptActionBoundArgs = React.cache(\n })\n }\n \n+ const prerenderResumeDataCache = workUnitStore\n+ ? getPrerenderResumeDataCache(workUnitStore)\n+ : null\n+ const ren...
vuejs/vue
8,177
fix(server): use path.posix.join to generate public path, fix #8167
fix #8167 **What kind of change does this PR introduce?** (check at least one) - [x] Bugfix - [ ] Feature - [ ] Code style update - [ ] Refactor - [ ] Build-related changes - [ ] Other, please describe: **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No If yes, please des...
7597bb06e0d9ba142f894de5b90b2bf2d7765e08
46b8d2c59dc259995a71662229ed52b8b8beeb38
9
medium
[ { "filename": "src/server/template-renderer/index.js", "patch": "@@ -60,7 +60,7 @@ export default class TemplateRenderer {\n // extra functionality with client manifest\n if (options.clientManifest) {\n const clientManifest = this.clientManifest = options.clientManifest\n- this.publicPath...
nodejs/node
61,099
lib: gbk decoder is gb18030 decoder per spec
Tracking: #61041 Spec ref: https://encoding.spec.whatwg.org/#gbk-decoder Without this, TextDecoder fails tests on `gbk` encoding
null
9f06e7223442ad52773842271f6dc453e4eb5231
null
low
[ { "filename": "lib/internal/encoding.js", "patch": "@@ -430,7 +430,9 @@ function makeTextDecoderICU() {\n \n #prepareConverter() {\n if (this[kHandle] !== undefined) return;\n- const handle = getConverter(this[kEncoding], this[kFlags]);\n+ let icuEncoding = this[kEncoding];\n+ if (i...
huggingface/transformers
43,068
[Bug] qwen2_5_omni: cap generation length to be less than the max_position_embedding in DiT
# What does this PR do? <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully reflects the extent of your awesome contribution. Then, please replace this w...
c154b0218ab78c2df076ab8cf4a7bde1cd2bf40f
0d8f1870555614693166cfceefeb0f4231c1d4be
22
medium
[ { "filename": "src/transformers/models/qwen2_5_omni/modeling_qwen2_5_omni.py", "patch": "@@ -3676,15 +3676,24 @@ def sample(\n guidance_scale=0.5,\n sway_coefficient=-1.0,\n ):\n- noise_initialization = torch.randn([1, 30000, self.mel_dim], dtype=reference_mel_spectrogram.dtype)\n...
ggml-org/llama.cpp
20,347
common: reduce level of content parser warning message to avoid log spam on non-debug verbosity
Fixes #20309
f76565db92272d98976d5b8b1809ebe1e079f8cd
6c770d16ca6870a9a419e37431f84f8b820df0c5
19
medium
[ { "filename": "common/chat.cpp", "patch": "@@ -1620,8 +1620,8 @@ common_chat_msg common_chat_peg_parse(const common_peg_arena & src_pars\n build_chat_peg_parser([](common_chat_peg_builder & p) { return p.content(p.rest()) + p.end(); }) :\n src_parser;\n \n- if (src_parser.emp...
facebook/react
33,294
[eslint-plugin-react-hooks] add experimental_autoDependenciesHooks option
4448b18760d867f9e009e810571e7a3b8930bb19
a3abf5f2f835ad0c61e2325f5cbac2d1d9045517
4
medium
[ { "filename": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -515,6 +515,22 @@ const tests = {\n `,\n options: [{additionalHooks: 'useCustomEffect'}],\n },\n+ {\n+ // behaves like no deps\n+ code: normalizeIndent`\n+ function...
ollama/ollama
9,235
New engine performance improvements
This series improves performance by bringing the new engine more inline with how llama.cpp uses GGML. A few notes: - The scheduler changes were kept relatively minimal because improvements to split backends (multi-GPU/GPU-CPU hybrid) are expected soon. Therefore this keeps the same structure as before with respect to...
null
5c5535c0648fb12b174246eb2524e862ae2d2d5b
null
low
[ { "filename": "model/models/llama/model.go", "patch": "@@ -120,11 +120,19 @@ type Layer struct {\n \tMLP *MLP\n }\n \n-func (l *Layer) Forward(ctx ml.Context, hiddenState, positionIDs ml.Tensor, cache kvcache.Cache, opts *Options) ml.Tensor {\n+func (l *Layer) Forward(ctx ml.Context, hiddenState, ...
electron/electron
49,423
fix: try clearing `InspectableWebContents` delegate earlier
Backport of #49406 See that PR for details. Notes: Fixed a potential race condition crash when opening DevTools.
null
5f630c7de7e3b1632f3f3716f1e609ef9e0703d7
null
low
[ { "filename": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1037,6 +1037,9 @@ void WebContents::InitWithWebContents(\n }\n \n WebContents::~WebContents() {\n+ if (inspectable_web_contents_)\n+ inspectable_web_contents_->GetView()->SetDelegate(nullptr);\n+\n if (owner_window_) {\n ...
huggingface/transformers
43,147
[CB] Minor fix in kwargs
This PR fixes an error in the `fork` method of the continuous batching API. The arguments name were lacking a `_`
3a275d3581c0ecf962f7412aa764c2047331fd6b
b891c41e402d461eba961a5da9a6c1d5f341aefa
1
medium
[ { "filename": "src/transformers/generation/continuous_batching/requests.py", "patch": "@@ -242,13 +242,13 @@ def fork(self, new_request_id: str) -> \"RequestState\":\n generated_tokens=self.generated_tokens[:],\n allocated_blocks=self.allocated_blocks,\n position_offset=s...
facebook/react
33,298
Move SuspenseListProps into a shared/ReactTypes
So they can be shared by server. Incorporates the types from definitely typed too.
96eb84e493c4ff2c280990659057164c0f16bbb8
462d08f9ba41d48ab36bf405235c1c22023603dc
9
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -14,6 +14,9 @@ import type {\n ViewTransitionProps,\n ActivityProps,\n SuspenseProps,\n+ SuspenseListProps,\n+ SuspenseListRevealOrder,\n+ SuspenseListTailMode,\n TracingMarkerProps,\n CacheProps,\n ProfilerPro...
vercel/next.js
88,576
[ci] Don't retry/notify for failed deploy tests with custom tarball URLs
Fixes a regression from #85981 where manual deploy tests with custom tarball URLs incorrectly trigger retries and Slack notifications. Now only release-triggered runs and manually-triggered canary tests are retried/reported.
null
f5c8b6aeb8065e3dd1238744dae4dd3ed6251c12
null
low
[ { "filename": ".github/workflows/retry_deploy_test.yml", "patch": "@@ -18,7 +18,10 @@ jobs:\n # Retry the test-e2e-deploy-release workflow once\n if: >-\n ${{\n- startsWith(github.event.workflow_run.display_title, 'test-e2e-deploy') &&\n+ (\n+ github.event.workflow_run.e...
huggingface/transformers
43,087
Make projection LayerNorm configurable in LFM2-VL
Make projection LayerNorm configurable in LFM2-VL models.
ccc7d90bcb4a94cd0888925c6abac941f3b8151d
3c2517727ce28a30f5044e01663ee204deb1cdbe
7
medium
[ { "filename": "src/transformers/models/lfm2_vl/configuration_lfm2_vl.py", "patch": "@@ -46,6 +46,8 @@ class Lfm2VlConfig(PreTrainedConfig):\n The hidden size of the multimodal projector.\n projector_bias (`bool`, *optional*, defaults to `True`):\n Whether to use bias in the m...
vuejs/vue
8,140
Fix: block unnecessary input event on input tag placeholder in IE
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> hi I encountered the same problem(#7138) during development. In my case, it occu...
null
61c32cc6732aaf225d868cee79872d9d9fdd5dcc
null
low
[ { "filename": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -97,7 +97,7 @@ function baseSetAttr (el, key, value) {\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n- el.tagName === 'TEXTAREA' &&\n+ (el.tagName === 'TEXTAREA' || el.tagName === 'INPUT') &&\n ke...
ollama/ollama
9,256
ollamarunner: Pass runner performance parameters to backends
Currently the following parameters are in the runner but not used: - numGPULayers - mainGPU - threads - tensorSplit This passes them through to the backend, which is where they would actually get used. However, the GGML backend does not yet do anything with them.
d006e1e09be4d3da3fb94ab683aa18822af4b956
bd6a7d5e6416c4c2aeba07233303385254395b6c
24
medium
[ { "filename": "ml/backend.go", "patch": "@@ -26,19 +26,34 @@ type Backend interface {\n \tSystemInfo() string\n }\n \n-var backends = make(map[string]func(*os.File) (Backend, error))\n+// BackendParams controls how the backend loads and executes models\n+type BackendParams struct {\n+\t// NumThreads sets th...
nodejs/node
61,170
doc: document error event on readline InterfaceConstructor
Aims to document the `'error'` event introduced by cb3020d in v16.0.0. Fixes: https://github.com/nodejs/node/issues/58289 Fixes: https://github.com/nodejs/node/issues/61037
null
0804ec4cfefefab3dd45d05eab671999ae345ea1
null
low
[ { "filename": "doc/api/readline.md", "patch": "@@ -102,6 +102,17 @@ The listener function is called without passing any arguments.\n The `InterfaceConstructor` instance is finished once the `'close'` event is\n emitted.\n \n+### Event: `'error'`\n+\n+<!-- YAML\n+added: v16.0.0\n+-->\n+\n+The `'error'` event...
facebook/react
33,295
[Fizz] Should be considered complete inside onShellReady callback
We decremented `allPendingTasks` after invoking `onShellReady`. Which means that in that scope it wasn't considered fully complete. Since the pattern for flushing in Node.js is to start piping in `onShellReady` and that's how you can get sync behavior, this led us to think that we had more work left to do. For examp...
65b5aae010002ef88221cc4998711eaef6068006
c250b7d980864be49facf2306f06455e7f9e305d
5
medium
[ { "filename": "packages/react-dom/src/__tests__/ReactDOMFizzServerNode-test.js", "patch": "@@ -67,6 +67,21 @@ describe('ReactDOMFizzServerNode', () => {\n expect(output.result).toMatchInlineSnapshot(`\"<div>hello world</div>\"`);\n });\n \n+ it('flush fully if piping in on onShellReady', async () => ...
ggml-org/llama.cpp
19,968
Fix logic for retrieving schema items in json_schema_to_grammar.py
If `schema['items']` is `{}` and `prefixItems not in schema`, as `{}` is Falsy, the original code here will raise an error like `KeyError: 'prefixItems'`. I think if `schema['items']` is `{}`, then `items` should just be `{}`
null
8d880ac012003de6fcddff0e9108e75703e68d8a
null
low
[ { "filename": "examples/json_schema_to_grammar.py", "patch": "@@ -633,7 +633,7 @@ def add_component(comp_schema, is_required):\n return self._add_rule(rule_name, self._build_object_rule(properties, required, hybrid_name, additional_properties=None))\n \n elif schema_type in (None, 'array...
vuejs/vue
8,114
fix(compiler): maybeComponent should return true when "is" attribute exists
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
76fd45c9fd611fecfa79997706a5d218de206b68
aef2a5f3dbd5e52ec9d5ce026d7b858539057186
7
medium
[ { "filename": "src/compiler/codegen/index.js", "patch": "@@ -26,7 +26,7 @@ export class CodegenState {\n this.dataGenFns = pluckModuleFunction(options.modules, 'genData')\n this.directives = extend(extend({}, baseDirectives), options.directives)\n const isReservedTag = options.isReservedTag || n...
vuejs/vue
8,113
Update config.js use string literals
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [ ] Bugf...
52f9d3f492b9e5e6ec30f4986201ae774e5c460a
f5b5b3c96f00a321e0ba41f0d33a42b2338ef750
9
medium
[ { "filename": "scripts/config.js", "patch": "@@ -10,8 +10,8 @@ const weexVersion = process.env.WEEX_VERSION || require('../packages/weex-vue-fr\n \n const banner =\n '/*!\\n' +\n- ' * Vue.js v' + version + '\\n' +\n- ' * (c) 2014-' + new Date().getFullYear() + ' Evan You\\n' +\n+ ` * Vue.js v${version}...
electron/electron
48,398
fix: MacOS 26 Tahoe - stop overriding private cornerMask API to fix WindowServer GPU load
Backport of #48376 See that PR for details. Notes: Fixed excessive WindowServer GPU usage on macOS Tahoe 26.
null
81db417caaa937d31c43d144970050c8f271ad5e
null
low
[ { "filename": "shell/browser/native_window_mac.mm", "patch": "@@ -1347,7 +1347,6 @@ static bool FromV8(v8::Isolate* isolate,\n [maskImage setCapInsets:NSEdgeInsetsMake(radius, radius, radius, radius)];\n [maskImage setResizingMode:NSImageResizingModeStretch];\n [vibrantView setMaskImage:ma...
vuejs/vue
7,940
fix(shared): check dates in looseEqual
Fix #7928 thanks to @w3cj for the initial version. This one is using getTime instead of toUTCString because it is much faster to compare Initially, I wanted to keep your commit but it wasn't yours (somehow) from a git perspective, so you didn't appear in the history 🙁 , I ended up creating a single new commit ...
76fd45c9fd611fecfa79997706a5d218de206b68
db7287c23b11bdc032fb0786e6617f3c6c40c835
3
medium
[ { "filename": "src/shared/util.js", "patch": "@@ -286,6 +286,8 @@ export function looseEqual (a: any, b: any): boolean {\n return a.length === b.length && a.every((e, i) => {\n return looseEqual(e, b[i])\n })\n+ } else if (a instanceof Date && b instanceof Date) {\n+ re...
ggml-org/llama.cpp
20,335
models : fix assert in mamba2 (cont)
cont #20270 I think we actually only need `d_inner % d_state == 0`.
43e1cbd6c1b407fcb1fb0196276265e774986035
1274fbee9e185d41447bf6edb739e7240c0319a2
17
medium
[ { "filename": "src/models/mamba-base.cpp", "patch": "@@ -168,8 +168,9 @@ ggml_tensor * llm_build_mamba_base::build_mamba2_layer(llm_graph_input_rs * inp,\n GGML_ASSERT(n_seqs != 0);\n GGML_ASSERT(ubatch.equal_seqs());\n GGML_ASSERT(ubatch.n_tokens == n_seq_tokens * n_seqs);\n- GGML_ASSERT(d_i...
ollama/ollama
9,255
Add missing function parens.
null
7c168b08c9522f56290478fba0267118d20f7ec4
null
low
[ { "filename": "server/sched.go", "patch": "@@ -179,7 +179,7 @@ func (s *Scheduler) processPending(ctx context.Context) {\n \t\t\t\t\t\tif allReliable {\n \t\t\t\t\t\t\t// HACK\n \t\t\t\t\t\t\tos.Setenv(\"OLLAMA_MAX_LOADED_MODELS\", strconv.Itoa(defaultModelsPerGPU*len(gpus)))\n-\t\t\t\t\t\t\tslog.Debug(\"up...
vercel/next.js
88,546
[cna] Avoid error with out-of-box Netlify config
<!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentation - Run `pnpm pr...
null
b8161d9e4cb5072f86098218455a197544cbe585
null
low
[ { "filename": "packages/create-next-app/templates/index.ts", "patch": "@@ -321,9 +321,9 @@ export const installTemplate = async ({\n \n if (packageManager === \"pnpm\") {\n const pnpmWorkspaceYaml = [\n- // required for v9, v10 doesn't need it anymore\n- \"packages:\",\n- \" - .\",\n+ ...
ggml-org/llama.cpp
20,288
server : make 2 checkpoints near the end of the prompt
fix https://github.com/ggml-org/llama.cpp/issues/20239#issuecomment-4022910071 In some cases, reprocessing the last 512 tokens of the prompt could be too slow. In other cases it is necessary in order to allow mutating the last user message. Make 2 checkpoints to satisfy all needs.
96cfc4992c625984d99f3529d30bedab1e1ecf93
a7b3dee7a5df8fa2e2f8faae9792d2cab5112c6f
11
medium
[ { "filename": "tools/server/server-context.cpp", "patch": "@@ -2530,9 +2530,24 @@ struct server_context_impl {\n slot.n_prompt_tokens_processed++;\n \n // process the last few tokens of the prompt separately in order to allow for a checkpoint to be created.\n-...
facebook/react
33,182
[eslint-plugin-react-hooks] fix exhaustive deps lint rule with component syntax
null
4448b18760d867f9e009e810571e7a3b8930bb19
null
low
[ { "filename": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7746,6 +7746,34 @@ const testsFlow = {\n },\n ],\n invalid: [\n+ {\n+ code: normalizeIndent`\n+ hook useExample(a) {\n+ useEffect(() => {\n+ console.log(a);...
huggingface/transformers
43,069
Update Japanese README to match English version
### PR Title: Docs: Update Japanese README to match main English version ### PR Content: # What does this PR do? This PR updates the Japanese version of the README ( README_ja.md ) to align with the latest changes in the main English README.md . The Japanese documentation was significantly outdated compared to...
null
88a5623361e1b3d844daef3c6c95535d12e70056
null
low
[ { "filename": "i18n/README_ja.md", "patch": "@@ -60,6 +60,7 @@ user: ユーザ\n </p>\n \n <p align=\"center\">\n+ <a href=\"https://huggingface.com/models\"><img alt=\"Checkpoints on Hub\" src=\"https://img.shields.io/endpoint?url=https://huggingface.co/api/shields/models&color=brightgreen\"></a>\n <a hre...
nodejs/node
61,107
util: optimize toASCIILower function using V8's native toLowerCase
benchmark results (mimetype-instantiation.js): application/ecmascript +54% text/html charset=gbk +24% text/html long...=x charset=gbk +21%
null
ed47077736f6fdf797aa45de9e0516da5b99e690
null
low
[ { "filename": "lib/internal/mime.js", "patch": "@@ -23,6 +23,8 @@ const END_BEGINNING_WHITESPACE = /[^\\r\\n\\t ]|$/;\n const START_ENDING_WHITESPACE = /[\\r\\n\\t ]*$/;\n \n function toASCIILower(str) {\n+ // eslint-disable-next-line no-control-regex\n+ if (!/[^\\x00-\\x7f]/.test(str)) return StringProto...
vuejs/vue
8,509
Fix redundancy, structural error
"Vue.js is an MIT-licensed open source project. It's an independent project" --> "Vue.js is an MIT-licensed open source independent project" "made possible entirely thanks to the support by these" --> "made possible entirely by the support of these" <!-- Please make sure to read the Pull Request Guidelines: https...
16021f321c6a1cf9ffed8a77e6ab8cf9a3b21134
7ae1f4e0b53e268cb887c74a63352b6773f1f879
6
medium
[ { "filename": "README.md", "patch": "@@ -13,7 +13,7 @@\n \n <h2 align=\"center\">Supporting Vue.js</h2>\n \n-Vue.js is an MIT-licensed open source project. It's an independent project with its ongoing development made possible entirely thanks to the support by these awesome [backers](https://github.com/vuej...
electron/electron
49,414
fix: make toplevel icon Wayland protocol work
Backport of #49290 See that PR for details. Notes: Make toplevel icon Wayland protocol work.
null
1c2b4e05838b493a4d791f84da7ae02de16bbad7
null
low
[ { "filename": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -25,6 +25,7 @@\n #include \"ui/gfx/geometry/skia_conversions.h\"\n #include \"ui/linux/linux_ui.h\"\n #include \"ui/ozone/public/ozone_platform.h\"\n+#include \"ui/platform_window/extensions/wayland_extension.h\"\n #in...
ollama/ollama
8,996
api: document client stream behavior with a test
Added unit tests to verify error handling behavior in the Client.stream method. Tests cover various error scenarios including: - Error responses with status codes >= 400 - Error messages with successful status codes - Empty error messages - Successful responses Also modified error handling order in stream() to c...
null
14b5a9a150598d724e4ef17616cdb25257ddc155
null
low
[ { "filename": "api/client.go", "patch": "@@ -132,7 +132,7 @@ func (c *Client) do(ctx context.Context, method, path string, reqData, respData\n const maxBufferSize = 512 * format.KiloByte\n \n func (c *Client) stream(ctx context.Context, method, path string, data any, fn func([]byte) error) error {\n-\tvar b...
ggml-org/llama.cpp
20,313
common : fix incorrect uses of stoul
Fixes #20308
null
ec947d2b16218580dfad3f2f8bd589190955efaf
null
low
[ { "filename": "common/arg.cpp", "patch": "@@ -2427,11 +2427,11 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n );\n }\n if (split_arg.size() == 1) {\n- std::fill(params.fit_params_target.begin(), params.fit_params_t...
facebook/react
33,214
[sync] Fix noop for xplat
Noop detection for xplat syncs broke because `eslint-plugin-react-hooks` uses versions like: - `0.0.0-experimental-d85f86cf-20250514` But xplat expects them to be of the form: - `19.2.0-native-fb-63d664b2-20250514` This PR fixes the noop by ignoring `eslint-plugin-react-hooks/package.json` changes. This mea...
null
4a45ba92c4097a97333c04b5516ba2d5c81af716
null
low
[ { "filename": ".github/workflows/runtime_commit_artifacts.yml", "patch": "@@ -332,10 +332,10 @@ jobs:\n git --no-pager diff -U0 --cached | grep '^[+-]' | head -n 100\n echo \"====================\"\n # Ignore REVISION or lines removing @generated headers.\n- if git dif...
huggingface/transformers
43,136
Fix failing `DebertaV2ModelIntegrationTest`
# What does this PR do? Fixes this failing [DebertaV2ModelIntegrationTest](https://github.com/huggingface/transformers/actions/runs/20706072009/job/59437072475#step:14:1608). <img width="1327" height="147" alt="image" src="https://github.com/user-attachments/assets/6cef8469-03ae-4e46-b533-ec94627f4dd9" /> ## Bef...
null
69ec61f7d56240d1047cfcf354599211e8c712cd
null
low
[ { "filename": "tests/models/deberta_v2/test_modeling_deberta_v2.py", "patch": "@@ -301,7 +301,7 @@ def test_inference_masked_lm(self):\n \n @slow\n def test_inference_no_head(self):\n- model = DebertaV2Model.from_pretrained(\"microsoft/deberta-v2-xlarge\")\n+ model = DebertaV2Model.fro...
vercel/next.js
88,469
Update Rspack production test manifest
This auto-generated PR updates the production integration test manifest used when testing Rspack.
null
6e5d39b67a5826dab25ff6bab858cc40019d16aa
null
low
[ { "filename": "test/rspack-build-tests-manifest.json", "patch": "@@ -2299,15 +2299,6 @@\n \"flakey\": [],\n \"runtimeError\": false\n },\n- \"test/e2e/app-dir/cdn-cache-control-header/cdn-cache-control-header.test.ts\": {\n- \"passed\": [\n- \"cdn-cache-control-header should use custom CD...
nodejs/node
61,119
src: improve StringBytes::Encode perf on ASCII
Tracking: #61041 This significantly improves both utf8 `TextDecoder` and `Buffer#toString()` performance on ASCII And removes the main reason why `import { TextDecoder } from '@exodus/bytes/encoding.js'` beats both Node.js TextDecoder and Node.js Buffer on Node.js on utf-8 🙃 See https://github.com/nodejs/no...
null
36ffbc5357b5f2607815bb31a8952ffb02d9a41b
null
low
[ { "filename": "src/encoding_binding.cc", "patch": "@@ -356,7 +356,24 @@ void BindingData::DecodeUTF8(const FunctionCallbackInfo<Value>& args) {\n const char* data = buffer.data();\n size_t length = buffer.length();\n \n+ if (!ignore_bom && length >= 3) {\n+ if (memcmp(data, \"\\xEF\\xBB\\xBF\", 3) =...
vuejs/vue
8,003
fix(types): make VNodeDirective properties optional, fix #8013
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
a9eb198413e7b1baaf364e93ec3c093734529fe8
99a51b452fa13fc4392e87215a8c3024adf5f710
14
medium
[ { "filename": "types/options.d.ts", "patch": "@@ -160,9 +160,13 @@ export interface WatchOptionsWithHandler<T> extends WatchOptions {\n handler: WatchHandler<T>;\n }\n \n+export interface DirectiveBinding extends Readonly<VNodeDirective> {\n+ readonly modifiers: { [key: string]: boolean };\n+}\n+\n expor...
electron/electron
49,290
fix: make toplevel icon Wayland protocol work
#### Description of Change Fixes https://github.com/electron/electron/issues/49285 When an Electron window gets hidden (no icon on taskbar) on Wayland, the icon for toplevel-icon protocol doesn't exist anymore. Override the `DesktopWindowTreeHostLinux::SetWindowIcons` and `DesktopWindowTreeHostLinux::Show` method...
null
bdd7730a244dbff6b892e1d59359b8e9ad25ae0a
null
low
[ { "filename": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -25,6 +25,7 @@\n #include \"ui/gfx/geometry/skia_conversions.h\"\n #include \"ui/linux/linux_ui.h\"\n #include \"ui/ozone/public/ozone_platform.h\"\n+#include \"ui/platform_window/extensions/wayland_extension.h\"\n #in...
ollama/ollama
9,237
OpenAI: accept x-stainless-timeout header to fix CORS error
Related to https://github.com/ollama/ollama/issues/9236, I add the `timeout` header for openai npm package.
ed443a03930a10bec6182c55091f0880baa1e620
351a85d9ea0db108ca29bba48d0a04e37c6e3607
25
medium
[ { "filename": "server/routes.go", "patch": "@@ -1131,7 +1131,7 @@ func (s *Server) GenerateRoutes() http.Handler {\n \tconfig.AllowWildcard = true\n \tconfig.AllowBrowserExtensions = true\n \tconfig.AllowHeaders = []string{\"Authorization\", \"Content-Type\", \"User-Agent\", \"Accept\", \"X-Requested-With\"...
ggml-org/llama.cpp
20,070
kleidiai : support for concurrent sme and neon kernel execution
This PR introduces concurrent execution of SME and NEON kernels in the KleidiAI backend. Instead of running SME-only kernels when enabled, the runtime can now split work between SME and NEON execution paths, allowing better scaling when SME units are limited. Llama-3.2-1B-Instruct-Q4_0 — pp512 (tokens/sec) (Mac M4 P...
null
0cd4f4720b71dd7eb5fb3e3e86ffdd8ec5ac7c9f
null
low
[ { "filename": "docs/build.md", "patch": "@@ -599,7 +599,13 @@ If KleidiAI is enabled, the output will contain a line similar to:\n ```\n load_tensors: CPU_KLEIDIAI model buffer size = 3474.00 MiB\n ```\n-KleidiAI's microkernels implement optimized tensor operations using Arm CPU features such as dotprod, i...
facebook/react
33,213
[ci] Log author_association
For debugging purposes, log author_association
null
08cb2d7ee732f35ef1935c75c081754bd81d60b9
null
low
[ { "filename": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -15,6 +15,7 @@ jobs:\n outputs:\n is_member_or_collaborator: ${{ steps.check_is_member_or_collaborator.outputs.is_member_or_collaborator }}\n steps:\n+ - run: echo ${{ github.event.pull_request.author_association ...
vercel/next.js
88,470
Update Rspack development test manifest
This auto-generated PR updates the development integration test manifest used when testing Rspack.
null
c6f302b383a88bb26c23adea52e31b0cee9e6bad
null
low
[ { "filename": "test/rspack-dev-tests-manifest.json", "patch": "@@ -4612,15 +4612,6 @@\n \"flakey\": [],\n \"runtimeError\": false\n },\n- \"test/e2e/app-dir/cdn-cache-control-header/cdn-cache-control-header.test.ts\": {\n- \"passed\": [\n- \"cdn-cache-control-header should use custom CDN ...
huggingface/transformers
43,128
Fixed failing `BioGPT` batch generation test
# What does this PR do? Fixes this failing [BioGPT-batch generation test](https://github.com/huggingface/transformers/actions/runs/20706072009/job/59437072400#step:14:1607). From this PR [Generation Config defaults are now None](https://github.com/huggingface/transformers/pull/42702/) <img width="1321" height="171"...
null
6d7b10d57fa273e83d2500cc8c3c2f79636cb452
null
low
[ { "filename": "tests/models/biogpt/test_modeling_biogpt.py", "patch": "@@ -335,9 +335,8 @@ def test_batch_generation(self):\n \n num_paddings = inputs_non_padded.shape[-1] - inputs[\"attention_mask\"][-1].long().sum().item()\n inputs_padded = tokenizer(sentences[1], return_tensors=\"pt\").in...
nodejs/node
61,096
sqlite: improve error messages for tag store
When using SQLite tag store functions (`sql.get`, `sql.run`, etc.), preparation errors now show descriptive SQLite error messages instead of the generic 'Failed to prepare statement' message. The tag store's `GetOrCreateStatement` function now passes the database object to THROW_ERR_SQLITE_ERROR, thus retrieving the...
null
9c346d22a75696b8a5f615224816542f271bf450
null
low
[ { "filename": "src/node_sqlite.cc", "patch": "@@ -2946,7 +2946,7 @@ BaseObjectPtr<StatementSync> SQLTagStore::PrepareStatement(\n session->database_->connection_, sql.data(), sql.size(), &s, 0);\n \n if (r != SQLITE_OK) {\n- THROW_ERR_SQLITE_ERROR(isolate, \"Failed to prepare statement\");\...
vuejs/vue
8,002
remove useless code
remove useless code
null
4dec3b52c9b71f816e6b86d42ea53e9f2e559646
null
low
[ { "filename": "src/server/webpack-plugin/client.js", "patch": "@@ -54,12 +54,6 @@ export default class VueSSRClientPlugin {\n }\n })\n \n- // const debug = (file, obj) => {\n- // require('fs').writeFileSync(__dirname + '/' + file, JSON.stringify(obj, null, 2))\n- // }\n- ...
huggingface/transformers
43,126
Optimize MoEs for decoding using batched_mm
# What does this PR do? batched_mm is more performant on "smaller inputs", especially when used with torch.compile. smaller inputs: up to 2^6-2^9 tokens depending on the num experts and num topk <img width="2000" height="2000" alt="crossover_plots" src="https://github.com/user-attachments/assets/21a9f333-b3d5-40...
5cf0f5beb2752d65a978aca31a3c10cbccc607e8
4520b549f230db350523c4f63677fedd789510f8
3
medium
[ { "filename": "src/transformers/generation/utils.py", "patch": "@@ -19,6 +19,7 @@\n import os\n import warnings\n from collections.abc import Callable\n+from contextlib import contextmanager\n from dataclasses import dataclass\n from typing import TYPE_CHECKING, Any, Optional, Union\n \n@@ -2192,17 +2193,24...
electron/electron
49,415
fix: make toplevel icon Wayland protocol work
Backport of #49290 See that PR for details. Notes: Make toplevel icon Wayland protocol work.
null
2dc82ea1f39d440e1147c7b880aacda01ecdcd76
null
low
[ { "filename": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -25,6 +25,7 @@\n #include \"ui/gfx/geometry/skia_conversions.h\"\n #include \"ui/linux/linux_ui.h\"\n #include \"ui/ozone/public/ozone_platform.h\"\n+#include \"ui/platform_window/extensions/wayland_extension.h\"\n #in...
ollama/ollama
9,203
build: remove backend build for sapphirerapids
sapphire rapids has amx support but it ends up having a negative performance impact. emerald rapids also has amx support with a positive performance impact however there's no reasonable way in ggml to differentiate between the two. the impact is small (~6.5%) so disable amx entirely for simplicity some quick test...
null
1e438b237c37747f80ce59a5b9867e203a5810b1
null
low
[ { "filename": "llama/patches/0018-remove-amx.patch", "patch": "@@ -0,0 +1,24 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Michael Yang <mxyng@pm.me>\n+Date: Tue, 18 Feb 2025 14:47:21 -0800\n+Subject: [PATCH] remove amx\n+\n+---\n+ ggml/src/CMakeLists.txt | 4 ----\n+ 1 ...
vercel/next.js
88,508
Turbopack: fix bad performance edge case in production chunking
### What? Fixes a edge case in production chunking performance where many dynamic imports (like https://app.unpkg.com/lucide-react@0.562.0/files/dist/esm/dynamicIconImports.js) causes builds to become very slow under specific scenarios.
null
dfe3f140d72216daccb330354d57ec6f220c8f1f
null
low
[ { "filename": "turbopack/crates/turbopack-core/src/chunk/chunking/production.rs", "patch": "@@ -26,6 +26,7 @@ pub async fn make_production_chunks(\n \"make production chunks\",\n chunk_items = chunk_items.len(),\n chunks_before_limits = Empty,\n+ merge_iterations = Empty,\n ...
nodejs/node
60,885
src: add HandleScope to loop in heap_utils
added HandleScope to loop in heap_utils
null
7786470ff50e912b16a68012456c86b611488ad7
null
low
[ { "filename": "src/heap_utils.cc", "patch": "@@ -180,6 +180,7 @@ class JSGraph : public EmbedderGraph {\n size_t i = 0;\n size_t j = 0;\n for (const auto& edge : edge_info.second) {\n+ HandleScope handle_scope(isolate_);\n Local<Object> to_object = info_objects[edge.second];...
ggml-org/llama.cpp
20,306
metal: handle command buffer failures gracefully in synchronize
## Summary Replace `GGML_ABORT("fatal error")` in `ggml_metal_synchronize()` with a sticky error flag and early return. This prevents the host process from crashing when a Metal command buffer fails during synchronize. ## Problem On iOS, backgrounding an app causes the OS to revoke GPU access. Any pending Metal comm...
null
1a5631beaa2bfb9f76f177a8dbe5544dd6c2d528
null
low
[ { "filename": "ggml/src/ggml-metal/ggml-metal-context.m", "patch": "@@ -75,6 +75,10 @@\n // abort ggml_metal_graph_compute if callback returns true\n ggml_abort_callback abort_callback;\n void * abort_callback_data;\n+\n+ // error state - set when a command buffer fails during sy...
vuejs/vue
7,979
fix: add placeholder firebase example
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> Before: ![2018-04-07 22 27 53](https://user-images.githubusercontent.com/11417813/38455434-020cd7f6-3ab3-11e8-8e95-12c58c712bba.png) After: ![2018-04-07 22 27 ...
null
c356b29e322ecb2a13d041f99d69dfc883c68248
null
low
[ { "filename": "examples/firebase/index.html", "patch": "@@ -21,8 +21,8 @@\n </li>\n </ul>\n <form id=\"form\" v-on:submit.prevent=\"addUser\">\n- <input v-model=\"newUser.name\">\n- <input v-model=\"newUser.email\">\n+ <input v-model=\"newUser.name\" placeholder=\"Ad...
huggingface/transformers
43,061
SAM3 Video: Remove call to pin_memory if the target device is not CUDA
# What does this PR do? Remove the call to pin_memory if the target device is not CUDA. This library has been recommended for people who can't use the main SAM3 repo due to CUDA requirement, for example on MPS: https://huggingface.co/facebook/sam3/discussions/11 I believe pin_memory is only effective for CUDA ...
null
3f73610faa392a815378ede01b23b3a3257c441c
null
low
[ { "filename": "src/transformers/models/sam3_video/processing_sam3_video.py", "patch": "@@ -340,7 +340,7 @@ def postprocess_outputs(\n \n # slice those valid entries from the original outputs\n keep_idx = torch.nonzero(keep, as_tuple=True)[0]\n- keep_idx_gpu = keep_idx.pin_...
facebook/react
33,207
[compiler] Update changelog for 19.1.0-rc.2
Update the changelog.
null
203df2c9409f580fd63eeacd4f80d70c2741bd4f
null
low
[ { "filename": "compiler/CHANGELOG.md", "patch": "@@ -1,3 +1,9 @@\n+## 19.1.0-rc.2 (May 14, 2025)\n+\n+## babel-plugin-react-compiler\n+\n+* Fix for string attribute values with emoji [#33096](https://github.com/facebook/react/pull/33096) by [@josephsavona](https://github.com/josephsavona)\n+\n ## 19.1.0-rc....
nodejs/node
60,750
[v25.x] Revert "lib: throw from localStorage getter on missing storage path"
This reverts commit 4fbb1ab1015614258c440700373148efa4da8074. <!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md - the commit message formatting guidelines at https://github.com/nodejs/node/blob/HEAD/doc/contributing/pull-r...
ee333c9177f02bf0d583af642ff9207adc548bf8
a4dee613fdd1ec6c01211a8a66b99319b2abdd20
5
medium
[ { "filename": "lib/internal/webstorage.js", "patch": "@@ -1,9 +1,9 @@\n 'use strict';\n const {\n ObjectDefineProperties,\n+ Proxy,\n } = primordials;\n const { getOptionValue } = require('internal/options');\n-const { lazyDOMException } = require('internal/util');\n const { kConstructorKey, Storage } = ...
vuejs/vue
8,729
fix(readme): correct badge link
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [ ] Bugf...
0737d11a146818d975266953ee547a12a63a1a41
6514a37a5ac8d9c3f8edf8b6dc21b477ec97cc02
1
high
[ { "filename": "README.md", "patch": "@@ -1,7 +1,7 @@\n <p align=\"center\"><a href=\"https://vuejs.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img width=\"100\" src=\"https://vuejs.org/images/logo.png\" alt=\"Vue logo\"></a></p>\n \n <p align=\"center\">\n- <a href=\"https://circleci.com/gh/vuejs/...
ollama/ollama
9,146
test: add test cases for ListHandler defined in cmd/cmd.go
This pull request adds a new, missing test cases and updates the import statements in the `cmd/cmd_test.go` file. The most important changes include the addition of the `TestListHandler` function and the inclusion of the `time` package in the imports. ### New Test Function: * [`cmd/cmd_test.go`](diffhunk://#di...
null
d721a02e7daba5a4c25b75e67c6413adb387e606
null
low
[ { "filename": "cmd/cmd_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"os\"\n \t\"strings\"\n \t\"testing\"\n+\t\"time\"\n \n \t\"github.com/google/go-cmp/cmp\"\n \t\"github.com/spf13/cobra\"\n@@ -490,6 +491,96 @@ func TestPushHandler(t *testing.T) {\n \t}\n }\n \n+func TestListHandler(t *testing.T) {\...
electron/electron
49,417
fix: restore AXDocument accessibility attribute for representedFilename on macOS
Backport of #49346 See that PR for details. Notes: Fixed `setRepresentedFilename()` not setting `AXDocument` accessibility attribute on macOS.
null
370965819e59922fe1ed164bb23ce5fbdbf7eb9e
null
low
[ { "filename": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -285,6 +285,19 @@ - (NSString*)accessibilityTitle {\n return base::SysUTF8ToNSString(shell_ ? shell_->GetTitle() : \"\");\n }\n \n+- (NSString*)accessibilityDocument {\n+ // Prefer representedFilename set via Electron's setReprese...
huggingface/transformers
42,957
Do not use global variable, and improve context manager coverage
# What does this PR do? As per the title
9a90500b0b7a3f481c005a1398ab50539146dfbc
0d2dbaa939269465a91579d47761ff69e9601eeb
3
medium
[ { "filename": "src/transformers/initialization.py", "patch": "@@ -206,3 +206,40 @@ def guard_torch_init_functions():\n for module, functions in originals.items():\n for func_name, func in functions.items():\n setattr(module, func_name, func)\n+\n+\n+@contextmanager\n+def ...
huggingface/transformers
43,134
[`Ernie 4.5 VL Moe`] Fix non contiguous params
As per title, this is caused by the `transpose` conversion op which can cause non-contiguous layouts (kind of expected tbh). Simply forcing contiguous solves this. Repro: ```python from transformers import AutoModelForImageTextToText model = AutoModelForImageTextToText.from_pretrained( "baidu/ERNIE-4.5-VL-...
5cf0f5beb2752d65a978aca31a3c10cbccc607e8
828c039e08dd91af7ce453567ab1da3370df1f04
1
medium
[ { "filename": "src/transformers/core_model_loading.py", "patch": "@@ -432,7 +432,7 @@ def convert(\n tensor = input_dict.get(key, [])\n if len(tensor) != 1:\n raise ValueError(f\"Transpose conversion requires exactly one tensor, found {len(tensor)}.\")\n- o...
electron/electron
49,220
build(deps): bump actions/upload-artifact from 5.0.0 to 6.0.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5.0.0 to 6.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/upload-artifact/releases">actions/upload-artifact's releases</a>.</em></p> <blockquote> <h2>v6.0.0</h2> <h2>v6 - What's new<...
5d802649440ea1813c0d5844506551a82bfe2535
060e76f1b64a5106f1e82c6decc22f0811bfaa6f
6
medium
[ { "filename": ".github/workflows/archaeologist-dig.yml", "patch": "@@ -45,7 +45,7 @@ jobs:\n sha-file: .dig-old\n filename: electron.old.d.ts\n - name: Upload artifacts\n- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 #v5.0.0\n+ uses: actions/...
huggingface/transformers
43,129
[`Moe`] Post interface fixes
As per title, a few tests fail with `grouped_mm` implementation. Way less integration tests fail than I initially expected. Related failures: https://huggingface.co/datasets/hf-internal-testing/transformers_daily_ci/raw/3fed21c3fdb63a1b19d6030d493139a947135fd3/2026-01-06/ci_results_run_models_gpu/new_failures_with_ba...
02ddf5d47abb61730d157ddf3cb75f76715d05f5
5cf0f5beb2752d65a978aca31a3c10cbccc607e8
2
medium
[ { "filename": "tests/models/ernie4_5_moe/test_modeling_ernie4_5_moe.py", "patch": "@@ -152,6 +152,7 @@ def get_large_model(cls):\n cls.model = Ernie4_5_MoeForCausalLM.from_pretrained(\n \"baidu/ERNIE-4.5-21B-A3B-PT\",\n device_map=\"auto\",\n+ experts_implementatio...
vercel/next.js
88,507
Backport: fix: normalize CRLF line endings in jscodeshift tests on Windows #88008
Backporting this fix for Windows CI to the next-16-1 branch
9688b06c0bc10653fbffe85b0aea79f07bf69e59
beb3a766a9faa103137c7a36e6f13454e27f0c48
28
medium
[ { "filename": ".gitattributes", "patch": "@@ -1,3 +1,6 @@\n+# Enforce LF line endings for all text files (fixes Windows CRLF test flakiness)\n+* text=auto eol=lf\n+\n .github/actions/*/dist/** -text linguist-vendored\n packages/next/bundles/** -text linguist-vendored\n packages/next/compiled/** -text lingui...
facebook/react
33,200
Claim the useId name space for every auto named ViewTransition
This is a partial revert of #33094. It's true that we don't need the server and client ViewTransition names to line up. However the server does need to be able to generate deterministic names for itself. The cheapest way to do that is using the useId algorithm. When it's used by the server, the client needs to also mat...
21fdf308a1a01af69c28c00a70086aa1bd4c2411
96eb84e493c4ff2c280990659057164c0f16bbb8
15
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -3543,6 +3543,12 @@ function updateViewTransition(\n current === null\n ? ViewTransitionNamedMount | ViewTransitionNamedStatic\n : ViewTransitionNamedStatic;\n+ } else {\n+ // The server may have use...
vercel/next.js
88,503
[Backport] mimalloc upgrade and enabling it on musl
Backports - chore(turbo-tasks-malloc): replace mimalloc-rspack to mimalloc ([#87815](https://github.com/vercel/next.js/issues/87815)) - Turbopack: use mimalloc on Linux musl ([#88426](https://github.com/vercel/next.js/issues/88426))
da37eeebffb73c0aa5434e2b706325b9c506d242
e13100a790fb042e77060423b283bf5e7e65e5d1
2
medium
[ { "filename": "Cargo.lock", "patch": "@@ -3642,6 +3642,17 @@ dependencies = [\n \"windows-sys 0.48.0\",\n ]\n \n+[[package]]\n+name = \"libmimalloc-sys\"\n+version = \"0.1.44\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce7...
facebook/react
33,191
Don't consider Portals animating unless they're wrapped in a ViewTransition
And that doesn't disable with `update="none"`. The principle here is that we want the content of a Portal to animate if other things are animating with it but if other things aren't animating then we don't.
62d3f36ea79fc0a10b514d4bbcc4ba3f21b3206e
63d664b220b1587da0f3b4ced895456f3d8320da
5
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -210,6 +210,7 @@ import {\n TransitionRoot,\n TransitionTracingMarker,\n } from './ReactFiberTracingMarkerComponent';\n+import {getViewTransitionClassName} from './ReactFiberViewTransitionComponent';\n import {\n commi...
ggml-org/llama.cpp
20,174
Add @pwilkin to CODEOWNERS for autoparser code
Adding myself for the newly added files.
null
746368716193bbbfa75abb6da81284bfce99539e
null
low
[ { "filename": "CODEOWNERS", "patch": "@@ -11,6 +11,8 @@\n /common/base64.hpp.* @ggerganov\n /common/build-info.* @ggerganov\n /common/chat.* @pwilkin\n+/common/chat-auto*.* @pwilkin\n+/common/chat-diff-analyzer.* @p...
vuejs/vue
8,537
fix(types): relax the return type of props default option
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
null
a9eb198413e7b1baaf364e93ec3c093734529fe8
null
low
[ { "filename": "types/options.d.ts", "patch": "@@ -133,7 +133,7 @@ export type PropValidator<T> = PropOptions<T> | Prop<T> | Prop<T>[];\n export interface PropOptions<T=any> {\n type?: Prop<T> | Prop<T>[];\n required?: boolean;\n- default?: T | null | undefined | (() => object);\n+ default?: T | null |...
ollama/ollama
9,079
cmd: fix flickering in progress bar
In some cases the progress bar flickers during model downloads. This is caused by the way the progress bar was issuing screen updates: first clearing the screen, then drawing the new content. If the terminal emulator renders a frame between clearing and printing new content, then what shows up is empty space. Toggle ra...
null
e13e7c8d9496d26dea74ec2ccdbb731ee998bca6
null
low
[ { "filename": "progress/progress.go", "patch": "@@ -1,6 +1,7 @@\n package progress\n \n import (\n+\t\"bufio\"\n \t\"fmt\"\n \t\"io\"\n \t\"sync\"\n@@ -13,7 +14,8 @@ type State interface {\n \n type Progress struct {\n \tmu sync.Mutex\n-\tw io.Writer\n+\t// buffer output to minimize flickering on all termi...
nodejs/node
61,151
build: remove temporal updater
This updater should be replaced with a generic `Cargo.toml` and `Cargo.lock` updater. Refs: https://github.com/nodejs/node/pull/61072
null
13073a9b40db0c712015c44d14346d1f0fcd52f9
null
low
[ { "filename": ".github/workflows/tools.yml", "patch": "@@ -38,7 +38,6 @@ on:\n - root-certificates\n - simdjson\n - sqlite\n- - temporal\n - undici\n - uvwasi\n - zlib\n@@ -256,14 +255,6 @@ jobs:\n cat temp-output\n ...
ggml-org/llama.cpp
20,318
model: fix step3.5 n_rot
cont https://github.com/ggml-org/llama.cpp/pull/20301
59db9a357d9a247009c70fda34050661b17a1a5c
0842b9b465f73a133062e80b74201c86e73a67c8
1
high
[ { "filename": "src/llama-model.cpp", "patch": "@@ -7348,7 +7348,7 @@ bool llama_model::load_tensors(llama_model_loader & ml) {\n // (\"rope_freqs.weight\") and ggml uses only the first (n_rot_l/2) entries per layer.\n uint32_t n_rot_max = 0;\n for ...
huggingface/transformers
43,131
Fix buffer offloading
# What does this PR do? This has been broken since https://github.com/huggingface/transformers/pull/42941, but was only surfaced after https://github.com/huggingface/transformers/pull/42697 as that PR changed the testers of MoE models with buffers so that they would always have at least 1 moe layer (which should hav...
314a45154650cc594d3ec9a8b1099e50daf17e5a
e5b9fbd16b29388ed944a2682e0f5fd022545236
24
medium
[ { "filename": "src/transformers/core_model_loading.py", "patch": "@@ -896,6 +896,7 @@ def convert_and_load_state_dict_in_model(\n device_mesh: torch.distributed.device_mesh.DeviceMesh | None = None,\n disk_offload_index: dict | None = None,\n disk_offload_folder: str | None = None,\n+ offload...
vuejs/vue
8,887
simple grammar fix in readme. eliminated extra 'the'
it makes more sense to take the extra the out for readability. <!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of c...
79cabadeace0e01fb63aa9f220f41193c0ca93af
9d19f84d4e7a281484a6eb3f92e6a266a1adc243
1
high
[ { "filename": "README.md", "patch": "@@ -290,7 +290,7 @@ To check out [live examples](https://vuejs.org/v2/examples/) and docs, visit [vu\n \n ## Questions\n \n-For questions and support please use the [the official forum](http://forum.vuejs.org) or [community chat](https://chat.vuejs.org/). The issue list ...
electron/electron
49,411
ci: detect patch needs update error with problem matcher
Backport of #49405 See that PR for details. Notes: none <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->
null
3d1c5ea4faf8336aa34823841dd559c7171ffcb5
null
low
[ { "filename": ".github/actions/checkout/action.yml", "patch": "@@ -143,11 +143,12 @@ runs:\n echo \"No changes to patches detected\"\n fi\n fi\n- - name: Remove patch conflict problem matcher\n+ - name: Remove patch conflict problem matchers\n shell: bash\n run: |\n e...
ollama/ollama
9,159
llama: add patch to fix ggml backend reg errors
This PR adds a patch that fixes issues on linux with utf-8 characters in paths required by ggml's discovery logic by relying on `std::filesystem::path` instead of using `std::wstring` which are not compatible with Unix filepaths. Once we're happy with this I'm planning to upstream it to GGML. Fixes https://github.co...
6600bd7d91deb07bec5832790168870c3180ccae
d2eb226c914aa86f2a371c340997d6e26e2aecef
17
medium
[ { "filename": "llama/patches/0018-use-std-filesystem-path-instead-of-wstring.patch", "patch": "@@ -0,0 +1,285 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: jmorganca <jmorganca@gmail.com>\n+Date: Sun, 16 Feb 2025 20:00:22 -0500\n+Subject: [PATCH] use std::filesystem::pa...
ggml-org/llama.cpp
20,117
llama-quant : left-align tensor names in output
Left-align the tensor names printed in the output of `llama-quantize`. Before: <img width="1280" height="768" alt="Screenshot 2026-03-04 at 3 53 03 PM" src="https://github.com/user-attachments/assets/0ca15d1e-ff6f-45cf-a157-610289441240" /> After: <img width="1280" height="768" alt="Screenshot 2026-03-04 at...
a976ff081b4657b67f48295bbefc030d9d899b17
b518195101fda6e3e636d997d487c83a629a0089
14
medium
[ { "filename": "src/llama-quant.cpp", "patch": "@@ -778,7 +778,7 @@ static void llama_model_quantize_impl(const std::string & fname_inp, const std::\n ml.load_data_for(tensor);\n }\n \n- LLAMA_LOG_INFO(\"[%4d/%4d] %36s - [%s], type = %6s, \",\n+ LLAMA_LOG_INFO(\"[%4d/%4d] %-...
facebook/react
33,199
Delete stray file
Not sure where this was coming from.
null
d85f86cf017151bcf5908d593c3899d876656a01
null
low
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/object-method-shorthand-3.expect.md~051f3e57 ([hir] Do not memoize object methods separately)", "patch": "@@ -1,47 +0,0 @@\n-\n-## Input\n-\n-```javascript\n-import { mutate } from \"shared-runtime\";\n-\n-function ...
vercel/next.js
88,527
Remove `lerna bootstrap` from the `clean` script in package.json
In #87188 we upgraded lerna to v9 which no longer supports/requires the `lerna bootstrap` command. This commit removes it from the `clean` script in the root package.json to avoid errors when running `pnpm clean`. [More info](https://lerna.js.org/docs/legacy-package-management#replacing-your-usage-of-lerna-bootstrap...
null
dd625fbf6841c3e473bc94ca44faf539d3432dc9
null
low
[ { "filename": "package.json", "patch": "@@ -8,7 +8,7 @@\n \"scripts\": {\n \"new-error\": \"turbo gen error\",\n \"new-test\": \"turbo gen test\",\n- \"clean\": \"lerna clean -y && lerna bootstrap && lerna run clean && lerna exec 'node ../../scripts/rm.mjs dist'\",\n+ \"clean\": \"lerna clea...
facebook/react
33,190
[Fiber] Trigger default indicator for isomorphic async actions with no root associated
Stacked on #33160, #33162, #33186 and #33188. We have a special case that's awkward for default indicators. When you start a new async Transition from `React.startTransition` then there's not yet any associated root with the Transition because you haven't necessarily `setState` on anything yet until the promise reso...
59440424d05360cca32ca6f46ae33661f70d43e2
3a5b326d8180f005a10e34a07ded6d5632efe337
1
medium
[ { "filename": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -113,8 +113,8 @@ export default function Page({url, navigate}) {\n <button\n onClick={() =>\n startTransition(async () => {\n- setShowModal(true);\n await sleep(2000);\n+ setShowModal(...
ggml-org/llama.cpp
20,291
server : warn swa-full is not supported for non-SWA models
Noticed users trying to use `--swa-full` with recurrent/hybrid models. Add a warning that this has no effect.
d6e1556499814da42424e39397a9964a1bebbf00
344ee2a38af98b80c476bd65fb749702012f7414
1
high
[ { "filename": "tools/server/server-context.cpp", "patch": "@@ -729,6 +729,13 @@ struct server_context_impl {\n }\n }\n \n+ if (llama_model_n_swa(model) == 0) {\n+ if (params_base.swa_full) {\n+ params_base.swa_full = false;\n+ SRV_WRN(\"%s\...
huggingface/transformers
43,024
🚨Fix MobileViT image processor default interpolation to BICUBIC
## Summary Updates MobileViT image processor default interpolation from BILINEAR to BICUBIC to match: - [Apple's original ml-cvnets implementation](https://github.com/apple/ml-cvnets) - [timm's MobileViT config](https://github.com/huggingface/pytorch-image-models/blob/main/timm/models/mobilevit.py) which uses `'interp...
null
a34922d6dc777a5ea769308d265dbdbd47c04772
null
low
[ { "filename": "src/transformers/models/mobilevit/image_processing_mobilevit.py", "patch": "@@ -79,7 +79,7 @@ class MobileViTImageProcessor(BaseImageProcessor):\n size (`dict[str, int]` *optional*, defaults to `{\"shortest_edge\": 224}`):\n Controls the size of the output image after resi...
nodejs/node
61,147
tools,doc: fix format-md files list
A minor fix to `format-md` and `lint-md`in `vcbuild.bat`, which adds files from `doc/contributing/maintaining` to the list of files to be processed. Fixes: https://github.com/nodejs/node/issues/55216
null
732ab9d658e057af5191d4ecd156d38487509462
null
low
[ { "filename": "vcbuild.bat", "patch": "@@ -798,6 +798,11 @@ for /D %%D IN (doc\\*) do (\n for %%F IN (%%D\\*.md) do (\n set \"lint_md_files=\"%%F\" !lint_md_files!\"\n )\n+ for /D %%S IN (%%D\\*) do (\n+ for %%F IN (%%S\\*.md) do (\n+ set \"lint_md_files=\"%%F\" !lint_md_files!\"\n+ )\n+...
facebook/react
33,186
[Fiber] Always flush Default priority in the microtask if a Transition was scheduled
Stacked on #33160. The purpose of this is to avoid calling `onDefaultTransitionIndicator` when a Default priority update acts as the loading indicator, but still call it when unrelated Default updates happens nearby. When we schedule Default priority work that gets batched with other events in the same frame more...
62d3f36ea79fc0a10b514d4bbcc4ba3f21b3206e
b480865db0babfcad602a1a1909775069b5779f9
1
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberRootScheduler.js", "patch": "@@ -26,6 +26,7 @@ import {\n NoLane,\n NoLanes,\n SyncLane,\n+ DefaultLane,\n getHighestPriorityLane,\n getNextLanes,\n includesSyncLane,\n@@ -261,6 +262,13 @@ function processRootScheduleInMicrotask() {\n ...
ggml-org/llama.cpp
20,287
server : fix checkpoints n_tokens calculation
Take into account that during parallel processing, the batch can contain tokens from multiple slots and therefore using `batch.n_tokens` to determine the number of tokens in the checkpoint is not correct. Fixes some unnecessary prompt reprocessing cases.
344ee2a38af98b80c476bd65fb749702012f7414
96cfc4992c625984d99f3529d30bedab1e1ecf93
2
high
[ { "filename": "tools/server/server-context.cpp", "patch": "@@ -2141,6 +2141,9 @@ struct server_context_impl {\n if (slot.state == SLOT_STATE_PROCESSING_PROMPT || slot.state == SLOT_STATE_STARTED) {\n const auto & input_tokens = slot.task->tokens;\n \n+ ...
vuejs/vue
8,714
fix (#8713): replace hardcoded .parentNode with abstract ops
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
null
1e1ce0cac7d6c22c980021cbd3cb207a47e85dfb
null
low
[ { "filename": "src/core/vdom/patch.js", "patch": "@@ -272,7 +272,7 @@ export function createPatchFunction (backend) {\n function insert (parent, elm, ref) {\n if (isDef(parent)) {\n if (isDef(ref)) {\n- if (ref.parentNode === parent) {\n+ if (nodeOps.parentNode(ref) === parent) {\n...
electron/electron
49,398
fix: warning: default arguments on virtual or override methods
#### Description of Change Fix the last couple of warnings found by #49072 that weren't fixed by #49083. On rereading this code, it was simpler than I expected: we never override these methods, so just make them nonvirtual. CC @dsanders11 #### Checklist - [x] PR description included - [ ] `npm test` passe...
null
c769361af2ec2097a2b2d460a2543c330e684cfe
null
low
[ { "filename": "shell/browser/native_window.h", "patch": "@@ -106,9 +106,9 @@ class NativeWindow : public base::SupportsUserData,\n void SetPosition(const gfx::Point& position, bool animate = false);\n [[nodiscard]] gfx::Point GetPosition() const;\n \n- virtual void SetContentSize(const gfx::Size& size,...
facebook/react
33,188
[Fiber] Stash the entangled async action lane on currentEventTransitionLane
When we're entangled with an async action lane we use that lane instead of the currentEventTransitionLane. Conversely, if we start a new async action lane we reuse the currentEventTransitionLane. So they're basically supposed to be in sync but they're not if you resolve the async action and then schedule new stuff i...
676f0879f315130309262ff3532707029f0288bb
0cac32d60dd4482b27fe8a54dffbabceb22c6272
1
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberRootScheduler.js", "patch": "@@ -78,6 +78,7 @@ import {\n resetNestedUpdateFlag,\n syncNestedUpdateFlag,\n } from './ReactProfilerTimer';\n+import {peekEntangledActionLane} from './ReactFiberAsyncAction';\n \n // A linked list of all the roots with ...