File tree Expand file tree Collapse file tree 18 files changed +40
-21
lines changed
tests/test_docs/test_bash_yaml/md_files Expand file tree Collapse file tree 18 files changed +40
-21
lines changed Original file line number Diff line number Diff line change 1
1
# Release History - open AEA
2
2
3
+
4
+ ## 1.17.0
5
+
6
+ AEA:
7
+ - Updates the deploy image Dockerfile to use Python 3.10
8
+ - Updates the deploy image Dockerfile to utilize remote registry when fetching components
9
+ - Improves handling for variables with potential none values
10
+
11
+ Chore:
12
+ - Bumps ` mistune ` to a secure version
13
+ - Bumps ` protobuf ` dependencies to address ` dependabot ` security warning
14
+ - Improves command regex on ` scripts/check_doc_ipfs_hashes.py `
15
+ - Updates ` tox ` definitions and ` Makefile ` targets to align with the latest changes
16
+
3
17
## 1.16.0 (2022-08-18)
4
18
5
19
AEA:
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ The following table shows which versions of `open-aea` are currently being suppo
8
8
9
9
| Version | Supported |
10
10
| --------- | ------------------ |
11
- | ` 1.16 .x ` | :white_check_mark : |
12
- | ` < 1.16 .0 ` | :x : |
11
+ | ` 1.17 .x ` | :white_check_mark : |
12
+ | ` < 1.17 .0 ` | :x : |
13
13
14
14
## Reporting a Vulnerability
15
15
Original file line number Diff line number Diff line change 23
23
__title__ = "open-aea"
24
24
__description__ = "Open Autonomous Economic Agent framework (without vendor lock-in)"
25
25
__url__ = "https://github.com/valory-xyz/open-aea.git"
26
- __version__ = "1.16 .0"
26
+ __version__ = "1.17 .0"
27
27
__author__ = "Valory AG"
28
28
__license__ = "Apache-2.0"
29
29
__copyright__ = "2021 Valory AG, 2019 Fetch.AI Limited"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ RUN apk add --no-cache go
16
16
17
17
# aea installation
18
18
RUN pip install --upgrade pip
19
- RUN pip install --upgrade --force-reinstall open-aea[all]==1.16 .0 "open-aea-cli-ipfs<2.0.0,>=1.16 .0"
19
+ RUN pip install --upgrade --force-reinstall open-aea[all]==1.17 .0 "open-aea-cli-ipfs<2.0.0,>=1.17 .0"
20
20
21
21
# directories and aea cli config
22
22
WORKDIR /home/agents
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ The example uses the `fetchai/my_first_aea` project. You will likely want to mod
11
11
Install subversion, then download the example directory to your local working directory
12
12
13
13
``` bash
14
- svn checkout https://github.com/valory-xyz/open-aea/tags/v1.16 .0/packages packages
14
+ svn checkout https://github.com/valory-xyz/open-aea/tags/v1.17 .0/packages packages
15
15
```
16
16
17
17
### Modify scripts
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# Swap the following lines if you want to work with 'latest'
4
- DOCKER_IMAGE_TAG=valory/open-aea-develop:1.16 .0
4
+ DOCKER_IMAGE_TAG=valory/open-aea-develop:1.17 .0
5
5
# DOCKER_IMAGE_TAG=valory/open-aea-develop:latest
6
6
7
7
DOCKER_BUILD_CONTEXT_DIR=..
Original file line number Diff line number Diff line change @@ -7,11 +7,16 @@ Below we describe the additional manual steps required to upgrade between differ
7
7
8
8
# Open AEA
9
9
10
+ ## ` v1.16.0 ` to ` v1.17.0 `
11
+
12
+ No backwards incompatible changes.
13
+
14
+ Plugins from previous versions are not compatible anymore.
15
+
10
16
## ` v1.15.0 ` to ` v1.16.0 `
11
17
12
- No backwards incompatible changes, except a typo change:
13
- ` from aea.helpers.dependency_tree import DependencyTree `
14
- rather than ` from aea.helpers.dependency_tree import DependecyTree ` .
18
+ - A typo change, now import ` from aea.helpers.dependency_tree import DependencyTree ` rather than ` from aea.helpers.dependency_tree import DependecyTree ` .
19
+ - The global configuration file for the ` aea ` CLI has a breaking change. Please remove ` ~/.aea/cli_config.yaml ` and rerun ` autonomy init --remote ` .
15
20
16
21
Plugins from previous versions are not compatible anymore.
17
22
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ RUN apk add --no-cache go
19
19
20
20
# aea installation
21
21
RUN python -m pip install --upgrade pip
22
- RUN pip install --upgrade --force-reinstall aea[all]==1.16 .0
22
+ RUN pip install --upgrade --force-reinstall aea[all]==1.17 .0
23
23
24
24
# directories and aea cli config
25
25
COPY /.aea /home/.aea
Original file line number Diff line number Diff line change 26
26
27
27
setup (
28
28
name = "open-aea-cli-benchmark" ,
29
- version = "1.16 .0" ,
29
+ version = "1.17 .0" ,
30
30
author = "Valory AG" ,
31
31
license = "Apache-2.0" ,
32
32
description = "CLI extension for AEA framework benchmarking." ,
Original file line number Diff line number Diff line change 28
28
29
29
setup (
30
30
name = "open-aea-cli-ipfs" ,
31
- version = "1.16 .0" ,
31
+ version = "1.17 .0" ,
32
32
author = "Valory AG" ,
33
33
license = "Apache-2.0" ,
34
34
description = "CLI extension for open AEA framework wrapping IPFS functionality." ,
Original file line number Diff line number Diff line change 26
26
27
27
setup (
28
28
name = "open-aea-ledger-cosmos" ,
29
- version = "1.16 .0" ,
29
+ version = "1.17 .0" ,
30
30
author = "Valory AG" ,
31
31
license = "Apache-2.0" ,
32
32
description = "Python package wrapping the public and private key cryptography and ledger api of Cosmos." ,
Original file line number Diff line number Diff line change 26
26
27
27
setup (
28
28
name = "open-aea-ledger-ethereum" ,
29
- version = "1.16 .0" ,
29
+ version = "1.17 .0" ,
30
30
author = "Valory AG" ,
31
31
license = "Apache-2.0" ,
32
32
description = "Python package wrapping the public and private key cryptography and ledger api of Ethereum." ,
Original file line number Diff line number Diff line change 31
31
32
32
setup (
33
33
name = "open-aea-ledger-fetchai" ,
34
- version = "1.16 .0" ,
34
+ version = "1.17 .0" ,
35
35
author = "Valory AG" ,
36
36
license = "Apache-2.0" ,
37
37
description = "Python package wrapping the public and private key cryptography and ledger API of Fetch.AI." ,
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ function instal_choco_golang_gcc {
34
34
}
35
35
function install_aea {
36
36
echo " Install aea"
37
- $output = pip install open-aea [all ]== 1.16 .0 -- force -- no- cache- dir 2>&1 | out-string ;
37
+ $output = pip install open-aea [all ]== 1.17 .0 -- force -- no- cache- dir 2>&1 | out-string ;
38
38
if ($LastExitCode -ne 0 ) {
39
39
echo $output
40
40
echo " AEA install failed!"
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ function is_python_version_ok() {
42
42
43
43
function install_aea (){
44
44
echo " Install AEA"
45
- output=$( pip3 install --user open-aea[all]==1.16 .0 --force --no-cache-dir)
45
+ output=$( pip3 install --user open-aea[all]==1.17 .0 --force --no-cache-dir)
46
46
if [[ $? -ne 0 ]];
47
47
then
48
48
echo " $output "
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ metadata:
5
5
build :
6
6
tagPolicy :
7
7
envTemplate :
8
- template : " 1.16 .0"
8
+ template : " 1.17 .0"
9
9
artifacts :
10
10
- image : valory/open-aea-develop
11
11
docker :
@@ -24,7 +24,7 @@ profiles:
24
24
build :
25
25
tagPolicy :
26
26
envTemplate :
27
- template : " 1.16 .0"
27
+ template : " 1.17 .0"
28
28
artifacts :
29
29
- image : valory/open-aea-docs
30
30
docker :
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ pip install open-aea[all]
44
44
pip install open-aea-cli-ipfs
45
45
```
46
46
```
47
- svn checkout https://github.com/valory-xyz/open-aea/tags/v1.16 .0/packages packages
47
+ svn checkout https://github.com/valory-xyz/open-aea/tags/v1.17 .0/packages packages
48
48
```
49
49
50
50
``` bash
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# Swap the following lines if you want to work with 'latest'
4
- DOCKER_IMAGE_TAG=valory/open-aea-user:1.16 .0
4
+ DOCKER_IMAGE_TAG=valory/open-aea-user:1.17 .0
5
5
# DOCKER_IMAGE_TAG=valory/open-aea-user:latest
6
6
7
7
DOCKER_BUILD_CONTEXT_DIR=..
You can’t perform that action at this time.
0 commit comments