Skip to content

Commit

Permalink
[Version bump] chore(release): publish v1.12.0
Browse files Browse the repository at this point in the history
lerna.json
CHANGELOG.md
**/CHANGELOG.md
**/README.md
  • Loading branch information
actions-user committed Aug 3, 2021
1 parent 967877c commit 5cb88a7
Show file tree
Hide file tree
Showing 21 changed files with 148 additions and 57 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.12.0](https://github.com/coveo/cli/compare/v1.11.0...v1.12.0) (2021-08-03)


### Features

* **cli:** add token authentication ([#401](https://github.com/coveo/cli/issues/401)) ([967877c](https://github.com/coveo/cli/commit/967877c3e16df687a6bbd48cbc4c10cd1920d942))
* **snapshot:** add `--snapshotId` flag to `push` and `preview` commands ([#387](https://github.com/coveo/cli/issues/387)) ([57de692](https://github.com/coveo/cli/commit/57de6923685ade5d3a20285528e02bc0c981a78f))





# [1.11.0](https://github.com/coveo/cli/compare/v1.10.0...v1.11.0) (2021-08-02)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"message": "[Version bump] chore(release): publish %s"
}
},
"version": "1.11.0"
"version": "1.12.0"
}
8 changes: 8 additions & 0 deletions packages/angular/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.12.0](https://github.com/coveo/cli/compare/v1.11.0...v1.12.0) (2021-08-03)

**Note:** Version bump only for package @coveo/angular





# [1.11.0](https://github.com/coveo/cli/compare/v1.10.0...v1.11.0) (2021-08-02)


Expand Down
20 changes: 10 additions & 10 deletions packages/angular/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coveo/angular",
"version": "1.11.0",
"version": "1.12.0",
"description": "Coveo schematic for angular",
"scripts": {
"test": "npm run build && jasmine dist/**/*_spec.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/cli-e2e/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.12.0](https://github.com/coveo/cli/compare/v1.11.0...v1.12.0) (2021-08-03)

**Note:** Version bump only for package @coveo/cli-e2e





# [1.11.0](https://github.com/coveo/cli/compare/v1.10.0...v1.11.0) (2021-08-02)


Expand Down
2 changes: 1 addition & 1 deletion packages/cli-e2e/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cli-e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@coveo/cli-e2e",
"private": true,
"version": "1.11.0",
"version": "1.12.0",
"description": "End-to-End test of Coveo's CLI",
"author": "Coveo",
"homepage": "https://github.com/coveo/cli#readme",
Expand Down
12 changes: 12 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.12.0](https://github.com/coveo/cli/compare/v1.11.0...v1.12.0) (2021-08-03)


### Features

* **cli:** add token authentication ([#401](https://github.com/coveo/cli/issues/401)) ([967877c](https://github.com/coveo/cli/commit/967877c3e16df687a6bbd48cbc4c10cd1920d942))
* **snapshot:** add `--snapshotId` flag to `push` and `preview` commands ([#387](https://github.com/coveo/cli/issues/387)) ([57de692](https://github.com/coveo/cli/commit/57de6923685ade5d3a20285528e02bc0c981a78f))





# [1.11.0](https://github.com/coveo/cli/compare/v1.10.0...v1.11.0) (2021-08-02)


Expand Down
59 changes: 43 additions & 16 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $ npm install -g @coveo/cli
$ coveo COMMAND
running command...
$ coveo (-v|--version|version)
@coveo/cli/1.11.0 linux-x64 node-v14.17.3
@coveo/cli/1.12.0 linux-x64 node-v14.17.4
$ coveo --help [COMMAND]
USAGE
$ coveo COMMAND
Expand All @@ -32,6 +32,7 @@ USAGE

<!-- commands -->
* [`coveo auth:login`](#coveo-authlogin)
* [`coveo auth:token`](#coveo-authtoken)
* [`coveo config:get`](#coveo-configget)
* [`coveo config:set`](#coveo-configset)
* [`coveo help [COMMAND]`](#coveo-help-command)
Expand Down Expand Up @@ -70,7 +71,33 @@ EXAMPLE
$ coveo auth:login
```

_See code: [src/commands/auth/login.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/auth/login.ts)_
_See code: [src/commands/auth/login.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/auth/login.ts)_

## `coveo auth:token`

Log in to the Coveo Platform using the OAuth2 flow.

```
USAGE
$ coveo auth:token
OPTIONS
-e, --environment=dev|qa|prod|hipaa [default: prod] The Coveo Platform environment to
log in to.
-r, --region=us-east-1|eu-west-1|eu-west-3|ap-southeast-2|us-west-2 [default: us-east-1] The Coveo Platform region to
log in to. See <https://docs.coveo.com/en/2976>.
-t, --token=xxx-api-key (required) The API-Key that shall be used to
authenticate you to the organization. See
<https://github.com/coveo/cli/wiki/Using-the-CLI-
using-an-API-Key>.
EXAMPLE
$ coveo auth:token
```

_See code: [src/commands/auth/token.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/auth/token.ts)_

## `coveo config:get`

Expand All @@ -81,7 +108,7 @@ USAGE
$ coveo config:get
```

_See code: [src/commands/config/get.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/config/get.ts)_
_See code: [src/commands/config/get.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/config/get.ts)_

## `coveo config:set`

Expand All @@ -107,7 +134,7 @@ OPTIONS
operations. See <https://docs.coveo.com/en/2976>.
```

_See code: [src/commands/config/set.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/config/set.ts)_
_See code: [src/commands/config/set.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/config/set.ts)_

## `coveo help [COMMAND]`

Expand Down Expand Up @@ -145,7 +172,7 @@ OPTIONS
--sort=sort property to sort by (prepend '-' for descending)
```

_See code: [src/commands/org/list.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/org/list.ts)_
_See code: [src/commands/org/list.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/org/list.ts)_

## `coveo org:search:dump`

Expand Down Expand Up @@ -178,7 +205,7 @@ OPTIONS
included.
```

_See code: [src/commands/org/search/dump.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/org/search/dump.ts)_
_See code: [src/commands/org/search/dump.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/org/search/dump.ts)_

## `coveo source:push:add SOURCEID`

Expand All @@ -197,7 +224,7 @@ OPTIONS
-f, --file=myfile.json One or multiple file to push. Can be repeated.
```

_See code: [src/commands/source/push/add.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/source/push/add.ts)_
_See code: [src/commands/source/push/add.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/source/push/add.ts)_

## `coveo source:push:delete SOURCEID`

Expand Down Expand Up @@ -225,7 +252,7 @@ OPTIONS
`source:push:batch` command instead.
```

_See code: [src/commands/source/push/delete.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/source/push/delete.ts)_
_See code: [src/commands/source/push/delete.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/source/push/delete.ts)_

## `coveo source:push:list`

Expand All @@ -246,7 +273,7 @@ OPTIONS
--sort=sort property to sort by (prepend '-' for descending)
```

_See code: [src/commands/source/push/list.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/source/push/list.ts)_
_See code: [src/commands/source/push/list.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/source/push/list.ts)_

## `coveo source:push:new NAME`

Expand All @@ -265,7 +292,7 @@ OPTIONS
https://docs.coveo.com/en/1779/index-content/content-security
```

_See code: [src/commands/source/push/new.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/source/push/new.ts)_
_See code: [src/commands/source/push/new.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/source/push/new.ts)_

## `coveo ui:create:angular NAME`

Expand All @@ -280,10 +307,10 @@ ARGUMENTS
OPTIONS
-d, --defaults Whether to automatically select the default value for all prompts that have a default value.
-v, --version=version [default: 1.11.0] The version of @coveo/angular to use.
-v, --version=version [default: 1.12.0] The version of @coveo/angular to use.
```

_See code: [src/commands/ui/create/angular.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/ui/create/angular.ts)_
_See code: [src/commands/ui/create/angular.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/ui/create/angular.ts)_

## `coveo ui:create:react NAME`

Expand All @@ -297,14 +324,14 @@ ARGUMENTS
NAME The name of the application to create.
OPTIONS
-v, --version=version [default: 1.11.0] Version of @coveo/cra-template to use.
-v, --version=version [default: 1.12.0] Version of @coveo/cra-template to use.
EXAMPLES
$ coveo ui:create:react myapp
$ coveo ui:create:react --help
```

_See code: [src/commands/ui/create/react.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/ui/create/react.ts)_
_See code: [src/commands/ui/create/react.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/ui/create/react.ts)_

## `coveo ui:create:vue NAME`

Expand All @@ -325,14 +352,14 @@ OPTIONS
For more information about Vue CLI presets, see
https://cli.vuejs.org/guide/plugins-and-presets.html#presets.
-v, --version=version [default: 1.11.0] The version of @coveo/vue-cli-plugin-typescript to use.
-v, --version=version [default: 1.12.0] The version of @coveo/vue-cli-plugin-typescript to use.
EXAMPLES
$ coveo ui:create:vue --preset path/to/my/preset.json
$ coveo ui:create:vue --help
```

_See code: [src/commands/ui/create/vue.ts](https://github.com/coveo/cli/blob/v1.11.0/packages/cli/src/commands/ui/create/vue.ts)_
_See code: [src/commands/ui/create/vue.ts](https://github.com/coveo/cli/blob/v1.12.0/packages/cli/src/commands/ui/create/vue.ts)_

## `coveo update [CHANNEL]`

Expand Down
28 changes: 14 additions & 14 deletions packages/cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5cb88a7

Please sign in to comment.