-
Notifications
You must be signed in to change notification settings - Fork 549
Comparing changes
Open a pull request
base repository: cloudquery/cloudquery
base: cli-v1.0.0-pre.0
head repository: cloudquery/cloudquery
compare: cli-v1.1.0-pre.0
- 18 commits
- 71 files changed
- 8 contributors
Commits on Sep 25, 2022
-
chore(docs): Url for plugins in README.md file under root folder does…
…n't existed (#2056) #### Summary The url for plugins doesn't existed(https://www.cloudquery.io/plugins) and shows 404. ### Changes I update the links from `https://www.cloudquery.io/plugins` to `https://www.cloudquery.io/docs/plugins/source`
Configuration menu - View commit details
-
Copy full SHA for 3f2c787 - Browse repository at this point
Copy the full SHA 3f2c787View commit details
Commits on Sep 26, 2022
-
chore: Add migration guides for v1 plugins (#2034)
Adds migration guides for v1 plugins. Guides added in this PR: - [AWS](https://github.com/cloudquery/cloudquery/blob/migration-guides/plugins/source/aws/docs/v1-migration.md) (Updated) - [Azure](https://github.com/cloudquery/cloudquery/blob/migration-guides/plugins/source/azure/docs/v1-migration.md) - [Cloudflare](https://github.com/cloudquery/cloudquery/blob/migration-guides/plugins/source/cloudflare/docs/v1-migration.md) - [DigitalOcean](https://github.com/cloudquery/cloudquery/blob/migration-guides/plugins/source/digitalocean/docs/v1-migration.md) - [GCP](https://github.com/cloudquery/cloudquery/blob/migration-guides/plugins/source/gcp/docs/v1-migration.md) - [Github](https://github.com/cloudquery/cloudquery/blob/migration-guides/plugins/source/github/docs/v1-migration.md) - [Okta](https://github.com/cloudquery/cloudquery/blob/migration-guides/plugins/source/okta/docs/v1-migration.md) Heroku was left out because it was never released pre-v1. K8s will be added when it is ready, and terraform requires some changes to work (will follow up later today). Generating these requires a bit of manual setup, but for future reference, the process I have locally right now can be replicated using something like this: ``` git worktree add ../v0 git worktree add ../v1 cd ../v0 && git checkout ab65d1e # or any v0 commit cd ../v1 && make build cd .. ``` Then run this script from outside the git root: ``` plugins="aws gcp azure cloudflare digitalocean github okta" mkdir -p docs/tables-v0 mkdir -p docs/tables-v1 for p in $plugins do echo "Generating migration guide for $p" cp -r v0/plugins/source/$p/docs/tables/* docs/tables-v0 ./v1/bin/$p doc docs/tables-v1 ./v1/bin/v1-migration -o cloudquery/plugins/source/$p/docs/v1-migration.md -v1 docs/tables-v0 -v2 docs/tables-v1 done ```
Configuration menu - View commit details
-
Copy full SHA for 4ed3b04 - Browse repository at this point
Copy the full SHA 4ed3b04View commit details -
fix: Remove accidentally added config (#2059)
#### Summary <!-- Explain what problem this PR addresses --> ---
Configuration menu - View commit details
-
Copy full SHA for 1d1bd2f - Browse repository at this point
Copy the full SHA 1d1bd2fView commit details -
feat(dest-test): Add new test destination (#2057)
Adding a new test destination for CLI testing purposes. The new destination plugin is basically a dev null. Also, Im proposing/trying out a .yml per plugin ? maybe this way we can take advantage of the built-in github ``` paths: - "plugins/destination/test/**" ``` For destination plugins I think this is specifaclly important because the workflows vary very much between each plugin as we need different databases and so on. I think for source plugin this will also start becoming a thing when we introduce some smoke tests that will require credentials and so on.Configuration menu - View commit details
-
Copy full SHA for d2e1df2 - Browse repository at this point
Copy the full SHA d2e1df2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2de7278 - Browse repository at this point
Copy the full SHA 2de7278View commit details -
Configuration menu - View commit details
-
Copy full SHA for f32018b - Browse repository at this point
Copy the full SHA f32018bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0167de7 - Browse repository at this point
Copy the full SHA 0167de7View commit details -
chore(main): Release plugins-destination-test v1.1.0 (#2067)
🤖 I have created a release *beep* *boop* --- ## [1.1.0](plugins-destination-test-v1.0.0...plugins-destination-test-v1.1.0) (2022-09-26) ### Features * **dest-test:** Add new test destination ([#2057](#2057)) ([d2e1df2](d2e1df2)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Configuration menu - View commit details
-
Copy full SHA for d138fac - Browse repository at this point
Copy the full SHA d138facView commit details -
fix: AWS redshift cluster parameters (#2063)
Make `aws_redshift_cluster_parameter_groups` a separate resource so that we can have `aws_redshift_cluster_parameters` under it. Fixes #1979
Configuration menu - View commit details
-
Copy full SHA for 9b9ff9d - Browse repository at this point
Copy the full SHA 9b9ff9dView commit details -
chore: Update plugin
destination-testversion to v1.1.0 (#2068)Updates the `destination-test` plugin latest version to v1.1.0
Configuration menu - View commit details
-
Copy full SHA for f6518a0 - Browse repository at this point
Copy the full SHA f6518a0View commit details -
fix: AWS Policy for RDS public accessibility (#2060)
#### Summary Currently, if your RDS instance is publicly accessible, it passes the check to verify that it's not. If it's not publicly accessible, it fails as a false negative. This should be fixed to prevent a bad policy check.
Configuration menu - View commit details
-
Copy full SHA for 9cde8a0 - Browse repository at this point
Copy the full SHA 9cde8a0View commit details -
fix: AWS EBS Snapshots attributes column type (#2075)
Co-authored-by: Kemal Hadimli <disq@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 30ca062 - Browse repository at this point
Copy the full SHA 30ca062View commit details -
fix: Autofilling aws plugin default config values (#1935)
<!-- 🎉 Thank you for making CloudQuery awesome by submitting a PR 🎉 --> #### Summary closes #1884 <!-- Explain what problem this PR addresses --> --- Use the following steps to ensure your PR is ready to be reviewed - [ ] Read the [contribution guidelines](../blob/main/CONTRIBUTING.md) 🧑🎓 - [ ] Test locally on your own infrastructure - [ ] Run `go fmt` to format your code 🖊 - [ ] Lint your changes via `golangci-lint run` 🚨 (install golangci-lint [here](https://golangci-lint.run/usage/install/#local-installation)) - [ ] Update or add tests 🧪 - [ ] Ensure the status checks below are successful ✅
Configuration menu - View commit details
-
Copy full SHA for ddb98a1 - Browse repository at this point
Copy the full SHA ddb98a1View commit details -
feat: Move to standalone postgresql plugin (#2074)
This PR got messed up in conflicts #2043 Co-authored-by: Herman Schaaf <hermanschaaf@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a0de6d3 - Browse repository at this point
Copy the full SHA a0de6d3View commit details -
chore(main): Release plugins-destination-postgresql v0.2.0 (#2078)
🤖 I have created a release *beep* *boop* --- ## [0.2.0](plugins-destination-postgresql-v0.1.0...plugins-destination-postgresql-v0.2.0) (2022-09-26) ### Features * Move to standalone postgresql plugin ([#2074](#2074)) ([a0de6d3](a0de6d3)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Configuration menu - View commit details
-
Copy full SHA for 23a9c4d - Browse repository at this point
Copy the full SHA 23a9c4dView commit details -
This PR was created by a scheduled workflow to sync endpoint changes
Configuration menu - View commit details
-
Copy full SHA for 889bef2 - Browse repository at this point
Copy the full SHA 889bef2View commit details -
chore: Update plugin
destination-postgresqlversion to v0.2.0 (#2081)Updates the `destination-postgresql` plugin latest version to v0.2.0
Configuration menu - View commit details
-
Copy full SHA for 2ac303c - Browse repository at this point
Copy the full SHA 2ac303cView commit details -
chore(main): Release cli v1.1.0-pre.0 (#2079)
🤖 I have created a release *beep* *boop* --- ## [1.1.0-pre.0](cli-v1.0.0-pre.0...cli-v1.1.0-pre.0) (2022-09-26) ### Features * Move to standalone postgresql plugin ([#2074](#2074)) ([a0de6d3](a0de6d3)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Configuration menu - View commit details
-
Copy full SHA for 2242b0d - Browse repository at this point
Copy the full SHA 2242b0dView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff cli-v1.0.0-pre.0...cli-v1.1.0-pre.0