chore: release packages - #75
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 4, 2026 03:01
44a6c07 to
888a9cc
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@call-e/cli@0.3.8
Patch Changes
#71
bc70f48Thanks @EazyHood! - Open the browser without cmd.exe on Windows duringauth login.cmd /c start "" <url>let cmd parse the OAuth URL, and&is a command separator there, so the URL was truncated at the first&(losingredirect_uri,stateandscope) and the rest of the query string was run as shell commands. The opener is nowrundll32, which takes the URL as a single argument, named by its fully qualified%SystemRoot%\System32path so the executable is not resolved through the current working directory.Updated dependencies [
566008b]:@call-e/core@0.2.4
Patch Changes
#72
566008bThanks @EazyHood! - Read numeric token expiries, and refresh instead of caching forever when one cannot be read.A broker that sends the expiry as epoch seconds or milliseconds arrived here as a string such as
"1700000000000", whichnew Date()reads asInvalid Date. A valid expiry was therefore indistinguishable from no expiry at all, and the token was cached as if it never expired. Numeric expiries are now parsed explicitly, with values below 1e11 taken as seconds and the rest as milliseconds; a negative or non-finite value is rejected rather than being turned into a nonsense date bynew Date("-1").An expiry that still cannot be read no longer means "never expires": the entry is treated as expired so the next call refreshes it.