-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
TailwindCSS depends on an outdated version of postcss-load-config #11081
Comments
Yes, same here. Don't know if this is helpful but here is the output from npm audit
|
Can confirm issue has started today for me as well on all my builds. Attempting to fix downgrades me to version 2.2.2. |
Same here. |
same problem for me |
Same here |
Ditto. There is a patch available on the main branch of postcss-load-config if that helps? (see the link in this issue thread: postcss/postcss-load-config#242) |
yeah the error is coming from tailwind, you need to update the postcss-load-config dependency which has already been patched to use yaml 2.2.2 |
Downgrading didn't help me. And using with SvelteKit to produce a static page is blocked. None of the browsers will load the offending code in a production environment. |
This is still an issue on our end too! |
Hey folks! So the issue here, as suggested, is that we're still using an older version of Fixing this means updating our minimum Node version requirement, which is something we were hoping to avoid until the next major version of the project. However, this issue has forced our hand, and you'll see in #11089 that we've now dropped support for Node.js v12 and have updated any dependencies that were locked to older versions to their latest releases. These changes eliminate the We've just published a new release that includes this fix — npm install tailwindcss@latest We've tested this already using @dykatz Thanks so much for reporting this issue! 🙏 |
TailwindCSS depends on
yaml
indirectly throughpostcss-load-config
. This CVE was released earlier today, and was patched in[email protected]
. It can be used by[email protected]
, but tailwind depends onpostcss-load-config@^3.1.4
. This is causing our static analysis tools to yell at us.The text was updated successfully, but these errors were encountered: