shellfoundry 1.2.1__tar.gz → 1.2.24__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/HISTORY.rst +293 -198
  2. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/LICENSE +201 -201
  3. shellfoundry-1.2.24/MANIFEST.in +8 -0
  4. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/PKG-INFO +401 -303
  5. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/README.rst +88 -88
  6. shellfoundry-1.2.24/dev_requirements.txt +4 -0
  7. shellfoundry-1.2.24/requirements.txt +11 -0
  8. shellfoundry-1.2.24/setup.cfg +4 -0
  9. shellfoundry-1.2.24/setup.py +52 -0
  10. shellfoundry-1.2.24/shellfoundry/__init__.py +8 -0
  11. shellfoundry-1.2.24/shellfoundry/__main__.py +7 -0
  12. shellfoundry-1.2.24/shellfoundry/bootstrap.py +169 -0
  13. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/commands/config_command.py +87 -74
  14. shellfoundry-1.2.24/shellfoundry/commands/delete_command.py +24 -0
  15. shellfoundry-1.2.24/shellfoundry/commands/dist_command.py +34 -0
  16. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/commands/extend_command.py +182 -172
  17. shellfoundry-1.2.24/shellfoundry/commands/generate_command.py +44 -0
  18. shellfoundry-1.2.24/shellfoundry/commands/get_templates_command.py +151 -0
  19. shellfoundry-1.2.24/shellfoundry/commands/install_command.py +81 -0
  20. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/commands/list_command.py +110 -88
  21. shellfoundry-1.2.24/shellfoundry/commands/new_command.py +393 -0
  22. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/commands/pack_command.py +45 -40
  23. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/commands/show_command.py +55 -40
  24. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/data/standards.json +44 -44
  25. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/data/templates.yml +117 -117
  26. shellfoundry-1.2.24/shellfoundry/decorators/__init__.py +1 -0
  27. shellfoundry-1.2.24/shellfoundry/decorators/standards.py +20 -0
  28. shellfoundry-1.2.24/shellfoundry/decorators/version_check.py +52 -0
  29. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/exceptions.py +52 -52
  30. shellfoundry-1.2.24/shellfoundry/models/install_config.py +83 -0
  31. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/models/shell_template.py +22 -13
  32. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/models/shellfoundry_settings.py +13 -10
  33. shellfoundry-1.2.24/shellfoundry/utilities/__init__.py +114 -0
  34. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/archive_creator.py +34 -34
  35. shellfoundry-1.2.24/shellfoundry/utilities/cloudshell_api/__init__.py +1 -0
  36. shellfoundry-1.2.24/shellfoundry/utilities/cloudshell_api/client_wrapper.py +62 -0
  37. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/config/config_context.py +44 -37
  38. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/config/config_file_creation.py +32 -27
  39. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/config/config_providers.py +50 -47
  40. shellfoundry-1.2.24/shellfoundry/utilities/config/config_record.py +24 -0
  41. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/config_reader.py +154 -107
  42. shellfoundry-1.2.24/shellfoundry/utilities/constants.py +37 -0
  43. shellfoundry-1.2.24/shellfoundry/utilities/cookiecutter_integration.py +67 -0
  44. shellfoundry-1.2.24/shellfoundry/utilities/driver_generator.py +112 -0
  45. shellfoundry-1.2.24/shellfoundry/utilities/filters.py +45 -0
  46. shellfoundry-1.2.24/shellfoundry/utilities/installer.py +33 -0
  47. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/modifiers/configuration/aggregated_modifiers.py +26 -20
  48. shellfoundry-1.2.24/shellfoundry/utilities/modifiers/configuration/password_modification.py +48 -0
  49. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/modifiers/definition/definition_modification.py +205 -197
  50. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/package_builder.py +152 -140
  51. shellfoundry-1.2.24/shellfoundry/utilities/python_dependencies_packager.py +53 -0
  52. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/repository_downloader.py +76 -70
  53. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/shell_config_reader.py +59 -50
  54. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/shell_datamodel_merger.py +44 -35
  55. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/shell_package.py +59 -73
  56. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/shell_package_builder.py +149 -123
  57. shellfoundry-1.2.24/shellfoundry/utilities/shell_package_installer.py +216 -0
  58. shellfoundry-1.2.24/shellfoundry/utilities/standards/__init__.py +3 -0
  59. shellfoundry-1.2.24/shellfoundry/utilities/standards/consts.py +2 -0
  60. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/standards/standards_retriever.py +32 -29
  61. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/standards/standards_versions.py +34 -31
  62. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/temp_dir_context.py +17 -18
  63. shellfoundry-1.2.24/shellfoundry/utilities/template_retriever.py +309 -0
  64. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/template_url.py +38 -36
  65. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/template_versions.py +47 -42
  66. shellfoundry-1.2.24/shellfoundry/utilities/validations/__init__.py +2 -0
  67. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/validations/shell_generation_validation.py +29 -30
  68. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/validations/shell_name_validations.py +10 -10
  69. shellfoundry-1.2.24/shellfoundry/utilities/version_utilities.py +19 -0
  70. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry.egg-info/PKG-INFO +401 -303
  71. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry.egg-info/SOURCES.txt +5 -53
  72. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry.egg-info/not-zip-safe +1 -1
  73. shellfoundry-1.2.24/shellfoundry.egg-info/requires.txt +13 -0
  74. shellfoundry-1.2.24/test_requirements.txt +8 -0
  75. shellfoundry-1.2.24/version.txt +1 -0
  76. shellfoundry-1.2.1/AUTHORS.rst +0 -10
  77. shellfoundry-1.2.1/MANIFEST.in +0 -14
  78. shellfoundry-1.2.1/requirements.txt +0 -12
  79. shellfoundry-1.2.1/setup.cfg +0 -14
  80. shellfoundry-1.2.1/setup.py +0 -41
  81. shellfoundry-1.2.1/shellfoundry/__init__.py +0 -9
  82. shellfoundry-1.2.1/shellfoundry/__main__.py +0 -18
  83. shellfoundry-1.2.1/shellfoundry/bootstrap.py +0 -129
  84. shellfoundry-1.2.1/shellfoundry/commands/dist_command.py +0 -16
  85. shellfoundry-1.2.1/shellfoundry/commands/generate_command.py +0 -38
  86. shellfoundry-1.2.1/shellfoundry/commands/install_command.py +0 -54
  87. shellfoundry-1.2.1/shellfoundry/commands/new_command.py +0 -286
  88. shellfoundry-1.2.1/shellfoundry/decorators/__init__.py +0 -1
  89. shellfoundry-1.2.1/shellfoundry/decorators/standards.py +0 -12
  90. shellfoundry-1.2.1/shellfoundry/decorators/version_check.py +0 -46
  91. shellfoundry-1.2.1/shellfoundry/models/install_config.py +0 -50
  92. shellfoundry-1.2.1/shellfoundry/utilities/__init__.py +0 -66
  93. shellfoundry-1.2.1/shellfoundry/utilities/cloudshell_api/__init__.py +0 -1
  94. shellfoundry-1.2.1/shellfoundry/utilities/cloudshell_api/client_wrapper.py +0 -47
  95. shellfoundry-1.2.1/shellfoundry/utilities/config/config_record.py +0 -26
  96. shellfoundry-1.2.1/shellfoundry/utilities/constants.py +0 -24
  97. shellfoundry-1.2.1/shellfoundry/utilities/cookiecutter_integration.py +0 -37
  98. shellfoundry-1.2.1/shellfoundry/utilities/driver_generator.py +0 -79
  99. shellfoundry-1.2.1/shellfoundry/utilities/filters.py +0 -33
  100. shellfoundry-1.2.1/shellfoundry/utilities/installer.py +0 -25
  101. shellfoundry-1.2.1/shellfoundry/utilities/modifiers/configuration/password_modification.py +0 -30
  102. shellfoundry-1.2.1/shellfoundry/utilities/python_dependencies_packager.py +0 -27
  103. shellfoundry-1.2.1/shellfoundry/utilities/shell_package_installer.py +0 -122
  104. shellfoundry-1.2.1/shellfoundry/utilities/standards/__init__.py +0 -3
  105. shellfoundry-1.2.1/shellfoundry/utilities/standards/consts.py +0 -2
  106. shellfoundry-1.2.1/shellfoundry/utilities/template_retriever.py +0 -189
  107. shellfoundry-1.2.1/shellfoundry/utilities/validations/__init__.py +0 -2
  108. shellfoundry-1.2.1/shellfoundry/utilities/version_utilities.py +0 -16
  109. shellfoundry-1.2.1/shellfoundry/version.py +0 -1
  110. shellfoundry-1.2.1/shellfoundry.egg-info/requires.txt +0 -12
  111. shellfoundry-1.2.1/test_requirements.txt +0 -5
  112. shellfoundry-1.2.1/tests/__init__.py +0 -1
  113. shellfoundry-1.2.1/tests/asserts.py +0 -10
  114. shellfoundry-1.2.1/tests/test_commands/__init__.py +0 -0
  115. shellfoundry-1.2.1/tests/test_commands/test_config_command.py +0 -219
  116. shellfoundry-1.2.1/tests/test_commands/test_dist_command.py +0 -37
  117. shellfoundry-1.2.1/tests/test_commands/test_extend_command.py +0 -169
  118. shellfoundry-1.2.1/tests/test_commands/test_generate_command.py +0 -60
  119. shellfoundry-1.2.1/tests/test_commands/test_install_command.py +0 -196
  120. shellfoundry-1.2.1/tests/test_commands/test_list_command.py +0 -505
  121. shellfoundry-1.2.1/tests/test_commands/test_new_command.py +0 -500
  122. shellfoundry-1.2.1/tests/test_commands/test_pack_command.py +0 -103
  123. shellfoundry-1.2.1/tests/test_commands/test_show_command.py +0 -172
  124. shellfoundry-1.2.1/tests/test_decorators/__init__.py +0 -0
  125. shellfoundry-1.2.1/tests/test_decorators/test_version_check.py +0 -73
  126. shellfoundry-1.2.1/tests/test_models/__init__.py +0 -0
  127. shellfoundry-1.2.1/tests/test_models/test_install_config.py +0 -37
  128. shellfoundry-1.2.1/tests/test_utilities/__init__.py +0 -0
  129. shellfoundry-1.2.1/tests/test_utilities/config/__init__.py +0 -0
  130. shellfoundry-1.2.1/tests/test_utilities/config/test_config_record.py +0 -104
  131. shellfoundry-1.2.1/tests/test_utilities/modifiers/__init__.py +0 -0
  132. shellfoundry-1.2.1/tests/test_utilities/modifiers/configuration/__init__.py +0 -0
  133. shellfoundry-1.2.1/tests/test_utilities/modifiers/configuration/test_password_modification.py +0 -13
  134. shellfoundry-1.2.1/tests/test_utilities/standards/__init__.py +0 -0
  135. shellfoundry-1.2.1/tests/test_utilities/standards/test_standards_retriever.py +0 -55
  136. shellfoundry-1.2.1/tests/test_utilities/standards/test_standards_versions.py +0 -65
  137. shellfoundry-1.2.1/tests/test_utilities/test_cloudshell_api/__init__.py +0 -0
  138. shellfoundry-1.2.1/tests/test_utilities/test_cloudshell_api/test_client_wrapper.py +0 -79
  139. shellfoundry-1.2.1/tests/test_utilities/test_config_reader.py +0 -138
  140. shellfoundry-1.2.1/tests/test_utilities/test_cookiecutter_integration.py +0 -49
  141. shellfoundry-1.2.1/tests/test_utilities/test_data/datamodel.xml +0 -459
  142. shellfoundry-1.2.1/tests/test_utilities/test_data/shell_model.xml +0 -17
  143. shellfoundry-1.2.1/tests/test_utilities/test_datamodel_merger.py +0 -300
  144. shellfoundry-1.2.1/tests/test_utilities/test_dependencies_packager.py +0 -76
  145. shellfoundry-1.2.1/tests/test_utilities/test_driver_generator.py +0 -123
  146. shellfoundry-1.2.1/tests/test_utilities/test_filters.py +0 -78
  147. shellfoundry-1.2.1/tests/test_utilities/test_package_builder.py +0 -312
  148. shellfoundry-1.2.1/tests/test_utilities/test_repo_downloader.py +0 -94
  149. shellfoundry-1.2.1/tests/test_utilities/test_shell_config_reader.py +0 -35
  150. shellfoundry-1.2.1/tests/test_utilities/test_shell_installer.py +0 -40
  151. shellfoundry-1.2.1/tests/test_utilities/test_shell_package.py +0 -106
  152. shellfoundry-1.2.1/tests/test_utilities/test_shell_package_builder.py +0 -258
  153. shellfoundry-1.2.1/tests/test_utilities/test_shell_package_installer.py +0 -247
  154. shellfoundry-1.2.1/tests/test_utilities/test_template_retriever.py +0 -192
  155. shellfoundry-1.2.1/tests/test_utilities/test_template_url.py +0 -25
  156. shellfoundry-1.2.1/tests/test_utilities/test_template_versions.py +0 -82
  157. shellfoundry-1.2.1/tests/test_utilities/test_validations/__init__.py +0 -0
  158. shellfoundry-1.2.1/tests/test_utilities/test_validations/test_shell_name_validations.py +0 -71
  159. shellfoundry-1.2.1/tests/test_utilities/test_version_utilities.py +0 -43
  160. shellfoundry-1.2.1/tests/test_utilities/test_versions.py +0 -73
  161. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/commands/__init__.py +0 -0
  162. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/models/__init__.py +0 -0
  163. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/config/__init__.py +0 -0
  164. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/modifiers/__init__.py +0 -0
  165. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/modifiers/configuration/__init__.py +0 -0
  166. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry/utilities/modifiers/definition/__init__.py +0 -0
  167. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry.egg-info/dependency_links.txt +0 -0
  168. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry.egg-info/entry_points.txt +0 -0
  169. {shellfoundry-1.2.1 → shellfoundry-1.2.24}/shellfoundry.egg-info/top_level.txt +0 -0
