From 033de4cab23d42bcc4a8a350c1c636d962a2d3af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 21:31:07 +0000 Subject: [PATCH 1/6] Bump actions/checkout from 3 to 4 (#102) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Co-authored-by: Matthew McKnight <91097623+McKnight-42@users.noreply.github.com> --- .github/workflows/release_prep_hatch.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_prep_hatch.yml b/.github/workflows/release_prep_hatch.yml index ab343b4..0efe3e8 100644 --- a/.github/workflows/release_prep_hatch.yml +++ b/.github/workflows/release_prep_hatch.yml @@ -219,7 +219,7 @@ jobs: steps: - name: "Checkout ${{ github.event.repository.name }}@${{ needs.release-branch.outputs.name }}" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.release-branch.outputs.name }} @@ -292,7 +292,7 @@ jobs: steps: - name: "Checkout ${{ github.event.repository.name }}@${{ needs.release-branch.outputs.name }}" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.release-branch.outputs.name }} @@ -410,7 +410,7 @@ jobs: steps: - name: "Checkout ${{ github.event.repository.name }}" - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: "Merge changes into ${{ inputs.branch }}" uses: everlytic/branch-merge@1.1.5 @@ -455,7 +455,7 @@ jobs: echo "name=$branch" >> $GITHUB_OUTPUT - name: "Checkout ${{ github.event.repository.name }}@${{ steps.branch.outputs.name }}" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ steps.branch.outputs.name }} From 6d99e2ba906db8665289a3035ed14750b9b5f90d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 21:46:42 +0000 Subject: [PATCH 2/6] Bump actions/setup-python from 4 to 5 (#118) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com> --- .github/workflows/integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index e3390fb..45fe8d4 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -113,7 +113,7 @@ jobs: uses: actions/checkout@v4 - name: "Set up Python ${{ matrix.python-version }}" - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} From 1a04eb9f3a9545e8b242fe7ad4235b55146ec37c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 18:50:21 -0400 Subject: [PATCH 3/6] Bump dbt-labs/actions from 1.1.0 to 1.1.1 (#101) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Co-authored-by: Matthew McKnight <91097623+McKnight-42@users.noreply.github.com> --- .github/workflows/release_prep_hatch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_prep_hatch.yml b/.github/workflows/release_prep_hatch.yml index 0efe3e8..a97268c 100644 --- a/.github/workflows/release_prep_hatch.yml +++ b/.github/workflows/release_prep_hatch.yml @@ -113,7 +113,7 @@ jobs: - name: "Parse input version" id: semver - uses: dbt-labs/actions/parse-semver@v1.1.0 + uses: dbt-labs/actions/parse-semver@v1.1.1 with: version: ${{ inputs.version }} From 89d89d38e4f151e6f492fbe21bab43ab75c0c02c Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Thu, 18 Jul 2024 01:18:49 +0200 Subject: [PATCH 4/6] Bump deps on common, adapters, core (#95) Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com> --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c645483..0fb7b88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,11 +24,11 @@ classifiers = [ ] dependencies = [ "psycopg2-binary>=2.9,<3.0", - "dbt-adapters>=0.1.0a1,<2.0", + "dbt-adapters>=1.1.1,<2.0", # add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency - "dbt-core>=1.8.0a1", + "dbt-core>=1.8.0", # installed via dbt-adapters but used directly - "dbt-common>=0.1.0a1,<2.0", + "dbt-common>=1.0.4,<2.0", "agate>=1.0,<2.0", ] [project.urls] From 68fe56aefda7053bfccda1c6aabdbd1b22a44638 Mon Sep 17 00:00:00 2001 From: Mila Page <67295367+VersusFacit@users.noreply.github.com> Date: Tue, 23 Jul 2024 15:24:37 -0700 Subject: [PATCH 5/6] Add hatch commands to the README (#131) Co-authored-by: Mila Page --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 285f514..8053af1 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,11 @@ fi This ensures the version of `psycopg2` will match that of `psycopg2-binary`. + +## Contribute + +See `CONTRIBUTING.md` for a detailed overview of contributing a code change to this adapter. + ## Join the dbt Community - Be part of the conversation in the [dbt Community Slack](http://community.getdbt.com/) From 28541730e62fbfa0e3f9c1f714e22ac08e25c651 Mon Sep 17 00:00:00 2001 From: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Date: Wed, 24 Jul 2024 12:11:00 -0400 Subject: [PATCH 6/6] Make `dependabot` ignore patch updates (#128) Co-authored-by: Colin Rogers <111200756+colin-rogers-dbt@users.noreply.github.com> --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ae2be43..746dcae 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,13 +5,25 @@ updates: schedule: interval: "daily" rebase-strategy: "disabled" + ignore: + - dependency-name: "*" + update-types: + - version-update:semver-patch - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" rebase-strategy: "disabled" + ignore: + - dependency-name: "*" + update-types: + - version-update:semver-patch - package-ecosystem: "docker" directory: "/docker" schedule: interval: "weekly" rebase-strategy: "disabled" + ignore: + - dependency-name: "*" + update-types: + - version-update:semver-patch