Skip to content

Commit ef7a8df

Browse files
committed
Merge branch 'upstream-development'
2 parents ae2b156 + 1fc18bf commit ef7a8df

File tree

4 files changed

+36
-7
lines changed

4 files changed

+36
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ jobs:
6868
cache: yarn
6969
- run: yarn
7070
- run: yarn validate-electron-version
71-
- run: yarn validate-macos-version
7271
- run: yarn lint
7372
- run: yarn validate-changelog
7473
- name: Ensure a clean working directory
@@ -112,6 +111,9 @@ jobs:
112111
env:
113112
npm_config_arch: ${{ matrix.arch }}
114113
TARGET_ARCH: ${{ matrix.arch }}
114+
- name: Validate macOS version
115+
if: runner.os == 'macOS'
116+
run: yarn validate-macos-version
115117
- name: Run desktop-trampoline tests
116118
run: |
117119
cd vendor/desktop-trampoline

app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"productName": "GitHub Desktop Plus",
55
"bundleID": "com.github.GitHubClient",
66
"companyName": "GitHub, Inc.",
7-
"version": "3.5.4-beta1",
7+
"version": "3.5.4",
88
"main": "./main.js",
99
"repository": {
1010
"type": "git",
@@ -34,7 +34,7 @@
3434
"desktop-trampoline": "desktop/desktop-trampoline#v0.9.10",
3535
"dexie": "^3.2.3",
3636
"dompurify": "^3.2.4",
37-
"dugite": "3.0.0-rc12",
37+
"dugite": "^3.0.0",
3838
"electron-window-state": "^5.0.3",
3939
"event-kit": "^2.0.0",
4040
"focus-trap-react": "^8.1.0",

app/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -377,10 +377,10 @@ dompurify@^3.2.4:
377377
optionalDependencies:
378378
"@types/trusted-types" "^2.0.7"
379379

380-
dugite@3.0.0-rc12:
381-
version "3.0.0-rc12"
382-
resolved "https://registry.yarnpkg.com/dugite/-/dugite-3.0.0-rc12.tgz#e4ea9b34f3d542c4d66796e68f309b31edc5d03a"
383-
integrity sha512-U3nlYkfcC7y8PM+87TGWCEzyNoaHkZoPXQodZYHF0SmFM4RrcnKNaxIcN5Gi6RwOvFe6hejJXvMc8oYIJRp7hw==
380+
dugite@^3.0.0:
381+
version "3.0.0"
382+
resolved "https://registry.yarnpkg.com/dugite/-/dugite-3.0.0.tgz#56621ad397579d9a58c10c6a4f5e646b35937046"
383+
integrity sha512-+q2i3y5TvlC2YaZofkdELHtmvHbT6yuBODimItxU6xEGtHqRt6rpApJzf6lAqtpo+y1gokhfsHyULH0yNZuTWQ==
384384
dependencies:
385385
progress "^2.0.3"
386386
tar-stream "^3.1.7"

changelog.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
{
22
"releases": {
3+
"3.5.4": [
4+
"[Fixed] Update Git LFS to 3.7.1 to address CVE-2025-26625",
5+
"[Fixed] Check run status icons in the re-run checks dialog have a status tooltip that is accessible by screenreaders - #21191",
6+
"[Fixed] The Whitespace hint popover appears when right-clicking diff lines while \"Hide whitespace changes\" is enabled - #20848. Thanks @zekariasasaminew!",
7+
"[Fixed] The cancel button in the sign-in dialog is enabled after sign-in attempt - #21144. Thanks @zekariasasaminew!",
8+
"[Fixed] The \"Update Email\" button in the \"Misattributed Commit\" popover works after login from a different account - #21176",
9+
"[Fixed] Improve host discovery when using authenticating proxies - #19039 #19120",
10+
"[Fixed] Fix diff search results highlights not visible on addition hunks - #21134",
11+
"[Fixed] Add Copilot commit message generation to context menu - #21000. Thanks @zekariasasaminew!",
12+
"[Fixed] Override system accent color for checkboxes and radio buttons - #21088",
13+
"[Improved] The icon contrast on the pull request check run button meets minimum 3:1 contrast requirements - #21189",
14+
"[Improved] Increased title bar height on macOS Tahoe - #21135. Thanks @berkcebi!",
15+
"[Improved] Display line change count in PR Preview Dialog - #21126. Thanks @iammola!",
16+
"[Improved] Allow users to skip commit message override confirmation - #21025. Thanks @ilyassesalama!",
17+
"[Improved] Allow generating commits with Copilot in non-GitHub repositories - #20698. Thanks @schroedermarius!"
18+
],
19+
"3.5.4-beta3": [
20+
"[Fixed] Updated Git LFS to 3.7.1 to address CVE-2025-26625 - #21223",
21+
"[Fixed] Menu bar does not flicker when profile modal is open - #21150. Thanks @zekariasasaminew!"
22+
],
23+
"3.5.4-beta2": [
24+
"[Fixed] Check run status icons in the re-run checks dialog have a status tooltip that is accessible by screenreaders - #21191",
25+
"[Fixed] The Whitespace hint popover appears when right-clicking diff lines while \"Hide whitespace changes\" is enabled - #20848. Thanks @zekariasasaminew!",
26+
"[Fixed] The cancel button in the sign-in dialog is enabled after sign-in attempt - #21144. Thanks @zekariasasaminew!",
27+
"[Fixed] The \"Update Email\" button in the \"Misattributed Commit\" popover works after login from a different account - #21176",
28+
"[Improved] The icon contrast on the pull request check run button meets minimum 3:1 contrast requirements - #21189"
29+
],
330
"3.5.4-beta1": [
431
"[Added] Display line change count in PR Preview Dialog - #21126. Thanks @iammola!",
532
"[Added] Allow users to skip commit message override confirmation - #21025. Thanks @ilyassesalama!",

0 commit comments

Comments
 (0)