-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: package.json & package-lock.json to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-SEMVER-3247795 Allow single assignees to be starred Show an empty start when you aren't the owner Bump version Add a filter Bump node and onyx versions Update setup-node GH action to support node-version-file syntax Update node version for QSP Check every second to redraw pickers Version bump Updated manifest.json Updated manifest.json for V3 Bumped version number Bumped version number Added Manifest V3 compatibility for Firefox Added manifest-firefox.json to README.md Changed build to be an alias to build:chrome Added web-ext for linting and npm run lint:firefox Regenerated package-lock.json Added linting for Firefox in GH actions Bumped versions fix: upgrade multiple dependencies with Snyk Snyk has created this PR to upgrade: - @babel/core from 7.17.10 to 7.23.3. See this package in npm: https://www.npmjs.com/package/@babel/core - @babel/plugin-proposal-class-properties from 7.16.7 to 7.18.6. See this package in npm: https://www.npmjs.com/package/@babel/plugin-proposal-class-properties - @babel/plugin-transform-runtime from 7.17.10 to 7.23.3. See this package in npm: https://www.npmjs.com/package/@babel/plugin-transform-runtime - @babel/preset-flow from 7.16.7 to 7.23.3. See this package in npm: https://www.npmjs.com/package/@babel/preset-flow - @babel/preset-react from 7.16.7 to 7.23.3. See this package in npm: https://www.npmjs.com/package/@babel/preset-react See this project in Snyk: https://app.snyk.io/org/expensify/project/35c87b83-0578-438a-9ce5-96d21d712614?utm_source=github&utm_medium=referral&page=upgrade-pr fix: upgrade react-dom from 18.1.0 to 18.2.0 Snyk has created this PR to upgrade react-dom from 18.1.0 to 18.2.0. See this package in npm: https://www.npmjs.com/package/react-dom See this project in Snyk: https://app.snyk.io/org/expensify/project/35c87b83-0578-438a-9ce5-96d21d712614?utm_source=github&utm_medium=referral&page=upgrade-pr
- Loading branch information
1 parent
96e200f
commit 0083818
Showing
17 changed files
with
645 additions
and
451 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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 |
---|---|---|
@@ -1 +1 @@ | ||
20.10.0 | ||
20.15.1 |
This file contains 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
This file contains 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
This file contains 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,39 @@ | ||
{ | ||
"manifest_version": 3, | ||
|
||
"name": "K2 for GitHub", | ||
"version": "1.3.67", | ||
"description": "Manage your Kernel Scheduling from directly inside GitHub", | ||
|
||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "112.0" | ||
} | ||
}, | ||
|
||
"icons": { | ||
"16": "icon16.png", | ||
"48": "icon48.png", | ||
"128": "icon128.png" | ||
}, | ||
|
||
"permissions": [ | ||
"webNavigation" | ||
], | ||
|
||
"host_permissions": [ | ||
"*://api.github.com/*" | ||
], | ||
|
||
"content_scripts": [{ | ||
"matches": ["*://*.github.com/*"], | ||
"css": ["content.css"], | ||
"js": ["content.js"] | ||
}], | ||
|
||
"background": { | ||
"scripts": ["events.js"], | ||
"type": "module" | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -1,36 +1,32 @@ | ||
{ | ||
"manifest_version": 2, | ||
"manifest_version": 3, | ||
|
||
"name": "K2 for GitHub", | ||
"version": "1.3.62", | ||
"version": "1.3.67", | ||
"description": "Manage your Kernel Scheduling from directly inside GitHub", | ||
|
||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "42.0" | ||
} | ||
}, | ||
|
||
"icons": { | ||
"16": "icon16.png", | ||
"48": "icon48.png", | ||
"128": "icon128.png" | ||
}, | ||
|
||
"permissions": [ | ||
"*://api.github.com/*", | ||
"webNavigation" | ||
], | ||
|
||
"host_permissions": [ | ||
"*://api.github.com/*" | ||
], | ||
|
||
"content_scripts": [{ | ||
"matches": ["*://*.github.com/*"], | ||
"css": ["content.css"], | ||
"js": ["content.js"] | ||
}], | ||
|
||
"background": { | ||
"persistent": false, | ||
"scripts": ["events.js"] | ||
"service_worker": "events.js", | ||
"type": "module" | ||
} | ||
} |
Oops, something went wrong.