Skip to content

Commit d61b7e9

Browse files
committed
chore(release): 4.17.13 [skip ci]
1 parent 37dde6e commit d61b7e9

9 files changed

Lines changed: 22 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [4.17.13](https://github.com/oclif/oclif/compare/4.17.12...4.17.13) (2025-01-14)
2+
3+
### Bug Fixes
4+
5+
- **deps:** bump @aws-sdk/client-cloudfront from 3.716.0 to 3.726.1 ([9396463](https://github.com/oclif/oclif/commit/939646374d6ba4da0d9d40584adfa7419eb5237e))
6+
17
## [4.17.12](https://github.com/oclif/oclif/compare/4.17.11...4.17.12) (2025-01-14)
28

39
### Bug Fixes

docs/generate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ EXAMPLES
6464
$ oclif generate my-cli --module-type CommonJS --author "John Doe" --yes
6565
```
6666

67-
_See code: [src/commands/generate.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/generate.ts)_
67+
_See code: [src/commands/generate.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/generate.ts)_
6868

6969
## `oclif generate command NAME`
7070

@@ -85,7 +85,7 @@ DESCRIPTION
8585
Add a command to an existing CLI or plugin.
8686
```
8787

88-
_See code: [src/commands/generate/command.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/generate/command.ts)_
88+
_See code: [src/commands/generate/command.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/generate/command.ts)_
8989

9090
## `oclif generate hook NAME`
9191

@@ -106,4 +106,4 @@ DESCRIPTION
106106
Add a hook to an existing CLI or plugin.
107107
```
108108

109-
_See code: [src/commands/generate/hook.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/generate/hook.ts)_
109+
_See code: [src/commands/generate/hook.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/generate/hook.ts)_

docs/init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ EXAMPLES
4343
$ oclif init --topic-separator colons --bin mycli
4444
```
4545

46-
_See code: [src/commands/init.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/init.ts)_
46+
_See code: [src/commands/init.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/init.ts)_

docs/manifest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ DESCRIPTION
2222
Generates plugin manifest json (oclif.manifest.json).
2323
```
2424

25-
_See code: [src/commands/manifest.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/manifest.ts)_
25+
_See code: [src/commands/manifest.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/manifest.ts)_

docs/pack.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ FLAG DESCRIPTIONS
3333
For more details see the `-Zcompress-type` section at https://man7.org/linux/man-pages/man1/dpkg-deb.1.html
3434
```
3535

36-
_See code: [src/commands/pack/deb.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/pack/deb.ts)_
36+
_See code: [src/commands/pack/deb.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/pack/deb.ts)_
3737

3838
## `oclif pack macos`
3939

@@ -55,7 +55,7 @@ DESCRIPTION
5555
Add a pretarball script to your package.json if you need to run any scripts before the tarball is created.
5656
```
5757

58-
_See code: [src/commands/pack/macos.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/pack/macos.ts)_
58+
_See code: [src/commands/pack/macos.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/pack/macos.ts)_
5959

6060
## `oclif pack tarballs`
6161

@@ -81,7 +81,7 @@ DESCRIPTION
8181
Add a pretarball script to your package.json if you need to run any scripts before the tarball is created.
8282
```
8383

84-
_See code: [src/commands/pack/tarballs.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/pack/tarballs.ts)_
84+
_See code: [src/commands/pack/tarballs.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/pack/tarballs.ts)_
8585

8686
## `oclif pack win`
8787

@@ -121,4 +121,4 @@ FLAG DESCRIPTIONS
121121
There is no way to set a hidden checkbox with "true" as a default...the user can always allow full security
122122
```
123123

124-
_See code: [src/commands/pack/win.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/pack/win.ts)_
124+
_See code: [src/commands/pack/win.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/pack/win.ts)_

docs/promote.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ DESCRIPTION
3232
Promote CLI builds to a S3 release channel.
3333
```
3434

35-
_See code: [src/commands/promote.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/promote.ts)_
35+
_See code: [src/commands/promote.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/promote.ts)_

docs/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ DESCRIPTION
4040
Customize the code URL prefix by setting oclif.repositoryPrefix in package.json.
4141
```
4242

43-
_See code: [src/commands/readme.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/readme.ts)_
43+
_See code: [src/commands/readme.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/readme.ts)_

docs/upload.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ DESCRIPTION
2323
Upload deb package built with `pack deb`.
2424
```
2525

26-
_See code: [src/commands/upload/deb.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/upload/deb.ts)_
26+
_See code: [src/commands/upload/deb.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/upload/deb.ts)_
2727

2828
## `oclif upload macos`
2929

@@ -42,7 +42,7 @@ DESCRIPTION
4242
Upload macos installers built with `pack macos`.
4343
```
4444

45-
_See code: [src/commands/upload/macos.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/upload/macos.ts)_
45+
_See code: [src/commands/upload/macos.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/upload/macos.ts)_
4646

4747
## `oclif upload tarballs`
4848

@@ -62,7 +62,7 @@ DESCRIPTION
6262
Upload an oclif CLI to S3.
6363
```
6464

65-
_See code: [src/commands/upload/tarballs.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/upload/tarballs.ts)_
65+
_See code: [src/commands/upload/tarballs.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/upload/tarballs.ts)_
6666

6767
## `oclif upload win`
6868

@@ -81,4 +81,4 @@ DESCRIPTION
8181
Upload windows installers built with `pack win`.
8282
```
8383

84-
_See code: [src/commands/upload/win.ts](https://github.com/oclif/oclif/blob/4.17.12/src/commands/upload/win.ts)_
84+
_See code: [src/commands/upload/win.ts](https://github.com/oclif/oclif/blob/4.17.13/src/commands/upload/win.ts)_

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "oclif",
33
"description": "oclif: create your own CLI",
4-
"version": "4.17.12",
4+
"version": "4.17.13",
55
"author": "Salesforce",
66
"bin": {
77
"oclif": "bin/run.js"

0 commit comments

Comments
 (0)