Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/nice-pears-find.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-items-bet.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/skip-validate-flags.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-eagles-draw.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-carrots-sleep.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/whole-teeth-juggle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/witty-cobras-run.md

This file was deleted.

19 changes: 19 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# powersync

## 0.9.3

### Patch Changes

- 0a44213: Added `--sync-config-file-path` so local sync YAML can be read from a path other than `sync-config.yaml` for **`powersync deploy`**, **`powersync deploy sync-config`**, **`powersync validate`**, and **`powersync generate schema`**.
- 6e9e81d: Upgrade internal PowerSync dependencies.
- ef92f08: Add `--skip-validations` and `--validate-only` flags to `deploy` and `validate` commands.

These mutually exclusive flags accept a comma-separated list of validation tests (`configuration`, `connections`, `sync-config`) and allow users to skip or isolate specific validation checks. This is useful when deploying behind VPC endpoints, dealing with transient sync config timeouts, or bypassing schema validation for older configs.

- a81df21: Reduce NPM dependency size
- 4620c7b: Added `overwrite` flag to the `powersync pull instance` command. Specifying this flag will overwrite existing config files instead of writing to temporary files.
- c5ae2d5: Improved formatting for PowerSync management service call errors.
- 4620c7b: Added YAML comments to the configuration files genered when running powersync pull instance
- @powersync/cli-core@0.9.3
- @powersync/cli-schemas@0.9.3
- @powersync/cli-plugin-docker@0.9.3
- @powersync/cli-plugin-config-edit@0.9.3

## 0.9.2

### Patch Changes
Expand Down
151 changes: 80 additions & 71 deletions cli/README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "powersync",
"description": "A CLI for managing PowerSync instances",
"version": "0.9.2",
"version": "0.9.3",
"author": "POWERSYNC",
"bin": {
"powersync": "./bin/run.js"
Expand Down
6 changes: 6 additions & 0 deletions packages/cli-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @powersync/cli-core

## 0.9.3

### Patch Changes

- @powersync/cli-schemas@0.9.3

## 0.9.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@powersync/cli-core",
"description": "Core types and base commands for PowerSync CLI and plugins (shared by CLI and plugin-docker).",
"version": "0.9.2",
"version": "0.9.3",
"license": "FSL-1.1-ALv2",
"author": "POWERSYNC",
"type": "module",
Expand Down
2 changes: 2 additions & 0 deletions packages/schemas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @powersync/cli-schemas

## 0.9.3

## 0.9.2

## 0.9.1
Expand Down
2 changes: 1 addition & 1 deletion packages/schemas/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@powersync/cli-schemas",
"description": "PowerSync CLI schema definitions and JSON Schema generation",
"version": "0.9.2",
"version": "0.9.3",
"author": "POWERSYNC",
"license": "FSL-1.1-ALv2",
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions plugins/config-edit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @powersync/cli-plugin-config-edit

## 0.9.3

### Patch Changes

- @powersync/cli-core@0.9.3

## 0.9.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/config-edit/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@powersync/cli-plugin-config-edit",
"description": "PowerSync CLI plugin to launch the configuration editor",
"version": "0.9.2",
"version": "0.9.3",
"license": "FSL-1.1-ALv2",
"author": "POWERSYNC",
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions plugins/docker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @powersync/cli-plugin-docker

## 0.9.3

### Patch Changes

- @powersync/cli-core@0.9.3
- @powersync/cli-schemas@0.9.3

## 0.9.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/docker/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@powersync/cli-plugin-docker",
"description": "PowerSync CLI plugin: reset, start, and stop self-hosted instances using Docker Compose",
"version": "0.9.2",
"version": "0.9.3",
"author": "POWERSYNC",
"license": "FSL-1.1-ALv2",
"type": "module",
Expand Down