sveltekit-auth-example 5.0.1 → 5.0.3
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.
- package/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/package.json +25 -25
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
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.3
|
|
6
|
+
- Bump dependencies
|
|
7
|
+
|
|
8
|
+
# 5.0.2
|
|
9
|
+
- Bump dependencies
|
|
10
|
+
|
|
5
11
|
# 5.0.1
|
|
6
12
|
- Migrate to Svelte 5 runes mode
|
|
7
13
|
- 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.
|
|
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.
|
|
4
|
+
"version": "5.0.3",
|
|
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.
|
|
39
|
+
"pg": "^8.14.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@eslint/js": "^9.
|
|
43
|
-
"@sveltejs/adapter-node": "^5.2.
|
|
44
|
-
"@sveltejs/kit": "^2.
|
|
45
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
42
|
+
"@eslint/js": "^9.23.0",
|
|
43
|
+
"@sveltejs/adapter-node": "^5.2.12",
|
|
44
|
+
"@sveltejs/kit": "^2.20.4",
|
|
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.
|
|
49
|
-
"@types/pg": "^8.11.
|
|
50
|
-
"bootstrap": "^5.3.
|
|
51
|
-
"eslint": "^9.
|
|
52
|
-
"eslint-config-prettier": "^
|
|
53
|
-
"eslint-plugin-prettier": "^5.2.
|
|
54
|
-
"eslint-plugin-svelte": "^
|
|
55
|
-
"globals": "^
|
|
56
|
-
"google-auth-library": "^9.15.
|
|
48
|
+
"@types/jsonwebtoken": "^9.0.9",
|
|
49
|
+
"@types/pg": "^8.11.11",
|
|
50
|
+
"bootstrap": "^5.3.4",
|
|
51
|
+
"eslint": "^9.23.0",
|
|
52
|
+
"eslint-config-prettier": "^10.1.1",
|
|
53
|
+
"eslint-plugin-prettier": "^5.2.6",
|
|
54
|
+
"eslint-plugin-svelte": "^3.5.1",
|
|
55
|
+
"globals": "^16.0.0",
|
|
56
|
+
"google-auth-library": "^9.15.1",
|
|
57
57
|
"jsonwebtoken": "^9.0.2",
|
|
58
|
-
"prettier": "^3.
|
|
59
|
-
"prettier-plugin-svelte": "^3.
|
|
60
|
-
"sass": "^1.
|
|
61
|
-
"svelte": "^5.
|
|
62
|
-
"svelte-check": "^4.
|
|
58
|
+
"prettier": "^3.5.3",
|
|
59
|
+
"prettier-plugin-svelte": "^3.3.3",
|
|
60
|
+
"sass": "^1.86.3",
|
|
61
|
+
"svelte": "^5.25.6",
|
|
62
|
+
"svelte-check": "^4.1.5",
|
|
63
63
|
"tslib": "^2.8.1",
|
|
64
|
-
"typescript": "^5.
|
|
65
|
-
"typescript-eslint": "^8.
|
|
66
|
-
"vite": "^
|
|
67
|
-
"vitest": "^
|
|
64
|
+
"typescript": "^5.8.2",
|
|
65
|
+
"typescript-eslint": "^8.29.0",
|
|
66
|
+
"vite": "^6.2.5",
|
|
67
|
+
"vitest": "^3.1.1"
|
|
68
68
|
},
|
|
69
|
-
"packageManager": "yarn@4.
|
|
69
|
+
"packageManager": "yarn@4.8.1",
|
|
70
70
|
"prettier": "./prettier.config.mjs"
|
|
71
71
|
}
|