Skip to content

Releases: joulev/nextjs-route-types

v2.0.1

22 Oct 05:17
19219e7
Compare
Choose a tag to compare
  • Fixed Params and SearchParams type being broken in v2.0.0. They should not be promise types.

v2.0.0

22 Oct 05:04
a1d4048
Compare
Choose a tag to compare
  • Breaking: Dropped support for Next.js v14 and below
  • Added support for Next.js v15's async request APIs

v1.1.1

12 Jun 03:42
befbe2d
Compare
Choose a tag to compare
  • Add support for Next.js v15
  • Fix DefaultProps as per official Next.js documentation

v1.1.0

15 Dec 03:31
8860537
Compare
Choose a tag to compare

Add support for parallel route props of LayoutProps:

.
└── app/../
    ├── layout.tsx
    ├── page.tsx
    └── @test/
        └── page.tsx

In the above directory, layout.tsx's LayoutProps will also receive the test prop

export default function Layout({ test, children }: LayoutProps) {
  return <div>{test} {children}</div>;
}

v1.0.2

27 Oct 05:48
c338306
Compare
Choose a tag to compare

Add support for Next.js v14.

v1.0.1

01 Oct 06:15
d08450e
Compare
Choose a tag to compare

Fix webpack being mistakenly marked as a dependency while it should be in devDependencies instead. This update significantly reduces the number of dependencies.

Full Changelog: v1.0.0...v1.0.1

v1.0.0

01 Oct 04:01
b559548
Compare
Choose a tag to compare

Initial public release of the package.

It's at v1 now because it's at the state where I can use it in my production apps. If I messed up somewhere I can always make another major bump.