Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .changeset/modernize-dependencies-0-8-0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
'@pgflow/core': minor
'@pgflow/client': minor
'@pgflow/edge-worker': minor
'@pgflow/website': minor
---

BREAKING CHANGE: pgflow 0.8.0 requires pgmq 1.5.0+, PostgreSQL 17, and Supabase CLI 2.34.3+
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: '1.45.2'
deno-version: '2.1.4'

- name: Install sqruff
uses: ./.github/actions/setup-sqruff
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: '1.45.2'
deno-version: '2.1.4'

- name: Install sqruff
uses: ./.github/actions/setup-sqruff
Expand Down
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
nodejs 24.11.0
pnpm 10.20.0
deno 2.1.4
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export async function fetchArticle(url: string) {
};
} catch (error) {
console.error('Error fetching article:', error);
throw new Error(`Failed to fetch article from ${url}: ${error.message}`);
const message = error instanceof Error ? error.message : String(error);
throw new Error(`Failed to fetch article from ${url}: ${message}`);
}
}
2 changes: 1 addition & 1 deletion pkgs/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This package provides essential tools for setting up, managing, and deploying pg
## Prerequisites

- Supabase CLI v2.34.3 or higher
- Deno v1.45.x or higher (for flow compilation)
- Deno v2.1.x or higher (for flow compilation)
- Local Supabase project initialized

## Installation
Expand Down
Loading