Skip to content

Commit 5f40fc0

Browse files
authored
Merge pull request #2389 from valory-xyz/chore/bump
Chore: Bump `open-aea==2.0.8` and Release `v0.21.7`
2 parents ab12b03 + 333b528 commit 5f40fc0

File tree

62 files changed

+407
-394
lines changed

Some content is hidden

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

62 files changed

+407
-394
lines changed

HISTORY.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Release History - `open-autonomy`
22

3+
# 0.21.7 (2026-01-20)
4+
5+
Autonomy:
6+
- Updates a link in the docs to the new domain `stack.olas.network` #2379
7+
- Fixes the `TxSettler` retry mechanism for Polygon RPCs #2388
8+
9+
Packages:
10+
- Bumps `open-aea` to `2.0.8` #2389
11+
312
# 0.21.6 (2026-01-14)
413

514
Autonomy:

Pipfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ name = "pypi"
77
aiohttp = "<4.0.0,>=3.8.5"
88
docker = "==7.1.0"
99
Flask = "==2.0.2"
10-
open-aea = {version = "==2.0.7", extras = ["all"]}
11-
open-aea-ledger-ethereum = "==2.0.7"
12-
open-aea-ledger-ethereum-hwi = "==2.0.7"
13-
open-aea-cli-ipfs = "==2.0.7"
10+
open-aea = {version = "==2.0.8", extras = ["all"]}
11+
open-aea-ledger-ethereum = "==2.0.8"
12+
open-aea-ledger-ethereum-hwi = "==2.0.8"
13+
open-aea-cli-ipfs = "==2.0.8"
1414
ipfshttpclient = "==0.8.0a2"
1515
multiaddr = "==0.0.9"
1616
Werkzeug= "==2.0.3"
@@ -32,7 +32,7 @@ typing_extensions = "<=4.13.2,>=3.10.0.2"
3232
hexbytes = "*"
3333
packaging = "*"
3434
pytest-asyncio = "*"
35-
open-aea-ledger-cosmos = "==2.0.7"
35+
open-aea-ledger-cosmos = "==2.0.8"
3636
# we pin this as the range specified in open-aea-ledger-cosmos is wide
3737
open-aea-cosmpy = "==0.6.7"
3838
grpcio = "==1.53.0"

autonomy/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__title__ = "open-autonomy"
2323
__description__ = "A framework for the creation of autonomous agent services."
2424
__url__ = "https://github.com/valory-xyz/open-autonomy.git"
25-
__version__ = "0.21.6"
25+
__version__ = "0.21.7"
2626
__author__ = "Valory AG"
2727
__license__ = "Apache-2.0"
2828
__copyright__ = "2021-2024 Valory AG"

autonomy/chain/tx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# ------------------------------------------------------------------------------
33
#
4-
# Copyright 2023-2025 Valory AG
4+
# Copyright 2023-2026 Valory AG
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

autonomy/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@
6565
ACN_IMAGE_NAME = os.environ.get("ACN_IMAGE_NAME", "valory/open-acn-node")
6666
DEFAULT_DOCKER_IMAGE_AUTHOR = "valory"
6767
OAR_IMAGE = "{image_author}/oar-{agent}:{version}"
68-
ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeib4apybhtx3gx6o4x5b2nwqjkbdqi7dx7rxyrb5r3zztcdjiezvh4"
68+
ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeiazxdhf7ls5krsmrcyfndt5pxxky2tfrlaahvbbpbe637nqual6ke"
6969
OLAS_DOCS_URL = "https://stack.olas.network"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
open-autonomy[all]==0.21.6
2-
open-aea[all]==2.0.7
3-
open-aea-cli-ipfs==2.0.7
4-
open-aea-ledger-ethereum==2.0.7
1+
open-autonomy[all]==0.21.7
2+
open-aea[all]==2.0.8
3+
open-aea-cli-ipfs==2.0.8
4+
open-aea-ledger-ethereum==2.0.8
55
protobuf>=4.21.6,<5.0.0

deployments/Dockerfiles/autonomy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG AEA_VERSION=2.0.7
1+
ARG AEA_VERSION=2.0.8
22

33
FROM valory/open-aea-user:${AEA_VERSION}
44

deployments/Dockerfiles/development/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG AEA_VERSION=2.0.7
1+
ARG AEA_VERSION=2.0.8
22

33
FROM valory/open-aea-user:${AEA_VERSION}
44

docs/advanced_reference/commands/autonomy_build-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ autonomy build-image [OPTIONS] [AGENT_PUBLIC_ID]
8484
* Include extra python packages:
8585

8686
```bash
87-
autonomy build-image ... -e open-aea-ledger-flashbots==2.0.7
87+
autonomy build-image ... -e open-aea-ledger-flashbots==2.0.8
8888
```
8989

9090
This will tag the image as `<author>/oar-<agent_package>:<version>`.

docs/counter_example.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ you have followed the [setup instructions](guides/set_up.md#set-up-the-framework
2525

2626
2. Use the CLI to download the `valory/counter` AI agent.
2727
```bash
28-
autonomy fetch valory/counter:0.1.0:bafybeig25l3gdy2o5cn4dpbjyta6euknykiu4z4ebjcigkfm6ibj7vjneu --remote --service
28+
autonomy fetch valory/counter:0.1.0:bafybeidtfqyxtrhoejf6hi7iny47dz7ct4i7wsdh5kevrbg3ialeilphie --remote --service
2929
cd counter
3030
```
3131

@@ -284,7 +284,7 @@ First, open a terminal to the root of this repository,
284284
and fetch the `counter_client` agent:
285285
286286
```bash
287-
autonomy fetch valory/counter_client:0.1.0:bafybeiamxdeuyav5ibtnw5mvqt4k6znlp4w63ydwsj35qic6b3rb5d6fh4 --remote
287+
autonomy fetch valory/counter_client:0.1.0:bafybeigk7vgznpjlqxgpd3lmitoajkiugcrx66xmfkg7qjwgmejypepapi --remote
288288
```
289289
290290
This will copy the agent blueprint project in the `counter_client` directory.

0 commit comments

Comments
 (0)