pr_id
stringlengths
17
23
repo
stringclasses
6 values
pr_number
int64
14
316k
title
stringlengths
6
289
body
stringlengths
0
8k
author_login
stringclasses
344 values
author_is_bot
bool
2 classes
merged_at
stringdate
2013-05-30 11:42:50
2026-05-11 01:34:40
lines_added
int64
0
65.2k
lines_deleted
int64
0
68k
files_changed
int64
0
401
n_human_comments
int64
0
92
n_bot_comments
int64
0
29
n_reviews_human
int64
0
7
change_focus
float64
0
1
human_reviewer_engagement
float64
0
1
bot_reviewer_engagement
float64
0
1
test_inclusion
float64
0.3
1
ai_authored_probability
float64
0.05
0.95
ai_authored_signals
stringlengths
23
265
comment_hygiene
float64
0
1
license_spdx
stringclasses
3 values
composite_score
float64
0.18
0.93
diff_text
stringlengths
0
50k
quality_quartile
int8
1
4
BurntSushi/ripgrep#3165
BurntSushi/ripgrep
3,165
Add RISC-V (riscv64gc-unknown-linux-gnu) CI and release artifacts
**This PR adds official riscv64 Linux release artifacts so RISC-V developers can run ripgrep natively without cross-compiling.** ## Context & Purpose **Why**: ripgrep ships binaries for many platforms but not riscv64. Adding a riscv64 GNU artifact gives day-zero parity for RISC-V dev boards and CI and avoids fragment...
mariano-m13
false
2025-10-11T00:50:28Z
18
0
4
10
0
2
0.847458
0.98761
0
1
0.15
["Human voice present (context discussion, value proposition), specific technical rationale (cross-compilation, hardware bring-up), deliberate scope philosophy statement"]
1
Unlicense
0.929021
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -95,6 +95,10 @@ jobs: os: ubuntu-latest rust: stable target: s390x-unknown-linux-gnu + - build: stable-riscv64 + os: ubuntu-latest + rust: stable + target: riscv64gc-unknown-linux-gnu ...
1
django/django#16757
django/django
16,757
Fixed #34481 -- Added system check for reverse related fields in ModelAdmin.list_display.
Fixed [ticket #34481](https://code.djangoproject.com/ticket/34481) Add reverse related fields checking in admin module.
Bakdolot
false
2023-04-24T11:14:35Z
21
5
3
17
0
4
0.793651
1
0
1
0.15
["Human voice: specific ticket reference, focused description, minimal commits"]
1
BSD-3-Clause
0.924048
diff --git a/django/contrib/admin/checks.py b/django/contrib/admin/checks.py @@ -916,10 +916,13 @@ def _check_list_display_item(self, obj, item, label): id="admin.E108", ) ] - if isinstance(field, models.ManyToManyField): + if isinstance(field...
1
django/django#21227
django/django
21,227
Refs #36439 -- Added sync_to_async() to dummy password hasher path.
#### Trac ticket number ticket-36439 Follow-up to 748ca0a146175c4868ece87f5e845a75416c30e3. #### Branch description Since the existing user path eventually calls `sync_to_async()` in acheck_password, aim for parity with the nonexistent/inactive user branch by adding `sync_to_async()`. #### AI Assistance Disc...
jacobtylerwalls
false
2026-05-06T16:00:28Z
19
1
2
5
0
2
0.833333
0.788519
0
1
0.05
["Author explicitly states no AI tools used, specific Django ticket reference, coherent technical rationale"]
1
BSD-3-Clause
0.90713
diff --git a/django/contrib/auth/__init__.py b/django/contrib/auth/__init__.py @@ -1,5 +1,7 @@ import re +from asgiref.sync import sync_to_async + from django.apps import apps as django_apps from django.conf import settings from django.core.exceptions import ImproperlyConfigured, PermissionDenied @@ -407,6 +409,6...
1
django/django#20959
django/django
20,959
Fixed #36542 -- Marked authenticate() with @sensitive_variables() decorator.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A" if this is a trivial PR. --> [ticket-36542](https://code.djangoproject.com/ticket/36542) #### Branch description There are still sensitive information exposure at POST parameters in...
kanin-kearpimy
false
2026-04-24T18:19:16Z
53
0
3
30
4
5
0.653595
1
0.4
1
0.05
["Human-authored: explicit AI disclosure checkbox marked 'No', specific ticket reference, author voice in commit message with named reviewers"]
0.875
BSD-3-Clause
0.900539
diff --git a/django/contrib/auth/backends.py b/django/contrib/auth/backends.py @@ -3,6 +3,7 @@ from django.contrib.auth import get_user_model from django.contrib.auth.models import Permission from django.db.models import Exists, OuterRef, Q +from django.views.decorators.debug import sensitive_variables UserModel ...
1
django/django#21051
django/django
21,051
Fixed #37021 -- Added user_perm_str helper property to the Permission model.
#### Trac ticket number ticket-37021 #### Branch description Added `user_perm_str` helper function that can be used when checking user permission using has_perm(). Added docs and changelog entry. Added test. #### AI Assistance Disclosure (REQUIRED) <!-- Please select exactly ONE of the following: --> - [x...
Mariatta
false
2026-04-07T19:38:35Z
31
0
5
8
0
3
0.763359
0.921698
0
1
0.15
["Explicit 'No AI tools were used' disclosure, human co-author listed, specific ticket reference, and natural commit message"]
1
BSD-3-Clause
0.899928
diff --git a/django/contrib/auth/models.py b/django/contrib/auth/models.py @@ -79,6 +79,11 @@ class Meta: def __str__(self): return "%s | %s" % (self.content_type, self.name) + @property + def user_perm_str(self): + """String representation for the user permission check.""" + return ...
1
django/django#21110
django/django
21,110
Fixed #37036 -- Fixed TypeError when using defer() with FETCH_PEERS on FK fields.
#### Trac ticket number ticket-37036 #### Branch description `DeferredAttribute.fetch_many()` used `.values_list(attname).in_bulk()` to batch-load deferred field values for peer instances. Without `flat=True`, `in_bulk()` returns values as single-element tuples (e.g., `(None,)`) rather than scalar values (e.g....
garybadwal
false
2026-04-18T13:39:50Z
29
1
4
12
3
3
0.769231
1
0.3
1
0.05
["Author explicitly discloses no AI tools used; specific technical explanation with error details and root cause analysis; single focused commit with clear intent"]
0.636364
BSD-3-Clause
0.899021
diff --git a/AUTHORS b/AUTHORS @@ -422,6 +422,7 @@ answer newbie questions, and generally made Django that much better: Grzegorz Ślusarek <grzegorz.slusarek@gmail.com> Guilherme Mesquita Gondim <semente@taurinus.org> Guillaume Pannatier <guillaume.pannatier@gmail.com> + Gurpreet Singh <https://www.gar...
1
django/django#21145
django/django
21,145
Fixed #37053 -- Added validate=True to base64.b64decode() calls.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A - typo" for typo fixes. --> ticket-37053 #### Branch description Provide a concise overview of the issue or rationale behind the proposed changes. #### AI Assistance Disclosure (R...
sarahboyce
false
2026-05-06T00:13:40Z
58
15
8
10
0
4
0.578035
0.98761
0
1
0.15
["Human-authored Django contribution with explicit AI disclosure limited to release notes only"]
1
BSD-3-Clause
0.888608
diff --git a/django/contrib/auth/hashers.py b/django/contrib/auth/hashers.py @@ -422,7 +422,7 @@ def decode(self, encoded): variety, *_, b64salt, hash = rest.split("$") # Add padding. b64salt += "=" * (-len(b64salt) % 4) - salt = base64.b64decode(b64salt).decode("latin1") + salt...
1
django/django#20027
django/django
20,027
Fixed #20024 -- Fixed handling of __in lookups with None in exclude().
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number, or delete the line and write "N/A" if this is a trivial PR. --> ticket-20024 #### Branch description **Problem** The SQL generated by an exclude queryset is not semantically aligned with the queryset when using `__in` lookups...
Eddy-123
false
2026-04-02T15:24:26Z
39
8
3
25
1
4
0.680272
1
0.1
1
0.15
["Human voice evident in commit message credits and problem/solution format; specific technical issue with SQL semantics; Trac ticket reference typical of Django project"]
0.8
BSD-3-Clause
0.882041
diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py @@ -13,7 +13,7 @@ import sys import warnings from collections import Counter, namedtuple -from collections.abc import Iterator, Mapping +from collections.abc import Iterable, Iterator, Mapping from itertools import chain, count, product fro...
1
django/django#21239
django/django
21,239
Fixed #37085 -- Added support for object-based form media stylesheet assets.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A - typo" for typo fixes. --> ticket-37085 #### Branch description Extracted from https://github.com/django/django/pull/21010. #### AI Assistance Disclosure (REQUIRED) <!-- Please ...
nessita
false
2026-05-07T14:49:12Z
98
32
4
20
0
4
0.434783
1
0
1
0.05
["Explicit disclosure: No AI tools were used; human-authored with specific co-authors and acknowledgments"]
0.777778
BSD-3-Clause
0.877995
diff --git a/django/forms/widgets.py b/django/forms/widgets.py @@ -24,6 +24,7 @@ __all__ = ( "Script", + "Stylesheet", "Media", "MediaDefiningClass", "Widget", @@ -123,6 +124,13 @@ def __init__(self, src, **attributes): super().__init__(src, **attributes) +class Stylesheet(MediaAs...
1
django/django#20730
django/django
20,730
Fixed #36919 -- Allowed Task and TaskResult to be pickled.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A" if this is a trivial PR. --> ticket-36919 #### Branch description Task instances couldn’t be pickled earlier. The change serializes the function as a dotted import path and rec...
varunkasyap
false
2026-04-30T12:12:09Z
47
1
3
20
1
5
0.675676
1
0.1
1
0.15
["Author explicitly disclosed AI assistance only for tests, not main code; specific technical approach described; single focused commit"]
0.75
BSD-3-Clause
0.876351
diff --git a/django/tasks/base.py b/django/tasks/base.py @@ -1,5 +1,5 @@ from collections.abc import Callable -from dataclasses import dataclass, field, replace +from dataclasses import dataclass, field, fields, replace from datetime import datetime from inspect import isclass, iscoroutinefunction from typing impor...
1
pandas-dev/pandas#65332
pandas-dev/pandas
65,332
BUG: fix empty groupby(..., as_index=False).apply(...) index name inconsistency
Closes #48135 ### What happened `DataFrame.groupby(..., as_index=False).apply(...)` behaved differently for empty vs non-empty input: - non-empty input -> `result.index.names == [None]` - empty input -> `result.index.names == ['A']` (group key name) ### What this PR changes In the empty-values path of `Data...
Ashish-ml-eng
false
2026-05-05T21:34:23Z
28
1
3
9
1
2
0.775194
0.956304
0.1
1
0.15
["Human voice present: explicit issue reference, technical explanation of inconsistency, specific code paths mentioned"]
0.666667
BSD-3-Clause
0.872022
diff --git a/doc/source/whatsnew/v3.1.0.rst b/doc/source/whatsnew/v3.1.0.rst @@ -324,6 +324,7 @@ Groupby/resample/rolling ^^^^^^^^^^^^^^^^^^^^^^^^ - Bug in :meth:`.DataFrameGroupBy.agg` when there are no groups, multiple keys, and ``group_keys=False`` (:issue:`51445`) - Bug in :meth:`.DataFrameGroupBy.agg` would ope...
1
pandas-dev/pandas#63915
pandas-dev/pandas
63,915
BUG:to_datetime with origin
When pass in parameter origin to to_datetime will truncate time in origin. This fix preserves time in origin. Closes https://github.com/pandas-dev/pandas/issues/63419 - [x] closes #xxxx (Replace xxxx with the GitHub issue number) - [x] [Tests added and passed](https://pandas.pydata.org/pandas-docs/dev/developmen...
Sharl0tteIsTaken
false
2026-05-08T19:11:55Z
80
28
3
92
0
2
0.480769
1
0
1
0.15
["Natural commit messages with typos/informal tone, specific issue reference, author followed contribution checklist"]
0.941176
BSD-3-Clause
0.871233
diff --git a/doc/source/whatsnew/v3.1.0.rst b/doc/source/whatsnew/v3.1.0.rst @@ -224,6 +224,7 @@ Datetimelike - Bug in :func:`date_range` where calendar-based offsets (e.g. ``MS``, ``ME``, ``QS``, ``YS``) could exclude the last offset boundary when ``end``'s time-of-day was earlier than ``start``'s (:issue:`35342`) -...
1
pandas-dev/pandas#65413
pandas-dev/pandas
65,413
BUG: Categorical.map with defaultdict replaces NA with NaN
closes #62710 ## Problem `Series.map()` on a categorical column with a `defaultdict` and `na_action=None` incorrectly replaces `NA` values with `float("NaN")` instead of mapping them through the defaultdict's default factory. **Reproducer (before fix):** <img width="940" height="493" alt="image" src="http...
Mahajan-Sachin
false
2026-05-06T00:46:18Z
28
1
3
9
0
2
0.775194
0.956304
0
1
0.15
["Human authorship evident: specific issue reference, detailed root cause analysis with technical explanation, author voice in problem statement"]
0.6
BSD-3-Clause
0.870355
diff --git a/doc/source/whatsnew/v3.1.0.rst b/doc/source/whatsnew/v3.1.0.rst @@ -209,6 +209,7 @@ Bug fixes Categorical ^^^^^^^^^^^ - Bug in :meth:`Categorical.__repr__` where the values and categories lines could exceed ``display.width`` (:issue:`12066`) +- Bug in :meth:`Categorical.map` where mapping with a ``defau...
1
django/django#20456
django/django
20,456
Fixed #36816 -- Allowed **kwargs in @task decorator to support custom Task subclasses
#### Trac ticket number ticket-36816 #### Branch description The `task` decorator was updated to accept `**kwargs` and forward them to task_class, allowing additional parameters to be passed to custom Task subclasses. #### Checklist - [x] This PR targets the `main` branch. <!-- Backports will be evaluated an...
nileshpahari
false
2026-04-07T18:06:12Z
106
11
5
13
1
2
0.460829
1
0.1
1
0.15
["Human-authored: specific ticket reference, checklist completion, author following Django conventions"]
1
BSD-3-Clause
0.869124
diff --git a/django/tasks/base.py b/django/tasks/base.py @@ -43,11 +43,11 @@ class TaskResultStatus(TextChoices): @dataclass(frozen=True, slots=True, kw_only=True) class Task: - priority: int func: Callable[..., Any] # The Task function. - backend: str - queue_name: str - run_after: datetime | Non...
1
django/django#20327
django/django
20,327
Fixed #27150 -- Made base File objects truthy by default.
#### Trac ticket number ticket-27150 #### Branch description Originally, this PR proposed a documentation update. However, following the consensus reached [here](https://code.djangoproject.com/ticket/27150#comment:11). The base File class previously fell back to ``__len__ for boolean`` evaluation because it l...
VIZZARD-X
false
2026-04-14T11:32:08Z
18
5
5
7
0
4
0.813008
0.883011
0
1
0.15
["Human voice in description, specific technical details, references to consensus discussion"]
0.666667
BSD-3-Clause
0.864371
diff --git a/django/core/files/base.py b/django/core/files/base.py @@ -20,10 +20,10 @@ def __str__(self): return self.name or "" def __repr__(self): - return "<%s: %s>" % (self.__class__.__name__, self or "None") + return "<%s: %s>" % (self.__class__.__name__, self.name or "None") d...
1
django/django#20385
django/django
20,385
Fixed #35951 -- Updated timezone diff note on time inputs in admin panel.
#### Trac ticket number [ticket-35951](https://code.djangoproject.com/ticket/35951) #### Branch description The existing note that is shown to the users when entering a time value from a different timezone than the server's timezone was not descriptive enough and led to confusion. This commit updates the note to e...
vkaracic
false
2026-04-29T15:28:14Z
34
9
3
8
1
1
0.699301
0.821698
0.1
1
0.15
["Human voice present with internal process details, specific ticket reference, and natural incomplete thought at PR body end"]
1
BSD-3-Clause
0.86032
diff --git a/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js b/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js @@ -82,22 +82,32 @@ return; } + const serverTimezone = + document.body.dataset.adminServerTimezone || gettext("server")...
1
django/django#19743
django/django
19,743
Fixed `#15759` - Excluded formset fields by per-object permissions
ticket-15759 Fixed handling of list_editable fields in the Django admin for objects with per-object permissions. Updated changelist formset logic to remove editable fields for objects the user cannot change, ensuring that form submissions only update permitted objects and preventing permission-related crashes. ##...
artirix1927
false
2026-04-22T14:13:58Z
104
26
3
23
2
3
0.434783
1
0.2
1
0.15
["Human voice present (incomplete thought), specific ticket references, ad-hoc commit messages"]
1
BSD-3-Clause
0.860217
diff --git a/django/contrib/admin/options.py b/django/contrib/admin/options.py @@ -2022,6 +2022,47 @@ def _get_list_editable_queryset(self, request, prefix): return queryset return queryset.filter(pk__in=object_pks) + def _get_formset_with_permissions(self, request, queryset): + """ + ...
1
django/django#20273
django/django
20,273
Fixed #36767 -- Allowed max redirect URL length to be set on HttpResponseRedirect.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number, or delete the line and write "N/A" if this is a trivial PR. --> ticket-36767 #### Branch description Currently, Django blocks very long redirect URLs due to a hardcoded length limit. This PR adds an optional max_length p...
varunkasyap
false
2026-05-04T21:09:21Z
92
16
7
16
0
1
0.480769
1
0
1
0.15
["Human voice evident in PR structure, specific ticket reference, and natural description of feature work"]
0.8
BSD-3-Clause
0.857115
diff --git a/django/http/response.py b/django/http/response.py @@ -632,13 +632,20 @@ def set_headers(self, filelike): class HttpResponseRedirectBase(HttpResponse): allowed_schemes = ["http", "https", "ftp"] - def __init__(self, redirect_to, preserve_request=False, *args, **kwargs): + def __init__( + ...
1
microsoft/vscode#306955
microsoft/vscode
306,955
guarantee that return of TreeDataProvider.getChildren() is not mutated by vscode
@alexr00, this is corrected version of #306081 Sorry, I didn’t take into account that implementations may call `getChildren` themselves. This makes it impossible to accept `readonly T[]` in the public API without breaking changes. However, some work had already been done, so I converted this from a restriction in...
n-gist
false
2026-05-07T10:42:47Z
26
24
8
6
3
3
0.666667
0.839151
0.3
1
0.15
["Human voice present ('I didn't take into account'), references previous PR context, specific technical reasoning about breaking changes"]
1
MIT
0.849788
diff --git a/src/vs/workbench/api/browser/mainThreadTreeViews.ts b/src/vs/workbench/api/browser/mainThreadTreeViews.ts @@ -292,12 +292,12 @@ class TreeViewDataProvider implements ITreeViewDataProvider { this.hasResolve = this._proxy.$hasResolve(this.treeViewId); } - async getChildren(treeItem?: ITreeItem): Promi...
1
django/django#21206
django/django
21,206
Fixed #37074 -- Synced admin calendar today highlight with server time.
#### Trac ticket number ticket-37074 #### Branch description This PR resolves a timezone discrepancy in the admin datetime widget where the highlighted "today" on the calendar popup did not match the date inserted by the "Today" shortcut button. Previously, the "Today" shortcut used the server's timezone, but the ...
SnippyCodes
false
2026-05-08T17:04:26Z
46
13
3
13
1
1
0.628931
0.966821
0.1
1
0.25
["Explicit AI disclosure with verification claim, but natural author voice and specific technical problem description"]
0.9
BSD-3-Clause
0.846045
diff --git a/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js b/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js @@ -52,17 +52,7 @@ }, // Return the current time while accounting for the server timezone. now: function () { - const serverOffset = docume...
1
django/django#20889
django/django
20,889
Fixed #36973 -- Made fields.E348 detect accessor and manager name clashes for relationships across different models.
ticket-36973 ticket-22977 Previously the check only identified the clash if it happened in a self-referential relationship. Trying to make it work across different models made it easier to identify the issue reported in ticket-36973. #### AI Assistance Disclosure (REQUIRED) <!-- Please select exactly ONE of the ...
cliffordgama
false
2026-04-02T19:54:23Z
52
25
3
11
0
3
0.564972
1
0
1
0.25
["Author explicitly disclosed Claude use for 'initial review' only, with human verification stated; commit messages are specific and natural; no bulk of auto-generated code apparent"]
0.857143
BSD-3-Clause
0.84546
diff --git a/django/db/models/fields/related.py b/django/db/models/fields/related.py @@ -348,6 +348,24 @@ def _check_clashes(self): ) ) + # Check clash between reverse accessor and manager names on + # the target model. + if not rel_is_hidden: + ma...
1
django/django#21035
django/django
21,035
Fixed #36949 -- Improved RelatedFieldWidgetWrapper <labels>.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A - typo" for typo fixes. --> ticket-36949 #### Branch description Improved rendering of `RelatedFieldWidgetWrapper`. Previously it rendered all fields in a `<fieldset>` with legend. T...
smithdc1
false
2026-04-02T15:09:37Z
68
2
4
5
0
2
0.588235
0.688519
0
1
0.05
["Author explicitly checked 'No AI tools were used' with specific disclosure checkbox, has concrete ticket reference and technical detail about regression"]
1
BSD-3-Clause
0.845365
diff --git a/django/contrib/admin/widgets.py b/django/contrib/admin/widgets.py @@ -28,6 +28,8 @@ class FilteredSelectMultiple(forms.SelectMultiple): catalog has been loaded in the page """ + use_fieldset = True + class Media: js = [ "admin/js/core.js", @@ -300,7 +302,7 @@ def _...
1
microsoft/vscode#298040
microsoft/vscode
298,040
MCP Gateway: avoid blocking list calls on startup
Fixes #297780 ## Summary - Avoid blocking MCP gateway list calls (tools/list, resources/list, resources/templates/list) on slow server startup - Refresh servers in the background when cache state is Unknown/Outdated ## Rationale These list endpoints were awaiting server startup, causing large TTFT when the gateway is...
RajeshKumar11
false
2026-03-04T00:13:12Z
134
21
2
9
2
2
0.392157
0.956304
0.2
1
0.15
["Human voice present ('Fixes #297780', specific technical rationale); ad-hoc merge commits; specific implementation details (5s grace period)"]
1
MIT
0.8429
diff --git a/src/vs/workbench/contrib/mcp/common/mcpGatewayToolBrokerChannel.ts b/src/vs/workbench/contrib/mcp/common/mcpGatewayToolBrokerChannel.ts @@ -30,8 +30,16 @@ export class McpGatewayToolBrokerChannel extends Disposable implements IServerCh private readonly _serverIdMap = new Map<string, number>(); private ...
1
django/django#21208
django/django
21,208
Fixed #37079 -- Fixed specialization of header lookups in RemoteUserMiddleware.
#### Trac ticket number ticket-37079 #### Branch description We need to switch on whether the request is a WSGI or ASGI request to know whether to prepend `HTTP_`: we cannot assume sync exceution means we are running under WSGI, as there could be other sync middleware forcing sync execution under ASGI. Thanks @...
jacobtylerwalls
false
2026-05-04T17:58:50Z
38
2
2
5
0
3
0.714286
0.788519
0
1
0.05
["Author explicitly disclosed no AI tools used, specific technical reasoning about WSGI/ASGI request detection, references to reporter and ticket numbers"]
0.5
BSD-3-Clause
0.839273
diff --git a/django/contrib/auth/middleware.py b/django/contrib/auth/middleware.py @@ -8,6 +8,7 @@ from django.contrib.auth.backends import RemoteUserBackend from django.contrib.auth.views import redirect_to_login from django.core.exceptions import ImproperlyConfigured +from django.core.handlers.asgi import ASGIRequ...
1
django/django#21156
django/django
21,156
Fixed #37060 -- Propagated AlterField through attname-based to_field …
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A - typo" for typo fixes. --> ticket-37060 #### Branch description `AlterField` propagated type changes correctly when a transitive relation used `to_field` with the remote field name,...
sipa-echo-zaoa
false
2026-05-07T12:02:51Z
122
12
3
11
6
2
0.42735
1
0.6
1
0.15
["Human voice in technical explanation, specific ticket reference, detailed problem description"]
1
BSD-3-Clause
0.839103
diff --git a/django/db/backends/base/schema.py b/django/db/backends/base/schema.py @@ -36,7 +36,10 @@ def _is_relevant_relation(relation, altered_field): # Foreign key constraint on the primary key, which is being altered. return True # Is the constraint targeting the field being altered? - re...
1
django/django#21092
django/django
21,092
Fixed #37028 -- Added BitAnd(), BitOr(), and BitXor() aggregates.
ticket-37028 #### AI Assistance Disclosure (REQUIRED) <!-- Please select exactly ONE of the following: --> - [x] **No AI tools were used** in preparing this PR. - [ ] **If AI tools were used**, I have disclosed which ones, and fully reviewed and verified their output.
felixxm
false
2026-04-18T06:53:21Z
341
78
13
30
0
3
0.192678
1
0
1
0.05
["Author explicitly states no AI tools were used; natural commit message with attribution"]
0.75
BSD-3-Clause
0.838902
diff --git a/django/contrib/postgres/aggregates/general.py b/django/contrib/postgres/aggregates/general.py @@ -1,16 +1,20 @@ import warnings from django.contrib.postgres.fields import ArrayField -from django.db.models import Aggregate, BooleanField, JSONField +from django.db.models import Aggregate +from django.db....
1
django/django#20532
django/django
20,532
Refs #35440 -- Optimized `parse_header_parameters` for common cases.
EDIT: only one of the two fast paths described here was merged, see https://github.com/django/django/pull/20532#pullrequestreview-4070325627. #### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A" if this is a trivial PR. --> ticket-3544...
p-r-a-v-i-n
false
2026-04-08T21:30:06Z
4
0
1
10
1
4
0.961538
0.98761
0.1
0.3
0.15
["Author voice present, specific technical implementation details, benchmark results with caveats, natural explanation of tradeoffs"]
1
BSD-3-Clause
0.836133
diff --git a/django/utils/http.py b/django/utils/http.py @@ -342,6 +342,10 @@ def parse_header_parameters(line, max_length=MAX_HEADER_LENGTH): if max_length is not None and len(line) > max_length: raise ValueError("Unable to parse header parameters (value too long).") + # Fast path for no params. + ...
1
django/django#21199
django/django
21,199
Fixed #37078 -- Deprecated SHA-1 default for salted_hmac() and base64_hmac() algorithm
#### Trac ticket number ticket-37078 #### Branch description Deprecated the default value of the algorithm argument in `django.utils.crypto.salted_hmac()` and `django.core.signing.base64_hmac()`, which will change from 'sha1' to 'sha256' in Django 7.0. #### AI Assistance Disclosure (REQUIRED) - [x] **If ...
dennybiasiolli
false
2026-05-04T17:45:17Z
74
6
6
8
1
3
0.555556
0.921698
0.1
1
0.25
["AI tool disclosed but author conducted full review; natural commit message and checklist completion suggest human primary authorship"]
1
BSD-3-Clause
0.833758
diff --git a/django/core/signing.py b/django/core/signing.py @@ -38,10 +38,12 @@ import datetime import json import time +import warnings import zlib from django.conf import settings from django.utils.crypto import constant_time_compare, salted_hmac +from django.utils.deprecation import RemovedInDjango70Warning...
1
django/django#21152
django/django
21,152
Fixed #37057 -- Adjusted UniqueConstraint handling of UNKNOWN condition.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A - typo" for typo fixes. --> ticket-37057 #### Branch description When we adjusted `UNKNOWN` handling for `CheckConstraint` in refs #16038 (ticket-33996) we assumed that all usage o...
charettes
false
2026-04-22T21:28:36Z
22
7
3
4
0
1
0.775194
0.528634
0
1
0.05
["Author explicitly disclosed no AI tools used, specific technical context with ticket references, and thoughtful explanation of constraint handling differences"]
1
BSD-3-Clause
0.833438
diff --git a/django/db/models/constraints.py b/django/db/models/constraints.py @@ -6,6 +6,8 @@ from django.db import connections from django.db.models.constants import LOOKUP_SEP from django.db.models.expressions import Exists, ExpressionList, F, RawSQL +from django.db.models.fields import BooleanField +from django....
1
microsoft/vscode#304316
microsoft/vscode
304,316
Use skill folder as primary identifier
<!-- Thank you for submitting a Pull Request. Please: * Read our Pull Request guidelines: https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests * Associate an issue with the Pull Request. * Ensure that the code is up-to-date with the `main` branch. * Include a description of the proposed chang...
pwang347
false
2026-03-24T20:28:26Z
4
3
3
2
1
3
0.934579
0.560849
0.1
1
0.15
["Human author voice present with specific context and reasoning"]
1
MIT
0.830399
diff --git a/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.ts b/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.ts @@ -1477,9 +1477,10 @@ export class PromptsService extends Disposable implements IPromptsService { this.logger.debug(`[computeSkillDiscover...
1
django/django#20903
django/django
20,903
Fixed #10919 -- Added ModelAdmin option to truncate delete confirmation object list.
#### Trac ticket number ticket-10919 #### Branch description The original ticket proposed adding an option to limit or hide the list of related objects shown on the delete confirmation page. This list can become very long, especially for complex object graphs, because related items are rendered recursively. As...
rodbv
false
2026-04-23T02:22:55Z
374
36
18
53
1
2
0.196078
1
0.1
1
0.15
["Human voice present with specific implementation details, ticket references, and design rationale"]
1
BSD-3-Clause
0.829412
diff --git a/django/contrib/admin/actions.py b/django/contrib/admin/actions.py @@ -70,6 +70,7 @@ def delete_selected(modeladmin, request, queryset): "subtitle": None, "objects_name": str(objects_name), "deletable_objects": [deletable_objects], + "delete_confirmation_max_display": model...
1
pandas-dev/pandas#64379
pandas-dev/pandas
64,379
PERF: improve performance with ZoneInfo timezones (get internal transitions/deltas to avoid slow python path)
- [x] closes #64363, closes #58962 - [ ] [Tests added and passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#writing-tests) if fixing a bug or adding a new feature - [x] All [code checks passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#...
kjmin622
false
2026-05-06T08:45:11Z
159
4
3
52
0
4
0.380228
1
0
1
0.25
["Last checklist item mentions AI usage with AGENTS.md guideline, but specific performance optimization work and ad-hoc commit messages suggest human-driven debugging"]
0.941176
BSD-3-Clause
0.826152
diff --git a/pandas/_libs/tslibs/timezones.pyx b/pandas/_libs/tslibs/timezones.pyx @@ -4,6 +4,7 @@ from datetime import ( timezone, ) import zoneinfo +from zoneinfo._zoneinfo import ZoneInfo as _ZoneInfo from pandas.compat._optional import import_optional_dependency @@ -211,6 +212,8 @@ cdef object tz_cache_...
1
evanw/esbuild#186
evanw/esbuild
186
fix(externals): exclude external child paths from the bundle
As an example, if `aws-sdk` is an external, imports from `aws-sdk/clients/dynamodb` must be excluded from the bundle as well. Does it make sense @evanw ?
floydspace
false
2020-06-28T08:02:14Z
40
1
2
3
0
2
0.70922
0.65534
0
1
0.15
["Human voice present ('Does it make sense @evanw?'), specific technical context, casual commit message phrasing"]
1
MIT
0.825218
diff --git a/internal/bundler/bundler_test.go b/internal/bundler/bundler_test.go @@ -4846,6 +4846,44 @@ render(h(App, null), document.getElementById("app")); }) } +func TestExternalModuleExclusion(t *testing.T) { + expectBundled(t, bundled{ + files: map[string]string{ + "/index.js": ` + import { S3 } from 'a...
1
microsoft/vscode#307960
microsoft/vscode
307,960
fix: handle heredoc/multiline commands in terminal tool execution
Fixes #288896 Fixes https://github.com/microsoft/vscode/issues/312260 When the Copilot agent sends heredoc or multiline commands to the terminal, `normalizeCommandForExecution()` collapses all newlines to spaces, destroying the heredoc structure. The shell then receives a single line instead of the multi-line hered...
maruthang
false
2026-04-24T03:11:51Z
160
10
7
9
0
2
0.37037
0.856304
0
1
0.15
["Human voice present with specific technical decisions and merge conflict resolution details"]
1
MIT
0.824632
diff --git a/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/executeStrategy/basicExecuteStrategy.ts b/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/executeStrategy/basicExecuteStrategy.ts @@ -17,6 +17,7 @@ import { ITerminalInstance } from '../../../../terminal/browser/terminal.js'; ...
1
evanw/esbuild#2188
evanw/esbuild
2,188
Make TS InstantiationExpr parsing more permissive
This PR allows: ```ts const x4 = f<true> if (true) {} ``` Previously it's an error. References: - https://github.com/microsoft/TypeScript/issues/48654 - https://github.com/microsoft/TypeScript/pull/48659
g-plane
false
2022-04-19T04:04:56Z
78
29
3
5
0
2
0.483092
0.788519
0
1
0.15
["Human voice, specific TypeScript issue references, ad-hoc commit messages"]
1
MIT
0.824594
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -6,11 +6,22 @@ The upcoming version of TypeScript adds the `moduleSuffixes` field to `tsconfig.json` that introduces more rules to import path resolution. Setting `moduleSuffixes` to `[".ios", ".native", ""]` will try to look at the the relative files `./foo.ios.ts`, `...
1
django/django#21129
django/django
21,129
Fixed #37046 -- Allowed Ready for checkin Trac status in PR checks.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A - typo" for typo fixes. --> ticket-37046 #### Branch description When a Trac is marked as "Ready for checkin" the PR is being flagged by the script. I have modified check in `che...
varunkasyap
false
2026-04-19T12:05:55Z
36
27
3
7
0
2
0.613497
0.783011
0
1
0.05
["Human-authored: explicit no-AI disclosure, specific Trac ticket reference, natural problem statement"]
0.5
BSD-3-Clause
0.822777
diff --git a/scripts/pr_quality/check_pr.py b/scripts/pr_quality/check_pr.py @@ -57,6 +57,8 @@ PR_TEMPLATE_DATE = date(2024, 3, 4) # 3fcef50 -- PR template introduced AI_DISCLOSURE_DATE = date(2026, 1, 8) # 4f580c4 -- AI disclosure added +ALLOWED_STAGES = ("Accepted", "Ready for checkin") + logger = logging.getL...
1
django/django#20962
django/django
20,962
Fixed #36991 -- Raised BadRequest for invalid encodings in Content-Type headers.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A" if this is a trivial PR. --> ticket-36991 #### Trac ticket number #36991 #### Branch description Fixed LookupError crash in parse_header_parameters() when Content-Type header ...
DineshThumma9
false
2026-04-22T18:25:09Z
39
4
4
6
0
2
0.699301
0.839151
0
1
0.15
["Human voice with specific problem/solution structure, references internal ticket system, but disclosure section cut off"]
0.5
BSD-3-Clause
0.819683
diff --git a/django/http/request.py b/django/http/request.py @@ -155,9 +155,12 @@ def accepts(self, media_type): def _set_content_type_params(self, meta): """Set content_type, content_params, and encoding.""" - self.content_type, self.content_params = parse_header_parameters( - meta.ge...
1
django/django#21069
django/django
21,069
Fixed #37024 -- Made SITE_ID system check validation use Site._meta.pk.
ticket-37024 The patch was validated on MongoDB with these modifications: ```diff diff --git a/tests/sites_tests/tests.py b/tests/sites_tests/tests.py index d46c955a87..bc725a58f7 100644 --- a/tests/sites_tests/tests.py +++ b/tests/sites_tests/tests.py @@ -205,13 +205,13 @@ class SitesFrameworkTests(TestCase):...
timgraham
false
2026-04-19T06:04:22Z
41
11
3
3
0
2
0.657895
0.65534
0
1
0.15
["Human voice present; specific ticket reference; technical validation details with code diffs; ad-hoc commit message"]
1
BSD-3-Clause
0.817519
diff --git a/django/contrib/sites/checks.py b/django/contrib/sites/checks.py @@ -1,14 +1,30 @@ -from types import NoneType - from django.conf import settings from django.core.checks import Error +from django.core.exceptions import ValidationError def check_site_id(app_configs, **kwargs): - if hasattr(settings...
1
django/django#21022
django/django
21,022
Fixed #36912 -- Added connector validation to Q.create().
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A - typo" for typo fixes. --> [ticket-36912](https://code.djangoproject.com/ticket/36912) #### Branch description Added validation to Q.create() to ensure that it validates connectors ...
amakarudze
false
2026-04-28T10:42:49Z
13
4
2
3
1
2
0.854701
0.55534
0.1
1
0.15
["Human-authored: specific ticket reference, investigation details, benchmarking discussion, co-author attribution"]
1
BSD-3-Clause
0.81704
diff --git a/django/db/models/query_utils.py b/django/db/models/query_utils.py @@ -51,15 +51,24 @@ class Q(tree.Node): connectors = (None, AND, OR, XOR) def __init__(self, *args, _connector=None, _negated=False, **kwargs): - if _connector not in self.connectors: - connector_reprs = ", ".jo...
1
microsoft/vscode#311797
microsoft/vscode
311,797
Update skill parsing behaviour
<!-- Thank you for submitting a Pull Request. Please: * Read our Pull Request guidelines: https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests * Associate an issue with the Pull Request. * Ensure that the code is up-to-date with the `main` branch. * Include a description of the proposed chang...
pwang347
false
2026-04-24T20:02:36Z
301
100
8
10
3
4
0.199601
0.98761
0.3
1
0.15
["Ad-hoc commit messages with typos/abbreviations, specific issue references, human voice in description"]
1
MIT
0.816843
diff --git a/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.ts b/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.ts @@ -402,6 +402,10 @@ export class ComputeAutomaticInstructions { // Also filter out the troubleshoot skill when agent debug log file log...
1
microsoft/vscode#311988
microsoft/vscode
311,988
Plan agent: 3-tier graceful degradation for Explore and search subagent
When `github.copilot.chat.exploreAgent.enabled` or `github.copilot.chat.searchSubagent.enabled` are disabled, the Plan agent now gracefully degrades with a 3-tier discovery prompt: 1. **Explore enabled** → Explore subagent discovery (parallel subagents) 2. **Search subagent enabled** (explore off) → `#tool:searchSubag...
digitarald
false
2026-04-24T22:20:02Z
106
7
3
8
2
2
0.469484
0.921698
0.2
1
0.25
["Specific technical details, internal team patterns, but formal bullet-point summary structure"]
1
MIT
0.815847
diff --git a/extensions/copilot/src/extension/agents/vscode-node/planAgentProvider.ts b/extensions/copilot/src/extension/agents/vscode-node/planAgentProvider.ts @@ -9,6 +9,7 @@ import { AGENT_FILE_EXTENSION } from '../../../platform/customInstructions/commo import { IVSCodeExtensionContext } from '../../../platform/ex...
1
microsoft/vscode#303060
microsoft/vscode
303,060
Remove `ChatSessionService.notifySessionOptionsChange`
I'm trying to fix bugs in the chat session service and improve the extension api but am running into a lot of debt. Added comments noting the problems around `notifySessionOptionsChange` and why I want to remove it <!-- Thank you for submitting a Pull Request. Please: * Read our Pull Request guidelines: ht...
mjbvz
false
2026-03-19T16:22:10Z
57
75
7
7
6
2
0.431034
0.883011
0.6
1
0.15
["Author voice present ('I'm trying to fix bugs'), specific technical reasoning, ad-hoc commit messages"]
1
MIT
0.810408
diff --git a/src/vs/sessions/contrib/chat/browser/newSession.ts b/src/vs/sessions/contrib/chat/browser/newSession.ts @@ -6,7 +6,6 @@ import { Emitter, Event } from '../../../../base/common/event.js'; import { Disposable, IDisposable } from '../../../../base/common/lifecycle.js'; import { URI } from '../../../../base...
1
django/django#20805
django/django
20,805
Fixed #35943 -- Replaced unload event listener with pagehide.
#### Trac ticket number ticket-35943 #### Branch description Continues the work from #20611 , adding the Selenium test requested by Jacob Walls. thanks to @petervanderdoes for the research and initial fix. Replaced `unload` with `pagehide` in `RelatedObjectLookups.js`. The `unload` event triggers a permiss...
aadeina
false
2026-04-22T14:14:41Z
26
1
2
4
0
1
0.787402
0.528634
0
1
0.05
["Author explicitly states no AI tools were used; personal voice with specific technical context and team collaboration"]
0.75
BSD-3-Clause
0.810269
diff --git a/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js b/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js @@ -283,7 +283,7 @@ window.showAddAnotherPopup = showRelatedObjectPopup; window.dismissAddAnotherPopup = dismissAddRelatedObjectPopup; - window.addEventList...
1
microsoft/vscode#298993
microsoft/vscode
298,993
fix: chunk multiline PTY writes on macOS to avoid 1024-byte buffer corruption
Fixes #296955 ## Problem macOS PTY has a ~1024-byte canonical-mode input buffer. When multiline commands (containing CR/newline characters) exceed this threshold, the shell's line editor echoes characters back, creating backpressure that corrupts the write — data after ~1024 bytes wraps around and replays earlier buf...
jcansdale
false
2026-03-10T04:05:34Z
160
0
2
7
5
3
0.384615
0.883011
0.5
1
0.15
["Human voice evident ('I tried X'), specific technical deep-dive with stack traces, ad-hoc test commits, internal issue references"]
1
MIT
0.808445
diff --git a/src/vs/platform/terminal/node/terminalProcess.ts b/src/vs/platform/terminal/node/terminalProcess.ts @@ -110,6 +110,7 @@ export class TerminalProcess extends Disposable implements ITerminalChildProcess private _isPtyPaused: boolean = false; private _unacknowledgedCharCount: number = 0; + private _writ...
1
microsoft/vscode#301472
microsoft/vscode
301,472
Fix incorrect inspect property usage in scope detection
Fixes #301471 ## Bug Two `IConfigurationValue` property accesses introduced in bb18007f use the `IInspectValue<T>` object property instead of the scalar value property, causing incorrect scope detection. ### 1. `themeConfiguration.ts` - `findAutoConfigurationTarget()` `settings.userRemote` is an `IInspectValue<T>` ...
ShehabSherif0
false
2026-05-05T03:02:32Z
46
2
3
9
1
2
0.675676
0.756304
0.1
1
0.15
["Author voice present with specific technical analysis, concrete bug references, and detailed commit messages with typos"]
0.666667
MIT
0.807094
diff --git a/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/autoApprove/commandLineAutoApprover.ts b/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/autoApprove/commandLineAutoApprover.ts @@ -279,7 +279,7 @@ export class CommandLineAut...
1
BurntSushi/ripgrep#2556
BurntSushi/ripgrep
2,556
ignore/types: add Windows Command Prompt files
This PR adds `*.bat` and `*.cmd` file types. In doing so, it makes a distinction between batch files (old standard from the MS-DOS era) and command scripts (new flavor - can operate on batch files, although `*.cmd` is preferred for various reasons, the main one being batch files will set `ERRORLEVEL` following incon...
mataha
false
2023-07-10T19:58:17Z
2
0
1
6
0
2
0.980392
0.839151
0
0.3
0.15
["Human voice present with technical reasoning; specific domain knowledge about MS-DOS era distinctions and ERRORLEVEL behavior"]
1
Unlicense
0.806847
diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs @@ -24,6 +24,7 @@ pub const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ (&["ats"], &["*.ats", "*.dats", "*.sats", "*.hats"]), (&["avro"], &["*.avdl", "*.avpr", "*.avsc"]), (&["awk"], &["*.awk"]), + (&["bat", "batch"], &...
1
django/django#12613
django/django
12,613
Fixed #30583 -- Fixed handling JSONFields in XML serializer.
Fixes [ticket 30583](https://code.djangoproject.com/ticket/30583). Continue [original PR](https://github.com/django/django/pull/11538). I've fixed the test as @felixxm [comment](https://github.com/django/django/pull/11538#discussion_r300645944). @felixxm, Do we need to change `JSONField` `to_python()` and `value_to_...
hramezani
false
2020-06-17T09:55:12Z
25
2
2
4
0
0
0.787402
0.528634
0
1
0.15
["Human voice present with specific issue reference, team collaboration mention, and thoughtful question about implementation"]
1
BSD-3-Clause
0.805269
diff --git a/django/core/serializers/xml_serializer.py b/django/core/serializers/xml_serializer.py @@ -1,7 +1,7 @@ """ XML serializer. """ - +import json from xml.dom import pulldom from xml.sax import handler from xml.sax.expatreader import ExpatParser as _ExpatParser @@ -75,8 +75,13 @@ def handle_field(self, ob...
1
django/django#19393
django/django
19,393
Fixed #15727 -- Added Content-Security-Policy support.
#### Trac ticket number ticket-15727 #### Branch description This adds CSP support for both the enforced header and report-only header. This is for the middleware and CSP nonce features only. A follow-up commit will add view decorators. #### Checklist - [x] This PR targets the `main` branch. - [x] The co...
robhudson
false
2025-06-27T18:57:02Z
1,229
13
28
52
0
5
0.037258
1
0
1
0.15
["Human-style PR with Trac ticket refs, specific implementation details, checklist completion, and structured commit messages"]
0.928571
BSD-3-Clause
0.803446
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py @@ -663,6 +663,12 @@ def gettext_noop(s): SECURE_SSL_HOST = None SECURE_SSL_REDIRECT = False +################## +# CSP MIDDLEWARE # +################## +SECURE_CSP = {} +SECURE_CSP_REPORT_ONLY = {} + # RemovedInDjango70Warning: A transit...
1
microsoft/vscode#298903
microsoft/vscode
298,903
Update default model selection to prioritize 'copilot' vendor in ExtHostLanguageModels
<!-- Thank you for submitting a Pull Request. Please: * Read our Pull Request guidelines: https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests * Associate an issue with the Pull Request. * Ensure that the code is up-to-date with the `main` branch. * Include a description of the proposed changes an...
DonJayamanne
false
2026-03-06T10:48:45Z
6
2
3
3
1
2
0.925926
0.45534
0.1
1
0.15
["Human author voice in branch naming ('don/dual-crow'), ad-hoc commit messages ('Fix tests'), no AI generation claims"]
1
MIT
0.802724
diff --git a/extensions/vscode-api-tests/package.json b/extensions/vscode-api-tests/package.json @@ -71,6 +71,10 @@ { "vendor": "test-lm-vendor", "displayName": "Test LM Vendor" + }, + { + "vendor": "copilot", + "displayName": "Test Copilot LM Vendor" } ], ...
1
django/django#21203
django/django
21,203
Refs #35303 -- Improved use of async methods in RemoteUserMiddleware.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A - typo" for typo fixes. --> ticket-35303 #### Branch description Provide a concise overview of the issue or rationale behind the proposed changes. This is a series of RemoteUserMi...
sarahboyce
false
2026-05-01T20:18:51Z
98
11
2
6
1
2
0.478469
0.839151
0.1
1
0.25
["AI tools disclosed and reviewed, but human co-author present, specific ticket references, and ad-hoc commit messages suggest primarily human authorship"]
1
BSD-3-Clause
0.801558
diff --git a/django/contrib/auth/middleware.py b/django/contrib/auth/middleware.py @@ -138,7 +138,7 @@ def process_request(self, request): " authentication middleware to be installed. Edit your" " MIDDLEWARE setting to insert" " 'django.contrib.auth.middleware.Authenti...
1
microsoft/vscode#312013
microsoft/vscode
312,013
SSH agent host: add agent forwarding setting & fix encrypted key failures
Two changes to the SSH remote agent host: ### 1. Skip fallback privateKey when SSH agent socket is present `ssh2` eagerly parses `privateKey` at connect time — before attempting any auth. If the key is passphrase-encrypted this immediately throws `"Cannot parse privateKey: Encrypted private OpenSSH key detected, ...
joshspicer
false
2026-04-23T03:47:28Z
89
33
6
5
4
2
0.45045
0.788519
0.4
1
0.15
["Human author voice present: specific technical problem explanation, internal implementation details, ad-hoc commit messages"]
1
MIT
0.799697
diff --git a/src/vs/platform/agentHost/common/sshRemoteAgentHost.ts b/src/vs/platform/agentHost/common/sshRemoteAgentHost.ts @@ -42,6 +42,8 @@ export interface ISSHAgentHostConfig { readonly sshConfigHost?: string; /** Dev override: custom command to start the remote agent host instead of the default CLI. */ read...
1
microsoft/vscode#308321
microsoft/vscode
308,321
Abadawi/send has image to router
## Delegate image routing to server-side auto-intent-service The server-side auto-intent-service now handles `has_image` via a vision-aware pre-filter instead of returning HTTP 400. Remove the client-side `hasImage` early return in `_tryRouterSelection()` and send `has_image: true` in the router request body when im...
abadawi591
false
2026-04-15T21:34:17Z
187
57
3
8
6
4
0.290698
0.921698
0.6
1
0.15
["Author voice present ('I tried X first'), specific error handling details, natural commit messages with typos and incremental fixes"]
1
MIT
0.799029
diff --git a/extensions/copilot/src/platform/endpoint/node/automodeService.ts b/extensions/copilot/src/platform/endpoint/node/automodeService.ts @@ -22,7 +22,7 @@ import { IExperimentationService } from '../../telemetry/common/nullExperimentat import { ITelemetryService } from '../../telemetry/common/telemetry'; impo...
1
microsoft/vscode#310131
microsoft/vscode
310,131
Detect dead connections via keepalive timeout
`_recvAckCheck` only fires when there are unacknowledged regular messages. If a connection dies silently while idle, the timeout is never detected. Add` _keepAliveTimeoutCheck`: since both sides send keepalives every 5s, receiving no data for 20s means the connection is dead. Called from `_sendKeepAlive` after each ...
EhabY
false
2026-05-07T14:29:29Z
98
3
3
7
4
4
0.497512
0.883011
0.4
1
0.15
["Human voice present, specific technical problem analysis, ad-hoc commit messages"]
0.666667
MIT
0.797046
diff --git a/src/vs/base/parts/ipc/common/ipc.net.ts b/src/vs/base/parts/ipc/common/ipc.net.ts @@ -136,9 +136,15 @@ export interface WebSocketCloseEvent { export type SocketCloseEvent = NodeSocketCloseEvent | WebSocketCloseEvent | undefined; +export const enum SocketTimeoutReason { + UNACKNOWLEDGED_MESSAGE = 'unac...
1
pandas-dev/pandas#65342
pandas-dev/pandas
65,342
BUG: fix Series.combine_first crash when names are Timestamps (#65333)
- [x] closes #65333 - [x] [Tests added and passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#writing-tests) if fixing a bug or adding a new feature - [ ] All [code checks passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#pre-commit). - [ ]...
Vincent08199
false
2026-05-03T13:22:25Z
21
2
4
11
0
3
0.813008
1
0
1
0.25
["Explicit AI disclosure in PR body, but specific bug fix with genuine issue reference and proper testing structure"]
0
BSD-3-Clause
0.796951
diff --git a/doc/source/whatsnew/v3.1.0.rst b/doc/source/whatsnew/v3.1.0.rst @@ -299,7 +299,7 @@ Indexing Missing ^^^^^^^ - Bug in :meth:`DataFrame.fillna` with a dict value raising ``RecursionError`` when columns are a :class:`MultiIndex` with duplicate entries (:issue:`53498`) -- +- Bug in :meth:`Series.combine_fi...
1
django/django#21077
django/django
21,077
Added automated quality checks for PRs as a GitHub Actions workflow.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A - typo" for typo fixes. --> N/A #### Branch description This work adds automated PR quality checks as a GitHub Actions workflow to enforce contribution requirements consistently and...
nessita
false
2026-04-16T15:45:04Z
1,745
0
8
41
0
7
0.054201
1
0
1
0.15
["Human voice evident with specific references to prior art, design decisions, and screenshot example"]
0.833333
BSD-3-Clause
0.796463
diff --git a/.github/workflows/check_pr_quality.yml b/.github/workflows/check_pr_quality.yml @@ -0,0 +1,48 @@ +name: PR Quality Checks + +on: + pull_request_target: + types: [ edited, opened, reopened, ready_for_review, synchronize ] + branches: + - main + +concurrency: + group: ${{ github.workflow }}-${{ ...
1
django/django#21209
django/django
21,209
Fixed #36300 -- Restored the semantic where RemoteUserMiddleware.header corresponds to request.META under ASGI.
#### Trac ticket number ticket-36300 #### Branch description This restores the behavior for custom headers under ASGI prior to 5.2. In 5.2, anyone trying to follow the [documented example](https://docs.djangoproject.com/en/dev/howto/auth-remote-user/#:~:text=HTTP_AUTHUSER%22) of setting `header = "HTTP_AUTHUSER"` ...
jacobtylerwalls
false
2026-05-06T14:42:16Z
100
46
4
14
0
3
0.406504
1
0
1
0.05
["Author explicitly disclosed no AI tools used; specific ticket references and technical context present"]
0
BSD-3-Clause
0.795976
diff --git a/django/contrib/auth/middleware.py b/django/contrib/auth/middleware.py @@ -238,7 +238,10 @@ async def aclean_username(self, username, request): return username def get_username(self, request): - if isinstance(request, ASGIRequest): + if ( + isinstance(request, ASGIRe...
1
django/django#21187
django/django
21,187
Fixed #37067 - Add trailing separator to django_file_prefixes().
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A - typo" for typo fixes. --> ticket-37067 #### Branch description `django_file_prefixes()` returned Django’s package directory without a trailing path separator. Because `warnings.w...
Fashad-Ahmed
false
2026-04-29T17:47:50Z
10
2
3
1
1
2
0.892857
0.32767
0.1
1
0.05
["Human voice, specific issue reference, explicit disclaimer, and natural commit messages"]
1
BSD-3-Clause
0.795846
diff --git a/django/utils/deprecation.py b/django/utils/deprecation.py @@ -16,7 +16,7 @@ def django_file_prefixes(): file = getattr(django, "__file__", None) if file is None: return () - return (os.path.dirname(file),) + return (os.path.join(os.path.dirname(file), ""),) class RemovedInNext...
1
django/django#20948
django/django
20,948
Fixed #36953 -- Refactored mail tests.
#### Trac ticket number <!-- Replace XXXXX with the corresponding Trac ticket number. --> <!-- Or delete the line and write "N/A" if this is a trivial PR. --> ticket-36953 #### Branch description Refactored mail tests to improve organization, minimize duplication, and reduce file size. #### AI Assistance Di...
medmunds
false
2026-04-11T12:54:08Z
1,660
1,623
2
26
0
2
0.02956
1
0
1
0.15
["Human-authored refactoring with explicit AI disclosure, specific technical rationale, and natural commit messages"]
0.833333
BSD-3-Clause
0.792767
diff --git a/tests/mail/test_backends.py b/tests/mail/test_backends.py @@ -0,0 +1,756 @@ +import os +import shutil +import socket +import sys +import tempfile +from email import message_from_binary_file, policy +from io import StringIO +from pathlib import Path +from smtplib import SMTP, SMTPException +from ssl import ...
1
microsoft/vscode#302474
microsoft/vscode
302,474
Don't send fetcher telemetry in stable
<!-- Thank you for submitting a Pull Request. Please: * Read our Pull Request guidelines: https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests * Associate an issue with the Pull Request. * Ensure that the code is up-to-date with the `main` branch. * Include a description of the proposed changes an...
lramos15
false
2026-03-17T17:11:43Z
2
2
2
5
0
4
0.961538
0.788519
0
0.3
0.15
["Standard PR template with minimal body, single straightforward commit, appears human-authored"]
1
MIT
0.791361
diff --git a/src/vs/workbench/services/telemetry/browser/telemetryService.ts b/src/vs/workbench/services/telemetry/browser/telemetryService.ts @@ -58,7 +58,7 @@ export class TelemetryService extends Disposable implements ITelemetryService { })); this._register(requestService.onDidCompleteRequest(e => { - if (...
1
microsoft/vscode#314480
microsoft/vscode
314,480
Include All-Interfaces links (0.0.0.0, [::], [0:0:0:0:0:0:0:0]) in integrated browser localhost targets
Make All-Interfaces links (0.0.0.0, [::], [0:0:0:0:0:0:0:0]) open in Integrated Browser when setting `workbench.browser.openLocalhostLinks` is enabled * closes https://github.com/microsoft/vscode/issues/314545
jruales
false
2026-05-05T19:40:50Z
47
9
4
3
5
2
0.641026
0.65534
0.5
1
0.15
["Human voice present in commit messages and specific issue reference; incremental development pattern"]
1
MIT
0.789989
diff --git a/src/vs/platform/browserView/common/browserViewTelemetry.ts b/src/vs/platform/browserView/common/browserViewTelemetry.ts @@ -24,7 +24,8 @@ export type IntegratedBrowserOpenSource = /** Opened via the "New Tab" command from an existing tab. */ | 'newTabCommand' /** Opened via the localhost link opener ...
1
microsoft/vscode#302486
microsoft/vscode
302,486
fix: preserve error telemetry stack traces in web environments (Codespaces)
Fixes #302289 ## Problem In web environments (Codespaces, vscode.dev), error telemetry stack traces contain HTTPS URLs like `https://codespace-host.github.dev/static/build/bundle.js`. The `anonymizeFilePaths` function was fully redacting these URLs to `<REDACTED: user-file-path>` because no `piiPaths` were configured ...
bryanchen-d
false
2026-03-17T18:46:34Z
45
0
2
2
2
2
0.689655
0.560849
0.2
1
0.15
["Human voice present (problem/root cause analysis), specific implementation details, internal file paths, issue reference"]
1
MIT
0.78866
diff --git a/src/vs/platform/telemetry/test/browser/telemetryService.test.ts b/src/vs/platform/telemetry/test/browser/telemetryService.test.ts @@ -1041,5 +1041,44 @@ suite('TelemetryService', () => { sinon.restore(); })); + test('Unexpected Error Telemetry strips web origin but preserves path in web stack traces...
1
microsoft/vscode#298462
microsoft/vscode
298,462
Minor chat input refinements
Addressing Oren's feedback: https://x.com/OrenMe/status/2027786261717512362 - Increase chat input editor padding from `{ top: 8, bottom: 8 }` to `{ top: 12, bottom: 12 }` for non-compact mode (8px taller total) - Update min-height calculation to match new padding (16 → 24) - Update agent mode placeholder text: "De...
daviddossett
false
2026-02-28T17:46:16Z
9
6
4
1
1
2
0.869565
0.42767
0.1
1
0.15
["Specific design feedback reference, concrete pixel values, and ad-hoc commit messages typical of human work"]
1
MIT
0.787352
diff --git a/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentTitleBarStatusWidget.ts b/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentTitleBarStatusWidget.ts @@ -432,7 +432,7 @@ export class AgentTitleBarStatusWidget extends BaseActionViewItem { label.classList.add('has-pr...
1
microsoft/vscode#311945
microsoft/vscode
311,945
Rename skillContentRead telemetry properties to use 'skill' prefix
## Summary Renames telemetry properties in the `skillContentRead` event to add a `skill` prefix, aligning property names with the event name to reduce ambiguity in the collected data. This was suggested by folks on the data team. ## Property Renames ### GH telemetry event (`sendGHTelemetryEvent`) | Old | New | | --...
AbhitejJohn
false
2026-04-22T21:39:06Z
24
24
2
2
2
3
0.675676
0.560849
0.2
1
0.15
["Human voice with specific context (data team suggestion, detailed telemetry mapping table, testing details)"]
1
MIT
0.786564
diff --git a/extensions/copilot/src/extension/tools/node/readFileTool.tsx b/extensions/copilot/src/extension/tools/node/readFileTool.tsx @@ -386,19 +386,19 @@ export class ReadFileTool implements ICopilotTool<ReadFileParams> { const plaintextProps = { skillName: skillInfo.skillName, skillPath: uri.toStrin...
1
BurntSushi/ripgrep#2787
BurntSushi/ripgrep
2,787
Set up ripgrep for compilation on non-unix, non-windows platforms
The code of ripgrep compiles on almost any kind of architecture, including WebAssembly, except in two tiny places related to hyperlinks: - when it searches for the local hostname in `hostname.rs`, - when it does path canonalization in `hyperlink.rs`. In both cases, there is a path with `#[cfg(unix)]` and a path ...
holzschu
false
2024-04-23T17:12:20Z
24
2
3
21
0
3
0.793651
1
0
0.3
0.15
["Human voice evident; specific technical constraints, targeted fixes, pragmatic trade-offs discussed"]
0.666667
Unlicense
0.785714
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -189,6 +189,21 @@ jobs: shell: bash run: ${{ env.CARGO }} test --bin rg ${{ env.TARGET_FLAGS }} flags::defs::tests::available_shorts -- --nocapture + # Setup and compile on the wasm32-wasi target + wasm: + runs-on: ubuntu-latest...
1
microsoft/vscode#301622
microsoft/vscode
301,622
Browser button in title bar
Closes #289413 <img width="396" height="409" alt="image" src="https://github.com/user-attachments/assets/60aa428d-7af2-4942-bb8a-74c8fcd686ab" />
kycutler
false
2026-03-13T23:20:33Z
25
2
2
8
3
3
0.787402
0.921698
0.3
0.3
0.15
["minimal pr body, single commit, specific issue reference, screenshot included - typical human workflow"]
1
MIT
0.783535
diff --git a/src/vs/workbench/contrib/browserView/electron-browser/browserView.contribution.ts b/src/vs/workbench/contrib/browserView/electron-browser/browserView.contribution.ts @@ -175,6 +175,15 @@ registerSingleton(IBrowserZoomService, BrowserZoomService, InstantiationType.Del Registry.as<IConfigurationRegistry>(Co...
1
microsoft/vscode#314245
microsoft/vscode
314,245
Allow agent host copilot cli to use selection text and range
Resolves: https://github.com/microsoft/vscode/issues/314184 After PR: <img width="1251" height="744" alt="Screenshot 2026-05-04 at 7 55 34 PM" src="https://github.com/user-attachments/assets/3ede2030-f14c-4627-8114-72a6cfbacb82" /> wires selected text/range through the VS Code -> Agent Host -> Copilot SDK pa...
anthonykim1
false
2026-05-07T04:09:46Z
620
106
12
12
8
3
0.121065
1
0.8
1
0.15
["Human voice in decisions ('We'd prob eventually want'), specific issue references, targeted commit messages with rationale"]
1
MIT
0.78316
diff --git a/src/vs/platform/agentHost/common/agentService.ts b/src/vs/platform/agentHost/common/agentService.ts @@ -15,7 +15,7 @@ import type { CompletionsParams, CompletionsResult, CreateTerminalParams, Resolv import { ProtectedResourceMetadata, type ConfigSchema, type FileEdit, type ModelSelection, type SessionActi...
1
django/django#21179
django/django
21,179
Refs #15759 -- Fixed ModelAdmin.list_editable form submission for non-editable instances.
#### Trac ticket number ticket-15759 #### Branch description Added formset that excludes fields that user has no permission for POST formset as well. Fixed regression test, the test was not simulating real behavior properly. By providing full form data for the post request I skipped the part where user was ...
artirix1927
false
2026-04-28T17:44:04Z
30
21
3
6
11
2
0.662252
0.839151
1
1
0.23
["AI disclosure present but limited scope; ad-hoc commits with typos and specific technical context"]
0.916667
BSD-3-Clause
0.781792
diff --git a/django/contrib/admin/options.py b/django/contrib/admin/options.py @@ -2026,13 +2026,16 @@ def _get_list_editable_queryset(self, request, prefix): return queryset return queryset.filter(pk__in=object_pks) - def _get_formset_with_permissions(self, request, queryset): + def _get_...
1
microsoft/vscode#312873
microsoft/vscode
312,873
Be less aggressive about removing terminal in agents app
Resolves: https://github.com/microsoft/vscode/issues/312872 https://github.com/user-attachments/assets/2f02dcec-89e6-445b-aa25-0c766d355fad /cc @TylerLeonhardt Agents app code has this logic where terminals are forced to close in conditions like archiving/changing sessions based on cwd. Removal was based o...
anthonykim1
false
2026-04-27T21:12:23Z
75
4
2
4
2
3
0.558659
0.728634
0.2
1
0.25
["Copilot co-author in commit but human voice in PR body with reasoning and design discussion"]
1
MIT
0.780957
diff --git a/src/vs/sessions/contrib/terminal/browser/sessionsTerminalContribution.ts b/src/vs/sessions/contrib/terminal/browser/sessionsTerminalContribution.ts @@ -64,7 +64,9 @@ function getSessionTerminalInfo(session: ISession | undefined): ISessionTerminal * Manages terminal instances in the sessions window, ensur...
1
microsoft/vscode#299752
microsoft/vscode
299,752
Make variable resolvers based on environment including launch config env
<!-- Thank you for submitting a Pull Request. Please: * Read our Pull Request guidelines: https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests * Associate an issue with the Pull Request. * Ensure that the code is up-to-date with the `main` branch. * Include a description of the proposed chang...
eliericha
false
2026-03-07T00:37:29Z
9
3
3
1
3
3
0.892857
0.42767
0.3
1
0.15
["Human voice present with specific issue reference and technical implementation details"]
1
MIT
0.780846
diff --git a/src/vs/server/node/remoteTerminalChannel.ts b/src/vs/server/node/remoteTerminalChannel.ts @@ -226,7 +226,7 @@ export class RemoteTerminalChannel extends Disposable implements IServerChannel< const activeWorkspaceFolder = args.activeWorkspaceFolder ? reviveWorkspaceFolder(args.activeWorkspaceFolder) : un...
1
microsoft/vscode#302860
microsoft/vscode
302,860
fix: return undefined when session provider is missing
## Summary Fixes an unhandled error `Can not find provider for openai-codex:/...` that occurs when a chat session's provider is no longer registered (e.g., extension uninstalled/disabled). Fixes #301203 ## Triggering Scenarios - An extension registers a chat session provider with a custom scheme (e.g. `openai-codex`) -...
bryanchen-d
false
2026-03-18T21:58:01Z
21
4
3
2
1
2
0.8
0.560849
0.1
1
0.25
["Specific technical details, error messages, and code flow demonstrate human understanding; however, the fourth commit message about 'docs: update fix-error prompt with PR creation guidelines and Copilot review process' is unusual and slightly suspicious"]
1
MIT
0.780212
diff --git a/.github/prompts/fix-error.prompt.md b/.github/prompts/fix-error.prompt.md @@ -25,12 +25,13 @@ After the fix is validated (compilation clean, tests pass): 3. **Push**: `git push -u origin <branch-name>`. 4. **Create a draft PR** with a description that includes: - A summary of the change. + - `Fixes...
1
microsoft/vscode#298867
microsoft/vscode
298,867
Fix handoff widget visibility: derive from response mode, persist modeInfo
Fixes three bugs with the handoff suggest-next widget in chat: 1. **Handoffs shown during streaming** — Widget now only appears after the response completes (and not if cancelled). Added explicit `hide()` on new request and early return for incomplete/cancelled responses. 2. **Handoffs based on wrong mode** — Wid...
digitarald
false
2026-03-09T09:42:55Z
79
15
8
4
1
2
0.515464
0.728634
0.1
1
0.25
["Specific technical details, numbered bugs with explanations, but structured body format and generic commit titles are mild AI signals"]
1
MIT
0.779478
diff --git a/src/vs/workbench/contrib/chat/browser/widget/chatWidget.ts b/src/vs/workbench/contrib/chat/browser/widget/chatWidget.ts @@ -53,7 +53,7 @@ import { ChatContextKeys } from '../../common/actions/chatContextKeys.js'; import { applyingChatEditsFailedContextKey, decidedChatEditingResourceContextKey, hasAppliedC...
1
BurntSushi/ripgrep#2957
BurntSushi/ripgrep
2,957
feat(completion): support sourcing zsh completion dynamically
Summary: Previously, you needed to save the completion script to a file and then source it. Now, you can dynamically source completions in zsh by running ```zsh $ source <(rg --generate complete-zsh) ``` Test plan: 1. Run `source <(rg --generate complete-zsh)` 2. Run `rg --generate=complete-zs<TAB>` Be...
vegerot
false
2024-12-31T13:23:13Z
29
4
2
13
0
3
0.75188
1
0
0.3
0.15
["Author voice present, specific test steps, references issue number, natural commit messages"]
0.666667
Unlicense
0.779449
diff --git a/FAQ.md b/FAQ.md @@ -94,7 +94,7 @@ Does ripgrep have support for shell auto-completion? Yes! If you installed ripgrep through a package manager on a Unix system, then the shell completion files included in the release archive should have been -installed for you automatically. If not, you can generate co...
1
microsoft/vscode#302903
microsoft/vscode
302,903
Agent Debug: Enable Claude Code session url and filter untitled sessions
Agent Debug panel: Enable Claude Code session url and filter untitled CLI sessions which are transient sessions created during async session setup and would confuse users.
vijayupadya
false
2026-03-18T18:46:34Z
47
3
3
3
2
2
0.666667
0.65534
0.2
1
0.25
["Brief, specific commit messages with typos; author voice in feature description; no AI generation indicators"]
1
MIT
0.778835
diff --git a/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugHomeView.ts b/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugHomeView.ts @@ -17,7 +17,7 @@ import { defaultButtonStyles } from '../../../../../platform/theme/browser/defau import { IChatDebugService } from '../../common/chatDebugService.js...
1
microsoft/vscode#302526
microsoft/vscode
302,526
Use bracketed paste for multiline executed terminal text
## Summary - treat multiline executed terminal text as pasted input by automatically enabling bracketed paste when supported - keep the existing explicit bracketed-paste behavior unchanged for current callers - add regression coverage for multiline executed text ## Why This Is Required Multiline executed tex...
jcansdale
false
2026-03-19T17:29:46Z
65
5
2
2
1
4
0.588235
0.560849
0.1
1
0.15
["Author voice present, specific technical problem description, realistic commit messages with incremental fixes"]
1
MIT
0.778447
diff --git a/src/vs/workbench/contrib/terminal/browser/terminalInstance.ts b/src/vs/workbench/contrib/terminal/browser/terminalInstance.ts @@ -1343,9 +1343,11 @@ export class TerminalInstance extends Disposable implements ITerminalInstance { } async sendText(text: string, shouldExecute: boolean, bracketedPasteMod...
1
pandas-dev/pandas#65156
pandas-dev/pandas
65,156
BUG: Series.transform now raises SpecificationError for duplicate function names (GH#54929)
closes #54929 #### Problem `Series.transform(["sqrt", "sqrt"])` silently returned a single-column result instead of raising `SpecificationError`. `DataFrame.transform` already raised correctly. Inconsistent behavior. #### Root Cause In `Apply.transform()`, the list-like `func` was converted to a dict via comprehensio...
galsakuri
false
2026-05-08T19:04:05Z
18
1
3
5
0
2
0.840336
0.788519
0
1
0.15
["Human-written: specific issue reference, clear problem statement, implementation details, and authentic commit history"]
0
BSD-3-Clause
0.77818
diff --git a/doc/source/whatsnew/v3.1.0.rst b/doc/source/whatsnew/v3.1.0.rst @@ -324,9 +324,10 @@ Styler Other ^^^^^ +- Bug in :meth:`Series.transform` and :meth:`DataFrame.transform` where passing a list of duplicate function names did not raise :class:`errors.SpecificationError` (:issue:`54929`) + .. ***DO NOT U...
1
microsoft/vscode#312929
microsoft/vscode
312,929
MCP: forward W3C traceparent to servers via _meta (SEP-414)
Plumbs the active `execute_tool` span's W3C `traceparent` (and optional `tracestate`) through `LanguageModelToolInvocationOptions` → `IMcpToolCallContext` → the JSON-RPC `tools/call` payload's `_meta`, so MCP server-side spans can be parented to the VS Code client trace. Verified end-to-end against an Aspire dashboa...
zhichli
false
2026-04-28T14:56:37Z
103
3
10
3
3
2
0.485437
0.65534
0.3
1
0.15
["Author voice present, specific technical implementation details, internal references (SEP-414, PR feedback), incomplete commit message suggests human editing"]
1
MIT
0.776651
diff --git a/extensions/copilot/src/extension/tools/vscode-node/toolsService.ts b/extensions/copilot/src/extension/tools/vscode-node/toolsService.ts @@ -175,6 +175,25 @@ export class ToolsService extends BaseToolsService { const startTime = Date.now(); + // Propagate W3C trace context to tool invocations so dow...
1
BurntSushi/ripgrep#3271
BurntSushi/ripgrep
3,271
ignore/types: add Containerfile
This PR adds `Containerfile` as a synonym to `Dockerfile`. `Containerfile` is the preferred file name in [Podman](https://docs.podman.io/en/latest/markdown/podman-build.1.html#file-f-containerfile) and [Buildah](https://github.com/containers/buildah/blob/main/docs/buildah-build.1.md). In hindsight, `docker` could...
Pashugan
false
2026-02-13T01:39:46Z
1
0
1
7
0
1
0.990099
0.683011
0
0.3
0.08
["Human voice present with reasoned design decisions and named tool preferences"]
0.857143
Unlicense
0.775982
diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs @@ -47,6 +47,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ (&["cml"], &["*.cml"]), (&["coffeescript"], &["*.coffee"]), (&["config"], &["*.cfg", "*.conf", "*.config", "*.ini"]), + (&["container"], &["...
1
django/django#21198
django/django
21,198
Fixed #37075 -- Allowed overriding the PostgreSQL pool's "check" callable.
#### Trac ticket number ticket-37075 #### Branch description Setting `"check"` in `OPTIONS["pool"]` previously raised `TypeError: psycopg_pool.pool.ConnectionPool() got multiple values for keyword argument 'check'` because the PostgreSQL backend passed `check=` to `ConnectionPool()` and unpacked `**pool_option...
raonitimo
false
2026-04-30T23:52:11Z
33
1
3
3
1
2
0.746269
0.65534
0.1
1
0.15
["Human-written: specific ticket reference, technical problem explanation, AWS use case cited, internal review feedback mentioned"]
0.5
BSD-3-Clause
0.775775
diff --git a/AUTHORS b/AUTHORS @@ -891,6 +891,7 @@ answer newbie questions, and generally made Django that much better: Ramon Saraiva <ramonsaraiva@gmail.com> Ram Rachum <ram@rachum.com> Randy Barlow <randy@electronsweatshop.com> + Raoni Timo <raoni@relume.io> Raphaël Barrois <raphael.barrois@m4x...
1
pandas-dev/pandas#65399
pandas-dev/pandas
65,399
DOC: fix source link for classes in the reference docs
Closes #64224 This copies the approach that numpy is also using in their `set_module` and conf.py to fix this issue (https://github.com/numpy/numpy/pull/28918 and linked PR from there)
jorisvandenbossche
false
2026-04-30T08:39:18Z
16
1
2
5
0
4
0.854701
0.788519
0
0.3
0.15
["Human voice present (references specific issue, numpy approach, Slack-like discussion); ad-hoc commit messages with typos/abbreviations; specific technical context"]
1
BSD-3-Clause
0.775335
diff --git a/doc/source/conf.py b/doc/source/conf.py @@ -961,6 +961,10 @@ def linkcode_resolve(domain, info) -> str | None: except AttributeError: return None + if isinstance(obj, type): + if hasattr(obj, "_module_source"): + obj.__module__, obj._module_source = obj._module_...
1
django/django#21230
django/django
21,230
Fixed #37084 -- Added CSP nonce context processor system check.
#### Trac ticket number ticket-37084 #### Branch description Added a security system check warning when `ContentSecurityPolicyMiddleware` is enabled with `CSP.NONCE` in `SECURE_CSP` or `SECURE_CSP_REPORT_ONLY`, but `django.template.context_processors.csp` is not configured. #### AI Assistance Disclosure (RE...
MiladZarour
false
2026-05-07T19:26:38Z
161
0
4
40
4
4
0.383142
1
0.4
1
0.35
["AI assistance disclosed but author reviewed/verified; specific ticket reference and technical implementation details suggest human authorship"]
0.928571
BSD-3-Clause
0.775328
diff --git a/django/core/checks/security/base.py b/django/core/checks/security/base.py @@ -1,6 +1,7 @@ from django.conf import settings from django.core.checks import Error, Tags, Warning, register from django.core.exceptions import ImproperlyConfigured +from django.utils.csp import CSP CROSS_ORIGIN_OPENER_POLICY...
1
evanw/esbuild#2174
evanw/esbuild
2,174
feat: support typeof on #private Fields
TypeScript 4.7 now allows us to perform `typeof` queries on private fields. ```typescript class Container { #data = "hello!"; get data(): typeof this.#data { return this.#data; } set data(value: typeof this.#data) { this.#data = value; } } ``` - https://devblogs.m...
magic-akari
false
2022-04-11T15:24:30Z
35
6
3
3
0
0
0.70922
0.45534
0
1
0.15
["Human voice evident: references TypeScript feature release, includes specific links to official sources, natural commit messages"]
1
MIT
0.775218
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -2,6 +2,28 @@ ## Unreleased +* Add support for parsing `typeof` on #private fields from TypeScript 4.7 ([#2174](https://github.com/evanw/esbuild/pull/2174)) + + The upcoming version of TypeScript now lets you use `#private` fields in `typeof` type expressions: + + ...
1
django/django#20848
django/django
20,848
Fixed #35870 -- Made blank choice label in forms more accessible.
Co-Authored-By: Marijke Luttekes <mail@marijkeluttekes.dev> Added new translatable setting BLANK_CHOICE_LABEL for the blank choice in forms. Added test function tests.forms_tests.tests.test_i18n.test_blank_choice_label. Deprecated the BLANK_CHOICE_DASH constant. Added release notes for the BLANK_CHOICE_LABEL settin...
annalauraw
false
2026-04-22T21:06:30Z
276
79
31
68
7
2
0.10989
1
0.7
1
0.15
["Human voice present ('not very accessible', 'Accessibility experts suggested'), specific design rationale, co-authored collaboration pattern, legitimate feature work"]
0.875
BSD-3-Clause
0.773984
diff --git a/django/conf/__init__.py b/django/conf/__init__.py @@ -16,12 +16,19 @@ import django from django.conf import global_settings from django.core.exceptions import ImproperlyConfigured +from django.utils.deprecation import RemovedInDjango70Warning, django_file_prefixes from django.utils.functional import La...
1
microsoft/vscode#305037
microsoft/vscode
305,037
Fix ctrl+/- not working on Windows Copilot CLI
Resolves: https://github.com/microsoft/vscode/issues/305028 After this PR, should work like: https://github.com/user-attachments/assets/353d1d61-3feb-4399-b558-b516d2c4827c Related: https://github.com/microsoft/vscode/pull/303712
anthonykim1
false
2026-03-26T22:32:42Z
76
4
2
2
1
2
0.555556
0.560849
0.1
1
0.15
["Ad-hoc commit messages with typos ('unncessary'), informal style ('more test'), and human workflow patterns (merge commit, incremental changes)"]
1
MIT
0.773546
diff --git a/src/vs/workbench/contrib/terminal/common/terminal.ts b/src/vs/workbench/contrib/terminal/common/terminal.ts @@ -623,6 +623,9 @@ export const DEFAULT_COMMANDS_TO_SKIP_SHELL: string[] = [ 'workbench.action.togglePanel', 'workbench.action.quickOpenView', 'workbench.action.toggleMaximizedPanel', + 'workb...
1
pandas-dev/pandas#65409
pandas-dev/pandas
65,409
PERF: skip to_datetime cache=True overhead for no-help input shapes (GH#65380)
- [x] closes #65380 - [x] [Tests added and passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#writing-tests) - [x] All [code checks passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#pre-commit). - [x] Added [type annotations](https://p...
arzaan789
false
2026-05-08T21:18:27Z
86
6
3
9
0
2
0.520833
0.956304
0
1
0.15
["Checkbox explicitly states AI was NOT used; specific issue number and performance optimization focus suggests human authorship"]
0
BSD-3-Clause
0.772201
diff --git a/doc/source/whatsnew/v3.0.0.rst b/doc/source/whatsnew/v3.0.0.rst @@ -1162,6 +1162,7 @@ Performance improvements - Performance improvement in :meth:`RangeIndex.take` returning a :class:`RangeIndex` instead of a :class:`Index` when possible. (:issue:`57445`, :issue:`57752`) - Performance improvement in :fun...
1
microsoft/vscode#302552
microsoft/vscode
302,552
Agent Debug Panel: Copilot CLI changes
The Agent Debug Logs panel previously only supported local chat sessions (vscode-chat-session://local/...). Copilot CLI sessions use a different URI scheme (copilotcli:/...) and were silently filtered out at multiple levels.
vijayupadya
false
2026-03-17T21:52:56Z
60
17
4
4
4
2
0.564972
0.728634
0.4
1
0.25
["Explicit mention of 'Copilot' in title/body is about feature domain, not AI authorship; commit messages are terse/informal ('feedbback' typo, no stilted phrasing); specific technical context about URI schemes present"]
1
MIT
0.771904
diff --git a/src/vs/workbench/contrib/chat/browser/actions/chatOpenAgentDebugPanelAction.ts b/src/vs/workbench/contrib/chat/browser/actions/chatOpenAgentDebugPanelAction.ts @@ -60,7 +60,7 @@ export function registerChatOpenAgentDebugPanelAction() { title: localize2('chat.openAgentDebugPanelForSession.label', "Show...
1
microsoft/vscode#310210
microsoft/vscode
310,210
Fix router model selection: filter available_models, remove same-provider override, iterate candidates
## Problem Three issues cause the router's model recommendation to be silently overridden on the client, sending simple queries to expensive models: ### 1. available_models / knownEndpoints out of sync `knownEndpoints` (from `GET /models`) and `available_models` (from `POST /auto_models`) are separate CAPI calls...
aashna
false
2026-04-16T19:12:21Z
160
4
2
7
3
3
0.378788
0.783011
0.3
1
0.22
["Author voice present, specific technical issues described, ad-hoc commit messages with typos/truncation, internal review references"]
1
MIT
0.771571
diff --git a/extensions/copilot/src/platform/endpoint/node/automodeService.ts b/extensions/copilot/src/platform/endpoint/node/automodeService.ts @@ -299,7 +299,27 @@ export class AutomodeService extends Disposable implements IAutomodeService { turn_number: (entry?.turnCount ?? 0) + 1, }; const routingMetho...
1
evanw/esbuild#2102
evanw/esbuild
2,102
add support of TS `Optional variance annotations`
This PR add support of TS `Optional variance annotations` - https://github.com/microsoft/TypeScript/pull/48240
magic-akari
false
2022-04-03T16:08:43Z
172
14
4
3
0
2
0.34965
0.65534
0
1
0.15
["Human-authored: ad-hoc commit messages, specific TS PR reference, technical implementation details"]
1
MIT
0.771283
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## Unreleased + +* Add support for parsing "optional variance annotations" from TypeScript 4.7 ([#2102](https://github.com/evanw/esbuild/pull/2102)) + + The upcoming version of TypeScript now lets you specify `in` and/or `out` on certain type ...
1
microsoft/vscode#311837
microsoft/vscode
311,837
Yemohyle/add to telemetry
<!-- Thank you for submitting a Pull Request. Please: * Read our Pull Request guidelines: https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests * Associate an issue with the Pull Request. * Ensure that the code is up-to-date with the `main` branch. * Include a description of the proposed chang...
yemohyleyemohyle
false
2026-04-28T17:59:05Z
50
2
11
8
2
4
0.657895
0.921698
0.2
0.3
0.15
["Human voice present in body text, ad-hoc commit messages with typos/repetition pattern typical of manual iteration"]
1
MIT
0.769109
diff --git a/extensions/copilot/src/extension/intents/node/toolCallingLoop.ts b/extensions/copilot/src/extension/intents/node/toolCallingLoop.ts @@ -176,6 +176,7 @@ export abstract class ToolCallingLoop<TOptions extends IToolCallingLoopOptions = private agentSpan: ISpanHandle | undefined; private chatSessionIdForTo...
1
django/django#19902
django/django
19,902
Fixed #33113 -- Documented usage and caveats of HTML5 date input in DateInput widget
Fixed #33113 — Documented usage and caveats of HTML5 date input in DateInput widget. Trac ticket number ticket-33113 Branch description This PR revives ticket #33113 and merges the intent of PRs #14905 and #17327, as suggested by @nessita. It adds a usage example for overriding DateInput to use input_type='date...
Samriddha9619
false
2026-04-13T07:00:59Z
23
0
1
5
0
3
0.813008
0.788519
0
0.3
0.15
["Human voice evident: references team members, explains consolidation rationale, acknowledges prior contributors"]
1
BSD-3-Clause
0.769081
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt @@ -646,6 +646,29 @@ These widgets make use of the HTML elements ``input`` and ``textarea``. :doc:`/topics/i18n/formatting`. ``%U``, ``%W``, and ``%j`` formats are not supported by this widget. + .. admonition:: Using the HTML5 "date" i...
1
evanw/esbuild#3539
evanw/esbuild
3,539
Provide API to create a custom esbuild CLI with plugins
This is very important as it allows to create create a CLI version of esbuild with a custom set of Go Plugin (in our case we needed scss). Without it we have to fork esbuild and add it which is not very nice. Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
edewit
false
2024-06-30T18:26:29Z
10
2
2
11
0
1
0.892857
0.916189
0
0.3
0.15
["Human voice with specific use case (SCSS plugin), personal email, natural explanation of problem and solution"]
0.555556
MIT
0.768531
diff --git a/pkg/cli/cli.go b/pkg/cli/cli.go @@ -28,7 +28,14 @@ import ( // "esbuild" executable such as the lack of auxiliary flags (e.g. "--help" and // "--version") but it is otherwise exactly the same code. func Run(osArgs []string) int { - return runImpl(osArgs) + return runImpl(osArgs, []api.Plugin{}) +} + +//...
1
django/django#21178
django/django
21,178
Refs #35514 -- Added warn_about_external_use() deprecation utility.
#### Trac ticket number ticket-35514 #### Branch description Implements `django.utils.deprecation.warn_about_external_use()`. Fixes `LazySettings._show_deprecation_warning()` (currently unused). Cherry-picked from (a future version of) PR #21052. #### AI Assistance Disclosure (REQUIRED) <!-- Please sel...
medmunds
false
2026-04-28T00:58:07Z
341
10
4
6
0
3
0.221729
0.839151
0
1
0.25
["AI tools disclosed and reviewed, but human oversight evident; specific implementation details and ticket reference suggest primary human authorship"]
1
BSD-3-Clause
0.768047
diff --git a/django/conf/__init__.py b/django/conf/__init__.py @@ -9,14 +9,16 @@ import importlib import os import time -import traceback import warnings from pathlib import Path -import django from django.conf import global_settings from django.core.exceptions import ImproperlyConfigured -from django.utils.de...
1
microsoft/vscode#300949
microsoft/vscode
300,949
Debug Panel: Import cap and large file optimizations
Cap import file size to 50MB, each session to 10K events and max of 5 sessions in the debug panel. Also added few large file size perf optimizations to ensure IDE is responsive while events are fetched/loaded.
vijayupadya
false
2026-03-12T04:34:12Z
216
71
5
5
5
2
0.258398
0.788519
0.5
1
0.15
["Human voice with specific technical details and pragmatic constraints"]
1
MIT
0.765889
diff --git a/src/vs/workbench/contrib/chat/browser/actions/chatOpenAgentDebugPanelAction.ts b/src/vs/workbench/contrib/chat/browser/actions/chatOpenAgentDebugPanelAction.ts @@ -184,6 +184,13 @@ export function registerChatOpenAgentDebugPanelAction() { return; } + const maxImportSize = 50 * 1024 * 1024; // ...
1
django/django#21048
django/django
21,048
Fixed #37020 -- Removed guidance to edit fetched .po files by hand.
#### Trac ticket number ticket-37020 #### Branch description As discussed on forum, editing the files we fetch from Transifex by hand can cause problems. https://forum.djangoproject.com/t/discourage-releasers-from-editing-po-files-by-hand/44441 We don't re-compile the .mo files after touching the .po files, so...
jacobtylerwalls
false
2026-04-10T17:37:12Z
4
15
1
3
0
2
0.840336
0.65534
0
0.3
0.08
["Author voice present, specific forum discussion reference, explicit AI disclosure checkbox, natural commit messages"]
1
BSD-3-Clause
0.760886
diff --git a/docs/internals/howto-release-django.txt b/docs/internals/howto-release-django.txt @@ -210,10 +210,7 @@ A few days before any release for the new release; this will be in ``docs/releases/index.txt``. #. If this is a :term:`feature release`, ensure translations from Transifex - have been integrated....
1
microsoft/vscode#310226
microsoft/vscode
310,226
Enabling ai co author by default
<!-- Thank you for submitting a Pull Request. Please: * Read our Pull Request guidelines: https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests * Associate an issue with the Pull Request. * Ensure that the code is up-to-date with the `main` branch. * Include a description of the proposed chang...
cwebster-99
false
2026-04-16T01:27:34Z
2
2
2
48
3
1
0.961538
1
0.3
0.3
0.15
["Title explicitly references 'ai co author' but PR body is standard template with no AI-generated content indicators; commit messages are brief and human-authored"]
0.3
MIT
0.759231
diff --git a/extensions/git/package.json b/extensions/git/package.json @@ -3740,7 +3740,7 @@ "%config.addAICoAuthor.all%" ], "scope": "resource", - "default": "off", + "default": "all", "description": "%config.addAICoAuthor%" }, "git.igno...
1
django/django#21248
django/django
21,248
Refs #37060 -- Shortened app label in AlterField test for Oracle.
#### Trac ticket number ticket-37060 #### Branch description Fixes Oracle test failure: https://github.com/django/django/pull/21156#issuecomment-4401960752 This avoids having to run `connection.ops.truncate_name()` when deriving the table name, e.g. for calls like: ```py f"{app_label}_primary" ``` Which...
jacobtylerwalls
false
2026-05-08T17:41:15Z
1
1
1
1
0
1
0.980392
0.22767
0
1
0.15
["Author voice present, specific technical context, proper disclosure of limited AI assistance for debugging"]
1
BSD-3-Clause
0.758976
diff --git a/tests/migrations/test_operations.py b/tests/migrations/test_operations.py @@ -3097,7 +3097,7 @@ def test_alter_field_reloads_state_fk_with_to_field_related_name_target_type_cha def test_alter_field_reloads_state_on_transitive_attname_to_field_type_change( self, ): - app_label = "t...
1
microsoft/vscode#303610
microsoft/vscode
303,610
Remove `as sinon.SinonStub` casts
This is secretly like an any cast as the result isn't typed
mjbvz
false
2026-03-20T21:11:34Z
118
74
4
4
1
2
0.342466
0.628634
0.1
1
0.15
["Human voice evident; informal technical commentary and specific typing complaint"]
1
MIT
0.758528
diff --git a/eslint.config.js b/eslint.config.js @@ -2373,6 +2373,10 @@ export default tseslint.config( 'selector': `NewExpression[callee.object.name='Intl']`, 'message': 'Use safeIntl helper instead for safe and lazy use of potentially expensive Intl methods.' }, + { + 'selector': 'TSAsExpressi...
1
BurntSushi/ripgrep#2768
BurntSushi/ripgrep
2,768
ignore/walk: correct build_parallel() documentation
The returned closure should return `WalkState`, not `()`. Closes: #2767
cgzones
false
2024-03-27T18:50:05Z
1
1
1
2
0
2
0.980392
0.560849
0
0.3
0.08
["Human voice with specific bug fix, minimal commit, references issue number"]
1
Unlicense
0.758271
diff --git a/crates/ignore/src/walk.rs b/crates/ignore/src/walk.rs @@ -591,7 +591,7 @@ impl WalkBuilder { /// /// Note that this *doesn't* return something that implements `Iterator`. /// Instead, the returned value must be run with a closure. e.g., - /// `builder.build_parallel().run(|| |path| printl...
1
facebook/react#31985
facebook/react
31,985
bot for pr notifications
Going to take some testing to get this right
rickhanlonii
false
2025-01-06T22:57:19Z
22
0
1
6
1
3
0.819672
0.839151
0.1
0.3
0.15
["Casual tone, minimal description, single generic commit message suggest human authorship"]
0.8
MIT
0.757739
diff --git a/.github/workflows/discord_notify.yml b/.github/workflows/discord_notify.yml @@ -0,0 +1,22 @@ +name: Discord Notify + +on: + pull_request: + types: [ labeled ] + +jobs: + notify: + if: ${{ github.event.label.name == 'React Core Team' }} + runs-on: ubuntu-latest + steps: + - na...
1
microsoft/vscode#311827
microsoft/vscode
311,827
Enable custom agent hooks by default
Fixes https://github.com/microsoft/vscode/issues/299424 <!-- Thank you for submitting a Pull Request. Please: * Read our Pull Request guidelines: https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests * Associate an issue with the Pull Request. * Ensure that the code is up-to-date with the `mai...
pwang347
false
2026-04-22T18:48:28Z
44
50
11
2
3
2
0.515464
0.560849
0.3
1
0.15
["Minimal commit messages, sparse PR body, but natural git workflow and issue reference"]
1
MIT
0.757532
diff --git a/extensions/copilot/assets/prompts/skills/agent-customization/SKILL.md b/extensions/copilot/assets/prompts/skills/agent-customization/SKILL.md @@ -72,7 +72,7 @@ After creating: **Skill vs Custom Agent?** Same capabilities for all steps → Skill. Need context isolation (subagent returns single output) or d...
1
microsoft/vscode#315086
microsoft/vscode
315,086
Better craft Copilot CLI identity in VS Code
Resolves: https://github.com/microsoft/vscode/issues/315055 <img width="396" height="781" alt="Screenshot 2026-05-07 at 10 21 24 AM" src="https://github.com/user-attachments/assets/57564f6e-01c1-468b-a968-2e45f07c89ec" /> /cc @DonJayamanne @rebornix
anthonykim1
false
2026-05-08T03:48:30Z
120
6
4
2
1
4
0.442478
0.560849
0.1
1
0.15
["Human voice present in issue reference, screenshots, and team mentions; commit messages show iterative refinement with minor tweaks typical of manual development"]
1
MIT
0.756584
diff --git a/extensions/copilot/src/extension/chatSessions/copilotcli/node/copilotcliSessionService.ts b/extensions/copilot/src/extension/chatSessions/copilotcli/node/copilotcliSessionService.ts @@ -54,6 +54,7 @@ import { INTEGRATION_ID } from '../../../../platform/endpoint/common/licenseAgre const COPILOT_CLI_WORKS...
1