Skip to content

Commit abefe5b

Browse files
committed
Merge branch 'main' into feat/codegen-discussions
Signed-off-by: Adam Setch <[email protected]>
2 parents df92643 + 107f6a4 commit abefe5b

File tree

48 files changed

+2483
-2673
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+2483
-2673
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: rm -rfv dist/mac-universal
3636

3737
- name: Upload artifacts
38-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
38+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3939
with:
4040
name: Gitify-dist-mac
4141
path: dist/
@@ -66,7 +66,7 @@ jobs:
6666
run: Remove-Item dist/win-unpacked -Recurse
6767

6868
- name: Upload artifacts
69-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
69+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
7070
with:
7171
name: Gitify-dist-win
7272
path: dist
@@ -97,7 +97,7 @@ jobs:
9797
run: rm -rfv dist/linux-unpacked
9898

9999
- name: Upload artifacts
100-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
100+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
101101
with:
102102
name: Gitify-dist-linux
103103
path: dist

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
NOTARIZE: true
4242

4343
- name: Upload artifacts
44-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
44+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
4545
with:
4646
name: Gitify-release-mac
4747
path: dist/
@@ -74,7 +74,7 @@ jobs:
7474
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7575

7676
- name: Upload artifacts
77-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
77+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
7878
with:
7979
name: Gitify-release-win
8080
path: dist/
@@ -107,7 +107,7 @@ jobs:
107107
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
108108

109109
- name: Upload artifacts
110-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
110+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
111111
with:
112112
name: Gitify-release-linux
113113
path: dist/

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- run: pnpm test --coverage --runInBand --verbose
3030

3131
- name: Archive code coverage results
32-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
32+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3333
with:
3434
name: code-coverage-report
3535
path: coverage/lcov.info
@@ -59,7 +59,7 @@ jobs:
5959
- run: pnpm install
6060

6161
- name: Download a single artifact
62-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
62+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
6363
with:
6464
name: code-coverage-report
6565
path: coverage/

biome.json

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
33
"files": {
4-
"includes": ["**", "!**/generated/**/*"]
4+
"includes": [
5+
"**",
6+
"!**/generated/**/*"
7+
]
58
},
69
"assist": {
710
"actions": {
@@ -12,9 +15,15 @@
1215
"groups": [
1316
":NODE:",
1417
":BLANK_LINE:",
15-
["react*", "@testing-library/**"],
18+
[
19+
"react*",
20+
"@testing-library/**"
21+
],
1622
":BLANK_LINE:",
17-
["*electron*", "menubar"],
23+
[
24+
"*electron*",
25+
"menubar"
26+
],
1827
":BLANK_LINE:",
1928
"@primer/**",
2029
":BLANK_LINE:",
@@ -106,4 +115,4 @@
106115
"clientKind": "git",
107116
"useIgnoreFile": true
108117
}
109-
}
118+
}

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -71,29 +71,29 @@
7171
"electron-log": "5.4.3",
7272
"electron-updater": "6.6.2",
7373
"menubar": "9.5.2",
74-
"react": "19.2.1",
75-
"react-dom": "19.2.1",
74+
"react": "19.2.3",
75+
"react-dom": "19.2.3",
7676
"react-router-dom": "7.10.1"
7777
},
7878
"devDependencies": {
7979
"@babel/core": "7.28.5",
8080
"@babel/preset-env": "7.28.5",
81-
"@biomejs/biome": "2.3.8",
81+
"@biomejs/biome": "2.3.10",
8282
"@discordapp/twemoji": "16.0.1",
8383
"@electron/notarize": "3.1.1",
8484
"@graphql-codegen/cli": "6.1.0",
8585
"@graphql-codegen/schema-ast": "5.0.0",
8686
"@parcel/watcher": "2.5.1",
8787
"@primer/css": "22.0.2",
8888
"@primer/octicons-react": "19.21.1",
89-
"@primer/primitives": "11.3.1",
90-
"@primer/react": "38.4.0",
91-
"@tailwindcss/postcss": "4.1.17",
89+
"@primer/primitives": "11.3.2",
90+
"@primer/react": "38.6.1",
91+
"@tailwindcss/postcss": "4.1.18",
9292
"@testing-library/jest-dom": "6.9.1",
93-
"@testing-library/react": "16.3.0",
93+
"@testing-library/react": "16.3.1",
9494
"@testing-library/user-event": "14.6.1",
9595
"@types/jest": "30.0.0",
96-
"@types/node": "24.10.1",
96+
"@types/node": "24.10.4",
9797
"@types/react": "19.2.7",
9898
"@types/react-dom": "19.2.3",
9999
"@types/react-router-dom": "5.3.3",
@@ -104,10 +104,10 @@
104104
"concurrently": "9.2.1",
105105
"copy-webpack-plugin": "13.0.1",
106106
"css-loader": "7.1.2",
107-
"css-minimizer-webpack-plugin": "7.0.3",
107+
"css-minimizer-webpack-plugin": "7.0.4",
108108
"date-fns": "4.1.0",
109109
"dotenv": "17.2.3",
110-
"electron": "39.2.6",
110+
"electron": "39.2.7",
111111
"electron-builder": "26.0.12",
112112
"final-form": "5.0.0",
113113
"graphql": "16.12.0",
@@ -124,17 +124,17 @@
124124
"semver": "7.7.3",
125125
"styled-components": "6.1.19",
126126
"tailwind-merge": "3.4.0",
127-
"tailwindcss": "4.1.17",
128-
"terser-webpack-plugin": "5.3.15",
127+
"tailwindcss": "4.1.18",
128+
"terser-webpack-plugin": "5.3.16",
129129
"ts-jest": "29.4.6",
130130
"ts-loader": "9.5.4",
131131
"ts-node": "10.9.2",
132132
"typescript": "5.9.3",
133-
"webpack": "5.103.0",
133+
"webpack": "5.104.0",
134134
"webpack-cli": "6.0.1",
135135
"webpack-merge": "6.0.1"
136136
},
137-
"packageManager": "pnpm@10.24.0",
137+
"packageManager": "pnpm@10.26.0",
138138
"pnpm": {
139139
"onlyBuiltDependencies": [
140140
"@biomejs/biome",
@@ -147,4 +147,4 @@
147147
"*": "biome check --fix --no-errors-on-unmatched",
148148
"*.{js,ts,tsx}": "pnpm test --findRelatedTests --passWithNoTests --updateSnapshot"
149149
}
150-
}
150+
}

0 commit comments

Comments
 (0)