sveltekit-auth-example 5.0.1 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/README.md +1 -1
  3. package/package.json +24 -24
package/CHANGELOG.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  - Add password complexity checking on /register and /profile pages (only checks for length currently despite what the pages say)
4
4
 
5
+ # 5.0.2
6
+ - Bump dependencies
7
+
5
8
  # 5.0.1
6
9
  - Migrate to Svelte 5 runes mode
7
10
  - Format with prettier
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # SvelteKit Authentication and Authorization Example
2
2
 
3
- **Updated for Svelte 5 and SvelteKit 2.8.1**
3
+ **Updated for Svelte 5 and SvelteKit 2.19**
4
4
 
5
5
  This is an example of how to register, authenticate, and update users and limit their access to
6
6
  areas of the website by role (admin, teacher, student). It includes profile management and password resets via SendGrid.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sveltekit-auth-example",
3
3
  "description": "SvelteKit Authentication Example",
4
- "version": "5.0.1",
4
+ "version": "5.0.2",
5
5
  "author": "Nate Stuyvesant",
6
6
  "license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
7
7
  "repository": {
@@ -36,36 +36,36 @@
36
36
  "type": "module",
37
37
  "dependencies": {
38
38
  "@sendgrid/mail": "^8.1.4",
39
- "pg": "^8.13.1"
39
+ "pg": "^8.13.3"
40
40
  },
41
41
  "devDependencies": {
42
- "@eslint/js": "^9.15.0",
43
- "@sveltejs/adapter-node": "^5.2.9",
44
- "@sveltejs/kit": "^2.8.1",
45
- "@sveltejs/vite-plugin-svelte": "^4.0.1",
42
+ "@eslint/js": "^9.22.0",
43
+ "@sveltejs/adapter-node": "^5.2.12",
44
+ "@sveltejs/kit": "^2.19.0",
45
+ "@sveltejs/vite-plugin-svelte": "^5.0.3",
46
46
  "@types/bootstrap": "5.2.10",
47
47
  "@types/google.accounts": "^0.0.15",
48
- "@types/jsonwebtoken": "^9.0.7",
49
- "@types/pg": "^8.11.10",
48
+ "@types/jsonwebtoken": "^9.0.9",
49
+ "@types/pg": "^8.11.11",
50
50
  "bootstrap": "^5.3.3",
51
- "eslint": "^9.15.0",
52
- "eslint-config-prettier": "^9.1.0",
53
- "eslint-plugin-prettier": "^5.2.1",
54
- "eslint-plugin-svelte": "^2.46.0",
55
- "globals": "^15.12.0",
56
- "google-auth-library": "^9.15.0",
51
+ "eslint": "^9.22.0",
52
+ "eslint-config-prettier": "^10.1.1",
53
+ "eslint-plugin-prettier": "^5.2.3",
54
+ "eslint-plugin-svelte": "^3.0.3",
55
+ "globals": "^16.0.0",
56
+ "google-auth-library": "^9.15.1",
57
57
  "jsonwebtoken": "^9.0.2",
58
- "prettier": "^3.3.3",
59
- "prettier-plugin-svelte": "^3.2.8",
60
- "sass": "^1.81.0",
61
- "svelte": "^5.2.4",
62
- "svelte-check": "^4.0.9",
58
+ "prettier": "^3.5.3",
59
+ "prettier-plugin-svelte": "^3.3.3",
60
+ "sass": "^1.85.1",
61
+ "svelte": "^5.22.6",
62
+ "svelte-check": "^4.1.5",
63
63
  "tslib": "^2.8.1",
64
- "typescript": "^5.6.3",
65
- "typescript-eslint": "^8.15.0",
66
- "vite": "^5.4.11",
67
- "vitest": "^2.1.5"
64
+ "typescript": "^5.8.2",
65
+ "typescript-eslint": "^8.26.0",
66
+ "vite": "^6.2.1",
67
+ "vitest": "^3.0.8"
68
68
  },
69
- "packageManager": "yarn@4.5.1",
69
+ "packageManager": "yarn@4.7.0",
70
70
  "prettier": "./prettier.config.mjs"
71
71
  }