@pipeline-builder/pipeline-core 3.4.62 → 3.4.63

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.
Files changed (2) hide show
  1. package/README.md +21 -9
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -2,26 +2,38 @@
2
2
 
3
3
  📖 **[View documentation](https://mwashburn160.github.io/pipeline-builder/)**
4
4
 
5
- AWS CDK construct library for [Pipeline Builder](https://mwashburn160.github.io/pipeline-builder/): the `Builder` construct that assembles plugin specs into a CodePipeline stack, the `PluginLookup` custom resource that resolves plugins at deploy time, pipeline/plugin domain types, and shared application configuration. Also re-exports `pipeline-data` so consumers only depend on one package.
5
+ AWS CDK construct library for [Pipeline Builder](https://mwashburn160.github.io/pipeline-builder/): the `PipelineBuilder` construct that assembles plugin specs into a CodePipeline stack, the `PluginLookup` custom resource that resolves plugins at deploy time, a synth-time template engine for parameterizing pipeline config, pipeline/plugin domain types, and shared application configuration. Also re-exports `pipeline-data` so consumers depend on a single package for both the CDK layer and database access.
6
6
 
7
7
  ## Key Exports
8
8
 
9
9
  ### CDK Constructs
10
- - `Builder` — Composable CodePipeline builder construct
10
+ - `PipelineBuilder` — Top-level CodePipeline builder construct
11
+ - `StageBuilder` — Composes pipeline stages from plugin steps
12
+ - `PipelineConfiguration` — Resolves and merges pipeline config metadata
13
+ - `ArtifactManager` — Manages build artifacts across stages
11
14
  - `PluginLookup` — Custom resource + Lambda that resolves plugin specs at deploy time
12
15
 
16
+ ### Template Engine
17
+ - `tokenize`, `resolve`, `dependencies` — Synth-time templating for pipeline config and plugin specs
18
+ - `walkAndBind`, `topoSort`, `TokenCache` — Field binding, dependency ordering, and token caching
19
+
13
20
  ### Pipeline Types
14
- - `Pipeline`, `Plugin`, `PipelineFilter`, `PluginFilter`
15
- - `AccessModifier`, `ComputeType`, `PluginType`, `MetaDataType`
21
+ - `SourceType`, `TriggerType`, `MetadataKeys` — Pipeline source and metadata types
22
+ - `PipelineFilter`, `PluginFilter`, `PluginSecret` — Re-exported from `pipeline-data`
23
+ - `AccessModifier`, `ComputeType`, `PluginType`, `MetaDataType` — Domain enums
16
24
 
17
25
  ### Configuration
18
- - `Config` — Application config loader
19
- - `CoreConstants` — Shared timeouts, cache keys, compression thresholds
20
- - `getConnection`, `db`, `schema` — Re-exported from `pipeline-data`
26
+ - `Config` — Application config loader (environment-driven singleton)
27
+ - `CoreConstants` — Shared timeouts, cache keys, secret paths, and limits
28
+ - `getConnection`, `closeConnection`, `db`, `schema` — Database access, re-exported from `pipeline-data`
29
+ - `tenantContext`, `runWithTenantContext`, `withTenantTx` — Postgres RLS tenant-context primitives
30
+ - `runMigrations` — Idempotent migration runner for service startup
21
31
 
22
32
  ### Helpers
23
- - `replaceNonAlphanumeric`, `extractMetadataEnv` — String utilities
24
- - `buildPipelineConditions`, `buildPluginConditions`, `validatePipelineFilter` — Filter builders
33
+ - `replaceNonAlphanumeric`, `extractMetadataEnv` — String and metadata utilities
34
+ - `buildConfigFromMetadata`, `metadataForCodePipeline`, `metadataForShellStep` — Metadata builders
35
+ - `buildPipelineConditions`, `buildPluginConditions` — Filter builders re-exported from `pipeline-data`
36
+ - `CrudService`, `drizzleRows`, `drizzleCount` — CRUD infrastructure and Drizzle type helpers
25
37
 
26
38
  ## License
27
39
 
package/package.json CHANGED
@@ -30,8 +30,8 @@
30
30
  "constructs": "10.5.1",
31
31
  "jsonwebtoken": "9.0.3",
32
32
  "uuid": "13.0.0",
33
- "@pipeline-builder/pipeline-data": "3.4.58",
34
- "@pipeline-builder/api-core": "3.4.57"
33
+ "@pipeline-builder/pipeline-data": "3.4.59",
34
+ "@pipeline-builder/api-core": "3.4.58"
35
35
  },
36
36
  "keywords": [
37
37
  "aws",
@@ -75,7 +75,7 @@
75
75
  "access": "public",
76
76
  "registry": "https://registry.npmjs.org/"
77
77
  },
78
- "version": "3.4.62",
78
+ "version": "3.4.63",
79
79
  "bugs": {
80
80
  "url": "https://github.com/mwashburn160/pipeline-builder/issues"
81
81
  },