Skip to content

Commit da0efd1

Browse files
Merge pull request #66 from Geode-solutions/next
Next
2 parents e6deea0 + cdad1b8 commit da0efd1

20 files changed

+930
-73
lines changed

.github/workflows/CD.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,28 @@ jobs:
2222
run: |
2323
python3 -m pip install --upgrade build
2424
python3 -m build
25-
- name: Upload
25+
- name: Upload PYPI
2626
if: steps.semantic-release.outputs.released == 'true'
2727
run: |
2828
python3 -m pip install twine
2929
python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
30+
- name: Setup NODE
31+
uses: actions/setup-node@v3
32+
with:
33+
registry-url: "https://registry.npmjs.org"
34+
node-version: "20.x"
35+
- name: Upload NPM
36+
if: steps.semantic-release.outputs.released == 'true'
37+
run: |
38+
pwd
39+
cd ${{ github.workspace }}
40+
npm i
41+
npm run json
42+
jq '.version="${{steps.semantic-release.outputs.version}}"' package.json > temp && mv temp package.json
43+
cat package.json
44+
npm publish
45+
env:
46+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3047
- name: Merge master -> next
3148
if: github.ref == 'refs/heads/master'
3249
uses: devmasx/merge-branch@master

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ venv
44
output
55
__pycache__
66
.vscode
7-
uploads
7+
uploads
8+
node_modules
9+
schemas.json

CHANGELOG.md

Lines changed: 269 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,275 @@
22

33

44

