sveltekit-auth-example 1.0.55 → 1.0.57

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 +1 -1
  3. package/package.json +14 -14
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.57
5
+ * Minor bumps for pg, tslib, typescript
6
+
7
+ # 1.0.56
8
+ * Svelte 4, minor updates for other dependencies
9
+
4
10
  # 1.0.55
5
11
  * Add comment to indicate property that should be removed if ssl is turned off on the PostgreSQL server (thanks Brazos)
6
12
  * Update public.reset_password stored procedure to plpgsql (thanks Brazos)
package/README.md CHANGED
@@ -30,7 +30,7 @@ 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.14.0 or higher
33
+ - Node.js 18.16.1 or higher
34
34
  - Google API client
35
35
  - Twilio SendGrid account (only used for emailing password reset link - the sample can run without it but forgot password will not work)
36
36
 
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.55",
4
+ "version": "1.0.57",
5
5
  "private": false,
6
6
  "author": "Nate Stuyvesant",
7
7
  "license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
@@ -32,37 +32,37 @@
32
32
  "format": "prettier --write ."
33
33
  },
34
34
  "engines": {
35
- "node": "^18.16.0",
36
- "npm": "^9.7.1"
35
+ "node": "^18.16.1",
36
+ "npm": "^9.7.2"
37
37
  },
38
38
  "type": "module",
39
39
  "dependencies": {
40
40
  "@sendgrid/mail": "^7.7.0",
41
- "pg": "^8.11.0"
41
+ "pg": "^8.11.1"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@sveltejs/adapter-node": "^1.2.4",
45
- "@sveltejs/kit": "^1.20.2",
45
+ "@sveltejs/kit": "^1.20.5",
46
46
  "@types/bootstrap": "5.2.6",
47
47
  "@types/google.accounts": "^0.0.7",
48
48
  "@types/jsonwebtoken": "^9.0.2",
49
49
  "@types/pg": "^8.10.2",
50
- "@typescript-eslint/eslint-plugin": "^5.59.11",
51
- "@typescript-eslint/parser": "^5.59.11",
50
+ "@typescript-eslint/eslint-plugin": "^5.60.1",
51
+ "@typescript-eslint/parser": "^5.60.1",
52
52
  "bootstrap": "^5.3.0",
53
- "eslint": "^8.42.0",
53
+ "eslint": "^8.43.0",
54
54
  "eslint-config-prettier": "^8.8.0",
55
55
  "eslint-plugin-svelte3": "^4.0.0",
56
56
  "google-auth-library": "^8.8.0",
57
57
  "jsonwebtoken": "^9.0.0",
58
58
  "prettier": "^2.8.8",
59
59
  "prettier-plugin-svelte": "^2.10.1",
60
- "sass": "^1.63.4",
61
- "svelte": "^3.59.1",
62
- "svelte-check": "^3.4.3",
63
- "tslib": "^2.5.3",
64
- "typescript": "^5.1.3",
60
+ "sass": "^1.63.6",
61
+ "svelte": "^4.0.0",
62
+ "svelte-check": "^3.4.4",
63
+ "tslib": "^2.6.0",
64
+ "typescript": "^5.1.5",
65
65
  "vite": "^4.3.9",
66
- "vitest": "^0.32.0"
66
+ "vitest": "^0.32.2"
67
67
  }
68
68
  }