Skip to content

Commit 9d79e86

Browse files
colin-axnerseantkingdependabot[bot]damiannolancrodriguezvega
authoredJan 5, 2022
Backport commits from main to v3 release branch (#682)
* reorganize channel handshake handler (#647) * reorganize channel handshake handler split out channel state changes into its own function. * readjust 27-interchain-accounts to not rely on state being set before the application callback * add changelog and migration doc entry * Update modules/core/04-channel/keeper/handshake.go * docs: ICA Overview (#626) * docs: ica overview * fix: ordering * add spacing * fix: spacing * fix: remove bulletpoints * fix: wording * update go mod for security vulnerabilities (#655) * update go mod for security vulnerabilities * update package-lock.json * update vue dependency (#662) * bump glob-parent version in json package (#663) * build(deps): bump actions/setup-go from 2.1.4 to 2.1.5 (#656) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.4 to 2.1.5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v2.1.4...v2.1.5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * docs: begin removal of internal "spec" directories (#634) * begin removal of spec docs within core ibc * remove broken link * Apply suggestions from code review Co-authored-by: Damian Nolan <damiannolan@gmail.com> * remove broken link * remove broken links * Apply suggestions from code review Co-authored-by: Carlos Rodriguez <crodveg@yahoo.es> Co-authored-by: Damian Nolan <damiannolan@gmail.com> Co-authored-by: Carlos Rodriguez <crodveg@yahoo.es> * Modify `OnChanOpenTry` application callback to perform app version negotitation (#646) * remove NegotiateAppVersion and AppVersion gRPC (#643) The NegotiateAppVersion callback has been removed from the IBC Application interface. The gRPC AppVersion has been removed. The app version negoitation will be handled by applications by returning the version in OnChanOpenTry. * Modify `OnChanOpenTry` to return application version (#650) * modify OnChanOpenTry to return negotiated version modify IBCModule interface function OnChanOpenTry to return the negotiated app version. Tests have not been updated * fix ibc_module_test.go tests * fix tests * Apply suggestions from code review * add handshake test case * add CHANGELOG and migration docs * update documentation * fix broken link * fix broken link (#664) * chore: update make build-docs, add docs build checker (#667) * update Makefile, add docs build checker * Update .github/workflows/check-docs.yml Co-authored-by: Marko <marbar3778@yahoo.com> Co-authored-by: Marko <marbar3778@yahoo.com> * register ICA query server, fix panics in params query cli (#666) Register the controller and host query servers to a chain. Returns an error upon cli params query failure instead of panicing. * update of roadmap with latest release (#653) * update of roadmap with latest release and changed the way release versions are encoded * fixed typo Co-authored-by: Carlos Rodriguez <crodveg@gmail.com> * build(deps): bump actions/checkout from 2.3.1 to 2.4.0 (#672) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.3.1...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * allow ics20 to connect to middleware (#675) * allow ics20 to connect to middleware Creates ics4Wrapper which allows middleware applications to only implement SendPacket to connect ics20 as an application in its middleware stack * add changelog and migration doc * fix migration doc spelling * fix: register InterchainAccount as x/auth GenesisAccount (#676) * adding GenesisAccount interface registration for InterchainAccount impl * updating RegisterInterfaces ica godoc * enable mergify for backports (#678) Co-authored-by: Carlos Rodriguez <crodveg@gmail.com> Co-authored-by: Sean King <seantking@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Damian Nolan <damiannolan@gmail.com> Co-authored-by: Carlos Rodriguez <crodveg@yahoo.es> Co-authored-by: Marko <marbar3778@yahoo.com> Co-authored-by: Carlos Rodriguez <crodveg@gmail.com>

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+3278
-3641
lines changed
 

‎.github/mergify.yml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
queue_rules:
2+
- name: default
3+
conditions:
4+
- "#approved-reviews-by>=1"
5+
- base=main
6+
- label=automerge
7+
8+
pull_request_rules:
9+
- name: automerge to main with label automerge and branch protection passing
10+
conditions:
11+
- "#approved-reviews-by>=1"
12+
- base=main
13+
- label=automerge
14+
actions:
15+
queue:
16+
name: default
17+
method: squash
18+
commit_message_template: |
19+
{{ title }} (#{{ number }})
20+
{{ body }}
21+
- name: backport patches to v1.1.x branch
22+
conditions:
23+
- base=main
24+
- label=backport-to-v1.1.x
25+
actions:
26+
backport:
27+
branches:
28+
- release/v1.1.x
29+
- name: backport patches to v1.2x branch
30+
conditions:
31+
- base=main
32+
- label=backport-to-v1.2.x
33+
actions:
34+
backport:
35+
branches:
36+
- release/v1.2.x
37+
- name: backport patches to v2.0.x branch
38+
conditions:
39+
- base=main
40+
- label=backport-to-v2.0.x
41+
actions:
42+
backport:
43+
branches:
44+
- release/v2.0.x
45+
- name: backport patches to v3.0.x branch
46+
conditions:
47+
- base=main
48+
- label=backport-to-v3.0.x
49+
actions:
50+
backport:
51+
branches:
52+
- release/v3.0.x

‎.github/workflows/check-docs.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Check docs build
2+
# This workflow runs when a PR is labeled with `docs`
3+
# This will check if the docs build successfully by running `npm run build`
4+
on:
5+
pull_request:
6+
paths:
7+
- './docs'
8+
9+
jobs:
10+
check-docs-build:
11+
if: ${{ github.event.label.name == 'docs' }}
12+
13+
name: Check docs build
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout 🛎️
17+
uses: actions/checkout@v2.4.0
18+
with:
19+
persist-credentials: false
20+
fetch-depth: 0
21+
22+
- name: Install dependencies and build docs 🧱
23+
run: |
24+
cd docs
25+
npm install
26+
npm run build

0 commit comments

Comments
 (0)
Please sign in to comment.