From 7ed21e034e8055a6f9af31ad7421361852cc50d0 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Fri, 5 Jul 2024 11:21:12 -0400 Subject: [PATCH] chore(deps): Update CloudQuery monorepo modules (#539) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [destination-postgresql](https://hub.cloudquery.io) | patch | `v8.2.3` -> `v8.2.4` | | [source-aws](https://hub.cloudquery.io) | minor | `v27.5.0` -> `v27.6.0` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). --- example_configs/parallel.yml | 4 ++-- example_configs/serial.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/example_configs/parallel.yml b/example_configs/parallel.yml index e1d85a18..d5812658 100644 --- a/example_configs/parallel.yml +++ b/example_configs/parallel.yml @@ -2,7 +2,7 @@ kind: source spec: name: 'aws-REGION_PLACEHOLDER' path: cloudquery/aws - version: 'v27.5.0' # latest version of aws plugin + version: 'v27.6.0' # latest version of aws plugin destinations: ['postgresql-REGION_PLACEHOLDER'] tables: [aws_s3_buckets] skip_dependent_tables: true @@ -14,6 +14,6 @@ kind: destination spec: name: 'postgresql-REGION_PLACEHOLDER' path: cloudquery/postgresql - version: 'v8.2.3' # latest version of postgresql plugin + version: 'v8.2.4' # latest version of postgresql plugin spec: connection_string: ${CQ_DSN} # The CQ_DSN environment variable will be set by GitHub Action workflow diff --git a/example_configs/serial.yml b/example_configs/serial.yml index 35f4033a..afabaeab 100644 --- a/example_configs/serial.yml +++ b/example_configs/serial.yml @@ -2,7 +2,7 @@ kind: source spec: name: 'aws' path: 'cloudquery/aws' - version: 'v27.5.0' # latest version of aws plugin + version: 'v27.6.0' # latest version of aws plugin destinations: ['postgresql'] tables: [aws_s3_buckets] skip_dependent_tables: true @@ -11,6 +11,6 @@ kind: destination spec: name: 'postgresql' path: 'cloudquery/postgresql' - version: 'v8.2.3' # latest version of postgresql plugin + version: 'v8.2.4' # latest version of postgresql plugin spec: connection_string: 'postgresql://postgres:pass@localhost:5432/postgres?sslmode=disable'