@pgpm/uuid 0.6.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Makefile CHANGED
@@ -1,5 +1,5 @@
1
1
  EXTENSION = launchql-uuid
2
- DATA = sql/launchql-uuid--0.5.0.sql
2
+ DATA = sql/launchql-uuid--0.6.0.sql
3
3
 
4
4
  PG_CONFIG = pg_config
5
5
  PGXS := $(shell $(PG_CONFIG) --pgxs)
package/README.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @pgpm/uuid
2
2
 
3
+ <p align="center" width="100%">
4
+ <img height="250" src="https://raw.githubusercontent.com/launchql/launchql/refs/heads/main/assets/outline-logo.svg" />
5
+ </p>
6
+
7
+ <p align="center" width="100%">
8
+ <a href="https://github.com/launchql/pgpm-modules/actions/workflows/ci.yml">
9
+ <img height="20" src="https://github.com/launchql/pgpm-modules/actions/workflows/ci.yml/badge.svg" />
10
+ </a>
11
+ <a href="https://github.com/launchql/pgpm-modules/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
12
+ <a href="https://www.npmjs.com/package/@pgpm/uuid"><img height="20" src="https://img.shields.io/github/package-json/v/launchql/pgpm-modules?filename=packages%2Fdata-types%2Fuuid%2Fpackage.json"/></a>
13
+ </p>
14
+
3
15
  UUID utilities and extensions for PostgreSQL.
4
16
 
5
17
  ## Overview
@@ -28,40 +40,42 @@ This is a quick way to get started. The sections below provide more detailed ins
28
40
  ### Prerequisites
29
41
 
30
42
  ```bash
31
- # Install pgpm globally
43
+ # Install pgpm CLI
32
44
  npm install -g pgpm
33
45
 
34
- # Start PostgreSQL
46
+ # Start local Postgres (via Docker) and export env vars
35
47
  pgpm docker start
36
-
37
- # Set environment variables
38
48
  eval "$(pgpm env)"
39
49
  ```
40
50
 
41
- ### Deploy
51
+ > **Tip:** Already running Postgres? Skip the Docker step and just export your `PG*` environment variables.
42
52
 
43
- #### Option 1: Deploy by installing with pgpm
53
+ ### **Add to an Existing Package**
44
54
 
45
55
  ```bash
56
+ # 1. Install the package
46
57
  pgpm install @pgpm/uuid
47
- pgpm deploy
58
+
59
+ # 2. Deploy locally
60
+ pgpm deploy
48
61
  ```
49
62
 
50
- #### Option 2: Deploy from Package Directory
63
+ ### **Add to a New Project**
51
64
 
52
65
  ```bash
53
- cd packages/data-types/uuid
54
- pgpm deploy --createdb
55
- ```
66
+ # 1. Create a workspace
67
+ pgpm init --workspace
68
+ cd my-app
56
69
 
57
- #### Option 3: Deploy from Workspace Root
70
+ # 2. Create your first module
71
+ pgpm init
72
+ cd packages/your-module
58
73
 
59
- ```bash
60
- # Install workspace dependencies
61
- pnpm install
74
+ # 3. Install a package
75
+ pgpm install @pgpm/uuid
62
76
 
63
- # Deploy with dependencies
64
- pgpm deploy mydb1 --yes --createdb
77
+ # 4. Deploy everything
78
+ pgpm deploy --createdb --database mydb1
65
79
  ```
66
80
 
67
81
  ## Usage
@@ -257,76 +271,6 @@ The test suite validates:
257
271
  - Seeded UUID generation with consistent prefixes
258
272
  - Trigger functions for automatic UUID setting
259
273
 
260
- ## Development
261
-
262
- See the [Development](#development) section below for information on working with this package.
263
-
264
- ---
265
-
266
- ## Development
267
-
268
- ### **Before You Begin**
269
-
270
- ```bash
271
- # 1. Install pgpm
272
- npm install -g pgpm
273
-
274
- # 2. Start Postgres (Docker or local)
275
- pgpm docker start
276
-
277
- # 3. Load PG* environment variables (PGHOST, PGUSER, ...)
278
- eval "$(pgpm env)"
279
- ```
280
-
281
- ---
282
-
283
- ### **Starting a New Project**
284
-
285
- ```bash
286
- # 1. Create a workspace
287
- pgpm init --workspace
288
- cd my-app
289
-
290
- # 2. Create your first module
291
- pgpm init
292
-
293
- # 3. Add a migration
294
- pgpm add some_change
295
-
296
- # 4. Deploy (auto-creates database)
297
- pgpm deploy --createdb
298
- ```
299
-
300
- ---
301
-
302
- ### **Working With an Existing Project**
303
-
304
- ```bash
305
- # 1. Clone and enter the project
306
- git clone <repo> && cd <project>
307
-
308
- # 2. Install dependencies
309
- pnpm install
310
-
311
- # 3. Deploy locally
312
- pgpm deploy --createdb
313
- ```
314
-
315
- ---
316
-
317
- ### **Testing a Module Inside a Workspace**
318
-
319
- ```bash
320
- # 1. Install workspace deps
321
- pnpm install
322
-
323
- # 2. Enter the module directory
324
- cd packages/<some-module>
325
-
326
- # 3. Run tests in watch mode
327
- pnpm test:watch
328
- ```
329
-
330
274
  ## Related Tooling
331
275
 
332
276
  * [pgpm](https://github.com/launchql/launchql/tree/main/packages/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
@@ -1,6 +1,6 @@
1
1
  # launchql-uuid extension
2
2
  comment = 'launchql-uuid extension'
3
- default_version = '0.5.0'
3
+ default_version = '0.6.0'
4
4
  module_pathname = '$libdir/launchql-uuid'
5
5
  requires = 'pgcrypto,plpgsql,uuid-ossp,hstore,launchql-verify'
6
6
  relocatable = false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpm/uuid",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "UUID utilities and extensions for PostgreSQL",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -11,7 +11,7 @@
11
11
  "test:watch": "jest --watch"
12
12
  },
13
13
  "dependencies": {
14
- "@pgpm/verify": "0.6.0"
14
+ "@pgpm/verify": "0.7.0"
15
15
  },
16
16
  "devDependencies": {
17
17
  "pgpm": "^0.2.0"
@@ -24,5 +24,5 @@
24
24
  "bugs": {
25
25
  "url": "https://github.com/launchql/pgpm-modules/issues"
26
26
  },
27
- "gitHead": "c7d0eae588d7a764b382a330c8b853b341b13fb2"
27
+ "gitHead": "1f24d8fa95fb141f16e5b8345458c3b687d80908"
28
28
  }