Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -427,4 +427,4 @@ temp/

logs.db
benchmarks.html
agent/
.claude/
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ The central design pattern is the **FSM App**: skills define a finite state mach

## Key Dependencies

- `open-aea[all]==2.1.0rc6` - Core AEA framework
- `open-aea[all]==2.1.0` - Core AEA framework
- `web3>=7,<8` - Ethereum interaction
- `docker==7.1.0` - Container management for deployments
- `Flask>=3.1.0,<4.0.0` - Tendermint monitoring server
Expand Down
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History - `open-autonomy`

# 0.21.12 (TBD)
# 0.21.12 (2026-03-08)

Autonomy:
- Adds aea key to connection also in docker deployment #2408
Expand Down
10 changes: 5 additions & 5 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ name = "pypi"
aiohttp = "<4.0.0,>=3.8.5"
docker = "==7.1.0"
Flask = ">=3.1.0,<4.0.0"
open-aea = {version = "==2.1.0rc6", extras = ["all"]}
open-aea-ledger-ethereum = "==2.1.0rc6"
open-aea-ledger-ethereum-hwi = "==2.1.0rc6"
open-aea-cli-ipfs = "==2.1.0rc6"
open-aea = {version = "==2.1.0", extras = ["all"]}
open-aea-ledger-ethereum = "==2.1.0"
open-aea-ledger-ethereum-hwi = "==2.1.0"
open-aea-cli-ipfs = "==2.1.0"
ipfshttpclient = "==0.8.0a2"
multiaddr = "==0.0.9"
Werkzeug = ">=3.1.0,<4.0.0"
Expand All @@ -32,7 +32,7 @@ typing_extensions = "<=4.15.0,>=3.10.0.2"
hexbytes = "*"
packaging = "*"
pytest-asyncio = "*"
open-aea-ledger-cosmos = "==2.1.0rc6"
open-aea-ledger-cosmos = "==2.1.0"
# we pin this as the range specified in open-aea-ledger-cosmos is wide
grpcio = "==1.78.0"
hypothesis = "==6.21.6"
Expand Down
2 changes: 1 addition & 1 deletion autonomy/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__title__ = "open-autonomy"
__description__ = "A framework for the creation of autonomous agent services."
__url__ = "https://github.com/valory-xyz/open-autonomy.git"
__version__ = "0.21.12rc5"
__version__ = "0.21.12"
__author__ = "Valory AG"
__license__ = "Apache-2.0"
__copyright__ = "2021-2024 Valory AG"
8 changes: 4 additions & 4 deletions deployments/Dockerfiles/autonomy-user/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
open-autonomy[all]==0.21.12rc5
open-aea[all]==2.1.0rc6
open-aea-cli-ipfs==2.1.0rc6
open-aea-ledger-ethereum==2.1.0rc6
open-autonomy[all]==0.21.12
open-aea[all]==2.1.0
open-aea-cli-ipfs==2.1.0
open-aea-ledger-ethereum==2.1.0
protobuf<6,>=5
2 changes: 1 addition & 1 deletion deployments/Dockerfiles/autonomy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG AEA_VERSION=2.1.0rc6
ARG AEA_VERSION=2.1.0

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

Expand Down
2 changes: 1 addition & 1 deletion deployments/Dockerfiles/development/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG AEA_VERSION=2.1.0rc6
ARG AEA_VERSION=2.1.0

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

Expand Down
2 changes: 1 addition & 1 deletion docs/advanced_reference/commands/autonomy_build-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ autonomy build-image [OPTIONS] [AGENT_PUBLIC_ID]
* Include extra python packages:

```bash
autonomy build-image ... -e open-aea-ledger-flashbots==2.1.0rc6
autonomy build-image ... -e open-aea-ledger-flashbots==2.1.0
```

