-
Notifications
You must be signed in to change notification settings - Fork 891
fix(desktop): add missing PostHog env vars to main process vite config #522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 656
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 112
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 73
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 46
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 1305
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 503
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 91
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 91
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 555
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 3095
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 1373
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 95
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 103
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 529
🏁 Script executed:
# Check the structure of packages/trpc ls -la packages/trpc/src/Repository: superset-sh/superset
Length of output: 512
🏁 Script executed:
# Read the exact updateTaskSchema from packages/trpc to compare cat -n packages/trpc/src/router/task/schema.tsRepository: superset-sh/superset
Length of output: 1477
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 46
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 285
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 253
🌐 Web query:
Zod 4.1.13 z.string().url() method support💡 Result:
Yes — in Zod v4 (including 4.1.13) z.string().url() still exists and works, but it is deprecated in favor of the new top-level z.url() API. The method-form remains for backward compatibility but is slated for removal in the next major release. The URL check uses the native URL constructor (so platform differences like React Native’s URL behavior can affect validation). [1][2][3]
Sources:
Remove code duplication by importing from shared packages.
Both
taskPriorityValues(line 5) andupdateTaskSchema(lines 7-20) are duplicated from shared packages:taskPriorityValuesis defined inpackages/db/src/schema/enums.tsupdateTaskSchemais defined inpackages/trpc/src/router/task/schema.tsThis creates a maintenance burden where schema changes in shared packages won't propagate here, risking inconsistencies. Import these instead:
Alternatively, if the goal is to avoid validation in shared packages per commit context, consider re-exporting from the desktop layer without duplication.
Line 16: Use deprecated
z.url()instead ofz.string().url().The
z.string().url()method is deprecated in Zod 4.1.13 in favor of the standalonez.url()schema. While it still works, it's marked for removal in the next major version. Update to:🤖 Prompt for AI Agents