Skip to content

Commit b721275

Browse files
committed
chore: update outdated dependencies
1 parent 7ff0dde commit b721275

6 files changed

Lines changed: 1087 additions & 695 deletions

File tree

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,33 @@
33
All notable changes to this project are documented here. This project follows
44
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## 1.0.2 — 2026-08-13
7+
8+
Build toolchain only. No source, API or behaviour changes — upgrading from 1.0.1
9+
is safe and requires nothing.
10+
11+
Published because the bundler and TypeScript plugin that produce `dist/` were
12+
replaced, so the artifact is rebuilt on a maintained toolchain. The output was
13+
compared against 1.0.1 file by file: every shipped module is byte-identical
14+
except the version banner and whitespace in Rollup's generated interop helper,
15+
and all six entry points export exactly the same names.
16+
17+
### Changed
18+
19+
- **Replaced `rollup-plugin-typescript2` with `@rollup/plugin-typescript`.** The
20+
former has been unmaintained since 2023 and silently stops transforming under
21+
Rollup 4.59+, which is the first release without
22+
[GHSA path-traversal](https://github.com/advisories) in Rollup itself — the
23+
build then fails on `export type` because Rollup's parser receives raw
24+
TypeScript.
25+
- **Development dependencies patched.** Rollup updated, plus version-scoped
26+
`pnpm.overrides` for transitive advisories in `tar`, `shell-quote`, `minimatch`,
27+
`brace-expansion`, `js-yaml`, `picomatch`, `lodash`, `flatted`, `form-data`,
28+
`ws`, `serialize-javascript`, `ajv`, `ip-address`, `sigstore` and `@babel/core`.
29+
30+
None of these were reachable from the published package, whose only runtime
31+
dependency is `jose`. They affected the build and test toolchain.
32+
633
## 1.0.1 — 2026-08-13
734

835
Packaging only. No source, API or behaviour changes — upgrading from 1.0.0 is

examples/next-js/package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@thinkgrid/react-starter-auth": "file:../..",
13-
"next": "15.5.7",
13+
"next": "15.5.23",
1414
"react": "^19.2.0",
1515
"react-dom": "^19.2.0"
1616
},
@@ -19,7 +19,13 @@
1919
"@types/react": "^19",
2020
"@types/react-dom": "^19",
2121
"eslint": "^8",
22-
"eslint-config-next": "15.5.7",
22+
"eslint-config-next": "15.5.23",
2323
"typescript": "^5"
24+
},
25+
"pnpm": {
26+
"overrides": {
27+
"postcss": "^8.5.23",
28+
"sharp": "^0.35.0"
29+
}
2430
}
2531
}

0 commit comments

Comments
 (0)