Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,37 @@
# Changelog


## 0.30.0...main

[compare changes](https://github.com/kinde-oss/js-utils/compare/0.30.0...main)

### 🩹 Fixes

- **ts:** Migrate tsconfig for TypeScript 6 ([567810e](https://github.com/kinde-oss/js-utils/commit/567810e))
- **deps:** Bump lodash to 4.17.23 (security patch - prototype pollution) ([a057a6d](https://github.com/kinde-oss/js-utils/commit/a057a6d))
- **test:** Increase timeout in flaky memory store listener test ([f181e8f](https://github.com/kinde-oss/js-utils/commit/f181e8f))
- Remove stringified error from thrown Error messages ([f6e1f25](https://github.com/kinde-oss/js-utils/commit/f6e1f25))
- **test:** Use fake timers to eliminate flaky real-time wait in mixed listener test ([317150a](https://github.com/kinde-oss/js-utils/commit/317150a))
- Correct typo 'handing' -> 'handling' in reauth error message ([104ea0c](https://github.com/kinde-oss/js-utils/commit/104ea0c))
- **test:** Guarantee timer restoration via afterEach to prevent fake timer leak ([17997e3](https://github.com/kinde-oss/js-utils/commit/17997e3))
- Resolve merge conflict with main, apply Victor's type fix in callAccountApi.test.ts ([7f23dc1](https://github.com/kinde-oss/js-utils/commit/7f23dc1))

### 🏡 Chore

- Release v0.30.0 ([0a2f83a](https://github.com/kinde-oss/js-utils/commit/0a2f83a))
- Update to 0.30.0 ([4e75171](https://github.com/kinde-oss/js-utils/commit/4e75171))
- Update to 0.30.0" ([88f851a](https://github.com/kinde-oss/js-utils/commit/88f851a))
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
- Merge main and regenerate lockfile ([94801b1](https://github.com/kinde-oss/js-utils/commit/94801b1))

### ✅ Tests

- Add missing coverage for ESLint v10 migration changes ([387ff7d](https://github.com/kinde-oss/js-utils/commit/387ff7d))

### ❤️ Contributors

- Dtoxvanilla1991 <dtoxvanilla@gmail.com>
- Koosha Owji <koosha.owji@gmail.com>

## 0.29.0...main

[compare changes](https://github.com/kinde-oss/js-utils/compare/0.29.0...main)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"publishConfig": {
"access": "public"
},
"version": "0.30.0",
"version": "0.30.1",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default defineConfig({
target: "esnext",
outDir: "dist",
emptyOutDir: true,
rolldownOptions: {
rollupOptions: {
Comment thread
victoreronmosele marked this conversation as resolved.
Outdated
external: ["expo-secure-store", "/src/tests/**"],
Comment thread
victoreronmosele marked this conversation as resolved.
},
},
Expand Down
Loading