@geode/opengeodeweb-back 0.0.0-semantically-released

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. package/.gitattributes +2 -0
  2. package/.github/workflows/Branch-protection.yml +11 -0
  3. package/.github/workflows/CD.yml +53 -0
  4. package/.github/workflows/prepare_pr.yml +11 -0
  5. package/.pylintrc +536 -0
  6. package/.pypirc +6 -0
  7. package/CHANGELOG.md +1223 -0
  8. package/COPYLEFT +4 -0
  9. package/LICENSE +21 -0
  10. package/README.md +32 -0
  11. package/app.py +54 -0
  12. package/config.py +29 -0
  13. package/generate_schemas.js +82 -0
  14. package/package.json +31 -0
  15. package/pyproject.toml +48 -0
  16. package/requirements.in +15 -0
  17. package/requirements.txt +116 -0
  18. package/src/OpenGeodeWeb_Back.egg-info/PKG-INFO +74 -0
  19. package/src/OpenGeodeWeb_Back.egg-info/SOURCES.txt +22 -0
  20. package/src/OpenGeodeWeb_Back.egg-info/dependency_links.txt +1 -0
  21. package/src/OpenGeodeWeb_Back.egg-info/requires.txt +28 -0
  22. package/src/OpenGeodeWeb_Back.egg-info/top_level.txt +1 -0
  23. package/src/opengeodeweb_back/__init__.py +0 -0
  24. package/src/opengeodeweb_back/geode_functions.py +330 -0
  25. package/src/opengeodeweb_back/geode_objects.py +429 -0
  26. package/src/opengeodeweb_back/inspector_functions.py +483 -0
  27. package/src/opengeodeweb_back/routes/blueprint_routes.py +178 -0
  28. package/src/opengeodeweb_back/routes/schemas/allowed_files.json +20 -0
  29. package/src/opengeodeweb_back/routes/schemas/allowed_objects.json +16 -0
  30. package/src/opengeodeweb_back/routes/schemas/geode_objects_and_output_extensions.json +21 -0
  31. package/src/opengeodeweb_back/routes/schemas/geographic_coordinate_systems.json +17 -0
  32. package/src/opengeodeweb_back/routes/schemas/missing_files.json +16 -0
  33. package/src/opengeodeweb_back/routes/schemas/upload_file.json +15 -0
  34. package/tests/__init__.py +0 -0
  35. package/tests/conftest.py +12 -0
  36. package/tests/corbi.og_brep +0 -0
  37. package/tests/data/test.bmp +0 -0
  38. package/tests/data/test.dat +11 -0
  39. package/tests/data/test.dev +121 -0
  40. package/tests/data/test.dxf +4184 -0
  41. package/tests/data/test.grdecl +2555 -0
  42. package/tests/data/test.jpg +0 -0
  43. package/tests/data/test.lso +3637 -0
  44. package/tests/data/test.ml +78770 -0
  45. package/tests/data/test.msh +800 -0
  46. package/tests/data/test.obj +24 -0
  47. package/tests/data/test.og_brep +0 -0
  48. package/tests/data/test.og_edc2d +0 -0
  49. package/tests/data/test.og_edc3d +0 -0
  50. package/tests/data/test.og_grp +0 -0
  51. package/tests/data/test.og_hso3d +0 -0
  52. package/tests/data/test.og_img2d +3 -0
  53. package/tests/data/test.og_img3d +0 -0
  54. package/tests/data/test.og_lrgd2d +0 -0
  55. package/tests/data/test.og_lrgd3d +0 -0
  56. package/tests/data/test.og_psf2d +0 -0
  57. package/tests/data/test.og_psf3d +0 -0
  58. package/tests/data/test.og_pso3d +0 -0
  59. package/tests/data/test.og_pts2d +0 -0
  60. package/tests/data/test.og_pts3d +0 -0
  61. package/tests/data/test.og_rgd2d +0 -0
  62. package/tests/data/test.og_rgd3d +0 -0
  63. package/tests/data/test.og_sctn +0 -0
  64. package/tests/data/test.og_strm +0 -0
  65. package/tests/data/test.og_tsf2d +0 -0
  66. package/tests/data/test.og_tsf3d +0 -0
  67. package/tests/data/test.og_tso3d +0 -0
  68. package/tests/data/test.og_vts +0 -0
  69. package/tests/data/test.og_xsctn +0 -0
  70. package/tests/data/test.ply +20 -0
  71. package/tests/data/test.png +0 -0
  72. package/tests/data/test.shp +0 -0
  73. package/tests/data/test.shx +0 -0
  74. package/tests/data/test.shz +0 -0
  75. package/tests/data/test.smesh +2049 -0
  76. package/tests/data/test.stl +7191 -0
  77. package/tests/data/test.svg +144 -0
  78. package/tests/data/test.ts +266 -0
  79. package/tests/data/test.txt +11 -0
  80. package/tests/data/test.vo +49 -0
  81. package/tests/data/test.vti +3 -0
  82. package/tests/data/test.vtp +212 -0
  83. package/tests/data/test.vtu +3585 -0
  84. package/tests/data/test.wl +76 -0
  85. package/tests/data/test__ascii@@ +1003 -0
  86. package/tests/test_functions.py +291 -0
  87. package/tests/test_routes.py +131 -0
  88. package/tmp.3491.json +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1223 @@
