repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | 31b800abe6a599f001a545d98437b9d821cef5c2 | 767e7680ec7ed541ccc2e1f32d04b077f5422d25 | cmd/internal/objabi: add new R_DWTXTADDR_* relocation types
Add a set of new relocations to be used when the compiler is writing
debug information using DWARF version 5. No changes in compiler or
linker functionality, this patch just adds the relocations themselves
and some helper functions; uses will appear in a late... | [
{
"path": "src/cmd/internal/objabi/reloctype.go",
"patch": "@@ -391,6 +391,22 @@ const (\n \t// just used in the linker to order the inittask records appropriately.\n \tR_INITORDER\n \n+\t// The R_DWTXTADDR_* family of relocations are effectively\n+\t// references to the .debug_addr entry for a given TEXT s... | 2024-11-26T22:08:01 |
huggingface/transformers | c17877c2ad39f8f736d5ea8a34f98e562843fc83 | 2a54236620f75fdafb6be69492e6995e7869c14f | Fix `maybe_autocast` crashing on meta device tensors (#44984)
`torch.is_autocast_enabled("meta")` raises a RuntimeError because
torch does not support autocast for the meta device. This breaks any
code that runs a forward pass on meta tensors (e.g. nnsight's `.scan()`
for tracing without materializing weights).
Since... | [
{
"path": "src/transformers/utils/generic.py",
"patch": "@@ -196,6 +196,8 @@ def maybe_autocast(\n Which makes graph splitting in `torch.compile` more flexible as it removes the\n requirement that partition IDs be monotonically increasing.\n \"\"\"\n+ if device_type == \"meta\":\n+ ret... | 2026-03-25T17:42:52 |
vercel/next.js | e1045df08d9f8f0d6c57afbf9ab9ab576bf67a25 | 3019c227827d58a14aba3417d485ed650b168bb9 | Update from-create-react-app.mdx (#80451)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### Impr... | [
{
"path": "docs/01-app/02-guides/migrating/from-create-react-app.mdx",
"patch": "@@ -12,7 +12,7 @@ There are several reasons why you might want to switch from Create React App to\n \n ### Slow initial page loading time\n \n-Create React App uses purely client-side React. Client-side only applications, also ... | 2025-06-13T12:11:26 |
facebook/react | a2aa032276a9546a7bc06d118ca7de98a5fae651 | fe147cb16a3ec82220d2599bb59ee12fc7319687 | [eslint] Plugin should never throw
This has caused issues for people when things like Babel cause issues. It's not
actionable and it crashes eslint. Just like the Babel plugin, the eslint plugin
should never throw. Instead, let's log the error so the data isn't lost. | [
{
"path": "compiler/packages/eslint-plugin-react-forget/src/rules/ReactForgetDiagnostics.ts",
"patch": "@@ -23,6 +23,8 @@ type CompilerErrorDetailWithLoc = Omit<CompilerErrorDetail, \"loc\"> & {\n loc: BabelSourceLocation;\n };\n \n+type UserProvidedLogger = (...args: unknown[]) => void;\n+\n function ass... | 2023-11-03T20:27:18 |
ollama/ollama | d98dda4676d44a3882fd38492cc00db257f35974 | d69ddc1edc4c6df26cd6e6a20c040f2d6c6a29ef | model: fix qwen3 tool calling in thinking (#14477)
Align Qwen parser behavior with Transformers serve by allowing <tool_call> parsing while still in thinking collection.
Changes:
- qwen3vl: detect <tool_call> before </think> in thinking state and transition to tool parsing
- qwen3: same thinking-state tool detectio... | [
{
"path": "model/parsers/qwen3.go",
"patch": "@@ -204,6 +204,24 @@ func (p *Qwen3Parser) eat() ([]qwen3Event, bool) {\n \t\t\tp.maybeThinkingOpenAtBOL = false\n \t\t}\n \n+\t\tthinkingCloseIdx := strings.Index(acc, qwen3ThinkingCloseTag)\n+\t\ttoolOpenIdx := strings.Index(acc, qwen3ToolOpenTag)\n+\n+\t\t// ... | 2026-02-27T00:13:18 |
golang/go | f062d7b10b276c1b698819f492e4b4754e160ee3 | e15d14873f3e73fa82d1e3242113182035c135ba | cmd/go: look at runes, not bytes, when printing env vars
For #58508
Fixes #71863
Change-Id: Ib1ebaf751bcc6900da6ffd01a9462dd237e2c89a
Reviewed-on: https://go-review.googlesource.com/c/go/+/651295
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Ian Lance Taylor <i... | [
{
"path": "src/cmd/go/internal/envcmd/env.go",
"patch": "@@ -522,51 +522,56 @@ func PrintEnv(w io.Writer, env []cfg.EnvVar, onlyChanged bool) {\n \t}\n }\n \n+// isWindowsUnquotableRune reports whether r can't be quoted in a\n+// Windows \"set\" command.\n+// These runes will be replaced by the Unicode repl... | 2025-02-21T06:20:38 |
vercel/next.js | 7e310f8d2a076cb036297cca9408703083dfd1d2 | 9c1f2727f929b92e1a04d31c6cf425b4f42b5072 | fix(turbopack): Improve error message for PURE selector error (#80068)
### What?
Use CSS string for CSS errors instead of Rust debug representation, and remove `lightningcss` text from the error message.
### Why?
We don't need them. | [
{
"path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts",
"patch": "@@ -464,7 +464,7 @@ describe('ReactRefreshLogBox app', () => {\n \"label\": \"Build Error\",\n \"source\": \"./index.module.css\n Parsing css source code failed\n- Selector is not pure (pure sele... | 2025-06-12T22:44:36 |
electron/electron | 5fc3ed936e7ee5f3258782c0a0312cd9a2ebb174 | 8f5959aad2bb195f54d3a026e39fbc099c952057 | feat: add app.getPreferredSystemLanguages() API (#36035)
* feat: add app.getSystemLanguage() API
* Change the API to getPreferredSystemLanguages
* Fix test
* Clarify docs and add Linux impl
* Remove USE_GLIB
* Don't add C to list
* Remove examples since there's a lot of edge cases
* Fix lint
* ... | [
{
"path": "docs/api/app.md",
"patch": "@@ -717,6 +717,8 @@ To set the locale, you'll want to use a command line switch at app startup, whic\n \n **Note:** This API must be called after the `ready` event is emitted.\n \n+**Note:** To see example return values of this API compared to other locale and language... | 2022-11-09T15:50:43 |
ollama/ollama | d69ddc1edc4c6df26cd6e6a20c040f2d6c6a29ef | 9bf41969f0c23d2ee980d7f092f5f80ea4521d2a | fix: window app crash on startup when update is pending (#14451) | [
{
"path": "app/cmd/app/app.go",
"patch": "@@ -296,8 +296,15 @@ func main() {\n \n \t// Check for pending updates on startup (show tray notification if update is ready)\n \tif updater.IsUpdatePending() {\n-\t\tslog.Debug(\"update pending on startup, showing tray notification\")\n-\t\tUpdateAvailable(\"\")\n+... | 2026-02-26T21:47:12 |
facebook/react | 4a793bb86e6aa8c27b7dcba5783a2f8dbb5b68d0 | dca54c8932cfad5905c8b079be551ba741e07268 | [hoisting] Add more repros for hoisting bugs | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-hoisting.expect.md",
"patch": "@@ -0,0 +1,26 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const wat = () => {\n+ const pathname = \"wat\";\n+ pathname;\n+ };\n+\n+ const pathname... | 2023-11-02T15:01:29 |
huggingface/transformers | 2a54236620f75fdafb6be69492e6995e7869c14f | 2f6249179233e880770c1dbc47ea834ada29fe59 | Add VidEoMT (#44285)
* First draft
* [Videomt] Extend query-stage parity checks to 3-frame inputs
* [Videomt] Add full-model parity check against EoMT reference
* [Videomt] Compare conversion against official GitHub reference
* [Videomt] Simplify conversion to checkpoint-based HF mapping
* [Videomt] Add --verify ... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -974,6 +974,8 @@\n title: UperNet\n - local: model_doc/uvdoc\n title: UVDoc\n+ - local: model_doc/videomt\n+ title: VidEoMT\n - local: model_doc/vit\n title: Vision Transformer (ViT)\n - local: model_... | 2026-03-25T17:05:21 |
vercel/next.js | 9c1f2727f929b92e1a04d31c6cf425b4f42b5072 | 50d6dd0332a68ab6ab73cd2a014331644917bd82 | Revert "refactor(turbopack): Make invalidator flag explicit" (#80466)
Reverts vercel/next.js#80414
it turns out that we were not running debug assertions from CI.
x-ref: https://vercel.slack.com/archives/C03EWR7LGEN/p1749765841011769 | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -423,7 +423,7 @@ impl ProjectContainer {\n \n #[turbo_tasks::value_impl]\n impl ProjectContainer {\n- #[turbo_tasks::function(invalidator)]\n+ #[turbo_tasks::function]\n pub async fn project(&self) -> Result<Vc<Project>> {\n let env_... | 2025-06-12T22:43:11 |
electron/electron | 2008c9a5d0be0c169e8016dac8a90744c504c3f7 | 0ba0df45232d0c1c4542d6647a862305aff28bb4 | fix: arm linux glibc dependency (#36247) | [
{
"path": "script/sysroots.json",
"patch": "@@ -1,43 +1,43 @@\n {\n \"bullseye_amd64\": {\n \"Key\": \"20220331T153654Z-0\",\n- \"Sha1Sum\": \"f515568ba23311d4ae5cb40354d012d4e52f756f\",\n+ \"Sha1Sum\": \"f631cf53b56adcf0d6231c9dfe72affb25516e85\",\n \"SysrootDir\": \"debia... | 2022-11-07T14:38:08 |
ollama/ollama | 9bf41969f0c23d2ee980d7f092f5f80ea4521d2a | 0f23b7bff5f3b2d53e11f6de60065a6ab09f5ff8 | app: fix first update check delayed by 1 hour (#14427) | [
{
"path": "app/cmd/app/app.go",
"patch": "@@ -35,6 +35,7 @@ import (\n var (\n \twv = &Webview{}\n \tuiServerPort int\n+\tappStore *store.Store\n )\n \n var debug = strings.EqualFold(os.Getenv(\"OLLAMA_DEBUG\"), \"true\") || os.Getenv(\"OLLAMA_DEBUG\") == \"1\"\n@@ -208,6 +209,7 @@ func main()... | 2026-02-25T23:29:55 |
facebook/react | faa65778b7c277e0020b8bb1fc172e11a863c0b7 | 9ddfe614f228d89c8d9807a50009004aa8f014c6 | Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/expiration (#27600) | [
{
"path": "fixtures/expiration/yarn.lock",
"patch": "@@ -230,6 +230,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07... | 2023-11-01T19:31:28 |
huggingface/transformers | 2f6249179233e880770c1dbc47ea834ada29fe59 | 0e1978c9eb69ec64b55245212dbf63deab19d25b | fix: remove Copied from comments between @torch.jit.script and def for Python 3.13 compat (#44986)
fix: remove `# Copied from` comments between @torch.jit.script and def for Python 3.13 compat
On Python 3.13, placing a comment between @torch.jit.script and the
function definition causes an IndentationError when torch... | [
{
"path": "src/transformers/models/deberta_v2/modeling_deberta_v2.py",
"patch": "@@ -102,19 +102,16 @@ def build_relative_position(query_layer, key_layer, bucket_size: int = -1, max_p\n \n \n @torch.jit.script\n-# Copied from transformers.models.deberta.modeling_deberta.c2p_dynamic_expand\n def c2p_dynamic_... | 2026-03-25T13:31:30 |
vercel/next.js | 1a854967e8a5cbdfb985316a04d0e5734b883df4 | a720ef8e056d6dcea8bc5ed8f34f43968d3a0c0d | fix(next-swc): Update `styled-jsx` SWC plugin (#80459)
### What?
Apply https://github.com/swc-project/plugins/pull/471
### Why?
To fix the content escaping bug of `styled-jsx` | [
{
"path": "Cargo.lock",
"patch": "@@ -6894,9 +6894,9 @@ dependencies = [\n \n [[package]]\n name = \"styled_jsx\"\n-version = \"0.91.1\"\n+version = \"0.91.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4eeb6bc4423bb2f48d3aad71b09e37ac704fa509b9ddb36540ca321cfb8e91da... | 2025-06-12T22:21:50 |
electron/electron | 0ba0df45232d0c1c4542d6647a862305aff28bb4 | 71b8804fd0b53c4b87de8863a1be627732f60c89 | docs: fix driverId -> deviceId typo (#36246) | [
{
"path": "docs/api/app.md",
"patch": "@@ -1203,7 +1203,7 @@ For `infoType` equal to `basic`:\n }\n ```\n \n-Using `basic` should be preferred if only basic information like `vendorId` or `driverId` is needed.\n+Using `basic` should be preferred if only basic information like `vendorId` or `deviceId` is nee... | 2022-11-07T14:37:51 |
ollama/ollama | 4e57d2094e127fcb32ed40d68289da7e41a83264 | 7f9efd53dfa6dd87ac423695f5ca8ffff5a6222c | mlxrunner: Simplify pipeline memory and cache management
Particularly in error cases, it can be difficult to ensure that
all pinned memory is unpinned, MLX buffers are released and cache
state is consistent. This encapsulates those pieces and sets up
proper deferrals so that this happens automatically on exit. | [
{
"path": "x/mlxrunner/cache.go",
"patch": "@@ -9,59 +9,99 @@ import (\n \t\"github.com/ollama/ollama/logutil\"\n \t\"github.com/ollama/ollama/x/mlxrunner/cache\"\n \t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n+\t\"github.com/ollama/ollama/x/mlxrunner/model/base\"\n )\n \n-// CacheEntry stores a single s... | 2026-02-24T22:19:12 |
facebook/react | 9ddfe614f228d89c8d9807a50009004aa8f014c6 | 6bfc0e032acc7e5ad6da2a09f3c4f47f3321da2c | Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/packaging/brunch/prod (#27598) | [
{
"path": "fixtures/packaging/brunch/prod/yarn.lock",
"patch": "@@ -86,6 +86,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee29... | 2023-11-01T19:30:25 |
huggingface/transformers | 0e1978c9eb69ec64b55245212dbf63deab19d25b | 2620c4ddd41afcc8d3b1d1134803bd418ffa45a7 | More small vllm fixes (#44990)
* BC
* update
* revert
* update
* style | [
{
"path": "src/transformers/utils/generic.py",
"patch": "@@ -940,6 +940,14 @@ def wrapper(self, *args, **kwargs):\n return wrapper\n \n \n+# bc for check_model_inputs:\n+\n+\n+def check_model_inputs(func):\n+ logger.warning_once(\"The `check_model_inputs` decorator is deprecated in favor of `merge_wi... | 2026-03-25T13:05:41 |
golang/go | d93f6df0cc4f33127ef76fa994edd54d7726d0a9 | e1e65ae3ee5f977c31f3651233cc7ff2a0b579ca | reflect: correctly handle method values in Seq
Currently method values aren't correctly handled in Seq because we call
canRangeFunc on the reciever type, not the method value type, when we're
handling a method value. reflect.Value.Type has the logic to obtain the
method value type from the Value.
This change slightly... | [
{
"path": "src/reflect/iter.go",
"patch": "@@ -27,7 +27,7 @@ func rangeNum[T int8 | int16 | int32 | int64 | int |\n // Uint, Uint8, Uint16, Uint32, Uint64, Uintptr,\n // Array, Chan, Map, Slice, or String.\n func (v Value) Seq() iter.Seq[Value] {\n-\tif canRangeFunc(v.typ()) {\n+\tif canRangeFunc(v.abiType(... | 2025-02-21T15:53:51 |
vercel/next.js | f8add0d9ffadf0287542eb19421fbcb918a5f861 | ae1f0be351dbf83bc7cb1c9210123fc609aba0b7 | [segment explorer] fix soft navigation case (#80443) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx",
"patch": "@@ -80,6 +80,8 @@ function PageSegmentTreeLayerPresentation({\n {folderName && (\n <span className=\"segment-explorer-filename--path\">\n {f... | 2025-06-12T11:10:33 |
ollama/ollama | f20dc6b698eba22c125b1b86a301d6e42673c85e | 4b2ac1f369cc6ce2666d4a332d20548766150ed1 | mlx: don't default to affine quantization for unquantized models
Otherwise the BF16 version of models trigger segfaults when they
call into quantized kernels. | [
{
"path": "x/imagegen/safetensors/loader.go",
"patch": "@@ -37,9 +37,11 @@ func QuantizationParams(quantization string) (groupSize, bits int, mode string)\n \tcase \"MXFP8\":\n \t\t// Microsoft MX FP8: group_size=32, bits=8, E4M3 scales (no qbias)\n \t\treturn 32, 8, \"mxfp8\"\n-\tcase \"FP8\", \"Q8\", \"IN... | 2026-02-18T23:32:40 |
huggingface/transformers | 2620c4ddd41afcc8d3b1d1134803bd418ffa45a7 | c532659b8734b88d2bbaac2542c2a5a8b525f3f7 | fix(models): Fix Perceiver interpolate_pos_encoding interpolating to the source size (#44899)
* fix: Correct interpolation target size
* test: Add fast test coverage | [
{
"path": "src/transformers/models/perceiver/modeling_perceiver.py",
"patch": "@@ -2567,7 +2567,7 @@ def interpolate_pos_encoding(self, position_embeddings: torch.Tensor, height: in\n \n position_embeddings = nn.functional.interpolate(\n position_embeddings,\n- size=(new_heigh... | 2026-03-25T11:41:05 |
facebook/react | 3eaa0c3871b63b6542a939d9c0e7040bf42b75b7 | 00409516371ac536d0ba5a7093699a36f9316070 | Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/packaging/brunch/dev (#27606)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.0.4 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CHANGE... | [
{
"path": "fixtures/packaging/brunch/dev/yarn.lock",
"patch": "@@ -86,6 +86,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294... | 2023-11-01T19:20:57 |
electron/electron | 71b8804fd0b53c4b87de8863a1be627732f60c89 | 15540975ff3f3979ba93ed560fdb18489c458b98 | docs: Fixed outdated documentation (uploading to App Store) (#35116)
* Updated docs on uploading
- replaced mention of Application Loader with Apple Transporter, its replacement
- replaced mention of iTunes Connect with App Store Connect
- updated link for creating a record
* Update mac-app-store-submission-g... | [
{
"path": "docs/tutorial/mac-app-store-submission-guide.md",
"patch": "@@ -232,7 +232,7 @@ how to meet the Mac App Store requirements.\n \n ### Upload\n \n-The Application Loader should be used to upload the signed app to iTunes\n+[Apple Transporter][apple-transporter] should be used to upload the signed ap... | 2022-11-01T21:07:50 |
golang/go | e1f02e9ae5efc45a8428e97e0c05fd85a5cbcec4 | af00524a6c1660e6a66fd975921df40ac1c3a415 | doc: add a disclamer for the TLS handshake timeouts TL;DR bug in godebug.md
Relates to #71257. Since post-quantum TLS algorithms are enabled by default, we should warn about the possible bugs with legacy servers (see https://tldr.fail/)
Change-Id: I06a5d8a927497ea2141007b14a90af27e0891720
GitHub-Last-Rev: 476e6462dfc... | [
{
"path": "doc/godebug.md",
"patch": "@@ -217,6 +217,8 @@ field by default.\n Go 1.24 enabled the post-quantum key exchange mechanism\n X25519MLKEM768 by default. The default can be reverted using the\n [`tlsmlkem` setting](/pkg/crypto/tls/#Config.CurvePreferences).\n+This can be useful when dealing with bu... | 2025-02-20T22:33:45 |
vercel/next.js | f646f4df2fda7fe0005c93a95c0492e06aac9278 | 301e79db455f2c1c4eb2448dd074863ae3512269 | chore: Remove useActionState from auto wrapping list (#80420)
Fixes: https://github.com/vercel/next.js/issues/80419 | [
{
"path": "docs/01-app/01-getting-started/08-updating-data.mdx",
"patch": "@@ -22,7 +22,6 @@ By convention, a Server Action is an async function used with [`startTransition`\n \n - Passed to a `<form>` using the `action` prop.\n - Passed to a `<button>` using the `formAction` prop.\n-- Passed to `useActionS... | 2025-06-12T10:41:26 |
ollama/ollama | 8daf47fb3afec28de3e447d974c2bf911bcafc20 | 6c980579cdc62d67aee13511102437a6fe5aa13a | mlxrunner: Fix duplicate log prefixes and reduce log noise
Pass subprocess stdout/stderr through to the parent's stderr directly
instead of re-wrapping each line with slog. The subprocess already
writes structured slog output, so the re-wrapping produced nested
timestamps, levels, and message fields that were hard to ... | [
{
"path": "x/mlxrunner/cache/cache.go",
"patch": "@@ -3,8 +3,7 @@\n package cache\n \n import (\n-\t\"log/slog\"\n-\n+\t\"github.com/ollama/ollama/logutil\"\n \t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n )\n \n@@ -113,7 +112,7 @@ func (c *RotatingKVCache) Update(keys, values *mlx.Array) (*mlx.Array, *ml... | 2026-02-23T21:28:01 |
electron/electron | 2f2c43e5e513e65a0aabac62622d51a1dfe49357 | 169cf531ba72247552ade73f7107a38b4362eab4 | build: fix building with enable_plugins = false (#36193)
Co-authored-by: Milan Burda <miburda@microsoft.com> | [
{
"path": "BUILD.gn",
"patch": "@@ -665,6 +665,8 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/common/plugin_info.cc\",\n \"shell/common/plugin_info.h\",\n+ \"shell/renderer/electron_renderer_pepper_host_factory.cc\",\n+ \"shell/renderer/electron_renderer_pepper_host_f... | 2022-10-31T23:18:15 |
huggingface/transformers | c532659b8734b88d2bbaac2542c2a5a8b525f3f7 | c3b41c6c57be42e5dc2834af25c0c15be98a6678 | Allow `mm_token_type` be non-padded lists (#44563)
* squash commit
* several forks mixed up, revert
* oops
* glms
* commit lost when rebasing, revert
* typing hints
* more failures
* fix repo
* comments and revert unrelated
* fix style
* fix repo | [
{
"path": "src/transformers/models/aria/modular_aria.py",
"patch": "@@ -11,7 +11,6 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n-import numpy as np\n import torch\n ... | 2026-03-25T11:20:06 |
facebook/react | 00409516371ac536d0ba5a7093699a36f9316070 | d0fcd36af479c4c8d419d689550768f535493b68 | Bump browserify-sign from 4.2.1 to 4.2.2 in /fixtures/dom (#27608)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.2.1 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CHANGELOG.md">browserif... | [
{
"path": "fixtures/dom/yarn.lock",
"patch": "@@ -1248,11 +1248,21 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:\n resolved \"https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828\"\n integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn... | 2023-11-01T19:20:39 |
vercel/next.js | e52ffc1f91402ae8a188d9cf86638ffd9d0813ab | 9dd1db5e6e2a4b18719ef86bd09e40445b8ae977 | Turbopack: fix persistent caching bit number typo (#80431)
### What?
fix typo discovered by @bgw | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/storage.rs",
"patch": "@@ -97,7 +97,7 @@ bitfield! {\n pub data_modified, set_data_modified: 3;\n /// Item was modified after snapshot mode was entered. A snapshot was taken.\n pub meta_snapshot, set_meta_snapshot: 4;\n- pub data_sna... | 2025-06-12T08:43:05 |
golang/go | af00524a6c1660e6a66fd975921df40ac1c3a415 | 3b25b3c195fd2aeb01ab23ba6e15a48199a218fb | debug/buildinfo: base64-encode test binaries
Overzealous security scanners don't like the Go 1.17 binary because they
think it has every 1.17 security vulnerability. base64-encode the binary
to hide from them.
I've also extended the instructions to make the binary easier to
reproduce.
Since we do the Go binary, we m... | [
{
"path": "src/debug/buildinfo/buildinfo_test.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"encoding/binary\"\n \t\"flag\"\n \t\"fmt\"\n+\t\"internal/obscuretestdata\"\n \t\"internal/testenv\"\n \t\"os\"\n \t\"os/exec\"\n@@ -275,24 +276,16 @@ func TestReadFile(t *testing.T) {\n \n // Test117 verifies that... | 2025-02-20T19:42:19 |
huggingface/transformers | c3b41c6c57be42e5dc2834af25c0c15be98a6678 | b3d7942fbaedda791668d7fe42eaaa323ed7a089 | Fix CPU 16 bytes alignment issue using equivalent fallback (#44970)
* fix 16 bytes alignement issue
* add issue for reference
* test fix for non-aligned inputs as well
* avoid dims non divisible by 8 for grouped_mm testing
* test
* style
* final fix that works for cpu builds as well
* move coment | [
{
"path": "docs/source/en/weightconverter.md",
"patch": "@@ -168,7 +168,6 @@ Operations are fully reversible. Saving reverses the conversions and returns the\n | [`MergeModulelist(dim)`] | [`SplitModulelist(dim)`] |\n | [`SplitModulelist(dim)`] | [`MergeModulelist(dim)`] |\n | [`Transpose(d0, d1)`] | [`Tran... | 2026-03-25T08:45:47 |
ollama/ollama | 5c73c4e2eedeeb847743f43b4d2e85ff4b02be4b | 5daf59cc6666dd036af8fab8c5df6b5571a9a9ba | mlxrunner: Simplify KV cache to single-entry prefix matching
The KV cache previously used a tree structure which could
store multiple divergent sequences, which is good for cache
reuse. However, this is typically used in conjunction with
paged attention so each node in the tree can store just a
chunk of the KV cache a... | [
{
"path": "x/mlxrunner/cache.go",
"patch": "@@ -3,94 +3,65 @@\n package mlxrunner\n \n import (\n+\t\"fmt\"\n \t\"log/slog\"\n \n+\t\"github.com/ollama/ollama/logutil\"\n \t\"github.com/ollama/ollama/x/mlxrunner/cache\"\n+\t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n )\n \n+// CacheEntry stores a single ... | 2026-02-20T00:50:18 |
electron/electron | b9464d89b8dedc86e9f9c04d400349c193be27ba | 67a0c702fad7d61598b5b4bd31076a66f2954631 | fix: remove undocumented feature and flaky test for webview resize event (#36154) | [
{
"path": "lib/renderer/web-view/web-view-impl.ts",
"patch": "@@ -24,7 +24,6 @@ export class WebViewImpl {\n public guestInstanceId?: number\n public hasFocus = false\n public internalInstanceId?: number;\n- public resizeObserver?: ResizeObserver;\n public viewInstanceId: number\n \n // on* Event... | 2022-10-27T23:44:53 |
vercel/next.js | 5261ed8db95d4b056f0ed6fb1788a17dabc4b166 | fba3b9b0b76310eb60eb2b368cf206cf3069cfc0 | Turbopack Build: Fix /index/index handling (#80413)
## What?
Alternative for #80385 | [
{
"path": "packages/next/src/shared/lib/turbopack/manifest-loader.ts",
"patch": "@@ -478,22 +478,29 @@ export class TurbopackManifestLoader {\n }\n \n const sortedPageKeys = getSortedRoutes(pagesKeys)\n- const content: ClientBuildManifest = {\n+ const clientBuildManifest: ClientBuildManifest =... | 2025-06-11T15:52:51 |
facebook/react | d0fcd36af479c4c8d419d689550768f535493b68 | 169d3350f005a0ab184746e7eca3548116472a34 | Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/attribute-behavior (#27601)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.0.4 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CHANGELO... | [
{
"path": "fixtures/attribute-behavior/yarn.lock",
"patch": "@@ -242,6 +242,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294... | 2023-11-01T19:20:01 |
golang/go | 3b25b3c195fd2aeb01ab23ba6e15a48199a218fb | 266b0cff187f7deac294e5731143f0d0ffe04948 | cmd/compile: remove residual register GC map code
We used to generate register GC maps as an experimental approach
for asynchronous preemption, which later we chose not to take.
Most of the register GC map code are already removed. One
exception is that the ssa.Register type still contains a field
for the register map... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/main.go",
"patch": "@@ -426,7 +426,6 @@ func genOp() {\n \t\t\tcontinue\n \t\t}\n \t\tfmt.Fprintf(w, \"var registers%s = [...]Register {\\n\", a.name)\n-\t\tvar gcRegN int\n \t\tnum := map[string]int8{}\n \t\tfor i, r := range a.regnames {\n \t\t\tnum[r] = int8(i... | 2025-02-16T21:31:22 |
huggingface/transformers | b3d7942fbaedda791668d7fe42eaaa323ed7a089 | 28af8184fb00a0e9bc778c3defdec39bbe7e8839 | refactor: unify QA calls (#44879)
* unify calls
* give me make!
* added tomli to quality extra
* keep teh exact same behavior
* remove circleCI from agent file
* unified UI
* better UX
* fix typing target
* dev-ci
* dev-ci
* hardcoded :dev
* removed dev blocks and python version marker
* make fix-repo | [
{
"path": ".ai/AGENTS.md",
"patch": "@@ -2,10 +2,10 @@\n - `make style`: runs formatters and linters (ruff), necessary to pass code style checks\n - `make typing`: runs the ty type checker and model structure rules\n - `make fix-repo`: auto-fixes copies, modular conversions, doc TOCs, docstrings in addition... | 2026-03-25T08:39:39 |
ollama/ollama | 5daf59cc6666dd036af8fab8c5df6b5571a9a9ba | 0ade9205cce88006245dc54ea8884607822b103b | mlxrunner: Fix memory leaks with pin/sweep lifecycle management
The previous approach tracked array lifecycles through reference
counting, where each array recorded its inputs and a reference count
that was decremented as dependents were freed. This is not really
necessary as MLX tracks references internally. It is al... | [
{
"path": "x/mlxrunner/cache/cache.go",
"patch": "@@ -47,6 +47,7 @@ func (c *KVCache) Update(keys, values *mlx.Array) (*mlx.Array, *mlx.Array) {\n \t\t\tc.values.Set(c.values.Concatenate(2, newValues))\n \t\t} else {\n \t\t\tc.keys, c.values = newKeys, newValues\n+\t\t\tmlx.Pin(c.keys, c.values)\n \t\t}\n \... | 2026-02-19T23:05:35 |
electron/electron | 67a0c702fad7d61598b5b4bd31076a66f2954631 | ea6f873f979f9dea98006288ab143330beecffa8 | build: prefix version in uploader script (#36169)
build: prefix v in uploader script | [
{
"path": "script/release/uploaders/upload.py",
"patch": "@@ -23,7 +23,7 @@\n SRC_DIR, ELECTRON_DIR, TS_NODE\n \n \n-ELECTRON_VERSION = get_electron_version()\n+ELECTRON_VERSION = 'v' + get_electron_version()\n \n PROJECT_NAME = get_electron_branding()['project_name']\n PRODUCT_NAME = g... | 2022-10-27T19:02:18 |
vercel/next.js | 2ecfdb8bf3c2782f539ed494f6442942ec6c1023 | c8bcde6bf83fb7382d680525fece246f0b0d13fb | Fix a couple typos (#80080) | [
{
"path": "examples/cms-wordpress/README.md",
"patch": "@@ -153,7 +153,7 @@ module.exports = {\n ## Advanced Custom Fields PRO (optional, but recommended)\n \n I will recommend building your page content by using the [Flexible Content](https://www.advancedcustomfields.com/resources/flexible-content/) data t... | 2025-06-11T12:43:59 |
golang/go | 00635de759b38610dd86f60074856367d6a1ceaa | 0de8fc852704d672e3379b05d617ce75dc0b2613 | cmd/compile: don't report newLimit discovered when unsat happens multiple times
Fixes #71852
Change-Id: I696fcb8fc8c0c2e5e5ae6ab50596f6bdb9b7d498
Reviewed-on: https://go-review.googlesource.com/c/go/+/650975
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith R... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -552,8 +552,9 @@ func (ft *factsTable) newLimit(v *Value, newLim limit) bool {\n \t}\n \n \tif lim.unsat() {\n+\t\tr := !ft.unsat\n \t\tft.unsat = true\n-\t\treturn true\n+\t\treturn r\n \t}\n \n \t// Check for recursion. This normally happens ... | 2025-02-20T10:50:53 |
facebook/react | 169d3350f005a0ab184746e7eca3548116472a34 | a675e5751b969750fc9ec4beeb43a72750644ac3 | Bump browserify-sign from 4.2.1 to 4.2.2 in /fixtures/ssr2 (#27616)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.2.1 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CHANGELOG.md">browseri... | [
{
"path": "fixtures/ssr2/package-lock.json",
"patch": "@@ -17,8 +17,8 @@\n \"concurrently\": \"^5.3.0\",\n \"express\": \"^4.17.1\",\n \"nodemon\": \"^2.0.6\",\n- \"react\": \"18.0.0-alpha-7ec4c5597\",\n- \"react-dom\": \"18.0.0-alpha-7ec4c5597\",\n+ \"react\": \... | 2023-11-01T19:19:34 |
huggingface/transformers | 28af8184fb00a0e9bc778c3defdec39bbe7e8839 | 28e1cc59ecf479ea674f2cc4b443a2969aae3a69 | Fix tie_word_embedding issues with `Qwen2VL` (#44976)
* Fix tie_word_embedding issues with `Qwen2VL`
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
* remove colqwen hack
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
---------
Signed-off-by: Harry Mellor <19981378... | [
{
"path": "src/transformers/models/colmodernvbert/configuration_colmodernvbert.py",
"patch": "@@ -72,9 +72,6 @@ def __post_init__(self, **kwargs):\n if not hasattr(self.vlm_config, \"vocab_size\"):\n self.vlm_config.vocab_size = self.vlm_config.get_text_config().vocab_size\n \n- #... | 2026-03-24T20:48:14 |
ollama/ollama | 8b4e5a82a8dc3aadfa385eb0ff0641a8c9cbbfad | 34452233116171391f770e8079002620d0a9fd7a | mlx: remove noisy error output from dynamic library loading (#14346)
The recent change in #14322 added tryLoadByName() which attempts to
load libmlxc.dylib via rpath before searching directories. This is an
optimization for Homebrew installations where rpath is correctly set.
However, when rpath isn't set (which is t... | [
{
"path": "x/mlxrunner/mlx/dynamic.c",
"patch": "@@ -18,7 +18,9 @@\n \n static int mlx_dynamic_open(mlx_dynamic_handle* handle, const char* path) {\n handle->ctx = (void*) DLOPEN(path);\n- CHECK(handle->ctx != NULL);\n+ if (handle->ctx == NULL) {\n+ return 1;\n+ }\n return 0;\n }\n "... | 2026-02-21T07:46:07 |
vercel/next.js | 2251d0f74a25a9da0b0efb7b62431bab218d5b6a | b268caeac5f7cfefb90471252716bf854460d2e7 | docs: server-only/client-only in Next.js (#80408)
Closes:
https://linear.app/vercel/issue/DOC-4679/server-only-client-only-as-managed-by-nextjs
Fixes: https://github.com/vercel/next.js/issues/71071 | [
{
"path": "docs/01-app/01-getting-started/08-server-and-client-components.mdx",
"patch": "@@ -507,7 +507,7 @@ export default function Page() {\n \n ### Preventing environment poisoning\n \n-JavaScript modules can be shared between both Server and Client Components modules. This means it's possible to accide... | 2025-06-11T12:06:46 |
golang/go | 0de8fc852704d672e3379b05d617ce75dc0b2613 | 458ac1b01590506891b2ad2b300ead76aaa4e119 | syscall: don't send child signal when testing pidfd
Avoid a spurious SIGCHLD the first time we start a process.
Fixes #71828
Change-Id: I744100d21bf6aaaaafc99bc5eec9f9f807a50682
Reviewed-on: https://go-review.googlesource.com/c/go/+/650835
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Michael Knyszek ... | [
{
"path": "src/os/exec/exec_posix_test.go",
"patch": "@@ -11,19 +11,23 @@ import (\n \t\"internal/testenv\"\n \t\"io\"\n \t\"os\"\n+\t\"os/exec\"\n+\t\"os/signal\"\n \t\"os/user\"\n \t\"path/filepath\"\n \t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync\"\n \t\"syscall\"\n \t\"testing\... | 2025-02-20T01:37:49 |
facebook/react | a675e5751b969750fc9ec4beeb43a72750644ac3 | 2bd946956d9835652e64d796c9f0942107418f19 | Bump browserify-sign from 4.2.1 to 4.2.2 in /fixtures/concurrent/time-slicing (#27615)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.2.1 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CHA... | [
{
"path": "fixtures/concurrent/time-slicing/yarn.lock",
"patch": "@@ -1219,11 +1219,16 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:\n resolved \"https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88\"\n integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7... | 2023-11-01T19:19:28 |
electron/electron | ea6f873f979f9dea98006288ab143330beecffa8 | 07530f8e37060fc58991224e7d027614bffb4721 | chore: bump chromium to 109.0.5382.0 (main) (#36057)
* chore: bump chromium in DEPS to 109.0.5364.0
* chore: update patches
* chore: bump chromium in DEPS to 109.0.5366.0
* chore: update patches
* i3940364: Change PermissionType::WINDOW_PLACEMENT to WINDOW_MANAGEMENT
https://chromium-review.googlesource... | [
{
"path": "BUILD.gn",
"patch": "@@ -663,6 +663,8 @@ source_set(\"electron_lib\") {\n if (enable_plugins) {\n deps += [ \"chromium_src:plugins\" ]\n sources += [\n+ \"shell/common/plugin_info.cc\",\n+ \"shell/common/plugin_info.h\",\n \"shell/renderer/pepper_helper.cc\",\n \"s... | 2022-10-27T16:37:04 |
vercel/next.js | 614329711ea861001e905b3c5f97d8a2ab9b3379 | 7bb72e508572237fe0d4aac5418546d4b4b3a363 | Use new `browserWithResponse()` method in `empty-fallback-shells` tests (#80406)
In e2e tests, we sometimes want to assert on the response headers and on
the rendered HTML within the same test. For the former, we usually use
`next.fetch()`, but this doesn't allow us to use the Playwright browser
API to assert on the r... | [
{
"path": "test/e2e/app-dir/empty-fallback-shells/app/with-cached-io/last-modified.jsx",
"patch": "@@ -1,9 +1,12 @@\n+import { getSentinelValue } from './sentinel'\n+\n export async function LastModified({ params }) {\n const { slug } = await params\n \n return (\n- <p data-testid={`page-${slug}`}>\n... | 2025-06-11T10:28:22 |
golang/go | b9630c56db42dd58fd7ce21ea854815d0ab31878 | ad39fd94860661d022c633cd2856a76221adedc8 | cmd/internal/obj/loong64: optimize immediate loading
| old | new |
| sec/op | sec/op vs base |
BinaryTree17 11.08 ± 2% 11.16 ± 1% ~ (p=0.529 n=10)
Fannkuch11 ... | [
{
"path": "src/cmd/asm/internal/asm/endtoend_test.go",
"patch": "@@ -465,6 +465,8 @@ func TestLOONG64Encoder(t *testing.T) {\n \ttestEndToEnd(t, \"loong64\", \"loong64enc1\")\n \ttestEndToEnd(t, \"loong64\", \"loong64enc2\")\n \ttestEndToEnd(t, \"loong64\", \"loong64enc3\")\n+\ttestEndToEnd(t, \"loong64\", ... | 2024-07-11T13:03:45 |
ollama/ollama | 97323d1c68f1eb7a860ce7bc4e627a97d9c38835 | 458dd1b9d98a5981d1ed4134258e07186b219a69 | consolidate the tokenizer (#14327)
This change adds a new x/tokenizer package which includes:
* New BPE and SentencePiece tokenizers
* Removing the dependency on the imagegen tokenizers
* Fixes to multibyte decoding in the pipeline
* Various correctness and benchmark tests
Not included in this PR is the WordP... | [
{
"path": "x/mlxrunner/model/base/base.go",
"patch": "@@ -8,10 +8,10 @@ import (\n \t\"log/slog\"\n \t\"sync\"\n \n-\t\"github.com/ollama/ollama/x/imagegen/tokenizer\"\n \t\"github.com/ollama/ollama/x/mlxrunner/cache\"\n \t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n \t\"github.com/ollama/ollama/x/mlxrunn... | 2026-02-19T23:55:45 |
huggingface/transformers | 28e1cc59ecf479ea674f2cc4b443a2969aae3a69 | 692d187dc7b1091717bfe941785d272f7d575563 | Support Modular (!!) + Configs in `check_auto_docstrings` (#44803)
* Support config in check_auto_docstrings, fix all configs docstrings
* Add checking and fixing in modular
* fix style
* fix document ownly own attributes in configs, not inherited ones
* Add back removed examples, look through mro until PreTrained... | [
{
"path": "docs/source/en/auto_docstring.md",
"patch": "@@ -31,7 +31,7 @@ from ...utils import auto_docstring\n Select whether you'd like to apply `@auto_docstring` to a class or function below to see how to use it.\n \n <hfoptions id=\"type\">\n-<hfoption id=\"classes\">\n+<hfoption id=\"model classes\">\n... | 2026-03-24T17:46:05 |
facebook/react | 2bd946956d9835652e64d796c9f0942107418f19 | a79b55df7468f07724da2c81ef1280c65ea6bc76 | Bump browserify-sign from 4.2.1 to 4.2.2 in /fixtures/fizz (#27614)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.2.1 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CHANGELOG.md">browseri... | [
{
"path": "fixtures/fizz/yarn.lock",
"patch": "@@ -1476,11 +1476,16 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:\n resolved \"https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88\"\n integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HC... | 2023-11-01T19:19:22 |
vercel/next.js | 9499a50f064925b48dc98895d001dde5ac0d3305 | 624df11aedfc6282f349d8d687b2ee980f7e643e | Turbopack: include obsolete entries in computation (#80362)
### What?
We didn't include already removed entries in the usage computation. So a meta file was incorrectly marked as unused and was removed. | [
{
"path": "turbopack/crates/turbo-persistence-tools/src/main.rs",
"patch": "@@ -39,7 +39,7 @@ fn main() -> Result<()> {\n {\n println!(\n \" SST {sequence_number:08}.sst: {min_hash:016x} - {max_hash:016x} (p = 1/{})\",\n- u64::MAX / (max_hash - min_hash)\n... | 2025-06-10T22:58:46 |
electron/electron | 07530f8e37060fc58991224e7d027614bffb4721 | 260678bd0c4e3b917790b44929ad0d34a5078a0c | test: fix flake in will-navigate test (#36153) | [
{
"path": "spec/api-browser-window-spec.ts",
"patch": "@@ -567,6 +567,10 @@ describe('BrowserWindow module', () => {\n targetId: iframeTarget.targetId,\n flatten: true\n });\n+ let willNavigateEmitted = false;\n+ w.webContents.on('will-navigate', () => {\n... | 2022-10-27T13:29:19 |
golang/go | 9b842e2e63b660dd5e9ac39bac58a578d7b69824 | 3013231f46908bf5908624385cc9717354c0deba | crypto/tls: improve ech parsing errors
Make the errors we return when parsing an ECHConfig slightly more
verbose.
Fixes #71706
Change-Id: Id138fd9defec71ce492a490a71af4981cb9ede51
Reviewed-on: https://go-review.googlesource.com/c/go/+/650720
Auto-Submit: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LU... | [
{
"path": "src/crypto/tls/ech.go",
"patch": "@@ -53,67 +53,78 @@ type echConfig struct {\n \tExtensions []echExtension\n }\n \n-var errMalformedECHConfig = errors.New(\"tls: malformed ECHConfigList\")\n+var errMalformedECHConfigList = errors.New(\"tls: malformed ECHConfigList\")\n+\n+type echConfigErr st... | 2025-02-19T22:27:33 |
ollama/ollama | 458dd1b9d98a5981d1ed4134258e07186b219a69 | 9d02d1d767b075221031be19ad9695f1259b3519 | mlx: try loading library via rpath before searching directories (#14322)
The existing code manually searches directories for libmlxc.* and passes
full paths to dlopen, bypassing the binary's rpath. This means MLX
libraries installed via package managers (e.g., Homebrew) aren't found
even when rpath is correctly set at... | [
{
"path": "x/mlxrunner/mlx/dynamic.go",
"patch": "@@ -55,6 +55,30 @@ func tryLoadFromDir(dir string) bool {\n \treturn false\n }\n \n+// tryLoadByName attempts to load the library using just its name,\n+// allowing the system to use rpath, LD_LIBRARY_PATH, or standard search paths.\n+// Returns true if the ... | 2026-02-19T18:55:02 |
huggingface/transformers | 692d187dc7b1091717bfe941785d272f7d575563 | 18f88de7f575410f3ad8a64418abf2572fecb259 | [ `vllm x v5`] nit (#44971)
* remove class
* remove more
* fix repo
* up up | [
{
"path": "src/transformers/configuration_utils.py",
"patch": "@@ -32,7 +32,6 @@\n from .generation.configuration_utils import GenerationConfig\n from .modeling_gguf_pytorch_utils import load_gguf_checkpoint\n from .modeling_rope_utils import RotaryEmbeddingConfigMixin\n-from .tokenization_utils_base import... | 2026-03-24T17:40:02 |
facebook/react | a79b55df7468f07724da2c81ef1280c65ea6bc76 | c988756f95e0316a4f913227e108653f88574b2b | Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/packaging/browserify/prod (#27599)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.0.4 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/C... | [
{
"path": "fixtures/packaging/browserify/prod/yarn.lock",
"patch": "@@ -21,6 +21,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2... | 2023-11-01T19:19:07 |
electron/electron | 02ad8fcd5fe5fd047daf5cdfe76c82ecc41ba724 | ff4816367e6d4b8ed128400135e71859c45187ea | docs: correcting main example in WebRequest documentation (#36113)
Correcting main example
The entry `*://electron.github.io` is invalid and produces an exception. i.e.
> UnhandledPromiseRejectionWarning: TypeError: Invalid url pattern *://electron.github.io: Empty path.
Setting a valid path to resolve this i... | [
{
"path": "docs/api/web-request.md",
"patch": "@@ -28,7 +28,7 @@ const { session } = require('electron')\n \n // Modify the user agent for all requests to the following urls.\n const filter = {\n- urls: ['https://*.github.com/*', '*://electron.github.io']\n+ urls: ['https://*.github.com/*', '*://electron.... | 2022-10-27T07:18:07 |
vercel/next.js | 624df11aedfc6282f349d8d687b2ee980f7e643e | cd156f92329f17d0ddb70054ee13d6456c6e81fa | fix(next-swc-wasm): Only enable turbo-rcstr's napi feature when building the next-swc-napi crate/package (#80390)
Fixes https://vercel.slack.com/archives/C04KC8A53T7/p1749584921462879
```
pnpm swc-build-wasm
``` | [
{
"path": "Cargo.toml",
"patch": "@@ -250,7 +250,7 @@ next-custom-transforms = { path = \"crates/next-custom-transforms\" }\n # Turbopack\n auto-hash-map = { path = \"turbopack/crates/turbo-tasks-auto-hash-map\" }\n turbo-prehash = { path = \"turbopack/crates/turbo-prehash\" }\n-turbo-rcstr = { path = \"tur... | 2025-06-10T22:31:43 |
golang/go | 3013231f46908bf5908624385cc9717354c0deba | 07a121383c52fc2edb96d4d58d1dd600bc3e7dfd | crypto/tls: fix incorrect EncryptedClientHelloKey comment
Updates #71706
Change-Id: Id689ec476eb3f76500dbf59d716a4376749de700
Reviewed-on: https://go-review.googlesource.com/c/go/+/650719
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Auto-Submit: Roland Shoemaker <roland@golang.org>
Reviewed-by: Michael Kny... | [
{
"path": "src/crypto/tls/common.go",
"patch": "@@ -870,7 +870,7 @@ type EncryptedClientHelloKey struct {\n \t// must match the config provided to clients byte-for-byte. The config\n \t// should only specify the DHKEM(X25519, HKDF-SHA256) KEM ID (0x0020), the\n \t// HKDF-SHA256 KDF ID (0x0001), and a subset... | 2025-02-19T22:14:54 |
ollama/ollama | d07e4a1dd39c6334184c05e1c3b8192865e114c2 | 8a257ec00a76d3dd90f0106fba1e56215588efae | bugfix: better mlx model scheduling (#14290)
This fixes a bug with current MLX based models which don't get loaded/unloaded correctly. The first model currently gets loaded and then subsequent model starts get shunted to the first runner which results in the wrong model being run. | [
{
"path": "server/routes_generate_test.go",
"patch": "@@ -2371,6 +2371,26 @@ func TestImageGenerateStreamFalse(t *testing.T) {\n \t\treturn nil\n \t}\n \n+\t// Create model manifest with image capability\n+\tn := model.ParseName(\"test-image\")\n+\tcfg := model.ConfigV2{Capabilities: []string{\"image\"}}\n+... | 2026-02-17T21:57:05 |
huggingface/transformers | 18f88de7f575410f3ad8a64418abf2572fecb259 | b94fee049373eb2e140d4866847559c4c42b3d7e | LwDetrImageLoss: Fix dtype casting to prevent crash when using amp on cuda device (#44886)
* LwDetrImageLoss: Fix dtype casting to prevent crash when using amp on cuda device
* fix PR review comments
* add comments and apply similar fix rt_detr
---------
Co-authored-by: Matthias <matthias.meier@autonomous-teaming.... | [
{
"path": "src/transformers/loss/loss_lw_detr.py",
"patch": "@@ -112,6 +112,7 @@ def loss_labels(self, outputs, targets, indices, num_boxes):\n if \"logits\" not in outputs:\n raise KeyError(\"No logits were found in the outputs\")\n source_logits = outputs[\"logits\"]\n+ ... | 2026-03-24T16:47:07 |
facebook/react | c988756f95e0316a4f913227e108653f88574b2b | d947c2f1100dfd006fd91c6e9ed84d42ca7ab088 | Bump browserify-sign from 4.0.4 to 4.2.2 in /fixtures/packaging/browserify/dev (#27597)
Bumps
[browserify-sign](https://github.com/crypto-browserify/browserify-sign)
from 4.0.4 to 4.2.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/browserify/browserify-sign/blob/main/CH... | [
{
"path": "fixtures/packaging/browserify/dev/yarn.lock",
"patch": "@@ -21,6 +21,15 @@ asn1.js@^4.0.0:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n \n+asn1.js@^5.2.0:\n+ version \"5.4.1\"\n+ resolved \"https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2e... | 2023-11-01T19:18:54 |
electron/electron | ff4816367e6d4b8ed128400135e71859c45187ea | ff3289d260abadb5d1ac57a1e7daf5e511fda0be | refactor: handle uncaught promise error (#35484) | [
{
"path": "lib/renderer/web-view/web-view-attributes.ts",
"patch": "@@ -186,7 +186,10 @@ export class SrcAttribute extends WebViewAttribute {\n opts.userAgent = useragent;\n }\n \n- (this.webViewImpl.webviewNode as Electron.WebviewTag).loadURL(this.getValue(), opts);\n+ (this.webViewImpl.web... | 2022-10-27T07:16:26 |
golang/go | 0d8c512ce9186b7e188713ec3a29f9dbb4817668 | 57cd75a351a170e6ec6f3525972d16a3135b9398 | internal/poll: note that copy_file_range bug is fixed
We shouldn't drop the workaround in case we're running on an unpatched
kernel.
For #44272.
Change-Id: I6a6a636cb81c31856ac9b682e7d02fa1d8efa5d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/644878
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryB... | [
{
"path": "src/internal/poll/copy_file_range_linux.go",
"patch": "@@ -67,10 +67,11 @@ func handleCopyFileRangeErr(err error, copied, written int64) (bool, error) {\n \t\treturn false, nil\n \tcase nil:\n \t\tif copied == 0 {\n-\t\t\t// If we did not read any bytes at all,\n-\t\t\t// then this file may be in... | 2025-01-27T21:50:35 |
vercel/next.js | cd156f92329f17d0ddb70054ee13d6456c6e81fa | 81d4a8bd5ca5ad451c7f831bcd50167aee8835f2 | Discard `Infinity` expiration for implicit tags (#80387)
When a cache handler returns `Infinity` from its `getExpiration` method,
it signals to Next.js that soft/implicit tags are supposed to be passed
into the `get` method instead to be checked for expiration. Documenting
this in the `CacheHandlerV2` interface, and a... | [
{
"path": "packages/next/src/server/use-cache/use-cache-wrapper.ts",
"patch": "@@ -867,10 +867,17 @@ export function cache(\n workUnitStore.implicitTags.expirationsByCacheKind.get(kind)\n \n if (lazyExpiration) {\n- if (isResolvedLazyResult(lazyExpiration)) {\n- ... | 2025-06-10T22:24:52 |
ollama/ollama | 3a88f7eb2087170a0835dd2a1bdb2ddad4e5cdd5 | 0d5da826d47f6ca219f04302234b77a849476fba | bugfix: add missing linear layer factory (#14289) | [
{
"path": "x/mlxrunner/model/linear.go",
"patch": "@@ -0,0 +1,92 @@\n+//go:build mlx\n+\n+package model\n+\n+import (\n+\t\"github.com/ollama/ollama/x/mlxrunner/mlx\"\n+\t\"github.com/ollama/ollama/x/models/nn\"\n+)\n+\n+// LinearFactory builds linear layers using shared tensor maps and quant defaults.\n+ty... | 2026-02-17T01:22:20 |
huggingface/transformers | b94fee049373eb2e140d4866847559c4c42b3d7e | 15b3b8924b393afa37bdc36a3206eb5032bc6a66 | [AMD CI] Gemma3/Gemma3n Expectations (#44972)
* expectaitons gemma3
* gemma3n expectations
* fix
* Update assertion in test_speculative_generation
* style
* fix | [
{
"path": "tests/models/gemma3/test_modeling_gemma3.py",
"patch": "@@ -453,7 +453,7 @@ def test_model_4b_bf16(self):\n (\"xpu\", 3): ['user\\nYou are a helpful assistant.\\n\\n\\n\\n\\n\\nWhat is shown in this image?\\nmodel\\nCertainly! \\n\\nThe image shows a brown cow standing on a sandy ... | 2026-03-24T16:20:55 |
facebook/react | d947c2f1100dfd006fd91c6e9ed84d42ca7ab088 | 77c4ac2ce88736bbdfe0b29008b5df931c2beb1e | Allow `useEffect(fn, undefined)` in `react-hooks/exhaustive-deps`. (#27525)
## Summary
There is a bug in the `react-hooks/exhaustive-deps` rule that forbids
the dependencies argument from being `undefined`. It triggers the error
that the dependency list is not an array literal. This makes sense in
pre ES5 strict... | [
{
"path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js",
"patch": "@@ -1452,6 +1452,15 @@ const tests = {\n }\n `,\n },\n+ {\n+ code: normalizeIndent`\n+ function MyComponent() {\n+ useEffect(() => {\n+ console.log('banan... | 2023-11-01T19:05:55 |
electron/electron | 625b4619d61619b4d327dd58be3a2cf9b348ffa3 | a75e8e051e4854bd65721f82ec1acc7c51764f30 | fix: resolve loadURL properly for in-page navigations (#36129) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -450,12 +450,14 @@ WebContents.prototype.loadURL = function (url, options) {\n const removeListeners = () => {\n this.removeListener('did-finish-load', finishListener);\n this.removeListener('did-fail-load', failListener);\n+ thi... | 2022-10-26T20:57:39 |
golang/go | 6d7cb594b358b9b22709fb7a7940abc4c9778074 | 51f3ca35942c39c8ed2b6c9fb46cc1030e638a92 | weak: accept linker-allocated objects to Make
Currently Make panics when passed a linker-allocated object. This is
inconsistent with both runtime.AddCleanup and runtime.SetFinalizer. Not
panicking in this case is important so that all pointers can be treated
equally by these APIs. Libraries should not have to worry wh... | [
{
"path": "src/runtime/mheap.go",
"patch": "@@ -9,6 +9,7 @@\n package runtime\n \n import (\n+\t\"internal/abi\"\n \t\"internal/cpu\"\n \t\"internal/goarch\"\n \t\"internal/runtime/atomic\"\n@@ -246,6 +247,10 @@ type mheap struct {\n \t// the lock.\n \tcleanupID uint64\n \n+\t_ cpu.CacheLinePad\n+\n+\timmor... | 2025-02-14T18:39:29 |
vercel/next.js | 81d4a8bd5ca5ad451c7f831bcd50167aee8835f2 | ea691aa555db0eeff30f2269fbcf45db4a1715a6 | [dev-overlay] Move app/pages related features closers together (#80280)
pages/ and app/ now have a designated "setup" file. Makes it easier to spot their differences.
The error handling would ideally be the same between App and Pages router but it's unlikely we'll have time porting the new App Router goodies with r... | [
{
"path": "packages/next/src/client/app-index.tsx",
"patch": "@@ -1,8 +1,7 @@\n // imports polyfill from `@next/polyfill-module` after build.\n import '../build/polyfills/polyfill-module'\n \n-import './components/globals/patch-console'\n-import './components/globals/handle-global-errors'\n+import './compon... | 2025-06-10T20:20:25 |
huggingface/transformers | 15b3b8924b393afa37bdc36a3206eb5032bc6a66 | e22f3088dd4d53c0a218151e124d45aaee64a63c | Officially launch parse_response (#44674)
* Restore chat parsing
* Restore chat parsing
* Better edge case handling, drop x-mapping and x-mapping-regex
* Some doc fixes
* make fix-repo
* 2025 -> 2026
* Add licence to chat parsing utils
* Update doc example | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -124,6 +124,8 @@\n title: Tool use\n - local: chat_templating_writing\n title: Writing a chat template\n+ - local: chat_response_parsing\n+ title: Response parsing\n title: Chat with models\n - isExpanded: false\n sectio... | 2026-03-24T15:36:25 |
facebook/react | 08a39539fc6922cdb9e2405029127a1911b1b809 | ca16c26356221a4b52185d7425d77675f0307250 | [Flight][Reply] Close Response after creating root chunk (#27634)
creating the root after closing the response can lead to a promise that
never rejects. This is not intended use of the decodeReply API but if
pathalogical cases where you pass a raw FormData into this fucntion with
no zero chunk it can hang forever. ... | [
{
"path": "packages/react-server-dom-esm/src/ReactFlightDOMServerNode.js",
"patch": "@@ -162,8 +162,9 @@ function decodeReply<T>(\n body = form;\n }\n const response = createResponse(moduleBasePath, '', body);\n+ const root = getRoot<T>(response);\n close(response);\n- return getRoot(response);\... | 2023-11-01T01:31:10 |
electron/electron | a75e8e051e4854bd65721f82ec1acc7c51764f30 | 09302a2fc6a4cf45e5a36165b8b3f22b8209525f | docs: document that when `invoke` rejects, it gives a different Error (#36127) | [
{
"path": "docs/api/ipc-renderer.md",
"patch": "@@ -96,14 +96,6 @@ Algorithm][SCA], just like [`window.postMessage`][], so prototype chains will no\n included. Sending Functions, Promises, Symbols, WeakMaps, or WeakSets will\n throw an exception.\n \n-> **NOTE:** Sending non-standard JavaScript types such a... | 2022-10-26T20:56:41 |
vercel/next.js | f63088d2d1aacc23b0ea0baf4a50f55c71916231 | a0d671c146cadbb8653cc851b255935a9e1edcc0 | docs: Middleware fetching is not cached (#80378)
Closes:
https://linear.app/vercel/issue/DOC-4751/docs-missing-middleware-caching-information-also-ts-types-issue
Fixes: https://github.com/vercel/next.js/issues/77900
Note that the TypeScript (should the TS plugin detect fetch
`options.next` used in middleware and erro... | [
{
"path": "docs/01-app/03-building-your-application/01-routing/14-middleware.mdx",
"patch": "@@ -20,6 +20,8 @@ Middleware is _not_ a good fit for:\n - Slow data fetching\n - Session management\n \n+Using fetch with `options.cache`, `options.next.revalidate`, or `options.next.tags`, has no effect in Middlewa... | 2025-06-10T17:58:20 |
golang/go | abd023911360006fedee9fccc707c73cdfb20b23 | 3f46587fe05f745a0bf91b74c2834f1317acba24 | go/parser: deprecate parser.ParseDir
Fixes #71122
Change-Id: Icaf27842f4a42e11eea4bd2203eba5d56610c196
Reviewed-on: https://go-review.googlesource.com/c/go/+/649275
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
Commit-Queue: Alan Donovan <adonovan@google.com>
LUCI... | [
{
"path": "api/next/71122.txt",
"patch": "@@ -0,0 +1 @@\n+pkg go/parser, func ParseDir //deprecated #71122",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/go/parser/71122.md",
"patch": "@@ -0,0 +1 @@\n+The [ParseDir] function is dep... | 2025-02-13T17:07:54 |
huggingface/transformers | e22f3088dd4d53c0a218151e124d45aaee64a63c | 82106705eb34848411be8dd12e61c98b9224e979 | fix load_best_model_checkpoint_at_end do not load the best model chec… (#44583)
* fix load_best_model_checkpoint_at_end do not load the best model checkpoint when `save_strategy` is `best`
* update error message to include save strategy best
* change the error message to what copilot suggested
* add test for load b... | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -3045,7 +3045,10 @@ def _save_checkpoint(self, model: nn.Module, trial: \"optuna.Trial | dict[str, An\n output_dir = os.path.join(run_dir, checkpoint_folder)\n self.save_model(output_dir, _internal_call=True)\n \n- if self.args.sav... | 2026-03-24T15:28:32 |
facebook/react | ca16c26356221a4b52185d7425d77675f0307250 | 0c6348758f89be250070560972e736171201f82d | validateDOMNesting: Allow hr as child of select (#27632)
fix #27572
---------
Co-authored-by: Sophie Alpert <git@sophiebits.com> | [
{
"path": "packages/react-dom-bindings/src/client/validateDOMNesting.js",
"patch": "@@ -244,7 +244,12 @@ function isTagValidWithParent(tag: string, parentTag: ?string): boolean {\n switch (parentTag) {\n // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inselect\n case 'select':\n... | 2023-10-31T21:43:16 |
electron/electron | ad289d120f18a8a72e811b3312b849ac1537d319 | 85b193178f35ebd80dc0a2521621146b9449fd16 | docs: fixed MenuItem documentation to use the same formatting for all role options (#36112)
Fixed MenuItem documentation
Some of the items in the list of possible roles were formatted differently, which made it harder to read.
Sorry if this was intended, but I found it easier to read with them all formatted the sa... | [
{
"path": "docs/api/menu-item.md",
"patch": "@@ -14,7 +14,7 @@ See [`Menu`](menu.md) for examples.\n * `menuItem` MenuItem\n * `browserWindow` [BrowserWindow](browser-window.md) | undefined - This will not be defined if no window is open.\n * `event` [KeyboardEvent](structures/keyboard-event.md)... | 2022-10-24T18:51:50 |
golang/go | 3f46587fe05f745a0bf91b74c2834f1317acba24 | 3c05790d4847ba2d0d06b5ba3f82b311a99d531c | cmd/go: explicitly reject overlays affecting GOMODCACHE
The go command assumes that GOMODCACHE is immutable. As an example of
one place the assumption is made, the modindex won't stat the files in
GOMODCACHE when getting the cache key for the index entry and just uses
the path of the module in the modcache (basically ... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -211,15 +211,16 @@\n //\t\t-modfile flag by trimming the \".mod\" extension and appending \".sum\".\n //\t-overlay file\n //\t\tread a JSON config file that provides an overlay for build operations.\n-//\t\tThe file is a JSON struct with a single field, named ... | 2025-02-18T20:31:14 |
ollama/ollama | 0d5da826d47f6ca219f04302234b77a849476fba | 9b795698b8fe99369ca7dc208f8368b3ba47b918 | bugfix: display the parameter count correctly in mlx for ollama show (#14285) | [
{
"path": "x/server/show.go",
"patch": "@@ -5,6 +5,7 @@ import (\n \t\"encoding/json\"\n \t\"fmt\"\n \t\"io\"\n+\t\"math\"\n \t\"os\"\n \t\"sort\"\n \t\"strings\"\n@@ -58,7 +59,15 @@ func GetSafetensorsLLMInfo(name model.Name) (map[string]any, error) {\n \t\t}\n \t}\n \n-\treturn buildModelInfo(config, tota... | 2026-02-16T21:03:34 |
huggingface/transformers | 82106705eb34848411be8dd12e61c98b9224e979 | a8732d5546d84bfb4519b6dbf461c947a5de45f6 | fix: split MXFP4 dependency checks for specific error messages (#44930)
* fix: split MXFP4 dependency checks for specific error messages
Fixes #44912. The combined `kernels_available` check made it impossible
to identify which dependency (Triton vs kernels) was missing. Now each
check has its own actionable message w... | [
{
"path": "src/transformers/quantizers/quantizer_mxfp4.py",
"patch": "@@ -90,44 +90,61 @@ def validate_environment(self, *args, **kwargs):\n \n if torch.xpu.is_available():\n is_device_supported_mxfp4 = True\n- kernels_available = is_triton_available(\"3.5.0\") and is_kernels_... | 2026-03-24T15:17:30 |
facebook/react | 0965fbcab3616523086d05c1069492cc171cbb80 | 3e09c27b880e1fecdb1eca5db510ecce37ea6be2 | Update utils-test.js desciption (#27624)
<!--
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, please make s... | [
{
"path": "packages/react-devtools-shared/src/__tests__/utils-test.js",
"patch": "@@ -283,12 +283,12 @@ describe('utils', () => {\n expect(isPlainObject(new (class C {})())).toBe(false);\n });\n \n- it('should retun false for objects, which have not only Object in its prototype chain', () => {\... | 2023-10-30T11:40:18 |
golang/go | 9ddeac30b5c41f223564e1dedef3095a5a909cb9 | 4267fd389e941cf197cc3890cc42e474866c0d30 | cmd/compile, runtime: use deferreturn as target PC for recover from deferrangefunc
The existing code for recover from deferrangefunc was broken in
several ways.
1. the code following a deferrangefunc call did not check the return
value for an out-of-band value indicating "return now" (i.e., recover
was called)
2. th... | [
{
"path": "src/cmd/compile/internal/ssa/func.go",
"patch": "@@ -41,11 +41,12 @@ type Func struct {\n \tABISelf *abi.ABIConfig // ABI for function being compiled\n \tABIDefault *abi.ABIConfig // ABI for rtcall and other no-parsed-signature/pragma functions.\n \n-\tscheduled bool // Values in Bl... | 2025-02-18T22:34:24 |
huggingface/transformers | a8732d5546d84bfb4519b6dbf461c947a5de45f6 | d4895f0810fd57bf5ee8cf65c3fe20d2f622cd0a | Fix failing `T5ModelIntegrationTest` (#44934)
Fix failing T5: test_compile_static_cache & Qwen2IntegrationTest: test_speculative_generation | [
{
"path": "tests/models/qwen2/test_modeling_qwen2.py",
"patch": "@@ -183,11 +183,13 @@ def test_model_450m_long_prompt_sdpa(self):\n \n @slow\n def test_speculative_generation(self):\n- EXPECTED_TEXT_COMPLETION = (\n- \"My favourite condiment is 100% natural, organic, gluten-free, ... | 2026-03-24T14:36:58 |
ollama/ollama | d18dcd77755b55c9d761e483abee17d1e2b6c58c | 5f5ef2013199968a59a330e686b0eab6196fdb6d | mlxrunner fixes (#14247)
* load glm4_moe_lite from the mlxrunner
* fix loading diffusion models
* remove log lines
* fix --imagegen flag | [
{
"path": "cmd/cmd.go",
"patch": "@@ -581,6 +581,17 @@ func RunHandler(cmd *cobra.Command, args []string) error {\n \t}\n \topts.WordWrap = !nowrap\n \n+\tuseImagegen := false\n+\tif cmd.Flags().Lookup(\"imagegen\") != nil {\n+\t\tuseImagegen, err = cmd.Flags().GetBool(\"imagegen\")\n+\t\tif err != nil {\n+... | 2026-02-14T06:30:42 |
facebook/react | 3e09c27b880e1fecdb1eca5db510ecce37ea6be2 | 8039e6d0b93b642a4bd1ee7dbe108d2153fd2981 | [Float][Fiber] Fixes incorrect boolean logic around loading states for stylesheets (#27610)
the loading states of stylesheets found in the DOM during preinit should
be assumed to be loaded | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2337,7 +2337,7 @@ function preinitStyle(\n getStylesheetSelectorFromKey(key),\n );\n if (instance) {\n- state.loading = Loaded & Inserted;\n+ state.loading = Loaded | Inserted;\n } else {\n ... | 2023-10-27T15:50:40 |
vercel/next.js | 6599f1dc14c30bb6cdf14930a39a367cea78dc93 | 94979526298bc818c412ba18b25159d2a20b004a | provide declarations for server-only/client-only (#80361)
We implement the behavior of `import 'server-only'` and `import
'client-only'` on the compiler level and thus don't require having them
installed as dependencies. By default it works fine with typescript,
because (surprisingly) TSC *doesn't check side-effecting... | [
{
"path": "packages/next/types/global.d.ts",
"patch": "@@ -43,6 +43,30 @@ declare module '*.module.scss' {\n export default classes\n }\n \n+// We implement the behavior of `import 'server-only'` and `import 'client-only'` on the compiler level\n+// and thus don't require having them installed as dependen... | 2025-06-10T16:35:13 |
golang/go | 4267fd389e941cf197cc3890cc42e474866c0d30 | a08984bc8f2acacebeeadf7445ecfb67b7e7d7b1 | syscall: don't truncate newly created files on Windows
There is no need for syscall.OpenFile to truncate newly created files.
Some special Windows files, like the NUL device, can't be
truncated, so we should avoid truncating unless it is really necessary.
Fixes #71752.
Change-Id: I8238048594f706f6a5281053d55cfe3dc89... | [
{
"path": "src/os/os_test.go",
"patch": "@@ -3844,3 +3844,14 @@ func TestRemoveReadOnlyFile(t *testing.T) {\n \t\t}\n \t})\n }\n+\n+func TestOpenFileDevNull(t *testing.T) {\n+\t// See https://go.dev/issue/71752.\n+\tt.Parallel()\n+\n+\tf, err := OpenFile(DevNull, O_WRONLY|O_CREATE|O_TRUNC, 0o644)\n+\tif err... | 2025-02-18T10:55:07 |
huggingface/transformers | 2f121eaf3c1b3692e49a10172a24714dce7858a1 | 4f8de83424c066d2edb412876501731dbb62f88a | Fix: Update optimization.py (#44909)
* Update optimization.py
The `get_scheduler` function was identifying the `inverse_sqrt` scheduler type but failing to pass `**scheduler_specific_kwargs` to the underlying `get_inverse_sqrt_schedule` function.
This caused user-defined parameters like `timescale` to be silently... | [
{
"path": "src/transformers/optimization.py",
"patch": "@@ -1031,7 +1031,7 @@ def scheduler_hook(param):\n return schedule_func(optimizer, num_warmup_steps=num_warmup_steps)\n \n if name == SchedulerType.INVERSE_SQRT:\n- return schedule_func(optimizer, num_warmup_steps=num_warmup_steps)\n... | 2026-03-24T12:52:46 |
ollama/ollama | f0a07a353b0892decebd5364443ffd2dde5f5679 | 948de6bbd2d07e1050d91c2422c3ee7af2d591da | cmd/tui: fix powershell search (#14242) | [
{
"path": "cmd/cmd.go",
"patch": "@@ -1887,10 +1887,7 @@ func runInteractiveTUI(cmd *cobra.Command) {\n \n \t// Selector adapters for tui\n \tsingleSelector := func(title string, items []config.ModelItem) (string, error) {\n-\t\ttuiItems := make([]tui.SelectItem, len(items))\n-\t\tfor i, item := range items... | 2026-02-13T23:53:11 |
facebook/react | 8039e6d0b93b642a4bd1ee7dbe108d2153fd2981 | 54ea4469716ec060fba475bb38e7b6d509586e1b | Bump lodash from 4.17.4 to 4.17.21 in /fixtures/attribute-behavior (#27592)
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some
time.
Note: if you make any changes to this PR yourself, they will take
precedence over the... | [
{
"path": "fixtures/attribute-behavior/yarn.lock",
"patch": "@@ -3948,8 +3948,8 @@ lodash.uniq@^4.5.0:\n resolved \"https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773\"\n \n \"lodash@>=3.5 <5\", lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4... | 2023-10-26T13:48:28 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.