rsnext/errors/version-staleness.mdx
Balázs Orbán d5c35a1bbb
chore: replace issue triaing actions with nissuer (#55525)
### What?

Moving maintenance to a separate repository.

### Why?

I want to make these actions reusable in other projects as they seem to work well in the Next.js repository.

### How?

The code is moved to https://github.com/balazsorban44/nissuer

I tested it on my fork, and all the following functionality is preserved: https://github.com/balazsorban44/next.js/issues/56

- [x] Close/lock/comment without a valid reproduction link
- [x] Minimize "+1"
- [x] Add labels based on user selection
- [x] Add comment based on the maintainer's label (eg.: "please add a complete reproduction")
2023-09-19 11:11:00 +00:00

63 lines
1.8 KiB
Text

---
title: Version Staleness
---
## Why This Error Occurred
In the error overlay, a message was shown that the detected Next.js version was out-of-date.
To get the newest features and bug fixes, it is recommended to stay up to date.
## Possible Ways to Fix It
If you are testing out a canary release, upgrade Next.js with one of the following:
```bash filename="Terminal"
npm i next@canary
```
```bash filename="Terminal"
yarn add next@canary
```
```bash filename="Terminal"
pnpm add next@canary
```
```bash filename="Terminal"
bun add next@canary
```
If you are using a stable release, upgrade Next.js with one of the following:
```bash filename="Terminal"
npm i next@latest
```
```bash filename="Terminal"
yarn add next@latest
```
```bash filename="Terminal"
pnpm add next@latest
```
```bash filename="Terminal"
bun add next@latest
```
If you are coming from an older major version, check out our [upgrade guides](/docs/pages/building-your-application/upgrading).
### Note
If you want to report a bug on GitHub, you should upgrade to the newest canary release of Next.js first, to see if the bug has already been fixed in canary.
## Useful Links
- [Upgrade guide](/docs/pages/building-your-application/upgrading)
- [Video: How to Contribute to Open Source (Next.js)](https://www.youtube.com/watch?v=cuoNzXFLitc)
- [Contributing to Next.js](https://github.com/vercel/next.js/blob/canary/contributing.md)
- [Triaging issues](https://github.com/vercel/next.js/blob/canary/contributing/repository/triaging.md)
- [Verifying canary](https://github.com/vercel/next.js/blob/canary/.github/verify-canary.md)
- [Adding a reproduction](https://github.com/vercel/next.js/blob/canary/.github/invalid-reproduction.md)
- [Simplifying a reproduction](https://github.com/vercel/next.js/blob/canary/.github/simplify-reproduction.md)