Skip to content

Commit c74d701

Browse files
Merge branch 'main' into fix/reintroduce-streamingbatchwriterfix
2 parents 77b574b + 161055c commit c74d701

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1939
-517
lines changed

.github/renovate.json5

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
extends: [
3-
"github>cloudquery/.github//.github/renovate-go-default.json5",
4-
"github>cloudquery/.github//.github/renovate-node-default.json5",
3+
'github>cloudquery/.github//.github/renovate-go-default.json5',
4+
'github>cloudquery/.github//.github/renovate-node-default.json5',
55
],
66
packageRules: [
77
{
8-
matchPackagePatterns: ["github.com/cloudquery/plugin-sdk/*"],
9-
commitMessagePrefix: "chore(deps): ",
8+
commitMessagePrefix: 'chore(deps): ',
9+
matchPackageNames: [
10+
'/github.com/cloudquery/plugin-sdk/*/',
11+
],
1012
},
1113
],
1214
}

.github/workflows/lint_golang.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
golangci:
1212
name: Lint with GolangCI
13-
runs-on: large-ubuntu-plugin-sdk
13+
runs-on: ubicloud-standard-8
1414
timeout-minutes: 10
1515
steps:
1616
- uses: actions/checkout@v4
@@ -20,4 +20,4 @@ jobs:
2020
- name: golangci-lint
2121
uses: golangci/golangci-lint-action@v6
2222
with:
23-
version: v1.62.0
23+
version: v1.64.8

.github/workflows/lint_markdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Git checkout
3333
uses: actions/checkout@v4
3434
- name: markdownlint-cli
35-
uses: nosborn/github-action-markdown-cli@v3.3.0
35+
uses: nosborn/github-action-markdown-cli@v3.4.0
3636
with:
3737
files: .
3838
config_file: .markdownlint.yaml

.github/workflows/unittest-post.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# This posts the status to the PR/commit
1515
- uses: haya14busa/action-workflow_run-status@v1
1616
- name: Download benchmarks
17-
uses: dawidd6/action-download-artifact@v6
17+
uses: dawidd6/action-download-artifact@v8
1818
with:
1919
# This is the workflow that triggered this run
2020
workflow: ${{ github.event.workflow.id }}

.github/workflows/unittest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
unitests:
1212
strategy:
1313
matrix:
14-
os: [large-ubuntu-plugin-sdk, large-windows-plugin-sdk, macos-latest]
14+
os: [ubicloud-standard-8, large-windows-plugin-sdk, macos-latest]
1515
runs-on: ${{ matrix.os }}
1616
timeout-minutes: 15
1717
steps:
@@ -26,13 +26,13 @@ jobs:
2626
- name: Run tests
2727
run: make test
2828
- name: Run benchmark
29-
if: matrix.os == 'large-ubuntu-plugin-sdk'
29+
if: matrix.os == 'ubicloud-standard-8'
3030
run: make benchmark-ci
3131
- name: Save PR number
32-
if: matrix.os == 'large-ubuntu-plugin-sdk' && github.event_name == 'pull_request'
32+
if: matrix.os == 'ubicloud-standard-8' && github.event_name == 'pull_request'
3333
run: echo ${{ github.event.number }} > ./pr_number
3434
- name: Upload deltas
35-
if: matrix.os == 'large-ubuntu-plugin-sdk'
35+
if: matrix.os == 'ubicloud-standard-8'
3636
uses: actions/upload-artifact@v4
3737
with:
3838
name: delta-action-benchmarks

.golangci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ run:
55
linters-settings:
66
errcheck:
77
check-blank: false
8-
ignore: fmt:.*,[rR]ead|[wW]rite|[cC]lose,io:Copy
98
gocritic:
109
disabled-checks:
1110
- commentFormatting
@@ -87,3 +86,6 @@ linters:
8786
- unconvert
8887
- unparam
8988
- unused
89+
issues:
90+
max-issues-per-linter: 0
91+
max-same-issues: 0

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "4.72.0"
2+
".": "4.82.2"
33
}

CHANGELOG.md

Lines changed: 285 additions & 0 deletions
Large diffs are not rendered by default.

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
* @cloudquery/cloudquery-framework
1+
* @cloudquery/integrations-backend
22
CHANGELOG.md
33
.release-please-manifest.json
44
go.mod

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ This is the repository for CloudQuery SDK. If you are looking for CloudQuery CLI
77
## Links
88

99
- [Homepage](https://cloudquery.io)
10-
- [Documentation](https://docs.cloudquery.io)
10+
- [Platform](https://docs.cloudquery.io)
11+
- [Documentation](https://cli-docs.cloudquery.io)
1112
- [CLI and Plugins Monorepo](https://github.com/cloudquery/cloudquery)
1213
- [Community](https://community.cloudquery.io)
1314

0 commit comments

Comments
 (0)