diff --git a/.version b/.version index 9edc58bb..bd8bf882 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.6.4 +1.7.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index b551fb83..11729a01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## [](https://github.com/pocket-id/pocket-id/compare/v1.6.4...v) (2025-08-10) + + +### Features + +* add robots.txt to block indexing ([#806](https://github.com/pocket-id/pocket-id/issues/806)) ([06e1656](https://github.com/pocket-id/pocket-id/commit/06e1656923eb2f4531be497716f9147c09d60b65)) +* add support for `code_challenge_methods_supported` ([#794](https://github.com/pocket-id/pocket-id/issues/794)) ([d479817](https://github.com/pocket-id/pocket-id/commit/d479817b6a7ca4807b5de500b3ba713d436b0770)) +* Support OTel and JSON for logs (via log/slog) ([#760](https://github.com/pocket-id/pocket-id/issues/760)) ([78266e3](https://github.com/pocket-id/pocket-id/commit/78266e3e4cab2b23249c3baf20f4387d00eebd9e)) +* support reading secret env vars from _FILE ([#799](https://github.com/pocket-id/pocket-id/issues/799)) ([0a3b1c6](https://github.com/pocket-id/pocket-id/commit/0a3b1c653050f2237d30ec437c5de88baa704a25)) +* user application dashboard ([#727](https://github.com/pocket-id/pocket-id/issues/727)) ([484c2f6](https://github.com/pocket-id/pocket-id/commit/484c2f6ef20efc1fade1a41e2aeace54c7bb4f1b)) + + +### Bug Fixes + +* admins can not delete or disable their own account ([f0c144c](https://github.com/pocket-id/pocket-id/commit/f0c144c51c635bc348222a00d3bc88bc4e0711ef)) +* authorization animation not working ([9ac5d51](https://github.com/pocket-id/pocket-id/commit/9ac5d5118710cad59c8c4ce7cef7ab09be3de664)) +* custom claims input suggestions instantly close after opening ([4d59e72](https://github.com/pocket-id/pocket-id/commit/4d59e7286666480e20c728787a95e82513509240)) +* delete WebAuthn registration session after use ([#783](https://github.com/pocket-id/pocket-id/issues/783)) ([c8478d7](https://github.com/pocket-id/pocket-id/commit/c8478d75bed7295625cd3cf62ef46fcd95902410)) +* set input type 'email' for email-based login ([#776](https://github.com/pocket-id/pocket-id/issues/776)) ([d541c9a](https://github.com/pocket-id/pocket-id/commit/d541c9ab4af8d7283891a80f886dd5d4ebc52f53)) + ## [](https://github.com/pocket-id/pocket-id/compare/v1.6.3...v) (2025-07-21) ### Bug Fixes diff --git a/frontend/package.json b/frontend/package.json index 7eed5486..9a620923 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,60 +1,60 @@ { - "name": "pocket-id-frontend", - "version": "1.6.4", - "private": true, - "type": "module", - "scripts": { - "preinstall": "npx only-allow pnpm", - "dev": "vite dev --port 3000", - "build": "vite build", - "preview": "vite preview --port 3000", - "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", - "lint": "prettier --check . && eslint .", - "format": "prettier --write ." - }, - "dependencies": { - "@simplewebauthn/browser": "^13.1.2", - "@tailwindcss/vite": "^4.1.11", - "axios": "^1.11.0", - "clsx": "^2.1.1", - "jose": "^5.10.0", - "qrcode": "^1.5.4", - "sveltekit-superforms": "^2.27.1", - "tailwind-merge": "^3.3.1", - "zod": "^4.0.9" - }, - "devDependencies": { - "@inlang/paraglide-js": "^2.2.0", - "@inlang/plugin-m-function-matcher": "^2.1.0", - "@inlang/plugin-message-format": "^4.0.0", - "@internationalized/date": "^3.8.2", - "@lucide/svelte": "^0.525.0", - "@sveltejs/adapter-static": "^3.0.8", - "@sveltejs/kit": "^2.26.0", - "@sveltejs/vite-plugin-svelte": "^6.1.0", - "@types/eslint": "^9.6.1", - "@types/node": "^22.16.5", - "@types/qrcode": "^1.5.5", - "bits-ui": "^2.8.11", - "eslint": "^9.31.0", - "eslint-config-prettier": "^10.1.8", - "eslint-plugin-svelte": "^3.11.0", - "formsnap": "^2.0.1", - "globals": "^16.3.0", - "mode-watcher": "^1.1.0", - "prettier": "^3.6.2", - "prettier-plugin-svelte": "^3.4.0", - "prettier-plugin-tailwindcss": "^0.6.14", - "svelte": "^5.36.16", - "svelte-check": "^4.3.0", - "svelte-sonner": "^1.0.5", - "tailwind-variants": "^1.0.0", - "tailwindcss": "^4.1.11", - "tslib": "^2.8.1", - "tw-animate-css": "^1.3.5", - "typescript": "^5.8.3", - "typescript-eslint": "^8.38.0", - "vite": "^7.0.6" - } + "name": "pocket-id-frontend", + "version": "1.7.0", + "private": true, + "type": "module", + "scripts": { + "preinstall": "npx only-allow pnpm", + "dev": "vite dev --port 3000", + "build": "vite build", + "preview": "vite preview --port 3000", + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", + "lint": "prettier --check . && eslint .", + "format": "prettier --write ." + }, + "dependencies": { + "@simplewebauthn/browser": "^13.1.2", + "@tailwindcss/vite": "^4.1.11", + "axios": "^1.11.0", + "clsx": "^2.1.1", + "jose": "^5.10.0", + "qrcode": "^1.5.4", + "sveltekit-superforms": "^2.27.1", + "tailwind-merge": "^3.3.1", + "zod": "^4.0.9" + }, + "devDependencies": { + "@inlang/paraglide-js": "^2.2.0", + "@inlang/plugin-m-function-matcher": "^2.1.0", + "@inlang/plugin-message-format": "^4.0.0", + "@internationalized/date": "^3.8.2", + "@lucide/svelte": "^0.525.0", + "@sveltejs/adapter-static": "^3.0.8", + "@sveltejs/kit": "^2.26.0", + "@sveltejs/vite-plugin-svelte": "^6.1.0", + "@types/eslint": "^9.6.1", + "@types/node": "^22.16.5", + "@types/qrcode": "^1.5.5", + "bits-ui": "^2.8.11", + "eslint": "^9.31.0", + "eslint-config-prettier": "^10.1.8", + "eslint-plugin-svelte": "^3.11.0", + "formsnap": "^2.0.1", + "globals": "^16.3.0", + "mode-watcher": "^1.1.0", + "prettier": "^3.6.2", + "prettier-plugin-svelte": "^3.4.0", + "prettier-plugin-tailwindcss": "^0.6.14", + "svelte": "^5.36.16", + "svelte-check": "^4.3.0", + "svelte-sonner": "^1.0.5", + "tailwind-variants": "^1.0.0", + "tailwindcss": "^4.1.11", + "tslib": "^2.8.1", + "tw-animate-css": "^1.3.5", + "typescript": "^5.8.3", + "typescript-eslint": "^8.38.0", + "vite": "^7.0.6" + } }