👋 Help test the next major version of Gatsby! #29566
Replies: 2 comments 2 replies
-
is there some document that lists all the brand new features of Gatsby v3, i.e. all the things that aren't covered by minor and patch releases? That would help me a lot in testing it out. I could then look through my existing Gatsby projects and try to find potential use cases for those new features. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Hey folks! Now that Gatsby V3 is live, we're locking this discussion. You can still provide feedback on Gatsby V3 through our standard process within the Github project.
Thanks everyone! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Greetings, Gatsby community members!
We're working on the next major version of Gatsby and would love your help as we work out any rough spots! So, grab it while it's 🔥, and help us find those edges we may have missed!
Set your
gatsby
dependency tonext
in your project'spackage.json
file:Update any
gatsby-*
plugin that we publish / is in our monorepo tonext
, too. For example, if you usegatsby-transformer-sharp
:Remove the
node_modules
and.cache
folders within the project to ensure all dependencies are updated appropriately as well.Upgrade Gatsby to the next version by running
npm i
in the project directory for your Gatsby websiteConfirm you've upgraded by running
gatsby -v
and ensuring that you seeGatsby version: 3.0.0-next.x
("x" will increment as we push patches) in the output.Start your dev server in typical fashion via
gatsby develop --verbose
(use the--verbose
option to ensure you receive verbose output from the development server)Make source and content edits & confirm that you're seeing the corresponding updates in the dev site that's running
Stop your dev server
Build your site in typical fashion via
gatsby build --verbose
(again leveraging the--verbose
option to ensure verbose output, should there be any issues)Make more source and content edits
Build again, and ensure that you see the edits in the resulting site
Repeat steps 9 & 10 a few times
Where do I find more detailed information of the key updates to help me test?
You can find more information in our in-process migration guide
☠️ What if something went wrong?
Report issues right here in this discussion so everyone can benefit from the findings.
Thanks, everyone! 🙏
Beta Was this translation helpful? Give feedback.
All reactions