chore: publish new package versions - #759
Closed
github-actions[bot] wants to merge 1 commit into
Closed
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
3 times, most recently
from
August 11, 2025 09:52
f088317 to
785890e
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 12, 2025 07:18
785890e to
f936e75
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 8, 2025 13:30
f936e75 to
5a5b4e3
Compare
tdrz
force-pushed
the
changeset-release/main
branch
from
September 8, 2025 14:00
5a5b4e3 to
d6a8e3f
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
@electric-sql/pglite@0.4.0
Minor Changes
@electric-sql/pglite-react@1.0.0
Patch Changes
@electric-sql/pglite-repl@1.0.0
Patch Changes
@electric-sql/pglite-socket@1.0.0
Patch Changes
@electric-sql/pglite-sync@1.0.0
Patch Changes
@electric-sql/pglite-tools@1.0.0
Patch Changes
be677b4: fix pg_dump on Windows systems
When calling pg_dump on Windows system the function fails with an error as the one bellow.
❗ Notice the double drive letter
Error: ENOENT: no such file or directory, open 'E:\C:\Users\<USERNAME>\AppData\Local\npm-cache\_npx\ba4f1959e38407b5\node_modules\@electric-sql\pglite-tools\dist\pg_dump.wasm'The problem is in execPgDump function at line
const blob = await fs.readFile(bin.toString().slice(7))I think the intention here was to remove
file://from the begging of the path. However this is not necesarry readFile can handle URL objects.Moreover this will fail on Windows becase the slice creates a path like '/C:/...' and the readFile function will add the extra drive letter
Updated dependencies [f12a582]
@electric-sql/pglite-vue@1.0.0
Patch Changes