chore: add simsx labels & more (#21776)

This commit is contained in:
Julien Robert 2024-09-18 10:11:18 +02:00 committed by GitHub
parent 0042db5ea3
commit 355f66f7ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 18 additions and 31 deletions

2
.github/CODEOWNERS vendored
View File

@ -29,6 +29,7 @@
/server/v2/stf/ @testinginprod @kocubinski @cosmos/sdk-core-dev
/server/v2/appmanager/ @testinginprod @facundomedica @cosmos/sdk-core-dev
/server/v2/cometbft/ @facundomedica @sontrinh16 @cosmos/sdk-core-dev
/simsx @alpe @facundomedica @kocubinski @cosmos/sdk-core-dev
/simapp/ @facundomedica @julienrbrt @cosmos/sdk-core-dev
/simapp/v2/ @kocubinski @julienrbrt @cosmos/sdk-core-dev
/store/ @cool-develope @kocubinski @cosmos/sdk-core-dev
@ -37,6 +38,7 @@
/tools/hubl @julienrbrt @JulianToledano @cosmos/sdk-core-dev
/tools/cosmovisor @julienrbrt @facundomedica @cosmos/sdk-core-dev
/tools/confix @julienrbrt @akhilkumarpilli @cosmos/sdk-core-dev
/tests/integration/aminojson @kocubinski @cosmos/sdk-core-dev
# x modules

View File

@ -25,18 +25,20 @@ v without deliberation
* [ ] Audit x/auth
* [ ] Audit x/authz
* [ ] Audit x/bank
* [ ] Audit x/bank/v2
* [ ] Audit x/circuit
* [ ] Audit x/consensus
* [ ] Audit x/crisis
* [ ] Audit x/distribution
* [ ] Audit x/evidence
* [ ] Audit x/epochs
* [ ] Audit x/feegrant
* [ ] Audit x/genutil
* [ ] Audit x/gov
* [ ] Audit x/group
* [ ] Audit x/mint
* [ ] Audit x/nft
* [ ] Audit x/simulation
* [ ] Audit x/protocolpool
* [ ] Audit x/slashing
* [ ] Audit x/staking
* [ ] Audit x/tx

View File

@ -10,8 +10,10 @@
"C:Keys":
- client/keys/**/*
"C:Simulations":
- types/simulation/**/*
- x/simulation/**/*
- x/*/simulation/**/*
- simsx/**/*
"C:Store":
- store/**/*
"C:collections":

View File

@ -36,11 +36,12 @@ Ref: https://keepachangelog.com/en/1.0.0/
## [Unreleased]
## [v1.0.0-alpha.3](https://github.com/cosmos/cosmos-sdk/releases/tag/core%2Fv1.0.0-alpha.3)
### Features
* [#21719](https://github.com/cosmos/cosmos-sdk/pull/21719) Make `core/event` as a type alias of `schema/appdata`.
<!-- ## [v1.0.0](https://github.com/cosmos/cosmos-sdk/releases/tag/core%2Fv1.0.0) -->
## [v1.0.0-alpha.2](https://github.com/cosmos/cosmos-sdk/releases/tag/core%2Fv1.0.0-alpha.2)
### Features

View File

@ -1,11 +1,11 @@
module cosmossdk.io/core
// Core is meant to have zero dependencies, so we can use it as a dependency
// Core is meant to have only a dependency on cosmossdk.io/schema, so we can use it as a dependency
// in other modules without having to worry about circular dependencies.
go 1.23
require cosmossdk.io/schema v0.3.0
// Version tagged too early and incompatible with v0.50 (latest at the time of tagging)
retract v0.12.0
require cosmossdk.io/schema v0.2.0

View File

@ -1,2 +1,2 @@
cosmossdk.io/schema v0.2.0 h1:UH5CR1DqUq8yP+5Np8PbvG4YX0zAUsTN2Qk6yThmfMk=
cosmossdk.io/schema v0.2.0/go.mod h1:RDAhxIeNB4bYqAlF4NBJwRrgtnciMcyyg0DOKnhNZQQ=
cosmossdk.io/schema v0.3.0 h1:01lcaM4trhzZ1HQTfTV8z6Ma1GziOZ/YmdzBN3F720c=
cosmossdk.io/schema v0.3.0/go.mod h1:RDAhxIeNB4bYqAlF4NBJwRrgtnciMcyyg0DOKnhNZQQ=

View File

@ -28,6 +28,7 @@ use (
./x/accounts
./x/accounts/defaults/base
./x/accounts/defaults/lockup
./x/accounts/defaults/multisig
./x/auth
./x/authz
./x/bank

View File

@ -8,6 +8,6 @@ go 1.12
// so there are no problems building this with any version of the SDK.
// This module should only use the golang standard library (database/sql)
// and cosmossdk.io/indexer/base.
require cosmossdk.io/schema v0.1.1
require cosmossdk.io/schema v0.3.0
replace cosmossdk.io/schema => ../../schema

View File

@ -4,7 +4,7 @@ go 1.23
require (
cosmossdk.io/indexer/postgres v0.0.0-00010101000000-000000000000
cosmossdk.io/schema v0.1.1
cosmossdk.io/schema v0.3.0
cosmossdk.io/schema/testing v0.0.0
github.com/fergusstrange/embedded-postgres v1.29.0
github.com/hashicorp/consul/sdk v0.16.1

View File

@ -2,8 +2,6 @@ module cosmossdk.io/store
go 1.23
toolchain go1.23.0
require (
cosmossdk.io/core v1.0.0-alpha.2
cosmossdk.io/core/testing v0.0.0-00010101000000-000000000000

View File

@ -1,8 +1,6 @@
module cosmossdk.io/tools/hubl
go 1.21.0
toolchain go1.23.0
go 1.23.0
require (
cosmossdk.io/api v0.7.5

View File

@ -1,17 +0,0 @@
sonar.projectKey=cosmos-sdk-x-accounts-base
sonar.organization=cosmos
sonar.projectName=Cosmos SDK - x/accounts/defaults/base
sonar.project.monorepo.enabled=true
sonar.sources=.
sonar.exclusions=**/*_test.go,**/*.pb.go,**/*.pulsar.go,**/*.pb.gw.go
sonar.coverage.exclusions=**/*_test.go,**/testutil/**,**/*.pb.go,**/*.pb.gw.go,**/*.pulsar.go,test_helpers.go,docs/**
sonar.tests=.
sonar.test.inclusions=**/*_test.go
sonar.go.coverage.reportPaths=coverage.out
sonar.sourceEncoding=UTF-8
sonar.scm.provider=git
sonar.scm.forceReloadAll=true
sonar.pullrequest.github.summary_comment=true