Skip to content

Commit

Permalink
Merge branch 'release/v28.x.y' into mergify/bp/release/v28.x.y/pr-4322
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantani authored Aug 29, 2024
2 parents 708dba5 + 9287363 commit b859b28
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
### Changes

- [#4292](https://github.com/ignite/cli/pull/4292) Bump Cosmos SDK to `v0.50.9`

### Fixes

- [#4319](https://github.com/ignite/cli/pull/4319) Remove fee abstraction module from open api code generation
- [#4309](https://github.com/ignite/cli/pull/4309) Fix chain id for chain simulations
- [#4322](https://github.com/ignite/cli/pull/4322) Create a message for authenticate buf for generate ts-client

Expand Down
6 changes: 4 additions & 2 deletions ignite/internal/analytics/analytics.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,10 @@ func SendMetric(wg *sync.WaitGroup, cmd *cobra.Command) {
// checkDNT check if the user allow to track data or if the DO_NOT_TRACK
// env var is set https://consoledonottrack.com/
func checkDNT() (anonIdentity, error) {
if dnt, err := strconv.ParseBool(os.Getenv(envDoNotTrack)); err != nil || dnt {
return anonIdentity{DoNotTrack: true}, nil
if dnt := os.Getenv(envDoNotTrack); dnt != "" {
if dnt, err := strconv.ParseBool(dnt); err != nil || dnt {
return anonIdentity{DoNotTrack: true}, nil
}
}

globalPath, err := config.DirPath()
Expand Down
1 change: 1 addition & 0 deletions ignite/pkg/cosmosgen/generate_openapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ func (g *generator) generateOpenAPISpec(ctx context.Context) error {
dir,
g.openAPITemplate(),
cosmosbuf.ExcludeFiles(
"*/osmosis-labs/fee-abstraction/*",
"*/module.proto",
"*/testutil/*",
"*/testdata/*",
Expand Down

0 comments on commit b859b28

Please sign in to comment.