sveltekit-auth-example 1.0.44 → 1.0.46

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 +6 -0
  2. package/README.md +2 -2
  3. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Backlog
2
2
  * Add password complexity checking on /register and /profile pages (only checks for length currently despite what the pages say)
3
3
 
4
+ # 1.0.46
5
+ * Bump @sveltejs/kit, pg, tslib, vitest
6
+
7
+ # 1.0.45
8
+ * Bump @sveltejs/kit, adapter-node, svelte-check, @typescript*, eslint, prettier, vitest, @types/jsonwebtoken
9
+
4
10
  # 1.0.44
5
11
  * Bump @sveltejs/kit, svelte
6
12
 
package/README.md CHANGED
@@ -30,8 +30,8 @@ The forgot password / password reset functionality uses a JWT and [**SendGrid**]
30
30
 
31
31
  ## Prerequisites
32
32
  - PostgreSQL 14.5 or higher
33
- - Node.js 18.12.1 or higher
34
- - npm 9.2.0 or higher
33
+ - Node.js 18.13.0 or higher
34
+ - npm 9.3.1 or higher
35
35
  - Google API client
36
36
  - Twilio SendGrid account (only used for emailing password reset link - the sample can run without it but forgot password will not work)
37
37
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sveltekit-auth-example",
3
3
  "description": "SvelteKit Authentication Example",
4
- "version": "1.0.44",
4
+ "version": "1.0.46",
5
5
  "private": false,
6
6
  "author": "Nate Stuyvesant",
7
7
  "license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
@@ -33,36 +33,36 @@
33
33
  },
34
34
  "engines": {
35
35
  "node": ">=18.13.0",
36
- "npm": "^9.2.0"
36
+ "npm": "^9.4.0"
37
37
  },
38
38
  "type": "module",
39
39
  "dependencies": {
40
40
  "@sendgrid/mail": "^7.7.0",
41
- "pg": "^8.8.0"
41
+ "pg": "^8.9.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@sveltejs/adapter-node": "^1.1.0",
45
- "@sveltejs/kit": "^1.0.11",
44
+ "@sveltejs/adapter-node": "^1.1.4",
45
+ "@sveltejs/kit": "^1.3.2",
46
46
  "@types/bootstrap": "5.2.6",
47
47
  "@types/google.accounts": "0.0.5",
48
- "@types/jsonwebtoken": "^9.0.0",
48
+ "@types/jsonwebtoken": "^9.0.1",
49
49
  "@types/pg": "^8.6.6",
50
- "@typescript-eslint/eslint-plugin": "^5.48.1",
51
- "@typescript-eslint/parser": "^5.48.1",
50
+ "@typescript-eslint/eslint-plugin": "^5.49.0",
51
+ "@typescript-eslint/parser": "^5.49.0",
52
52
  "bootstrap": "^5.2.3",
53
- "eslint": "^8.31.0",
53
+ "eslint": "^8.32.0",
54
54
  "eslint-config-prettier": "^8.6.0",
55
55
  "eslint-plugin-svelte3": "^4.0.0",
56
56
  "google-auth-library": "^8.7.0",
57
57
  "jsonwebtoken": "^9.0.0",
58
- "prettier": "^2.8.2",
58
+ "prettier": "^2.8.3",
59
59
  "prettier-plugin-svelte": "^2.9.0",
60
60
  "sass": "^1.57.1",
61
61
  "svelte": "^3.55.1",
62
- "svelte-check": "^3.0.2",
63
- "tslib": "^2.4.1",
62
+ "svelte-check": "^3.0.3",
63
+ "tslib": "^2.5.0",
64
64
  "typescript": "^4.9.4",
65
65
  "vite": "^4.0.4",
66
- "vitest": "^0.27.0"
66
+ "vitest": "^0.28.3"
67
67
  }
68
68
  }