From abc53113c3e6e919bf06cf0dd635b7b3c6bbe7ca Mon Sep 17 00:00:00 2001 From: iwilltry42 Date: Tue, 6 Jul 2021 14:41:18 +0200 Subject: [PATCH] changelog: add some notes about the new nodefilters and port-mapping behavior --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index efd64333..d1716142 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ ## v5.0.0 +### Breaking Changes + +- new syntax for nodefilters + - dropped the usage of square brackets `[]` for indexing, as it caused problems with some shells trying to interpret them + - new syntax: `@identifier[:index][:opt]` (see ) + - example for a port-mapping: `--port 8080:80@server:0:proxy` + - identifier = `server`, index = `0`, opt = `proxy` + - `opt` is an extra optional argument used for different purposes depending on the flag + - currently, only the `--port` flag has `opt`s, namely `proxy` and `direct` (see other breaking change) + +- + ### Fixes - cleaned up and properly sorted the sanitization of existing resources used to create new nodes (#638)