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 |
|---|---|---|---|---|---|
huggingface/transformers | 421c7f6248e28d24d84ee000252a1e71fbc24917 | a2da4b16633ef9c2679b3a9e300b938851c6b80a | [core] 🚨 Completely remove cache positions (#44181)
* fully remove from the mask api
* fully remove from cache api
* remove it from llama + modulars
* remove them from all modulars of llama descendants
* reapply all those modualrs
* a few more
* style
* style
* better get_seq_length
* fix signatures
* fix d... | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -1,6 +1,5 @@\n from abc import ABC, abstractmethod\n from collections.abc import Iterable\n-from typing import Any\n \n import torch\n \n@@ -42,11 +41,11 @@ def lazy_initialization(self, key_states: torch.Tensor, value_states: torch.Tens\n \n @ab... | 2026-03-04T18:08:40 |
electron/electron | ad2b1fee59c2e4352b0c5664f72c0067a2ef4d7f | 35ff95d3c71849ac97ced178a2330b9d4651f250 | fix: re-enable HKDF crypto functionality (#34767)
* fix: re-enable HKDF crypto functionality
* chore: update patches
Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> | [
{
"path": "patches/node/fix_crypto_tests_to_run_with_bssl.patch",
"patch": "@@ -537,6 +537,19 @@ index af2146982c7a3bf7bd7527f44e4b17a3b605026e..f6b91f675cfea367c608892dee078b56\n \n // Non-XOF hash functions should accept valid outputLength options as well.\n assert.strictEqual(crypto.createHash('sh... | 2022-06-29T12:53:57 |
ollama/ollama | 734b57da0e04d363e70ea47a3a6f372c0b9dac82 | 0469861d9dfdec71fe895a0d4672056dfe8af54f | ggml: Remove allocation status reporting
For each memory allocation we report the size of the (attempted)
allocation and whether it succeeded or failed. The latter status
reporting proved to be not that useful in practice as systems
such as Windows can automatically overflow from VRAM into RAM,
resultings in successfu... | [
{
"path": "llama/patches/0014-graph-memory-reporting-on-failure.patch",
"patch": "@@ -4,48 +4,38 @@ Date: Fri, 18 Apr 2025 15:58:19 -0700\n Subject: [PATCH] graph memory reporting on failure\n \n ---\n- ggml/include/ggml-alloc.h | 6 ++++++\n- ggml/include/ggml-backend.h | 6 ++++++\n- ggml/src/ggml-alloc... | 2025-09-23T00:27:03 |
vercel/next.js | 04bfbdab6e299ba049fb98ec96b57986554e8ab4 | e9e30ee743ec91910bcbf56f75a14b9a83a1729e | test: fix more Runtime/Recoverable Error flakiness in HMR (#79371)
Follow-up to #79254, there's one more test flaking with the same issue.
I pulled the label-ignoring logic out into
```ts
expect(browser).toDisplayRedbox('...', { label: false })
```
so that it's easy to find these later when we fix the underlying is... | [
{
"path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts",
"patch": "@@ -1279,19 +1279,24 @@ describe('ReactRefreshLogBox app', () => {\n )\n const { session, browser } = sandbox\n \n- await expect(browser).toDisplayRedbox(`\n+ await expect(browser).toDisplayRedbox(\n+ `\n ... | 2025-05-19T14:46:47 |
golang/go | 6a4effa08ba5c7b182d319a2a8ddd782274c2f74 | 139d6eedae38f9e8bc81bb2c8c5c2c75d12853ab | crypto/x509: avoid panic when parsing partial PKCS#1 private keys
These keys are off-spec, but have historically been accepted by
ParsePKCS1PrivateKey.
Thanks to Philippe Antoine (Catena cyber) for reporting this issue.
Fixes #71216
Fixes CVE-2025-22865
Change-Id: I6a6a46564156fa32e29e8d6acbec3fbac47c7352
Reviewed-... | [
{
"path": "src/crypto/x509/pkcs1.go",
"patch": "@@ -72,7 +72,9 @@ func ParsePKCS1PrivateKey(der []byte) (*rsa.PrivateKey, error) {\n \t}\n \n \tif priv.N.Sign() <= 0 || priv.D.Sign() <= 0 || priv.P.Sign() <= 0 || priv.Q.Sign() <= 0 ||\n-\t\tpriv.Dp.Sign() <= 0 || priv.Dq.Sign() <= 0 || priv.Qinv.Sign() <= 0... | 2025-01-09T15:03:08 |
huggingface/transformers | a2da4b16633ef9c2679b3a9e300b938851c6b80a | 78ff3a1cb5070ff639857f9caa702dc9934bb59c | chore(typing): Add type checking to `src/transformers/generation` (#44233)
* chore(typing): add `ty` type checking for src/transformers/generation
Add type declarations for mixin host-class attributes on GenerationMixin,
class-level annotations for dynamically-set attributes on GenerationConfig,
and fix minor typing ... | [
{
"path": "AGENTS.md",
"patch": "@@ -1,5 +1,5 @@\n ## Useful commands\n-- `make style`: runs formatters and linters, necessary to pass code style checks\n+- `make style`: runs formatters, linters and type checker, necessary to pass code style checks\n - `make fix-repo`: auto-fixes copies, modular conversion... | 2026-03-04T17:24:34 |
electron/electron | 35ff95d3c71849ac97ced178a2330b9d4651f250 | 6257e0c348ed3e30b8b7799475adeb6019138f95 | fix: `<datalist>` bounds vertical cutoff (#34759) | [
{
"path": "shell/browser/ui/views/autofill_popup_view.cc",
"patch": "@@ -174,7 +174,7 @@ void AutofillPopupView::DrawAutofillEntry(gfx::Canvas* canvas,\n const int text_align =\n is_rtl ? gfx::Canvas::TEXT_ALIGN_RIGHT : gfx::Canvas::TEXT_ALIGN_LEFT;\n gfx::Rect value_rect = entry_rect;\n- value_r... | 2022-06-29T08:14:03 |
ollama/ollama | 83021fcf0fe935ee5c6d29b12cc357b373ec926f | 0469861d9dfdec71fe895a0d4672056dfe8af54f | qwen3-coder: fix tool definition type rendering | [
{
"path": "model/renderers/qwen3coder.go",
"patch": "@@ -99,9 +99,7 @@ func Qwen3CoderRenderer(messages []api.Message, tools []api.Tool, _ *api.ThinkVa\n \t\t\t\t\tsb.WriteString(\"\\n<name>\" + name + \"</name>\")\n \n \t\t\t\t\tif len(prop.Type) > 0 {\n-\t\t\t\t\t\t// TODO(!!!)(drifkin): we should match t... | 2025-09-30T22:03:15 |
facebook/react | fdb368d9e7430b50b9c506e76ccd46bf0576ef9b | 3ff846d106de9273f59d1e4457793a5fcf625aef | Uninstall unused Webpack 4 packages (#27058)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please ma... | [
{
"path": "package.json",
"patch": "@@ -97,7 +97,6 @@\n \"tmp\": \"^0.1.0\",\n \"typescript\": \"^3.7.5\",\n \"web-streams-polyfill\": \"^3.1.1\",\n- \"webpack\": \"^4.41.2\",\n \"yargs\": \"^15.3.1\"\n },\n \"devEngines\": {",
"additions": 0,
"deletions": 1,
"language": "... | 2023-07-25T17:55:05 |
vercel/next.js | e9e30ee743ec91910bcbf56f75a14b9a83a1729e | aaf8a16f5653c15a895c262b21c6c4916d052109 | docs: Fix flag for taint (#79370)
Closes:
https://linear.app/vercel/issue/DOC-4668/document-the-experimentaltaint-option-in-nextconfigts
Flag value was incorrect. | [
{
"path": "docs/01-app/05-api-reference/05-config/01-next-config-js/taint.mdx",
"patch": "@@ -18,7 +18,7 @@ import type { NextConfig } from 'next'\n \n const nextConfig: NextConfig = {\n experimental: {\n- ppr: 'incremental',\n+ taint: true,\n },\n }\n \n@@ -29,7 +29,7 @@ export default nextConfig... | 2025-05-19T14:35:09 |
golang/go | 139d6eedae38f9e8bc81bb2c8c5c2c75d12853ab | 2b2314e9f6103de322b2e247387c8b01fd0cd5a4 | cmd/go: restore netrc preferences for GOAUTH and fix domain lookup
Store netrc lines into the credential map backward so that earlier lines
take priority over later lines. This matches Go 1.23 netrc lookup which
stopped at the first match it found.
Additionally, this fixes a security issue related to domain parsing
wh... | [
{
"path": "src/cmd/go/internal/auth/auth.go",
"patch": "@@ -12,7 +12,6 @@ import (\n \t\"log\"\n \t\"net/http\"\n \t\"os\"\n-\t\"path\"\n \t\"path/filepath\"\n \t\"slices\"\n \t\"strings\"\n@@ -73,7 +72,12 @@ func runGoAuth(client *http.Client, res *http.Response, url string) {\n \t\t\tif err != nil {\n \t\... | 2025-01-08T20:38:32 |
huggingface/transformers | 8757098be4d2386d45900b30168855996ca22810 | 22c35ca55b64af7fa08a8a30ea26d4d8dda88056 | Fix GPT2 attention scaling ignored in SDPA/FlashAttention (#44397)
* Fix GPT2 attention scaling config ignored in SDPA/FlashAttention backends
GPT2Attention.forward() did not pass the `scaling` parameter to
`attention_interface`, causing `scale_attn_weights` and
`scale_attn_by_inverse_layer_idx` config options to be ... | [
{
"path": "src/transformers/models/decision_transformer/modeling_decision_transformer.py",
"patch": "@@ -44,27 +44,20 @@\n \n \n # Copied from transformers.models.gpt2.modeling_gpt2.eager_attention_forward\n-def eager_attention_forward(module, query, key, value, attention_mask, **kwargs):\n- attn_weights... | 2026-03-04T16:33:07 |
electron/electron | 44b9ee51f45466603728721d23fb4dd95061c142 | 07294cbf15a94a6150877b67178911273cb022cf | fix: resolve symlinks when computing relative asar paths for integrity (#34776) | [
{
"path": "shell/common/asar/archive_mac.mm",
"patch": "@@ -11,6 +11,7 @@\n #include <iomanip>\n #include <string>\n \n+#include \"base/files/file_util.h\"\n #include \"base/logging.h\"\n #include \"base/mac/bundle_locations.h\"\n #include \"base/mac/foundation_util.h\"\n@@ -21,7 +22,8 @@\n namespace asar {... | 2022-06-28T23:02:00 |
ollama/ollama | c47154c08d59c93a653a2a798885a4a29bff71ee | b04e46da3ebca69a2b1216b3943d8a463e8b4a14 | fix: correct condition for AMDGPU_TARGETS filtering logic (#12412) | [
{
"path": "CMakeLists.txt",
"patch": "@@ -98,10 +98,12 @@ check_language(HIP)\n if(CMAKE_HIP_COMPILER)\n set(HIP_PLATFORM \"amd\")\n \n- find_package(hip REQUIRED)\n if(NOT AMDGPU_TARGETS)\n+ find_package(hip REQUIRED)\n list(FILTER AMDGPU_TARGETS INCLUDE REGEX \"^gfx(900|94[012]|1... | 2025-09-26T18:38:47 |
vercel/next.js | aaf8a16f5653c15a895c262b21c6c4916d052109 | 0790b78dd2452d5db25456b60ec4859ef9265f4e | Remove prospective fallback prerenders (#79304)
The prospective fallback prerenders, which ensured that a fallback shell could be prerendered without errors, were only needed when Dynamic IO was enabled and PPR was disabled. This scenario is no longer supported. | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -193,7 +193,6 @@ import {\n } from '../server/lib/experimental/ppr'\n import { FallbackMode, fallbackModeToFallbackField } from '../lib/fallback'\n import { RenderingMode } from './rendering-mode'\n-import { getParamKeys } from '../server/request/fa... | 2025-05-19T13:49:08 |
facebook/react | dcb6549ddae8c10a826503222d6bd7c2dfb770a4 | 3f0afcbe471fdebab1b2df9c006d587f044aeb07 | [hir] Bailout when reading from React namespace
Forget doesn't understand the React namespace object and generates incorrect
code when compiling code that loads props from this namespace object.
This PR makes Forget bailout when we see a property load from React namespace
object. | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -2215,6 +2215,20 @@ function lowerMemberExpression(\n const object =\n loweredObject ?? lowerExpressionToTemporary(builder, objectNode);\n \n+ if (objectNode.isIdentifier() && objectNode.node.name === \"R... | 2023-07-25T15:08:32 |
golang/go | 2b2314e9f6103de322b2e247387c8b01fd0cd5a4 | 6783377295e0878aa3ad821eefe3d7879064df6d | crypto/x509: properly check for IPv6 hosts in URIs
When checking URI constraints, use netip.ParseAddr, which understands
zones, unlike net.ParseIP which chokes on them. This prevents zone IDs
from mistakenly satisfying URI constraints.
Thanks to Juho Forsén of Mattermost for reporting this issue.
Fixes #71156
Fixes ... | [
{
"path": "src/crypto/x509/name_constraints_test.go",
"patch": "@@ -1607,6 +1607,23 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\tleaf: leafSpec{sans: []string{\"dns:.example.com\"}},\n \t\texpectedError: \"cannot parse dnsName \\\".example.com\\\"\",\n \t},\n+\t// #86: URIs with IPv6 ... | 2024-12-09T19:31:22 |
huggingface/transformers | 22c35ca55b64af7fa08a8a30ea26d4d8dda88056 | 8c61e44d66a0b6fe7b9f11a474318145694bd442 | Add future model support for Fouroversix (#44286)
* Add fouroversix integration and docs
* Small fix
* Update quantized modules outside of FourOverSixQuantize
* Delete high-precision parameters during conversion and before weight loading
* Update year
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.nor... | [
{
"path": "src/transformers/integrations/fouroversix.py",
"patch": "@@ -44,7 +44,7 @@ def convert(\n \n # Delete the high-precision parameters from the module after we used them to create\n # the quantized parameters\n- for parameter_name in module.parameters_to_quantize:\n+ if... | 2026-03-04T16:28:13 |
facebook/react | 3f0afcbe471fdebab1b2df9c006d587f044aeb07 | 82e426e2298724c8c63d495fb9ec0b6c39ac1fdf | [test] Failing test for using hooks from React namespace
Forget assumes hooks are imported and used directly without the React namespace
and generates incorrect code when if there's a namespace. | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/_bug.hooks-with-React-namespace.expect.md",
"patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+function Foo() {\n+ const [x, setX] = React.useState(1);\n+ return x;\n+}\n+\n+```\n+\n+## Code\n+\n+```ja... | 2023-07-25T14:56:46 |
vercel/next.js | 0e784439f9c53416564a3b0dc9620511521b4d08 | c23f08e3d9bc1c1497ce9e01268f615698a83355 | docs: --verbose option in dev mode is not yet supported (#79366)
Closes:
https://linear.app/vercel/issue/DOC-4677/remove-reference-to-next-dev-verbose
Fixes: https://github.com/vercel/next.js/issues/79337
For now, `--verbose` is not supported for `next dev`.
---------
Co-authored-by: Delba de Oliveira <32464864+del... | [
{
"path": "docs/01-app/02-guides/local-development.mdx",
"patch": "@@ -137,12 +137,20 @@ The experimental `serverComponentsHmrCache` option allows you to cache `fetch` r\n \n ### Detailed fetch logging\n \n-Use this command to see more detailed information about what's happening during development:\n+Use th... | 2025-05-19T12:47:28 |
electron/electron | 704b2199b3457f01611795eb3d36b4cb85ff5641 | f1087cc830872365c7e9dade7b44de099853b08c | build: fix building with enable_basic_printing false (#34711)
* build: fix building with enable_basic_printing false
* temp flags for ci builds
* fix other systems
* disable cups
* disable print preview
* revert changes
* merge with printing.patch | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -10,6 +10,29 @@ majority of changes originally come from these PRs:\n \n This patch also fixes callback for manual user cancellation and success.\n \n+diff --git a/BUILD.gn b/BUILD.gn\n+index c46cbf1bec22c36b97fde5601ca9b2966ee80933..edf371d10bcac60d... | 2022-06-28T14:34:00 |
golang/go | 6783377295e0878aa3ad821eefe3d7879064df6d | 368a9ec99834652ca3f7d8fe24862a7581e12358 | net/http: persist header stripping across repeated redirects
When an HTTP redirect changes the host of a request, we drop
sensitive headers such as Authorization from the redirected request.
Fix a bug where a chain of redirects could result in sensitive
headers being sent to the wrong host:
1. request to a.tld with... | [
{
"path": "src/net/http/client.go",
"patch": "@@ -610,8 +610,9 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\treqBodyClosed = false // have we closed the current req.Body?\n \n \t\t// Redirect behavior:\n-\t\tredirectMethod string\n-\t\tincludeBody = true\n+\t\tredirectMeth... | 2024-11-22T20:34:11 |
huggingface/transformers | fd6bc380c8854a370fbc9f68a157895d84dce7d7 | 30c480166a95342fefdd9d727fc2a163bea7b2b1 | [vllm + v5 fix] handle TokenizersBackend fallback properly for v5 (#44255)
* update deepseek v2 for tokenizers v5
* adding remote code fix
* fix deepseek name
* handle spm conversion from proto only when overriding bad_models
* add script to compare xlni and code_search_net output of 2 tokenizers
* tiktoken model... | [
{
"path": "src/transformers/convert_slow_tokenizer.py",
"patch": "@@ -192,6 +192,7 @@ def extract(self, model_type, **kwargs) -> tuple[dict[str, int], list[tuple]]:\n AddedToken(token, normalized=False, special=special)\n for id, token, special in sorted(spm_added_tokens, key=lambda ... | 2026-03-04T15:13:23 |
vercel/next.js | fe91fdfb918c1839f444e9472a8918326862c651 | aa96aa961566532853ff5fff021dfab71b0bb687 | fix: replaceIdentifiersInAst takes an expression, not a string (#79196)
missed this one in #78916. Weirdly enough the replacement seems to be working fine -- i guess something in recast was parsing the string (i.e. `path.replace("__turbopack_load_by_url__")` worked somehow). but that's not allowed according to recast'... | [
{
"path": "packages/next/taskfile.js",
"patch": "@@ -1935,7 +1935,12 @@ export async function copy_vendor_react(task_) {\n const ast = parseFile(source, { sourceFileName: filepath })\n replaceIdentifiersInAst(\n ast,\n- new Map([['__turbopack_load__', '__turbopack_... | 2025-05-19T12:38:35 |
facebook/react | 18f7481ebf6db8103889c3ae051c41c2067355d5 | 3e317b8bbfe4d3861730c5739a76670903bfc97b | [rust] General-purpose diagnostic type and helpers
This PR adapts the `Diagnostic` type and helpers from Relay Compiler to Forget.
The main changes are:
* Removing some fields it doesn't seem we'll use for a while, if ever (like
machine-readable arbitrary key/value data)
* Switching from Relay Compiler's `Locat... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -451,10 +451,20 @@ name = \"forget_build_hir\"\n version = \"0.1.0\"\n dependencies = [\n \"bumpalo\",\n+ \"forget_diagnostics\",\n \"forget_estree\",\n \"forget_hir\",\n \"indexmap 2.0.0\",\n+ \"thiserror\",\n+]\n+\n+[[package]]\n+name = \"forget_dia... | 2023-07-14T06:21:45 |
huggingface/transformers | 30c480166a95342fefdd9d727fc2a163bea7b2b1 | ee4c22078ff3987cbab669f332ff022d4fa89469 | Fix CLI NameError: name 'TypeAdapter' is not defined (#44256)
* Do not evaluate type annotations in CLI serve
* Fix style
* Fix style | [
{
"path": "src/transformers/cli/serve.py",
"patch": "@@ -11,6 +11,9 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n+\n+from __future__ import annotations\n+\n import a... | 2026-03-04T14:10:42 |
vercel/next.js | 34039551d2e5f611c0abde31a197d9985918adaf | b08c5a35a507fca0cce3d64c2e8112947d5688eb | [test] Use unique error messages in `server-source-maps` (#79108)
Allows unambigious assertions on CLI output.
Not that interesting for dev but `next build` will have the logs for all pages in all tests.
I also made the pages static where possible so that we'll be able to assert on the logged errors during `next b... | [
{
"path": "test/e2e/app-dir/server-source-maps/fixtures/default/app/bad-sourcemap/page.js",
"patch": "@@ -1,12 +1,10 @@\n // Compile with pnpm tsc test/e2e/app-dir/server-source-maps/fixtures/default/bad-sourcemap/page.js --allowJs --sourceMap --target esnext --outDir test/e2e/app-dir/server-source-maps/fix... | 2025-05-19T06:38:59 |
ollama/ollama | b04e46da3ebca69a2b1216b3943d8a463e8b4a14 | 34efbbd3f02c024fc3256ae7d7799abb9cb98e8f | bugfix: restore the current runOptions if loading fails in the CLI (#12402)
There are two bugs when using `/load <model>` for a model that doesn't exist, namely:
1. it will not restore the current model settings if the current model is a thinking model; and
2. it will crash is the current model is a non-thinking m... | [
{
"path": "cmd/cmd.go",
"patch": "@@ -1118,6 +1118,51 @@ type runOptions struct {\n \tShowConnect bool\n }\n \n+func (r runOptions) Copy() runOptions {\n+\tvar messages []api.Message\n+\tif r.Messages != nil {\n+\t\tmessages = make([]api.Message, len(r.Messages))\n+\t\tcopy(messages, r.Messages)\n+\t}\n+\n... | 2025-09-26T01:30:45 |
facebook/react | 68b0effca3dd3ef64edb98662dd7f8d049958e6f | 8ed6c6ab088c4cf022b85335534acd8991106161 | [rust] Workspace hygiene
I've primarily used what Cargo calls virtual workspaces, where the top-level
Cargo.toml just lists a bunch of packages and they each have their own
dependencies. This is fine, but i've noticed that more repos are using real
workspaces and they offer a bunch of benefits. You define the depe... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -233,18 +233,6 @@ dependencies = [\n \"serde\",\n ]\n \n-[[package]]\n-name = \"build-hir\"\n-version = \"0.1.0\"\n-dependencies = [\n- \"bumpalo\",\n- \"estree\",\n- \"hir\",\n- \"indexmap 2.0.0\",\n- \"miette 5.9.0\",\n- \"thiserror\",\n-]\n-\n [[packa... | 2023-07-14T02:39:46 |
electron/electron | e86d1cba75be6e5134a3190432b4aae6b19134e8 | 032e1d9befad640ee6edc276cec1ebd1e84bc73f | chore: bump chromium to 105.0.5129.0 (main) (#34403)
* chore: bump chromium in DEPS to 104.0.5096.0
* 3651284: Use the entry settings object for window.open navigation
https://chromium-review.googlesource.com/c/chromium/src/+/3651284
* 3644598: Make RenderFrameHost used for notification permission decision
... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '104.0.5073.0',\n+ '105.0.5129.0',\n 'node_version':\n 'v16.15.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "build/... | 2022-06-27T20:50:08 |
huggingface/transformers | 7235d44257e7e4765317d475622e2085a09c9e3b | f60c4e9423a2063fd0e313428ebbb3d5d1e6bdd6 | Add eurobert (#39455)
* feat: init EuroBert model integration
* fix: auto import
* Refactor: Update EuroBertMaskedLM & SentenceClassif classes to inherit from PreTrainModel.
* feat: Introduce EuroBertPreTrainedModel class and update model inheritance
* fix: Ruff format
* fix: Ruff format for modeling_auto.py
* f... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -544,6 +544,8 @@\n title: Ernie4_5_MoE\n - local: model_doc/esm\n title: ESM\n+ - local: model_doc/eurobert\n+ title: EuroBERT\n - local: model_doc/exaone4\n title: EXAONE-4.0\n - local: model_doc/exa... | 2026-03-04T11:43:02 |
vercel/next.js | aa7d4de472519f1b1a7a191177edfd08ab61b521 | 53933954e37887ed29777e95101f3e828557157a | Enable `ppr` when `dynamicIO` is enabled (#79302)
With this PR, we're automatically enabling `ppr` when `dynamicIO` is enabled, and forbid using `ppr: 'incremental'` or `ppr: false` together with `dynamicIO: true`.
While implementing the config validation, I noticed that the `userConfig`, `config`, and `result` obj... | [
{
"path": ".changeset/dry-roses-nail.md",
"patch": "@@ -0,0 +1,5 @@\n+---\n+\"next\": patch\n+---\n+\n+Enable `ppr` when `dynamicIO` is enabled",
"additions": 5,
"deletions": 0,
"language": "Markdown"
},
{
"path": "packages/next/errors.json",
"patch": "@@ -679,5 +679,6 @@\n \"678\"... | 2025-05-17T20:31:20 |
facebook/react | 546fe4681c52de6a333a55cedb141c87b626425e | 9377e10105b41976c77c7f664f2363cb8c41ac8a | fix[devtools/inspect]: null check memoized props before trying to call hasOwnProperty (#27057)
Simple check to avoid `TypeError`, quite rare case, but still. | [
{
"path": "packages/react-devtools-shared/src/backend/renderer.js",
"patch": "@@ -3280,7 +3280,7 @@ export function attach(\n };\n \n if (enableStyleXFeatures) {\n- if (memoizedProps.hasOwnProperty('xstyle')) {\n+ if (memoizedProps != null && memoizedProps.hasOwnProperty('xstyle')) {\n ... | 2023-07-13T13:13:19 |
electron/electron | 3b881e4a132742b30e2f7a61203c1bfec5b81364 | 106aa0e9228250015eef99eaa9063bafa9fc187b | fix: WCO respects maximizable/closable/minimizable (#34677) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -876,6 +876,11 @@ bool NativeWindowViews::IsMovable() {\n void NativeWindowViews::SetMinimizable(bool minimizable) {\n #if BUILDFLAG(IS_WIN)\n FlipWindowStyle(GetAcceleratedWidget(), minimizable, WS_MINIMIZEBOX);\n+ if (titlebar_overlay_enabl... | 2022-06-23T17:08:32 |
golang/go | bd80d8956f3062d2b2bff2d7da6b879dfa909f12 | 4fa61d6f9c9c7c3a5e74472f1cfb9c12eed1a368 | cmd/go/internal/modfetch: do not trust server to send all tags in shallow fetch
Newer git versions (at least git 2.47.1) do not send all the matching tags
for a shallow fetch of a specific hash anymore. The go command assumes
that git servers do this. Since that assumption is broken, use the local
copy of the remote r... | [
{
"path": "src/cmd/go/internal/modfetch/codehost/git.go",
"patch": "@@ -649,7 +649,21 @@ func (r *gitRepo) statLocal(ctx context.Context, version, rev string) (*RevInfo,\n \t\t\t}\n \t\t}\n \t}\n-\tsort.Strings(info.Tags)\n+\n+\t// Git 2.47.1 does not send the tags during shallow clone anymore\n+\t// (perha... | 2025-01-14T04:00:14 |
vercel/next.js | 42b1c400c977cbe43147c083714e7f6bd38cff80 | f270834d6a67265426afe1f36f8a41b499506ed4 | Turbopack build: Fix type: module with output: standalone (#79292)
## What?
This PR ensures we first clean the `.next/standalone` folder before
writing into it.
Currently the order is:
1. Write package.json to `.next/standalone/package.json`
1. Delete `.next/standalone`
1. Check `.nft.json` files and write the file... | [
{
"path": "packages/next/src/build/utils.ts",
"patch": "@@ -1539,6 +1539,10 @@ export async function copyTracedFiles(\n staticPages: Set<string>\n ) {\n const outputPath = path.join(distDir, 'standalone')\n+\n+ // Clean up standalone directory first.\n+ await fs.rm(outputPath, { recursive: true, force... | 2025-05-17T07:31:08 |
ollama/ollama | 05ba4ca1f4b356df50ed6eede0e2bcdc76b31fb8 | fbd82ba5bb35c42a6b09f5bd50ff1aa0690b9626 | parsers: fix unicode handling for qwen3-coder
When trimming whitespace at the end of every chunk, we were iterating
backwards over the string byte-by-byte instead of rune-by-rune.
As an example of how this can cause corruption, suppose we have the
multi-byte character ✅ (`"\u2705"`), which is represented in utf-8 as
... | [
{
"path": "model/parsers/qwen3coder.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"strconv\"\n \t\"strings\"\n \t\"unicode\"\n+\t\"unicode/utf8\"\n \n \t\"github.com/ollama/ollama/api\"\n \t\"github.com/ollama/ollama/logutil\"\n@@ -204,12 +205,21 @@ func overlap(s, delim string) int {\n }\n \n func trailin... | 2025-09-25T22:47:46 |
huggingface/transformers | f49c720f52a08ad68f9f1d299cf65e7125d2e359 | 5c1c72be5f864d10d0efe8ece0768d9ed6ee4fdd | 🚨 fix + tests dense & MoE TP all reduce (decoder only) (#43722)
* introducing test tensor parallel mixing to catch TP related error
* Remove test file for tensor parallel functionality
* Refactor dense and MoE test scripts for parallel execution and improved GPU management
- Updated `run_dense_tests.sh` and `run_m... | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -328,6 +328,15 @@ def job_name(self):\n parallelism=6,\n )\n \n+tensor_parallel_ci_job = CircleCIJob(\n+ \"tensor_parallel_ci\",\n+ additional_env={\"RUN_TENSOR_PARALLEL_TESTS\": True},\n+ docker_image=[{\"image\": \"huggingface/tran... | 2026-03-04T08:57:50 |
facebook/react | f3d40c8c248f9369dcdfdac78a12188db7474a59 | 4762208b0f5f885ec68bf5afc989688d8e19048b | [rust] Recurse into functions in other passes
Updates eliminate_redundant_phis and constant_propagation to recurse into
function expressions. I also realized there was a bug in EliminateRedundantPhis
in which we wouldn't traverse into function expressions encountered after
finding a back edge, so i fixed that logi... | [
{
"path": "compiler/forget/crates/fixtures/tests/fixtures/function-expressions.js",
"patch": "@@ -1,5 +1,13 @@\n function Component(props) {\n+ const y = 2;\n const foo = function foo(x) {\n- return x + 1;\n+ let a = 1;\n+ let b;\n+ if (a === 1) {\n+ b = 5 + 3;\n+ } else {\n+ b =... | 2023-07-13T04:34:10 |
electron/electron | 11924bdbb271a1db97d4fe4666935bca435ceb0d | cd19a741b1a1cbd0ab7560314f1a77bed922bddb | chore: modernize ListValue usage in dict_util.mm and related files (#34661)
* chore: modernize ListValue usage in dict_util.mm and related files
* use base::Value::{Dict,List} instead of raw base::Value
* fix compile
* fix build
* fix build again | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -706,13 +706,13 @@ void App::OnWillFinishLaunching() {\n Emit(\"will-finish-launching\");\n }\n \n-void App::OnFinishLaunching(const base::DictionaryValue& launch_info) {\n+void App::OnFinishLaunching(base::Value::Dict launch_info) {\n #if BU... | 2022-06-23T06:28:41 |
golang/go | 4fa61d6f9c9c7c3a5e74472f1cfb9c12eed1a368 | c5e205e928bd4b70c90698b5ca1dd583a8036864 | cmd/api: report error in test instead of crashing
https://ci.chromium.org/ui/inv/build-8725798219051312433/test-results?sortby=&groupby=
shows a mysterious failure with this stack:
=== RUN BenchmarkAll
BenchmarkAll
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmenta... | [
{
"path": "src/cmd/api/api_test.go",
"patch": "@@ -57,7 +57,10 @@ func TestGolden(t *testing.T) {\n \t\t// TODO(gri) remove extra pkg directory eventually\n \t\tgoldenFile := filepath.Join(\"testdata\", \"src\", \"pkg\", fi.Name(), \"golden.txt\")\n \t\tw := NewWalker(nil, \"testdata/src/pkg\")\n-\t\tpkg, _... | 2025-01-14T13:22:08 |
ollama/ollama | fbd82ba5bb35c42a6b09f5bd50ff1aa0690b9626 | 2e742544bfc5242be4d76c6fee5082c7e41b3df2 | Grace/deepseek v3 migration (#12385)
* init deepseek model file
* temp removal of flash attention implementation
* shapes and proper, can make a pass
* query, key, value have good cosine similarity, but the max diff is a bit high
* Attention block is working! ** with eager for now, have not added the mask line
* ... | [
{
"path": "model/models/deepseek2/model.go",
"patch": "@@ -0,0 +1,324 @@\n+package deepseek2\n+\n+// uses deepseek 2 architecture but written based on deepseek 3 model\n+\n+import (\n+\t\"math\"\n+\n+\t\"github.com/ollama/ollama/fs\"\n+\t\"github.com/ollama/ollama/kvcache\"\n+\t\"github.com/ollama/ollama/ml... | 2025-09-24T22:19:47 |
vercel/next.js | f270834d6a67265426afe1f36f8a41b499506ed4 | dfcb8cb16862b733d9c1df9326bc7fb94bced9b0 | [dynamicIO] fix: do not apply import tracking transform in edge (#79284)
Dynamic import tracking should never be applied to edge runtime code,
because:
1. `dynamicIO` prerendering is not supported for edge
2. the implementation of `dynamicIO` prerendering relies on
node-specific APIs.
I missed this in #74152. This PR... | [
{
"path": "crates/next-core/src/next_server/transforms.rs",
"patch": "@@ -178,7 +178,12 @@ pub async fn get_next_server_transforms_rules(\n ServerContextType::Middleware { .. } | ServerContextType::Instrumentation { .. } => false,\n };\n \n- if is_app_dir && *next_config.enable_dynamic_io().a... | 2025-05-17T01:29:40 |
huggingface/transformers | 5c1c72be5f864d10d0efe8ece0768d9ed6ee4fdd | 4bbd76228230c3666ada045f9df9b84f57df33a6 | add support for nemotron_3 (#44390)
* add support for nemotron_3
* convert modeling file
* address comments
* optional, config backward compatible
* style
* docstring
* non gated experts
* docs
* docs
* docs
* add notes about cuda stream
* fix tests
* minor update
* move conversion back to conversion_mapp... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -706,6 +706,8 @@\n title: NanoChat\n - local: model_doc/nemotron\n title: Nemotron\n+ - local: model_doc/nemotron_h\n+ title: NemotronH\n - local: model_doc/nllb\n title: NLLB\n - local: model_doc/nll... | 2026-03-03T18:18:50 |
facebook/react | 1d5d89b8be7647b55c71dd670338a1af184bd3e4 | 8ada08f11e218f1a33da28a968bfb700c2abc40d | [js/rust] Improve constant propagation
Makes the same improvement to constant propagation in both the JS and Rust
versions. The core algorithm only populates phi variables if all operands have a
known value (no back edges) and all those values are the same: this allows us to
propagate constants in most cases and s... | [
{
"path": "compiler/forget/crates/fixtures/tests/fixtures/constant-propagation-constant-if-condition.js",
"patch": "@@ -1,17 +1,34 @@\n-function Component(props) {\n- let x = true;\n- let y;\n- if (x) {\n- y = 42;\n+function Component() {\n+ let a = 1;\n+\n+ let b;\n+ if (a === 1) {\n+ b = true;... | 2023-07-13T00:53:36 |
electron/electron | 218797eb61375a18b6126dfc9f511759585da84d | e410109a3d12e5b305f87e6e13967f2e3f88f3f5 | fix: allow macOS debug builds to be built (#34536)
Extending the `testing` GN profile with the arguments documented to
allow breakpoint debugging
(https://www.electronjs.org/docs/latest/development/debugging#breakpoint-debugging)
doesn't quite work on macOS:
```sh
is_debug = true
symbol_level = 2
forbid_non_c... | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -92,6 +92,7 @@ static_library(\"chrome\") {\n \"//chrome/browser/media/webrtc/system_media_capture_permissions_stats_mac.h\",\n \"//chrome/browser/media/webrtc/system_media_capture_permissions_stats_mac.mm\",\n \"//chrome/browser/media/webrtc... | 2022-06-22T08:18:12 |
golang/go | befc43655b6d93f0be883222fbb3fde5768892c1 | c83f2ca4b3964917adc3b06f661785cc6b53792d | testing/fstest: fix function name and comment
Change-Id: I17bc68a2e3a96d0dc3d9ddcad40149df37fc4839
Reviewed-on: https://go-review.googlesource.com/c/go/+/642198
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.i... | [
{
"path": "src/testing/fstest/testfs.go",
"patch": "@@ -570,7 +570,7 @@ func (t *fsTester) checkFileRead(file, desc string, data1, data2 []byte) {\n \t}\n }\n \n-// checkBadPath checks that various invalid forms of file's name cannot be opened using t.fsys.Open.\n+// checkOpen validates file opening behavio... | 2025-01-13T17:11:22 |
vercel/next.js | 21c0b4270976662fa694c66276dd79e2eaf4c982 | b42b442eadbb5ae19494693888a2895df5caef68 | Do not run CI for modifying changeset related files (#79315)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Con... | [
{
"path": "scripts/run-for-change.js",
"patch": "@@ -9,6 +9,7 @@ const CHANGE_ITEM_GROUPS = {\n 'docs',\n 'errors',\n 'examples',\n+ '.changeset',\n 'UPGRADING.md',\n 'contributing.md',\n 'contributing',",
"additions": 1,
"deletions": 0,
"language": "JavaScript"
}
] | 2025-05-16T21:23:03 |
huggingface/transformers | 4bbd76228230c3666ada045f9df9b84f57df33a6 | 76f9fa4109c76291e6d194267deb3f00a31d46ca | [ Dynamic weight loader] fix remote code when format matches (#44396)
* nit
* style
* test is no longer relevant, if the weights exists why rename them?
* fix
* nit | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -1128,6 +1128,9 @@ def convert_and_load_state_dict_in_model(\n renamed_key, source_pattern = rename_source_key(\n original_key, renamings, converters, prefix, meta_model_state_dict\n )\n+ if renamed_key not i... | 2026-03-03T17:53:32 |
facebook/react | 2fb14138d415be3f36797ee2fdfd9146aa1e39a0 | e029e22a9a8a443287ac212d26bcd7b85ee82ad9 | [rust] Port EliminateRedundantPhis
This is a nearly 1:1 port of EliminateRedundantPhis to Rust, the algorithm is
identical and all differences are superficial. There are few things missing (an
invariant instead of a panic in one place, recursing into function expressions)
but the Rust version is still going to end... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -504,6 +504,7 @@ dependencies = [\n \"estree\",\n \"estree-swc\",\n \"hir\",\n+ \"hir-ssa\",\n \"insta\",\n \"miette 5.9.0\",\n ]\n@@ -644,8 +645,10 @@ version = \"0.1.0\"\n dependencies = [\n \"bumpalo\",\n \"hir\",\n+ \"indexmap 2.0.0\",\n \"mie... | 2023-07-12T05:54:49 |
golang/go | c83f2ca4b3964917adc3b06f661785cc6b53792d | 6da16013ba4444e0d71540f68279f0283a92d05d | cmd/dist: ignore packages with no Go files in BenchmarkAll
This case recently started happening on the builders.
The synctest experiment was recently enabled for some targets (CL 642422).
This caused the list of standard packages to include testing/synctest.
However, BenchmarkAll tests for all configurations;
some did... | [
{
"path": "src/cmd/api/api_test.go",
"patch": "@@ -201,7 +201,10 @@ func BenchmarkAll(b *testing.B) {\n \t\tfor _, context := range contexts {\n \t\t\tw := NewWalker(context, filepath.Join(testenv.GOROOT(b), \"src\"))\n \t\t\tfor _, name := range w.stdPackages {\n-\t\t\t\tpkg, _ := w.import_(name)\n+\t\t\t\... | 2025-01-14T14:58:32 |
electron/electron | bf52318c76ac110e9a916ca553394c2c15a6381c | 73c85410c56f0a4024fd0fd1ee6aa5360c30621a | fix: modernize ListValue in net converters (#34657) | [
{
"path": "shell/common/gin_converters/net_converter.cc",
"patch": "@@ -153,20 +153,20 @@ v8::Local<v8::Value> Converter<net::CertPrincipal>::ToV8(\n v8::Local<v8::Value> Converter<net::HttpResponseHeaders*>::ToV8(\n v8::Isolate* isolate,\n net::HttpResponseHeaders* headers) {\n- base::DictionaryVa... | 2022-06-22T08:14:57 |
ollama/ollama | fd88cd7cb0966a26f41ec41bc012f2c4d725ab98 | e1979c571aff857568c9c35f5994da40568ef15c | harmony: don't sanitize built-ins
In #11910 we started sanitizing function names, but we accidentally were
modifying built-ins like `browser.open` to `browser_open`. This was
removing the special prompt rendering for built-ins, but this wasn't
immediately apparent since the models seem to be reasonably good at
remembe... | [
{
"path": "harmony/harmonyparser.go",
"patch": "@@ -463,6 +463,10 @@ func (h *HarmonyMessageHandler) HasThinkingSupport() bool {\n \n func (m *FunctionNameMap) ConvertAndAdd(userFunctionName string) string {\n \tharmonyFunctionName := m.deriveName(userFunctionName)\n+\t// built-in functions should not be re... | 2025-09-24T06:34:55 |
huggingface/transformers | 76f9fa4109c76291e6d194267deb3f00a31d46ca | 8f2a5005182a398b66cdd19d0d23ae903df4c7c6 | [timesfm2_5] fix timesfm2.5 loss (#44331)
* fix timesfm2.5 loss
* Update src/transformers/models/timesfm2_5/modular_timesfm2_5.py
Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com>
* fix typo
* use input_ff_layer.weight.dtype to cast
* more dtype
* fix tests
* formatting
* address review
... | [
{
"path": "src/transformers/models/timesfm2_5/modeling_timesfm2_5.py",
"patch": "@@ -106,6 +106,8 @@ def __init__(self, config, input_dims: int, hidden_dims: int, output_dims: int,\n use_bias = use_bias if use_bias is not None else config.use_bias\n \n def forward(self, x):\n+ # Align act... | 2026-03-03T17:18:57 |
vercel/next.js | b42b442eadbb5ae19494693888a2895df5caef68 | 7e5ed3b182bdee78eca78eb77f76d2f2b072b98a | Client router should discard stale prefetch entries for static pages (#79309)
When navigating to a static page that was previously prefetched, the
client router should discard a stale prefetch entry, and fetch the page
again, if the stale time has passed.
The selected stale time is either the default value of 5 minut... | [
{
"path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts",
"patch": "@@ -187,9 +187,13 @@ export async function fetchServerResponse(\n const contentType = res.headers.get('content-type') || ''\n const interception = !!res.headers.get('vary')?.includes(NEXT_URL)\n co... | 2025-05-16T20:54:56 |
facebook/react | e029e22a9a8a443287ac212d26bcd7b85ee82ad9 | c7ccc5dd30acfb29c0e95e42ade5247514a2f270 | [rust] fix lints | [
{
"path": "compiler/forget/crates/build-hir/src/build.rs",
"patch": "@@ -30,7 +30,7 @@ pub fn build<'a>(\n \n match fun.function.body {\n Some(estree::FunctionBody::BlockStatement(body)) => {\n- lower_block_statement(env, &mut builder, *body, None)?\n+ lower_block_statement... | 2023-07-12T04:01:42 |
golang/go | 6da16013ba4444e0d71540f68279f0283a92d05d | de9fdc7b7154a1ddd73cb44292cdd65f4f56029a | cmd/go: check go version when parsing go.mod fails
Fixes #70979
Change-Id: I6597fe178eed34702eea6cba4eec5174c9203458
Reviewed-on: https://go-review.googlesource.com/c/go/+/639115
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Matloob <matloob@golang.org>... | [
{
"path": "src/cmd/go/internal/modload/modfile.go",
"patch": "@@ -44,6 +44,17 @@ func ReadModFile(gomod string, fix modfile.VersionFixer) (data []byte, f *modfil\n \n \tf, err = modfile.Parse(gomod, data, fix)\n \tif err != nil {\n+\t\tf, laxErr := modfile.ParseLax(gomod, data, fix)\n+\t\tif laxErr == nil {... | 2024-12-28T16:19:23 |
huggingface/transformers | 8f2a5005182a398b66cdd19d0d23ae903df4c7c6 | 64aad390d5903896f1291606e05e673dc52ebee6 | Fix peft conversion mappings (#44413)
fix | [
{
"path": "src/transformers/integrations/peft.py",
"patch": "@@ -226,7 +226,7 @@ def _build_peft_weight_mapping(\n new_weight_conversions.append(orig_conversion)\n continue\n \n- if orig_conversion.target_patterns == [\"mlp.experts.gate_up_proj\"]:\n+ if len(orig_conver... | 2026-03-03T17:08:37 |
ollama/ollama | e1979c571aff857568c9c35f5994da40568ef15c | bf78ed6ee94e593a7edae2e277a736379cbc2413 | fix: leaf alt name (#12390)
a leaf node with an alternative name gets all its alternatives names
added into the same branch rather than creating branches themselves | [
{
"path": "model/model.go",
"patch": "@@ -187,15 +187,17 @@ func populateFields(base Base, v reflect.Value, tags ...Tag) reflect.Value {\n \t\t\t\t\t\t\t\tnames = append(names, prefix+n+suffix)\n \t\t\t\t\t\t\t}\n \t\t\t\t\t\t}\n-\n-\t\t\t\t\t\tif childNames := fn(tags[1:], tags[0].prefix, tags[0].suffix); ... | 2025-09-24T00:50:53 |
vercel/next.js | 7e5ed3b182bdee78eca78eb77f76d2f2b072b98a | 6a91ff2cfaf15420a1396319071eaff49f92a4b1 | feat: `--rspack` flag for create next app (#79077)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
... | [
{
"path": "packages/create-next-app/create-app.ts",
"patch": "@@ -38,6 +38,7 @@ export async function createApp({\n empty,\n api,\n turbopack,\n+ rspack,\n disableGit,\n }: {\n appPath: string\n@@ -54,6 +55,7 @@ export async function createApp({\n empty: boolean\n api?: boolean\n turbopack:... | 2025-05-16T20:24:57 |
facebook/react | c7ccc5dd30acfb29c0e95e42ade5247514a2f270 | e9d2822e92792c0f6a96864b9cf19a86275876f6 | [rust] Initial port of EnterSSA
This is a first pass at porting EnterSSA to Rust. First pass in the sense that
it's hard to fully test it, and also in the sense that we'll likely figure out
even better ways to work w the HIR as we iterate. Oh and i didn't do recusing
into function expressions yet, since we can't e... | [
{
"path": "compiler/forget/crates/build-hir/src/build.rs",
"patch": "@@ -6,8 +6,8 @@ use estree::{\n };\n use hir::{\n ArrayElement, BlockKind, BranchTerminal, Environment, ForTerminal, Function, GotoKind,\n- Identifier, IdentifierOperand, InstrIx, InstructionKind, InstructionValue, LValue, LoadGloba... | 2023-07-12T03:38:13 |
huggingface/transformers | 64aad390d5903896f1291606e05e673dc52ebee6 | 9894484e06b81936b30479d017e85b38313951e9 | Reduce tqdm verbosity during model loading (#44414)
fix tqdm verbosity | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -33,8 +33,9 @@\n \n from .integrations.accelerate import get_device, offload_weight\n from .integrations.tensor_parallel import ALL_PARALLEL_STYLES\n-from .utils import is_env_variable_true, logging\n+from .utils import is_env_variable_true\n ... | 2026-03-03T16:57:53 |
vercel/next.js | 3a7ea6958722e3ba79fd3848bd8c26cf28db8435 | 92f4077ac00e807c5288587d4bd6e296eb9d423e | fix(turbopack): prepend a question mark in AssetIdent display (#78977)
## What?
Just update AssetIdent display, prepend "?" like url query. See printed
ident with query like below
<img width="1500" alt="image"
src="https://github.com/user-attachments/assets/bd37733f-cdd1-496e-b7f0-5c372e842d14"
/>
Co-authored-by: Nik... | [
{
"path": "turbopack/crates/turbopack-core/src/ident.rs",
"patch": "@@ -59,7 +59,7 @@ impl ValueToString for AssetIdent {\n \n let query = self.query.await?;\n if !query.is_empty() {\n- write!(s, \"{}\", &*query)?;\n+ write!(s, \"?{}\", &*query)?;\n }\n \n ... | 2025-05-16T03:20:54 |
golang/go | 17ed2159583289d77c994d479c24f7e7c2837332 | c53307c3fdf1126eb6cdb1f09f4f9b83759be705 | go/types, types2: don't panic when instantiating generic alias with wrong number of type arguments
The existing code assumed the type argument count check in
Checker.instance couldn't fail for generic alias types
(matching the code for generic signatures), but it actually
can.
Adjust the code accordingly and document... | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -142,6 +142,9 @@ func (check *Checker) instantiateSignature(pos syntax.Pos, expr syntax.Expr, typ\n \t\t}()\n \t}\n \n+\t// For signatures, Checker.instance will always succeed because the type argument\n+\t// count is correct at this point (... | 2025-01-09T23:01:03 |
ollama/ollama | 64883e3c4c0238dc70fddcc456af569d1489415d | 41efdd404828f361790c5397c55cca8aa55336ac | auth: fix problems with the ollama keypairs (#12373)
* auth: fix problems with the ollama keypairs
This change adds several fixes including:
- reading in the pubkey files correctly
- fixing the push unit test to create a keypair file in a temp directory
- not return 500 errors for normal status error | [
{
"path": "api/client.go",
"patch": "@@ -45,6 +45,12 @@ func checkError(resp *http.Response, body []byte) error {\n \t\treturn nil\n \t}\n \n+\tif resp.StatusCode == http.StatusUnauthorized {\n+\t\tauthError := AuthorizationError{StatusCode: resp.StatusCode}\n+\t\tjson.Unmarshal(body, &authError)\n+\t\tretu... | 2025-09-23T06:20:20 |
facebook/react | e9d2822e92792c0f6a96864b9cf19a86275876f6 | f452ed2971846dba5d6536f3752a861bba637603 | [rust] New data model for HIR
This change is motivated by starting to explore porting EnterSSA to Rust. It's a
good medium complexity pass and quickly demonstrates why a direct port of our
existing data model and algorithms won't work so well. For examples just these
first lines at the top of the transform create ... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -638,6 +638,16 @@ dependencies = [\n \"serde\",\n ]\n \n+[[package]]\n+name = \"hir-ssa\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"bumpalo\",\n+ \"hir\",\n+ \"miette 5.9.0\",\n+ \"thiserror\",\n+]\n+\n [[package]]\n name = \"iana-time-zone\"\n versi... | 2023-07-11T07:59:08 |
huggingface/transformers | 9894484e06b81936b30479d017e85b38313951e9 | 9599bfbb97a6cc009f30817a6d40ae42b5ffaa58 | docs: Add NeMo Automodel community integration docs (#44304)
* Add NeMo Automodel community integration docs
* extra comments
Signed-off-by: adil-a <adil.asif2000@hotmail.com>
* Fix formatting in NeMo Automodel docs
Fix en-dash to double-hyphen in torchrun flags, typo "instanting" →
"instantiating", doc-builder ba... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -278,12 +278,16 @@\n title: MLX\n title: Local deployment\n - sections:\n+ - local: community_integrations/nemo_automodel_pretraining\n+ title: NeMo Automodel\n - local: community_integrations/nanotron\n title: Nanotron\n ... | 2026-03-03T16:51:48 |
vercel/next.js | 21e4411648cd82f91f31d08114678c37efc27fec | 733e4d6413ca65c7c03c1d0da0204c22af2c8854 | Fix dangling promise in unstable-cache (#79248)
While investigating an issue with intermittent `unstable_cache` calls
failing to set noticed we have these dangling promises which cause
"racey" behavior with setting to a cache in environments where the
function stops after the request is finished.
These have been pres... | [
{
"path": ".changeset/loose-cows-pump.md",
"patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Fix dangling promise in unstable_cache",
"additions": 5,
"deletions": 0,
"language": "Markdown"
},
{
"path": "packages/next/src/server/web/spec-extension/unstable-cache.ts",
"patch":... | 2025-05-15T22:03:21 |
golang/go | c53307c3fdf1126eb6cdb1f09f4f9b83759be705 | 47a56b2b6d2cca56384810027964968667b86fdc | spec: fix grammar issue
Change-Id: If4d3b3965762c8979d304a82493c9eb1068ee13c
Reviewed-on: https://go-review.googlesource.com/c/go/+/642037
Reviewed-by: Robert Griesemer <gri@google.com>
TryBot-Bypass: Robert Griesemer <gri@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Robert Griesemer <gr... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -8514,7 +8514,7 @@ <h3 id=\"Package_unsafe\">Package <code>unsafe</code></h3>\n <p>\n The functions <code>Alignof</code> and <code>Sizeof</code> take an expression <code>x</code>\n of any type and return the alignment or size, respectively, of a hypothetical variab... | 2025-01-10T15:00:24 |
electron/electron | 530a022b0548eb50acde87b5d18b5cff8eb7bbca | f3f327823e577c5869b78c806f99644e9dabfb29 | fix: window button visibility fullscreen interaction (#34530) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1517,12 +1517,15 @@ void ViewDidMoveToSuperview(NSView* self, SEL _cmd) {\n \n void NativeWindowMac::SetWindowButtonVisibility(bool visible) {\n window_button_visibility_ = visible;\n- // The visibility of window buttons are managed by |button... | 2022-06-21T07:35:53 |
facebook/react | 17ed6cc9a9de2bc6993c58d8e66c3de3e23ea16d | 1abea6c49de9deabdcad863d1ab67927fbdfa790 | [rust] Custom deserialization for more precise errors
The overall goal of this workstream is to have a Rust representation of ESTree
that we can use as the input and output of the compiler. In Rust environments we
can convert between the native AST of SWC or OXC and ESTree, and when invoked
from JavaScript we can ... | [
{
"path": "compiler/forget/crates/estree-codegen/src/codegen.rs",
"patch": "@@ -33,11 +33,6 @@ impl Grammar {\n operators,\n } = self;\n \n- let enum_names: HashSet<String> = enums.keys().cloned().collect();\n-\n- let mut node_names: Vec<_> = nodes.keys().cloned().collect()... | 2023-07-08T14:00:01 |
huggingface/transformers | 9599bfbb97a6cc009f30817a6d40ae42b5ffaa58 | 24c5bc4b1b6186a5d95e6e7359a21e48a4e9def2 | Fix kernels security issue (#44395)
* fix security vuln
* allow other repos with trust_remote_code
* fix default
* fix
* fix test
* change name
* switch name
* name
* update message
* move test
* update doc
* switch name
* doc | [
{
"path": "docs/source/en/kernel_doc/loading_kernels.md",
"patch": "@@ -55,6 +55,19 @@ model = AutoModelForCausalLM.from_pretrained(\n )\n ```\n \n+Note that for attention kernels, anything that is not part of the `kernels-community` repository (which is trusted - we may add more trusted repositories in the... | 2026-03-03T15:28:17 |
vercel/next.js | 733e4d6413ca65c7c03c1d0da0204c22af2c8854 | 88c47c222c8daf325384d87c74acfb89247b8a16 | test: fix snapshots in failing tests (#79254) | [
{
"path": "test/development/acceptance-app/error-recovery.test.ts",
"patch": "@@ -1,7 +1,14 @@\n /* eslint-env jest */\n import { createSandbox } from 'development-sandbox'\n import { FileRef, nextTestSetup } from 'e2e-utils'\n-import { check } from 'next-test-utils'\n+import {\n+ assertHasRedbox,\n+ chec... | 2025-05-15T20:53:15 |
golang/go | 47a56b2b6d2cca56384810027964968667b86fdc | 7bb192a1c56e2961b3eeffb8250615e395c903d4 | encoding/json: add cases to TestUnmarshal for fatal syntactic errors
The presence of a syntax error in the input immediately unmarshaling
before unmarshaling into the underlying value.
Otherwise, semantic errors are generally lazily reported and
allow unmarshaling to continue on.
Change-Id: Icf1cfc684e415312d9c8bf739... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -1170,6 +1170,23 @@ var unmarshalTests = []struct {\n \t\t\tN Number `json:\",string\"`\n \t\t}{\"5\"},\n \t},\n+\n+\t// Verify that syntactic errors are immediately fatal,\n+\t// while semantic errors are lazily reported\n+\t// (i.e., allow process... | 2025-01-11T20:48:33 |
ollama/ollama | 242df70a759695dc258c00f56fa373ab5c06b8b2 | dba39b2eee48d50f6e6c4aef102c710709bea765 | parsers: fix `&`s in qwen3coder parameter values
In <https://github.com/ollama/ollama/issues/12357> we that the model
will output tool calls such as
```
<function=shell>
<parameter=command>
pwd && ls -la
</parameter>
</function>
```
We parse this using the approach of transforming into valid xml and then
using an xm... | [
{
"path": "model/parsers/qwen3coder.go",
"patch": "@@ -393,18 +393,55 @@ func parseValue(raw string, paramType api.PropertyType) any {\n \treturn raw\n }\n \n-var qwenTagRegex = regexp.MustCompile(`<(\\w+)=([^>]+)>`)\n+var (\n+\tqwenTagRegex = regexp.MustCompile(`<(\\w+)=([^>]+)>`)\n+\tqwenXMLTagRegex = ... | 2025-09-20T19:10:58 |
electron/electron | 2bbbc66eb83b42041d768ea64f5ada9ed1ffd301 | 3cd52231341ca9a19704da356122c48a4dc33551 | build: build & release libcxx objects on darwin (#34586)
* build: build & release libcxx objects on darwin
* Fix merge error
Co-authored-by: Cheng Zhao <zcbenz@gmail.com> | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -794,8 +794,8 @@ step-maybe-generate-libcxx: &step-maybe-generate-libcxx\n if [ \"`uname`\" == \"Linux\" ]; then\n ninja -C out/Default electron:libcxx_headers_zip -j $NUMBER_OF_NINJA_PROCESSES\n ninja -C out/Default electron:libcxxab... | 2022-06-21T01:35:16 |
facebook/react | 750b1e6adb4b1525d5d77de5fa46c7a969a8a36f | 0c1193ecd7a1712e0097e075fcddb7f4c4fb2a8a | [rust] Partial ES2015 support in estree codegen
Adds some parts of the ES2015 spec, such as imports and ForOfStatement. This is
enough to get a few more fixtures compiling. The last one uses JSX which I
haven't defined yet. | [
{
"path": "compiler/forget/crates/estree-codegen/src/codegen.rs",
"patch": "@@ -168,6 +168,9 @@ pub struct Field {\n \n #[serde(default)]\n pub flatten: bool,\n+\n+ #[serde(default)]\n+ pub rename: Option<String>,\n }\n \n impl Field {\n@@ -193,11 +196,7 @@ impl Field {\n \"Can... | 2023-07-08T13:59:58 |
vercel/next.js | 88c47c222c8daf325384d87c74acfb89247b8a16 | 6258af666b1a979294ffb55bf67e8a168d3a92b5 | fix(dev-overlay): Ignore right clicks on the indicator draggable (#79120)
Without this change, right clicking on the indicator starts the drag action, which leads to janky behavior with the native browser context menu.
Only allow dragging with the primary mouse button.
I also tested this in the mobile simulator mode... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/dev-tools-indicator/draggable.tsx",
"patch": "@@ -186,6 +186,9 @@ export function useDrag(options: UseDragOptions) {\n }\n \n function onPointerDown(e: React.PointerEvent) {\n+ if (e.button !== 0) {\n+ return /... | 2025-05-15T20:43:50 |
huggingface/transformers | 2038dc5edb2b964370128d2e4921c6d6aec3ea16 | f6bd5abb8100b91260bd835c4846f72aa60c594b | [CB] Small fixes (#44227)
Scrap timer | [
{
"path": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py",
"patch": "@@ -52,9 +52,9 @@ def run_and_parse_cb_example(args: str) -> dict:\n results.append(run_and_parse_cb_example(\"--samples 100 --attn flash_attention_2\"))\n results.append(run_and_parse_cb_example(\"--samples 100 --a... | 2026-03-03T13:40:08 |
golang/go | 7bb192a1c56e2961b3eeffb8250615e395c903d4 | 44a6f817ea0fbeb3ba4aa398794c4e80dba13b1e | encoding/json: always check resulting Go value for unmarshaling
Even if an error occurs during unmarshal, check the resulting Go value.
The documented API specifies no guarantees on how much of a Go value
will be populated when an error occurs and the "json" package
is technically not bounded by the Go compatibility a... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -458,10 +458,10 @@ var unmarshalTests = []struct {\n \n \t// Z has a \"-\" tag.\n \t{CaseName: Name(\"\"), in: `{\"Y\": 1, \"Z\": 2}`, ptr: new(T), out: T{Y: 1}},\n-\t{CaseName: Name(\"\"), in: `{\"Y\": 1, \"Z\": 2}`, ptr: new(T), err: fmt.Errorf(\"... | 2025-01-10T19:49:07 |
ollama/ollama | dba39b2eee48d50f6e6c4aef102c710709bea765 | 9f3a37fd36bf1c46cc86a47bc5372535f8ee3547 | gemma: fix rope scaling for qat models (#12348)
* gemma: fix rope scaling for qat models
* gofumpt yourself | [
{
"path": "model/models/gemma2/model.go",
"patch": "@@ -128,7 +128,7 @@ func (sa *SelfAttention) Forward(ctx ml.Context, hiddenState, positionIDs ml.Ten\n }\n \n func (m *Model) Shift(ctx ml.Context, layer int, key, shift ml.Tensor) (ml.Tensor, error) {\n-\treturn fast.RoPE(ctx, key, shift, m.Options.attnKe... | 2025-09-19T22:04:40 |
facebook/react | a32a2baa73ce3d42b231e59cc582930666ac1e66 | 8176f25719da6f99be829f4e1400a10f34c6bff9 | [rust] Start of error handling
Until now i've freely used `panic!`, `unwrap()`, and friends for "error
handling". This PR switches to consistently returning `Result` within the HIR
builder, using a structured error representation that exploits helpers from
`thiserror` and `miette` crates. Miette has a super graphi... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -153,6 +153,15 @@ dependencies = [\n \"rustc-demangle\",\n ]\n \n+[[package]]\n+name = \"backtrace-ext\"\n+version = \"0.2.1\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"537beee3be4a18fb023b570f80e3ae28003db9167a7... | 2023-07-08T13:59:55 |
electron/electron | 6e9466f96b48fce7ca98cf308a9c6700ee90733a | e2f42e5d994a27f461e503b72934e3e4111ce29f | fix: overzealous media key listening on Windows (#34594) | [
{
"path": "patches/chromium/fix_media_key_usage_with_globalshortcuts.patch",
"patch": "@@ -59,10 +59,10 @@ index ad366d0fd4c3a637d75a102ab56984f0d01bfc04..d63eb133fd4bab1ea309bb8c742acf88\n // true if register successfully, or false if 1) the specificied |accelerator|\n // has been registered by anoth... | 2022-06-20T10:40:10 |
golang/go | 44a6f817ea0fbeb3ba4aa398794c4e80dba13b1e | 19e923182e590ae6568c2c714f20f32512aeb3e3 | cmd/compile: fix write barrier coalescing
We can't coalesce a non-WB store with a subsequent Move, as the
result of the store might be the source of the move.
There's a simple codegen test. Not sure how we might do a real test,
as all the repro's I've come up with are very expensive and unreliable.
Fixes #71228
Cha... | [
{
"path": "src/cmd/compile/internal/ssa/writebarrier.go",
"patch": "@@ -252,6 +252,7 @@ func writebarrier(f *Func) {\n \t\tvar start, end int\n \t\tvar nonPtrStores int\n \t\tvalues := b.Values\n+\t\thasMove := false\n \tFindSeq:\n \t\tfor i := len(values) - 1; i >= 0; i-- {\n \t\t\tw := values[i]\n@@ -263,... | 2025-01-11T01:33:26 |
huggingface/transformers | 28d02a31386a4dfd85e2a91f86b7dfcebd44596d | 41888df59eed5379467262000a4f68493d3fbced | Support non-gated experts (#44319)
* support non-gated moe experts
* fix tp test | [
{
"path": "src/transformers/integrations/moe.py",
"patch": "@@ -118,40 +118,50 @@ def batched_mm_experts_forward(\n \n # Handle invalid expert IDs from Expert Parallelism (EP)\n # When EP is enabled, tokens assigned to experts on other devices are marked with sentinel value >= num_experts\n- vali... | 2026-03-02T19:26:36 |
vercel/next.js | 6258af666b1a979294ffb55bf67e8a168d3a92b5 | 62de494f3c28e3a6e949a434047ea3023121d239 | docs: add missing links and imports to `cacheLife` and `cacheTag` for prerender-missing-suspense error (#79247)
One of the important resources for this message is `cacheLife` and
`cacheTag`, but the links were missing, and the snippet omitted imports,
which newcomers won't know how to import unless looking up. | [
{
"path": "errors/next-prerender-missing-suspense.mdx",
"patch": "@@ -34,6 +34,9 @@ export default async function Page() {\n After:\n \n ```jsx filename=\"app/page.js\"\n+import { unstable_cacheTag as cacheTag } from 'next/cache'\n+import { unstable_cacheLife as cacheLife } from 'next/cache'\n+\n async func... | 2025-05-15T19:28:50 |
ollama/ollama | 9f3a37fd36bf1c46cc86a47bc5372535f8ee3547 | 7460259eb3712a3cdb1dde40e25e36383ce4cea6 | fix: model load for unsupported embedding models (#12311)
with #12181, there's now support for embeddings in ollama engine.
this is done by mutating the architecture and adding _embed when it
detects an embedding model. however this introduced a bug where if
an embedding model was run based on an existing ollama engin... | [
{
"path": "model/model.go",
"patch": "@@ -107,23 +107,12 @@ func New(modelPath string, params ml.BackendParams) (Model, error) {\n \t\treturn nil, err\n \t}\n \n-\tarch := b.Config().Architecture()\n-\tif pooling.Type(b.Config().Uint(\"pooling_type\")) != pooling.TypeNone {\n-\t\tarch = arch + \"_embed\"\n-... | 2025-09-18T23:11:08 |
facebook/react | eb2c2f7c2cf2652a168c2b433d2989131c69754b | a19bbebbe36abd34efbd8f003e0f3bb55e0f1fdc | rename SuspenseList export to unstable_SuspenseList (#27061)
## Summary
as we began [discussing
yesterday](https://github.com/facebook/react/pull/27056#discussion_r1253282784),
`SuspenseList` is not actually stable yet, and should likely be exported
with the `unstable_` prefix.
the conversation yesterday bega... | [
{
"path": "fixtures/stacks/Example.js",
"patch": "@@ -38,7 +38,7 @@ function Example() {\n DisplayName,\n null,\n x(\n- React.SuspenseList,\n+ React.unstable_SuspenseList,\n null,\n x(\n NativeClass,",
"additions": 1,
"deletions": 1,
"lan... | 2023-07-06T18:09:53 |
electron/electron | e2f42e5d994a27f461e503b72934e3e4111ce29f | ec98e95b8ac48a313cd8acb1c723829e40b108df | chore: fix BrowserView painting when origin updated (#34581)
chore: fix View painting when origin updated | [
{
"path": "shell/browser/native_browser_view_views.cc",
"patch": "@@ -130,6 +130,9 @@ void NativeBrowserViewViews::SetBounds(const gfx::Rect& bounds) {\n view->SetBoundsRect(bounds);\n ResetAutoResizeProportions();\n \n+ view->InvalidateLayout();\n+ view->SchedulePaint();\n+\n // Ensure draggable re... | 2022-06-20T04:31:53 |
huggingface/transformers | 41888df59eed5379467262000a4f68493d3fbced | c1838e8b48096ce467b30819cd9fd927d809337b | Fix speculative tests that are flaky with SDPA (#44340)
* Fix speculative tests that are flaky with SDPA
* Use SDPA backends instead | [
{
"path": "tests/generation/test_utils.py",
"patch": "@@ -61,6 +61,7 @@\n if is_torch_available():\n import torch\n import torch.nn.functional as F\n+ from torch.nn.attention import SDPBackend, sdpa_kernel\n \n from transformers import (\n AutoModelForCausalLM,\n@@ -3392,29 +3393,30 @... | 2026-03-02T17:18:24 |
vercel/next.js | 9832e844e0f4460e24c87f00181cb6119dd7ed78 | b15817b46cd0f0328d272481220823d529302658 | docs: Fix syntax highlighting, add missing js code blocks (#79246) | [
{
"path": "docs/01-app/01-getting-started/07-server-and-client-components.mdx",
"patch": "@@ -70,7 +70,7 @@ Use **Server Components** when you need:\n \n For example, the `<Page>` component is a Server Component that fetches data about a post, and passes it as props to the `<LikeButton>` which handles clien... | 2025-05-15T14:36:57 |
golang/go | 932ec2be8d01e553a768df3709182abf2b579097 | d0c9142ce3b6fac83dadcc76ecfb85311431e743 | crypto/rsa: fix GenerateKey flakes for toy-sized keys
Could have fixed this some other ways, including inside the FIPS 140-3
module, but this is small and self-contained, clearly not affecting
production non-toy key sizes. This late in the freeze, a surgical fix
felt best.
Fixes #71185
Change-Id: I6a6a465641357c9d6b... | [
{
"path": "src/crypto/rsa/rsa.go",
"patch": "@@ -327,6 +327,21 @@ func GenerateKey(random io.Reader, bits int) (*PrivateKey, error) {\n \t}\n \n \tk, err := rsa.GenerateKey(random, bits)\n+\tif bits < 256 && err != nil {\n+\t\t// Toy-sized keys have a non-negligible chance of hitting two hard\n+\t\t// failu... | 2025-01-09T14:12:49 |
ollama/ollama | 22ccdd74c2a74e2955d2842e96642e78c05fd184 | 0c3d0e7533629322bb00d77244eb11d4c27665c6 | server: add unauthorized error to remote chat handler (#12338) | [
{
"path": "server/routes.go",
"patch": "@@ -259,7 +259,10 @@ func (s *Server) GenerateHandler(c *gin.Context) {\n \t\t\t\t\tc.JSON(http.StatusUnauthorized, gin.H{\"error\": \"error getting public key\"})\n \t\t\t\t\treturn\n \t\t\t\t}\n-\t\t\t\tc.JSON(http.StatusUnauthorized, gin.H{\"public_key\": pk})\n+\t... | 2025-09-18T22:40:31 |
electron/electron | ec98e95b8ac48a313cd8acb1c723829e40b108df | bf4efb693b571addc1b3ce8ed78288abdc9967a0 | fix: performance problem in `crashReporter.start()` on macOS (#34609)
fix: performance problem in crashReporter.start() on macOS
This change reduces the duration of crashReporter.start() on Intel macOS
from 622 milliseconds to 257 milliseconds!
Backports https://chromium-review.googlesource.com/c/crashpad/crash... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -111,3 +111,4 @@ make_gtk_getlibgtk_public.patch\n build_disable_print_content_analysis.patch\n custom_protocols_plzserviceworker.patch\n feat_filter_out_non-shareable_windows_in_the_current_application_in.patch\n+posix_replace_doubleforkandexec_with_forka... | 2022-06-20T04:31:29 |
facebook/react | 08e51d3fd72db5f11d9a1dd35480faa5d2305f65 | d3b9948b5e26b8e28e6f079acca7e435672fa4e8 | [rust] Pretty-printer for HIR
Implements a pretty-printer for the HIR and switches the fixture tests to use
this instead of the debug format. It's much more readable now!
Note that not all types are properly printed, I only implemented the
instructions and terminals used in the example. For others we fall back to... | [
{
"path": "compiler/forget/crates/fixtures/tests/fixtures/simple.js",
"patch": "@@ -1,4 +1,4 @@\n function test() {\n- [true, false, null, 1, 3.14, \"hello world!\"];\n+ [true, false, null, 1, 3.14, ...[\"hello world!\"]];\n return 2;\n }",
"additions": 1,
"deletions": 1,
"language": "JavaSc... | 2023-07-06T00:24:47 |
huggingface/transformers | c1838e8b48096ce467b30819cd9fd927d809337b | c4dd81800ae37cfd0e88628c56d59cc6f074d23f | [Bugfix] fix qwen3.5 no split module (#44382)
fix qwen3.5 no split module | [
{
"path": "src/transformers/models/qwen3_5/modeling_qwen3_5.py",
"patch": "@@ -1407,7 +1407,7 @@ class Qwen3_5Model(Qwen3_5PreTrainedModel):\n # Reference: fix gemma3 grad acc #37208\n accepts_loss_kwargs = False\n config: Qwen3_5Config\n- _no_split_modules = [\"Qwen3_5TextDecoderLayer\", \"Q... | 2026-03-02T16:16:38 |
golang/go | d0c9142ce3b6fac83dadcc76ecfb85311431e743 | c7c4420ae4b0e82b26606776fbd0e4fea97d37c9 | runtime/pprof: hide map runtime frames from heap profiles
Heap profiles hide "runtime" frames like runtime.mapassign. This broke
in 1.24 because the map implementation moved to internal/runtime/maps,
and runtime/pprof only considered literal "runtime." when looking for
runtime frames.
It would be nice to use cmd/inte... | [
{
"path": "src/runtime/pprof/pprof.go",
"patch": "@@ -555,7 +555,7 @@ func printStackRecord(w io.Writer, stk []uintptr, allFrames bool) {\n \t\tif name == \"\" {\n \t\t\tshow = true\n \t\t\tfmt.Fprintf(w, \"#\\t%#x\\n\", frame.PC)\n-\t\t} else if name != \"runtime.goexit\" && (show || !strings.HasPrefix(nam... | 2025-01-09T17:22:53 |
ollama/ollama | 0c3d0e7533629322bb00d77244eb11d4c27665c6 | eb0a5d44598b1ad29431e7574de187340bd3cf34 | build: avoid unbounded parallel builds (#12319)
With the addition of cuda v13, on a clean setup, the level of parallelism
was causing docker desktop to become overwhelmed and compilers
were crashing. This limits to 8 parallel per build stage, with the ability
to override if you have many more cores available. | [
{
"path": "Dockerfile",
"patch": "@@ -1,6 +1,7 @@\n # vim: filetype=dockerfile\n \n ARG FLAVOR=${TARGETARCH}\n+ARG PARALLEL=8\n \n ARG ROCMVERSION=6.3.3\n ARG JETPACK5VERSION=r35.4.1\n@@ -34,68 +35,75 @@ ENV LDFLAGS=-s\n FROM base AS cpu\n RUN dnf install -y gcc-toolset-11-gcc gcc-toolset-11-gcc-c++\n ENV P... | 2025-09-18T21:57:01 |
electron/electron | 20538c4f34a471677d40ef304e76ae46a3a3c3f1 | d2e539c7d4fb16615164222fd9568ed81d7aacc1 | fix: draggable regions updating on bounds change (#34582) | [
{
"path": "shell/browser/native_browser_view_views.cc",
"patch": "@@ -27,6 +27,9 @@ void NativeBrowserViewViews::SetAutoResizeFlags(uint8_t flags) {\n \n void NativeBrowserViewViews::UpdateDraggableRegions(\n const std::vector<mojom::DraggableRegionPtr>& regions) {\n+ if (&draggable_regions_ != ®ion... | 2022-06-17T10:01:38 |
huggingface/transformers | c4dd81800ae37cfd0e88628c56d59cc6f074d23f | 7c4c93752add1eea3358141cc7480bdcccfdf564 | Fix mutable default arguments and resource leaks (#44287)
* Fix mutable default arguments and resource leaks
Mutable defaults (shared state across calls):
- debug_utils.py: DebugUnderflowOverflow trace_batch_nums=[] -> None
- kernel_config.py: KernelConfig kernel_mapping={} -> None
- modeling_idefics.py: freeze_model... | [
{
"path": "src/transformers/debug_utils.py",
"patch": "@@ -142,7 +142,9 @@ class DebugUnderflowOverflow:\n Whether to abort after a certain batch number has finished\n \"\"\"\n \n- def __init__(self, model, max_frames_to_save=21, trace_batch_nums=[], abort_after_batch_num=None):\n+ def... | 2026-03-02T15:17:24 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.