-
Notifications
You must be signed in to change notification settings - Fork 11
[Snyk] Fix for 1 vulnerabilities #1179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
onsails
wants to merge
1
commit into
dev
Choose a base branch
from
snyk-fix-ccb0a043f0e338f5c648b11b3ae759e3
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. | ||
| version: v1.25.1 | ||
| ignore: {} | ||
| # patches apply the minimum changes required to fix a vulnerability | ||
| patch: | ||
| SNYK-JS-LODASH-567746: | ||
| - tailwind > datasette > lodash: | ||
| patched: '2026-02-12T13:52:47.935Z' | ||
| id: SNYK-JS-LODASH-567746 | ||
| path: tailwind > datasette > lodash | ||
| - tailwind > lodash: | ||
| patched: '2026-02-12T13:52:47.935Z' | ||
| id: SNYK-JS-LODASH-567746 | ||
| path: tailwind > lodash | ||
| - tailwind > flaschenpost > lodash: | ||
| patched: '2026-02-12T13:52:47.935Z' | ||
| id: SNYK-JS-LODASH-567746 | ||
| path: tailwind > flaschenpost > lodash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,7 +15,7 @@ | |
| "lint": "pnpm exec nx run-many --target lint --verbose", | ||
| "test": "pnpm exec nx run-many --target test --verbose", | ||
| "format": "pnpm exec prettier --write '**/*.{ts,js,tsx,jsx,cjs,mjs,css,json,md,mdx,html}'", | ||
| "prepare": "pnpm exec husky", | ||
| "prepare": "pnpm run snyk-protect && pnpm exec husky", | ||
| "tolgee": "dotenv -e .env -- tolgee", | ||
| "tolgee:compare": "pnpm tolgee compare --config ./apps/shell/.tolgeerc.js", | ||
| "tolgee:sync": "pnpm tolgee sync --config ./apps/shell/.tolgeerc.js", | ||
|
|
@@ -24,7 +24,8 @@ | |
| "tolgee:extract:check": "pnpm tolgee extract check --config ./apps/shell/.tolgeerc.js", | ||
| "tolgee:extract:print": "pnpm tolgee extract print --config ./apps/shell/.tolgeerc.js", | ||
| "storybook": "pnpm exec nx storybook storybook", | ||
| "build-storybook": "pnpm exec nx build-storybook storybook" | ||
| "build-storybook": "pnpm exec nx build-storybook storybook", | ||
| "snyk-protect": "snyk-protect" | ||
| }, | ||
| "dependencies": { | ||
| "@auth0/auth0-react": "2.3.0", | ||
|
|
@@ -91,7 +92,8 @@ | |
| "vanilla-cookieconsent": "2.9.2", | ||
| "viem": "2.43.1", | ||
| "wagmi": "2.17.5", | ||
| "zod": "3.24.2" | ||
| "zod": "3.24.2", | ||
| "@snyk/protect": "latest" | ||
|
||
| }, | ||
| "devDependencies": { | ||
| "@commitlint/cli": "19.7.1", | ||
|
|
@@ -196,5 +198,6 @@ | |
| "@isaacs/brace-expansion@<=5.0.0": ">=5.0.1", | ||
| "webpack@>=5.49.0 <=5.104.0": ">=5.104.1" | ||
| } | ||
| } | ||
| }, | ||
| "snyk": true | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR changes
package.json(adds@snyk/protect, scripts, andsnyk: true) but does not updatepnpm-lock.yaml(the repo has one). Please regenerate and commit the updated lockfile so installs/CI pick up the same dependency graph and the newpreparestep doesn’t reference missing binaries.