shellfoundry 1.2.4__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.4 → shellfoundry-1.2.24}/HISTORY.rst +293 -209
  2. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/LICENSE +201 -201
  3. shellfoundry-1.2.24/MANIFEST.in +8 -0
  4. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/PKG-INFO +92 -5
  5. {shellfoundry-1.2.4 → 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.4 → 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.4 → 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.4 → shellfoundry-1.2.24}/shellfoundry/commands/list_command.py +110 -89
  21. shellfoundry-1.2.24/shellfoundry/commands/new_command.py +393 -0
  22. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/commands/pack_command.py +45 -40
  23. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/commands/show_command.py +55 -40
  24. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/data/standards.json +44 -44
  25. {shellfoundry-1.2.4 → 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.4 → 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.4 → shellfoundry-1.2.24}/shellfoundry/models/shell_template.py +22 -13
  32. {shellfoundry-1.2.4 → 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.4 → 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.4 → shellfoundry-1.2.24}/shellfoundry/utilities/config/config_context.py +44 -37
  38. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/utilities/config/config_file_creation.py +32 -27
  39. {shellfoundry-1.2.4 → 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.4 → 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.4 → 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.4 → shellfoundry-1.2.24}/shellfoundry/utilities/modifiers/definition/definition_modification.py +205 -197
  50. {shellfoundry-1.2.4 → 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.4 → shellfoundry-1.2.24}/shellfoundry/utilities/repository_downloader.py +76 -70
  53. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/utilities/shell_config_reader.py +59 -50
  54. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/utilities/shell_datamodel_merger.py +44 -35
  55. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/utilities/shell_package.py +59 -73
  56. {shellfoundry-1.2.4 → 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.4 → shellfoundry-1.2.24}/shellfoundry/utilities/standards/standards_retriever.py +32 -29
  61. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/utilities/standards/standards_versions.py +34 -31
  62. {shellfoundry-1.2.4 → 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.4 → shellfoundry-1.2.24}/shellfoundry/utilities/template_url.py +38 -36
  65. {shellfoundry-1.2.4 → 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.4 → shellfoundry-1.2.24}/shellfoundry/utilities/validations/shell_generation_validation.py +29 -30
  68. {shellfoundry-1.2.4 → 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.4 → shellfoundry-1.2.24}/shellfoundry.egg-info/PKG-INFO +92 -5
  71. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry.egg-info/SOURCES.txt +5 -53
  72. shellfoundry-1.2.24/shellfoundry.egg-info/requires.txt +13 -0
  73. shellfoundry-1.2.24/test_requirements.txt +8 -0
  74. shellfoundry-1.2.24/version.txt +1 -0
  75. shellfoundry-1.2.4/AUTHORS.rst +0 -10
  76. shellfoundry-1.2.4/MANIFEST.in +0 -14
  77. shellfoundry-1.2.4/requirements.txt +0 -11
  78. shellfoundry-1.2.4/setup.cfg +0 -14
  79. shellfoundry-1.2.4/setup.py +0 -41
  80. shellfoundry-1.2.4/shellfoundry/__init__.py +0 -9
  81. shellfoundry-1.2.4/shellfoundry/__main__.py +0 -18
  82. shellfoundry-1.2.4/shellfoundry/bootstrap.py +0 -129
  83. shellfoundry-1.2.4/shellfoundry/commands/dist_command.py +0 -16
  84. shellfoundry-1.2.4/shellfoundry/commands/generate_command.py +0 -38
  85. shellfoundry-1.2.4/shellfoundry/commands/install_command.py +0 -54
  86. shellfoundry-1.2.4/shellfoundry/commands/new_command.py +0 -286
  87. shellfoundry-1.2.4/shellfoundry/decorators/__init__.py +0 -1
  88. shellfoundry-1.2.4/shellfoundry/decorators/standards.py +0 -12
  89. shellfoundry-1.2.4/shellfoundry/decorators/version_check.py +0 -46
  90. shellfoundry-1.2.4/shellfoundry/models/install_config.py +0 -50
  91. shellfoundry-1.2.4/shellfoundry/utilities/__init__.py +0 -66
  92. shellfoundry-1.2.4/shellfoundry/utilities/cloudshell_api/__init__.py +0 -1
  93. shellfoundry-1.2.4/shellfoundry/utilities/cloudshell_api/client_wrapper.py +0 -47
  94. shellfoundry-1.2.4/shellfoundry/utilities/config/config_record.py +0 -26
  95. shellfoundry-1.2.4/shellfoundry/utilities/constants.py +0 -24
  96. shellfoundry-1.2.4/shellfoundry/utilities/cookiecutter_integration.py +0 -37
  97. shellfoundry-1.2.4/shellfoundry/utilities/driver_generator.py +0 -79
  98. shellfoundry-1.2.4/shellfoundry/utilities/filters.py +0 -33
  99. shellfoundry-1.2.4/shellfoundry/utilities/installer.py +0 -25
  100. shellfoundry-1.2.4/shellfoundry/utilities/modifiers/configuration/password_modification.py +0 -30
  101. shellfoundry-1.2.4/shellfoundry/utilities/python_dependencies_packager.py +0 -27
  102. shellfoundry-1.2.4/shellfoundry/utilities/shell_package_installer.py +0 -122
  103. shellfoundry-1.2.4/shellfoundry/utilities/standards/__init__.py +0 -3
  104. shellfoundry-1.2.4/shellfoundry/utilities/standards/consts.py +0 -2
  105. shellfoundry-1.2.4/shellfoundry/utilities/template_retriever.py +0 -189
  106. shellfoundry-1.2.4/shellfoundry/utilities/validations/__init__.py +0 -2
  107. shellfoundry-1.2.4/shellfoundry/utilities/version_utilities.py +0 -16
  108. shellfoundry-1.2.4/shellfoundry/version.py +0 -1
  109. shellfoundry-1.2.4/shellfoundry.egg-info/requires.txt +0 -11
  110. shellfoundry-1.2.4/test_requirements.txt +0 -5
  111. shellfoundry-1.2.4/tests/__init__.py +0 -1
  112. shellfoundry-1.2.4/tests/asserts.py +0 -10
  113. shellfoundry-1.2.4/tests/test_commands/__init__.py +0 -0
  114. shellfoundry-1.2.4/tests/test_commands/test_config_command.py +0 -219
  115. shellfoundry-1.2.4/tests/test_commands/test_dist_command.py +0 -37
  116. shellfoundry-1.2.4/tests/test_commands/test_extend_command.py +0 -169
  117. shellfoundry-1.2.4/tests/test_commands/test_generate_command.py +0 -60
  118. shellfoundry-1.2.4/tests/test_commands/test_install_command.py +0 -196
  119. shellfoundry-1.2.4/tests/test_commands/test_list_command.py +0 -505
  120. shellfoundry-1.2.4/tests/test_commands/test_new_command.py +0 -500
  121. shellfoundry-1.2.4/tests/test_commands/test_pack_command.py +0 -103
  122. shellfoundry-1.2.4/tests/test_commands/test_show_command.py +0 -172
  123. shellfoundry-1.2.4/tests/test_decorators/__init__.py +0 -0
  124. shellfoundry-1.2.4/tests/test_decorators/test_version_check.py +0 -73
  125. shellfoundry-1.2.4/tests/test_models/__init__.py +0 -0
  126. shellfoundry-1.2.4/tests/test_models/test_install_config.py +0 -37
  127. shellfoundry-1.2.4/tests/test_utilities/__init__.py +0 -0
  128. shellfoundry-1.2.4/tests/test_utilities/config/__init__.py +0 -0
  129. shellfoundry-1.2.4/tests/test_utilities/config/test_config_record.py +0 -104
  130. shellfoundry-1.2.4/tests/test_utilities/modifiers/__init__.py +0 -0
  131. shellfoundry-1.2.4/tests/test_utilities/modifiers/configuration/__init__.py +0 -0
  132. shellfoundry-1.2.4/tests/test_utilities/modifiers/configuration/test_password_modification.py +0 -13
  133. shellfoundry-1.2.4/tests/test_utilities/standards/__init__.py +0 -0
  134. shellfoundry-1.2.4/tests/test_utilities/standards/test_standards_retriever.py +0 -55
  135. shellfoundry-1.2.4/tests/test_utilities/standards/test_standards_versions.py +0 -65
  136. shellfoundry-1.2.4/tests/test_utilities/test_cloudshell_api/__init__.py +0 -0
  137. shellfoundry-1.2.4/tests/test_utilities/test_cloudshell_api/test_client_wrapper.py +0 -79
  138. shellfoundry-1.2.4/tests/test_utilities/test_config_reader.py +0 -138
  139. shellfoundry-1.2.4/tests/test_utilities/test_cookiecutter_integration.py +0 -49
  140. shellfoundry-1.2.4/tests/test_utilities/test_data/datamodel.xml +0 -459
  141. shellfoundry-1.2.4/tests/test_utilities/test_data/shell_model.xml +0 -17
  142. shellfoundry-1.2.4/tests/test_utilities/test_datamodel_merger.py +0 -300
  143. shellfoundry-1.2.4/tests/test_utilities/test_dependencies_packager.py +0 -76
  144. shellfoundry-1.2.4/tests/test_utilities/test_driver_generator.py +0 -123
  145. shellfoundry-1.2.4/tests/test_utilities/test_filters.py +0 -78
  146. shellfoundry-1.2.4/tests/test_utilities/test_package_builder.py +0 -312
  147. shellfoundry-1.2.4/tests/test_utilities/test_repo_downloader.py +0 -94
  148. shellfoundry-1.2.4/tests/test_utilities/test_shell_config_reader.py +0 -35
  149. shellfoundry-1.2.4/tests/test_utilities/test_shell_installer.py +0 -40
  150. shellfoundry-1.2.4/tests/test_utilities/test_shell_package.py +0 -106
  151. shellfoundry-1.2.4/tests/test_utilities/test_shell_package_builder.py +0 -258
  152. shellfoundry-1.2.4/tests/test_utilities/test_shell_package_installer.py +0 -247
  153. shellfoundry-1.2.4/tests/test_utilities/test_template_retriever.py +0 -192
  154. shellfoundry-1.2.4/tests/test_utilities/test_template_url.py +0 -25
  155. shellfoundry-1.2.4/tests/test_utilities/test_template_versions.py +0 -82
  156. shellfoundry-1.2.4/tests/test_utilities/test_validations/__init__.py +0 -0
  157. shellfoundry-1.2.4/tests/test_utilities/test_validations/test_shell_name_validations.py +0 -71
  158. shellfoundry-1.2.4/tests/test_utilities/test_version_utilities.py +0 -43
  159. shellfoundry-1.2.4/tests/test_utilities/test_versions.py +0 -73
  160. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/commands/__init__.py +0 -0
  161. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/models/__init__.py +0 -0
  162. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/utilities/config/__init__.py +0 -0
  163. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/utilities/modifiers/__init__.py +0 -0
  164. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/utilities/modifiers/configuration/__init__.py +0 -0
  165. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry/utilities/modifiers/definition/__init__.py +0 -0
  166. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry.egg-info/dependency_links.txt +0 -0
  167. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry.egg-info/entry_points.txt +0 -0
  168. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry.egg-info/not-zip-safe +0 -0
  169. {shellfoundry-1.2.4 → shellfoundry-1.2.24}/shellfoundry.egg-info/top_level.txt +0 -0
