@adonisjs/auth 10.0.0-next.0 → 10.0.0-next.1

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.
@@ -294,16 +294,16 @@ var SessionGuard = class {
294
294
  await userProvider.deleteRemeberToken(this.user, token.identifier);
295
295
  }
296
296
  }
297
- this.user = void 0;
298
- this.viaRemember = false;
299
- this.isAuthenticated = false;
300
- this.isLoggedOut = true;
301
297
  this.#emitter.emit("session_auth:logged_out", {
302
298
  ctx: this.#ctx,
303
299
  guardName: this.#name,
304
300
  user: this.user || null,
305
301
  sessionId: session.sessionId
306
302
  });
303
+ this.user = void 0;
304
+ this.viaRemember = false;
305
+ this.isAuthenticated = false;
306
+ this.isLoggedOut = true;
307
307
  }
308
308
  /**
309
309
  * Authenticate the current HTTP request by verifying the bearer
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@adonisjs/auth",
3
3
  "description": "Official authentication provider for Adonis framework",
4
- "version": "10.0.0-next.0",
4
+ "version": "10.0.0-next.1",
5
5
  "engines": {
6
6
  "node": ">=24.0.0"
7
7
  },
@@ -52,10 +52,10 @@
52
52
  },
53
53
  "devDependencies": {
54
54
  "@adonisjs/assembler": "^8.0.0-next.9",
55
- "@adonisjs/core": "^7.0.0-next.1",
55
+ "@adonisjs/core": "^7.0.0-next.7",
56
56
  "@adonisjs/eslint-config": "^3.0.0-next.1",
57
- "@adonisjs/i18n": "^3.0.0-next.0",
58
- "@adonisjs/lucid": "^22.0.0-next.0",
57
+ "@adonisjs/i18n": "^3.0.0-next.1",
58
+ "@adonisjs/lucid": "^22.0.0-next.1",
59
59
  "@adonisjs/prettier-config": "^1.4.5",
60
60
  "@adonisjs/session": "^8.0.0-next.0",
61
61
  "@adonisjs/tsconfig": "^2.0.0-next.0",
@@ -71,21 +71,21 @@
71
71
  "@release-it/conventional-changelog": "^10.0.1",
72
72
  "@types/basic-auth": "^1.1.8",
73
73
  "@types/luxon": "^3.7.1",
74
- "@types/node": "^24.5.2",
74
+ "@types/node": "^24.8.1",
75
75
  "@types/set-cookie-parser": "^2.4.10",
76
76
  "@types/sinon": "^17.0.4",
77
77
  "c8": "^10.1.3",
78
78
  "convert-hrtime": "^5.0.0",
79
79
  "copyfiles": "^2.4.1",
80
- "cross-env": "^10.0.0",
80
+ "cross-env": "^10.1.0",
81
81
  "del-cli": "^7.0.0",
82
- "dotenv": "^17.2.2",
83
- "eslint": "^9.36.0",
82
+ "dotenv": "^17.2.3",
83
+ "eslint": "^9.38.0",
84
84
  "luxon": "^3.7.2",
85
- "mysql2": "^3.15.0",
85
+ "mysql2": "^3.15.2",
86
86
  "nock": "^14.0.10",
87
87
  "pg": "^8.16.3",
88
- "playwright": "^1.55.0",
88
+ "playwright": "^1.56.1",
89
89
  "prettier": "^3.6.2",
90
90
  "release-it": "^19.0.5",
91
91
  "set-cookie-parser": "^2.7.1",
@@ -94,7 +94,7 @@
94
94
  "tedious": "^18.6.1",
95
95
  "timekeeper": "^2.3.1",
96
96
  "tsup": "^8.5.0",
97
- "typescript": "^5.9.2"
97
+ "typescript": "^5.9.3"
98
98
  },
99
99
  "dependencies": {
100
100
  "@adonisjs/presets": "^3.0.0-next.0",
@@ -103,6 +103,7 @@
103
103
  "peerDependencies": {
104
104
  "@adonisjs/assembler": "^8.0.0-next.9",
105
105
  "@adonisjs/core": "^7.0.0-next.1",
106
+ "@adonisjs/i18n": "^3.0.0-next.0",
106
107
  "@adonisjs/lucid": "^22.0.0-next.0",
107
108
  "@adonisjs/session": "^8.0.0-next.0",
108
109
  "@japa/api-client": "^3.1.0",
@@ -113,6 +114,9 @@
113
114
  "@adonisjs/assembler": {
114
115
  "optional": true
115
116
  },
117
+ "@adonisjs/i18n": {
118
+ "optional": true
119
+ },
116
120
  "@adonisjs/lucid": {
117
121
  "optional": true
118
122
  },