-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #231 from KatharaFramework/develop
Kathará v3.6.3
- Loading branch information
Showing
42 changed files
with
983 additions
and
236 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
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,8 +1,12 @@ | ||
kathara (__VERSION__-__DEBIAN_PACKAGE_VERSION____UBUNTU_VERSION__) __UBUNTU_VERSION__; urgency=low | ||
|
||
* Fix FilesystemMixin APIs for file modifications | ||
* Add a warning if a meta is repeated on the same device | ||
* Add support for Docker Images tags in "kathara settings" | ||
* Use "chardet" to parse all byte strings in order to correctly encode non-UTF8 characters | ||
* Wait for startup commands execution while opening a connection to a device (the wait can be overridden by pressing [ENTER]) | ||
* Keep correct folders/files permissions when copying files inside the device | ||
* Fix "sysctl" metadata parsing for negative values | ||
* Fix "machine.is_ipv6_enabled()"" method to correctly follow priority of "ipv6" meta | ||
* Rename "startup_commands" meta to "exec_commands" to avoid ambiguity with ".startup" files | ||
* Add new helper methods to "model.Lab" | ||
* Minor fixes | ||
|
||
-- Kathara Team <[email protected]> __DATE__ |
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,6 +1,6 @@ | ||
#!/usr/bin/make -f | ||
|
||
VERSION=3.6.2 | ||
VERSION=3.6.3 | ||
PACKAGE_VERSION=1 | ||
AUR_NAME=user | ||
AUR_MAIL[email protected] | ||
|
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,7 +1,11 @@ | ||
__DATE__ Kathara Team <******@kathara.org> | ||
|
||
* Release v__VERSION__ | ||
* Fix FilesystemMixin APIs for file modifications | ||
* Add a warning if a meta is repeated on the same device | ||
* Add support for Docker Images tags in "kathara settings" | ||
* Use "chardet" to parse all byte strings in order to correctly encode non-UTF8 characters | ||
* Wait for startup commands execution while opening a connection to a device (the wait can be overridden by pressing [ENTER]) | ||
* Keep correct folders/files permissions when copying files inside the device | ||
* Fix "sysctl" metadata parsing for negative values | ||
* Fix "machine.is_ipv6_enabled()"" method to correctly follow priority of "ipv6" meta | ||
* Rename "startup_commands" meta to "exec_commands" to avoid ambiguity with ".startup" files | ||
* Add new helper methods to "model.Lab" | ||
* Minor fixes |
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
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
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,12 +1,16 @@ | ||
from lazydocs import generate_docs | ||
|
||
ignored_modules = [ | ||
"Kathara.version", "Kathara.auth", "Kathara.cli", "Kathara.event", "Kathara.foundation", | ||
"Kathara.manager.docker.terminal", "Kathara.manager.kubernetes.terminal", "Kathara.os", | ||
"Kathara.parser", "Kathara.test", "Kathara.trdparty", "Kathara.validator", "Kathara.kathara", "Kathara.decorators", | ||
"Kathara.exceptions", "Kathara.strings", "Kathara.utils", "Kathara.webhooks", "kathara" | ||
"Kathara.version", "Kathara.auth", "Kathara.cli", "Kathara.trdparty", "Kathara.foundation.cli", | ||
"Kathara.foundation.test", "Kathara.exceptions", "Kathara.webhooks", "Kathara.validator", "Kathara.test", "kathara", | ||
"Kathara.manager.kubernetes.terminal.KubernetesWSTerminal", "Kathara.foundation.factory", | ||
"Kathara.manager.docker.terminal.DockerTTYTerminal", | ||
"Kathara.foundation.manager.terminal.Terminal", "Kathara.foundation.manager.ManagerFactory", | ||
"Kathara.foundation.setting.SettingsAddon", "Kathara.foundation.setting.SettingsAddonFactory", | ||
"Kathara.setting.addon.DockerSettingsAddon", "Kathara.setting.addon.KubernetesSettingsAddon" | ||
] | ||
|
||
generate_docs(["../../src"], src_base_url="https://github.com/KatharaFramework/Kathara/tree/master", output_path="./docs", | ||
generate_docs(["../../src"], | ||
src_base_url="https://github.com/KatharaFramework/Kathara/tree/main", output_path="./docs", | ||
ignored_modules=ignored_modules, | ||
overview_file="Kathara-API-Docs.md", remove_package_prefix=False) |
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,6 +1,6 @@ | ||
[metadata] | ||
name = kathara | ||
version = 3.6.2 | ||
version = 3.6.3 | ||
author = Kathara Framework | ||
author_email = [email protected] | ||
description = A lightweight container based emulation system | ||
|
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 |
---|---|---|
|
@@ -7,13 +7,13 @@ | |
package_dir={'': 'src'}, | ||
packages=find_packages('src'), | ||
py_modules=['kathara'], | ||
version='3.6.2', | ||
version='3.6.3', | ||
license='gpl-3.0', | ||
description='A lightweight container based emulation system.', | ||
author='Kathara Framework', | ||
author_email='[email protected]', | ||
url='https://www.kathara.org', | ||
download_url='https://github.com/KatharaFramework/Kathara/archive/refs/tags/3.6.2.tar.gz', | ||
download_url='https://github.com/KatharaFramework/Kathara/archive/refs/tags/3.6.3.tar.gz', | ||
keywords=['NETWORK-EMULATION', 'CONTAINERS', 'NFV'], | ||
install_requires=[ | ||
"binaryornot>=0.4.4", | ||
|
@@ -27,6 +27,7 @@ | |
"pyroute2>=0.5.19", | ||
"progressbar2>=1.14.0", | ||
"fs>=2.4.16", | ||
"chardet", | ||
"libtmux>=0.8.2; platform_system == 'darwin' or platform_system == 'linux'", | ||
"appscript>=1.1.0; platform_system == 'darwin'", | ||
"pypiwin32>=223; platform_system == 'win32'", | ||
|
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
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
Oops, something went wrong.