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