[Snyk] Upgrade: connect-mongo, dotenv, express-session, jsonwebtoken, nodemailer, passport, pino, pino-pretty, uuid #4
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.
Snyk has created this PR to upgrade multiple dependencies.
👯♂ The following dependencies are linked and will therefore be updated together.ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
connect-mongo
from 5.0.0 to 5.1.0 | 1 version ahead of your current version | a year ago
on 2023-10-14
dotenv
from 16.3.1 to 16.4.5 | 7 versions ahead of your current version | 7 months ago
on 2024-02-20
express-session
from 1.17.3 to 1.18.0 | 1 version ahead of your current version | 8 months ago
on 2024-01-28
jsonwebtoken
from 9.0.0 to 9.0.2 | 2 versions ahead of your current version | a year ago
on 2023-08-30
nodemailer
from 6.9.3 to 6.9.14 | 11 versions ahead of your current version | 3 months ago
on 2024-06-19
passport
from 0.6.0 to 0.7.0 | 1 version ahead of your current version | 10 months ago
on 2023-11-27
pino
from 8.14.1 to 8.21.0 | 19 versions ahead of your current version | 5 months ago
on 2024-04-24
pino-pretty
from 10.0.1 to 10.3.1 | 7 versions ahead of your current version | 9 months ago
on 2023-12-27
uuid
from 9.0.0 to 9.0.1 | 1 version ahead of your current version | a year ago
on 2023-09-12
Issues fixed by the recommended upgrade:
SNYK-JS-INFLIGHT-6095116
SNYK-JS-NODEMAILER-6219989
Release notes
Package name: connect-mongo
-
5.1.0 - 2023-10-14
-
5.0.0 - 2023-03-14
from connect-mongo GitHub release noteschore: release v5.1.0
fix: createIndex now do not need to supply writeConcern
Package name: dotenv
-
16.4.5 - 2024-02-20
-
16.4.4 - 2024-02-13
-
16.4.3 - 2024-02-12
-
16.4.2 - 2024-02-10
-
16.4.1 - 2024-01-24
-
16.4.0 - 2024-01-23
-
16.3.2 - 2024-01-19
-
16.3.1 - 2023-06-17
from dotenv GitHub release notes16.4.5
16.4.4
16.4.3
16.4.2
16.4.1
16.4.0
16.3.2
16.3.1
Package name: express-session
-
1.18.0 - 2024-01-28
- Add debug log for pathname mismatch
- Add
- Add
- Fix handling errors from setting cookie
- Support any type in
- deps: [email protected]
- Fix
- perf: improve default decode speed
- perf: remove slow string split in parse
- deps: [email protected]
-
1.17.3 - 2022-05-11
- Fix resaving already-saved new session at end of request
- deps: [email protected]
from express-session GitHub release notespartitionedtocookieoptionsprioritytocookieoptionssecretthatcrypto.createHmacsupportsexpiresoption to reject invalid datesPackage name: jsonwebtoken
-
9.0.2 - 2023-08-30
-
9.0.1 - 2023-07-05
-
9.0.0 - 2022-12-21
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
from jsonwebtoken GitHub release notesRelease 9.0.2 (#935)
Updating package version to 9.0.1 (#920)
Check if node version supports asymmetricKeyDetails
Validate algorithms for ec key type
Rename variable
Rename function
Add early return for symmetric keys
Validate algorithm for RSA key type
Validate algorithm for RSA-PSS key type
Check key types for EdDSA algorithm
Rename function
Move validateKey function to module
Convert arrow to function notation
Validate key in verify function
Simplify if
Convert if to switch..case
Guard against empty key in validation
Remove empty line
Add lib to check modulus length
Add modulus length checks
Validate mgf1HashAlgorithm and saltLength
Check node version before using key details API
Use built-in modulus length getter
Fix Node version validations
Remove duplicate validateKey
Add periods to error messages
Fix validation in verify function
Make asymmetric key validation the latest validation step
Change key curve validation
Remove support for ES256K
Fix old test that was using wrong key types to sign tokens
Enable RSA-PSS for old Node versions
Add specific RSA-PSS validations on Node 16 LTS+
Improve error message
Simplify key validation code
Fix typo
Improve error message
Change var to const in test
Change const to let to avoid reassigning problem
Improve error message
Test incorrect private key type
Rename invalid to unsupported
Test verifying of jwt token with unsupported key
Test invalid private key type
Change order of object parameters
Move validation test to separate file
Move all validation tests to separate file
Add prime256v1 ec key
Remove modulus length check
WIP: Add EC key validation tests
Fix node version checks
Fix error message check on test
Add successful tests for EC curve check
Remove only from describe
Remove
onlyRemove duplicate block of code
Move variable to a different scope and make it const
Convert allowed curves to object for faster lookup
Rename variable
Change variable assignment order
Remove unused object properties
Test RSA-PSS happy path and wrong length
Add missing tests
Pass validation if no algorithm has been provided
Test validation of invalid salt length
Test error when signing token with invalid key
Change var to const/let in verify tests
Test verifying token with invalid key
Improve test error messages
Add parameter to skip private key validation
Replace DSA key with a 4096 bit long key
Test allowInvalidPrivateKeys in key signing
Improve test message
Rename variable
Add key validation flag tests
Fix variable name in Readme
Change private to public dsa key in verify
Rename flag
Run EC validation tests conditionally
Fix tests in old node versions
Ignore block of code from test coverage
Separate EC validations tests into two different ones
Add comment
Wrap switch in if instead of having an early return
Remove unsupported algorithms from asymmetric key validation
Rename option to allowInvalidAsymmetricKeyTypes and improve Readme
9.0.0
adding migration notes to readme
adding changelog for version 9.0.0
Co-authored-by: julienwoll [email protected]
Package name: nodemailer
-
6.9.14 - 2024-06-19
- api: Added support for Ethereal authentication (56b2205)
- services.json: Add Email Services Provider Feishu Mail (CN) (#1648) (e9e9ecc)
- services.json: update Mailtrap host and port in well known (#1652) (fc2c9ea)
- well-known-services: Add Loopia in well known services (#1655) (21a28a1)
-
6.9.13 - 2024-03-20
- tls: Ensure servername for SMTP (d66fdd3)
-
6.9.12 - 2024-03-08
- message-generation: Escape single quote in address names (4ae5fad)
-
6.9.11 - 2024-02-29
- headers: Ensure that Content-type is the bottom header (c7cf97e)
-
6.9.10 - 2024-02-22
- data-uri: Do not use regular expressions for parsing data URI schemes (12e65e9)
- data-uri: Moved all data-uri regexes to use the non-regex parseDataUri method (edd5dfe)
-
6.9.9 - 2024-02-01
- security: Fix issues described in GHSA-9h6g-pr28-7cqp. Do not use eternal matching pattern if only a few occurences are expected (dd8f5e8)
- tests: Use native node test runner, added code coverage support, removed grunt (#1604) (be45c1b)
-
6.9.8 - 2023-12-30
- punycode: do not use native punycode module (b4d0e0c)
-
6.9.7 - 2023-10-22
- customAuth: Do not require user and pass to be set for custom authentication schemes (fixes #1584) (41d482c)
-
6.9.6 - 2023-10-09
- inline: Use 'inline' as the default Content Dispostion value for embedded images (db32c93)
- tests: Removed Node v12 from test matrix as it is not compatible with the test framework anymore (7fe0a60)
-
6.9.5 - 2023-09-06
- license: Updated license year (da4744e)
-
6.9.4 - 2023-07-19
-
6.9.3 - 2023-05-29
from nodemailer GitHub release notes6.9.14 (2024-06-19)
Bug Fixes
6.9.13 (2024-03-20)
Bug Fixes
6.9.12 (2024-03-08)
Bug Fixes
6.9.11 (2024-02-29)
Bug Fixes
6.9.10 (2024-02-22)
Bug Fixes
6.9.9 (2024-02-01)
Bug Fixes
6.9.8 (2023-12-30)
Bug Fixes
6.9.7 (2023-10-22)
Bug Fixes
6.9.6 (2023-10-09)
Bug Fixes
6.9.5 (2023-09-06)
Bug Fixes
Package name: passport
-
0.7.0 - 2023-11-27
-
0.6.0 - 2022-05-20
from passport GitHub release notes0.7.0
0.6.0
Package name: pino
-
8.21.0 - 2024-04-24
- docs: add a section about pino-logfmt #1879 by @ botflux in #1941
- Docs: Separate ecosystem lists by @ EstebanDalelR in #1942
- feat: send config to transports on init by @ 10xLaCroixDrinker in #1930
- @ botflux made their first contribution in #1941
- @ EstebanDalelR made their first contribution in #1942
-
8.20.0 - 2024-04-06
- Improve documentation for use with Google Cloud Logging by @ jansauer in #1915
- docs: remove reference to make-promises-safe by @ 10xLaCroixDrinker in #1921
- docs: spelling corrections by @ 10xLaCroixDrinker in #1920
- Document
- Add pino-discord-webhook transport information by @ fabulousgk in #1922
- docs: add pino-test to the ecosystem and help sections by @ ruddenchaux in #1931
- Added Info about using Grafana Loki by @ janpaepke in #1934
- Fix deprecated dependency notation by @ mbtools in #1929
- fix: avoid override mistake by @ erights in #1939
- chore: fix some typos by @ divdeploy in #1940
- @ jansauer made their first contribution in #1915
- @ alecmev made their first contribution in #1928
- @ fabulousgk made their first contribution in #1922
- @ ruddenchaux made their first contribution in #1931
- @ janpaepke made their first contribution in #1934
- @ mbtools made their first contribution in #1929
- @ erights made their first contribution in #1939
- @ divdeploy made their first contribution in #1940
-
8.19.0 - 2024-02-16
- api.md: Fix link declaration by @ homersimpsons in #1900
- Update transports.md by @ huijiewei in #1897
- Add a basic
- Add formatters log option by @ KatelynKim in #1905
- @ homersimpsons made their first contribution in #1900
- @ huijiewei made their first contribution in #1897
- @ KatelynKim made their first contribution in #1898
-
8.18.0 - 2024-02-01
- build(deps): bump actions/upload-artifact from 3 to 4 by @ dependabot in #1873
- chore(license): Update licensing year by @ codershiba in #1882
- fix: destination docs and types by @ codershiba in #1881
- Correct type of
- Add ability to override custom levels comparison by @ obrus-corcentric in #1883
- build(deps-dev): bump tsd from 0.29.0 to 0.30.4 by @ dependabot in #1888
- @ codershiba made their first contribution in #1882
- @ quisido made their first contribution in #1874
- @ obrus-corcentric made their first contribution in #1883
-
8.17.2 - 2023-12-26
- build(deps): bump process-warning from 2.3.2 to 3.0.0 by @ dependabot in #1869
- fix: type of child logger with custom levels by @ UndefinedBehaviour in #1871
-
8.17.1 - 2023-12-14
- Support unknown, reverts 1783, add tests by @ mcollina in #1866
- Add Type Example for custom logger by @ mcollina in #1867
-
8.17.0 - 2023-12-13
- build(deps): bump actions/github-script from 6 to 7 by @ dependabot in #1857
- Make license detectable by GitHub by @ 10xLaCroixDrinker in #1859
- docs: Clarify how to log both to a custom transport and to stdout by @ kibertoad in #1860
- Fix/types by @ UndefinedBehaviour in #1858
- Bumped tsd to v0.29.0 by @ mcollina in #1863
- fix: typescript types by @ Zamiell in #1783
- build(deps): bump pnpm/action-setup from 2.2.4 to 2.4.0 by @ dependabot in #1766
- @ 10xLaCroixDrinker made their first contribution in #1859
- @ Zamiell made their first contribution in #1783
-
8.16.2 - 2023-11-15
- fix child-child benchmark by @ bngarren in #1849
- fix: make transports.options and transports.level optional by @ krosenk729 in #1831
- fix: export
- build(deps): bump actions/setup-node from 3 to 4 by @ dependabot in #1844
- @ bngarren made their first contribution in #1849
- @ krosenk729 made their first contribution in #1831
- @ wolfy1339 made their first contribution in #1847
- @ UndefinedBehaviour made their first contribution in #1843
-
8.16.1 - 2023-10-23
- Support Node.js v21 by @ mcollina in #1834
-
8.16.0 - 2023-10-09
- allow passing callback to flush by @ rluvaton in #1827
-
8.15.7 - 2023-10-09
-
8.15.6 - 2023-10-05
-
8.15.5 - 2023-10-04
-
8.15.4 - 2023-10-03
-
8.15.3 - 2023-10-01
-
8.15.2 - 2023-10-01
-
8.15.1 - 2023-09-08
-
8.15.0 - 2023-08-04
-
8.14.2 - 2023-07-27
-
8.14.1 - 2023-05-08
from pino GitHub release notesWhat's Changed
New Contributors
Full Changelog: v8.20.0...v8.21.0
What's Changed
setBindingsby @ alecmev in #1928New Contributors
Full Changelog: v8.19.0...v8.20.0
What's Changed
formattersoption to the browser pino by @ KatelynKim in #1898setLevelshould respect level comparison option by @ obrus-corcentric in #1901New Contributors
Full Changelog: v8.18.0...v8.19.0
What's Changed
pino'sstreamparameter by @ quisido in #1874New Contributors
Full Changelog: v8.17.2...v8.18.0
What's Changed
Full Changelog: v8.17.1...v8.17.2
What's Changed
Full Changelog: v8.17.0...v8.17.1
What's Changed
New Contributors
Full Changelog: v8.16.2...v8.17.0
What's Changed
redactOptionstype by @ wolfy1339 in #1847New Contributors
Full Changelog: v8.16.1...v8.16.2
What's Changed
Full Changelog: v8.16.0...v8.16.1
What's Changed
Full Changelog: v8.15.7...v8.16.0
Package name: pino-pretty
What's Changed
New Contributors
Full Changelog: