repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
ollama/ollama
55d0b6e8b9498a621565c93625b7e29c96812f21
38eac40d56510f343ffa4d6f7613d4e820d14cd1
integration: fix tools_test.go for ToolCallFunctionArguments API change (#13731)
[ { "path": "integration/tools_test.go", "patch": "@@ -131,7 +131,7 @@ func TestAPIToolCalling(t *testing.T) {\n \t\t\t\t\tt.Errorf(\"unexpected tool called: got %q want %q\", lastToolCall.Function.Name, \"get_weather\")\n \t\t\t\t}\n \n-\t\t\t\tif _, ok := lastToolCall.Function.Arguments[\"location\"]; !ok {...
2026-01-16T00:08:09
vercel/next.js
cc6163aa266dd1a0bea7f6abc733247144d22fa7
222f7f5b1e42e6107c39895e639e04d53d49da8d
[turbopack] Remove Value::new wrapper for Availabilityinfo parameters (#80132) Remove Value::new wrapper for Availabilityinfo parameters ### Why? The Value<> type is confusing and error prone, lets destroy it! As discussed over slack, turbo_tasks::Value type always implements is_resolved as true and is_transient as ...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1256,7 +1256,7 @@ impl AppEndpoint {\n *client_references,\n *module_graphs.full,\n *client_chunking_context,\n- Value::new(client_shared_availability_info),\n+ client_shared_availability_info,\n ...
2025-06-05T22:49:33
golang/go
c2ae5c7443fc8bda1d2b06390d4b439e81fb4b09
6adf08f747aff60810e754ca74e1bef381cbae86
cmd/compile, runtime: use PC of deferreturn for panic transfer this removes the old conditional-on-register-value handshake from the deferproc/deferprocstack logic. The "line" for the recovery-exit frame itself (not the defers that it runs) is the closing brace of the function. Reduces code size slightly (e.g. go co...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1441,24 +1441,7 @@ var nefJumps = [2][2]ssagen.IndexJump{\n \n func ssaGenBlock(s *ssagen.State, b, next *ssa.Block) {\n \tswitch b.Kind {\n-\tcase ssa.BlockPlain:\n-\t\tif b.Succs[0].Block() != next {\n-\t\t\tp := s.Prog(obj.AJMP)\n-\t\t\tp.T...
2025-02-19T21:47:31
huggingface/transformers
92c625889f6369cf73d19a2c62159b45c9bd6d98
884333368ff329090c73bd00e57996727f301de3
Fix glm dsa (#44564) relu
[ { "path": "src/transformers/models/glm_moe_dsa/modeling_glm_moe_dsa.py", "patch": "@@ -216,7 +216,7 @@ def forward(\n \n # q·k^T per head: [B, S, H, D] @ [B, T, D]^T → [B, S, H, T]\n scores = torch.einsum(\"bshd,btd->bsht\", q.float(), k_cached.float()) * self.softmax_scale\n-\n+ scor...
2026-03-19T15:13:33
electron/electron
8a926ffde4ce4af49ce833b97c884636074b0a1f
7ce94eb0b4cfa31c4a14a14c538fe59884dbf166
refactor: use views NonClientHitTest for draggable regions on mac (#35603) * refactor: use views NonClientHitTest for draggable regions on mac * iwyu * add backport of 9bb5f0316 * chore: update patches * remove some unneeded functions * remove test for triggering when BW is focused * chore: update pa...
[ { "path": "filenames.gni", "patch": "@@ -124,7 +124,6 @@ filenames = {\n \"shell/app/electron_main_delegate_mac.h\",\n \"shell/app/electron_main_delegate_mac.mm\",\n \"shell/browser/api/electron_api_app_mac.mm\",\n- \"shell/browser/api/electron_api_browser_window_mac.mm\",\n \"shell/brows...
2022-10-12T16:05:45
ollama/ollama
38eac40d56510f343ffa4d6f7613d4e820d14cd1
80f3f1bc25e1ee58e0dd2a3ff8b14f332dfa4fc7
openai: tweak v1/responses to conform better (#13736) * openai: tweak v1/responses to conform better * openai: provide better error for image URLs * lint
[ { "path": "middleware/openai.go", "patch": "@@ -8,6 +8,7 @@ import (\n \t\"math/rand\"\n \t\"net/http\"\n \t\"strings\"\n+\t\"time\"\n \n \t\"github.com/gin-gonic/gin\"\n \n@@ -441,6 +442,7 @@ type ResponsesWriter struct {\n \tstream bool\n \tresponseID string\n \titemID string\n+\trequest openai...
2026-01-15T23:46:36
vercel/next.js
222f7f5b1e42e6107c39895e639e04d53d49da8d
0d2e80554afca371c5c74c74bac6066c0e108331
[test] fix flaky test of basepath navigation (#80213)
[ { "path": "test/e2e/app-dir/app-basepath/index.test.ts", "patch": "@@ -12,7 +12,12 @@ describe('app dir - basepath', () => {\n \n it('should successfully hard navigate from pages -> app', async () => {\n const browser = await next.browser('/base/pages-path')\n- await browser.elementByCss('#to-anoth...
2025-06-05T21:02:20
facebook/react
28767a7afb7ca426712b588dbc3beacc12f645b8
4fe0ab41e323acb990cace942ef26630b42ac0d1
Inline reactive scope dep checks; no more change vars Reactive scopes are currently preceded by individual variable declarations, one for each of the scope's dependencies. Only after checking independently if each of these dependencies has changed do we then do an "or" to check if we should actually recompute the ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -237,28 +237,17 @@ function codegenMemoBlockForReactiveScope(\n ): void {\n const cacheStoreStatements: Array<t.Statement> = [];\n const cacheLoadStatements: Array<t.Statement> = [];\n- c...
2023-10-12T19:03:42
golang/go
549a88fa53c4d7d5ad702cdc90b3f0c763deb12e
d45d502fbb989e140c979b16837b1c2126dd18ab
go/types, types2: better error messages for calls Provide the exact error cause instead of reporting a missing core type. For #70128. Change-Id: I34bd401115742883cb6aef7997477473b2464abb Reviewed-on: https://go-review.googlesource.com/c/go/+/651256 Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Robert G...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -242,10 +242,16 @@ func (check *Checker) callExpr(x *operand, call *syntax.CallExpr) exprKind {\n \t// signature may be generic\n \tcgocall := x.mode == cgofunc\n \n-\t// a type parameter may be \"called\" if all types have the same signature...
2025-02-21T00:23:11
ollama/ollama
349d8148141b2204b52026d617d67120e03add27
c8743031e031fa0e74e08b95d24c90636ac9c222
docs: add marimo integration (#13326) * docs added * fix title * add marimo to docs.json --------- Co-authored-by: Devon Rifkin <drifkin@drifkin.net>
[ { "path": "docs/docs.json", "patch": "@@ -112,7 +112,8 @@\n \"/integrations/roo-code\",\n \"/integrations/n8n\",\n \"/integrations/xcode\",\n- \"/integrations/onyx\"\n+ \"/integrations/onyx\",\n+ \"/integrations/marimo\"\n ...
2026-01-15T01:37:38
electron/electron
7ce94eb0b4cfa31c4a14a14c538fe59884dbf166
1328d8d6708cce054bf0d81044fa3f8032d3885f
fix: disable `nodeIntegrationInWorker` for certain Worker types (#35919) fix: disable nodeIntegrationInWorker for certain Worker types
[ { "path": "docs/tutorial/multithreading.md", "patch": "@@ -20,6 +20,8 @@ const win = new BrowserWindow({\n The `nodeIntegrationInWorker` can be used independent of `nodeIntegration`, but\n `sandbox` must not be set to `true`.\n \n+**Note:** This option is not available in [`SharedWorker`s](https://developer...
2022-10-12T14:36:24
vercel/next.js
9305b89a89e7f629d2cbc6e1f4c14d329850a7e2
6de962e4638be010b0647c0b07c9effec8698999
fix(turbopack): Next.js package not found panics in Turbopack (#79572) ## Warn when multiple lockfiles are found and use highest level lockfile ### What? This PR enhances the lockfile detection logic to identify multiple lockfiles in a project hierarchy and use the highest level one as the tracing root. ### Why? Whe...
[ { "path": "packages/next/src/lib/find-root.ts", "patch": "@@ -1,5 +1,6 @@\n import { dirname } from 'path'\n import findUp from 'next/dist/compiled/find-up'\n+import * as Log from '../build/output/log'\n \n export function findRootLockFile(cwd: string) {\n return findUp.sync(\n@@ -18,5 +19,29 @@ export fu...
2025-06-05T15:54:56
facebook/react
87b1549d5c11da3370caf947231c09c39d7053da
52c6a34da30ffee665183df2aa8f97e3511fbd9e
Improve MergeConsecutiveScopes Rewrites the core logic of MergeConsecutiveScopes to be easier to follow and fix bugs. We now do a two-pass approach: * First we iterate block instructions to identify scopes which can be merged, without actually merging the instructions themselves. * Then we iterate again, copyin...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -44,8 +44,8 @@ import {\n flattenScopesWithObjectMethods,\n inferReactiveScopeVariables,\n memoizeFbtOperandsInSameScope,\n- mergeConsecutiveScopes,\n mergeOverlappingReactiveScopes,\n+ mergeReactiveSc...
2023-10-12T16:47:26
golang/go
d45d502fbb989e140c979b16837b1c2126dd18ab
bdcd6d1b653dd7a5b3eb9a053623f85433ff9e6b
go/types, types2: better error messages for for-range clauses Provide the exact error cause instead of reporting a missing core type. For #70128. Change-Id: I835698fa1f22382711bd54b974d2c87ee17e9065 Reviewed-on: https://go-review.googlesource.com/c/go/+/651215 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-...
[ { "path": "src/cmd/compile/internal/types2/compilersupport.go", "patch": "@@ -32,7 +32,7 @@ func CoreType(t Type) Type {\n // RangeKeyVal returns the key and value types for a range over typ.\n // It panics if range over typ is invalid.\n func RangeKeyVal(typ Type) (Type, Type) {\n-\tkey, val, _, ok := rang...
2025-02-20T23:01:36
huggingface/transformers
884333368ff329090c73bd00e57996727f301de3
7805ec28c1b374fa1d4ffc77ed5e8c4cb1322bca
🚨🚨 Refactor Image Processors to support different backends (#43514) * init refactor * Fix llava * changes after review * update first batch of image processors * refactor part 2 * improve base image processor class, move backends to separate file * refactor to have backends in separate files, with backends now...
[ { "path": "CONTRIBUTING.md", "patch": "@@ -137,13 +137,15 @@ python utils/modular_model_converter.py <model_name>\n \n This will generate the separate files (`modeling_*.py`, `configuration_*.py`, etc.) from your modular file. The CI will enforce that these generated files match your modular file.\n \n-☐ **...
2026-03-19T14:33:28
facebook/react
e61a60fac02d205ad928bff6de2449f00646a92c
1fc58281af73ca4507c41d53a3e08dc2038b0c1f
[Flight] Enforce "simple object" rule in production (#27502) We only allow plain objects that can be faithfully serialized and deserialized through JSON to pass through the serialization boundary. It's a bit too expensive to do all the possible checks in production so we do most checks in DEV, so it's still possi...
[ { "path": "packages/react-client/src/ReactFlightReplyClient.js", "patch": "@@ -29,6 +29,9 @@ import {\n } from 'shared/ReactSerializationErrors';\n \n import isArray from 'shared/isArray';\n+import getPrototypeOf from 'shared/getPrototypeOf';\n+\n+const ObjectPrototype = Object.prototype;\n \n import {usedW...
2023-10-11T16:18:49
vercel/next.js
f684e973f1ddbbdc99cdda9a89070d6d228a1dd7
07c3320ef9412ad32551f7150862f9526752d524
Turbopack: ignore module ids config in dev (#80204) `deterministic` doesn't work with HMR and causes odd errors. So we'll ignore the `turbopack.moduleIds` config in dev See https://vercel.slack.com/archives/C03EWR7LGEN/p1748971192561939 as well
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1726,16 +1726,7 @@ impl Project {\n /// Gets the module id strategy for the project.\n #[turbo_tasks::function]\n pub async fn module_ids(self: Vc<Self>) -> Result<Vc<Box<dyn ModuleIdStrategy>>> {\n- let module_id_strategy =\n- ...
2025-06-05T14:41:37
ollama/ollama
4adb9cf4bbf21486113eb13680b8be6a08fc5d0e
74f475e7351162e3a3449d3564d61c6887a6f610
scripts: fix macOS auto-update signature verification failure (#13713) Add --norsrc flag to ditto commands when creating Ollama-darwin.zip to exclude AppleDouble resource fork files (._* files) from the archive. The mlx.metallib file has extended attributes, which causes ditto to include a ._mlx.metallib AppleDouble ...
[ { "path": "scripts/build_darwin.sh", "patch": "@@ -179,15 +179,15 @@ _build_macapp() {\n fi\n \n rm -f dist/Ollama-darwin.zip\n- ditto -c -k --keepParent dist/Ollama.app dist/Ollama-darwin.zip\n+ ditto -c -k --norsrc --keepParent dist/Ollama.app dist/Ollama-darwin.zip\n (cd dist/Ollama.app...
2026-01-14T15:48:10
electron/electron
eb97ce19316a755dc7d6dcfa06e02f8d942b02b6
b6eadf2414ec1f71bef6dc35b0de2ff92219e3ae
build: fix building with enable_ppapi = false (#35988)
[ { "path": "BUILD.gn", "patch": "@@ -404,9 +404,6 @@ source_set(\"electron_lib\") {\n \"//media/mojo/mojom\",\n \"//net:extras\",\n \"//net:net_resources\",\n- \"//ppapi/host\",\n- \"//ppapi/proxy\",\n- \"//ppapi/shared_impl\",\n \"//printing/buildflags\",\n \"//services/device/p...
2022-10-12T14:04:30
golang/go
bdcd6d1b653dd7a5b3eb9a053623f85433ff9e6b
f77bba43aa223fc86fd223f3ea4ef60db8e0c583
strconv: use builtin min function in commonPrefixLenIgnoreCase To make code a bit simpler. Change-Id: I33b3e04bc810a4838584c477854ef612b355579a GitHub-Last-Rev: 6d5bbc2a2877193e1319b9e626f408eda399666e GitHub-Pull-Request: golang/go#71927 Reviewed-on: https://go-review.googlesource.com/c/go/+/651975 Reviewed-by: Ian ...
[ { "path": "src/strconv/atof.go", "patch": "@@ -18,10 +18,7 @@ var optimize = true // set to false to force slow-path conversions for testing\n // prefix of s and prefix, with the character case of s ignored.\n // The prefix argument must be all lower-case.\n func commonPrefixLenIgnoreCase(s, prefix string) ...
2025-02-24T13:05:31
vercel/next.js
07c3320ef9412ad32551f7150862f9526752d524
1429d7242159be90ecb2423f034770cb251a0e54
Fix race condition in `types-and-precompiled` (#80162)
[ { "path": "package.json", "patch": "@@ -44,7 +44,7 @@\n \"lint-eslint\": \"cross-env ESLINT_USE_FLAT_CONFIG=false eslint . --ext js,jsx,mjs,ts,tsx,mts,mdx --config .eslintrc.json --no-eslintrc\",\n \"lint-ast-grep\": \"ast-grep scan\",\n \"lint-no-typescript\": \"run-p prettier-check lint-eslint...
2025-06-05T13:50:07
ollama/ollama
af7ea6e96e5272f7b5ccb2bf3fe9dadd92fc763d
8f1e0140e70f59cecf39df62b6fd5ce2e2572150
x/imagegen: install mlx.metallib and fix macOS rpath handling, add mlx library directories to LD_LIBRARY_PATH (#13695) - Install mlx.metallib for arm64 builds (required for Metal GPU acceleration) - Apply rpath settings to all macOS builds, not just x86_64 - Add CMAKE_BUILD_WITH_INSTALL_RPATH to avoid install_name_too...
[ { "path": "CMakeLists.txt", "patch": "@@ -48,9 +48,10 @@ if((CMAKE_OSX_ARCHITECTURES AND NOT CMAKE_OSX_ARCHITECTURES MATCHES \"arm64\")\n set(GGML_CPU_ALL_VARIANTS ON)\n endif()\n \n-if (CMAKE_OSX_ARCHITECTURES MATCHES \"x86_64\")\n+if(APPLE)\n set(CMAKE_BUILD_RPATH \"@loader_path\")\n set(CMAKE...
2026-01-13T03:03:11
electron/electron
ee7cf5a6d40096a887166cfe714cd6de79052b64
0759f3320e905dd7e19c05b038204211dee26e39
fix: `webContents.printToPDF` option plumbing (#35975) fix: contents.printToPDF option plumbing
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -174,13 +174,13 @@ WebContents.prototype.printToPDF = async function (options) {\n headerTemplate: '',\n footerTemplate: '',\n printBackground: false,\n- scale: 1,\n+ scale: 1.0,\n paperWidth: 8.5,\n- paperHeight: 11,\n- m...
2022-10-11T23:06:34
huggingface/transformers
7805ec28c1b374fa1d4ffc77ed5e8c4cb1322bca
be8d8a4cae81fa4889a80d88d84e7a8b2a0c4850
[generate] Never use `cache_position` anymore in generation (#44816) * remove from generation * update tests * more tests * fix * doc * last changes * aqlm slipped through * add bc for remote code models * anton's review * add warning
[ { "path": "docs/source/en/attention_interface.md", "patch": "@@ -198,8 +198,9 @@ This is the default signature for an attention mask function.\n ```python\n def custom_attention_mask(\n batch_size: int, # required arg\n- cache_position: torch.Tensor, # required arg\n+ q_length: int, # required ...
2026-03-19T14:18:26
facebook/react
77ec61885fb19607cdd116a6790095afa40b5a94
151e75a128d0fd436dce365335b96c5686f704d4
fix[devtools/inspectElement]: dont pause initial inspectElement call when user switches tabs (#27488) There are not so many changes, most of them are changing imports, because I've moved types for UI in a single file. In https://github.com/facebook/react/pull/27357 I've added support for pausing polling events: w...
[ { "path": "packages/react-devtools-core/src/backend.js", "patch": "@@ -22,7 +22,7 @@ import {\n } from './cachedSettings';\n \n import type {BackendBridge} from 'react-devtools-shared/src/bridge';\n-import type {ComponentFilter} from 'react-devtools-shared/src/types';\n+import type {ComponentFilter} from 'r...
2023-10-10T17:10:17
golang/go
f77bba43aa223fc86fd223f3ea4ef60db8e0c583
dceee2e983f5dab65c3905ecf40e70e15cf41b7d
net: accept a valid IP address in LookupMX Fixes #56025 Change-Id: I202fdd0e11afeb22c5bc22d91fe4bfea8987e727 Reviewed-on: https://go-review.googlesource.com/c/go/+/651056 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Roland Shoemaker <roland@golang.org> Auto-Submit: Ian Lance Taylor <iant@golang.org...
[ { "path": "doc/next/6-stdlib/99-minor/net/56025.md", "patch": "@@ -0,0 +1,5 @@\n+[LookupMX] and [(*Resolver).LookupMX] now return DNS names that look\n+like valid IP address, as well as valid domain names.\n+Previously if a name server returned an IP address as a DNS name,\n+LookupMX would discard it, as re...
2025-02-20T20:12:35
ollama/ollama
8f1e0140e70f59cecf39df62b6fd5ce2e2572150
35c3c9e3c21d78dff93088f74eb8d14164adb15a
x/imagegen: fix mlx build in Dockerfile and macOS build script (#13693)
[ { "path": "Dockerfile", "patch": "@@ -161,6 +161,9 @@ ARG GOFLAGS=\"'-ldflags=-w -s'\"\n ENV CGO_ENABLED=1\n ARG CGO_CFLAGS\n ARG CGO_CXXFLAGS\n+RUN mkdir -p dist/bin\n+RUN --mount=type=cache,target=/root/.cache/go-build \\\n+ go build -tags mlx -trimpath -buildmode=pie -o dist/bin/ollama-mlx .\n \n FROM...
2026-01-12T23:52:43
huggingface/transformers
25a91051ed7973a92b158f4fb7da1edb39b416ae
70e454c97368fcc5183066d86d37d1b493a72f8c
Fix KeyError in convert_to_native_format for dict vocab (#44452) When loading tokenizers like vesteinn/ScandiBERT whose tokenizer_config specifies XLMRobertaTokenizer (model=Unigram) but whose tokenizer.json contains a dict-type vocab, the expression vocab[0] raises KeyError because dict keys are strings, not integers...
[ { "path": "src/transformers/tokenization_utils_tokenizers.py", "patch": "@@ -155,7 +155,7 @@ def convert_to_native_format(cls, trust_remote_code=False, **kwargs):\n if isinstance(vocab, list):\n vocab = list(map(tuple, vocab)) # TODO just for now\n elif cls.m...
2026-03-19T13:46:43
electron/electron
c2cb97ea298412143e34027fac2c28fd031e169a
e8ae0571b88079b030228f8c8b67aabaa36af50a
fix: on-screen-keyboard hides on input blurred in webview (#35921) Co-authored-by: Kyrylo Hrechykhin <khrechykhin@microsoft.com>
[ { "path": "patches/chromium/.patches", "patch": "@@ -122,3 +122,4 @@ fix_return_v8_value_from_localframe_requestexecutescript.patch\n create_browser_v8_snapshot_file_name_fuse.patch\n feat_ensure_mas_builds_of_the_same_application_can_use_safestorage.patch\n cherry-pick-c83640db21b5.patch\n+fix_on-screen-ke...
2022-10-11T17:21:41
vercel/next.js
1429d7242159be90ecb2423f034770cb251a0e54
dd958a13ab4a5f972be4b25be20030958d338346
Upgrade rust version to 2025-06-04 (#80200) All code changes come from `cargo clippy --fix` to collapse ifs
[ { "path": "crates/napi/src/util.rs", "patch": "@@ -70,49 +70,49 @@ pub fn log_internal_error_and_inform(internal_error: &anyhow::Error) {\n \n // hold open this mutex guard to prevent concurrent writes to the file!\n let mut last_error_time = LOG_THROTTLE.lock().unwrap();\n- if let Some(last_erro...
2025-06-05T13:46:36
golang/go
fda918389947d32e854ddfc8c972b88bd31369c4
e382bf5b322c9814e910212ebd19907b68606c49
syscall: allow \x00-prefixed unix abstract socket to use full path length Fixes #70893 Change-Id: Ia0aaa497dad335fe962d52d3f115d26e8046e36f GitHub-Last-Rev: 7dd663678d8aecdfac94541a570dfbd1aa2577e7 GitHub-Pull-Request: golang/go#71851 Reviewed-on: https://go-review.googlesource.com/c/go/+/650875 Reviewed-by: Ian Lanc...
[ { "path": "src/net/unixsock_linux_test.go", "patch": "@@ -49,6 +49,23 @@ func TestUnixAutobindClose(t *testing.T) {\n \tln.Close()\n }\n \n+func TestUnixAbstractLongNameNulStart(t *testing.T) {\n+\t// Create an abstract socket name that starts with a null byte (\"\\x00\")\n+\t// whose length is the maximum ...
2025-02-22T23:02:57
facebook/react
5a8c7594c5f06908dd2f0afb2cb69897909565a2
b61dba64ad6ded12e7ae1245861d2a08ec7ac5ff
Implement JSX whitespace rules So far we've been preserving JSX whitespace all the way through to codegen. But JSX has clear rules around whitespace handling, which allows us to trim whitespace in the input in lots of cases. For the most part this doesn't change our output, but I think that’s generally because of ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -2829,9 +2829,13 @@ function lowerJsxElement(\n return lowerExpressionToTemporary(builder, expression);\n }\n } else if (exprPath.isJSXText()) {\n+ const text = trimJsxText(exprPath.node.value);\n+ if...
2023-10-09T23:35:47
huggingface/transformers
70e454c97368fcc5183066d86d37d1b493a72f8c
be6cf0848668852e3267d297211eb7e983e6c786
fix: XLNet: relative_positional_encoding computes on CPU every forward (#44782) fix: pass device to torch.arange in XLNet relative_positional_encoding
[ { "path": "src/transformers/models/xlnet/modeling_xlnet.py", "patch": "@@ -937,9 +937,9 @@ def positional_embedding(pos_seq, inv_freq, bsz=None):\n \n return pos_emb\n \n- def relative_positional_encoding(self, qlen, klen, bsz=None):\n+ def relative_positional_encoding(self, qlen, klen, bsz=No...
2026-03-19T13:16:31
ollama/ollama
9667c2282f477fb3ba947585c5417ffbc4654a43
a937a6831763ec0c7e214c3408d29ca7be9078ca
x/imagegen: add naive TeaCache and FP8 quantization support (#13683) TeaCache: - Timestep embedding similarity caching for diffusion models - Polynomial rescaling with configurable thresholds - Reduces transformer forward passes by ~30-50% FP8 quantization: - Support for FP8 quantized models (8-bit weights with scale...
[ { "path": "api/client.go", "patch": "@@ -165,7 +165,7 @@ func (c *Client) do(ctx context.Context, method, path string, reqData, respData\n \treturn nil\n }\n \n-const maxBufferSize = 512 * format.KiloByte\n+const maxBufferSize = 8 * format.MegaByte\n \n func (c *Client) stream(ctx context.Context, method, p...
2026-01-12T21:45:22
electron/electron
b3fd5eb2585aabb9182d6941c6da3f688fa3f5bb
9006f0e0c5a8cd529dabc0de822e9098e574c799
fix: drag and drop should copy on macOS (#35963)
[ { "path": "shell/browser/ui/drag_util_mac.mm", "patch": "@@ -20,7 +20,8 @@ @implementation DragDownloadItemSource\n \n - (NSDragOperation)draggingSession:(NSDraggingSession*)session\n sourceOperationMaskForDraggingContext:(NSDraggingContext)context {\n- return NSDragOperationEvery;\n+ return context =...
2022-10-11T16:19:59
vercel/next.js
dd958a13ab4a5f972be4b25be20030958d338346
1f941656ce10b6c5a3a5b778c3d0ede742a660e5
[error-overlay] remove footer message (#80169)
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/error-overlay-footer/error-overlay-footer.tsx", "patch": "@@ -3,18 +3,11 @@ import { styles as feedbackStyles } from './error-feedback/error-feedback'\n \n export type ErrorOverlayFooterProps = {\n errorCode: string | un...
2025-06-05T11:58:07
golang/go
fba83cdfc6c4818af5b773afa39e457d16a6db7a
a65078204c3c170514af58d325b3197c91be281c
cmd/compile/internal/ssa: correct MOVDnop handling for arm64 The extension-removing rules for ARM64 were moved to late lower in CL 568616. This means that the late lower pass can now generate MOVDreg, however the rules that potentially eliminate MOVDreg only exist in the earlier pass. Fix this by duplicating the MOVDr...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64latelower.rules", "patch": "@@ -85,3 +85,11 @@\n (MOVWUreg x:(MOVBUreg _)) => (MOVDreg x)\n (MOVWUreg x:(MOVHUreg _)) => (MOVDreg x)\n (MOVWUreg x:(MOVWUreg _)) => (MOVDreg x)\n+\n+// if a register move has only 1 use, just use the same register without emit...
2024-09-04T14:01:52
facebook/react
a1461016df10f2a5f3e0e6fb60b1820c55c1f5be
49d16ba7e561d8d401a75121637d5f7a1c002d2a
Improve MergeConsecutiveScopes Rewrites the core logic of MergeConsecutiveScopes to be easier to follow and fix bugs. We now do a two-pass approach: * First we iterate block instructions to identify scopes which can be merged, without actually merging the instructions themselves. * Then we iterate again, copyin...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/MergeConsecutiveScopes.ts", "patch": "@@ -5,6 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+import { CompilerError } from \"..\";\n import {\n IdentifierId,\n InstructionId,\n@@ -17,6 +18,8 @@ imp...
2023-10-09T23:15:30
huggingface/transformers
be6cf0848668852e3267d297211eb7e983e6c786
e0f69d3810242b055a673a8b95f89ab20c6ca6d6
Fix annotations reader for python 3.14 in `PreTrainedModel` (#44672) Fix annotations reader for python 3.14
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1218,7 +1218,7 @@ def __init_subclass__(cls, **kwargs):\n # otherwise we derive it from the annotated `config` attribute.\n \n # defined in this particular subclass\n- child_annotation = cls.__dict__.get(\"__annotations__\"...
2026-03-19T13:15:25
ollama/ollama
a937a6831763ec0c7e214c3408d29ca7be9078ca
2185112d8445d1e473a80f300d96865a62584c33
server: fix slow 'ollama rm' of models with many layers (#13680) RemoveLayers was calling Manifests() for each layer to check if it was shared with other models. For models with many blobs (e.g., tensor models), this caused O(N*M) manifest reads. Now loads manifests once and builds a set of in-use digests.
[ { "path": "server/manifest.go", "patch": "@@ -47,16 +47,40 @@ func (m *Manifest) Remove() error {\n }\n \n func (m *Manifest) RemoveLayers() error {\n-\tfor _, layer := range append(m.Layers, m.Config) {\n-\t\tif layer.Digest != \"\" {\n-\t\t\tif err := layer.Remove(); errors.Is(err, os.ErrNotExist) {\n-\t\...
2026-01-12T21:17:48
electron/electron
7493062555b9eb4e6cc47d628a4831c121192f1f
e02de74ff26465104d899761ad4bc869c8341186
test: add tests for valid electron module names (#35931) * test: add tests for valid electron module names https://github.com/electron/electron/pull/35915 landed without any tests, so this change adds some. This also documents why these variations exist. Signed-off-by: Darshan Sen <raisinten@gmail.com> * fi...
[ { "path": "lib/common/reset-search-paths.ts", "patch": "@@ -52,6 +52,13 @@ if (process.type === 'renderer') {\n }\n \n const originalResolveFilename = Module._resolveFilename;\n+\n+// 'electron/main', 'electron/renderer' and 'electron/common' are module aliases\n+// of the 'electron' module for TypeScript p...
2022-10-11T06:59:23
vercel/next.js
1f941656ce10b6c5a3a5b778c3d0ede742a660e5
e274d697ad96b9158633f0bbe37ca3c5ab25d91b
[turbopack] Remove uses of `Value<ReferenceType>` by making `ReferenceType` a TaskInput (#80130) Remove `Value::new` wrapper for `ReferenceType` parameters ### Why? The `Value<>` type is confusing and error prone, lets destroy it! As discussed over slack, `turbo_tasks::Value` type always implements `is_resolved` as...
[ { "path": "crates/next-api/src/instrumentation.rs", "patch": "@@ -75,7 +75,7 @@ impl InstrumentationEndpoint {\n .asset_context\n .process(\n *self.source,\n- Value::new(ReferenceType::Entry(EntryReferenceSubType::Instrumentation)),\n+ Re...
2025-06-05T09:11:31
facebook/react
49d16ba7e561d8d401a75121637d5f7a1c002d2a
529568c7dba7d463af35c5b5f6287649d5e41335
Repro for scope merging bug This is a repro for a bug that occurs when `enableMergeConsecutiveScopes` is enabled. Reminder that this feature is off by default and not enabled yet internally. I found this via #2121, where eliminating extraneous whitespace JSXText instructions meant that MergeConsecutiveScopes sta...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/merge-consecutive-scopes-objects.expect.md", "patch": "@@ -0,0 +1,138 @@\n+\n+## Input\n+\n+```javascript\n+// @enableMergeConsecutiveScopes\n+// This is a translation of the original merge-consecutive-scopes which uses p...
2023-10-09T23:15:29
huggingface/transformers
e0f69d3810242b055a673a8b95f89ab20c6ca6d6
cecacd374f575ad7ffe37dcd69a98cf00b551011
[CB] Better parametrization for compile (#44578) * Stacked commits * New config * good logged and silent deletion * nits * better config * review * Update example script * Test for new flag * Better benchmarking of CB * Rebase fixes * Avoid deleting an non-existing arg * No refering non existing var * Remo...
[ { "path": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py", "patch": "@@ -6,7 +6,7 @@\n \n \n SCRIPT_LOCATION = (Path(__file__).parent.parent.parent / \"examples/pytorch/continuous_batching.py\").as_posix()\n-COMMON_ARGS = \"--log-level WARNING --seed 0\".split()\n+COMMON_ARGS = \"--log-level...
2026-03-19T11:37:05
golang/go
e7cd4979bec709b6d9c7428912e66348405e2a51
282a14ec617ea663740026687d0ec5130066d75c
cmd: initial compiler+linker support for DWARF5 .debug_addr This patch rolls the main .debug_info DWARF section from version 4 to version 5, and also introduces machinery in the Go compiler and linker for taking advantage of the DWARF5 ".debug_addr" section for subprogram DIE "high" and "low" PC attributes. All functi...
[ { "path": "src/cmd/compile/internal/gc/compile.go", "patch": "@@ -114,6 +114,8 @@ func prepareFunc(fn *ir.Func) {\n \tir.CurFunc = fn\n \twalk.Walk(fn)\n \tir.CurFunc = nil // enforce no further uses of CurFunc\n+\n+\tbase.Ctxt.DwTextCount++\n }\n \n // compileFunctions compiles all functions in compilequeu...
2024-12-11T18:15:27
electron/electron
ebb866e63d90fc44168f2b9c97ea2378d4c17831
ef00a2a1dade1e76be39d77e236d2926ddcc9a80
fix: override `content::ContentMainDelegate::CreateContentClient()` (#35932)
[ { "path": "shell/app/electron_main_delegate.cc", "patch": "@@ -317,9 +317,6 @@ absl::optional<int> ElectronMainDelegate::BasicStartupComplete() {\n ::switches::kDisableGpuMemoryBufferCompositorResources);\n #endif\n \n- content_client_ = std::make_unique<ElectronContentClient>();\n- SetContentClient...
2022-10-10T14:48:44
ollama/ollama
361d6c16c23b60f84eb1d2134914610c0ae5836b
7e2496e88e916f8a4f08b21b3f2c472258fed629
x/imagegen/transfer: fix timeout and progress reporting (#13679) Removes 5-minute HTTP client timeout that caused "context deadline exceeded" errors on large file downloads. Stall detection (10s) already handles unresponsive connections. Fixes progress bar total going down on resume by calculating total from all blob...
[ { "path": "x/imagegen/transfer/download.go", "patch": "@@ -45,24 +45,33 @@ func download(ctx context.Context, opts DownloadOptions) error {\n \t\treturn nil\n \t}\n \n-\t// Filter existing\n-\tvar blobs []Blob\n+\t// Calculate total from all blobs (for accurate progress reporting on resume)\n \tvar total in...
2026-01-11T23:33:53
facebook/react
683a197a899b2914c80478b389132a8081e4eb24
b55cf78a4d23de06b96a3a5025ad86e4961baa96
Manually revert #2127 (allow mutating context in callbacks) #2127 introduced a special type for the result of `useContext()` that was sort of ref-like. The intent was to allow code like this: ``` function Foo() { const cx = useContext(...); function onEvent() { cx.foo = true; }; return <Bar onEvent={on...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Globals.ts", "patch": "@@ -9,7 +9,6 @@ import { Effect, ValueKind } from \"./HIR\";\n import {\n BUILTIN_SHAPES,\n BuiltInArrayId,\n- BuiltInContextId,\n BuiltInUseRefId,\n BuiltInUseStateId,\n ShapeRegistry,\n@@ -241,7 +240,7 @@ cons...
2023-10-09T22:21:12
vercel/next.js
e6e002d92c249f15aeb244d0abd162b7459aa190
46fa52c54641a94b9ae9fbaebdb9346b2816c3af
[turbopack] Remove uses of `Value<ClientContextType>` by making `ClientContextType` a TaskInput (#80127) Refactor ClientContextType to use TaskInput instead of Value wrapper ### Why? The `Value<>` type is confusing and error prone, lets destroy it! As discussed over slack, `turbo_tasks::Value` type always implements...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -207,7 +207,7 @@ impl AppProject {\n self.project().project_path(),\n self.project().execution_context(),\n self.project().client_compile_time_info().environment(),\n- Value::new(self.client_ty().owned().awai...
2025-06-05T07:23:09
huggingface/transformers
cecacd374f575ad7ffe37dcd69a98cf00b551011
529504b2fa98970c6c44d3fafaeb07a39c40e7ea
Fix `KeyError` when patching mistral regex (#43376) * Avoid multiple fix_mistral_regex (KeyError) * add regression test * style * fix --------- Co-authored-by: Leonardo Emili <lemili@apple.com> Co-authored-by: vasqu <antonprogamer@gmail.com>
[ { "path": "src/transformers/tokenization_utils_tokenizers.py", "patch": "@@ -456,7 +456,7 @@ def __init__(self, *args, **kwargs):\n self._tokenizer,\n self.init_kwargs.get(\"name_or_path\", None),\n init_kwargs=self.init_kwargs,\n- fix_mistral_r...
2026-03-19T07:55:40
golang/go
282a14ec617ea663740026687d0ec5130066d75c
31b800abe6a599f001a545d98437b9d821cef5c2
cmd/internal/objabi,cmd/link/internal/sym: add SDWARFADDR symbol type Add a new symbol type: SDWARFADDR. This kind of symbol stores content to be added to the DWARF .debug_addr section (new with DWARF5). At the moment these symbols are created only in the linker, but it's not hard to imagine other implementations in w...
[ { "path": "src/cmd/internal/objabi/symkind.go", "patch": "@@ -70,6 +70,7 @@ const (\n \tSDWARFRANGE\n \tSDWARFLOC\n \tSDWARFLINES\n+\tSDWARFADDR\n \t// Coverage instrumentation counter for libfuzzer.\n \tSLIBFUZZER_8BIT_COUNTER\n \t// Coverage instrumentation counter, aux variable for cmd/cover", "addit...
2024-12-06T00:01:22
ollama/ollama
7e2496e88e916f8a4f08b21b3f2c472258fed629
5b84e29882021dd80ecd858a675f80540d9b0627
Fix cmake install command in README (#13678) Update installation command for MLX component in README.
[ { "path": "x/README.md", "patch": "@@ -9,7 +9,7 @@ Support is currently limited to MacOS and Linux with CUDA GPUs. We're looking t\n ```\n cmake --preset MLX\n cmake --build --preset MLX --parallel\n-cmake --install --component MLX\n+cmake --install build --component MLX\n go build -tags mlx .\n ```\n ", ...
2026-01-11T21:16:42
electron/electron
1fe21ff712a336ead8564b0d2f6a2b91238d7e7c
a072f06168711bd0abc289ca3df0bd139c4f7fed
fix: expose the built-in electron module via the ESM loader (#35930)
[ { "path": "patches/node/.patches", "patch": "@@ -51,3 +51,4 @@ fixup_for_error_declaration_shadows_a_local_variable.patch\n fixup_for_wc_98-compat-extra-semi.patch\n drop_deserializerequest_move_constructor_for_c_20_compat.patch\n fix_parallel_test-v8-stats.patch\n+fix_expose_the_built-in_electron_module_vi...
2022-10-10T10:02:30
huggingface/transformers
529504b2fa98970c6c44d3fafaeb07a39c40e7ea
16a5b0936dcaae6efbc03ab1a4fd98dc324bfb9e
Correct code block formatting in weightconverter.md (#44839) Fix formatting of code block in weightconverter.md
[ { "path": "docs/source/en/weightconverter.md", "patch": "@@ -66,7 +66,7 @@ model.layers.0.self_attn.k_proj.weight → model.layers.0.self_attn.k_proj.wei\n model.layers.0.mlp.gate_proj.weight → model.layers.0.mlp.gate_proj.weight\n model.layers.0.mlp.up_proj.weight → model.layers.0.mlp.up_proj.w...
2026-03-19T06:59:32
facebook/react
fd87c9b9e13d06983194bc19f641a2caf2d12b50
2b417e2a5203f108ab3a5248332e5cd8dd2f8700
[patch] Bug in deriveMinimalDeps Found when enabling Forget on Webamp
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/DeriveMinimalDependencies.ts", "patch": "@@ -472,17 +472,10 @@ function addSubtreeIntersection(\n suggestions: null,\n });\n \n- otherProperties.forEach((properties) =>\n- properties.forEach((node, _) =>\n- CompilerErro...
2023-10-06T21:37:57
golang/go
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
ollama/ollama
5b84e29882021dd80ecd858a675f80540d9b0627
7cc2a653f2634389403b4af4b07fc5c801a81604
docs: fix troubleshooting page (#13674) Updated the link in the log output description to point to the correct troubleshooting guide format.
[ { "path": ".github/ISSUE_TEMPLATE/10_bug_report.yml", "patch": "@@ -13,7 +13,7 @@ body:\n id: logs\n attributes:\n label: Relevant log output\n- description: Please copy and paste any relevant log output. See [Troubleshooting Guide](https://github.com/ollama/ollama/blob/main/docs/troubles...
2026-01-11T08:58:07
electron/electron
8bfbb251cc76a722cd9a1c298ca4e2d15f47cd33
3f4c4a4470d7eb089f53f947bd40f3eac4cc6c3f
fix: add missing #include "base/cxx17_backports.h" (#35945)
[ { "path": "shell/browser/ui/autofill_popup.cc", "patch": "@@ -6,6 +6,7 @@\n #include <memory>\n #include <vector>\n \n+#include \"base/cxx17_backports.h\"\n #include \"base/feature_list.h\"\n #include \"base/i18n/rtl.h\"\n #include \"components/autofill/core/common/autofill_features.h\"", "additions": 1...
2022-10-10T10:00:56
vercel/next.js
e9f70d0fdb67f9a024c84a2a542684c72be8e12c
e2ba7905bd0e3891c804dd9d7d347f808b480e17
docs: fix grammar in Code of Conduct section ('them' → 'it') (#80181) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: -...
[ { "path": "packages/next/README.md", "patch": "@@ -31,7 +31,7 @@ The Next.js community can be found on [GitHub Discussions](https://github.com/ve\n \n To chat with other community members you can join the Next.js [Discord](https://nextjs.org/discord) server.\n \n-Do note that our [Code of Conduct](https://g...
2025-06-05T06:41:56
huggingface/transformers
16a5b0936dcaae6efbc03ab1a4fd98dc324bfb9e
c55f65056becad6df5f7eef7ce74ac0811fdfac6
deepseek_v2, deepseek_v3, and modernbert fix for having incorrect tokenizer class on the hub (#44801) * deepseek and modernbert * deepseek v2
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -347,13 +347,16 @@\n \"deepseek_vl\",\n \"deepseek_vl_v2\",\n \"deepseek_vl_hybrid\",\n+ \"deepseek_v2\",\n+ \"deepseek_v3\",\n \"fuyu\",\n \"hyperclovax_vlm\",\n \"internlm2\",\n \"janus\",\n \...
2026-03-18T21:21:04
facebook/react
2b417e2a5203f108ab3a5248332e5cd8dd2f8700
ed9ea81e4a73b02bf138508b4c4ec6acf71b9676
Playground uses new pragma parser, shows config being used The playground now uses the new pragma parser so it's guaranteed to use the right defaults and have consistent parsing with snap/sprout. In addition, we now emit a debug event from the compiler which contains pretty-printed environment config, making it ea...
[ { "path": "compiler/apps/playground/components/Editor/index.tsx", "patch": "@@ -11,6 +11,7 @@ import * as t from \"@babel/types\";\n import {\n Effect,\n Hook,\n+ parseConfigPragma,\n printHIR,\n printReactiveFunction,\n run,\n@@ -108,56 +109,6 @@ const COMMON_HOOKS: Array<[string, Hook]> = [\n ...
2023-10-05T18:06:56
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
electron/electron
e31c96a5647a497e966582479167d57fb8a9ea0c
faafcc7f873f535a3637e54635f262f237071059
fix: only override valid electron module names (#35915) Fixes #33014
[ { "path": "lib/common/reset-search-paths.ts", "patch": "@@ -52,8 +52,9 @@ if (process.type === 'renderer') {\n }\n \n const originalResolveFilename = Module._resolveFilename;\n+const electronModuleNames = new Set(['electron', 'electron/main', 'electron/renderer', 'electron/common']);\n Module._resolveFilena...
2022-10-06T10:14:03
vercel/next.js
e2ba7905bd0e3891c804dd9d7d347f808b480e17
d31de7732fbe6f27cf5c7afc485d2bb6dd9c8379
small typo fix (#80171) `metadat` -> `metadata` Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "docs/01-app/05-api-reference/04-functions/generate-metadata.mdx", "patch": "@@ -102,7 +102,7 @@ export default function Page({ params, searchParams }) {}\n > - The `metadata` object and `generateMetadata` function exports are **only supported in Server Components**.\n > - You cannot export both t...
2025-06-05T06:41:25
facebook/react
546178f9109424f6a0176ea8702a7620c4417569
16619f106ab5ba8e6aca19d55be46cce22e4a7ff
`react-dom/server-rendering-stub`: restore experimental prefix for `useFormState` and `useFormStatus` (#27470) in #27461 the experimental prefix was added back for `useFormState` and `useFormStatus` in react-dom. However these functions are also exported from the server rendering stub too and when using the stub wit...
[ { "path": "packages/react-dom/server-rendering-stub.js", "patch": "@@ -28,3 +28,30 @@ export {\n useFormState,\n unstable_batchedUpdates,\n } from './src/server/ReactDOMServerRenderingStub';\n+\n+import type {FormStatus} from 'react-dom-bindings/src/shared/ReactDOMFormActions';\n+import {useFormStatus, ...
2023-10-05T15:53:14
huggingface/transformers
c55f65056becad6df5f7eef7ce74ac0811fdfac6
21950930a657cdc446188d38b6979b90513bab41
[Model] Add PP-OCRv5_server_rec and PP-OCRv5_mobile_rec models Support (#44808) * init * fix * add image processor test * add mobile_rec * fix * fix * fix code style * add mobile_rec * fix * fix toctree * update * cleanup inits and docs etc * dang * make separate auto model for text recognition --------...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1276,8 +1276,12 @@\n title: PP-DocLayoutV3\n - local: model_doc/pp_ocrv5_mobile_det\n title: PP-OCRv5_mobile_det\n+ - local: model_doc/pp_ocrv5_mobile_rec\n+ title: PP-OCRv5_mobile_rec\n - local: model_doc/pp_ocrv...
2026-03-18T20:11:28
ollama/ollama
33ee7168ba1e16c813b52dc2c9417efa1e2e9f20
34d0c55ea57e24d04b57e792f91a91eaa18ad9ce
Add experimental MLX backend and engine with imagegen support (#13648) * WIP - MLX backend with gemma3 * MLX: add cmake and go tag build toggles To build the new MLX backend code: cmake --preset MLX cmake --build --preset MLX --parallel cmake --install build --component MLX go build -tags mlx . Note: the ma...
[ { "path": "CMakeLists.txt", "patch": "@@ -2,6 +2,22 @@ cmake_minimum_required(VERSION 3.21)\n \n project(Ollama C CXX)\n \n+# Handle cross-compilation on macOS: when CMAKE_OSX_ARCHITECTURES is set to a\n+# single architecture different from the host, override CMAKE_SYSTEM_PROCESSOR\n+# to match. This is nec...
2026-01-09T00:18:59
electron/electron
a6b6816beca9433a21e76c5dcd877de8bbf02598
f916ce2c494cfc8ec15b9df4d188611999e662c0
build: clean up patch linting errors (#35917)
[ { "path": "script/lint.js", "patch": "@@ -181,41 +181,56 @@ const LINTERS = [{\n const patchesConfig = path.resolve(patchesDir, 'config.json');\n // If the config does not exist, that's a problem\n if (!fs.existsSync(patchesConfig)) {\n+ console.error(`Patches config file: \"${patchesConfig...
2022-10-05T17:34:53
vercel/next.js
a094280865ffbd6acffe4fb84db7eb9590b16241
caa54e46b0ff96077529b037f294a1ab1091890c
remove unique metadata prop from initial RSC payload (#79388) This value is used as a key to re-mount `head` on subsequent client navigations, but as far as I can tell, it's not needed for the initial RSC payload that seeds these pages. In its current form, these random IDs get serialized as part of the RSC payload, ...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -521,7 +521,6 @@ async function generateDynamicRSCPayload(\n />\n {/* Adding requestId as react key to make metadata remount for each render */}\n <ViewportTree key={getFlightViewportKey(requestI...
2025-06-04T23:31:58
facebook/react
0fba3ecf73900a1b54ed6d3b0617462ac92d2fef
6f132439578ee11e04b41a278df51c52b0dc8563
[Fizz] Reset error component stack and fix error messages (#27456) The way we collect component stacks right now are pretty fragile. We expect that we'll call captureBoundaryErrorDetailsDev whenever an error happens. That resets lastBoundaryErrorComponentStackDev to null but if we don't, it just lingers and we do...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzStaticBrowser-test.js", "patch": "@@ -981,4 +981,149 @@ describe('ReactDOMFizzStaticBrowser', () => {\n \n expect(getVisibleChildren(container)).toEqual(<div>Hello</div>);\n });\n+\n+ // @gate enablePostpone\n+ it('errors if the replay does not...
2023-10-04T20:48:12
huggingface/transformers
21950930a657cdc446188d38b6979b90513bab41
2513237cbee84bae381c56c672b95b0a221ba51b
Add `Jina-Embeddings-V3` Model (#44251) * Added Model Documentation. * Added conversion_mapping weight renamings * Added Auto Mappings. * init * Modular jina_embeddings_v3 * modular -> modeling + config * __init__.py * Created folder for tests * Added documentation for the jina-embeddings-v3 Model * Tests * ...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -632,6 +632,8 @@\n title: Jamba\n - local: model_doc/jetmoe\n title: JetMoe\n+ - local: model_doc/jina_embeddings_v3\n+ title: jina_embeddings_v3\n - local: model_doc/led\n title: LED\n - local: model...
2026-03-18T19:05:49
ollama/ollama
626af2d80973270c4d59b8df7153ac47ad67ed7b
76912c062aaa61652f50532fd74273e76b4979f3
template: fix args-as-json rendering (#13636) In #13525, I accidentally broke templates' ability to automatically render tool call function arguments as JSON. We do need these to be proper maps because we need templates to be able to call range, which can't be done on custom types.
[ { "path": "template/template.go", "patch": "@@ -381,6 +381,28 @@ func (t templateTools) String() string {\n \treturn string(bts)\n }\n \n+// templateArgs is a map type with JSON string output for templates.\n+type templateArgs map[string]any\n+\n+func (t templateArgs) String() string {\n+\tif t == nil {\n+\...
2026-01-07T02:33:57
electron/electron
ff0517be3e00b7a1a80fb56bd97d12c26d620f7f
d8e037e42670e74775d13128c8add3db40d72914
docs: update bluetooth fiddle example event name to trigger correct event (#35894) * Fix event type spelling for bluetooth fiddle example * docs: Fix event type spelling for bluetooth documentation fiddle example
[ { "path": "docs/fiddles/features/web-bluetooth/preload.js", "patch": "@@ -2,5 +2,5 @@ const { contextBridge, ipcRenderer } = require('electron')\n \n contextBridge.exposeInMainWorld('electronAPI', {\n bluetoothPairingRequest: (callback) => ipcRenderer.on('bluetooth-pairing-request', callback),\n- bluetoo...
2022-10-04T19:31:02
vercel/next.js
61729da4e7721566b9a53f28463e9ec7332de428
69ded21f6cd69600ea5dd86a5948de2df693becb
[metadata] fix nonce prop for hoist script (#80174) ### What Only render `nonce` prop on icon hoist script when it's presented
[ { "path": "packages/next/src/server/app-render/metadata-insertion/create-server-inserted-metadata.tsx", "patch": "@@ -15,6 +15,6 @@ export function createServerInsertedMetadata(nonce: string | undefined) {\n }\n \n inserted = true\n- return `<script nonce=\"${nonce}\">${REINSERT_ICON_SCRIPT}</scr...
2025-06-04T20:01:58
huggingface/transformers
2513237cbee84bae381c56c672b95b0a221ba51b
981ca7bc26b0d5a5cf4042f0158f0caafe2e4726
feat(ci): added a network debug report (#44636) * feat(ci): added a network debug report * xdist-aware for parallel runs * fix fmt * moved the hooks to tests/utils/test_network_logging.py * forgot to add the new file * use plugin approach * rename env variables * narrow public API * fix the env name in circlec...
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -30,6 +30,7 @@\n # will be adjust in `CircleCIJob.to_dict`.\n \"RUN_FLAKY\": True,\n \"DISABLE_SAFETENSORS_CONVERSION\": True,\n+ \"NETWORK_DEBUG_REPORT\": True,\n }\n # Disable the use of {\"s\": None} as the output is way too lon...
2026-03-18T18:34:50
facebook/react
ca237d6f0ab986e799f192224d3066f76d66b73b
44d40a077ae91bbf5e18a95b90d8a15c2ec978ca
Add back temporary `experimental_` aliases for Server Actions APIs (#27461) This adds back the `experimental_`-prefixed Server Actions APIs to the experimental builds only, so that apps that use those don't immediately break when upgrading. The APIs will log a warning to encourage people to move to the unprefixed v...
[ { "path": "packages/react-dom/index.experimental.js", "patch": "@@ -30,3 +30,30 @@ export {\n preinitModule,\n version,\n } from './src/client/ReactDOM';\n+\n+import type {FormStatus} from 'react-dom-bindings/src/shared/ReactDOMFormActions';\n+import {useFormStatus, useFormState} from './src/client/Reac...
2023-10-04T19:58:08
ollama/ollama
6c3faafed27a1b7c3b0b4261f97fa1f82f51408e
e51dead6363e941b480f5bf1270254db7e175083
olmo3: fix flaky test (#13629) I introduced this in <https://github.com/ollama/ollama/pull/13525>
[ { "path": "model/renderers/olmo3_test.go", "patch": "@@ -227,9 +227,9 @@ func TestOlmo3Renderer(t *testing.T) {\n \t\t\t\t\t\t\tID: \"call_1\",\n \t\t\t\t\t\t\tFunction: api.ToolCallFunction{\n \t\t\t\t\t\t\t\tName: \"book_flight\",\n-\t\t\t\t\t\t\t\tArguments: testArgs(map[string]any{\n-\t\t\t\t\t\t\t\t\t\...
2026-01-06T06:37:20
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
electron/electron
2cda1443fce4dbb39393dffc3636d1214ab13f86
12eade752d38093f9b6abdc6a0b82f64176c4618
fix: ensure mas builds of the same application can use safestorage (#35864) feat: ensure mas builds of the same application can use safestorage This change ensures that MAS builds of applications with an equivilant darwin build that share the same name do not fight over access to the same Safe Storage account. S...
[ { "path": "patches/chromium/.patches", "patch": "@@ -120,3 +120,4 @@ fix_crash_loading_non-standard_schemes_in_iframes.patch\n disable_optimization_guide_for_preconnect_feature.patch\n fix_return_v8_value_from_localframe_requestexecutescript.patch\n create_browser_v8_snapshot_file_name_fuse.patch\n+feat_ens...
2022-10-04T06:36:17
huggingface/transformers
d00640b6e60679c117bc8530a25bb917b08c8573
24a4dc22b986a35fa5920bb080fddea49f4299d3
Fix unexpected `position_ids` keys when loading OwlViT models (#44508) * Fix unexpected `position_ids` keys when loading OwlViT models Older OwlViT checkpoints saved `position_ids` as buffers in the text and vision embedding modules. These tensors are simple integer ranges and are now recomputed dynamically during in...
[ { "path": "src/transformers/models/owlv2/modeling_owlv2.py", "patch": "@@ -539,6 +539,10 @@ class Owlv2PreTrainedModel(PreTrainedModel):\n \"hidden_states\": Owlv2EncoderLayer,\n \"attentions\": Owlv2Attention,\n }\n+ _keys_to_ignore_on_load_unexpected = [\n+ r\".*text_model\\....
2026-03-18T16:27:02
facebook/react
44d40a077ae91bbf5e18a95b90d8a15c2ec978ca
bfefb228422f7264a29b3a6b98ec95e05925e80e
Remove prefix from `formState` option (#27460) `useFormState` is now in canary.
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -173,7 +173,7 @@ app.all('/', async function (req, res, next) {\n res.set('Content-type', 'text/html');\n const {pipe} = renderToPipeableStream(React.createElement(Root), {\n bootstrapScripts: mainJSChunks,\n- experimental...
2023-10-04T19:17:37
ollama/ollama
d087e46bd193b1101cef13e28841185a465a077f
37f6f3af24ad567e2160f79545f1a10a207467a2
docs/capabilities/vision: fix curl related code snippet (#13615)
[ { "path": "docs/capabilities/vision.mdx", "patch": "@@ -36,7 +36,6 @@ Provide an `images` array. SDKs accept file paths, URLs or raw bytes while the R\n }],\n \"stream\": false\n }'\n- \"\n ```\n </Tab>\n <Tab title=\"Python\">", "additions": 0, "deletions": 1, "la...
2026-01-03T22:27:46
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
electron/electron
c76a931e202dbc65dd53a63ed03dc23f63bec38b
16f459228b5c083be6aebe8b3d3eb7a04cb43cc2
fix: `TryCatch` scope in node_bindings (#35850) fix: TryCatch scope in node_bindings
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -492,19 +492,22 @@ node::Environment* NodeBindings::CreateEnvironment(\n flags |= node::EnvironmentFlags::kNoStartDebugSignalHandler;\n }\n \n- v8::TryCatch try_catch(isolate);\n- env = node::CreateEnvironment(\n- isolate_data_, context, a...
2022-10-04T06:35:20
huggingface/transformers
24a4dc22b986a35fa5920bb080fddea49f4299d3
b49249811a8dd483e52587b4349073e6317cea1b
Update more modular examples (#44834) fix
[ { "path": "examples/modular-transformers/configuration_new_model.py", "patch": "@@ -45,7 +45,6 @@ class NewModelConfig(PreTrainedConfig):\n \"layers\": ([\"hidden_states\", \"attention_mask\"], [\"hidden_states\"]),\n \"norm\": ([\"hidden_states\"], [\"hidden_states\"]),\n }\n-\n voc...
2026-03-18T17:11:51
facebook/react
bfefb228422f7264a29b3a6b98ec95e05925e80e
88d56b8e818d0c48eb6642303169c1fadeb99d59
Upgrade Server Actions to canary (#27459) Upgrades the stability of Server Actions from experimental to canary. - Turns on enableAsyncActions and enableFormActions - Removes "experimental_" prefix from useOptimistic, useFormStatus, and useFormState
[ { "path": "fixtures/flight-esm/src/Button.js", "patch": "@@ -1,7 +1,7 @@\n 'use client';\n \n import * as React from 'react';\n-import {experimental_useFormStatus as useFormStatus} from 'react-dom';\n+import {useFormStatus} from 'react-dom';\n import ErrorBoundary from './ErrorBoundary.js';\n \n const h = R...
2023-10-04T18:51:36
ollama/ollama
37f6f3af24ad567e2160f79545f1a10a207467a2
e1bdc23dd27cc615ae5ab2334429c05e241d3a02
server: return error when embedding contains NaN or Inf values (#13599) The normalize function now checks for NaN and Inf values in the embedding vector before processing. This prevents JSON encoding failures when models produce invalid floating-point values. Fixes #13572 Signed-off-by: majiayu000 <1835304752@qq.com...
[ { "path": "server/routes.go", "patch": "@@ -752,9 +752,15 @@ func (s *Server) EmbedHandler(c *gin.Context) {\n \t\t\t\treturn err\n \t\t\t}\n \t\t\t// TODO: this first normalization should be done by the model\n-\t\t\tembedding = normalize(embedding)\n+\t\t\tembedding, err = normalize(embedding)\n+\t\t\tif ...
2026-01-03T07:20:12
vercel/next.js
5736391cf6b697cf37cb5f72354389525eb7b851
16d9f70203c4a90284c5cff057282c052376b6df
Turbopack Build: Fix metadata dynamic force-dynamic (#80167) ## What? `export const dynamic` was not being re-exported when creating the route handler wrapper so it wasn't picked up during builds, causing the tests to fail. Added the re-exports.
[ { "path": "crates/next-core/src/next_app/metadata/route.rs", "patch": "@@ -239,6 +239,8 @@ async fn dynamic_text_route_source(path: Vc<FileSystemPath>) -> Result<Vc<Box<dy\n }},\n }})\n }}\n+\n+ export * from {resource_path}\n \"#,\n resou...
2025-06-04T17:42:19
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
electron/electron
dfb8a2d804e4361146052028f1ab88c6b60de06f
998a0820d991aa494c6156583d7b92555fdd51be
build: fix deps workflow tag comparison (#35830)
[ { "path": ".github/workflows/release_dependency_versions.yml", "patch": "@@ -14,7 +14,7 @@ jobs:\n - uses: actions/checkout@v3\n - name: Check Tag\n run: |\n- if [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+\\.0\\.0$ ]]; then\n+ if [[ ${{ github.event.release.tag_name }} =~ ^v...
2022-09-27T16:24:11
huggingface/transformers
b49249811a8dd483e52587b4349073e6317cea1b
4ec84a022d2ba1efb2cbbdc9eb415e4190113d22
Fix and re-run modular converter on examples (#44833) * fix and rerun modular * fix * fix
[ { "path": "examples/modular-transformers/configuration_duplicated_method.py", "patch": "@@ -5,79 +5,18 @@\n # modular_duplicated_method.py file directly. One of our CI enforces this.\n # 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨�...
2026-03-18T17:00:41
ollama/ollama
e1bdc23dd27cc615ae5ab2334429c05e241d3a02
2e78653ff99536885ab6bbbc00f20dd34d499102
docs: fix tool name mismatch and trailing commas in api.md example (#13559) The tool calling example used "get_temperature" for tool_calls but defined the tool as "get_weather". Also removed trailing commas that made the JSON invalid. Fixes #13031
[ { "path": "docs/api.md", "patch": "@@ -895,19 +895,19 @@ curl http://localhost:11434/api/chat -d '{\n \"tool_calls\": [\n {\n \"function\": {\n- \"name\": \"get_temperature\",\n+ \"name\": \"get_weather\",\n \"arguments\": {\n \"city\":...
2026-01-03T07:14:53
facebook/react
1ec1a0ceb84de690e50dfd45fe476302ea954c59
3f8831fb5c7e873993ed53a77189a22bcc7395d6
[fix] JSXElement identifiers now included in lambda capture deps --- `gatherCapturedDeps` previously did not visit JSXElements, so Forget did not read any local JSX identifiers as dependencies (in lambdas)
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -3457,78 +3457,141 @@ function gatherCapturedDeps(\n to: componentScope,\n });\n \n- function visit(path: NodePath<Expression>): void {\n- // Babel has a bug where it doesn't visit the LHS of an\n- // Assi...
2023-10-04T18:01:34
vercel/next.js
840a9ed4e00e5609485b76c3bc9658a9df730798
6d39c38d79eed42641c04cd7424e3e3beb4a473c
Turbopack: Fix sst filter handling and order for meta files (#80147) ### What? * fixes a bug where it crashes with `Unable to open static sorted file 00000286.sst` after a compaction which leaves a partial meta file. meta files need to be handled in reverse order as higher sequence numbers override lower ones * fix...
[ { "path": "turbopack/crates/turbo-persistence/src/db.rs", "patch": "@@ -333,7 +333,7 @@ impl TurboPersistence {\n .collect::<Result<Vec<MetaFile>>>()?;\n \n let mut sst_filter = SstFilter::new();\n- for meta_file in meta_files.iter_mut() {\n+ for meta_file in meta_files.ite...
2025-06-04T17:09:52
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
electron/electron
998a0820d991aa494c6156583d7b92555fdd51be
621baa7bb7b1bb6a0dfa73e0ddb8cdc52848f8f8
fix: set display_id in desktop capturer on Linux (#33861) Previously, display_id was an empty string, pending Chrome support for sharing individual screens. Now that this has been added, it is desirable to have this property set correctly. Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/api/electron_api_desktop_capturer.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/browser/api/electron_api_desktop_capturer.h\"\n \n+#include <map>\n #include <memory>\n #include <utility>\n #include <vector>\n@@ -24,12 +25,125 @@\n #include \"third_party/webrtc/modules/desktop...
2022-09-27T15:40:44
huggingface/transformers
779cd2d6923c9d264d46136e90c58f8bafade6ab
c87deb21b9a4c466291de154ff0099aaf8014439
Fix loading issue in Sam3 (#44831) fix loading issue
[ { "path": "src/transformers/models/sam3_tracker_video/modeling_sam3_tracker_video.py", "patch": "@@ -683,7 +683,7 @@ class Sam3TrackerVideoSegmentationOutput(ModelOutput):\n @auto_docstring\n class Sam3TrackerVideoPreTrainedModel(PreTrainedModel):\n config_class = Sam3TrackerVideoConfig\n- base_model...
2026-03-18T15:36:01
ollama/ollama
2e78653ff99536885ab6bbbc00f20dd34d499102
f5f74e12c19f2a4e19119dd962c0845e37dbb74e
app/ui: add swift syntax highlighting support (#13574) Fixes #13476 Signed-off-by: majiayu000 <1835304752@qq.com>
[ { "path": "app/ui/app/src/lib/highlighter.ts", "patch": "@@ -147,6 +147,7 @@ export const highlighterPromise = createHighlighter({\n \"c\",\n \"cpp\",\n \"sql\",\n+ \"swift\",\n \"yaml\",\n \"markdown\",\n ],", "additions": 1, "deletions": 0, "language": "Unknown" } ]
2026-01-03T07:12:08
facebook/react
3f8831fb5c7e873993ed53a77189a22bcc7395d6
05d620521b4f628312020dec50eb5f36d085b32d
[snap][QoL] Pragma for implicit debug mode --- Implements popular feature request ✨ per feedback from a majority of snap users. **Add `@debug` to the first line of your `testfilter.txt` file to opt into implicit debug mode**, in which debug logging is enabled anytime filter mode is on + only one fixture file is...
[ { "path": "compiler/packages/fixture-test-utils/src/fixture-utils.ts", "patch": "@@ -1,16 +1,18 @@\n import fs from \"fs/promises\";\n import glob from \"glob\";\n-import invariant from \"invariant\";\n import path from \"path\";\n import { FILTER_PATH, FIXTURES_PATH } from \"./constants\";\n \n+const KIND_...
2023-10-04T18:01:33
vercel/next.js
6d39c38d79eed42641c04cd7424e3e3beb4a473c
13b8d58a7600a74e586cec1e68dfb126bca49fbc
Add a `regions` property to the Functions Config Manifest file (#80104) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ...
[ { "path": ".changeset/empty-paths-check.md", "patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Add `regions` to the function config manifest file", "additions": 5, "deletions": 0, "language": "Markdown" }, { "path": "packages/next/src/build/index.ts", "patch": "@@ -531,6 +53...
2025-06-04T16:35:05