forked from tox-dev/tox-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows us to skip port validation for images that publish multiple ports, not all of which may be active at any given time. We also introduce reno, which is a release note manager that we can use to produce a helpful changelog for users. Signed-off-by: Stephen Finucane <[email protected]> Closes: tox-dev#35
- Loading branch information
1 parent
3cb9f5b
commit 37badf3
Showing
7 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
.. include:: ../../README.rst | ||
|
||
Release notes | ||
------------- | ||
|
||
.. release-notes:: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
earliest_version: v1.4.0 | ||
release_tag_re: 'v\d\.\d\.\d(rc\d+)?' | ||
sections: | ||
# The prelude section is implicitly included. | ||
- [features, New Features] | ||
- [issues, Known Issues] | ||
- [upgrade, Upgrade Notes] | ||
- [deprecations, Deprecation Notes] | ||
- [fixes, Bug Fixes] | ||
- [other, Other Notes] |
10 changes: 10 additions & 0 deletions
10
releasenotes/notes/add-skip_port_validation-flag-40921e653b8feb05.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
features: | ||
- | | ||
A new ``skip_port_validation`` flag is added. This can be used to disable | ||
port scanning for created instances and is useful for images that provide | ||
optional port. It can be configured for each image in a ``[docker:IMAGE]`` | ||
section. For example:: | ||
[docker:mysql:8.0] | ||
skip_port_validation = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters