deploylog 0.2.2 → 0.3.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Monolithiq LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="https://raw.githubusercontent.com/Idzuo32/deploylog-cli/main/.github/assets/logo.png" width="120" alt="DeployLog" />
2
+ <img src="https://raw.githubusercontent.com/marko-builds/deploylog-cli/main/.github/assets/logo.png" width="120" alt="DeployLog" />
3
3
  </p>
4
4
 
5
5
  <h1 align="center">deploylog</h1>
@@ -23,7 +23,7 @@
23
23
  npm i -g deploylog
24
24
  ```
25
25
 
26
- Node 18+ required.
26
+ Node 18+ required. Installs two equivalent commands: `deploylog` and the short alias `dpl`.
27
27
 
28
28
  ## Authenticate
29
29
 
@@ -94,12 +94,12 @@ Create a new changelog entry.
94
94
  -t, --title <title> Entry title
95
95
  -b, --body <markdown> Entry body (Markdown)
96
96
  -p, --project <slug> Project slug (or set in .deploylog.yml)
97
- --type <type> feature | fix | improvement | breaking | announcement
97
+ -T, --type <type> feature | fix | improvement | breaking | announcement
98
98
  --version <version> Semver (e.g. 1.2.3)
99
- --publish Publish immediately
100
- --draft Save as draft (default)
101
- --from-git Derive title/body from commits since the last tag
102
- --ai-summarize Rewrite the entry with Claude Haiku
99
+ -P, --publish Publish immediately
100
+ -D, --draft Save as draft (default)
101
+ -g, --from-git Derive title/body from commits since the last tag (alias: --git)
102
+ -a, --ai-summarize Rewrite the entry with Claude Haiku (alias: --ai)
103
103
  -y, --yes Skip interactive confirmation for AI-generated content
104
104
  ```
105
105
 
@@ -117,6 +117,8 @@ Collects commits since the last git tag, formats them as a Markdown list, and op
117
117
 
118
118
  ```bash
119
119
  deploylog push --from-git --ai-summarize --version 1.4.0 --publish
120
+ # or, with short flags and the dpl alias:
121
+ dpl push -g -a --version 1.4.0 --publish
120
122
  ```
121
123
 
122
124
  Uses Claude Haiku to rewrite your raw commits into user-friendly release notes. Free plan includes 5 AI summaries per month; paid plans are unlimited.
@@ -125,13 +127,13 @@ Uses Claude Haiku to rewrite your raw commits into user-friendly release notes.
125
127
 
126
128
  For CI workflows, prefer the official Action:
127
129
 
