create-feathersdev 0.13.1 → 0.13.2
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 +6 -0
- package/esm/base.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.13.2](https://github.com/feathersdev/monorepo/compare/v0.13.1...v0.13.2) (2026-02-23)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **talon-auth:** Always get active user and avoid initial login token roundtrip ([#389](https://github.com/feathersdev/monorepo/issues/389)) ([34e4ddd](https://github.com/feathersdev/monorepo/commit/34e4dddd56043f2f8c4edeec24c9a7f560b58d4b))
|
|
11
|
+
|
|
6
12
|
## [0.13.1](https://github.com/feathersdev/monorepo/compare/v0.13.0...v0.13.1) (2026-02-21)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package create-feathersdev
|
package/esm/base.js
CHANGED
|
@@ -28,7 +28,7 @@ export async function getBaseContext(options, init = {}) {
|
|
|
28
28
|
api: new TalonApiClient(apiUrl, { Referrer: referer }),
|
|
29
29
|
});
|
|
30
30
|
const device = await auth.getDevice();
|
|
31
|
-
const user = await auth.
|
|
31
|
+
const user = await auth.getLocalUser();
|
|
32
32
|
return {
|
|
33
33
|
...ctx,
|
|
34
34
|
device,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-feathersdev",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.13.
|
|
4
|
+
"version": "0.13.2",
|
|
5
5
|
"description": "The feathers.dev CLI",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Feathers Cloud Inc.",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@featherscloud/pinion": "^0.5.5",
|
|
54
54
|
"chalk": "^5.6.2",
|
|
55
|
-
"talon-auth": "^0.13.
|
|
55
|
+
"talon-auth": "^0.13.2"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@cloudflare/workers-types": "^4.20260219.0",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"shx": "^0.4.0",
|
|
62
62
|
"typescript": "^5.9.3"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "c44c73379550cced4b59cab4e9fc997f41971490"
|
|
65
65
|
}
|