Skip to content

Commit

Permalink
Update README.md and bump postgres support to v17 (#333)
Browse files Browse the repository at this point in the history
* Bump version in `README.md`

* Bump Postgres support to v17
  • Loading branch information
nhatthm authored Jan 7, 2025
1 parent 0f648e2 commit d70b246
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jobs:
matrix:
go-version: ${{ fromJson(needs.setup.outputs.go-supported-versions) }}
arch: [ "386", amd64 ]
postgres-version: [ "12", "13", "14", "15", "16" ]
postgres-version: [ "13", "14", "15", "16", "17" ]
postgres-driver: [ "postgres", "pgx/v4", "pgx/v5" ]
runs-on: ubuntu-latest
needs: [setup, test-unit]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-compatibility-libpq.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
matrix:
go-version: ${{ fromJson(needs.setup.outputs.go-supported-versions) }}
arch: [ "386", amd64 ]
postgres-version: [ "12", "13", "14", "15", "16" ]
postgres-version: [ "13", "14", "15", "16", "17" ]
runs-on: ubuntu-latest
needs: [setup]
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-compatibility-pgx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
matrix:
go-version: ${{ fromJson(needs.setup.outputs.go-supported-versions) }}
arch: [ "386", amd64 ]
postgres-version: [ "12", "13", "14", "15", "16" ]
postgres-version: [ "13", "14", "15", "16", "17" ]
pgx-version: [ "v4", "v5"]
runs-on: ubuntu-latest
needs: [setup]
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Compatibility

| `otelsql` | `go.opentelemetry.io/otel/trace` | `go.opentelemetry.io/otel/metric` |
|:---------------------------:|:--------------------------------:|:---------------------------------:|
| `v0.15.*` <sup>&nbsp;</sup> | `v1.33.0` ~> `latest` | `v1.33.0` ~> `latest` |
| `v0.14.*` <sup>&nbsp;</sup> | `v1.30.0` ~> `latest` | `v1.30.0` ~> `latest` |
| `v0.13.*` <sup>&nbsp;</sup> | `v1.24.0` ~> `latest` | `v1.24.0` ~> `latest` |
| `v0.12.*` <sup>&nbsp;</sup> | `v1.17.0` ~> `latest` | `v0.40.0` ~> `latest` |
Expand Down Expand Up @@ -662,7 +663,7 @@ The traces are almost identical with some minor changes:
<code style="white-space: nowrap">jackc/pgx/v4/stdlib</code>
</td>
<td style="white-space: nowrap">
Postgres 12, 13, 14, 15, 16
Postgres 13, 14, 15, 16, 17
</td>
<td colspan="6" align="center">
<a href="https://github.com/nhatthm/otelsql/actions/workflows/test-compatibility-pgx.yaml">
Expand All @@ -677,7 +678,7 @@ The traces are almost identical with some minor changes:
<code style="white-space: nowrap">jackc/pgx/v5/stdlib</code>
</td>
<td style="white-space: nowrap">
Postgres 12, 13, 14, 15, 16
Postgres 13, 14, 15, 16, 17
</td>
<td colspan="6" align="center">
<a href="https://github.com/nhatthm/otelsql/actions/workflows/test-compatibility-pgx.yaml">
Expand All @@ -692,7 +693,7 @@ The traces are almost identical with some minor changes:
<code style="white-space: nowrap">lib/pq</code>
</td>
<td style="white-space: nowrap">
Postgres 12, 13, 14, 15, 16
Postgres 13, 14, 15, 16, 17
</td>
<td colspan="6" align="center">
<a href="https://github.com/nhatthm/otelsql/actions/workflows/test-compatibility-libpq.yaml">
Expand Down

0 comments on commit d70b246

Please sign in to comment.