@@ -1,209 +1,293 @@
1
- =======
2
- History
3
- =======
4
-
5
- 1.2.4 (2018-09-26)
6
- ------------------
7
-
8
- * Removed unnecessary cloudshell-automation-api dependency from requirements
9
- * Set static version for package click in requirements. click==6.7
10
-
11
- 1.2.2 (2018-08-16)
12
- ------------------
13
-
14
- * Fixed bug in verification template and standards compatibility
15
-
16
- 1.2.1 (2018-08-13)
17
- ------------------
18
-
19
- * Added dynamical determination of minimal CloudShell version from templates
20
-
21
- 1.2.0 (2018-07-26)
22
- ------------------
23
-
24
- * Extended the "new" command behaviour for offline mode
25
- * Added verification is template and standard version are compatible
26
-
27
- 1.1.9 (2018-05-03)
28
- ------------------
29
-
30
- * Added offline mode functionality
31
-
32
- 1.1.8 (2018-04-23)
33
- ------------------
34
-
35
- * Fixed typo in pack command behaviour
36
- * Added new online template for Cloud Provider
37
-
38
- 1.1.7 (2018-04-03)
39
- ------------------
40
-
41
- * Shellfoundry will now pack deployment options if exists
42
- * Modified unpack method logic in extended command
43
-
44
- 1.1.6 (2018-03-27)
45
- ------------------
46
-
47
- * Added limitation installing a gen2 shell(regular/service) into a non global domain
48
-
49
- 1.1.5 (2018-03-01)
50
- ------------------
51
-
52
- * Added new online template for Traffic Generator Controller Service
53
-
54
- 1.1.4 (2018-02-21)
55
- ------------------
56
-
57
- * Added new online template for Traffic Generator Chassis 2 Generation
58
-
59
- 1.1.2 (2018-01-09)
60
- ------------------
61
-
62
- * Fixed extend command logic (unzip driver archive)
63
-
64
- 1.1.1 (2017-11-14)
65
- ------------------
66
-
67
- * Added new online templates
68
- * Added specific error message to Layer 1 Shells pack and install commands
69
-
70
- 1.1.0 (2017-10-30)
71
- ------------------
72
-
73
- * Added author field to shellfoundry configuration
74
- * Added extend command behavior
75
- * Added verification when upgrading an official shell to unofficial
76
-
77
- 1.0.4 (2017-08-28)
78
- ------------------
79
-
80
- * Fixed some inconsistencies between update and add shell specifically around the shell name
81
-
82
- 1.0.3 (2017-06-28)
83
- ------------------
84
-
85
- * list command aborts if there is a new major version on pypi
86
- * old shellfoundry versions are NOT supported anymore.
87
- Please use `pip install shellfoundry -U` in order to upgrade to the newest version
88
-
89
- 1.0.2 (2017-06-27)
90
- ------------------
91
-
92
- * new command aborts if there is a new major version on pypi
93
-
94
- 1.0.1 (2017-06-26)
95
- ------------------
96
-
97
- * new command now conforms to CloudShell naming rules
98
-
99
- 1.0.0 (2017-06-19)
100
- ------------------
101
-
102
- * Please upgrade to this version as from now on, older versions will be obsolete
103
- * list command will now show templates that are installable on your cloudshell
104
- * new command will now create the latest version of the template that match the standards installed on your cloudshell
105
- * When invoking new or list commands, there will be a notification in the case of a new shellfoundry version
106
-
107
- 0.2.7 (2017-05-16)
108
- ------------------
109
-
110
- * Shellfoundry will now pack categories.xml if exists
111
-
112
- 0.2.6 (2017-03-14)
113
- ------------------
114
-
115
- * Fixed some minor bugs
116
-
117
- 0.2.2 (2017-01-22)
118
- ------------------
119
-
120
- * gen2/resource is the now the default template for new command instead of gen1/resource
121
-
122
- 0.2.0 (2017-01-17)
123
- ------------------
124
-
125
- * List command filtering parameters have changed (legacy => gen1, tosca => gen2)
126
- * Added another filtering parameter --layer1
127
- * Minimum CloudShell version column appears on list command output table
128
- * gen2 is now the default view for list command
129
-
130
- 0.1.3 (2016-12-27)
131
- ------------------
132
-
133
- * shellfoundry config will now echo all default configuration if not override by user
134
-
135
- 0.1.2 (2016-12-26)
136
- ------------------
137
-
138
- * Config command will now encrypt password field
139
-
140
- 0.1.0 (2016-12-14)
141
- ------------------
142
-
143
- * Show command was added to view all available versions of a template
144
- * A new option was added to the 'new' command. Please welcome --version. It enables template versioning on shellfoundry.
145
-
146
- 0.0.44 (2016-12-12)
147
- -------------------
148
-
149
- * Fixed a bug in config command which caused shellfoundry to crash when config file has not existed
150
-
151
- 0.0.43 (2016-12-11)
152
- -------------------
153
-
154
- * List command is now able to filter results based on shell type (--tosca, --legacy, --all)
155
-
156
- 0.0.41 (2016-12-08)
157
- -------------------
158
-
159
- * Config command was added to allow setting configuration once for all shells in addition to local configuration
160
-
161
- 0.0.39 (2016-10-09)
162
- -------------------
163
-
164
- * Pack Shell icon if specified in shell-definition.yml file under metadata\template_icon for TOSCA based shells
165
-
166
- 0.0.38 (2016-09-28)
167
- -------------------
168
-
169
- * Update reference to cloudshell-rest-api 7.2.0.7 to use PUT method in update shell
170
-
171
- 0.0.35 (2016-09-15)
172
- -------------------
173
-
174
- * TOSCA support was added to pack and install commands
175
- * Generate command was added that generates driver data model in Python
176
-
177
- 0.0.32 (2016-08-10)
178
- -------------------
179
-
180
- * Pack command downloads dependencies into dist directory
181
- * Dependency for git was removed
182
- * Local shell templates are supported
183
- * Proxy support was added for access to github
184
-
185
- 0.0.31 (2016-08-04)
186
- -------------------
187
-
188
- * git prerequisite was removed. shellfoundry works without git being preinstalled
189
-
190
- 0.0.28 (2016-07-07)
191
- -------------------
192
-
193
- * Installation of package into CloudShell was fixed
194
-
195
-
196
- 0.0.26 (2016-06-23)
197
- -------------------
198
-
199
- * Images copied to the DataModel folder (Issue #21)
200
-
201
- 0.0.17 (2016-05-25)
202
- -------------------
203
-
204
- * Proper error message when install command fails in logging in into CloudShell
205
-
206
- 0.0.1 (2016-05-02)
207
- ------------------
208
-
209
- * 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.