-
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 #245 from KatharaFramework/develop
Kathará v3.7.0
- Loading branch information
Showing
30 changed files
with
701 additions
and
205 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,12 +1,7 @@ | ||
kathara (__VERSION__-__DEBIAN_PACKAGE_VERSION____UBUNTU_VERSION__) __UBUNTU_VERSION__; urgency=low | ||
|
||
* 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 | ||
* Add support for the new Kathara Network Plugin based on VDE software switches. It is possible to select the old Network Plugin (based on Linux Bridges) from "kathara settings" | ||
* Switch the default image to "kathara/base" for new installations | ||
* Fix Docker images fetching in "kathara settings" | ||
|
||
-- 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.3 | ||
VERSION=3.7.0 | ||
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,11 +1,6 @@ | ||
__DATE__ Kathara Team <******@kathara.org> | ||
|
||
* Release v__VERSION__ | ||
* 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 | ||
* Add support for the new Kathara Network Plugin based on VDE software switches. It is possible to select the old Network Plugin (based on Linux Bridges) from "kathara settings" | ||
* Switch the default image to "kathara/base" for new installations | ||
* Fix Docker images fetching in "kathara settings" |
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,6 +1,6 @@ | ||
[metadata] | ||
name = kathara | ||
version = 3.6.3 | ||
version = 3.7.0 | ||
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.3', | ||
version='3.7.0', | ||
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.3.tar.gz', | ||
download_url='https://github.com/KatharaFramework/Kathara/archive/refs/tags/3.7.0.tar.gz', | ||
keywords=['NETWORK-EMULATION', 'CONTAINERS', 'NFV'], | ||
install_requires=[ | ||
"binaryornot>=0.4.4", | ||
|
@@ -24,7 +24,7 @@ | |
"terminaltables>=3.1.0", | ||
"slug>=2.0", | ||
"deepdiff==6.2.2", | ||
"pyroute2>=0.5.19", | ||
"pyroute2", | ||
"progressbar2>=1.14.0", | ||
"fs>=2.4.16", | ||
"chardet", | ||
|
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.