diff --git a/.changeset/chatty-cups-exist.md b/.changeset/chatty-cups-exist.md deleted file mode 100644 index 1fc2f6382..000000000 --- a/.changeset/chatty-cups-exist.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"setup-postgres": minor ---- - -Add optional `postgres-options` input. When set, it replaces `POSTGRES_OPTIONS` for the `docker compose up` invocation so workflows can match a documented Postgres profile (for example Chainlink `tools/test` diagnose) without changing the baked-in default in `.env`. Empty value preserves previous behavior. diff --git a/actions/setup-postgres/CHANGELOG.md b/actions/setup-postgres/CHANGELOG.md index 5f729aff0..78f35f6ac 100644 --- a/actions/setup-postgres/CHANGELOG.md +++ b/actions/setup-postgres/CHANGELOG.md @@ -1,5 +1,17 @@ # setup-postgres +## 1.2.0 + +### Minor Changes + +- [#1549](https://github.com/smartcontractkit/.github/pull/1549) + [`1738226`](https://github.com/smartcontractkit/.github/commit/1738226c6d6374dd953f414942eae47288b118b9) + Thanks [@kalverra](https://github.com/kalverra)! - Add optional + `postgres-options` input. When set, it replaces `POSTGRES_OPTIONS` for the + `docker compose up` invocation so workflows can match a documented Postgres + profile (for example Chainlink `tools/test` diagnose) without changing the + baked-in default in `.env`. Empty value preserves previous behavior. + ## 1.1.0 ### Minor Changes diff --git a/actions/setup-postgres/package.json b/actions/setup-postgres/package.json index 0baa8c202..f8a6be98c 100644 --- a/actions/setup-postgres/package.json +++ b/actions/setup-postgres/package.json @@ -1,6 +1,6 @@ { "name": "setup-postgres", - "version": "1.1.0", + "version": "1.2.0", "description": "", "private": true, "scripts": {},