From 92db0fedabe9db7e833cb71257f7e24a6b6d0182 Mon Sep 17 00:00:00 2001 From: Damian Nolan Date: Mon, 23 Sep 2024 15:07:28 +0200 Subject: [PATCH] chore: rm capabilities references in workflows, markdown files --- .github/dependabot.yml | 10 ---------- .github/mergify.yml | 14 +++----------- .markdownlint-cli2.jsonc | 5 ++--- docs/dev/project-structure.md | 4 ---- testing/README.md | 3 +-- 5 files changed, 6 insertions(+), 30 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 75e9fb10fae..075390e7013 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -38,14 +38,6 @@ 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: @@ -53,5 +45,3 @@ updates: open-pull-requests-limit: 10 labels: - dependencies - - diff --git a/.github/mergify.yml b/.github/mergify.yml index 09eb23e64b0..a39fae4d878 100644 --- a/.github/mergify.yml +++ b/.github/mergify.yml @@ -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 @@ -65,7 +57,7 @@ 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 @@ -73,7 +65,7 @@ pull_request_rules: 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 @@ -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 diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index fa24257664c..bfa7772916f 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -6,7 +6,6 @@ ".github", "**/CHANGELOG.md", "vendor/**", - "e2e/vendor/**", - "modules/capability/vendor/**" + "e2e/vendor/**" ] -} +} \ No newline at end of file diff --git a/docs/dev/project-structure.md b/docs/dev/project-structure.md index b3e7dce1914..7138d65c7fb 100644 --- a/docs/dev/project-structure.md +++ b/docs/dev/project-structure.md @@ -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. diff --git a/testing/README.md b/testing/README.md index 297a3150d3f..844b011fd99 100644 --- a/testing/README.md +++ b/testing/README.md @@ -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") }