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 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 }} diff --git a/.github/workflows/release_prep_hatch.yml b/.github/workflows/release_prep_hatch.yml index ab343b4..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 }} @@ -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 }} 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/) diff --git a/pyproject.toml b/pyproject.toml index 2280802..87bc30f 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]