You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/cli/CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,21 @@
1
1
# lingo.dev
2
2
3
+
## 0.133.9
4
+
5
+
### Patch Changes
6
+
7
+
-[#2064](https://github.com/lingodotdev/lingo.dev/pull/2064)[`3140f2a`](https://github.com/lingodotdev/lingo.dev/commit/3140f2ab62bab9b33334d98fd5550f6881a28431) Thanks [@AndreyHirsa](https://github.com/AndreyHirsa)! - fix PO loader push performance, multi-entry section handling, and pseudo mode crash
8
+
9
+
## 0.133.8
10
+
11
+
### Patch Changes
12
+
13
+
-[#2062](https://github.com/lingodotdev/lingo.dev/pull/2062)[`10e6364`](https://github.com/lingodotdev/lingo.dev/commit/10e636479046da5d53d059e539497195191a99fc) Thanks [@AndreyHirsa](https://github.com/AndreyHirsa)! - Migrate PostHog tracking identity from email to database user ID
"Enable pseudo-localization mode: automatically pseudo-translates all extracted strings with accented characters and visual markers without calling any external API. Useful for testing UI internationalization readiness",
125
125
)
126
126
.action(async(args)=>{
127
-
letemail: string|null=null;
127
+
letuserIdentity: UserIdentity=null;
128
128
try{
129
129
constctx: CmdRunContext={
130
130
flags: flagsSchema.parse(args),
@@ -143,9 +143,9 @@ export default new Command()
143
143
144
144
awaitsetup(ctx);
145
145
146
-
email=awaitdetermineEmail(ctx);
146
+
userIdentity=awaitdetermineUserIdentity(ctx);
147
147
148
-
awaittrackEvent(email,"cmd.run.start",{
148
+
awaittrackEvent(userIdentity,"cmd.run.start",{
149
149
config: ctx.config,
150
150
flags: ctx.flags,
151
151
});
@@ -176,16 +176,16 @@ export default new Command()
0 commit comments