Skip to content

Commit 6d0fefc

Browse files
fix: typo in update cmd (#1509)
CDX-764 Fix a typo. The branch was also used to hotfix a botched release, more details in Slack. --------- Co-authored-by: developer-experience-bot[bot] <91079284+developer-experience-bot[bot]@users.noreply.github.com>
1 parent 7edfc89 commit 6d0fefc

File tree

26 files changed

+1050
-178
lines changed

26 files changed

+1050
-178
lines changed

.github/workflows/release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ jobs:
6262
with:
6363
# pulls all commits (needed for computing the next version)
6464
fetch-depth: 0
65+
- name: Ensure master is tracked
66+
run: git branch master origin/master
6567
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
6668
with:
6769
registry-url: 'https://registry.npmjs.org'

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# release-31 (2025-03-25)
2+
3+
# release-30 (2025-03-25)
4+
15
# release-29 (2025-03-24)
26

37
# release-28 (2025-03-24)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ $ npm install -g @coveo/cli
5656
$ coveo COMMAND
5757
running command...
5858
$ coveo (--version)
59-
@coveo/cli/3.2.11 linux-x64 node-v20.12.2
59+
@coveo/cli/3.2.13 linux-x64 node-v20.12.2
6060
$ coveo --help [COMMAND]
6161
USAGE
6262
$ coveo COMMAND

package-lock.json

+25-150
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "cli-tools",
33
"private": true,
4-
"version": "1.0.0-29",
4+
"version": "1.0.0-31",
55
"author": "Coveo",
66
"bin": {
77
"coveo": "./bin/run"

packages/cli-e2e/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
"@babel/core": "7.21.5",
6262
"@babel/preset-env": "7.21.5",
6363
"@babel/preset-typescript": "7.21.5",
64-
"@coveo/cli": "3.2.11",
65-
"@coveo/platform-client": "57.6.0",
64+
"@coveo/cli": "3.2.13",
65+
"@coveo/platform-client": "58.5.0",
6666
"abortcontroller-polyfill": "1.7.5",
6767
"async-retry": "1.3.3",
6868
"babel-jest": "29.5.0",

packages/cli/commons/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.9.10 (2025-03-25)
2+
3+
## 2.9.9 (2025-03-25)
4+
15
## 2.9.8 (2025-03-24)
26

37
## 2.9.7 (2025-03-24)

packages/cli/commons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coveo/cli-commons",
3-
"version": "2.9.8",
3+
"version": "2.9.10",
44
"author": "Coveo",
55
"description": "Common utils for @coveo/cli plugins",
66
"license": "Apache-2.0",

packages/cli/core/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.2.13 (2025-03-25)
2+
3+
## 3.2.12 (2025-03-25)
4+
15
## 3.2.11 (2025-03-24)
26

37
## 3.2.10 (2025-03-24)

0 commit comments

Comments
 (0)