@@ -1,198 +1,293 @@
1
- =======
2
- History
3
- =======
4
-
5
- 1.2.1 (2018-08-13)
6
- ------------------
7
-
8
- * Added dynamical determination of minimal CloudShell version from templates
9
-
10
- 1.2.0 (2018-07-26)
11
- ------------------
12
-
13
- * Extended the "new" command behaviour for offline mode
14
- * Added verification is template and standard version are compatible
15
-
16
- 1.1.9 (2018-05-03)
17
- ------------------
18
-
19
- * Added offline mode functionality
20
-
21
- 1.1.8 (2018-04-23)
22
- ------------------
23
-
24
- * Fixed typo in pack command behaviour
25
- * Added new online template for Cloud Provider
26
-
27
- 1.1.7 (2018-04-03)
28
- ------------------
29
-
30
- * Shellfoundry will now pack deployment options if exists
31
- * Modified unpack method logic in extended command
32
-
33
- 1.1.6 (2018-03-27)
34
- ------------------
35
-
36
- * Added limitation installing a gen2 shell(regular/service) into a non global domain
37
-
38
- 1.1.5 (2018-03-01)
39
- ------------------
40
-
41
- * Added new online template for Traffic Generator Controller Service
42
-
43
- 1.1.4 (2018-02-21)
44
- ------------------
45
-
46
- * Added new online template for Traffic Generator Chassis 2 Generation
47
-
48
- 1.1.2 (2018-01-09)
49
- ------------------
50
-
51
- * Fixed extend command logic (unzip driver archive)
52
-
53
- 1.1.1 (2017-11-14)
54
- ------------------
55
-
56
- * Added new online templates
57
- * Added specific error message to Layer 1 Shells pack and install commands
58
-
59
- 1.1.0 (2017-10-30)
60
- ------------------
61
-
62
- * Added author field to shellfoundry configuration
63
- * Added extend command behavior
64
- * Added verification when upgrading an official shell to unofficial
65
-
66
- 1.0.4 (2017-08-28)
67
- ------------------
68
-
69
- * Fixed some inconsistencies between update and add shell specifically around the shell name
70
-
71
- 1.0.3 (2017-06-28)
72
- ------------------
73
-
74
- * list command aborts if there is a new major version on pypi
75
- * old shellfoundry versions are NOT supported anymore.
76
- Please use `pip install shellfoundry -U` in order to upgrade to the newest version
77
-
78
- 1.0.2 (2017-06-27)
79
- ------------------
80
-
81
- * new command aborts if there is a new major version on pypi
82
-
83
- 1.0.1 (2017-06-26)
84
- ------------------
85
-
86
- * new command now conforms to CloudShell naming rules
87
-
88
- 1.0.0 (2017-06-19)
89
- ------------------
90
-
91
- * Please upgrade to this version as from now on, older versions will be obsolete
92
- * list command will now show templates that are installable on your cloudshell
93
- * new command will now create the latest version of the template that match the standards installed on your cloudshell
94
- * When invoking new or list commands, there will be a notification in the case of a new shellfoundry version
95
-
96
- 0.2.7 (2017-05-16)
97
- ------------------
98
-
99
- * Shellfoundry will now pack categories.xml if exists
100
-
101
- 0.2.6 (2017-03-14)
102
- ------------------
103
-
104
- * Fixed some minor bugs
105
-
106
- 0.2.2 (2017-01-22)
107
- ------------------
108
-
109
- * gen2/resource is the now the default template for new command instead of gen1/resource
110
-
111
- 0.2.0 (2017-01-17)
112
- ------------------
113
-
114
- * List command filtering parameters have changed (legacy => gen1, tosca => gen2)
115
- * Added another filtering parameter --layer1
116
- * Minimum CloudShell version column appears on list command output table
117
- * gen2 is now the default view for list command
118
-
119
- 0.1.3 (2016-12-27)
120
- ------------------
121
-
122
- * shellfoundry config will now echo all default configuration if not override by user
123
-
124
- 0.1.2 (2016-12-26)
125
- ------------------
126
-
127
- * Config command will now encrypt password field
128
-
129
- 0.1.0 (2016-12-14)
130
- ------------------
131
-
132
- * Show command was added to view all available versions of a template
133
- * A new option was added to the 'new' command. Please welcome --version. It enables template versioning on shellfoundry.
134
-
135
- 0.0.44 (2016-12-12)
136
- -------------------
137
-
138
- * Fixed a bug in config command which caused shellfoundry to crash when config file has not existed
139
-
140
- 0.0.43 (2016-12-11)
141
- -------------------
142
-
143
- * List command is now able to filter results based on shell type (--tosca, --legacy, --all)
144
-
145
- 0.0.41 (2016-12-08)
146
- -------------------
147
-
148
- * Config command was added to allow setting configuration once for all shells in addition to local configuration
149
-
150
- 0.0.39 (2016-10-09)
151
- -------------------
152
-
153
- * Pack Shell icon if specified in shell-definition.yml file under metadata\template_icon for TOSCA based shells
154
-
155
- 0.0.38 (2016-09-28)
156
- -------------------
157
-
158
- * Update reference to cloudshell-rest-api 7.2.0.7 to use PUT method in update shell
159
-
160
- 0.0.35 (2016-09-15)
161
- -------------------
162
-
163
- * TOSCA support was added to pack and install commands
164
- * Generate command was added that generates driver data model in Python
165
-
166
- 0.0.32 (2016-08-10)
167
- -------------------
168
-
169
- * Pack command downloads dependencies into dist directory
170
- * Dependency for git was removed
171
- * Local shell templates are supported
172
- * Proxy support was added for access to github
173
-
174
- 0.0.31 (2016-08-04)
175
- -------------------
176
-
177
- * git prerequisite was removed. shellfoundry works without git being preinstalled
178
-
179
- 0.0.28 (2016-07-07)
180
- -------------------
181
-
182
- * Installation of package into CloudShell was fixed
183
-
184
-
185
- 0.0.26 (2016-06-23)
186
- -------------------
187
-
188
- * Images copied to the DataModel folder (Issue #21)
189
-
190
- 0.0.17 (2016-05-25)
191
- -------------------
192
-
193
- * Proper error message when install command fails in logging in into CloudShell
194
-
195
- 0.0.1 (2016-05-02)
196
- ------------------
197
-
198
- * First release on PyPI.
1
+ =======
2
+ History
3
+ =======
4
+ 1.2.22 (2022-09-05)
5
+ -------------------
6
+
7
+ * Set default Python version for new Shells to "3"
8
+
9
+
10
+ 1.2.21 (2022-03-31)
11
+ -------------------
12
+
13
+ * Fixed issue with list command in offline mode
14
+ * Fixed GH issue "Uninformative error message when configured domain is incorrect #254"
15
+ * Fixed GH issue "'Error' word repeats twice #251"
16
+
17
+ 1.2.20 (2021-08-19)
18
+ -------------------
19
+
20
+ * Fixed password decryption error
21
+
22
+ 1.2.19 (2021-07-27)
23
+ -------------------
24
+
25
+ * Fixed encoding issue
26
+
27
+ 1.2.18 (2021-04-14)
28
+ -------------------
29
+
30
+ * Fixed encoding issue
31
+
32
+ 1.2.17 (2020-02-12)
33
+ -------------------
34
+
35
+ * Fixed error with click and cookiecutter versions incompatibility
36
+ * Fixed multiple traceback issues
37
+
38
+ 1.2.16 (2020-01-02)
39
+ -------------------
40
+
41
+ * Fixed error with click and cookiecutter versions incompatibility
42
+ * Fixed multiple traceback issues
43
+
44
+
45
+ 1.2.13 (2019-10-18)
46
+ -------------------
47
+
48
+ * Fixed password modification error
49
+
50
+ 1.2.11 (2019-08-14)
51
+ -------------------
52
+
53
+ * Added Python 3 support
54
+
55
+ 1.2.10 (2019-04-22)
56
+ -------------------
57
+
58
+ * Added setuptools to requirements
59
+ * Changed setuptools import according to the latest version
60
+
61
+ 1.2.9 (2019-03-27)
62
+ ------------------
63
+
64
+ * Added possibility to download dependencies from local CS repository during 'shellfoundry dist' command
65
+
66
+ 1.2.8 (2019-03-05)
67
+ ------------------
68
+
69
+ * Fixed issue with wrong setuptools import
70
+
71
+ 1.2.7 (2019-02-12)
72
+ ------------------
73
+
74
+ * Fixed issue in "generate" command after renaming root folder
75
+
76
+ 1.2.6 (2019-01-30)
77
+ ------------------
78
+
79
+ * Added "get_templates" command
80
+ * Added "delete" command
81
+ * Removed driver zip-file after pack command
82
+ * Added generating shell documentation based on the template
83
+
84
+ 1.2.5 (2018-10-04)
85
+ ------------------
86
+
87
+ * Set strict python version
88
+
89
+ 1.2.4 (2018-09-26)
90
+ ------------------
91
+
92
+ * Removed unnecessary cloudshell-automation-api dependency from requirements
93
+ * Set static version for package click in requirements. click==6.7
94
+
95
+ 1.2.2 (2018-08-16)
96
+ ------------------
97
+
98
+ * Fixed bug in verification template and standards compatibility
99
+
100
+ 1.2.1 (2018-08-13)
101
+ ------------------
102
+
103
+ * Added dynamical determination of minimal CloudShell version from templates
104
+
105
+ 1.2.0 (2018-07-26)
106
+ ------------------
107
+
108
+ * Extended the "new" command behaviour for offline mode
109
+ * Added verification is template and standard version are compatible
110
+
111
+ 1.1.9 (2018-05-03)
112
+ ------------------
113
+
114
+ * Added offline mode functionality
115
+
116
+ 1.1.8 (2018-04-23)
117
+ ------------------
118
+
119
+ * Fixed typo in pack command behaviour
120
+ * Added new online template for Cloud Provider
121
+
122
+ 1.1.7 (2018-04-03)
123
+ ------------------
124
+
125
+ * Shellfoundry will now pack deployment options if exists
126
+ * Modified unpack method logic in extended command
127
+
128
+ 1.1.6 (2018-03-27)
129
+ ------------------
130
+
131
+ * Added limitation installing a gen2 shell(regular/service) into a non global domain
132
+
133
+ 1.1.5 (2018-03-01)
134
+ ------------------
135
+
136
+ * Added new online template for Traffic Generator Controller Service
137
+
138
+ 1.1.4 (2018-02-21)
139
+ ------------------
140
+
141
+ * Added new online template for Traffic Generator Chassis 2 Generation
142
+
143
+ 1.1.2 (2018-01-09)
144
+ ------------------
145
+
146
+ * Fixed extend command logic (unzip driver archive)
147
+
148
+ 1.1.1 (2017-11-14)
149
+ ------------------
150
+
151
+ * Added new online templates
152
+ * Added specific error message to Layer 1 Shells pack and install commands
153
+
154
+ 1.1.0 (2017-10-30)
155
+ ------------------
156
+
157
+ * Added author field to shellfoundry configuration
158
+ * Added extend command behavior
159
+ * Added verification when upgrading an official shell to unofficial
160
+
161
+ 1.0.4 (2017-08-28)
162
+ ------------------
163
+
164
+ * Fixed some inconsistencies between update and add shell specifically around the shell name
165
+
166
+ 1.0.3 (2017-06-28)
167
+ ------------------
168
+
169
+ * list command aborts if there is a new major version on pypi
170
+ * old shellfoundry versions are NOT supported anymore.
171
+ Please use `pip install shellfoundry -U` in order to upgrade to the newest version
172
+
173
+ 1.0.2 (2017-06-27)
174
+ ------------------
175
+
176
+ * new command aborts if there is a new major version on pypi
177
+
178
+ 1.0.1 (2017-06-26)
179
+ ------------------
180
+
181
+ * new command now conforms to CloudShell naming rules
182
+
183
+ 1.0.0 (2017-06-19)
184
+ ------------------
185
+
186
+ * Please upgrade to this version as from now on, older versions will be obsolete
187
+ * list command will now show templates that are installable on your cloudshell
188
+ * new command will now create the latest version of the template that match the standards installed on your cloudshell
189
+ * When invoking new or list commands, there will be a notification in the case of a new shellfoundry version
190
+
191
+ 0.2.7 (2017-05-16)
192
+ ------------------
193
+
194
+ * Shellfoundry will now pack categories.xml if exists
195
+
196
+ 0.2.6 (2017-03-14)
197
+ ------------------
198
+
199
+ * Fixed some minor bugs
200
+
201
+ 0.2.2 (2017-01-22)
202
+ ------------------
203
+
204
+ * gen2/resource is the now the default template for new command instead of gen1/resource
205
+
206
+ 0.2.0 (2017-01-17)
207
+ ------------------
208
+
209
+ * List command filtering parameters have changed (legacy => gen1, tosca => gen2)
210
+ * Added another filtering parameter --layer1
211
+ * Minimum CloudShell version column appears on list command output table
212
+ * gen2 is now the default view for list command
213
+
214
+ 0.1.3 (2016-12-27)
215
+ ------------------
216
+
217
+ * shellfoundry config will now echo all default configuration if not override by user
218
+
219
+ 0.1.2 (2016-12-26)
220
+ ------------------
221
+
222
+ * Config command will now encrypt password field
223
+
224
+ 0.1.0 (2016-12-14)
225
+ ------------------
226
+
227
+ * Show command was added to view all available versions of a template
228
+ * A new option was added to the 'new' command. Please welcome --version. It enables template versioning on shellfoundry.
229
+
230
+ 0.0.44 (2016-12-12)
231
+ -------------------
232
+
233
+ * Fixed a bug in config command which caused shellfoundry to crash when config file was missing
234
+
235
+ 0.0.43 (2016-12-11)
236
+ -------------------
237
+
238
+ * List command is now able to filter results based on shell type (--tosca, --legacy, --all)
239
+
240
+ 0.0.41 (2016-12-08)
241
+ -------------------
242
+
243
+ * Config command was added to allow setting configuration once for all shells in addition to local configuration
244
+
245
+ 0.0.39 (2016-10-09)
246
+ -------------------
247
+
248
+ * Pack Shell icon if specified in shell-definition.yml file under metadata\template_icon for TOSCA based shells
249
+
250
+ 0.0.38 (2016-09-28)
251
+ -------------------
252
+
253
+ * Update reference to cloudshell-rest-api 7.2.0.7 to use PUT method in update shell
254
+
255
+ 0.0.35 (2016-09-15)
256
+ -------------------
257
+
258
+ * TOSCA support was added to pack and install commands
259
+ * Generate command was added that generates driver data model in Python
260
+
261
+ 0.0.32 (2016-08-10)
262
+ -------------------
263
+
264
+ * Pack command downloads dependencies into dist directory
265
+ * Dependency for git was removed
266
+ * Local shell templates are supported
267
+ * Proxy support was added for access to github
268
+
269
+ 0.0.31 (2016-08-04)
270
+ -------------------
271
+
272
+ * git prerequisite was removed. shellfoundry works without git being preinstalled
273
+
274
+ 0.0.28 (2016-07-07)
275
+ -------------------
276
+
277
+ * Installation of package into CloudShell was fixed
278
+
279
+
280
+ 0.0.26 (2016-06-23)
281
+ -------------------
282
+
283
+ * Images copied to the DataModel folder (Issue #21)
284
+
285
+ 0.0.17 (2016-05-25)
286
+ -------------------
287
+
288
+ * Proper error message when install command fails in logging in into CloudShell
289
+
290
+ 0.0.1 (2016-05-02)
291
+ ------------------
292
+
293
+ * First release on PyPI.