Skip to content

Commit a457571

Browse files
authored
Merge branch 'infra/module-resolution' into tests/data
2 parents 63940c5 + 4a543bd commit a457571

23 files changed

+478
-204
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@solidjs/router": minor
3+
---
4+
5+
Update `moduleResolution`

.changeset/shiny-fireants-swim.md

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Type Check Distribution
2+
3+
on:
4+
pull_request: ~
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
typecheck-dist:
11+
name: Check dist types
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Use Node.js from nvmrc
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version-file: ".nvmrc"
20+
registry-url: "https://registry.npmjs.org"
21+
22+
- name: Install pnpm
23+
uses: pnpm/action-setup@v4
24+
25+
- name: Install dependencies
26+
run: pnpm install
27+
28+
- name: Build package and dependencies
29+
run: pnpm build
30+
31+
- name: Check types
32+
run: pnpx @arethetypeswrong/cli --pack . --profile esm-only

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222

2323
- name: Install pnpm
2424
uses: pnpm/action-setup@v4
25-
with:
26-
version: 9
2725

2826
- name: Install dependencies
2927
run: pnpm i --frozen-lockfile

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @solidjs/router
22

3+
## 0.15.4
4+
5+
### Patch Changes
6+
7+
- da5e1f9: allow URLSearchParams type for when enctype is not set to multipart/form-data
8+
- 1aa664e: - Improve route matching fallback
9+
- Optimize imports
10+
- fa46b67: fix(type): allow value from `Params` and `SearchParams` to be optional
11+
- bd89541: Support `in` operator for useParams()
12+
- 0a2f556: preserve headers in `query()`'s `handleResponse()`
13+
- ac97470: added `SearchParams` to the exported types
14+
- 8885abf: fix: createAsync - catch errors of prev to avoid bubbling error up
15+
- d665cc9: Fix Router popstate event handling logic
16+
17+
- Simplified delta check logic for history navigation
18+
- Improved reliability of forward navigation detection
19+
- Fixed window.history.forward() navigation handling
20+
321
## 0.15.3
422

523
### Patch Changes

0 commit comments

Comments
 (0)