Skip to content

Commit 66d50da

Browse files
chore(master): release cli 2.35.0 (#728)
Co-authored-by: Sönke Behrendt <[email protected]>
1 parent 9d83fe6 commit 66d50da

File tree

14 files changed

+32
-15
lines changed

14 files changed

+32
-15
lines changed

clients/cli/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [2.35.0](https://github.com/phrase/openapi/compare/cli-v2.34.1...cli-2.25.0) (2024-12-18)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Remove old Git sync endpoints. Replaced with new repo sync ([#735](https://github.com/phrase/openapi/issues/735))
9+
10+
### Features
11+
12+
* **API:** Add 'default_encoding' documentation ([#733](https://github.com/phrase/openapi/issues/733)) ([0139c51](https://github.com/phrase/openapi/commit/0139c51da747fbe7bc9929bcf3534aad7f22f39a))
13+
* Remove old Git sync endpoints. Replaced with new repo sync ([#735](https://github.com/phrase/openapi/issues/735)) ([c3bd8ec](https://github.com/phrase/openapi/commit/c3bd8eccaabcfa1b1066ea4438971ac59833af46))
14+
15+
16+
### Bug Fixes
17+
18+
* **API:** Add missing branch parameter to job comment endpoints #STRINGS-988 ([#724](https://github.com/phrase/openapi/issues/724)) ([64d399c](https://github.com/phrase/openapi/commit/64d399ced0980ac2a48366f91110047287a0c590))
19+
320
## [2.34.1](https://github.com/phrase/openapi/compare/cli-v2.34.0...cli-v2.34.1) (2024-11-27)
421

522

clients/cli/cmd/internal/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/phrase/phrase-cli/cmd/internal/prompt"
1313
"github.com/phrase/phrase-cli/cmd/internal/shared"
1414
"github.com/phrase/phrase-cli/cmd/internal/spinner"
15-
"github.com/phrase/phrase-go/v3"
15+
"github.com/phrase/phrase-go/v4"
1616
"gopkg.in/yaml.v2"
1717
)
1818

clients/cli/cmd/internal/pull.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/phrase/phrase-cli/cmd/internal/print"
1818

1919
"github.com/antihax/optional"
20-
"github.com/phrase/phrase-go/v3"
20+
"github.com/phrase/phrase-go/v4"
2121
)
2222

2323
const (

clients/cli/cmd/internal/pull_target.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/phrase/phrase-cli/cmd/internal/paths"
1010
"github.com/phrase/phrase-cli/cmd/internal/placeholders"
1111
"github.com/phrase/phrase-cli/cmd/internal/shared"
12-
"github.com/phrase/phrase-go/v3"
12+
"github.com/phrase/phrase-go/v4"
1313
"github.com/spf13/viper"
1414
)
1515

clients/cli/cmd/internal/push.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/phrase/phrase-cli/cmd/internal/print"
1919
"github.com/phrase/phrase-cli/cmd/internal/shared"
2020
"github.com/phrase/phrase-cli/cmd/internal/spinner"
21-
"github.com/phrase/phrase-go/v3"
21+
"github.com/phrase/phrase-go/v4"
2222
)
2323

2424
type PushCommand struct {

clients/cli/cmd/internal/push_source.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/antihax/optional"
1010
"github.com/phrase/phrase-cli/cmd/internal/paths"
1111
"github.com/phrase/phrase-cli/cmd/internal/placeholders"
12-
"github.com/phrase/phrase-go/v3"
12+
"github.com/phrase/phrase-go/v4"
1313
"github.com/spf13/viper"
1414
)
1515

clients/cli/cmd/internal/shared.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/phrase/phrase-cli/cmd/internal/print"
1414
"github.com/phrase/phrase-cli/cmd/internal/prompt"
1515
"github.com/phrase/phrase-cli/cmd/internal/shared"
16-
"github.com/phrase/phrase-go/v3"
16+
"github.com/phrase/phrase-go/v4"
1717
"github.com/spf13/viper"
1818
"golang.org/x/exp/maps"
1919
)

clients/cli/cmd/internal/upload_cleanup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package internal
22

33
import (
4-
"github.com/phrase/phrase-go/v3"
4+
"github.com/phrase/phrase-go/v4"
55
)
66

77
type UploadCleanupCommand struct {

clients/cli/cmd/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"github.com/phrase/phrase-cli/cmd/internal/print"
1111
"github.com/phrase/phrase-cli/cmd/internal/shared"
1212
"github.com/phrase/phrase-cli/cmd/internal/updatechecker"
13-
"github.com/phrase/phrase-go/v3"
14-
api "github.com/phrase/phrase-go/v3"
13+
"github.com/phrase/phrase-go/v4"
14+
api "github.com/phrase/phrase-go/v4"
1515
"github.com/spf13/cobra"
1616
"github.com/spf13/viper"
1717
)

clients/cli/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/daviddengcn/go-colortext v1.0.0
1010
github.com/jpillora/backoff v1.0.0
1111
github.com/mitchellh/mapstructure v1.4.0
12-
github.com/phrase/phrase-go/v3 v4.0.2 // x-release-please-version
12+
github.com/phrase/phrase-go/v4 v4.0.2 // x-release-please-version
1313
github.com/spf13/cobra v1.0.0
1414
github.com/spf13/viper v1.7.1
1515
gopkg.in/yaml.v2 v2.4.0

0 commit comments

Comments
 (0)