From ece4dd273951999e6ff1a07bfe3cbf46d2e85968 Mon Sep 17 00:00:00 2001 From: Alex Shcherbakov Date: Wed, 1 Nov 2023 13:07:54 +0200 Subject: [PATCH 1/2] fix: Add `unix://` to connection string for plugins from CloudQuery Hub (#151) Closes https://github.com/cloudquery/cloudquery/issues/15081 --- managedplugin/plugin.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/managedplugin/plugin.go b/managedplugin/plugin.go index 09f988bc..857c04c3 100644 --- a/managedplugin/plugin.go +++ b/managedplugin/plugin.go @@ -210,9 +210,9 @@ func (c *Client) ConnectionString() string { switch c.registry { case RegistryGrpc: return tgt - case RegistryLocal: - return "unix://" + tgt - case RegistryGithub: + case RegistryLocal, + RegistryGithub, + RegistryCloudQuery: return "unix://" + tgt case RegistryDocker: return tgt From b37d95f768b74b12dd24b327760abf959d70fa04 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Wed, 1 Nov 2023 13:12:02 +0200 Subject: [PATCH 2/2] chore(main): Release v1.13.3 (#152) :robot: I have created a release *beep* *boop* --- ## [1.13.3](https://github.com/cloudquery/plugin-pb-go/compare/v1.13.2...v1.13.3) (2023-11-01) ### Bug Fixes * Add `unix://` to connection string for plugins from CloudQuery Hub ([#151](https://github.com/cloudquery/plugin-pb-go/issues/151)) ([ece4dd2](https://github.com/cloudquery/plugin-pb-go/commit/ece4dd273951999e6ff1a07bfe3cbf46d2e85968)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c54139f9..e9550a53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.13.3](https://github.com/cloudquery/plugin-pb-go/compare/v1.13.2...v1.13.3) (2023-11-01) + + +### Bug Fixes + +* Add `unix://` to connection string for plugins from CloudQuery Hub ([#151](https://github.com/cloudquery/plugin-pb-go/issues/151)) ([ece4dd2](https://github.com/cloudquery/plugin-pb-go/commit/ece4dd273951999e6ff1a07bfe3cbf46d2e85968)) + ## [1.13.2](https://github.com/cloudquery/plugin-pb-go/compare/v1.13.1...v1.13.2) (2023-11-01)