repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
72cc7db1bda874a354cdc07cdd0a8503a0aaec15
354c7d2c4ddfa715a69be3807275cc234bff76da
fix to use https urls in meta data images when using experimental-https (#80276) fixes #80275 .. to generate https image urls in meta data when using the --experimental-https flag --------- Co-authored-by: Zack Tanner <1939140+ztanner@users.noreply.github.com> Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": ".changeset/open-dodos-admire.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Fix to use https urls in meta data images when using --experimental-https flag", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "packages/next/src/lib/metadata/res...
2025-06-24T01:23:52
golang/go
577bb3d0ce576b2ca311e58dd942f189838b80fc
7e3d2aa69f0ad7dc0cb78ff9e5ee8fdd819a541a
runtime: only set isExtraInC if there are no Go frames left mp.isExtraInC is intended to indicate that this M has no Go frames at all; it is entirely executing in C. If there was a cgocallback to Go and then a cgocall to C, such that the leaf frames are C, that is fine. e.g., traceback can handle this fine with SetCg...
[ { "path": "src/runtime/cgocall.go", "patch": "@@ -355,7 +355,9 @@ func cgocallbackg(fn, frame unsafe.Pointer, ctxt uintptr) {\n \tgp.m.incgo = true\n \tunlockOSThread()\n \n-\tif gp.m.isextra {\n+\tif gp.m.isextra && gp.m.ncgo == 0 {\n+\t\t// There are no active cgocalls above this frame (ncgo == 0),\n+\t\t...
2025-03-14T14:50:25
facebook/react
bbb9cb116dbf7b6247721aa0c4bcb6ec249aa8af
1a65d036ef057b07a6b15f5604e399f91bc5ed73
Update fork for ReactSharedInternalsClient export (#27717) ## Summary After changes in https://github.com/facebook/react/pull/27436, UMD builds no longer expose Scheduler from ReactSharedInternals. This module is forked in rollup for UMD builds and the path no longer matches. This PR updates the path name to mat...
[ { "path": "scripts/rollup/forks.js", "patch": "@@ -217,7 +217,7 @@ const forks = Object.freeze({\n }\n },\n \n- './packages/react/src/ReactSharedInternals.js': (bundleType, entry) => {\n+ './packages/react/src/ReactSharedInternalsClient.js': (bundleType, entry) => {\n switch (bundleType) {\n ...
2023-11-17T14:00:56
ollama/ollama
96b202d34b82d1755887bf4204e1f2e053720d4f
79865e6c5a2f8aa7bc8135eacffdcbe2fea953d9
Add support for gemma4 (#15214) * bench: add prompt calibration, context size flag, and NumCtx reporting Add --num-ctx flag to set context size, and report NumCtx in model info header. Calibrate tokens-per-word ratio during warmup using actual tokenization metrics from the model, replacing the fixed 1.3 heuristic. Th...
[ { "path": "api/types.go", "patch": "@@ -436,6 +436,7 @@ type ToolProperty struct {\n \tDescription string `json:\"description,omitempty\"`\n \tEnum []any `json:\"enum,omitempty\"`\n \tProperties *ToolPropertiesMap `json:\"properties,omitempty\"`\n+\tRequired []string ...
2026-04-02T18:33:33
electron/electron
d02c9f8bc644ba39acf9caa908c33a737202a790
446c7809cc43997f408c9a030036d6980c4f1616
chore: bump chromium to 111.0.5544.3 (main) (#36820) * chore: bump chromium in DEPS to 111.0.5522.0 * chore: bump chromium in DEPS to 111.0.5524.0 * chore: bump chromium in DEPS to 111.0.5526.0 * chore: bump chromium in DEPS to 111.0.5528.0 * chore: update patches/chromium/mas_avoid_usage_of_private_macos_...
[ { "path": "BUILD.gn", "patch": "@@ -546,7 +546,7 @@ source_set(\"electron_lib\") {\n deps += [\n \"//components/remote_cocoa/app_shim\",\n \"//components/remote_cocoa/browser\",\n- \"//content/common:mac_helpers\",\n+ \"//content/browser:mac_helpers\",\n \"//ui/accelerated_wi...
2023-02-03T11:43:42
vercel/next.js
8324d8108c33e2a92d66c59bfa15b0a97cd99ef7
9d4239a150fb3762caf05756d77066cb82b81398
[segment explorer] handle custom error boundary (#80714) Display custom error boundary `error.js` in segement explorer when it's rendered ![image](https://github.com/user-attachments/assets/4abad442-0703-4609-8202-b4f41f007afe) Closes NEXT-4331
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx", "patch": "@@ -260,4 +260,9 @@ export const DEV_TOOLS_INFO_RENDER_FILES_STYLES = css`\n background-color: var(--color-green-300);\n color: var(--color-green-900);\n }\n+ .segment-explorer-file-label--...
2025-06-23T20:23:47
golang/go
7e3d2aa69f0ad7dc0cb78ff9e5ee8fdd819a541a
a1ddbdd3ef8b739aab53f20d6ed0a61c3474cf12
encoding/asn1: make sure implicit fields roundtrip Make sure Marshal and Unmarshal support the same field tags for implicit encoding choices. In particular this adds support for Unmarshalling implicitly tagged GeneralizedTime fields. Also add tests and update the docs. Fixes #72078 Change-Id: I21465ee4bcd73a7db0d0c3...
[ { "path": "src/encoding/asn1/asn1.go", "patch": "@@ -828,9 +828,18 @@ func parseField(v reflect.Value, bytes []byte, initOffset int, params fieldParam\n \t}\n \n \t// Special case for time: UTCTime and GeneralizedTime both map to the\n-\t// Go type time.Time.\n-\tif universalTag == TagUTCTime && t.tag == Ta...
2025-03-03T17:04:35
huggingface/transformers
e958b5647768949c4880d5b2570a6e73396b47ac
c38b2fb78eaedd4261a0e446f7976345cd1c7f1b
Fix pypi release (#45210) * update release workflow * update * fix dep table update
[ { "path": ".github/workflows/release.yml", "patch": "@@ -30,6 +30,9 @@ jobs:\n - run: pip install -e .[torch]\n - run: python -c \"from transformers import pipeline; classifier = pipeline('text-classification'); assert classifier('What a nice release')[0]['score'] > 0\"\n \n+ - run: pip ins...
2026-04-03T06:40:37
facebook/react
a1e389118951ff7b83c753245ee96793a898bfe0
6d101435d401d612c3a797fe88258b7c59fe7f49
[rfc][babel] InvalidConfig always throws When you have your panic threshold set to "NONE" as we recommend, it's easy to miss that your config is wrong (which makes everything not compile) because those errors were being silenced. This made debugging FluentUI and the forget-feedback testapp pretty difficult to figu...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -59,6 +59,15 @@ function isCriticalError(err: unknown): boolean {\n return !(err instanceof CompilerError) || err.isCritical();\n }\n \n+function isConfigError(err: unknown): boolean {\n+ if (err instanceof Co...
2023-11-17T17:01:20
electron/electron
6e0d63c356733ef3f22f8df857b66f6a22779da6
d069b8fc6611356d9a7d56f21b3221881385767a
build: update mocha for retries and audit fix (#37117)
[ { "path": "spec/api-app-spec.ts", "patch": "@@ -1516,6 +1516,7 @@ describe('app module', () => {\n // to the Docker invocation allows the syscalls that Chrome needs, but\n // are probably more permissive than we'd like.\n this.skip();\n+ return;\n }\n fs.unlink(soc...
2023-02-03T01:40:30
vercel/next.js
c1c523bfde79ff6584bb8b31318e1bebd56a85dc
4e52916e676662d9df8019f67e670072d98ec3fe
[devtools] panel ui issues tab content (#80729) The UI shares the style with the error overlay. This PR added a loading state, which can be later shared with the error overlay as well. https://github.com/user-attachments/assets/d3759d19-7f70-48c3-8fee-5c6973c01d53 ### Success Criteria - [x] Does it have a loading...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/code-frame/code-frame.tsx", "patch": "@@ -108,7 +108,6 @@ export const CODE_FRAME_STYLES = `\n --code-frame-padding: 12px;\n --code-frame-line-height: var(--size-16);\n background-color: var(--color-background-200);\n- overflow...
2025-06-23T18:49:57
ollama/ollama
9e7cb9697edf3782a0f763dab1a36985ae0ff6a5
3824e380a82d3368855cc1c5b9d128cc2849c4f6
mlx: fix vision capability + min version (#15106)
[ { "path": "cmd/cmd_test.go", "patch": "@@ -301,7 +301,7 @@ Weigh anchor!\n \t\t\t\tParameterSize: \"7B\",\n \t\t\t\tQuantizationLevel: \"FP16\",\n \t\t\t},\n-\t\t\tRequires: \"0.14.0\",\n+\t\t\tRequires: \"0.19.0\",\n \t\t}, false, &b); err != nil {\n \t\t\tt.Fatal(err)\n \t\t}\n@@ -310,10 +310,17 @@ We...
2026-03-28T00:09:28
huggingface/transformers
edaac7db98e34208209fd67d8c66781b8c2e4a53
3c307e380ad07ca16903a39e09a47d532cb782d9
fix(docs): correct gemma4 docs and examples (#45197) Co-authored-by: Douglas Reid <21148125+douglas-reid@users.noreply.github.com>
[ { "path": "docs/source/en/model_doc/gemma4.md", "patch": "@@ -23,13 +23,18 @@ limitations under the License.\n \n ## Overview\n \n-[Gemma 4](INSET_PAPER_LINK) is a multimodal model with pretrained and instruction-tuned variants, available in 1B, 13B, and 27B parameters. The architecture is mostly the same a...
2026-04-02T21:36:17
golang/go
a1ddbdd3ef8b739aab53f20d6ed0a61c3474cf12
80f068928fd957935df3d61da319331e76a73b49
cmd/compile: don't move nilCheck operations during tighten Nil checks need to stay in their original blocks. They cannot be moved to a following conditionally-executed block. Fixes #72860 Change-Id: Ic2d66cdf030357d91f8a716a004152ba4c016f77 Reviewed-on: https://go-review.googlesource.com/c/go/+/657715 Reviewed-by: C...
[ { "path": "src/cmd/compile/internal/ssa/tighten.go", "patch": "@@ -43,6 +43,10 @@ func tighten(f *Func) {\n \t\t\t\t// SelectN is typically, ultimately, a register.\n \t\t\t\tcontinue\n \t\t\t}\n+\t\t\tif opcodeTable[v.Op].nilCheck {\n+\t\t\t\t// Nil checks need to stay in their block. See issue 72860.\n+\t...
2025-03-13T23:15:15
facebook/react
6d101435d401d612c3a797fe88258b7c59fe7f49
fbcc21c37a50b50cb7ed1aef9329ad598a236110
[Babel] Fix up eslint suppression logic Babel doesn't attach Comment nodes to anything, so they dangle off of the Program node while only specifying a range. This meant that previously we first had to traverse all of the Program's comments to find an eslint suppression of the rules of React, then during travers...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/EslintSuppression.ts", "patch": "@@ -0,0 +1,162 @@\n+/*\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this sour...
2023-11-17T15:22:46
vercel/next.js
226a9a10e69b7894f7e11c6dd110b580873b4deb
a48373304dd074d08c6559d04900e68a74a4493e
[devtools] panel ui issues tab sidebar (#80728) https://github.com/user-attachments/assets/56822e42-70da-4ab4-91d7-fed757b43d5b ### Success Criteria - [x] Does it show the error label? - [x] Does it show the error stack frame? - [x] Does it navigate to the correct idx error? - [x] Does it have a loading state? - [x]...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-footer.tsx", "patch": "@@ -49,7 +49,6 @@ export const DEVTOOLS_PANEL_FOOTER_STYLES = css`\n display: flex;\n justify-content: space-between;\n align-items: center;\n- margin-top: auto;\n border...
2025-06-23T17:53:36
ollama/ollama
c9b2dcfc52e6fe172ea1169f94f1f6839a822c09
b00bd1dfd4e9c8cf012eb8a1d2e406565f00d13e
anthropic: fix empty inputs in content blocks (#15105) * anthropic: fix empty inputs in content blocks When we switched to `api.ToolCallFunctionArguments`, `omitempty` stopped doing what we were relying on it for before. This would cause non-tool content blocks to have an `"input": {}` field, which doesn't match our ...
[ { "path": "anthropic/anthropic.go", "patch": "@@ -123,7 +123,7 @@ type ContentBlock struct {\n \t// For tool_use and server_tool_use blocks\n \tID string `json:\"id,omitempty\"`\n \tName string `json:\"name,omitempty\"`\n-\tInput api.ToolCallFunctionArgument...
2026-03-27T22:41:27
huggingface/transformers
3c307e380ad07ca16903a39e09a47d532cb782d9
a4cf3b8771e630d79ea6f740e27e8e839b9de8ea
Add Turkish (tr) translation for Get Started section (#45158) * Add Turkish (tr) translation for Get Started section * Fix broken anchor link in quicktour.md * Add _config.py for Turkish docs Adds the notebook installation content and black formatting patterns config file to the Turkish documentation source directo...
[ { "path": ".github/workflows/build_documentation.yml", "patch": "@@ -28,7 +28,7 @@ jobs:\n commit_sha: ${{ github.sha }}\n package: transformers\n notebook_folder: transformers_doc\n- languages: ar de es fr hi it ja ko pt zh\n+ languages: ar de es fr hi it ja ko pt tr zh\n ...
2026-04-02T17:45:14
facebook/react
fbcc21c37a50b50cb7ed1aef9329ad598a236110
96f10e058b76372885f99b948e5194842bd02dc4
Add repro for bug with 'use no forget' For some reason, when there are other hooks/components defined in the file, the 'use no forget' directive stops working
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-use-no-forget-multiple-with-eslint-suppression.expect.md", "patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+const useControllableState = (options) => {};\n+function NoopComponent() {}\n+\n+function ...
2023-11-17T15:22:45
electron/electron
6aa7e27b392102703a8e04fb4b935e50848251ae
2dc76d0d8087bdd882cf3e0aa8dc4e4cd643e9b9
fix: nodeIntegrationInWorker fails to boot in AudioWorklets (#37041)
[ { "path": "lib/worker/init.ts", "patch": "@@ -21,8 +21,9 @@ global.module = new Module('electron/js2c/worker_init');\n global.require = makeRequireFunction(global.module);\n \n // Set the __filename to the path of html file if it is file: protocol.\n-if (self.location.protocol === 'file:') {\n- const pathn...
2023-02-02T00:03:23
golang/go
3b456ff42137df2b89295ede29c915d43c10b538
d704ef76068eb7da15520b08dc7df98f45f85ffa
crypto/x509,ecoding/asn1: better handling of weird encodings For various cursed reasons we need to support the BMPString and T61String ASN.1 string encodings. These types use the defunct UCS-2 and T.61 character encodings respectively. This change rejects some characters when decoding BMPStrings which are not valid i...
[ { "path": "src/crypto/x509/parser.go", "patch": "@@ -60,7 +60,21 @@ func isPrintable(b byte) bool {\n func parseASN1String(tag cryptobyte_asn1.Tag, value []byte) (string, error) {\n \tswitch tag {\n \tcase cryptobyte_asn1.T61String:\n-\t\treturn string(value), nil\n+\t\t// T.61 is a defunct ITU 8-bit charac...
2025-02-21T01:05:04
vercel/next.js
3797fb921b5a309c90ba5867da9e3fb1d3428b8b
6e508d4f93778dbefc34eac1ca12bbf97c266d62
[devtools] set up panel ui issues tab infra (#80727) Added infra for the issues tab and its story. Will follow up with the sidebar to navigate the issues and their error content. Closes NEXT-4546
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-tab/devtools-panel-tab.tsx", "patch": "@@ -1,20 +1,30 @@\n import type { DevToolsPanelTabType } from '../devtools-panel'\n import type { Corners } from '../../../shared'\n+import type { DebugInfo } from '../../.....
2025-06-23T17:50:50
facebook/react
96f10e058b76372885f99b948e5194842bd02dc4
66748b00f25b2111731d65a8cde6c777c741bbe5
[be][tests] Change fixtures to evaluate successfully instead of throwing --- Not dependent on changes from #2366, but now the fix is easy to review
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/capture-indirect-mutate-alias-iife.expect.md", "patch": "@@ -16,8 +16,7 @@ function component(a) {\n \n export const FIXTURE_ENTRYPOINT = {\n fn: component,\n- params: [\"TodoAdd\"],\n- isComponent: \"TodoAdd\",\n+ p...
2023-11-16T23:12:00
electron/electron
2dc76d0d8087bdd882cf3e0aa8dc4e4cd643e9b9
fd761ec8f74d8a4c77864ab86ef6994a5fb72e1d
build: fixup release_dependency_versions action (#37036)
[ { "path": ".github/workflows/release_dependency_versions.yml", "patch": "@@ -7,20 +7,17 @@ on:\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n \n-permissions: # added using https://github.com/step-security/secure-workflows\n- contents: read\n-\n jobs:\n trigger_chromedriver:\n runs-on: ubuntu...
2023-02-01T18:12:19
ollama/ollama
ac83ac20c444656f0f7d5bbad5b62da389395439
e7ccc129ea45cd9383d91f0c233f324a95ad0572
anthropic: fix KV cache reuse degraded by tool call argument reordering Use typed structs for tool call arguments instead of map[string]any to preserve JSON key order, which Go maps do not guarantee.
[ { "path": "anthropic/anthropic.go", "patch": "@@ -68,7 +68,7 @@ type MessagesRequest struct {\n \tModel string `json:\"model\"`\n \tMaxTokens int `json:\"max_tokens\"`\n \tMessages []MessageParam `json:\"messages\"`\n-\tSystem any `json:\"system,omit...
2026-03-09T23:24:57
vercel/next.js
6e508d4f93778dbefc34eac1ca12bbf97c266d62
c613cec5322d5ea57a4333a21bdf5c4d703fa209
[segment explorer] display navigation error boundaries (#80691)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx", "patch": "@@ -250,4 +250,10 @@ export const DEV_TOOLS_INFO_RENDER_FILES_STYLES = css`\n background-color: var(--color-blue-300);\n color: var(--color-blue-800);\n }\n+ .segment-explorer-file-label--n...
2025-06-23T16:08:02
golang/go
6114b69e0c92961712a459b691d4bde3f09e3b40
59afdd3ed0ace5c5dc34f8b4cf22edc329e186f7
crypto/tls: relax native FIPS 140-3 mode We are going to stick to BoringSSL's policy for Go+BoringCrypto, but when using the native FIPS 140-3 module we can allow Ed25519, ML-KEM, and P-521. NIST SP 800-52r2 is stricter, but it only applies to some entities, so they can restrict the profile with Config. Fixes #71757...
[ { "path": "doc/next/6-stdlib/99-minor/crypto/tls/fips.md", "patch": "@@ -1,2 +1,2 @@\n When [FIPS 140-3 mode](/doc/security/fips140) is enabled, Extended Master Secret\n-is now required in TLS 1.2.\n+is now required in TLS 1.2, and Ed25519 and X25519MLKEM768 are now allowed.", "additions": 1, "delet...
2025-02-19T11:29:31
huggingface/transformers
91b1ab1fdfa81a552644a92fbe3e8d88de40e167
a594e09e3924120f1f5508e7d81946bf3504df2b
casually dropping the most capable open weights on the planet (#45192) * model previously unable to use tools --------- Co-authored-by: Douglas Reid <dougreid@google.com> Co-authored-by: Luciano Martins <lucianomartins@google.com> Co-authored-by: Mayank Chaturvedi <imayank@google.com> Co-authored-by: Phil Culliton...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1182,6 +1182,8 @@\n title: Gemma3\n - local: model_doc/gemma3n\n title: Gemma3n\n+ - local: model_doc/gemma4\n+ title: Gemma4\n - local: model_doc/git\n title: GIT\n - local: model_doc/glm46v", "...
2026-04-02T15:24:39
electron/electron
9adbf49240631f43e1865835d24224da7dc39d85
c6203d54d03ad994ebb51968a76c23411b7ab8b1
ci: fixup ninja for release (#37083)
[ { "path": ".circleci/config/base.yml", "patch": "@@ -505,6 +505,9 @@ step-fix-sync: &step-fix-sync\n sed $SEDOPTION \"s/Updating depot_tools... //g\" ninja_ensure_file\n cipd ensure --root src/third_party/ninja -ensure-file ninja_ensure_file\n \n+ # Explicitly add ninja to the path\n+ ...
2023-01-31T16:29:39
ollama/ollama
e7ccc129ea45cd9383d91f0c233f324a95ad0572
69ed0c2729cfc9d30c797bd34bf12f5c6baaf373
app: fix false "out of date" model warnings (#15101) The staleness check compared the local manifest digest (SHA256 of the file on disk) against the registry's Ollama-Content-Digest header. These never matched because PullModel re-serializes the manifest JSON before writing, producing different bytes than the registry...
[ { "path": "app/ui/app/codegen/gotypes.gen.ts", "patch": "@@ -550,14 +550,12 @@ export class Error {\n }\n }\n export class ModelUpstreamResponse {\n- digest?: string;\n- pushTime: number;\n+ stale: boolean;\n error?: string;\n \n constructor(source: any = {}) {\n if ('string' ==...
2026-03-27T21:15:10
golang/go
0f5d86c5a01fbb70ffa1a59049b0a7cf4fcbcc0a
6bd5741a4c600ee9a48dfa5244f0c4116b718404
cmd/go: permit additional cflags when compiling In CL 475375 the Go command started to generate the "preferlinkext" token file for "strange/dangerous" compiler flags. This serves as a hint to the Go linker whether to call the external linker or not. Permit compiler flag used by the hermetic_cc_toolchain bzlmod. As a...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -90,6 +90,7 @@ var validCompilerFlags = []*lazyregexp.Regexp{\n \tre(`-f(no-)?use-linker-plugin`), // safe if -B is not used; we don't permit -B\n \tre(`-f(no-)?visibility-inlines-hidden`),\n \tre(`-fsanitize=(.+)`),\n+\tre(`-fsanitize-undefined...
2023-07-09T14:24:12
vercel/next.js
c613cec5322d5ea57a4333a21bdf5c4d703fa209
3981cccbe3424931a6c3c13d50692fb20e021b41
[devtools] storybook: port utils to be reusable (#80726) Ported utils of errors and useOverlayReducer to be reusable, e.g., DevTools panel Issues tab.
[ { "path": "packages/next/src/next-devtools/dev-overlay/container/errors.stories.tsx", "patch": "@@ -2,8 +2,8 @@ import type { Meta, StoryObj } from '@storybook/react'\n \n import { Errors } from './errors'\n import { withShadowPortal } from '../storybook/with-shadow-portal'\n-import type { ReadyRuntimeError...
2025-06-23T16:05:35
facebook/react
66748b00f25b2111731d65a8cde6c777c741bbe5
fa07eb0b3b65189b2446df080adf1b92e6cc157b
[be][sprout] Snapshot files for sprout with shared utils --- 16 out of ~150 recently added sprout fixtures have exceptions that reflect easy-to-miss mistakes in the fixture input, like forgetting to import `useState`. This PR adds snapshot files for sprout to prevent these mistakes (or catch them at diff revie...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/alias-capture-in-method-receiver-and-mutate.expect.md", "patch": "@@ -55,4 +55,6 @@ export const FIXTURE_ENTRYPOINT = {\n };\n \n ```\n- \n\\ No newline at end of file\n+ \n+### Eval output\n+(kind: ok) [[{\"a\"...
2023-11-16T23:12:00
huggingface/transformers
a594e09e3924120f1f5508e7d81946bf3504df2b
4932e9721e230bea915341e7f04db32885b6c6af
Internalise the NomicBERT model (#43067) * Created nomicBert skeleton * Implement modular_nomic_bert Co-authored-by: Felix Arkle <felixarkle@icloud.com> * Implement convert_nomic_bert_to_hf * Complete nomic_bert conversion script key mappings and fix NomicBertSelfAttention signature * Create nomic bert documentat...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -726,6 +726,8 @@\n title: NLLB\n - local: model_doc/nllb-moe\n title: NLLB-MoE\n+ - local: model_doc/nomic_bert\n+ title: NomicBERT\n - local: model_doc/nystromformer\n title: Nyströmformer\n - local:...
2026-04-02T14:21:03
electron/electron
23739c644ba8dfa6cec5417cdf4e2550ca4b94b8
ce35bda80580cd355f5cdf31d39f9b4da82822e4
fix: crash on `WebWorkerObserver` script execution (#37050) fix: crash on WebWorkerObserver script execution
[ { "path": "shell/renderer/electron_renderer_client.cc", "patch": "@@ -168,7 +168,12 @@ void ElectronRendererClient::WorkerScriptReadyForEvaluationOnWorkerThread(\n // that have a different value for nodeIntegrationInWorker\n if (base::CommandLine::ForCurrentProcess()->HasSwitch(\n switches::kN...
2023-01-31T11:29:29
ollama/ollama
d1151e18a1a689e47d2c1c27538213ae412d0297
ebbce136c7e035872ca7027dc9438bc2efc17123
mlx: fix KV cache snapshot memory leak mlx.Copy shares the backing buffer with its source (via copy_shared_buffer) rather than allocating independent storage. When used to snapshot a slice of the KV cache, the snapshot array holds the entire original cache buffer alive through the shared data pointer — even after eval...
[ { "path": "x/mlxrunner/cache/cache.go", "patch": "@@ -109,8 +109,8 @@ func (c *KVCache) Snapshot(fromOffset int) Snapshot {\n \n \tkSlice := c.keys.Slice(mlx.Slice(), mlx.Slice(), mlx.Slice(from, to), mlx.Slice())\n \tvSlice := c.values.Slice(mlx.Slice(), mlx.Slice(), mlx.Slice(from, to), mlx.Slice())\n-\tk...
2026-03-25T17:47:59
vercel/next.js
3981cccbe3424931a6c3c13d50692fb20e021b41
a2961d9930d0fe8ca4283f04c46907d4eaf3e052
[segment explorer] handle custom global-error segment (#80685)
[ { "path": "packages/next/src/client/app-index.tsx", "patch": "@@ -171,7 +171,7 @@ function ServerRoot({\n <AppRouter\n gracefullyDegrade={isBot(window.navigator.userAgent)}\n actionQueue={actionQueue}\n- globalErrorComponentAndStyles={initialRSCPayload.G}\n+ globalErrorState={initi...
2025-06-23T15:36:20
facebook/react
fa07eb0b3b65189b2446df080adf1b92e6cc157b
94348be2d96b769a961bafc368fc52b64a6ab62c
[be] make evaluator and worker easier to debug in sprout --- jsdom and other libraries seem to cause jest workers to exit with `forceExit:true`. Not sure what option I set (or global I've overwritten) but console logs aren't flushed as a result, making debugging a bit confusing. This PR: - Moves some code fro...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-hoisting-variable-collision.expect.md", "patch": "@@ -11,7 +11,6 @@ function Component(props) {\n export const FIXTURE_ENTRYPOINT = {\n fn: Component,\n params: [{ items: [0, 42, null, undefined, { object: true ...
2023-11-16T23:12:00
golang/go
6bd5741a4c600ee9a48dfa5244f0c4116b718404
fbdd994166007349920592822e659d98b2d94ab6
crypto/tls: add ConnectionState.CurveID This required adding a new field to SessionState for TLS 1.0–1.2, since the key exchange is not repeated on resumption. The additional field is unfortunately not backwards compatible because current Go versions check that the encoding has no extra data at the end, but will cause...
[ { "path": "api/next/67516.txt", "patch": "@@ -0,0 +1 @@\n+pkg crypto/tls, type ConnectionState struct, CurveID CurveID #67516", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/crypto/tls/67516.md", "patch": "@@ -0,0 +1,2 @@\n+The new ...
2025-02-27T13:01:13
huggingface/transformers
4932e9721e230bea915341e7f04db32885b6c6af
57e84139542c8c297873f35fcd25f66ffcf132ae
Fix resized LM head weights being overwritten by post_init (#45079) When `tie_word_embeddings=False`, `_get_resized_lm_head()` creates a new `nn.Linear` without `_is_hf_initialized`, causing `post_init()` to reinitialize its weights. Set the flag after weight copying is done. Fixes #35141
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -2984,6 +2984,7 @@ def _get_resized_lm_head(\n new_lm_head, old_lm_head, num_tokens_to_copy, transposed, has_new_lm_head_bias\n )\n \n+ new_lm_head._is_hf_initialized = True\n return new_lm_head\n \n ...
2026-04-02T14:13:31
electron/electron
ce35bda80580cd355f5cdf31d39f9b4da82822e4
fcc7a869f218059d0de22db1ea3d63c2e9c192ce
fix: crash on `window.print()` (#37052) fix: crash on window.print()
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -78,7 +78,7 @@ index 796c7f06fa6063ac409f3fef53871e18d4c07838..6575e833388bcc3ac487a409027d984b\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/...
2023-01-31T11:06:11
ollama/ollama
4fda69809a3fecf73d0f71657ef50f8f7e8f43f7
c9b5da6b0c862ccf6c92f89a26aad27442d4c59b
ci: fix windows cgo compiler error (#15046)
[ { "path": ".github/workflows/test.yaml", "patch": "@@ -64,6 +64,7 @@ jobs:\n container: nvidia/cuda:13.0.0-devel-ubuntu22.04\n extra-packages: libcudnn9-dev-cuda-13 libopenblas-dev liblapack-dev liblapacke-dev git curl\n flags: '-DCMAKE_CUDA_ARCHITECTURES=87 -DBLAS_INCLUD...
2026-03-24T23:45:36
vercel/next.js
7c6cd86aa81e5e84db520edd92b44df2d08451f0
5771ce12f8a0ca3ee0b1e82df6c78cc9f4ced1dd
[devtools] fix: adjust width for responsiveness (#80777) It was left out of https://github.com/vercel/next.js/pull/80732, I was fooled by the offline storybook.
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel.tsx", "patch": "@@ -159,12 +159,14 @@ export const DEVTOOLS_PANEL_STYLES = css`\n [data-nextjs-devtools-panel-overlay] {\n padding: initial;\n margin: auto;\n+ width: 100%;\n /* TODO: This is for...
2025-06-23T13:49:17
golang/go
8cdef129fb078a118c3b5032ea7e0b103bf61995
b143c981693a0f405f16eade1cccf4933fde8e21
cmd/link: only check PIE size difference when the linkmode is the same Currently we check the size difference between non-PIE and PIE binaries without specifying a linkmode (and that is presumed to be internal). However, on some platforms (like openbsd/arm64), the use of -buildmode=pie results in external linking. Ens...
[ { "path": "src/cmd/link/elf_test.go", "patch": "@@ -357,16 +357,14 @@ func TestPIESize(t *testing.T) {\n \t\t}\n \t}\n \n-\tfor _, external := range []bool{false, true} {\n-\t\texternal := external\n-\n-\t\tname := \"TestPieSize-\"\n-\t\tif external {\n-\t\t\tname += \"external\"\n-\t\t} else {\n-\t\t\tname...
2025-03-12T13:39:27
facebook/react
0de5b11485b9edc5aec0f5a95ef886a294c03b2d
2c338b16fd97634dba907f7ad612f64893dcb01c
Bump @babel/traverse from 7.14.2 to 7.23.3 in /fixtures/ssr2 (#27713) Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.14.2 to 7.23.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@​babel/tra...
[ { "path": "fixtures/ssr2/package-lock.json", "patch": "@@ -34,11 +34,15 @@\n }\n },\n \"node_modules/@babel/code-frame\": {\n- \"version\": \"7.12.13\",\n- \"resolved\": \"https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz\",\n- \"integrity\": \"sha512-HV1Cm0Q...
2023-11-16T19:08:02
huggingface/transformers
b10552e99dc4974b30126995baea455df43f8476
423f2a31d2bd05bdc1dc30dd938389edaa998fde
Fix TypeError: 'NoneType' object is not iterable in GenerationMixin.generate (#45164) Fix for None layer_types
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -1852,7 +1852,7 @@ def _prepare_cache_for_generation(\n # linear attention models always need to pass the config, otherwise it will use an Attention cache for the LinearAttention layers\n is_linear_attention = any(\n ...
2026-04-02T13:55:16
vercel/next.js
7fea36c002007312dda3209214af24644abd162b
5e5a623cb5fc0adec57c5f9d1983fa82ba8e1bf1
fix(turbopack): Fix usage of `HELPERS` of SWC (#80791) ### What? Convert `Helpers` to `HelperData`, which is `: Send + Sync` so safe to pass around between threads. ### Why? It's not `Send + Sync`, so we should not pass it between threads like this
[ { "path": "turbopack/crates/turbopack-ecmascript/src/parse.rs", "patch": "@@ -390,6 +390,8 @@ async fn parse_file_content(\n EcmascriptModuleAssetType::Typescript { .. }\n | EcmascriptModuleAssetType::TypescriptDeclaration\n );\n+\n+ let helpers=Hel...
2025-06-23T12:58:20
ollama/ollama
95ee7fbd29c6a0ceff073db87b81b005cd15b9c5
ec55536734976ae12f0186b667cd698d1e9f92d2
mlxrunner: panic on double unpin
[ { "path": "x/mlxrunner/cache/recurrent.go", "patch": "@@ -22,14 +22,9 @@ func (c *RecurrentCache) setStateRaw(old, v *mlx.Array) *mlx.Array {\n \tif v == nil || !v.Valid() {\n \t\treturn old\n \t}\n-\tif old == v {\n-\t\treturn old\n-\t}\n \n \tmlx.Pin(v)\n-\tif old != nil && old != v {\n-\t\tmlx.Unpin(old)...
2026-03-20T23:10:19
electron/electron
85f41d59aceabbdeee1fdec75770249c6335e73a
0026fdb78a68c6a4067191826bd1bfc1d9700998
fix: ensure autofill popup view is > 1x1 in size (#36121) * fix: ensure autofill popup view is > 1x1 in size ref #26667 * Update shell/browser/ui/views/autofill_popup_view.cc Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": "shell/browser/ui/views/autofill_popup_view.cc", "patch": "@@ -224,6 +224,9 @@ void AutofillPopupView::DoUpdateBoundsAndRedrawPopup() {\n if (!popup_)\n return;\n \n+ // Clamp popup_bounds_ to ensure it's never zero-width.\n+ popup_->popup_bounds_.Union(\n+ gfx::Rect(popup_->popup_bou...
2023-01-27T09:50:19
huggingface/transformers
423f2a31d2bd05bdc1dc30dd938389edaa998fde
ade7a05a42bf53b183bb78c181743be063c5ff14
fix(models): Fix dtype mismatch in SwitchTransformers and TimmWrapperModel (#45074) * fix: Cast inputs to match weight dtype * new: Add test * change: Upcast to float32 instead of downcasting
[ { "path": "src/transformers/models/switch_transformers/modeling_switch_transformers.py", "patch": "@@ -91,6 +91,7 @@ def forward(self, hidden_states: torch.Tensor) -> tuple[torch.Tensor, torch.Tens\n if self.training and self.jitter_noise > 0:\n # Multiply the token inputs by the uniform...
2026-04-02T13:21:19
facebook/react
2c338b16fd97634dba907f7ad612f64893dcb01c
ee68446ff198755bd38202ac9139275b657968b0
Added windows powershell syntax to build scripts (#27692) ## Summary I had to change the commands to be windows specific so that it doesn't cause any crashes ## How did you test this change? I successfully built the different types of devtools extenstions on my personal computer. In future may need to add a...
[ { "path": "package.json", "patch": "@@ -91,6 +91,7 @@\n \"rollup-plugin-prettier\": \"^4.1.1\",\n \"rollup-plugin-strip-banner\": \"^3.0.0\",\n \"semver\": \"^7.1.1\",\n+ \"shelljs\":\"^0.8.5\",\n \"signedsource\": \"^2.0.0\",\n \"targz\": \"^1.0.1\",\n \"through2\": \"^3.0.1\",\n...
2023-11-16T11:35:43
golang/go
d729053edffdfb17ee947cee8af0d7edc45f6111
a68bf75d3402412a1946fe1df67f57ca923f1507
mime/multipart: add helper to build content-disposition header contents This PR adds an helper FileContentDisposition that builds multipart Content-Disposition header contents with field name and file name, escaping quotes and escape characters. The function is then called in the related helper CreateFormFile. The ...
[ { "path": "api/next/46771.txt", "patch": "@@ -0,0 +1 @@\n+pkg mime/multipart, func FileContentDisposition(string, string) string #46771", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/mime/multipart/46771.md", "patch": "@@ -0,0 +1,2...
2025-03-12T21:40:12
huggingface/transformers
538368903c6ecdc5f489a8eed4ce809e58fdafb5
abc417a4b6cf05e474921449641f2ff0cc93d3dd
[misc] fix qwen35 tests: correct the text model type and skip reverse_mapping (#45173) * tests: skip qwen3.5 reverse mapping for vlm * update
[ { "path": "tests/models/qwen3_5/test_modeling_qwen3_5.py", "patch": "@@ -162,7 +162,7 @@ def __init__(\n \"vocab_size\": 99,\n \"intermediate_size\": 37,\n \"max_position_embeddings\": 512,\n- \"model_type\": \"qwen3_vl\",\n+ \"model_type\": \"qwen3_...
2026-04-02T12:47:39
vercel/next.js
5e5a623cb5fc0adec57c5f9d1983fa82ba8e1bf1
9df0c8763cd151ddda795957e62d09e83c87b972
chore: Dynamic error does not change dynamicParams (#80796) Closes: https://linear.app/vercel/issue/DOC-4725/docs-dynamic-dynamicparams Fixes: https://github.com/vercel/next.js/issues/80749
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/route-segment-config.mdx", "patch": "@@ -59,8 +59,7 @@ export const dynamic = 'auto'\n - **`'error'`**: Force static rendering and cache the data of a layout or page by causing an error if any components use [Dynamic APIs](/docs/app/getting-started...
2025-06-23T12:50:55
ollama/ollama
c2b0bb7a52b02a50e63274f07a21a4539e3cfe19
22c2bdbd8add79c6fca2eb2538ab36fcd4a9ca48
mlx: update as of 3/23 (#14789) * mlx: update to HEAD on 3/23 Also fixes a few misc vendoring bugs uncovered with this first update. This also renames the version files to make them clearer. * CUDA Fast Gated Delta kernel * mlx: detect eval errors and panic On model errors or missing kernels, don't mask the error,...
[ { "path": "Dockerfile", "patch": "@@ -157,7 +157,7 @@ COPY CMakeLists.txt CMakePresets.json .\n COPY ml/backend/ggml/ggml ml/backend/ggml/ggml\n COPY x/imagegen/mlx x/imagegen/mlx\n COPY go.mod go.sum .\n-COPY MLX_VERSION MLX_CORE_VERSION .\n+COPY MLX_VERSION MLX_C_VERSION .\n RUN curl -fsSL https://golang....
2026-03-23T18:28:44
electron/electron
0026fdb78a68c6a4067191826bd1bfc1d9700998
1486cbdf6410e569f619d1ca7ceea0dd3380bf02
fix: resizing borders in nondraggable regions (#37016) * fix: resizing borders in nondraggable regions * chore: remove frame handling from ShouldDescendIntoChildForEventHandling
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -24,6 +24,10 @@\n #include \"ui/base/hit_test.h\"\n #include \"ui/views/widget/widget.h\"\n \n+#if !BUILDFLAG(IS_MAC)\n+#include \"shell/browser/ui/views/frameless_view.h\"\n+#endif\n+\n #if BUILDFLAG(IS_WIN)\n #include \"ui/base/win/shell.h\"\n #incl...
2023-01-26T13:04:19
facebook/react
df42058237fdc0420116529a257f9550bce3312f
b55ccb1b84e4fb7f15a092c05b6c159c397c9922
Fix variable-resolution hoisting issues Fixes one category of bugs with const hoisting. The algorithm finds all consts that need to be hoisted, then looks through the statements of a block to find the first statement which references that const, delaying the emission of the HoistedConst instruction until its actua...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -369,7 +369,7 @@ function lowerStatement(\n */\n s.traverse({\n Identifier(id: NodePath<t.Identifier>) {\n- const binding = stmt.scope.getBinding(id.node.name);\n+ const...
2023-11-16T00:55:01
golang/go
a68bf75d3402412a1946fe1df67f57ca923f1507
485480faaac82e4179f7b56c1c370020157f25a8
cmd/go: don't write own toolchain line when updating go line The Go command had a behavior of writing its own toolchain name when updating the go line in a go.mod (for example when a user runs go get go@version). This behavior was often undesirable and the toolchain line was often removed by users before checking in g...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -745,34 +745,25 @@ func UpdateWorkGoVersion(wf *modfile.WorkFile, goVers string) (changed bool) {\n \n \twf.AddGoStmt(goVers)\n \n-\t// We wrote a new go line. For reproducibility,\n-\t// if the toolchain running right now is newer than the new t...
2025-03-10T17:32:23
huggingface/transformers
a118714602774818c3a003b18d83ab48548e51d7
bb8031052cbd88f8b30c75df84b9703eee80200f
Use doc-builder runnable example for GLM-ASR (#44277) * use real tests frm the doc * revert change * now in main * added runnable in the CI doctest (in parallel) * explicitely activate hf-doc-builder * added extra step for circleci * doc pointers * remove custom step * use a single source of truth for the hf-d...
[ { "path": "CONTRIBUTING.md", "patch": "@@ -394,7 +394,7 @@ You'll need **[Python 3.9](https://github.com/huggingface/transformers/blob/main\n make sure you install the [documentation builder](https://github.com/huggingface/doc-builder).\n \n ```bash\n- pip install hf-doc-builder\n+ pip install \"....
2026-04-02T08:47:07
ollama/ollama
d7c176ab91724751df0eb74ee1df1f8571b515ce
0ff7d724ff5a807c420dfe6f9bd1870c546ea426
llm, mlxrunner: fix done channel value consumed by first receiver Receiving from a buffered chan error consumes the value, so only the first caller (WaitUntilRunning, HasExited, or Close) sees the signal. Subsequent receivers block or take the wrong branch. Replace with a closed chan struct{} which can be received fro...
[ { "path": "llm/server.go", "patch": "@@ -87,7 +87,8 @@ type LlamaServer interface {\n type llmServer struct {\n \tport int\n \tcmd *exec.Cmd\n-\tdone chan error // Channel to signal when the process exits\n+\tdone chan struct{} // closed when the process exits\n+\tdoneErr error ...
2026-03-18T23:30:43
electron/electron
c303135b02fa5829459c816cd5bb75dd0e6e4aeb
7d46d3ec9d5f30138777d1bd12890ebe28ba6c31
fix: fallback to GtkStatusIcon when app indicator is not supported (#36815) * chore: get ready for multi backend tray * fix: fallback to GtkStatusIcon when app indicator is not supported * chore: use smart pointers
[ { "path": "BUILD.gn", "patch": "@@ -632,8 +632,6 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/browser/certificate_manager_model.cc\",\n \"shell/browser/certificate_manager_model.h\",\n- \"shell/browser/ui/gtk/menu_util.cc\",\n- \"shell/browser/ui/gtk/menu_util.h\",\n ...
2023-01-26T10:15:55
facebook/react
b55ccb1b84e4fb7f15a092c05b6c159c397c9922
eacf189eca0af417f3250b9bbf15a987e3710da3
Repro for hoisting bug I had added a repro for this earlier but hadn't realized it was due to const hoisting. Renaming this test to clarify what's causing the problem and to make it easier to find.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.repro-uninitialized-value-kind-with-function-expression-params.expect.md", "patch": "@@ -1,24 +0,0 @@\n-\n-## Input\n-\n-```javascript\n-function Component(props) {\n- // This `x` uses a context variable:\n- const...
2023-11-16T00:34:28
golang/go
485480faaac82e4179f7b56c1c370020157f25a8
955cf0873f7a1c3d54cff34164f81d2b44127c30
net: deflake recently added TestCloseUnblocksReadUDP Fixes #72802 Change-Id: I0dd457ef81a354f61c9de306e4609efdbe3d69b4 Reviewed-on: https://go-review.googlesource.com/c/go/+/656857 Auto-Submit: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Ian Lance Taylor <iant@googl...
[ { "path": "src/net/net_test.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"net/internal/socktest\"\n \t\"os\"\n \t\"runtime\"\n+\t\"sync\"\n \t\"testing\"\n \t\"time\"\n )\n@@ -511,11 +512,25 @@ func TestCloseUnblocksRead(t *testing.T) {\n // Issue 72770: verify that a blocked UDP read is woken up by a Clo...
2025-03-12T04:14:01
huggingface/transformers
bb8031052cbd88f8b30c75df84b9703eee80200f
f38d6639fa6b82a401f4e2ea7fef1a3eb550c1a6
CI] Small T5 expectations updated (#45138) fix t5
[ { "path": "tests/models/t5/test_modeling_t5.py", "patch": "@@ -1058,7 +1058,7 @@ def test_small_v1_1_integration_test(self):\n loss = model(input_ids.to(torch_device), labels=labels.to(torch_device)).loss\n mtf_score = -(labels.shape[-1] * loss.item())\n \n- EXPECTED_SCORE = -40.1645\...
2026-04-02T08:07:18
ollama/ollama
0ff7d724ff5a807c420dfe6f9bd1870c546ea426
46cb7795e1b59e24c6f540ce1fad5ac630982a0a
mlx: fix subprocess log deadlock The stderr reader used bufio.Scanner which has a 64KB max line size. If the subprocess wrote a line exceeding this limit, the scanner would stop reading, the OS pipe buffer would fill, and the subprocess would deadlock. Replace the scanner with a statusWriter that wraps io.Copy. The w...
[ { "path": "x/mlxrunner/client.go", "patch": "@@ -2,6 +2,7 @@ package mlxrunner\n \n import (\n \t\"bufio\"\n+\t\"bytes\"\n \t\"context\"\n \t\"encoding/json\"\n \t\"errors\"\n@@ -38,12 +39,66 @@ type Client struct {\n \tmemory atomic.Uint64\n \tdone chan error\n \tclient *http.Client\...
2026-03-18T00:02:51
facebook/react
eacf189eca0af417f3250b9bbf15a987e3710da3
369c315ac49806f5869ec3754cbd9747fe72993d
[playground] Remove button from error message We show the entire error in panel, no need to click to console.log This makes it easier to copy the error now. Before: https://github.com/facebook/react-forget/assets/565765/4c13abfe-a06d-4580-b3d7-b02792f53e57 After: https://github.com/facebook/react-forget/a...
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -17,7 +17,7 @@ import { type CompilerError } from \"babel-plugin-react-forget\";\n import parserBabel from \"prettier/plugins/babel\";\n import * as prettierPluginEstree from \"prettier/plugins/estree\";\n import * as prettier f...
2023-11-16T12:01:59
electron/electron
8d008c977df465d3ad96dd6c8c3daa7afd8bea5f
c6b9340b8952a041373f694c6ee2f22f447464de
docs: updated deep link docs (#36952) * removed open-url listener from windows code * updated deep-link fiddle * fixed url hash to app.requestSingleInstanceLock * code linted * updated website url to relative file path Co-authored-by: David Sanders <dsanders11@ucsbalum.com> Co-authored-by: David Sand...
[ { "path": "docs/fiddles/system/protocol-handler/launch-app-from-URL-in-another-app/main.js", "patch": "@@ -23,6 +23,8 @@ if (!gotTheLock) {\n if (mainWindow.isMinimized()) mainWindow.restore()\n mainWindow.focus()\n }\n+ \n+ dialog.showErrorBox('Welcome Back', `You arrived from: ${comm...
2023-01-26T07:20:10
golang/go
955cf0873f7a1c3d54cff34164f81d2b44127c30
bec12f153a2ad1b0902857bc1dafc635fc5dc06a
cmd/internal/dwarf: fix bug in inlined func DIE range DWARF 5 info This patch changes the strategy we use in the compiler for handling range information for inlined subroutine bodies, fixing a bug in how this was handled for DWARF 5. The high and lo PC values being emitted for DW_TAG_inlined_subroutine DIEs were inco...
[ { "path": "src/cmd/internal/dwarf/dwarf.go", "patch": "@@ -1295,8 +1295,11 @@ func putInlinedFunc(ctxt Context, s *FnState, callIdx int) error {\n \tic := s.InlCalls.Calls[callIdx]\n \tcallee := ic.AbsFunSym\n \n+\t// For DWARF 5, we always use the ranges form of the abbrev, since\n+\t// it is more compact ...
2025-03-12T16:05:11
ollama/ollama
46cb7795e1b59e24c6f540ce1fad5ac630982a0a
126d8db7f3ad151ead9fb588f3a56cd5f5c9c13b
add ability to turn on debug request logging (#14106) If `OLLAMA_DEBUG_LOG_REQUESTS` is set, then on server startup a temp folder will be created. Upon any inference request, the body will be logged to a file in this folder, as well as a small shell script to "replay" the request using cURL. This is just intended for...
[ { "path": "envconfig/config.go", "patch": "@@ -214,6 +214,8 @@ func LogLevel() slog.Level {\n var (\n \t// FlashAttention enables the experimental flash attention feature.\n \tFlashAttention = BoolWithDefault(\"OLLAMA_FLASH_ATTENTION\")\n+\t// DebugLogRequests logs inference requests to disk for replay/debu...
2026-03-20T00:08:17
facebook/react
ee68446ff198755bd38202ac9139275b657968b0
aec521a96d3f1bebc2ba38553d14f4989c6e88e0
[Fizz] handle errors in `onHeaders` (#27712) `onHeaders` can throw however for now we can assume that headers are optimistic values since the only things we produce for them are preload links. This is a pragmatic decision because React could concievably have headers in the future which were not optimistic and thus ...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -6131,6 +6131,10 @@ export function emitEarlyPreloads(\n if (onHeaders) {\n const headers = renderState.headers;\n if (headers) {\n+ // Even if onHeaders throws we don't want to call this again so\n+ /...
2023-11-15T20:53:38
electron/electron
c6b9340b8952a041373f694c6ee2f22f447464de
397aee7315fdc2349921501933f1d77f03448125
chore: fix memory leak in `v8.serialize()` (#37021) chore: fix memory leak in v8.serialize()
[ { "path": "patches/node/fixup_for_wc_98-compat-extra-semi.patch", "patch": "@@ -7,7 +7,7 @@ Wc++98-compat-extra-semi is turned on for Electron so this\n patch fixes that error in node.\n \n diff --git a/src/node_serdes.cc b/src/node_serdes.cc\n-index 0cd76078218433b46c17f350e3ba6073987438cf..ba13061b6aa7fd8...
2023-01-26T06:43:57
huggingface/transformers
f38d6639fa6b82a401f4e2ea7fef1a3eb550c1a6
43ed69fe91642e0b37cdc243bb3af2629108f727
fix: correct type annotations across config classes for @strict validation (#45007) * fix: correct type annotations across config classes for @strict validation Fix bool fields mistyped as int (would fail @strict validation): - BigBird, Cohere2: use_cache: int → bool - MBart, M2M100: scale_embedding: int → bool - OLM...
[ { "path": "src/transformers/models/align/configuration_align.py", "patch": "@@ -50,8 +50,8 @@ class AlignTextConfig(PreTrainedConfig):\n num_attention_heads: int = 12\n intermediate_size: int = 3072\n hidden_act: str = \"gelu\"\n- hidden_dropout_prob: float = 0.1\n- attention_probs_dropout...
2026-04-01T17:37:55
golang/go
bec12f153a2ad1b0902857bc1dafc635fc5dc06a
7e8ceadf85d1b0fc177ef0754f779a7a87b2c2b9
log/slog: optimize appendKey to reduce allocations This change introduces a new method, `appendTwoStrings`, which optimizes the `appendKey` function by avoiding the allocation of a temporary string (string concatenation of prefix and key). Instead, it directly appends the prefix and key to the buffer. Additionally, a...
[ { "path": "src/log/slog/handler.go", "patch": "@@ -525,8 +525,7 @@ func (s *handleState) appendError(err error) {\n func (s *handleState) appendKey(key string) {\n \ts.buf.WriteString(s.sep)\n \tif s.prefix != nil && len(*s.prefix) > 0 {\n-\t\t// TODO: optimize by avoiding allocation.\n-\t\ts.appendString(s...
2024-11-23T13:19:50
ollama/ollama
126d8db7f3ad151ead9fb588f3a56cd5f5c9c13b
3f3a24b4189a6c143d691c0747af3f284ff8928f
parsers: robust xml tool repair (#14961) Previous xml repair for glm was a good start, but we need to go further and repair any incorrect open or closing tags Co-authored-by: Dongluo Chen <dongluo.chen@gmail.com>
[ { "path": "model/parsers/glm46.go", "patch": "@@ -345,44 +345,163 @@ func escapeGLM46Content(s string) string {\n \treturn result.String()\n }\n \n-// repairUnclosedArgValues inserts missing </arg_value> closing tags.\n-// GLM models sometimes omit the closing tag, producing XML like:\n-//\n-//\t<arg_value>...
2026-03-19T18:24:48
facebook/react
369c315ac49806f5869ec3754cbd9747fe72993d
392a4fd9da8ff45f8cd050a17d4a01d89fc0c25f
[hir] Update error message to say global This is non ideal but at least it's a step in the right direction. Getting the correct error requires us to track every identifier and global, which seems a bit excessive for now. We can revisit and improve this error if this is starting to confuse folks.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts", "patch": "@@ -353,7 +353,7 @@ class InferenceState {\n effect = Effect.Mutate;\n } else {\n CompilerError.throwInvalidReact({\n- reason: `This mutates a variable after it wa...
2023-11-15T17:03:55
electron/electron
a30a9c7c4faa5aca476dd593dd02bbfac43432df
a59f11fdb1746ced2b90b9dcf16a7860a79cce73
chore: remove crashpad related sandbox policy (#37013)
[ { "path": "shell/browser/electron_browser_client.cc", "patch": "@@ -120,10 +120,6 @@\n #include \"ui/native_theme/native_theme.h\"\n #include \"v8/include/v8.h\"\n \n-#if BUILDFLAG(IS_WIN)\n-#include \"sandbox/win/src/sandbox_policy.h\"\n-#endif\n-\n #if BUILDFLAG(USE_NSS_CERTS)\n #include \"net/ssl/client_...
2023-01-26T00:01:34
vercel/next.js
3d2150b73db346d5a54a5567d71564571d3dcec8
3e24a9f25140396d83b957e662d169b3862da6dd
[segment-explorer] Fix segment alignment (#80797)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx", "patch": "@@ -236,7 +236,6 @@ export const DEV_TOOLS_INFO_RENDER_FILES_STYLES = css`\n padding: 2px 6px;\n border-radius: 16px;\n font-size: var(--size-12);\n- line-height: 16px;\n font-weigh...
2025-06-23T11:59:41
huggingface/transformers
43ed69fe91642e0b37cdc243bb3af2629108f727
d55f0350a25333406daeafb7c250bb4ba3bf43a1
Fix explicit local code resolution for tokenizers and image processors (#45169) * Fix tokenizer `explicit_local_code` detection Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> * Fix image processor `explicit_local_code` detection Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.gi...
[ { "path": "src/transformers/models/auto/image_processing_auto.py", "patch": "@@ -725,7 +725,7 @@ def from_pretrained(cls, pretrained_model_name_or_path, *inputs, **kwargs):\n has_remote_code = image_processor_auto_map is not None\n has_local_code = image_processor_class is not None or type(c...
2026-04-01T17:00:34
golang/go
d037ed62bc583af358b2cc5aeb151872a6ba7c2e
26040b1dd7e4e8f7957b2a918c01f3343249c289
math/big: simplify, speed up Karatsuba multiplication The old Karatsuba implementation only operated on lengths that are a power of two times a number smaller than karatsubaThreshold. For example, when karatsubaThreshold = 40, multiplying a pair of 99-word numbers runs karatsuba on the low 96 (= 39<<2) words and then ...
[ { "path": "src/math/big/int.go", "patch": "@@ -181,22 +181,25 @@ func (z *Int) Sub(x, y *Int) *Int {\n \n // Mul sets z to the product x*y and returns z.\n func (z *Int) Mul(x, y *Int) *Int {\n-\treturn z.mul(nil, x, y)\n+\tz.mul(nil, x, y)\n+\treturn z\n }\n \n-func (z *Int) mul(stk *stack, x, y *Int) *Int...
2025-01-17T22:26:59
ollama/ollama
3f3a24b4189a6c143d691c0747af3f284ff8928f
96e36c0d90b1da23304658a2ba90784b4a1c822d
app: fix desktop app stuck loading when OLLAMA_HOST is an unspecified bind address (#14885)
[ { "path": "app/ui/ui.go", "patch": "@@ -155,7 +155,7 @@ func (s *Server) ollamaProxy() http.Handler {\n \t\t\t\t\treturn\n \t\t\t\t}\n \n-\t\t\t\ttarget := envconfig.Host()\n+\t\t\t\ttarget := envconfig.ConnectableHost()\n \t\t\t\ts.log().Info(\"configuring ollama proxy\", \"target\", target.String())\n \n ...
2026-03-19T16:57:57
facebook/react
392a4fd9da8ff45f8cd050a17d4a01d89fc0c25f
306fe03e7897199175780f80974b05bf376ad4f9
[test] Add tests for mutating a global The error is thrown correctly but the error message is incorrect.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.mutate-property-from-global.expect.md", "patch": "@@ -0,0 +1,21 @@\n+\n+## Input\n+\n+```javascript\n+let wat = {};\n+\n+function Foo() {\n+ delete wat.foo;\n+ return wat;\n+}\n+\n+```\n+\n+\n+## Error\n+\n+```\n+...
2023-11-15T17:03:51
electron/electron
58beec1da2cacd59a91a556b86f47ec0147b9c36
4bc6b15f53a3e4f961c2ade3c96fa9229ec00367
fix: do not error on null exports in ESM loader (#37009)
[ { "path": "patches/node/fix_expose_the_built-in_electron_module_via_the_esm_loader.patch", "patch": "@@ -51,7 +51,7 @@ index 7cec4e9a3e3675ba75d66a44ed4e142d13ca1821..0c7aad193442a7e5cab62638441969a7\n }\n }\n diff --git a/lib/internal/modules/esm/translators.js b/lib/internal/modules/esm/translators.js...
2023-01-25T21:03:47
huggingface/transformers
d55f0350a25333406daeafb7c250bb4ba3bf43a1
38593c2e83964079576eb646fe9b68cce16114dc
Fix T5Attention shape mismatch under Tensor Parallelism (#45109) * Fix T5Attention shape mismatch under Tensor Parallelism T5Attention.forward hard-codes n_heads and inner_dim in view() calls. When ColwiseParallel shards q/k/v projections, the output dim becomes inner_dim / tp_size, but n_heads stays unchanged, causi...
[ { "path": "src/transformers/models/longt5/modeling_longt5.py", "patch": "@@ -433,8 +433,8 @@ def forward(\n # if key_value_states are provided this layer is used as a cross-attention layer for the decoder\n is_cross_attention = key_value_states is not None\n \n- query_states = self.q(...
2026-04-01T16:11:11
golang/go
8d767ff38df003e9cd85e4bba9a026ba1b70e80e
c032b042190dcc37963b025c75e938f3ffa587d0
runtime: increase GDB version testing requirement to 10 from 7.7 Bump the required version of GDB up to 10 from 7.7 in the runtime GDB tests, so as to ensure that we have something that can handle DWARF 5 when running tests. In theory there is some DWARF 5 support on the version 9 release branch, but we get "Dwarf Err...
[ { "path": "src/runtime/runtime-gdb_test.go", "patch": "@@ -73,7 +73,9 @@ func checkGdbVersion(t *testing.T) {\n \tif err1 != nil || err2 != nil {\n \t\tt.Skipf(\"skipping: can't determine gdb version: %v, %v\", err1, err2)\n \t}\n-\tif major < 7 || (major == 7 && minor < 7) {\n+\t// The Go toolchain now gen...
2025-03-12T01:33:25
vercel/next.js
7acb9b6b5adb7953a4892b2b07ae241826d446c4
e231928cb72587995d0ce995ef7c398c98e1f845
[turbopack] Update Napi CLI to the latest 2x release (#80697) ## What Update the napi cli to the latest 2x build 2.18.4 ## Why This will make it easy to pass custom cargo profiles to napi, which will make it easier to enable debug assertions, which will happen in a followup. Part-of PACK-4578
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -9,7 +9,7 @@ on:\n workflow_dispatch:\n \n env:\n- NAPI_CLI_VERSION: 2.16.2\n+ NAPI_CLI_VERSION: 2.18.4\n TURBO_VERSION: 2.3.3\n NODE_LTS_VERSION: 20\n CARGO_PROFILE_RELEASE_LTO: 'true'", "additions": 1, "deletions": 1, "...
2025-06-23T07:30:21
facebook/react
696434fed83215829c6d907999ad7d636aa0baf5
c434ef4b704ede228471697a49ba1e48d9d2486b
Fix ValidateNoSetStateInRender for loops
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateNoSetStateInRender.ts", "patch": "@@ -16,7 +16,6 @@ import {\n } from \"../HIR\";\n import { PostDominator } from \"../HIR/Dominator\";\n import { eachInstructionValueOperand } from \"../HIR/visitors\";\n-import { findBlocksWithBa...
2023-11-14T19:33:39
electron/electron
355f322dbdba4cacd6a15e4c7d64adb2da9500d8
2f79444535440608f9ddf2f26c634847396674b7
chore: remove unused fixture_support.md (#37011) Co-authored-by: Milan Burda <miburda@microsoft.com>
[ { "path": "spec/fixtures/version-bumper/fixture_support.md", "patch": "@@ -1,122 +0,0 @@\n-# Electron Support\n-\n-## Finding Support\n-\n-If you have a security concern,\n-please see the [security document](https://github.com/electron/electron/tree/master/SECURITY.md).\n-\n-If you're looking for programmin...
2023-01-25T21:00:51
ollama/ollama
96e36c0d90b1da23304658a2ba90784b4a1c822d
6f8ddbb26b829949d2f925755507dbb8f3f01de5
mlxrunner: share KV cache across conversations with common prefixes Enable multiple conversations to reuse cached computations when they share token prefixes (e.g. the same system prompt). A prefix trie tracks shared regions so switching between conversations only recomputes tokens that diverge. Inactive conversation ...
[ { "path": "x/mlxrunner/cache.go", "patch": "@@ -1,19 +1,40 @@\n+// cache.go manages a shared KV cache across conversations using a compressed\n+// prefix trie. Each trie node stores a token sequence (edge) and optional\n+// per-layer snapshots that can be paged in/out of the live MLX cache arrays.\n+//\n+//...
2026-03-05T23:45:36
golang/go
c032b042190dcc37963b025c75e938f3ffa587d0
c00647b49b7e538506af31c67eb0411e8ea64176
internal/buildcfg: fix typo in DWARF 5 enabling code Fix a typo in the code that decides which GOOS values will support use of DWARF 5 ("darwin" was not spelled correctly). Updates #26379. Change-Id: I3a7906d708550fcedc3a8e89d0444bf12b9143f1 Reviewed-on: https://go-review.googlesource.com/c/go/+/656895 Auto-Submit: ...
[ { "path": "src/internal/buildcfg/exp.go", "patch": "@@ -82,7 +82,7 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t// XCOFF format (as far as can be determined) doesn't seem to\n \t// support the necessary section subtypes for DWARF-specific\n \t// things like .debug_ad...
2025-03-12T01:19:11
vercel/next.js
5cbee8aef9ca95d372ab20486bcb71d0aeabe30f
8a5545633e97063a1bc45dde0571a6e7a1955da8
fix: fixed merge driver output, does not expect debugging messages to output on stdout (#80736) The git merge driver does not expect debugging messages to output on stdout, and instead requires them to output on stderr. This changes the `console.log` to a `console.error` to account for this requirement.
[ { "path": "scripts/merge-errors-json/merge.mjs", "patch": "@@ -44,7 +44,7 @@ function main() {\n writeJsonSync(currentPath, merged)\n \n const addedCount = Object.keys(merged).length - Object.keys(current).length\n- console.log(\n+ console.error(\n `merge-errors-json: added ${addedCount ...
2025-06-22T10:33:05
huggingface/transformers
38593c2e83964079576eb646fe9b68cce16114dc
c1237d9bec73c24546b909b10468eef5043ec30f
[refactor] Serving into proper modules (#44796) * new serve file * app * model_manager done * update serve * style * poc done * renaming * fix * new tests * update metrics and processor * hardcode n_batch for now * add response api + compile * more tests * add it for now but we will move it * remove cach...
[ { "path": "docker/transformers-all-latest-gpu/Dockerfile", "patch": "@@ -105,6 +105,9 @@ RUN python3 -m pip install --no-cache-dir python-Levenshtein\n # For `FastSpeech2ConformerTokenizer` tokenizer\n RUN python3 -m pip install --no-cache-dir g2p-en\n \n+# For serving tests (audio pipelines)\n+RUN python3 ...
2026-04-01T15:42:00
electron/electron
2f79444535440608f9ddf2f26c634847396674b7
a9b6041d38b877319c740fe7c31e8a1a235d7764
refactor: separate WEB_VIEW_ATTRIBUTES / WEB_VIEW_ERROR_MESSAGES (#36972)
[ { "path": "lib/renderer/web-view/web-view-attributes.ts", "patch": "@@ -1,5 +1,5 @@\n import type { WebViewImpl } from '@electron/internal/renderer/web-view/web-view-impl';\n-import { WEB_VIEW_CONSTANTS } from '@electron/internal/renderer/web-view/web-view-constants';\n+import { WEB_VIEW_ATTRIBUTES, WEB_VIE...
2023-01-25T15:08:46
facebook/react
aec521a96d3f1bebc2ba38553d14f4989c6e88e0
593ecee66a609d4a4c2b36b39b1e5e23b2456dd1
fix[devtools/useMemoCache]: implement a working copy of useMemoCache (#27659) In https://github.com/facebook/react/pull/27472 I've removed broken `useMemoCache` implementation and replaced it with a stub. It actually produces errors when trying to inspect components, which are compiled with Forget. The main diff...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -26,6 +26,7 @@ import {\n ContextProvider,\n ForwardRef,\n } from 'react-reconciler/src/ReactWorkTags';\n+import {REACT_MEMO_CACHE_SENTINEL} from 'shared/ReactSymbols';\n \n type CurrentDispatcherRef = typeof ReactSharedInternal...
2023-11-14T18:23:39
ollama/ollama
6f8ddbb26b829949d2f925755507dbb8f3f01de5
b5e78884148828672fa122fdcbfae6a4d578108e
mlxrunner: fix Slice(0, 0) returning full dimension instead of empty Slice used cmp.Or to resolve a zero stop value to the dimension size, intended to support open-ended slices like a[i:]. This made Slice(0, 0) indistinguishable from Slice(), so any slice with a zero stop would silently include the entire dimension in...
[ { "path": "x/mlxrunner/mlx/slice.go", "patch": "@@ -4,10 +4,14 @@ package mlx\n import \"C\"\n \n import (\n-\t\"cmp\"\n+\t\"math\"\n \t\"unsafe\"\n )\n \n+// End is a sentinel value meaning \"to the end of the dimension\",\n+// equivalent to an omitted stop in Python (e.g. a[i:]).\n+const End = math.MaxInt...
2026-03-18T21:10:08
vercel/next.js
8a5545633e97063a1bc45dde0571a6e7a1955da8
da46d66667bbd877d651b12c2717b250301f52c0
fix(turbopack): Do not run `inject_helpers` pass multiple times (#80755) ### What? Remove `inject_helpers` passes from `apply_transforms` ### Why? We run `inject_helpers` from `fn parse` anyway, so we don't need to run it from `apply_transforms`.
[ { "path": "turbopack/crates/turbopack-ecmascript/src/transform/mod.rs", "patch": "@@ -10,11 +10,7 @@ use swc_core::{\n ecma::{\n ast::{Module, ModuleItem, Program, Script},\n preset_env::{self, Targets},\n- transforms::{\n- base::{assumptions::Assumptions, helpers::inje...
2025-06-22T10:31:06
huggingface/transformers
c1237d9bec73c24546b909b10468eef5043ec30f
6abd9725ee7d809dc974991f8ff6c958afb63a3a
Re-add regex substitutions to the response parsing spec (#45166) * Re-add regex substitutions to the spec * make fix-repo * Update the test schema to drop the empty content block * Trigger tests
[ { "path": "src/transformers/utils/chat_parsing_utils.py", "patch": "@@ -70,14 +70,22 @@ def recursive_parse(\n \n # If not, we have to do a little parsing. First, set some vars and do basic validation\n node_type = node_schema.get(\"type\")\n- has_regex = \"x-regex\" in node_schema or \"x-regex-i...
2026-04-01T15:46:32
golang/go
43648931492e45c78ba3e21e7191944a0bb7c10b
17b9c9f2ad6f7943a4a1861dfc000d190abca55b
cmd/internal/script/scripttest: use GOHOSTARCH to find tool directory Fixes #72800 Change-Id: Idde7eae13d1c0098e5314935cf8ca823cbc7a7cc Reviewed-on: https://go-review.googlesource.com/c/go/+/656855 Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <...
[ { "path": "src/cmd/internal/script/scripttest/setup.go", "patch": "@@ -6,10 +6,13 @@\n package scripttest\n \n import (\n+\t\"internal/testenv\"\n \t\"io\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"runtime\"\n+\t\"strings\"\n+\t\"sync\"\n \t\"testing\"\n )\n \n@@ -36,13 +39,17 @@ func SetupTestGoRoot(t *testin...
2025-03-11T22:00:23
electron/electron
a9b6041d38b877319c740fe7c31e8a1a235d7764
afca3ff9657ae08d4ead68ee23d0a04fc5042465
chore: remove unused files in spec/fixtures (#37012) Co-authored-by: Milan Burda <miburda@microsoft.com>
[ { "path": "spec/fixtures/api/native-window-open-argv.html", "patch": "@@ -1,8 +0,0 @@\n-<html>\n-<body>\n-<script type=\"text/javascript\" charset=\"utf-8\">\n- const popup = window.open()\n- require('electron').ipcRenderer.send('answer', typeof popup.process)\n-</script>\n-</body>\n-</html>", "additi...
2023-01-25T15:02:44
ollama/ollama
5759c2d2d20bc3193e4520f4a6af42545dbbc104
42b1c2642b7b3d4de543c68f9d78b1efb0a254e3
launch: fix openclaw not picking up newly selected model (#14943) Sessions with a stale model field were not updated when the primary changed, so the old model continued to be used.
[ { "path": "cmd/launch/openclaw.go", "patch": "@@ -609,6 +609,8 @@ func clearSessionModelOverride(primary string) {\n \t\tif override, _ := sess[\"modelOverride\"].(string); override != \"\" && override != primary {\n \t\t\tdelete(sess, \"modelOverride\")\n \t\t\tdelete(sess, \"providerOverride\")\n+\t\t}\n+...
2026-03-18T20:20:10
facebook/react
c434ef4b704ede228471697a49ba1e48d9d2486b
00abc5acf5e02fc72b1f7107d803efcdb358f441
[validation] Patch false positives for hook calls after loops --- We were throwing `InvalidReact` errors on valid inputs. ```js // Input function Foo() { log("block0"); for (const _ of foo) { log("loop"); } useBar(); } // IR bb0: // log("block0"); ForOf init=bb2 loop=bb3 fallthrough=bb1 ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateUnconditionalHooks.ts", "patch": "@@ -12,7 +12,6 @@ import {\n } from \"../CompilerError\";\n import { PostDominator, computePostDominatorTree } from \"../HIR/Dominator\";\n import { BlockId, HIRFunction, SourceLocation, getHookKi...
2023-11-14T18:04:31