sveltekit-auth-example 2.0.4 → 2.0.5

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.
Binary file
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
+ # 2.0.5
6
+ - Bump @sveltejs/kit, @types/pg, @typescript-eslint, google-auth-library, sass, svelte-check, typescript, vite, vitest
7
+
5
8
  # 2.0.4
6
9
  - Tested with latest Sveltekit and google-auth-library
7
10
  - Bump @sendgrid/mail, sveltekit, adapter-node, @types, @typescript-eslint, google-auth-library, prettier, prettier-plugin-svelte, sass, svelte, svelte-check, typescript, vite, vitest, yarn
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # SvelteKit Authentication and Authorization Example
2
2
 
3
- **Updated for SvelteKit 2.0**
3
+ **Updated for SvelteKit 2.5.4**
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.
@@ -34,7 +34,7 @@ The forgot password / password reset functionality uses a JWT and [**SendGrid**]
34
34
  ## Prerequisites
35
35
 
36
36
  - PostgreSQL 14.10 or higher
37
- - Node.js 18.19.0 or higher
37
+ - Node.js 18.19.1 or higher
38
38
  - Google API client
39
39
  - Twilio SendGrid account (only used for emailing password reset link - the sample can run without it but forgot password will not work)
40
40
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sveltekit-auth-example",
3
3
  "description": "SvelteKit Authentication Example",
4
- "version": "2.0.4",
4
+ "version": "2.0.5",
5
5
  "author": "Nate Stuyvesant",
6
6
  "license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
7
7
  "repository": {
@@ -31,7 +31,7 @@
31
31
  "format": "prettier --write . --ignore-path ./.eslintignore"
32
32
  },
33
33
  "engines": {
34
- "node": "^18.19.0"
34
+ "node": "^18.19.1"
35
35
  },
36
36
  "type": "module",
37
37
  "dependencies": {
@@ -40,29 +40,29 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@sveltejs/adapter-node": "^5.0.1",
43
- "@sveltejs/kit": "^2.5.3",
43
+ "@sveltejs/kit": "^2.5.4",
44
44
  "@sveltejs/vite-plugin-svelte": "^3.0.2",
45
45
  "@types/bootstrap": "5.2.10",
46
46
  "@types/google.accounts": "^0.0.14",
47
47
  "@types/jsonwebtoken": "^9.0.6",
48
- "@types/pg": "^8.11.2",
49
- "@typescript-eslint/eslint-plugin": "^7.1.1",
50
- "@typescript-eslint/parser": "^7.1.1",
48
+ "@types/pg": "^8.11.4",
49
+ "@typescript-eslint/eslint-plugin": "^7.3.1",
50
+ "@typescript-eslint/parser": "^7.3.1",
51
51
  "bootstrap": "^5.3.3",
52
52
  "eslint": "^8.57.0",
53
53
  "eslint-config-prettier": "^9.1.0",
54
54
  "eslint-plugin-svelte": "^2.35.1",
55
- "google-auth-library": "^9.6.3",
55
+ "google-auth-library": "^9.7.0",
56
56
  "jsonwebtoken": "^9.0.2",
57
57
  "prettier": "^3.2.5",
58
58
  "prettier-plugin-svelte": "^3.2.2",
59
- "sass": "^1.71.1",
59
+ "sass": "^1.72.0",
60
60
  "svelte": "^4.2.12",
61
- "svelte-check": "^3.6.6",
61
+ "svelte-check": "^3.6.8",
62
62
  "tslib": "^2.6.2",
63
- "typescript": "^5.4.2",
64
- "vite": "^5.1.5",
65
- "vitest": "^1.3.1"
63
+ "typescript": "^5.4.3",
64
+ "vite": "^5.2.6",
65
+ "vitest": "^1.4.0"
66
66
  },
67
67
  "packageManager": "yarn@4.1.1",
68
68
  "prettier": "./prettier.config.mjs"