You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This warning appearing in the error message may appear to be a "helpful" reminder to devs
but it is problematic in a high security environment because in order to know that there's a newer version of Next.js
needs to Phone Home either to NPM for the version number or to Vercel ... either way it's making an external network request. 💭
To be clear: I'm a proponent of keeping software/systems up-to-date in terms of security patches/updates. ⬆️
And to some people who aren't security conscious having Next.js making network requests might be convenient ...
But if you work in a high security environment and need to know what all outbound network requests are doing,
this is a no-go! 🙅
While doing a routine update to the
/docs
I got the following compilation error in theNextra
project:Next.js (14.2.4) out of date (learn more)
This warning appearing in the error message may appear to be a "helpful" reminder to devs
but it is problematic in a high security environment because in order to know that there's a newer version of
Next.js
needs to Phone Home either to
NPM
for the version number or toVercel
... either way it's making an external network request. 💭the is the page the "learn more" links to: https://nextjs.org/docs/messages/version-staleness
To be clear: I'm a proponent of keeping software/systems up-to-date in terms of security patches/updates. ⬆️
And to some people who aren't security conscious having
Next.js
making network requests might be convenient ...But if you work in a high security environment and need to know what all outbound network requests are doing,
this is a no-go! 🙅
At the time of writing the version of
Next.js
in ourNextra
project is14.2.4
and the most recent version onNPM
is14.2.5
:https://www.npmjs.com/package/next?activeTab=versions
They have published
2,665 versions
... 😮How maintainable is a project that has an update every day ...? 🤷♂️ dwyl/learn-nextjs#12
The text was updated successfully, but these errors were encountered: