mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d4ca327880 | ||
|
|
7a8854b2cd | ||
|
|
abf6b5d5c8 | ||
|
|
2daaec55c2 | ||
|
|
415ac526d3 |
@@ -2,6 +2,6 @@
|
||||
name = "cz_conventional_commits"
|
||||
tag_format = "v$version"
|
||||
version_scheme = "semver"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
update_changelog_on_bump = true
|
||||
major_version_zero = true
|
||||
|
||||
+1
-7
@@ -16,7 +16,6 @@ aof*
|
||||
**/.DS_Store
|
||||
# Output of the go coverage tool
|
||||
*.out
|
||||
buf.lock
|
||||
|
||||
# Exclude embedded files
|
||||
!internal/files/dist
|
||||
@@ -32,12 +31,6 @@ go.work.sum
|
||||
.env
|
||||
**/*.env
|
||||
|
||||
# Lock files
|
||||
package-lock.json
|
||||
devbox.lock
|
||||
|
||||
# Config files
|
||||
pkg/config/static/
|
||||
|
||||
# Terraform
|
||||
**/.terraform/*
|
||||
@@ -83,3 +76,4 @@ mprocs.yaml
|
||||
|
||||
!devbox.lock
|
||||
!motr/build
|
||||
!buf.lock
|
||||
|
||||
@@ -1,3 +1,18 @@
|
||||
## v0.3.0 (2024-09-29)
|
||||
|
||||
### Feat
|
||||
|
||||
- add buf.lock for proto definitions
|
||||
|
||||
### Fix
|
||||
|
||||
- remove unused linting rules
|
||||
- update proto breaking check target to master branch
|
||||
|
||||
### Refactor
|
||||
|
||||
- remove unused lock files and configurations
|
||||
|
||||
## v0.2.0 (2024-09-29)
|
||||
|
||||
### Feat
|
||||
|
||||
@@ -195,14 +195,11 @@ proto-format:
|
||||
@echo "Formatting Protobuf files"
|
||||
@$(protoImage) find ./ -name "*.proto" -exec clang-format -i {} \;
|
||||
|
||||
proto-swagger-gen:
|
||||
@./scripts/protoc-swagger-gen.sh
|
||||
|
||||
proto-lint:
|
||||
@$(protoImage) buf lint --error-format=json
|
||||
|
||||
proto-check-breaking:
|
||||
@$(protoImage) buf breaking --against $(HTTPS_GIT)#branch=main
|
||||
@$(protoImage) buf breaking --against $(HTTPS_GIT)#branch=master
|
||||
|
||||
.PHONY: all install install-debug \
|
||||
go-mod-cache draw-deps clean build format \
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
# Generated by buf. DO NOT EDIT.
|
||||
version: v1
|
||||
deps:
|
||||
- remote: buf.build
|
||||
owner: cosmos
|
||||
repository: cosmos-proto
|
||||
commit: 04467658e59e44bbb22fe568206e1f70
|
||||
digest: shake256:73a640bd60e0c523b0f8237ff34eab67c45a38b64bbbde1d80224819d272dbf316ac183526bd245f994af6608b025f5130483d0133c5edd385531326b5990466
|
||||
- remote: buf.build
|
||||
owner: cosmos
|
||||
repository: cosmos-sdk
|
||||
commit: 05419252bcc241ea8023acf1ed4cadc5
|
||||
digest: shake256:1e54a48c19a8b59d35e0a7efa76402939f515f2d8005df099856f24c37c20a52800308f025abb8cffcd014d437b49707388aaca4865d9d063d8f25d5d4eb77d5
|
||||
- remote: buf.build
|
||||
owner: cosmos
|
||||
repository: gogo-proto
|
||||
commit: 88ef6483f90f478fb938c37dde52ece3
|
||||
digest: shake256:89c45df2aa11e0cff97b0d695436713db3d993d76792e9f8dc1ae90e6ab9a9bec55503d48ceedd6b86069ab07d3041b32001b2bfe0227fa725dd515ff381e5ba
|
||||
- remote: buf.build
|
||||
owner: googleapis
|
||||
repository: googleapis
|
||||
commit: e7f8d366f5264595bcc4cd4139af9973
|
||||
digest: shake256:e5e5f1c12f82e028ea696faa43b4f9dc6258a6d1226282962a8c8b282e10946281d815884f574bd279ebd9cd7588629beb3db17b892af6c33b56f92f8f67f509
|
||||
- remote: buf.build
|
||||
owner: protocolbuffers
|
||||
repository: wellknowntypes
|
||||
commit: 657250e6a39648cbb169d079a60bd9ba
|
||||
digest: shake256:00de25001b8dd2e29d85fc4bcc3ede7aed886d76d67f5e0f7a9b320b90f871d3eb73507d50818d823a0512f3f8db77a11c043685528403e31ff3fef18323a9fb
|
||||
- remote: buf.build
|
||||
owner: tendermint
|
||||
repository: tendermint
|
||||
commit: 33ed361a90514289beabf3189e1d7665
|
||||
digest: shake256:038267e06294714fd883610626554b04a127b576b4e253befb4206cb72d5d3c1eeccacd4b9ec8e3fb891f7c14e1cb0f770c077d2989638995b0a61c85afedb1d
|
||||
+19
-3
@@ -1,10 +1,13 @@
|
||||
version: v1
|
||||
name: buf.build/onsonr/sonr
|
||||
deps:
|
||||
- buf.build/cosmos/cosmos-sdk
|
||||
- buf.build/cosmos/cosmos-proto
|
||||
- buf.build/cosmos/gogo-proto
|
||||
- buf.build/cosmos/cosmos-sdk:05419252bcc241ea8023acf1ed4cadc5
|
||||
- buf.build/cosmos/cosmos-proto:04467658e59e44bbb22fe568206e1f70
|
||||
- buf.build/cosmos/gogo-proto:88ef6483f90f478fb938c37dde52ece3
|
||||
- buf.build/googleapis/googleapis
|
||||
breaking:
|
||||
use:
|
||||
- FILE
|
||||
lint:
|
||||
use:
|
||||
- DEFAULT
|
||||
@@ -13,6 +16,19 @@ lint:
|
||||
except:
|
||||
- UNARY_RPC
|
||||
- COMMENT_FIELD
|
||||
- COMMENT_MESSAGE
|
||||
- COMMENT_SERVICE
|
||||
- COMMENT_RPC
|
||||
- SERVICE_SUFFIX
|
||||
- PACKAGE_VERSION_SUFFIX
|
||||
- RPC_REQUEST_STANDARD_NAME
|
||||
- PACKAGE_SAME_GO_PACKAGE
|
||||
- PACKAGE_SAME_DIRECTORY
|
||||
- PACKAGE_DIRECTORY_MATCH
|
||||
- RPC_RESPONSE_STANDARD_NAME
|
||||
- COMMENT_ENUM_VALUE
|
||||
- COMMENT_ENUM
|
||||
- ENUM_ZERO_VALUE_SUFFIX
|
||||
ignore:
|
||||
- tendermint
|
||||
- amino
|
||||
|
||||
Reference in New Issue
Block a user