Skip to content

Commit

Permalink
chore(release): 4.9.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed Apr 25, 2024
1 parent 4bfa96f commit 1cf0230
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 20 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
# [4.9.0](https://github.com/oclif/oclif/compare/4.8.8...4.9.0) (2024-04-25)

### Features

- no lockfiles in tarballs ([#1385](https://github.com/oclif/oclif/issues/1385)) ([4bfa96f](https://github.com/oclif/oclif/commit/4bfa96fdcb779eb3222d6560578d2d19c338e979)), closes [#1386](https://github.com/oclif/oclif/issues/1386)

## [4.8.8](https://github.com/oclif/oclif/compare/4.8.7...4.8.8) (2024-04-21)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions docs/generate.md
Expand Up @@ -60,7 +60,7 @@ EXAMPLES
$ oclif generate my-cli --module-type CommonJS --author "John Doe" --yes
```

_See code: [src/commands/generate.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/generate.ts)_
_See code: [src/commands/generate.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/generate.ts)_

## `oclif generate command NAME`

Expand All @@ -81,7 +81,7 @@ DESCRIPTION
Add a command to an existing CLI or plugin.
```

_See code: [src/commands/generate/command.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/generate/command.ts)_
_See code: [src/commands/generate/command.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/generate/command.ts)_

## `oclif generate hook NAME`

Expand All @@ -102,4 +102,4 @@ DESCRIPTION
Add a hook to an existing CLI or plugin.
```

_See code: [src/commands/generate/hook.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/generate/hook.ts)_
_See code: [src/commands/generate/hook.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/generate/hook.ts)_
2 changes: 1 addition & 1 deletion docs/init.md
Expand Up @@ -43,4 +43,4 @@ EXAMPLES
$ oclif init --topic-separator colons --bin mycli
```

_See code: [src/commands/init.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/init.ts)_
_See code: [src/commands/init.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/init.ts)_
2 changes: 1 addition & 1 deletion docs/manifest.md
Expand Up @@ -22,4 +22,4 @@ DESCRIPTION
Generates plugin manifest json (oclif.manifest.json).
```

_See code: [src/commands/manifest.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/manifest.ts)_
_See code: [src/commands/manifest.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/manifest.ts)_
21 changes: 13 additions & 8 deletions docs/pack.md
Expand Up @@ -13,13 +13,14 @@ Pack CLI into debian package.

```
USAGE
$ oclif pack deb -r <value> [-z gzip|none|xz|zstd] [-t <value>]
$ oclif pack deb -r <value> [-z gzip|none|xz|zstd] [--prune-lockfiles | -t <value>]
FLAGS
-r, --root=<value> (required) [default: .] Path to oclif CLI root.
-t, --tarball=<value> Optionally specify a path to a tarball already generated by NPM.
-z, --compression=<option> Override the default compression used by dpkg-deb.
<options: gzip|none|xz|zstd>
--prune-lockfiles remove lockfiles in the tarball.
DESCRIPTION
Pack CLI into debian package.
Expand All @@ -32,19 +33,20 @@ FLAG DESCRIPTIONS
For more details see the `-Zcompress-type` section at https://man7.org/linux/man-pages/man1/dpkg-deb.1.html
```

_See code: [src/commands/pack/deb.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/pack/deb.ts)_
_See code: [src/commands/pack/deb.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/pack/deb.ts)_

## `oclif pack macos`

Pack CLI into macOS .pkg

```
USAGE
$ oclif pack macos -r <value> [-t <value>] [--targets <value>]
$ oclif pack macos -r <value> [--prune-lockfiles | -t <value>] [--targets <value>]
FLAGS
-r, --root=<value> (required) [default: .] Path to oclif CLI root.
-t, --tarball=<value> Optionally specify a path to a tarball already generated by NPM.
--prune-lockfiles remove lockfiles in the tarball.
--targets=<value> Comma-separated targets to pack (e.g.: darwin-x64,darwin-arm64).
DESCRIPTION
Expand All @@ -53,21 +55,22 @@ DESCRIPTION
Add a pretarball script to your package.json if you need to run any scripts before the tarball is created.
```

_See code: [src/commands/pack/macos.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/pack/macos.ts)_
_See code: [src/commands/pack/macos.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/pack/macos.ts)_

## `oclif pack tarballs`

Package oclif CLI into tarballs.

```
USAGE
$ oclif pack tarballs -r <value> [--parallel] [-l <value>] [-t <value>] [--xz]
$ oclif pack tarballs -r <value> [--parallel] [--prune-lockfiles] [-l <value>] [-t <value>] [--xz]
FLAGS
-l, --tarball=<value> Optionally specify a path to a tarball already generated by NPM.
-r, --root=<value> (required) [default: .] Path to oclif CLI root.
-t, --targets=<value> Comma-separated targets to pack (e.g.: linux-arm,win32-x64).
--parallel Build tarballs in parallel.
--prune-lockfiles remove lockfiles in the tarball.
--[no-]xz Also build xz.
DESCRIPTION
Expand All @@ -78,22 +81,24 @@ DESCRIPTION
Add a pretarball script to your package.json if you need to run any scripts before the tarball is created.
```

_See code: [src/commands/pack/tarballs.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/pack/tarballs.ts)_
_See code: [src/commands/pack/tarballs.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/pack/tarballs.ts)_

## `oclif pack win`

Create windows installer from oclif CLI

```
USAGE
$ oclif pack win -r <value> [--defender-exclusion checked|unchecked|hidden] [-t <value>] [--targets <value>]
$ oclif pack win -r <value> [--defender-exclusion checked|unchecked|hidden] [--prune-lockfiles | -t <value>]
[--targets <value>]
FLAGS
-r, --root=<value> (required) [default: .] Path to oclif CLI root.
-t, --tarball=<value> Optionally specify a path to a tarball already generated by NPM.
--defender-exclusion=<option> [default: checked] Set to "checked" or "unchecked" to set the default value for the
checkbox. Set to "hidden" to hide the option (will let defender do its thing).
<options: checked|unchecked|hidden>
--prune-lockfiles remove lockfiles in the tarball.
--targets=<value> Comma-separated targets to pack (e.g.: win32-x64,win32-x86).
DESCRIPTION
Expand All @@ -116,4 +121,4 @@ FLAG DESCRIPTIONS
There is no way to set a hidden checkbox with "true" as a default...the user can always allow full security
```

_See code: [src/commands/pack/win.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/pack/win.ts)_
_See code: [src/commands/pack/win.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/pack/win.ts)_
2 changes: 1 addition & 1 deletion docs/promote.md
Expand Up @@ -30,4 +30,4 @@ DESCRIPTION
Promote CLI builds to a S3 release channel.
```

_See code: [src/commands/promote.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/promote.ts)_
_See code: [src/commands/promote.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/promote.ts)_
2 changes: 1 addition & 1 deletion docs/readme.md
Expand Up @@ -37,4 +37,4 @@ DESCRIPTION
Customize the code URL prefix by setting oclif.repositoryPrefix in package.json.
```

_See code: [src/commands/readme.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/readme.ts)_
_See code: [src/commands/readme.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/readme.ts)_
8 changes: 4 additions & 4 deletions docs/upload.md
Expand Up @@ -22,7 +22,7 @@ DESCRIPTION
Upload deb package built with `pack deb`.
```

_See code: [src/commands/upload/deb.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/upload/deb.ts)_
_See code: [src/commands/upload/deb.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/upload/deb.ts)_

## `oclif upload macos`

Expand All @@ -40,7 +40,7 @@ DESCRIPTION
Upload macos installers built with `pack macos`.
```

_See code: [src/commands/upload/macos.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/upload/macos.ts)_
_See code: [src/commands/upload/macos.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/upload/macos.ts)_

## `oclif upload tarballs`

Expand All @@ -59,7 +59,7 @@ DESCRIPTION
Upload an oclif CLI to S3.
```

_See code: [src/commands/upload/tarballs.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/upload/tarballs.ts)_
_See code: [src/commands/upload/tarballs.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/upload/tarballs.ts)_

## `oclif upload win`

Expand All @@ -77,4 +77,4 @@ DESCRIPTION
Upload windows installers built with `pack win`.
```

_See code: [src/commands/upload/win.ts](https://github.com/oclif/oclif/blob/4.8.8/src/commands/upload/win.ts)_
_See code: [src/commands/upload/win.ts](https://github.com/oclif/oclif/blob/4.9.0/src/commands/upload/win.ts)_
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "oclif",
"description": "oclif: create your own CLI",
"version": "4.8.8",
"version": "4.9.0",
"author": "Salesforce",
"bin": {
"oclif": "bin/run.js"
Expand Down

0 comments on commit 1cf0230

Please sign in to comment.