Skip to content

Releases: joulev/nextjs-route-types

v2.0.1

Choose a tag to compare

@joulev joulev released this 22 Oct 05:17
19219e7
  • Fixed Params and SearchParams type being broken in v2.0.0. They should not be promise types.

v2.0.0

Choose a tag to compare

@joulev joulev released this 22 Oct 05:04
a1d4048
  • Breaking: Dropped support for Next.js v14 and below
  • Added support for Next.js v15's async request APIs

v1.1.1

Choose a tag to compare

@joulev joulev released this 12 Jun 03:42
befbe2d
  • Add support for Next.js v15
  • Fix DefaultProps as per official Next.js documentation

v1.1.0

Choose a tag to compare

@joulev joulev released this 15 Dec 03:31
8860537

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

Choose a tag to compare

@joulev joulev released this 27 Oct 05:48
c338306

Add support for Next.js v14.

v1.0.1

Choose a tag to compare

@joulev joulev released this 01 Oct 06:15
d08450e

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

Choose a tag to compare

@joulev joulev released this 01 Oct 04:01
b559548

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.