128
- - [`deploylogdev/action`](https://github.com/marketplace/actions/deploylog) on the GitHub Marketplace
130
+ - [`deploylogdev/action`](https://github.com/marketplace/actions/publish-to-deploylog) on the GitHub Marketplace
129
131
 
130
132
  ## Related
131
133
 
132
134
  - **Dashboard** — [deploylog.dev](https://deploylog.dev)
133
135
  - **Widget** — embeddable changelog widget at `cdn.deploylog.dev`
134
- - **GitHub Action** — [`deploylogdev/action@v1`](https://github.com/marketplace/actions/deploylog)
136
+ - **GitHub Action** — [`deploylogdev/action@v1`](https://github.com/marketplace/actions/publish-to-deploylog)
135
137
 
136
138
  ## License
137
139
 
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ const program = new Command();
9
9
  program
10
10
  .name('deploylog')
11
11
  .description('Push changelog entries from the terminal')
12
- .version('0.2.0');
12
+ .version('0.3.0');
13
13
  // ─── login ──────────────────────────────────────────────────────────────────
14
14
  program
15
15
  .command('login')
@@ -126,15 +126,20 @@ program
126
126
  .option('-t, --title <title>', 'Entry title (required unless --from-git or --ai-summarize)')
127
127
  .option('-b, --body <markdown>', 'Entry body (Markdown)')
128
128
  .option('-p, --project <slug>', 'Project slug (or set in .deploylog.yml)')
129
- .option('--type <type>', 'Entry type: feature, fix, improvement, breaking, announcement')
129
+ .option('-T, --type <type>', 'Entry type: feature, fix, improvement, breaking, announcement')
130
130
  .option('--version <version>', 'Semver version (e.g. 1.2.3)')
131
- .option('--publish', 'Publish immediately (default: draft)')
132
- .option('--draft', 'Save as draft (default)')
133
- .option('--from-git', 'Derive title/body from commits since the last tag')
134
- .option('--ai-summarize', 'Rewrite the entry with Claude Haiku (user-friendly release notes)')
131
+ .option('-P, --publish', 'Publish immediately (default: draft)')
132
+ .option('-D, --draft', 'Save as draft (default)')
133
+ .option('-g, --from-git', 'Derive title/body from commits since the last tag')
134
+ .option('--git', 'Alias of --from-git')
135
+ .option('-a, --ai-summarize', 'Rewrite the entry with Claude Haiku (user-friendly release notes)')
136
+ .option('--ai', 'Alias of --ai-summarize')
135
137
  .option('-y, --yes', 'Skip interactive confirmation for AI-generated content')
136
138
  .action(async (opts) => {
137
139
  try {
140
+ // Reconcile each flag with its alias (-g/--git, -a/--ai).
141
+ const fromGit = opts.fromGit || opts.git;
142
+ const aiSummarize = opts.aiSummarize || opts.ai;
138
143
  const slug = resolveProject(opts.project);
139
144
  const projectConfig = readProjectConfig();
140
145
  // Gather source material (commits + version) if --from-git.
@@ -142,7 +147,7 @@ program
142
147
  let gitVersion = null;
143
148
  let gitTitle = null;
144
149
  let gitBody = null;
145
- if (opts.fromGit) {
150
+ if (fromGit) {
146
151
  if (!isGitRepo()) {
147
152
  console.error(chalk.red('Not in a git repository. Remove --from-git or cd to a repo.'));
148
153
  process.exit(1);
@@ -152,7 +157,7 @@ program
152
157
  gitVersion = getHeadVersion();
153
158
  gitTitle = defaultTitleFromGit(gitVersion, lastTag);
154
159
  gitBody = formatCommitsAsMarkdown(commits);
155
- if (commits.length === 0 && !opts.body && !opts.aiSummarize) {
160
+ if (commits.length === 0 && !opts.body && !aiSummarize) {
156
161
  console.error(chalk.yellow(lastTag
157
162
  ? `No commits since tag ${lastTag}. Nothing to summarize.`
158
163
  : 'No commits found on HEAD.'));
@@ -164,7 +169,7 @@ program
164
169
  let body = opts.body ?? gitBody ?? '';
165
170
  let entryType = opts.type ?? projectConfig?.default_type ?? null;
166
171
  const version = opts.version ?? gitVersion ?? undefined;
167
- if (opts.aiSummarize) {
172
+ if (aiSummarize) {
168
173
  const hasSource = commits.length > 0 || (opts.body && opts.body.trim().length > 0);
169
174
  if (!hasSource) {
170
175
  console.error(chalk.red('--ai-summarize needs source material. Pass --from-git or provide --body as raw notes.'));
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "deploylog",
3
- "version": "0.2.2",
3
+ "version": "0.3.0",
4
4
  "description": "Push changelog entries from the terminal",
5
5
  "type": "module",
6
6
  "bin": {
7
- "deploylog": "./dist/index.js"
7
+ "deploylog": "./dist/index.js",
8
+ "dpl": "./dist/index.js"
8
9
  },
9
10
  "files": [
10
11
  "dist"
@@ -27,7 +28,7 @@
27
28
  "license": "MIT",
28
29
  "repository": {
29
30
  "type": "git",
30
- "url": "https://github.com/Idzuo32/deploylog-cli.git"
31
+ "url": "https://github.com/marko-builds/deploylog-cli.git"
31
32
  },
32
33
  "homepage": "https://deploylog.dev",
33
34
  "dependencies": {