From f3bbfffe7f4503bd4d14ddbc2d7c08766962c8eb Mon Sep 17 00:00:00 2001 From: Charlie Crane Date: Mon, 3 Feb 2025 14:03:21 +0000 Subject: [PATCH] #2887 - Update CHANGELOG.md --- CHANGELOG.md | 2 ++ docs/source/how_to_guides/extensible_nodes.rst | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c91bf4f4..7f87f54e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Relabeled action parameters to match the new action config schemas, and updated the values to no longer rely on indices - Removed action space options which were previously used for assigning meaning to action space IDs - Updated tests that don't use YAMLs to still use the new action and agent schemas +- Nodes now use a config schema and are extensible, allowing for plugin support. +- Node tests have been updated to use the new node config schemas when not using YAML files. ### Fixed - DNS client no longer fails to check its cache if a DNS server address is missing. diff --git a/docs/source/how_to_guides/extensible_nodes.rst b/docs/source/how_to_guides/extensible_nodes.rst index f0b78b08..78ee550e 100644 --- a/docs/source/how_to_guides/extensible_nodes.rst +++ b/docs/source/how_to_guides/extensible_nodes.rst @@ -48,8 +48,6 @@ class Router(NetworkNode, identifier="router"): hostname: str = "Router" - ports: list = [] - Changes to YAML file.