Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rm capabilities references in workflows, markdown files #7323

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,10 @@ updates:
labels:
- dependencies

- package-ecosystem: gomod
directory: "/modules/capability"
schedule:
interval: daily
open-pull-requests-limit: 10
labels:
- dependencies

- package-ecosystem: gomod
directory: "/simapp"
schedule:
interval: daily
open-pull-requests-limit: 10
labels:
- dependencies


14 changes: 3 additions & 11 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,6 @@ pull_request_rules:
commit_message_template: |
{{ title }} (#{{ number }})
{{ body }}
- name: backport patches to v1.0.x capability branch
conditions:
- base=main
- label=backport-capability-to-v1.0.x
actions:
backport:
branches:
- capability/release/v1.0.x
- name: backport patches to v0.1.x callbacks ibc-go v7.3.x branch
conditions:
- base=main
Expand Down Expand Up @@ -65,15 +57,15 @@ pull_request_rules:
actions:
backport:
branches:
- 08-wasm/release/v0.4.x+ibc-go-v8.4.x-wasmvm-v2.0.x
- 08-wasm/release/v0.4.x+ibc-go-v8.4.x-wasmvm-v2.0.x
- name: backport patches to v0.5.x wasm ibc-go v9.0.x & wasmvm 2.1.x branch
conditions:
- base=main
- label=backport-wasm-v0.5.x+ibc-go-v9.0.x-wasmvm-v2.1.x
actions:
backport:
branches:
- 08-wasm/release/v0.5.x+ibc-go-v9.0.x-wasmvm-v2.1.x
- 08-wasm/release/v0.5.x+ibc-go-v9.0.x-wasmvm-v2.1.x
- name: backport patches to v7.4.x branch
conditions:
- base=main
Expand All @@ -89,7 +81,7 @@ pull_request_rules:
actions:
backport:
branches:
- release/v7.5.x
- release/v7.5.x
- name: backport patches to v7.6.x branch
conditions:
- base=main
Expand Down
5 changes: 2 additions & 3 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
".github",
"**/CHANGELOG.md",
"vendor/**",
"e2e/vendor/**",
"modules/capability/vendor/**"
"e2e/vendor/**"
]
}
}
4 changes: 0 additions & 4 deletions docs/dev/project-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ Every Interchain Standard (ICS) has been developed in its own package. The devel

This folder contains implementations for the IBC TAO (`core`), IBC applications (`apps`) and light clients (`light-clients`).

### `capability`

This module is an implementation of [Cosmos SDK's ADR 003](https://github.com/cosmos/cosmos-sdk/blob/main/docs/architecture/adr-003-dynamic-capability-store.md) that allows for provisioning, tracking, and authenticating multi-owner capabilities at runtime.

### `core`

- `02-client`: This package is an implementation for Cosmos SDK-based chains of [ICS 02](https://github.com/cosmos/ibc/tree/main/spec/core/ics-002-client-semantics). This implementation defines the types and methods needed to operate light clients tracking other chain's consensus state.
Expand Down
3 changes: 1 addition & 2 deletions testing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,7 @@ This might look like:
```go
suite.chainA.GetSimApp().ICAAuthModule.IBCApp.OnChanOpenInit = func(
ctx sdk.Context, order channeltypes.Order, connectionHops []string,
portID, channelID string, chanCap *capabilitytypes.Capability,
counterparty channeltypes.Counterparty, version string,
portID, channelID string, counterparty channeltypes.Counterparty, version string,
) error {
return fmt.Errorf("mock ica auth fails")
}
Expand Down
Loading