5+
## v3.3.0-rc.20 (2024-01-30)
6+
7+
### Fix
8+
9+
* fix(dependencies): update ecosystem ([`7ea140d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7ea140d5db3fc01b1062dc25fed046e0db9e9d64))
10+
11+
### Unknown
12+
13+
* Merge pull request #65 from Geode-solutions/fix/update_ecosystem
14+
15+
fix(dependencies): update ecosystem ([`1bbe405`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1bbe40580ebe788bae7978b44b01dc9de33b7204))
16+
17+
18+
## v3.3.0-rc.19 (2024-01-29)
19+
20+
### Fix
21+
22+
* fix(ecosystem): update dependencies ([`e93ddd4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e93ddd4e828c6695a0a005bc6f1ccf9a41a24219))
23+
24+
### Unknown
25+
26+
* Merge pull request #64 from Geode-solutions/fix/update_ecosystem
27+
28+
Fix/update ecosystem ([`7d31dab`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/7d31dab73fdfc3db1160498f19dc06cc69c7d078))
29+
30+
* Apply prepare changes ([`5733a4d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5733a4daf26ea0b7e6a95d1dce0028dd32ed6654))
31+
32+
* remode $id from schemas ([`e43b92d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e43b92d3cd724d155725a702229a7af1dec357ac))
33+
34+
35+
## v3.3.0-rc.18 (2024-01-19)
36+
37+
### Feature
38+
39+
* feat(cd): files ([`cf598ad`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cf598ad51c23d22124e5d09d68bde8669893f9a1))
40+
41+
### Unknown
42+
43+
* Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`6261840`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6261840cfc63936c342f71514b37c61db8493ddf))
44+
45+
46+
## v3.3.0-rc.17 (2024-01-19)
47+
48+
### Feature
49+
50+
* feat(cd): test jq version ([`4b9a59f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4b9a59ff2baa0112e1037f3eb4aaaf0d91cd9ffa))
51+
52+
### Unknown
53+
54+
* Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`8b3930b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8b3930b58d3d69bd5b3cec6b34cc67d9049fda36))
55+
56+
57+
## v3.3.0-rc.16 (2024-01-19)
58+
59+
### Feature
60+
61+
* feat(cd): test jq ([`a258939`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a258939df816fc2050e88232d6b6f775d415b03e))
62+
63+
64+
## v3.3.0-rc.15 (2024-01-19)
65+
66+
### Fix
67+
68+
* fix(cd): test jq2 ([`1941e83`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1941e831934c5b586585ff0807f9a0e64ea9848a))
69+
70+
### Unknown
71+
72+
* Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`5c20eec`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5c20eec8cbfe958e12f2162c144d7b505bd6c860))
73+
74+
75+
## v3.3.0-rc.14 (2024-01-19)
76+
77+
### Fix
78+
79+
* fix(cd): test jq ([`a6f8f1a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a6f8f1a0e7c8fc61714463ec039e2e211cd19c12))
80+
81+
### Unknown
82+
83+
* Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`c7e9c77`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c7e9c77be6ecb503edea1429dcce206728a99d1d))
84+
85+
86+
## v3.3.0-rc.13 (2024-01-19)
87+
88+
### Fix
89+
90+
* fix(cd): registry-url ([`b48992d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b48992d0a3bb877960a9e55454d1ba25b760f4ff))
91+
92+
93+
## v3.3.0-rc.12 (2024-01-19)
94+
95+
### Fix
96+
97+
* fix(cd): cd update ([`960653d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/960653d1d8e1e7835a7ae146ae71ffd174bd7b96))
98+
99+
### Unknown
100+
101+
* Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`96b8247`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/96b8247df147e08dd50de986cedc0296598cc53f))
102+
103+
104+
## v3.3.0-rc.11 (2024-01-19)
105+
106+
### Feature
107+
108+
* feat(test): test update script ([`c2c3b39`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c2c3b395cc0ac976daeddf2a4ec63e5313d505a8))
109+
110+
* feat(test): test update script ([`e19d592`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e19d592ef8b5ba3d77cee33e3862a71d523ee6a7))
111+
112+
113+
## v3.3.0-rc.10 (2024-01-18)
114+
115+
### Fix
116+
117+
* fix(Actions): test folders ([`88f0b30`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/88f0b3063d850e8f37214e4750b7eee734469251))
118+
119+
120+
## v3.3.0-rc.9 (2024-01-18)
121+
122+
### Fix
123+
124+
* fix(Actions): update working directory ([`3d59b58`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3d59b586b9730a5f144b19885aeeca656dfe0488))
125+
126+
127+
## v3.3.0-rc.8 (2024-01-18)
128+
129+
### Fix
130+
131+
* fix(GH action): log directoryPath ([`10f1eae`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/10f1eae68802d89dd6f6c7441f52a2b904778fc7))
132+
133+
### Unknown
134+
135+
* Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`1d25412`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1d25412394b71c5ddb513871aded5ad8b3246b97))
136+
137+
138+
## v3.3.0-rc.7 (2024-01-18)
139+
140+
### Fix
141+
142+
* fix(GH action): explicit directory ([`43d510b`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/43d510b9639d5db438e2f4a1535fb735ef84dae0))
143+
144+
145+
## v3.3.0-rc.6 (2024-01-18)
146+
147+
### Feature
148+
149+
* feat(GH action): test path.normalize ([`f4cbe47`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f4cbe47e3dc84ff7e47a276abd6d28580af34406))
150+
151+
152+
## v3.3.0-rc.5 (2024-01-18)
153+
154+
### Feature
155+
156+
* feat(test): test npm i glob ([`368c1da`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/368c1da000bc0d0373b8c129dcf7b25b36930191))
157+
158+
### Unknown
159+
160+
* Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`c68c775`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c68c775b4eb1e3bd475368fcdb0936db64efda83))
161+
162+
163+
## v3.3.0-rc.4 (2024-01-18)
164+
165+
### Feature
166+
167+
* feat(test): test npm i ([`5f40b93`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5f40b93bb704b8a360477b81f16cad3c830b4f07))
168+
169+
### Unknown
170+
171+
* Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`74d430a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/74d430a30805ff54c051105d1d783631398e6125))
172+
173+
174+
## v3.3.0-rc.3 (2024-01-18)
175+
176+
### Feature
177+
178+
* feat(test): test commit ([`778ced1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/778ced16359c2584fae7f3873683d926428e50dc))
179+
180+
### Unknown
181+
182+
* Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into next ([`c37620c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/c37620cf81bdc01d47ea53433777902dc1d1289c))
183+
184+
185+
## v3.3.0-rc.2 (2024-01-18)
186+
187+
### Feature
188+
189+
* feat(test): test commit ([`5c258e7`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/5c258e7aafee1842c77ef93035085d56834f6300))
190+
191+
### Unknown
192+
193+
* Merge pull request #63 from Geode-solutions/feat/schemas
194+
195+
Feat/schemas ([`bf4274f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/bf4274fdca8480ee6b85ed4186a4cb29170e28cd))
196+
197+
* Merge branch 'next' into feat/schemas ([`51189d6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/51189d65fa6c25a8aa5600ed4b9267be77ff86fe))
198+
199+
* update pr ([`62f0a15`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/62f0a15e880719482056675c9c30f0db17148ab3))
200+
201+
202+
## v3.3.0-rc.1 (2024-01-17)
203+
204+
### Chore
205+
206+
* chore(licence): happy new year 2024 ([`da50872`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/da50872cdacaf45eb3560d8c60af23306402e01b))
207+
208+
### Feature
209+
210+
* feat(CD): dynamic version from semantic release
211+
change starting directory ([`8772780`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/877278047943d442ab7cd45c60ef81bb7b9d4f5c))
212+
213+
* feat(geode_objects): Add LightRegularGrid 2 & 3D ([`be319e4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/be319e4bbcf09d3fe9fe271e8cced2c81d23557f))
214+
215+
### Unknown
216+
217+
* Merge pull request #62 from Geode-solutions/feat/LightRegularGrid
218+
219+
Feat/LightRegularGrid ([`8d129aa`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8d129aa386fbf6e6a7162637b9b975c6ab22c4ae))
220+
221+
* upgrade dependencies, tests passing ([`cc9a25d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cc9a25ddd158dbcf9f3e61af66aced5064a9eee2))
222+
223+
* fix ([`fe53dc6`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/fe53dc6627b5008d054384718866122c3704d9a3))
224+
225+
* indentation ([`418ab72`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/418ab72f7f6b79046ed308336d691650c4a30dc0))
226+
227+
* test run ([`f6bd84a`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/f6bd84ae44d84eeaf9c278b38753d3694771f0dc))
228+
229+
* test ([`9967c01`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9967c0192cabdd563deb84f2936f63e9d5047abb))
230+
231+
* test ([`cc56c36`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/cc56c369cb30b25fbd30ea5f64e9b834b62885da))
232+
233+
* fix CD ([`69713e1`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/69713e1248abba4d253f225edf8956990a8b030a))
234+
235+
* test dynamic version ([`b43474c`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b43474cc8e2848d8d99f4d19f668202282e9fa5a))
236+
237+
* test ([`66e0232`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/66e023227169f32e9732ff0ff49b1d31a4a4e480))
238+
239+
* version 0.0.2 ([`9ea179d`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/9ea179d152e3a6d08781341afcc66b0cb036951f))
240+
241+
* test ([`6e2ce52`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/6e2ce528132646b4fda49aad2fd956e4e85ad52e))
242+
243+
* test ([`3d991b5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3d991b59244650db90b66f3d22ccf5d885a7bc2a))
244+
245+
* test npm setup ([`4883f3f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/4883f3f8ac385897fe4e7d390b5b2fe2a112ac85))
246+
247+
* package.json ([`20a3579`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/20a35794862f8884395d4fe24e1ba531aeb9b441))
248+
249+
* generate_schemas.js ([`a2b2c82`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/a2b2c82b6c057bea3593f2f759067030f6a19ea7))
250+
251+
* "is_viewable": True ([`b6a20e5`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b6a20e54147ed8307d95ab50ee21974d9805e1d2))
252+
253+
* fix PointSet2D keys ([`2c7fee0`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/2c7fee0cb0e2210ef00d678aacf95e94661fbf4f))
254+
255+
* add back PointSet2D ([`ad304a9`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/ad304a91119f3ca963944cd2d425e25f3b52a99f))
256+
257+
* add test data ([`e647f36`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e647f36546150dd8502174420cb4423cb44ac296))
258+
259+
* update dependencies ([`8f2f92f`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/8f2f92f1c64a8c32438cca48d25066bf9870f63b))
260+
261+
* ([`b8358b2`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/b8358b2516bf2ab5626ac3ba5ac796948c17b7f2))
262+
263+
* Merge pull request #61 from Geode-solutions/next
264+
265+
Next ([`e6deea0`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/e6deea04cb41dc3cc444bfbd78b3cbbb45c50091))
266+
267+
* Merge pull request #60 from Geode-solutions/chore/update_licence
268+
269+
chore(licence): happy new year 2024 ([`3969dda`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3969dda9f1abc737c6f56bcc93999f18aa93ec12))
270+
271+
* ([`3368611`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/3368611b58a85683a769cae58b0cc0d51d178cee))
272+
273+
5274
## v3.2.0 (2023-12-20)
6275

7276
### Unknown

app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
""" Packages """
2+
23
import os
34

45
import flask

config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
""" Flask configuration """
2+
23
import os
34

45

0 commit comments

Comments
 (0)