Skip to content

Commit cc2486e

Browse files
Merge pull request #4117 from amitsingh-007/renovate-updates
Renovate updates
2 parents 96698cc + 84dd451 commit cc2486e

12 files changed

Lines changed: 2095 additions & 4978 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: pnpm/action-setup@v6
2222

2323
- name: Setting up Node.js
24-
uses: actions/setup-node@v6
24+
uses: actions/setup-node@v7
2525
with:
2626
node-version: '24'
2727
cache: 'pnpm'

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: pnpm/action-setup@v6
2424

2525
- name: Setting up Node.js
26-
uses: actions/setup-node@v6
26+
uses: actions/setup-node@v7
2727
with:
2828
node-version: '24'
2929
cache: 'pnpm'
@@ -78,7 +78,7 @@ jobs:
7878
uses: pnpm/action-setup@v6
7979

8080
- name: Setting up Node.js
81-
uses: actions/setup-node@v6
81+
uses: actions/setup-node@v7
8282
with:
8383
node-version: '24'
8484
cache: 'pnpm'

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: pnpm/action-setup@v6
2323

2424
- name: Setting up Node.js
25-
uses: actions/setup-node@v6
25+
uses: actions/setup-node@v7
2626
with:
2727
node-version: '24'
2828
cache: 'pnpm'
@@ -79,7 +79,7 @@ jobs:
7979
uses: pnpm/action-setup@v6
8080

8181
- name: Setting up Node.js
82-
uses: actions/setup-node@v6
82+
uses: actions/setup-node@v7
8383
with:
8484
node-version: '24'
8585
cache: 'pnpm'
@@ -134,7 +134,7 @@ jobs:
134134
uses: pnpm/action-setup@v6
135135

136136
- name: Setting up Node.js
137-
uses: actions/setup-node@v6
137+
uses: actions/setup-node@v7
138138
with:
139139
node-version: '24'
140140
cache: 'pnpm'
@@ -200,7 +200,7 @@ jobs:
200200

201201
- name: Generate Release Tag
202202
id: release_tag
203-
uses: amitsingh-007/next-release-tag@v6.5.0
203+
uses: amitsingh-007/next-release-tag@v6.6.0
204204
with:
205205
github_token: ${{ secrets.GITHUB_TOKEN }}
206206
tag_prefix: 'v'

.github/workflows/renovate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
persist-credentials: false
1717
- name: Self-hosted Renovate
18-
uses: renovatebot/github-action@v46.1.18
18+
uses: renovatebot/github-action@v46.2.0
1919
with:
2020
configurationFile: .github/renovate-config.json
2121
token: ${{ secrets.RENOVATE_TOKEN }}

apps/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bypass/extension",
3-
"version": "25.0.0",
3+
"version": "25.1.0",
44
"private": true,
55
"description": "Bypass links from various sites to required links, with added functionality of Bookmarks Manager, Tagging Panel.",
66
"type": "module",

apps/extension/src/entrypoints/popup/panels/BookmarksPanel/components/BookmarksPanel.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import BookmarkContextMenu from './BookmarkContextMenu';
2222
import BookmarksHeader from './BookmarksHeader';
2323
import VirtualRow from './VirtualRow';
2424

25-
// oxlint-disable-next-line react/react-compiler
2625
function BookmarksPanel({ folderId, operation, bmUrl }: BMPanelQueryParams) {
2726
const startHistoryMonitor = useHistoryStore(
2827
(state) => state.startHistoryMonitor

apps/web/src/app/bookmark-panel/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import { getFromLocalStorage, setToLocalStorage } from '@app/utils/storage';
2121

2222
import VirtualRow from './components/VirtualRow';
2323

24-
// oxlint-disable-next-line react/react-compiler
2524
export default function BookmarksPage() {
2625
const searchParams = useSearchParams();
2726
const scrollAreaRef = useRef<HTMLDivElement>(null);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
"typescript": "catalog:",
3232
"vercel": "catalog:"
3333
},
34-
"packageManager": "pnpm@11.10.0"
34+
"packageManager": "pnpm@11.17.0"
3535
}

packages/shared/src/components/Persons/components/Persons.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ type InnerProps = Props & {
3131
personToOpenImage: string;
3232
};
3333

34-
// oxlint-disable-next-line react/react-compiler
3534
function PersonsInner({
3635
persons,
3736
onLinkOpen,

0 commit comments

Comments
 (0)