@sbc-connect/nuxt-auth 0.1.21 → 0.1.23

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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @sbc-connect/nuxt-auth
2
2
 
3
+ ## 0.1.23
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`6c568da`](https://github.com/bcgov/connect-nuxt/commit/6c568da341a6d9c56cacf2c5ad56301837f9f525)]:
8
+ - @sbc-connect/nuxt-base@0.1.21
9
+
10
+ ## 0.1.22
11
+
12
+ ### Patch Changes
13
+
14
+ - [#71](https://github.com/bcgov/connect-nuxt/pull/71) [`1752ac6`](https://github.com/bcgov/connect-nuxt/commit/1752ac651e03269825b81bf24bba3fcc67c2679c) Thanks [@deetz99](https://github.com/deetz99)! - fix logout page accidentally referencing login redirect property
15
+
3
16
  ## 0.1.21
4
17
 
5
18
  ### Patch Changes
@@ -9,7 +9,7 @@ const redirectUrl = computed(() => {
9
9
  const urlReturn = route.query.return
10
10
  const url = urlReturn !== undefined
11
11
  ? urlReturn as string
12
- : `${rtc.baseUrl}${locale.value}${ac.login.redirect}`
12
+ : `${rtc.baseUrl}${locale.value}${ac.logout.redirect}`
13
13
  return url
14
14
  })
15
15
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sbc-connect/nuxt-auth",
3
3
  "type": "module",
4
- "version": "0.1.21",
4
+ "version": "0.1.23",
5
5
  "repository": "github:bcgov/connect-nuxt",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "./nuxt.config.ts",
@@ -12,16 +12,16 @@
12
12
  "nuxt": "^4.0.2",
13
13
  "typescript": "^5.8.3",
14
14
  "vue-tsc": "^3.0.4",
15
- "@sbc-connect/eslint-config": "0.0.7",
15
+ "@sbc-connect/vitest-config": "0.0.6",
16
16
  "@sbc-connect/playwright-config": "0.0.7",
17
- "@sbc-connect/vitest-config": "0.0.6"
17
+ "@sbc-connect/eslint-config": "0.0.7"
18
18
  },
19
19
  "dependencies": {
20
20
  "@pinia/nuxt": "^0.11.2",
21
21
  "keycloak-js": "^26.2.0",
22
22
  "pinia": "^3.0.3",
23
23
  "pinia-plugin-persistedstate": "^4.4.1",
24
- "@sbc-connect/nuxt-base": "0.1.20"
24
+ "@sbc-connect/nuxt-base": "0.1.21"
25
25
  },
26
26
  "scripts": {
27
27
  "preinstall": "npx only-allow pnpm",