@pipeline-builder/pipeline-manager 3.4.62 → 3.4.64

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 +7 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -16,7 +16,7 @@ Requires Node.js 24.14.0+.
16
16
 
17
17
  ```bash
18
18
  # Authenticate against your Pipeline Builder platform
19
- pipeline-manager login --platform https://platform.example.com
19
+ pipeline-manager login --url https://platform.example.com
20
20
 
21
21
  # Bootstrap a new project in the current directory
22
22
  pipeline-manager bootstrap
@@ -37,6 +37,7 @@ pipeline-manager deploy
37
37
  | `bootstrap` | Scaffold a new pipeline project with `cdk.json` and starter config |
38
38
  | `synth` | Run CDK synth to emit the CloudFormation template for the pipeline |
39
39
  | `deploy` | Deploy the synthesized pipeline stack to AWS (also registers the deployed ARN with the platform) |
40
+ | `register` | Re-register a deployed pipeline ARN with the platform and drain pending intents queued by prior failed deploys (recovery path; exits non-zero if any registration still fails) |
40
41
  | `status` | Report the current deployment and execution status |
41
42
 
42
43
  ### Resource management
@@ -48,12 +49,13 @@ pipeline-manager deploy
48
49
  | `list-plugins` / `get-plugin` | Browse the plugin catalog and fetch a single plugin spec |
49
50
  | `upload-plugin` | Publish a custom plugin spec + Dockerfile to the platform |
50
51
  | `validate-templates` | Parse and validate `{{ ... }}` templates in a pipeline or plugin spec (local file, registered pipeline by ID, or registered plugin by `name:version`) |
52
+ | `org-export` | Export an organization's data as JSON for GDPR portability (sysadmins can export any org; org admins their own only) |
51
53
 
52
54
  ### Auth & infrastructure
53
55
 
54
56
  | Command | Purpose |
55
57
  | --- | --- |
56
- | `login` | Authenticate against the platform and persist the access token |
58
+ | `login` | Authenticate against the platform and persist the access token (supports `--refresh <token>` and `--org <orgId>` to switch organizations) |
57
59
  | `store-token` | Generate a long-lived JWT and store it in AWS Secrets Manager (used by the events Lambda and CodePipeline synth steps) |
58
60
  | `setup-events` | Deploy the EventBridge → SQS → Lambda stack that streams CodePipeline events into the platform's reporting service |
59
61
 
@@ -70,7 +72,7 @@ These commands report drift and exit non-zero when findings exist. Designed to r
70
72
 
71
73
  | Command | Purpose |
72
74
  | --- | --- |
73
- | `completions` | Print shell completion script. Source it from your `~/.bashrc` / `~/.zshrc`: `eval "$(pipeline-manager completions bash)"` |
75
+ | `completions` | Print a shell completion script for `bash`, `zsh`, or `fish`. Source it from your shell profile, e.g. `eval "$(pipeline-manager completions bash)"` in `~/.bashrc` (completions are derived from the live command list, so they never drift) |
74
76
  | `version` | Print CLI version info |
75
77
 
76
78
  Run `pipeline-manager <command> --help` for the full flag reference on any command.
@@ -80,7 +82,7 @@ Run `pipeline-manager <command> --help` for the full flag reference on any comma
80
82
  | Variable | Required | Purpose |
81
83
  | --- | --- | --- |
82
84
  | `PLATFORM_TOKEN` | Yes (for API ops) | Auth token for the Pipeline Builder platform |
83
- | `PLATFORM_URL` | Yes (for API ops) | Base URL of your platform deployment |
85
+ | `PLATFORM_BASE_URL` | Yes (for API ops) | Base URL of your platform deployment |
84
86
  | `AWS_REGION` | Yes (for deploy) | Target AWS region for `synth` / `deploy` |
85
87
 
86
88
  Full reference: [Environment Variables](https://mwashburn160.github.io/pipeline-builder/docs/environment-variables).
@@ -89,7 +91,7 @@ Full reference: [Environment Variables](https://mwashburn160.github.io/pipeline-
89
91
 
90
92
  - [Getting started](https://mwashburn160.github.io/pipeline-builder/)
91
93
  - [CDK usage](https://mwashburn160.github.io/pipeline-builder/docs/cdk-usage)
92
- - [Plugin catalog (124 plugins)](https://mwashburn160.github.io/pipeline-builder/docs/plugins/)
94
+ - [Plugin catalog (125 plugins)](https://mwashburn160.github.io/pipeline-builder/docs/plugins/)
93
95
  - [API reference](https://mwashburn160.github.io/pipeline-builder/docs/api-reference)
94
96
  - [AWS deployment](https://mwashburn160.github.io/pipeline-builder/docs/aws-deployment)
95
97
 
package/package.json CHANGED
@@ -40,7 +40,7 @@
40
40
  "progress": "2.0.3",
41
41
  "typescript": "5.9.3",
42
42
  "yaml": "2.8.2",
43
- "@pipeline-builder/pipeline-core": "3.4.61"
43
+ "@pipeline-builder/pipeline-core": "3.4.63"
44
44
  },
45
45
  "keywords": [
46
46
  "aws",
@@ -83,7 +83,7 @@
83
83
  "access": "public",
84
84
  "registry": "https://registry.npmjs.org/"
85
85
  },
86
- "version": "3.4.62",
86
+ "version": "3.4.64",
87
87
  "bugs": {
88
88
  "url": "https://github.com/mwashburn160/pipeline-builder/issues"
89
89
  },