Skip to content

Commit 81520a6

Browse files
Version Packages (#158)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 50ab557 commit 81520a6

File tree

16 files changed

+100
-39
lines changed

16 files changed

+100
-39
lines changed

.changeset/fresh-zoos-arrive.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

pkgs/cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# pgflow
22

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [50ab557]
8+
- @pgflow/core@0.4.1
9+
310
## 0.4.0
411

512
### Patch Changes

pkgs/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pgflow",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"type": "module",
55
"main": "./dist/index.js",
66
"typings": "./dist/index.d.ts",

pkgs/client/CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# @pgflow/client
22

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- 50ab557: feat: add multi-target build support for @pgflow/client package
8+
9+
The @pgflow/client package now builds for multiple environments, making it usable in Node.js, browsers, and bundlers.
10+
11+
**What's new:**
12+
13+
- ES modules (`.js`) and CommonJS (`.cjs`) builds for Node.js
14+
- Browser bundle (`.browser.js`) with all dependencies included
15+
- Full TypeScript declarations
16+
- CDN support via unpkg
17+
- Production builds with minification
18+
- Proper tree-shaking support
19+
- `@supabase/supabase-js` is now a regular dependency (not peer dependency)
20+
21+
**You can now use it in:**
22+
23+
- Node.js: `import { PgflowClient } from '@pgflow/client'`
24+
- CommonJS: `const { PgflowClient } = require('@pgflow/client')`
25+
- Browser: `<script src="https://unpkg.com/@pgflow/client"></script>` - then use `window.pgflow.createClient(supabase)`
26+
- Bundlers: Automatically picks the right format
27+
28+
**Other changes:**
29+
30+
- Pin Supabase CLI to exact version 2.21.1 to ensure consistent type generation between local and CI environments
31+
32+
- Updated dependencies [50ab557]
33+
- @pgflow/core@0.4.1
34+
- @pgflow/dsl@0.4.1
35+
336
## 0.4.0
437

538
### Minor Changes

pkgs/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgflow/client",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"type": "module",
55
"dependencies": {
66
"@pgflow/core": "workspace:*",

pkgs/core/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @pgflow/core
22

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- 50ab557: feat: add multi-target build support for @pgflow/client package
8+
9+
The @pgflow/client package now builds for multiple environments, making it usable in Node.js, browsers, and bundlers.
10+
11+
**What's new:**
12+
13+
- ES modules (`.js`) and CommonJS (`.cjs`) builds for Node.js
14+
- Browser bundle (`.browser.js`) with all dependencies included
15+
- Full TypeScript declarations
16+
- CDN support via unpkg
17+
- Production builds with minification
18+
- Proper tree-shaking support
19+
- `@supabase/supabase-js` is now a regular dependency (not peer dependency)
20+
21+
**You can now use it in:**
22+
23+
- Node.js: `import { PgflowClient } from '@pgflow/client'`
24+
- CommonJS: `const { PgflowClient } = require('@pgflow/client')`
25+
- Browser: `<script src="https://unpkg.com/@pgflow/client"></script>` - then use `window.pgflow.createClient(supabase)`
26+
- Bundlers: Automatically picks the right format
27+
28+
**Other changes:**
29+
30+
- Pin Supabase CLI to exact version 2.21.1 to ensure consistent type generation between local and CI environments
31+
- @pgflow/dsl@0.4.1
32+
333
## 0.4.0
434

535
### Minor Changes

pkgs/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgflow/core",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"license": "AGPL-3.0",
55
"type": "module",
66
"main": "./dist/index.js",

pkgs/dsl/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @pgflow/dsl
22

3+
## 0.4.1
4+
35
## 0.4.0
46

57
### Patch Changes

pkgs/dsl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgflow/dsl",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

pkgs/edge-worker/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @pgflow/edge-worker
22

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [50ab557]
8+
- @pgflow/core@0.4.1
9+
- @pgflow/dsl@0.4.1
10+
311
## 0.4.0
412

513
### Patch Changes

0 commit comments

Comments
 (0)