This will tag the image as `<author>/oar-<agent_package>:<version>`.
4 changes: 2 additions & 2 deletions docs/guides/define_agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ If you have [populated the local registry](./overview_of_the_development_process
propagate: true
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
default_connection: null
---
public_id: valory/hello_world_abci:0.1.0
Expand Down
1 change: 1 addition & 0 deletions docs/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Below, we describe the additional manual steps required to upgrade between diffe

Main dependency updates to account for:

- `open-aea: ==2.0.8 -> ==2.1.0`
- `tomte: ==0.4.0 -> ==0.6.1`
- `click: >=8.1.0,<8.3.0 -> >=8.1.0,<9`
- `pytest: ==7.4.4 -> ==8.4.2`
Expand Down
4 changes: 2 additions & 2 deletions packages/valory/agents/abstract_abci/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ logging_config:
propagate: true
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
default_connection: valory/abci:0.1.0
customs: []
---
Expand Down
4 changes: 2 additions & 2 deletions packages/valory/agents/counter/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ logging_config:
propagate: true
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
customs: []
default_connection: null
---
Expand Down
2 changes: 1 addition & 1 deletion packages/valory/agents/counter_client/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ logging_config:
version: 1
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
customs: []
default_connection: null
---
Expand Down
2 changes: 1 addition & 1 deletion packages/valory/agents/offend_slash/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ logging_config:
skill_exception_policy: stop_and_exit
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc4
customs: []
Expand Down
2 changes: 1 addition & 1 deletion packages/valory/agents/register_reset/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ logging_config:
propagate: true
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc4
customs: []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ logging_config:
propagate: true
dependencies:
open-aea-ledger-cosmos:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc4
skill_exception_policy: stop_and_exit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ logging_config:
propagate: false
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc4
customs: []
Expand Down
4 changes: 2 additions & 2 deletions packages/valory/agents/registration_start_up/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ logging_config:
propagate: true
dependencies:
open-aea-ledger-cosmos:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc4
skill_exception_policy: just_log
Expand Down
4 changes: 2 additions & 2 deletions packages/valory/agents/solana_transfer_agent/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ logging_config:
propagate: false
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-ledger-solana:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc4
customs: []
Expand Down
2 changes: 1 addition & 1 deletion packages/valory/agents/test_abci/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ logging_config:
propagate: true
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
customs: []
default_connection: null
---
Expand Down
2 changes: 1 addition & 1 deletion packages/valory/agents/test_ipfs/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ logging_config:
propagate: true
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
customs: []
default_connection: null
---
Expand Down
2 changes: 1 addition & 1 deletion packages/valory/connections/abci/connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ dependencies:
hypothesis:
version: ==6.21.6
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
protobuf:
version: <6,>=5
is_abstract: false
Expand Down
2 changes: 1 addition & 1 deletion packages/valory/connections/ipfs/connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies:
ipfshttpclient:
version: ==0.8.0a2
open-aea-cli-ipfs:
version: ==2.1.0rc6
version: ==2.1.0
requests:
version: <2.33.0,>=2.28.1
is_abstract: false
Expand Down
2 changes: 1 addition & 1 deletion packages/valory/contracts/agent_mech/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ contract_interface_paths:
dependencies:
eth_typing: {}
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
web3:
version: <8,>=7.0.0
4 changes: 2 additions & 2 deletions packages/valory/contracts/agent_registry/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ contract_interface_paths:
ethereum: build/AgentRegistry.json
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
web3:
version: <8,>=7.0.0
4 changes: 2 additions & 2 deletions packages/valory/contracts/erc20/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ dependencies:
eth_typing: {}
hexbytes: {}
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
packaging: {}
py-eth-sig-utils: {}
requests:
Expand Down
4 changes: 2 additions & 2 deletions packages/valory/contracts/gnosis_safe/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ dependencies:
eth_typing: {}
hexbytes: {}
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
packaging: {}
pycryptodome:
version: ==3.20.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ contract_interface_paths:
ethereum: build/ProxyFactory_V1_3_0.json
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
web3:
version: <8,>=7.0.0
2 changes: 1 addition & 1 deletion packages/valory/contracts/mech_marketplace/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
eth_typing: {}
hexbytes: {}
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
web3:
version: <8,>=7.0.0
contracts: []
2 changes: 1 addition & 1 deletion packages/valory/contracts/multicall2/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ contract_interface_paths:
contracts: []
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
web3:
version: <8,>=7.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ dependencies:
eth-utils:
version: ==5.3.0
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
4 changes: 2 additions & 2 deletions packages/valory/contracts/recovery_module/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ contract_interface_paths:
ethereum: build/RecoveryModule.json
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
web3:
version: <8,>=7.0.0
4 changes: 2 additions & 2 deletions packages/valory/contracts/service_registry/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ contract_interface_paths:
ethereum: build/ServiceRegistry.json
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
web3:
version: <8,>=7.0.0
2 changes: 1 addition & 1 deletion packages/valory/contracts/squads_multisig/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ contract_interface_paths:
solana: build/SquadsMultisig.json
dependencies:
open-aea-ledger-solana:
version: ==2.1.0rc6
version: ==2.1.0
solders:
version: '>=0.14.0'
contracts: []
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ contract_interface_paths:
ethereum: build/StakingActivityChecker.json
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
web3:
version: <8,>=7.0.0
4 changes: 2 additions & 2 deletions packages/valory/contracts/staking_token/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ contract_interface_paths:
ethereum: build/StakingToken.json
dependencies:
open-aea-ledger-ethereum:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
web3:
version: <8,>=7.0.0
4 changes: 2 additions & 2 deletions packages/valory/skills/abstract_round_abci/skill.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ dependencies:
ipfshttpclient:
version: ==0.8.0a2
open-aea-cli-ipfs:
version: ==2.1.0rc6
version: ==2.1.0
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
protobuf:
version: <6,>=5
py-ecc:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ models:
class_name: TendermintDialogues
dependencies:
open-aea-test-autonomy:
version: ==0.21.12rc5
version: ==0.21.12
web3:
version: <8,>=7.0.0
is_abstract: true
Expand Down
Loading
Loading