diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index cebfff81..bada2455 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,6 +1,9 @@
-name: ci
+name: Checks
-on: [push, pull_request, release]
+on:
+ pull_request:
+ branches:
+ - main
jobs:
code_quality:
diff --git a/.github/workflows/publish_jsr.yml b/.github/workflows/publish_jsr.yml
index 1afeb605..1b2de0f5 100644
--- a/.github/workflows/publish_jsr.yml
+++ b/.github/workflows/publish_jsr.yml
@@ -11,20 +11,34 @@ jobs:
timeout-minutes: 30
permissions:
- contents: read
+ contents: write
id-token: write
steps:
- - name: Clone repository
+ - name: Checkout repository
uses: actions/checkout@v4
with:
- submodules: true
+ fetch-depth: 0
- name: Set up Deno
uses: denoland/setup-deno@v1
with:
deno-version: v2.x
+ - name: Extract version from deno.json
+ id: get_version
+ run: |
+ VERSION=$(jq -r .version < deno.json)
+ echo "version=$VERSION" >> $GITHUB_OUTPUT
+
+ - name: Check if version tag already exists
+ run: |
+ TAG="v${{ steps.get_version.outputs.version }}"
+ if git rev-parse "$TAG" >/dev/null 2>&1; then
+ echo "🚫 Tag $TAG already exists. Aborting."
+ exit 1
+ fi
+
- name: Check Format
run: deno fmt --check
@@ -43,10 +57,20 @@ jobs:
- name: Run doc tests
run: docker compose run doc_tests
- - name: Publish (dry run)
- if: startsWith(github.ref, 'refs/tags/') == false
- run: deno publish --dry-run --allow-dirty
+ - name: Create tag for release
+ run: |
+ TAG="v${{ steps.get_version.outputs.version }}"
+ git config user.name "github-actions"
+ git config user.email "github-actions@users.noreply.github.com"
+ git tag "$TAG"
+ git push origin "$TAG"
+
+ - name: Create GitHub Release
+ run: |
+ gh release create "v${{ steps.get_version.outputs.version }}" \
+ --title "v${{ steps.get_version.outputs.version }}"
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- - name: Publish (real)
- if: startsWith(github.ref, 'refs/tags/')
- run: deno publish --allow-dirty
+ - name: Publish package
+ run: deno publish
diff --git a/README.md b/README.md
index 610ece78..fa22460a 100644
--- a/README.md
+++ b/README.md
@@ -1,26 +1,34 @@
+
+
# deno-postgres
+

+
+
+
+

-[](https://discord.gg/HEdTCvZUSf)
+[](https://discord.com/invite/HEdTCvZUSf)
[](https://jsr.io/@db/postgres)
[](https://jsr.io/@db/postgres)
[](https://deno-postgres.com)
[](https://jsr.io/@db/postgres/doc)
[](LICENSE)
-A lightweight PostgreSQL driver for Deno focused on developer experience.
-
+A lightweight PostgreSQL driver for Deno focused on developer experience.\
`deno-postgres` is inspired by the excellent work of
[node-postgres](https://github.com/brianc/node-postgres) and
[pq](https://github.com/lib/pq).
+
+
## Documentation
The documentation is available on the
-[`deno-postgres` website](https://deno-postgres.com/).
+[`deno-postgres`](https://deno-postgres.com/) website.
-Join the [Discord](https://discord.gg/HEdTCvZUSf) as well! It's a good place to
-discuss bugs and features before opening issues.
+Join the [Discord](https://discord.com/invite/HEdTCvZUSf) as well! It's a good
+place to discuss bugs and features before opening issues.
## Examples
@@ -70,24 +78,26 @@ alongside the driver.
This situation will stabilize as `deno-postgres` approach version 1.0.
-| Deno version | Min driver version | Max version | Note |
-| ------------- | ------------------ | ------------------- | ------------------------------------------------------------------------------ |
-| 1.8.x | 0.5.0 | 0.10.0 | |
-| 1.9.0 | 0.11.0 | 0.11.1 | |
-| 1.9.1 and up | 0.11.2 | 0.11.3 | |
-| 1.11.0 and up | 0.12.0 | 0.12.0 | |
-| 1.14.0 and up | 0.13.0 | 0.13.0 | |
-| 1.16.0 | 0.14.0 | 0.14.3 | |
-| 1.17.0 | 0.15.0 | 0.17.1 | |
-| 1.40.0 | 0.17.2 | currently supported | 0.17.2 [on JSR](https://jsr.io/@bartlomieju/postgres) |
-| 2.0.0 and up | 0.19.4 | currently supported | All versions available as [`@db/postgres` on JSR](https://jsr.io/@db/postgres) |
+| Deno version | Min driver version | Max version | Note |
+| ------------- | ------------------ | ----------- | -------------------------------------------------------------------------- |
+| 1.8.x | 0.5.0 | 0.10.0 | |
+| 1.9.0 | 0.11.0 | 0.11.1 | |
+| 1.9.1 and up | 0.11.2 | 0.11.3 | |
+| 1.11.0 and up | 0.12.0 | 0.12.0 | |
+| 1.14.0 and up | 0.13.0 | 0.13.0 | |
+| 1.16.0 | 0.14.0 | 0.14.3 | |
+| 1.17.0 | 0.15.0 | 0.17.1 | |
+| 1.40.0 | 0.17.2 | 0.19.3 | 0.19.3 and down are available in [deno.land](https://deno.land/x/postgres) |
+| 2.0.0 and up | 0.19.4 | - | Available on JSR! [`@db/postgres`](https://jsr.io/@db/postgres) |
## Breaking changes
Although `deno-postgres` is reasonably stable and robust, it is a WIP, and we're
still exploring the design. Expect some breaking changes as we reach version 1.0
-and enhance the feature set. Please check the Releases for more info on breaking
-changes. Please reach out if there are any undocumented breaking changes.
+and enhance the feature set. Please check the
+[Releases](https://github.com/denodrivers/postgres/releases) for more info on
+breaking changes. Please reach out if there are any undocumented breaking
+changes.
## Found issues?
diff --git a/docs/README.md b/docs/README.md
index 65538ce2..97527885 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -1,7 +1,7 @@
# deno-postgres

-[](https://discord.gg/HEdTCvZUSf)
+[](https://discord.com/invite/HEdTCvZUSf)
[](https://jsr.io/@db/postgres)
[](https://jsr.io/@db/postgres)
[](https://deno-postgres.com)
diff --git a/docs/deno-postgres.png b/docs/deno-postgres.png
new file mode 100644
index 00000000..3c1e735d
Binary files /dev/null and b/docs/deno-postgres.png differ