1
+ # CHANGELOG
2
+
3
+
4
+
5
+ ## v3.3.0-rc.13 (2024-01-19)
6
+
7
+ ### Fix
8
+
9
+ * fix(cd): registry-url ([`b48992d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b48992d0a3bb877960a9e55454d1ba25b760f4ff))
10
+
11
+
12
+ ## v3.3.0-rc.12 (2024-01-19)
13
+
14
+ ### Fix
15
+
16
+ * fix(cd): cd update ([`960653d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/960653d1d8e1e7835a7ae146ae71ffd174bd7b96))
17
+
18
+ ### Unknown
19
+
20
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`96b8247`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/96b8247df147e08dd50de986cedc0296598cc53f))
21
+
22
+
23
+ ## v3.3.0-rc.11 (2024-01-19)
24
+
25
+ ### Feature
26
+
27
+ * feat(test): test update script ([`c2c3b39`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c2c3b395cc0ac976daeddf2a4ec63e5313d505a8))
28
+
29
+ * feat(test): test update script ([`e19d592`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e19d592ef8b5ba3d77cee33e3862a71d523ee6a7))
30
+
31
+
32
+ ## v3.3.0-rc.10 (2024-01-18)
33
+
34
+ ### Fix
35
+
36
+ * fix(Actions): test folders ([`88f0b30`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/88f0b3063d850e8f37214e4750b7eee734469251))
37
+
38
+
39
+ ## v3.3.0-rc.9 (2024-01-18)
40
+
41
+ ### Fix
42
+
43
+ * fix(Actions): update working directory ([`3d59b58`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3d59b586b9730a5f144b19885aeeca656dfe0488))
44
+
45
+
46
+ ## v3.3.0-rc.8 (2024-01-18)
47
+
48
+ ### Fix
49
+
50
+ * fix(GH action): log directoryPath ([`10f1eae`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/10f1eae68802d89dd6f6c7441f52a2b904778fc7))
51
+
52
+ ### Unknown
53
+
54
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`1d25412`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1d25412394b71c5ddb513871aded5ad8b3246b97))
55
+
56
+
57
+ ## v3.3.0-rc.7 (2024-01-18)
58
+
59
+ ### Fix
60
+
61
+ * fix(GH action): explicit directory ([`43d510b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/43d510b9639d5db438e2f4a1535fb735ef84dae0))
62
+
63
+
64
+ ## v3.3.0-rc.6 (2024-01-18)
65
+
66
+ ### Feature
67
+
68
+ * feat(GH action): test path.normalize ([`f4cbe47`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f4cbe47e3dc84ff7e47a276abd6d28580af34406))
69
+
70
+
71
+ ## v3.3.0-rc.5 (2024-01-18)
72
+
73
+ ### Feature
74
+
75
+ * feat(test): test npm i glob ([`368c1da`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/368c1da000bc0d0373b8c129dcf7b25b36930191))
76
+
77
+ ### Unknown
78
+
79
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`c68c775`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c68c775b4eb1e3bd475368fcdb0936db64efda83))
80
+
81
+
82
+ ## v3.3.0-rc.4 (2024-01-18)
83
+
84
+ ### Feature
85
+
86
+ * feat(test): test npm i ([`5f40b93`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5f40b93bb704b8a360477b81f16cad3c830b4f07))
87
+
88
+ ### Unknown
89
+
90
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`74d430a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/74d430a30805ff54c051105d1d783631398e6125))
91
+
92
+
93
+ ## v3.3.0-rc.3 (2024-01-18)
94
+
95
+ ### Feature
96
+
97
+ * feat(test): test commit ([`778ced1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/778ced16359c2584fae7f3873683d926428e50dc))
98
+
99
+ ### Unknown
100
+
101
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`c37620c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c37620cf81bdc01d47ea53433777902dc1d1289c))
102
+
103
+
104
+ ## v3.3.0-rc.2 (2024-01-18)
105
+
106
+ ### Feature
107
+
108
+ * feat(test): test commit ([`5c258e7`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5c258e7aafee1842c77ef93035085d56834f6300))
109
+
110
+ ### Unknown
111
+
112
+ * Merge pull request #63 from Geode-solutions/feat/schemas
113
+
114
+ Feat/schemas ([`bf4274f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/bf4274fdca8480ee6b85ed4186a4cb29170e28cd))
115
+
116
+ * Merge branch 'next' into feat/schemas ([`51189d6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/51189d65fa6c25a8aa5600ed4b9267be77ff86fe))
117
+
118
+ * update pr ([`62f0a15`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/62f0a15e880719482056675c9c30f0db17148ab3))
119
+
120
+
121
+ ## v3.3.0-rc.1 (2024-01-17)
122
+
123
+ ### Chore
124
+
125
+ * chore(licence): happy new year 2024 ([`da50872`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/da50872cdacaf45eb3560d8c60af23306402e01b))
126
+
127
+ ### Feature
128
+
129
+ * feat(CD): dynamic version from semantic release
130
+ change starting directory ([`8772780`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/877278047943d442ab7cd45c60ef81bb7b9d4f5c))
131
+
132
+ * feat(geode_objects): Add LightRegularGrid 2 & 3D ([`be319e4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/be319e4bbcf09d3fe9fe271e8cced2c81d23557f))
133
+
134
+ ### Unknown
135
+
136
+ * Merge pull request #62 from Geode-solutions/feat/LightRegularGrid
137
+
138
+ Feat/LightRegularGrid ([`8d129aa`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8d129aa386fbf6e6a7162637b9b975c6ab22c4ae))
139
+
140
+ * upgrade dependencies, tests passing ([`cc9a25d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cc9a25ddd158dbcf9f3e61af66aced5064a9eee2))
141
+
142
+ * fix ([`fe53dc6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/fe53dc6627b5008d054384718866122c3704d9a3))
143
+
144
+ * indentation ([`418ab72`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/418ab72f7f6b79046ed308336d691650c4a30dc0))
145
+
146
+ * test run ([`f6bd84a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f6bd84ae44d84eeaf9c278b38753d3694771f0dc))
147
+
148
+ * test ([`9967c01`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9967c0192cabdd563deb84f2936f63e9d5047abb))
149
+
150
+ * test ([`cc56c36`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cc56c369cb30b25fbd30ea5f64e9b834b62885da))
151
+
152
+ * fix CD ([`69713e1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/69713e1248abba4d253f225edf8956990a8b030a))
153
+
154
+ * test dynamic version ([`b43474c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b43474cc8e2848d8d99f4d19f668202282e9fa5a))
155
+
156
+ * test ([`66e0232`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/66e023227169f32e9732ff0ff49b1d31a4a4e480))
157
+
158
+ * version 0.0.2 ([`9ea179d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9ea179d152e3a6d08781341afcc66b0cb036951f))
159
+
160
+ * test ([`6e2ce52`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6e2ce528132646b4fda49aad2fd956e4e85ad52e))
161
+
162
+ * test ([`3d991b5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3d991b59244650db90b66f3d22ccf5d885a7bc2a))
163
+
164
+ * test npm setup ([`4883f3f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4883f3f8ac385897fe4e7d390b5b2fe2a112ac85))
165
+
166
+ * package.json ([`20a3579`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/20a35794862f8884395d4fe24e1ba531aeb9b441))
167
+
168
+ * generate_schemas.js ([`a2b2c82`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a2b2c82b6c057bea3593f2f759067030f6a19ea7))
169
+
170
+ * "is_viewable": True ([`b6a20e5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b6a20e54147ed8307d95ab50ee21974d9805e1d2))
171
+
172
+ * fix PointSet2D keys ([`2c7fee0`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/2c7fee0cb0e2210ef00d678aacf95e94661fbf4f))
173
+
174
+ * add back PointSet2D ([`ad304a9`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ad304a91119f3ca963944cd2d425e25f3b52a99f))
175
+
176
+ * add test data ([`e647f36`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e647f36546150dd8502174420cb4423cb44ac296))
177
+
178
+ * update dependencies ([`8f2f92f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8f2f92f1c64a8c32438cca48d25066bf9870f63b))
179
+
180
+ * ([`b8358b2`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b8358b2516bf2ab5626ac3ba5ac796948c17b7f2))
181
+
182
+ * Merge pull request #61 from Geode-solutions/next
183
+
184
+ Next ([`e6deea0`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e6deea04cb41dc3cc444bfbd78b3cbbb45c50091))
185
+
186
+ * Merge pull request #60 from Geode-solutions/chore/update_licence
187
+
188
+ chore(licence): happy new year 2024 ([`3969dda`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3969dda9f1abc737c6f56bcc93999f18aa93ec12))
189
+
190
+ * ([`3368611`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3368611b58a85683a769cae58b0cc0d51d178cee))
191
+
192
+
193
+ ## v3.2.0 (2023-12-20)
194
+
195
+ ### Unknown
196
+
197
+ * Merge pull request #59 from Geode-solutions/next
198
+
199
+ Next ([`a14034e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a14034e41ffb8aab171332c9cd957bff45e03e44))
200
+
201
+
202
+ ## v3.2.0-rc.10 (2023-12-20)
203
+
204
+ ### Fix
205
+
206
+ * fix(Package): update pyproject.toml ([`8982a04`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8982a0450dc3324f229cc039eaa2bd655675675a))
207
+
208
+ * fix(Package): remove MANIFEST.in & namespace ([`f7981cb`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f7981cb860cf244c0e0606c3cb60621bc5d34c35))
209
+
210
+ ### Unknown
211
+
212
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`ccab4e0`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ccab4e0ce355e723efea351ec742aaa3363cac27))
213
+
214
+
215
+ ## v3.2.0-rc.9 (2023-12-20)
216
+
217
+ ### Fix
218
+
219
+ * fix(Package): test MANIFEST.in ([`0d36b17`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/0d36b175db851ff5a9b8bee96ca1329d3e0c38fc))
220
+
221
+ ### Unknown
222
+
223
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`2ee5caf`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/2ee5cafb5288faebfb7698f90c7d86481d7bc728))
224
+
225
+
226
+ ## v3.2.0-rc.8 (2023-12-20)
227
+
228
+ ### Fix
229
+
230
+ * fix(Package): revert pyproject.toml ([`982b1a7`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/982b1a78ae352037e3002c31883b38178f297c75))
231
+
232
+
233
+ ## v3.2.0-rc.7 (2023-12-20)
234
+
235
+ ### Fix
236
+
237
+ * fix(Package): test namespace
238
+ remove MANIFEST.in ([`798ec45`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/798ec450719f3cf3defa151a00beaffd177adf7d))
239
+
240
+
241
+ ## v3.2.0-rc.6 (2023-12-20)
242
+
243
+ ### Fix
244
+
245
+ * fix(Package): include schemas folder ([`3197598`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3197598f4904e6778d634654ab16848ae53c5aa4))
246
+
247
+
248
+ ## v3.2.0-rc.5 (2023-12-20)
249
+
250
+ ### Fix
251
+
252
+ * fix(Package): MANIFEST.in ([`4dfafaf`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4dfafafbdca4e01a74384a5ca94fc07064a672e2))
253
+
254
+
255
+ ## v3.2.0-rc.4 (2023-12-20)
256
+
257
+ ### Fix
258
+
259
+ * fix(Package): upload json ([`9b78361`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9b78361f66fc5a43e01daa6424af0bf8d42ddebc))
260
+
261
+ ### Unknown
262
+
263
+ * test ([`98e3457`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/98e3457c3f1f2c33499169bb777220562ebd8fb6))
264
+
265
+ * fix path ([`3d1076b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3d1076b0334f71ceda7fe03ef3f6171da585bdf5))
266
+
267
+ * test folder path ([`f357f18`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f357f188375048f6e4a18a9df02bbb0bd396eafe))
268
+
269
+
270
+ ## v3.2.0-rc.3 (2023-12-20)
271
+
272
+ ### Fix
273
+
274
+ * fix(Package): include json ([`d6c5e15`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d6c5e15f77f0a6bcb279d84d23afa0bf9fc72d75))
275
+
276
+ ### Unknown
277
+
278
+ * Merge pull request #58 from Geode-solutions/include-json
279
+
280
+ fix(Package): include json ([`94d1d6d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/94d1d6d86a50d1df751b841176cba9b4fe8ba525))
281
+
282
+
283
+ ## v3.2.0-rc.2 (2023-12-20)
284
+
285
+ ### Fix
286
+
287
+ * fix(json files): explicitly export json files ([`678269e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/678269e9a5fcf9d8737bc00438f38f07d3811807))
288
+
289
+ ### Unknown
290
+
291
+ * Merge pull request #57 from Geode-solutions/fix/json_imports
292
+
293
+ fix(json files): explicitly export json files ([`9b754cd`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9b754cd76ce74758f037d9f52ad94eeb44094810))
294
+
295
+
296
+ ## v3.2.0-rc.1 (2023-12-20)
297
+
298
+ ### Fix
299
+
300
+ * fix(tests): update failing tests ([`e70acfe`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e70acfeda21f2fffc61700f83f34ca7f81829ae0))
301
+
302
+ ### Unknown
303
+
304
+ * Merge pull request #50 from Geode-solutions/feat/blueprint_routes
305
+
306
+ Feat/blueprint_routes ([`925db1b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/925db1b0f6f09011625bdc8a095723008e12ff14))
307
+
308
+ * update gitignore ([`51c765e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/51c765e88767aaec216da2f6b67e0016e7fa63bd))
309
+
310
+ * Merge branch 'feat/blueprint_routes' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into feat/blueprint_routes ([`95be868`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/95be868f13b6dae9dee5d0d5d400f4ca7e5c534d))
311
+
312
+ * is_loadable ([`bfc6ba5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/bfc6ba58dc9f4f12e8d58898036faf3f465ff181))
313
+
314
+ * pull from website-back ([`fd33bc9`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/fd33bc9502f48ebfe7aa5e8a4ab8815b87a3ddb8))
315
+
316
+ * Merge branch 'master' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into feat/blueprint_routes ([`57ca416`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/57ca41631eb06eb84c612ae5c47c76467e1af809))
317
+
318
+ * ([`945e092`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/945e092d88f82c6aa18d99caeb2661ac8135ee76))
319
+
320
+
321
+ ## v3.1.0 (2023-12-19)
322
+
323
+ ### Unknown
324
+
325
+ * Merge pull request #56 from Geode-solutions/next
326
+
327
+ Next ([`645008b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/645008ba5c8c74cefb0923ff8cf8c2647e4dfec1))
328
+
329
+ * Merge branch 'master' into next ([`4b640c3`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4b640c31c59205d744ef3d19ae647277b91f9413))
330
+
331
+
332
+ ## v3.0.0-rc.12 (2023-12-19)
333
+
334
+ ### Fix
335
+
336
+ * fix(workflows): refs/heads/master ([`a39a402`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a39a4022e01c5ee8583565e9f901ec939381a86e))
337
+
338
+
339
+ ## v3.0.0-rc.11 (2023-12-18)
340
+
341
+ ### Feature
342
+
343
+ * feat(functions): filter_geode_objects ([`d224d8f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d224d8f99b79abeee8fa49640c6b52a0395c7eb5))
344
+
345
+ * feat(list_geode_objects): test is_loadable
346
+
347
+ BREAKING CHANGE : arg extension -> file_absolute_path ([`241f60d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/241f60d7a3b49661a31f7bbd3f816215881ba9a1))
348
+
349
+ ### Unknown
350
+
351
+ * Merge pull request #55 from Geode-solutions/feat/is_loadable
352
+
353
+ Feat/is loadable ([`7cc9d3b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7cc9d3b640c88e105d3c4967df1a6aa7f5f24a5b))
354
+
355
+ * Merge branch 'next' into feat/is_loadable ([`1c1574d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1c1574de89b61efe1bea04ddf2f2ee964a471de4))
356
+
357
+ * Empty commit test ([`7ecca76`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7ecca76f8257db3cc7c475926d99893012de2439))
358
+
359
+
360
+ ## v3.0.0 (2023-12-15)
361
+
362
+ ### Unknown
363
+
364
+ * Merge pull request #53 from Geode-solutions/next
365
+
366
+ Next ([`f8b8784`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f8b8784e0dccae63e66f1da0b306d5e6386069ce))
367
+
368
+
369
+ ## v3.0.0-rc.10 (2023-12-15)
370
+
371
+ ### Fix
372
+
373
+ * fix(dependencies): update ecosystem ([`cbed29d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cbed29dbf0e195f23ef89f7798a155d2c33a56fe))
374
+
375
+ ### Unknown
376
+
377
+ * Merge pull request #52 from Geode-solutions/chore/update_ecosystem
378
+
379
+ fix(dependencies): update ecosystem ([`eabfe89`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/eabfe89d98db21f0087f1ca4569ff695e05c9f99))
380
+
381
+ * Merge pull request #51 from Geode-solutions/revert-49-feat/is_loadable
382
+
383
+ Revert "Feat/is loadable" ([`d0f03a7`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d0f03a788c892ea80431d3aff3dadf7f3755240f))
384
+
385
+ * Revert "Feat/is loadable" ([`2aab775`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/2aab7755049c33843cc120618f1a94e32a3429f3))
386
+
387
+
388
+ ## v3.0.0-rc.9 (2023-12-15)
389
+
390
+ ### Feature
391
+
392
+ * feat(tests): strenghten unit tests 2 ([`9c9ab87`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9c9ab87bbef54c6524bb26f57d60d8d644c0f8b1))
393
+
394
+ * feat(tests): strenghten unit tests ([`03b0a00`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/03b0a0055b39a0ceaf3863a7f9a9be1314fa6d06))
395
+
396
+ * feat(list_geode_objects): test is_loadable
397
+
398
+ BREAKING CHANGE : arg extension -> file_absolute_path ([`4af7868`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4af78686c761c1abba86a02df39fc9a75e40e151))
399
+
400
+ * feat(dependencies): ass flask-cors ([`35e5c30`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/35e5c30455d117e99325a21722b3fe82ce054df9))
401
+
402
+ * feat(routes): add tests ([`28df816`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/28df816d3c3c1e9456dac092ea94da63d45c43f5))
403
+
404
+ * feat(routes): add new blueprint with refactored routes ([`210ec38`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/210ec3876283d8aa2c8408fa4b7a5dab6a41894d))
405
+
406
+ * feat(flask): add flask app & config
407
+ edit pytest config ([`15ad3cf`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/15ad3cfe42dcad747acdf470aae9d102a9e2c90d))
408
+
409
+ * feat(routes): add schemas ([`3afc79f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3afc79f6c82960163cbc18c771cfbb3b55e24e0c))
410
+
411
+ ### Unknown
412
+
413
+ * Merge pull request #49 from Geode-solutions/feat/is_loadable
414
+
415
+ Feat/is loadable ([`3ee5c1e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3ee5c1e3a44d5e9b151564603e89dacb4eff3112))
416
+
417
+ * update requirements ([`9066879`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9066879e7b037794bbded4184fdb29765261ebc7))
418
+
419
+ * integrate upload_file changes
420
+ route now takes each file one by one ([`2b2807f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/2b2807febceda5a8268533a3ed20e2da10f29cd2))
421
+
422
+ * tests ([`3129fe8`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3129fe83af3ef605ec4ca5ee974eb9897df6f247))
423
+
424
+ * move data ([`e8fba7c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e8fba7c8e87fd62050029b1af7eb0dc612ab47af))
425
+
426
+ * update dependencies ([`6bfba1d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6bfba1dd22ee4f9c98c74b2b8d18653e246d66d8))
427
+
428
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into feat/is_loadable ([`2de6600`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/2de66004cc3acf735017f7aa41d985af9871bad3))
429
+
430
+ * update tests & deps ([`4fc793c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4fc793cdc1f791f30266706bfc05493f0ef87978))
431
+
432
+
433
+ ## v3.0.0-rc.8 (2023-12-13)
434
+
435
+ ### Feature
436
+
437
+ * feat(dependencies): add geode dependencies ([`4ac294f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4ac294fa6f83d084a0ee54f62ac1d3614ffe7fd9))
438
+
439
+ ### Unknown
440
+
441
+ * Merge pull request #48 from Geode-solutions/feat/add_geode_dependencies
442
+
443
+ feat(dependencies): add geode dependencies ([`eeb1ad7`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/eeb1ad7278b5f45c38af79ef27398e8d70d89df3))
444
+
445
+
446
+ ## v3.0.0-rc.7 (2023-12-13)
447
+
448
+ ### Fix
449
+
450
+ * fix(unit_tests): fix unit tests ([`96fc19e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/96fc19e7f35282bc5f1dc27c85da079ec2181126))
451
+
452
+ ### Unknown
453
+
454
+ * Merge pull request #47 from Geode-solutions/feat/is_saveable
455
+
456
+ Feat/is saveable ([`1636622`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/163662276ccccd09fbc698862b90ebb15ca6b065))
457
+
458
+ * remove flush=True ([`6b6d7f3`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6b6d7f316e4f1708af31eeee54e8d179eebfb9af))
459
+
460
+ * update requirements ([`32c62e6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/32c62e6685504a6bb4d48240550007eb18b88433))
461
+
462
+ * Merge branch 'master' into next ([`6fed8e3`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6fed8e39bf38b64791936ff86deb5c8b3fb08d2d))
463
+
464
+
465
+ ## v3.0.0-rc.6 (2023-12-12)
466
+
467
+ ### Breaking
468
+
469
+ * feat(functions): add send_file function
470
+
471
+ BREAKING CHANGE: geode_objects_output_extensions returns a dict ([`1948edd`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1948eddad186904c4aecc63ed0ecbfa6780fa1b7))
472
+
473
+ ### Feature
474
+
475
+ * feat(geode_functions): is_loadable key & function ([`27ef421`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/27ef421b945da827c7d65705e6149b2052ce4378))
476
+
477
+ ### Unknown
478
+
479
+ * Merge pull request #45 from Geode-solutions/feat/is_saveable
480
+
481
+ feat(functions): add send_file function ([`b1d53a4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b1d53a4ab280b74fb4e39a318d26ccd309f7dc68))
482
+
483
+ * update unit tests ([`78fefe1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/78fefe13186b96c6e15be6f61441d69a62b15e0a))
484
+
485
+
486
+ ## v3.0.0-rc.5 (2023-12-06)
487
+
488
+ ### Fix
489
+
490
+ * fix(deps): update geode dependencies ([`516ba41`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/516ba41443107ad6368972f3215f1d00ea33fe9c))
491
+
492
+ ### Unknown
493
+
494
+ * Merge pull request #44 from Geode-solutions/chore/update_geode_ecosystem
495
+
496
+ fix(deps): update geode dependencies ([`0805aff`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/0805aff80f8aed936a6c3d26695df0d912536545))
497
+
498
+ * remove --pre ([`8596dbf`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8596dbfb61b3bf25cd47dfc496929c326e4c6fb4))
499
+
500
+
501
+ ## v3.0.0-rc.4 (2023-12-04)
502
+
503
+ ### Fix
504
+
505
+ * fix(commit_msg): test commit msg ([`4607cf4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4607cf485be2451292bcd729cb47b7f7bc6c71a7))
506
+
507
+ ### Unknown
508
+
509
+ * Merge pull request #43 from Geode-solutions/fix/update_dependencies
510
+
511
+ fix(dependencies): update stable deps ([`25460ea`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/25460ea46b1fb6b509ffd527ca0067fa4ef567be))
512
+
513
+ * fix update stable deps ([`d545d4e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d545d4e3c08ed24e444aa4242f04438726b908a2))
514
+
515
+
516
+ ## v3.0.0-rc.3 (2023-11-29)
517
+
518
+ ### Fix
519
+
520
+ * fix(dependencies): pin stable deps ([`b0cba78`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b0cba78ae1cdcb0444fff7280da3b3ce18d419af))
521
+
522
+ ### Unknown
523
+
524
+ * Merge pull request #42 from Geode-solutions/fix/update_dependencies
525
+
526
+ fix(dependencies): pin stable deps ([`51597a5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/51597a53b02184beb4cc285f9bbded5918831b43))
527
+
528
+
529
+ ## v3.0.0-rc.2 (2023-11-23)
530
+
531
+ ### Fix
532
+
533
+ * fix(dependencies): dynamic dependencies ([`0107914`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/0107914913f5fe2dd6600e6f026de8a651339150))
534
+
535
+ ### Unknown
536
+
537
+ * Merge pull request #41 from Geode-solutions/fix/update_dependencies
538
+
539
+ fix(dependencies): dynamic dependencies ([`940c6c8`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/940c6c8a2d35f29bfa0b1b850a9c147703535e21))
540
+
541
+
542
+ ## v3.0.0-rc.1 (2023-11-21)
543
+
544
+ ### Breaking
545
+
546
+ * fix(dependencies): update
547
+
548
+ BREAKING CHANGE: geode_objects_output_extensions takes data as input ([`f9d3441`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f9d3441f0b99887c664768ee4423a661abbe4a31))
549
+
550
+ ### Unknown
551
+
552
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`cf1f9c4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cf1f9c4f397e966cbac0aea94aa0ebffe8826917))
553
+
554
+ * pull from master
555
+
556
+ BREAKING CHANGE: geode_objects_output_extensions takes data as input ([`bbb13b1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/bbb13b1364f925e6991ca1710a42e69bfc1c96b1))
557
+
558
+
559
+ ## v2.1.0-rc.2 (2023-11-21)
560
+
561
+ ### Feature
562
+
563
+ * feat(output_extensions): return is_saveable key
564
+
565
+ BREAMING CHANGE: geode_objects_output_extensions needs data input ([`61edda6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/61edda6c84429079bad3bf3f76a52f929fa3a1d7))
566
+
567
+ ### Fix
568
+
569
+ * fix(CrossSection): is_saveable method ([`10c4f5c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/10c4f5ca760c90aad57e6355d21d01957a4bebf8))
570
+
571
+ ### Unknown
572
+
573
+ * Merge pull request #40 from Geode-solutions/feat/is_saveable ([`f98db5f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f98db5ff8627c7bd8e438c90d0729f77b2ead6fd))
574
+
575
+ * Merge branch 'next' into feat/is_saveable ([`2971bae`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/2971baed310ec13866a2554029ca41f23f933f81))
576
+
577
+ * Merge branch 'feat/is_saveable' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into feat/is_saveable ([`4fcbce2`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4fcbce29885f6d31752f14109b6ff3034d612e8d))
578
+
579
+ * update unit tests ([`d54ca8e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d54ca8e6f7de3a250ba76ef34b589506372cd60a))
580
+
581
+ * update unit tests ([`41fe232`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/41fe23236f440fc97a7030d5f82a087fc77e6942))
582
+
583
+ * update requirements ([`007cc5a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/007cc5aa8f4d66a3d387f3e73e0141665e747f0e))
584
+
585
+ * add tests files ([`c6eeae5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c6eeae5c9812f17e509e1734e9395c2176595722))
586
+
587
+ * update tests ([`464eae3`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/464eae31527fe651c4f224327d8c25a3c08c92bf))
588
+
589
+ * update e2e tests ([`07decc6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/07decc683244d3eb2431f74138afcf539c539235))
590
+
591
+ * gitignore ([`b122a9a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b122a9acaa403bfb6683c7598d1452cafb6ae904))
592
+
593
+ * remove upload_file method ([`d0fe9ab`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d0fe9ab031d370729702ca9ee1b03da9e2e7a4ff))
594
+
595
+ * update requirements ([`e48c31c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e48c31c1217b3f156e4263ab81c9b00dbb8218de))
596
+
597
+ * add load test ([`37dabd1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/37dabd1c4b8f8837e07449ff854a3c0029caf3c2))
598
+
599
+
600
+ ## v2.1.0 (2023-11-15)
601
+
602
+ ### Unknown
603
+
604
+ * Merge pull request #39 from Geode-solutions/next ([`d4845b7`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d4845b77b51b6b13f49472d7c14a803a7c52421e))
605
+
606
+
607
+ ## v2.1.0-rc.1 (2023-11-15)
608
+
609
+ ### Feature
610
+
611
+ * feat(github_workflows): merge from master to next ([`a93888c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a93888c5c87d1a9b6a64401e9eb55d1bb7015d18))
612
+
613
+ ### Unknown
614
+
615
+ * Merge pull request #38 from Geode-solutions/feat_merge_master_to_next ([`a164e0f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a164e0f925d22d0d9cfe3f59f34f1fb7d9e8cf74))
616
+
617
+
618
+ ## v2.0.0 (2023-11-15)
619
+
620
+ ### Unknown
621
+
622
+ * Merge pull request #37 from Geode-solutions/next
623
+
624
+ Next ([`6dff2e3`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6dff2e38b731630c1c860c554d95c7cd4bfa43f0))
625
+
626
+ * Merge branch 'master' into next ([`3edcaab`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3edcaab72afad23f4afd60b9f16686ce9cf1ac99))
627
+
628
+
629
+ ## v2.0.0-rc.1 (2023-11-15)
630
+
631
+ ### Breaking
632
+
633
+ * feat(validate_request):
634
+ add json schema into function
635
+
636
+ BREAKING CHANGE: Arguments changement(array to json schema) ([`2128439`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/21284396212fa6b689f778cf83a015cc5ff42a11))
637
+
638
+ ### Unknown
639
+
640
+ * feat(geode_functions) : is_saveable function ([`a4c070c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a4c070c38ac92a941b92982f841b60f5ae5fddfc))
641
+
642
+ * Merge pull request #36 from Geode-solutions/json_back
643
+
644
+ feat(validate_request):
645
+ add json schema into function
646
+
647
+ BREAKING CHANGE: Arguments changement(array to json schema) ([`06829f5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/06829f5620a3c3d5ea24ebed51e64e94ad84b0b2))
648
+
649
+ * feat(geode_objects_dict) : is_saveable key ([`8fc9cf1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8fc9cf1288056f1106ab57e4ba52db8bf3ad092c))
650
+
651
+ * remove useless lines ([`ebbe0e8`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ebbe0e850b45c703d1af157f3136274ae2711202))
652
+
653
+ * Json Back - Upgrade ([`c11c23d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c11c23d0c30f0ac25f89d3f28dce41dbde0fa6bd))
654
+
655
+
656
+ ## v1.4.0 (2023-11-06)
657
+
658
+ ### Unknown
659
+
660
+ * Merge pull request #35 from Geode-solutions/next
661
+
662
+ Next ([`27292fb`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/27292fb38827ee698610b95b8f962e6bb41da958))
663
+
664
+ * Merge branch 'master' into next ([`444ee71`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/444ee71993fcbe87cf7f518ee71aa96dc261f708))
665
+
666
+ * Merge pull request #32 from Geode-solutions/fix_save_viewable_vtm
667
+
668
+ fix(save_vtm): update requirements ([`9b999e9`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9b999e9fd363cd24336b8213f03b61cb63c7d789))
669
+
670
+
671
+ ## v1.4.0-rc.1 (2023-11-06)
672
+
673
+ ### Feature
674
+
675
+ * feat(functions): validate_request function ([`124c2f1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/124c2f1b13f2a4e0fbfa7ca2054b3aede3fed368))
676
+
677
+ ### Fix
678
+
679
+ * fix(save_vtm): update requirements ([`526adb2`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/526adb20e61c4e7fbfc39233f5ad9f511182d133))
680
+
681
+ ### Unknown
682
+
683
+ * Merge pull request #31 from Geode-solutions/feat_validate_request
684
+
685
+ feat(functions): validate_request function ([`8a55224`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8a5522405c1b432592835cbe3b4b0f42e6334c71))
686
+
687
+ * update requirements ([`5aae971`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5aae971d544732b49f922f460761157e4d9e1d39))
688
+
689
+
690
+ ## v1.3.1 (2023-11-02)
691
+
692
+ ### Unknown
693
+
694
+ * Merge pull request #30 from Geode-solutions/next
695
+
696
+ Next ([`54858fb`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/54858fb2ffd30de465f92a2e91f945f713c6b6db))
697
+
698
+ * Merge branch 'master' into next ([`2a328b1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/2a328b118581b6ff6db09ee6c616977e1497bfea))
699
+
700
+
701
+ ## v1.3.0-rc.4 (2023-10-31)
702
+
703
+ ### Fix
704
+
705
+ * fix(dependencies): update ecosystem ([`bc00d25`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/bc00d25b0f4d9c9ac045d46c338862dfbc2d880b))
706
+
707
+ ### Unknown
708
+
709
+ * Merge pull request #29 from Geode-solutions/fix_update_ecosystem
710
+
711
+ fix(dependencies): update ecosystem ([`ed1daaa`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ed1daaaeaa2cef3b76aee18cd3a332b9fbc7efb1))
712
+
713
+
714
+ ## v1.3.0 (2023-10-25)
715
+
716
+ ### Unknown
717
+
718
+ * Merge pull request #28 from Geode-solutions/next
719
+
720
+ Next ([`b8d6cdf`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b8d6cdffdfc07b810b64fc3fc01c3413bebe2176))
721
+
722
+ * Merge branch 'master' into next ([`a3dd757`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a3dd757571a2c2605eff6e6b37cc05edb92e844b))
723
+
724
+ * Merge pull request #26 from Geode-solutions/feat_geode_object_class_heritage
725
+
726
+ Feat geode object class heritage ([`30348ac`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/30348acb32c30c70dd55b4e5ce75943b9be7fb8e))
727
+
728
+
729
+ ## v1.3.0-rc.3 (2023-10-25)
730
+
731
+ ### Feature
732
+
733
+ * feat(output_factory): update get_output_factory ([`f4b6941`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f4b6941f99985a9082cc5f573c2934de2a188853))
734
+
735
+ ### Fix
736
+
737
+ * fix(dependencies): update to stable ecosystem ([`50ffeac`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/50ffeac5f4bb3e8cb5e925774086a3518f87a001))
738
+
739
+ ### Unknown
740
+
741
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into feat_geode_object_class_heritage ([`447e2ef`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/447e2ef519aafb189605a3c051da5a611f4e499c))
742
+
743
+ * Merge pull request #27 from Geode-solutions/fix_update_dependencies
744
+
745
+ fix(dependencies): update to stable ecosystem ([`c1a3583`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c1a35834a6dcbe1b041ba60f42b6a06af8433842))
746
+
747
+ * feat(functions) : fix typos and update tests ([`cd851f6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cd851f6394675a67979d5d9624a5904739f16582))
748
+
749
+ * feat(functions) : rename functions
750
+ code cleanup ([`c189111`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c189111dabf1ca85f9a1811f9fc20e845c9cb9b5))
751
+
752
+ * Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into feat_geode_object_class_heritage ([`a83014e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a83014ea2d4e1b1f6609c99657e4fc582093c0b2))
753
+
754
+
755
+ ## v1.3.0-rc.2 (2023-10-18)
756
+
757
+ ### Fix
758
+
759
+ * fix(functions): fix typos & tests ([`965cc08`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/965cc08265ffe337d6e9d0ae9162b55921d74dcf))
760
+
761
+ * fix(functions): refactor functions ([`7a56a81`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7a56a8120189d8267ff7dcb42444d8e4a508e582))
762
+
763
+ * fix(functions): update unit tests ([`a9fc257`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a9fc2571d173ac6e843390e2bda9fc58660ea41f))
764
+
765
+ * fix(functions): fix functions based on key input ([`1e29bf4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1e29bf419ba56f52cef869dca368719c06595d46))
766
+
767
+ ### Unknown
768
+
769
+ * Merge pull request #25 from Geode-solutions/fix_functions
770
+
771
+ Fix functions ([`276b992`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/276b9928fe46fddb412a289364da76d18081db28))
772
+
773
+ * feat(geode_objects) : add parent key ([`c821d2e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c821d2e6797bdcc4190584e00c854f4c96a89fcf))
774
+
775
+
776
+ ## v1.3.0-rc.1 (2023-10-13)
777
+
778
+ ### Unknown
779
+
780
+ * Merge pull request #21 from Geode-solutions/feat_missing_files
781
+
782
+ Feat missing files ([`49c4f98`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/49c4f98303c375668aadcc2734cee51ef98275eb))
783
+
784
+ * Apply prepare changes ([`427b86d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/427b86d82e6d0a130359d1779f12f79becf06e3c))
785
+
786
+ * delete functions & add prepare_pr workfloxw ([`f7b4e69`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f7b4e698d5009c23f155fcf2029445d62c524511))
787
+
788
+ * remove unused imports ([`5be702f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5be702fff170aefe73a992a3ea056f1b0ae6e56c))
789
+
790
+ * requirements ([`a8e900d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a8e900d46b270c9231daffc41ed626feff10ba64))
791
+
792
+ * file_absolute_path & update tests ([`3a8a005`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3a8a00597a45c1e6ac42fce87c3f736839805808))
793
+
794
+ * save ([`468381e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/468381ee93f892d92f299154dbfc964c0d92d341))
795
+
796
+
797
+ ## v1.2.2 (2023-10-13)
798
+
799
+ ### Feature
800
+
801
+ * feat(tests): add new test files ([`9da556d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9da556d1a8daef5423f219679c6c787d47756f5d))
802
+
803
+ * feat(functions): add missing files functions ([`d58a876`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d58a8762e9a4b9200605b2085f387ae2ff54e67d))
804
+
805
+ ### Unknown
806
+
807
+ * Merge pull request #20 from Geode-solutions/next
808
+
809
+ Next ([`669bc41`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/669bc41575162b1a4a7af9ef369cf94f9f16a146))
810
+
811
+ * Merge branch 'master' into next ([`fbc08e5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/fbc08e5228855957ef14cca771f672cdb0149ce7))
812
+
813
+ * Merge pull request #19 from Geode-solutions/add_copyleft
814
+
815
+ Add copyleft ([`28b0a14`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/28b0a145caf9b02015d41f250c39824ef0fd630f))
816
+
817
+ * Merge branch 'next' into add_copyleft ([`efd81c7`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/efd81c75d0b147845d1551279cfdeaaa36521af3))
818
+
819
+ * continue test_load ([`980f867`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/980f867cb3090ed9f49d55ff407b0d03231d1bde))
820
+
821
+ * modify geode_functions missing_files ([`5fe0cd5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5fe0cd5c239897b3def3f04a3e59a899df66f359))
822
+
823
+ * update requirements ([`49e20c4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/49e20c4e8f7e588e4350fb98e146c398e1863506))
824
+
825
+ * pull from next ([`5305197`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/53051978cb34263f921753bd6358e2ca1cddb2af))
826
+
827
+
828
+ ## v1.2.1-rc.3 (2023-10-05)
829
+
830
+ ### Fix
831
+
832
+ * fix(VertexSet): is_model ([`6fc0d4a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6fc0d4a874fe9ac8850c51dc156259d225673cef))
833
+
834
+ ### Unknown
835
+
836
+ * Merge pull request #18 from Geode-solutions/fix_vertexset_model
837
+
838
+ fix(VertexSet): is_model ([`15206ef`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/15206eff603898767b77ad57080b89e81459da8a))
839
+
840
+
841
+ ## v1.2.1-rc.2 (2023-10-04)
842
+
843
+ ### Fix
844
+
845
+ * fix(create_crs): fix function name closes #13 ([`a03ca5e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a03ca5e9310cb47612d05134712bb985bddd5632))
846
+
847
+ * fix(create_crs): fix function name ([`10b08ae`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/10b08ae8fe4463ce4aa1ff4ebe9673dcdd3230a3))
848
+
849
+ ### Unknown
850
+
851
+ * Merge pull request #14 from Geode-solutions/fix_create_crs
852
+
853
+ Fix create crs ([`b1aedb4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b1aedb4ca7b70d661e25346a13723282dd06a0c5))
854
+
855
+ * Merge branch 'fix_create_crs' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into fix_create_crs ([`5d71740`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5d717409e89c9ef937378b539f2f408e58bb9761))
856
+
857
+
858
+ ## v1.2.1 (2023-10-03)
859
+
860
+
861
+ ## v1.2.1-rc.1 (2023-10-03)
862
+
863
+ ### Fix
864
+
865
+ * fix(get_extension_from_filename):
866
+
867
+ return extension without dot ([`f517129`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f517129640e1b69a2e0f2ce814581d8e91ca3d1f))
868
+
869
+ ### Unknown
870
+
871
+ * Merge pull request #11 from Geode-solutions/next
872
+
873
+ Next ([`6ccf725`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6ccf72592f37c8e4a81cbd0c8073cab59a902110))
874
+
875
+ * Merge pull request #10 from Geode-solutions/fix_get_extension_from_filename
876
+
877
+ fix(get_extension_from_filename): ([`48ed2d6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/48ed2d6864907408e68a50dc09210c33e7d715d5))
878
+
879
+
880
+ ## v1.2.0 (2023-10-02)
881
+
882
+ ### Unknown
883
+
884
+ * Merge pull request #8 from Geode-solutions/next
885
+
886
+ Next ([`606b356`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/606b356a1f1a7e9b2b5503d3b1da11a15d24fa61))
887
+
888
+ * Merge branch 'master' into next ([`16fa741`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/16fa741f631dba04c8d557e535c7c1331d72d569))
889
+
890
+
891
+ ## v1.1.0-rc.5 (2023-10-02)
892
+
893
+ ### Feature
894
+
895
+ * feat(tests): add tests
896
+
897
+ Add tests for function that don't require data ([`5f32897`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5f328973d36762f4875822015aec60f86b472259))
898
+
899
+ ### Unknown
900
+
901
+ * Merge pull request #7 from Geode-solutions/feature_add_unit_tests
902
+
903
+ Feature add unit tests ([`cd9e017`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cd9e0173a41d2878d514ef66502de4e67de7cd9c))
904
+
905
+ * remove unused test file ([`e686ccd`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e686ccdbb69a635ff6886c3020a58c66d4c4b0ea))
906
+
907
+ * Merge branch 'next' into feature_add_unit_tests ([`74e9b55`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/74e9b55425b94c7133721abe3457d47f35dca79c))
908
+
909
+ * pr comments ([`c687131`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c68713191f931d4857f025665012d77d2c27949b))
910
+
911
+ * pull from next ([`c9ec6ff`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c9ec6ff14c99ff549954481b781718c9728e9027))
912
+
913
+
914
+ ## v1.1.0-rc.4 (2023-10-02)
915
+
916
+ ### Feature
917
+
918
+ * feat(missing_files): add missing_files function ([`e8bd1a5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e8bd1a5ad6546782a9e40f90ac1fb72410727867))
919
+
920
+ * feat(missing_files): add key to each geode_object ([`cb23d44`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cb23d440776d2e2741e5fcb2139beda0abc60d01))
921
+
922
+ ### Fix
923
+
924
+ * fix(list_input_extensions):
925
+
926
+ fix geode_object key extractor ([`5021d28`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5021d2800a981c597a2c6e60a0be7a9b41dcd03e))
927
+
928
+ ### Unknown
929
+
930
+ * Merge pull request #6 from Geode-solutions/fix_list_input_extensions
931
+
932
+ fix(list_input_extensions): ([`18be4af`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/18be4af65fabbe203a3a7496b82b808f964d4672))
933
+
934
+
935
+ ## v1.1.0 (2023-09-26)
936
+
937
+ ### Unknown
938
+
939
+ * Merge pull request #5 from Geode-solutions/next
940
+
941
+ actions/checkout TOKEN ([`18cf8eb`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/18cf8ebde3170a729cfbcf2edbf08410022efdd0))
942
+
943
+
944
+ ## v1.1.0-rc.3 (2023-09-26)
945
+
946
+ ### Fix
947
+
948
+ * fix(CD): update TOKEN ([`49b37c4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/49b37c483e33b2e4c2412da0e0eb6b7aaee96a1c))
949
+
950
+ ### Unknown
951
+
952
+ * actions/checkout TOKEN ([`111c578`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/111c578cbd786079ad3e2494a49caa192a815f23))
953
+
954
+ * Merge pull request #4 from Geode-solutions/next
955
+
956
+ switch to global TOKEN ([`e29dc4b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e29dc4b88176cdac16f84e3ebea2fcbd127c1a26))
957
+
958
+
959
+ ## v1.1.0-rc.2 (2023-09-26)
960
+
961
+ ### Feature
962
+
963
+ * feat(CD): update TOKEN ([`b07c8df`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b07c8dfbab625838c9c9ad2d3ebcbf48345512f8))
964
+
965
+ ### Unknown
966
+
967
+ * switch to global TOKEN ([`6b85410`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6b85410562d0b20a3a945c5e87d8366dcbffbd50))
968
+
969
+ * Merge pull request #3 from Geode-solutions/next
970
+
971
+ Next ([`9e13b42`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9e13b42548e205167abef6235bc801c39c56c0e0))
972
+
973
+ * modify functions ([`2cf65bf`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/2cf65bfa71ba24f9bf4419c4a3d9991ad1d1e826))
974
+
975
+ * load return ([`b4c373b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b4c373b9a53e5c35ac213f1ba10e37a79ff0a835))
976
+
977
+ * Merge pull request #2 from Geode-solutions/feature_add_functions
978
+
979
+ Feature add functions ([`9ad7436`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9ad743630d40ec9a32a22381cd04fdd8f73f026d))
980
+
981
+ * Merge branch 'feature_add_functions' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into feature_add_functions ([`f89f4ae`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f89f4ae1e4abeaa1788b20fedbcbf795d64ec4de))
982
+
983
+ * update pyproject ans CD ([`ab578ed`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ab578ed70b05daa1fe344db3b3a7c8f279f4691b))
984
+
985
+ * Merge branch 'next' into feature_add_functions ([`d0f8fe6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d0f8fe681d44db6dc8f3037533482d8bbe088e70))
986
+
987
+
988
+ ## v1.1.0-rc.1 (2023-09-26)
989
+
990
+ ### Feature
991
+
992
+ * feat(Lol): yolo ([`5be0b6a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5be0b6a36502a45c212070d01bba5f11c5b8abcc))
993
+
994
+ ### Unknown
995
+
996
+ * depth ([`5bc1cab`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5bc1cabafec8836c2f1725a1525fd151e7d145ca))
997
+
998
+ * version ([`0e72512`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/0e72512671412ddedf83e88e842537605f118346))
999
+
1000
+ * v7.34.6 ([`19f58e6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/19f58e6dbfac88560c3668072462b228679a5209))
1001
+
1002
+ * test ([`b801ee5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b801ee58b7b64523f5f9fe4003694e05770ccc87))
1003
+
1004
+ * empty ([`7141e9e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7141e9eee2f3268a60450d6370272014fbd63de8))
1005
+
1006
+
1007
+ ## v1.0.0 (2023-09-26)
1008
+
1009
+ ### Fix
1010
+
1011
+ * fix(Test): test ([`abc29e6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/abc29e66fd6a9af86b95b5e25667302f3311d6cf))
1012
+
1013
+ * fix(Actions): try semantic release ([`05a71e0`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/05a71e0f9b90e92b6182b12b635cd4c980f7fcc8))
1014
+
1015
+ ### Unknown
1016
+
1017
+ * 8.0.8 ([`ba81f1d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ba81f1d81e3b9b9866376b08240628a09541e112))
1018
+
1019
+ * cat ([`8678e6e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8678e6ed3588dc45ef121d15cdf7e8f2693f451e))
1020
+
1021
+ * 0.0.0 ([`710168c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/710168c5ef54f891bc716c9eced792644d695885))
1022
+
1023
+ * test ([`1848362`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1848362652c3d20fcf663c07c76505a895c9d0cd))
1024
+
1025
+ * test ([`f8cb73f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f8cb73ff1d4a0d899de1e0eea44393174fabe884))
1026
+
1027
+ * test ([`859693e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/859693eb51ef3e764f4f0256eaa0bb549dc38a9f))
1028
+
1029
+ * test ([`65dfd20`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/65dfd20abf15430c04a8f02debdce5369d9191f2))
1030
+
1031
+ * test ([`732ed43`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/732ed4347878665239e301c432d16a1d5088e1c7))
1032
+
1033
+ * remove test files & add later ([`6c1ea78`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6c1ea78953c81dafb54a4fb68c9b818d3be66e23))
1034
+
1035
+ * add requirements.txt
1036
+ add functions ([`e207aa8`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e207aa8b04c7501f3a880d3a0a0d3b6e5a0ae05b))
1037
+
1038
+ * gitignore add venv ([`6e6c671`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6e6c67105c9a5bb7bfbc1a86eb771930cd42a471))
1039
+
1040
+ * test ([`771d5cf`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/771d5cff3351d71b5397eba4aade624e6fa4c5dd))
1041
+
1042
+ * test semantic release ([`c5411ed`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c5411ed1e9d933730f7f8afc9aaf07b8a331e62f))
1043
+
1044
+ * Add copyleft file ([`f441bd4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f441bd443f6d4e1ace9140a47c9c2571f72dacba))
1045
+
1046
+ * Add copyleft ([`086beb3`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/086beb3a0b8f48e68cc48fbb61166917f8622028))
1047
+
1048
+ * load return ([`9115aa2`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9115aa2cce85a292944119682d57637ca55e15cc))
1049
+
1050
+ * Merge pull request #1 from Geode-solutions/next
1051
+
1052
+ Next ([`bf82296`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/bf82296b29900bad27acfe776c8fc402bf93ac49))
1053
+
1054
+ * update ([`b8751ab`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b8751abf6193691d9c40e16f9517c514e5c404ba))
1055
+
1056
+ * more log ([`f098183`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f098183a95a7bcd9edaa710b4334ff3d7fff0a55))
1057
+
1058
+
1059
+ ## v0.0.0 (2023-09-07)
1060
+
1061
+ ### Feature
1062
+
1063
+ * feat(wip): test push ([`9e84dea`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9e84dea7ae1996addeeccefbf5f13c64ea4a6176))
1064
+
1065
+ * feat(wip): test push ([`18e5dee`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/18e5deee4ffa42411fd71253d4df21dfd2c3e53b))
1066
+
1067
+ * feat(wip): test push ([`1c0473d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1c0473d0d53084119b8590d2fc96e99899862136))
1068
+
1069
+ * feat(wip): rename geode_functions and refactor ([`2102842`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/21028422c1085fbee21d9eb4f386f2cc1d5bae38))
1070
+
1071
+ * feat(wip): Add functions ([`1bd870f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1bd870fdb374351e396c98391c437cc73fa7685f))
1072
+
1073
+ ### Fix
1074
+
1075
+ * fix(get_form_variables): flask.abort() request ([`18f9709`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/18f97091e90111f61af7defdeba2c4f6dde49a25))
1076
+
1077
+ ### Unknown
1078
+
1079
+ * test semantic release ([`b886b70`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b886b7084aaf97750c42bff9fb3fe22f2ed5e0d6))
1080
+
1081
+ * add files ([`80b2f88`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/80b2f88f7eee275e86304540d53f6da0dffeacaa))
1082
+
1083
+ * add files ([`1db89bf`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1db89bf892efef66b01eed43aea60da787ffe871))
1084
+
1085
+ * add files ([`f892fe9`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f892fe91753763147023cc9ffb32c34d4a6a57f3))
1086
+
1087
+ * lfs ([`056f7ba`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/056f7ba993c93d72d0ecdd6c68ab15e2683096c7))
1088
+
1089
+ * add more ([`bb923dd`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/bb923dd51c3be0b65dddf3c15e9dcd2310012c7e))
1090
+
1091
+ * add more ([`7be620c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7be620ca9d262cbb92bfb0608d544981448581bd))
1092
+
1093
+ * add more ([`7002df3`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7002df3e2aaac96deede9f27dce5050f69ba605f))
1094
+
1095
+ * add one file ([`f41de02`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f41de0225f189bc4347947c3c37af5967e2778cf))
1096
+
1097
+ * add tests ([`dc868dd`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/dc868dd60a6a7fb4ee519b8ba61218222a19d894))
1098
+
1099
+ * add geode_functions back ([`6a51d53`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6a51d534b29d1b0cd543e682db2df3a082794309))
1100
+
1101
+ * Added return to save_viewable ([`e3f863a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e3f863a2ab777f732f4199b46afabc9f0c6b4747))
1102
+
1103
+ * add new functions
1104
+ BREAKING CHANGE: chnage function parameters order ([`4a3c244`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4a3c244e139a8c4d757b8aa5913536c225766918))
1105
+
1106
+ * add new functions
1107
+ BREAKING CHANGE: chnage function parameters order ([`e20bfa0`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e20bfa02f1a3b2bae9812ea2b2a49b4125e11a3c))
1108
+
1109
+ * fix 0.0.14 ([`f80a7fa`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f80a7fa1d62e2e8114e9cec7ff918520d92bd667))
1110
+
1111
+ * fix inspector imports ([`e8a0f88`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e8a0f88e8a7683ec1cde6bc3e2c3b11d4c24a30d))
1112
+
1113
+ * import threading + move inspector ([`15ce978`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/15ce97809a0158de3ba4f15c039f16f070b877f6))
1114
+
1115
+ * test ([`45e3541`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/45e3541ef528508cd9f8aadfc7528f6d21bef9f6))
1116
+
1117
+ * test ([`766be9b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/766be9b76798aef26b6e8a1d722ebfd3625327f1))
1118
+
1119
+ * test ([`fa83162`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/fa831622fde98755135747b71a28211c6cce3aa8))
1120
+
1121
+ * test ([`67c4bba`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/67c4bba6e0a4a7f22ba29d7ddb5acdf9cb59860a))
1122
+
1123
+ * test ([`9e657ac`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9e657ac97af595352eec4c06b02f6bf300514412))
1124
+
1125
+ * test ([`66a93c2`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/66a93c2039b3d16c0fcc8b467ca88811e09537cc))
1126
+
1127
+ * test ([`66f0418`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/66f0418d9d392d317996232f951c067306cb93fd))
1128
+
1129
+ * test ([`66e2048`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/66e2048f97737f774c0681575aa3cfbd5bac702c))
1130
+
1131
+ * test ([`7f1125a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7f1125a05fbb70569d8972d726f9d5dc9c2cd15b))
1132
+
1133
+ * test ([`3dcfa3a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3dcfa3aaf4f9a87defebe799bc7373c2c538489a))
1134
+
1135
+ * test inspector ([`205114b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/205114ba0b0d30b0020a8e6e9d93def20721e189))
1136
+
1137
+ * test ([`47868dc`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/47868dcbe479ab2e8ea305e5f1dd7099385ff3e5))
1138
+
1139
+ * test ([`c04f581`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c04f5816852486a8d286a51ad1631e909a614ebe))
1140
+
1141
+ * test ([`e5428d8`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e5428d8d496b03a923d3ab2b23a44e40c0c05fde))
1142
+
1143
+ * test ([`246427a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/246427ad60e1b641fc508d851d2a0f15bc2d0a47))
1144
+
1145
+ * test ([`07860c6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/07860c608dd1bb17c18506f926c4d8b2392adc1a))
1146
+
1147
+ * test ([`b907247`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b907247a4d96185298395c96e91d9a2147d4877b))
1148
+
1149
+ * test ([`582c0fc`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/582c0fc943f601d9373fad54271b56cf091932e0))
1150
+
1151
+ * test ([`7430f71`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7430f711af10ee3e9e9f86880e792b6e5b0c7e8e))
1152
+
1153
+ * test ([`82a5bb0`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/82a5bb0bcda94e56bfea371472eaac19b3d0c388))
1154
+
1155
+ * test ([`8081274`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8081274f6d1829b43c3d928df25b10eb581178a1))
1156
+
1157
+ * test ([`7f13055`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7f130555509ce7ea1a0b219d3556753f6a5544c4))
1158
+
1159
+ * test ([`e492c77`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e492c77b66e0a935a81b48c6b4595e8fbd34a9b7))
1160
+
1161
+ * test ([`160133e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/160133e410d67e0bbf9ba5cd1481043c2846dfa7))
1162
+
1163
+ * test ([`1cf6c74`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1cf6c741c6db820fe71462a41cd803f399639ea2))
1164
+
1165
+ * test ([`93af0e2`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/93af0e26d7b787be6e82be4ec01f88f81faa3de2))
1166
+
1167
+ * test again ([`4b34c1d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4b34c1d3d680d9bc01e07aeaf362053443a2559f))
1168
+
1169
+ * test ([`985db48`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/985db4851a4528c57b4484061743e8f941f9fd62))
1170
+
1171
+ * test ([`b60b8a5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b60b8a5aeeb1410c04c4cd91ec3d659eccecd641))
1172
+
1173
+ * test ([`fbbcbb4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/fbbcbb4a561d1f9f7e5cfe5b59e61d63e9c0d769))
1174
+
1175
+ * test ([`6d8677c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6d8677cff5541da74a6cffc384bff8969649926f))
1176
+
1177
+ * test ([`640ffcc`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/640ffcc8034b6b1e816a02e1d5bb004aba826ab7))
1178
+
1179
+ * test ([`fc6c6fe`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/fc6c6fe096617167e9b6bc5ddf6eb089b582c567))
1180
+
1181
+ * test ([`9aa5090`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9aa50907b81d5177078225e33c3db748cef1f69c))
1182
+
1183
+ * test ([`48f4cef`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/48f4cef84d41a93b083b1f9520953a8a1a5205f2))
1184
+
1185
+ * test ([`8006ac3`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8006ac310c76aa9885d73d51338944d20454ab43))
1186
+
1187
+ * test ([`99f690e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/99f690e9a5c2af8f07be0a2faab744e590c0dc52))
1188
+
1189
+ * test ([`0ed0bcc`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/0ed0bcc0a61925695d5d382760db84f8e5f8ae07))
1190
+
1191
+ * test ([`73bc0f4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/73bc0f48ffdb15f7249c480ad167ecd6ca9c58b7))
1192
+
1193
+ * test ([`ae47bca`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ae47bcae4dad6b8baefea9503a532f876008d936))
1194
+
1195
+ * test ([`d389632`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d38963243b4b3fc7d58ef8d750be32a66ac72a1b))
1196
+
1197
+ * test ([`4cbdf2e`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4cbdf2e90fdee2dbe4bae08c09fd6b91a99e5549))
1198
+
1199
+ * test ([`b27e2f0`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b27e2f0665fde659c6d6b002257afe12e6db9312))
1200
+
1201
+ * test ([`ad13694`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ad13694e2f77bbb3e43e47884badc46065a9d550))
1202
+
1203
+ * test ([`696e5e1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/696e5e11189e12d8eedd47088befebaa0d4d9c04))
1204
+
1205
+ * test ([`ba1835b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ba1835b5b2cbb2c49eaeb6d97430d5573a4c76a4))
1206
+
1207
+ * test ([`712643c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/712643c3cb7600e9765c1f758cb644fe1e273427))
1208
+
1209
+ * test ([`659ec89`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/659ec89b3aadb3efeb993e8701ea8c1bc003c3fe))
1210
+
1211
+ * test ([`ea9abae`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ea9abaebc72f58730d7e6de99a495242a6ac8fe5))
1212
+
1213
+ * Add geode_objects.py
1214
+ Add requirements
1215
+ Add branch protection ([`ebfa532`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ebfa53208b9382ae6e7e57e623a558eab67083a3))
1216
+
1217
+ * Add geode_objects.py ([`63e9bfa`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/63e9bfab9b6bdc252316400ecfe0625dd122b752))
1218
+
1219
+ * Update README.md ([`d131ccf`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d131ccf3a856e084d7d7f5a80be9082d611db2fd))
1220
+
1221
+ * Create README.md ([`cb326f5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cb326f5b1e10cd35fd62b76c72f90eaecf052b07))
1222
+
1223
+ * Initial commit ([`d201b85`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/d201b8533c64f1228519f7acda76590b7a44fa92))