From 174deced11a2ce21b028ab07f83f6e70d54f172f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 08:55:43 -0700 Subject: [PATCH] chore: publish new package versions (#1777) This PR was opened by the [Changesets release](https://github.com/changesets/action) 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 ## @core/sync-service@0.6.2 ### Patch Changes - 5f6d202: - Wait for advisory lock on replication slot to enable rolling deploys. - Configurable replication slot and publication name using `REPLICATION_STREAM_ID` environment variable. - Add `HealthCheckPlug` API endopint at `v1/health` that returns `waiting`, `starting`,and `active` statuses. Co-authored-by: github-actions[bot] --- .changeset/poor-candles-fly.md | 7 ------- packages/sync-service/CHANGELOG.md | 8 ++++++++ packages/sync-service/package.json | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 .changeset/poor-candles-fly.md diff --git a/.changeset/poor-candles-fly.md b/.changeset/poor-candles-fly.md deleted file mode 100644 index 3c0c4c6466..0000000000 --- a/.changeset/poor-candles-fly.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@core/sync-service": patch ---- - -- Wait for advisory lock on replication slot to enable rolling deploys. -- Configurable replication slot and publication name using `REPLICATION_STREAM_ID` environment variable. -- Add `HealthCheckPlug` API endopint at `v1/health` that returns `waiting`, `starting`,and `active` statuses. \ No newline at end of file diff --git a/packages/sync-service/CHANGELOG.md b/packages/sync-service/CHANGELOG.md index 64bf922459..e1c3bda8cf 100644 --- a/packages/sync-service/CHANGELOG.md +++ b/packages/sync-service/CHANGELOG.md @@ -1,5 +1,13 @@ # @core/sync-service +## 0.6.2 + +### Patch Changes + +- 5f6d202: - Wait for advisory lock on replication slot to enable rolling deploys. + - Configurable replication slot and publication name using `REPLICATION_STREAM_ID` environment variable. + - Add `HealthCheckPlug` API endopint at `v1/health` that returns `waiting`, `starting`,and `active` statuses. + ## 0.6.1 ### Patch Changes diff --git a/packages/sync-service/package.json b/packages/sync-service/package.json index c40397681e..dfffb2f0dd 100644 --- a/packages/sync-service/package.json +++ b/packages/sync-service/package.json @@ -1,7 +1,7 @@ { "name": "@core/sync-service", "private": true, - "version": "0.6.1", + "version": "0.6.2", "scripts": { "publish:hex": "mix do deps.get, hex.publish --yes" }