-
Notifications
You must be signed in to change notification settings - Fork 24
/
changelog.yml
9970 lines (9475 loc) · 291 KB
/
changelog.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- semver: 0.2.52
date: 2021-08-30T17:14:48.6307+08:00
packager: ""
changes:
- commit: d69977c64e9f3f1d6157a803959f9080604719ec
note: |-
Add new struct fields for cluster firewall (#60)
* Add new struct fields for cluster firewall
* Add firewall ID to Kubernetes cluster response struct
* Update KubernetesClusterConfig struct to match with latest create cluster API
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 6f7d2d147b622a300b893e827763ddd1f112172d
note: Update the changelog
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- semver: 0.2.51
date: 2021-08-20T12:14:51.369192+01:00
packager: ""
changes:
- commit: 63eb8ecec32ae5be6e9f6d0ceb2c13b16d1bb267
note: Add firewall ID to instance config (for creating instance) (#59)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- semver: 0.2.50
date: 2021-08-20T12:23:36.242834+08:00
packager: ""
changes:
- commit: 4a2e2643ca1789e4872237e0835846aaa665ac5c
note: |-
Exclude disk images with name containing "k3s" (#58)
* Exclude disk images with name containing "k3s"
* Update test for list disk images
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 51b3d43babc815cc240d6c99501db78a4c378050
note: Fix lint issues
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: cd1195dfa60d57e1da591963430e0c09f2df95dd
note: Fixing capitalisation of decodeERROR to go standards and UnknowError typo
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: e0bec13da9a80fa3918a011714ced02afd539c55
note: Add endpoints for team/permission management
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- semver: 0.2.49
date: 2021-07-16T12:30:09.316057+01:00
packager: ""
changes:
- commit: 14fc34c7e36117ef6f157b65f4e2f8b31bce1bb9
note: Remove unnecessary code from the error handler file and add new error handler
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- semver: 0.2.48
date: 2021-07-15T11:53:46.121998+01:00
packager: ""
changes:
- commit: 1bf187fd4a931290d35dd6f958d58a3974b892eb
note: Change de default error in case the error is not in the list
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- commit: cf996f9295eb3dbd5abf2a86ff9c2e228606a345
note: Added a new error handler
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- semver: 0.2.47
date: 2021-05-23T13:25:26.738282-04:00
packager: ""
changes:
- commit: d9a041df7e1b8cebf655f4014b9ef5d8b4fa5fc6
note: Fixed error in the recycle kuberntes node
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 267f348f2e404285cf4149f65c8bfae12869d2f2
note: Updated the Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.2.46
date: 2021-05-21T13:09:09.675418-04:00
packager: ""
changes:
- commit: f99bbb6ae86a8db55f93a0a50afdc5c57d387666
note: Added omitempty to some models, to prevent show empty result
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 63305185fe1c8f3e8ea4979b3a4b6341e3288ee3
note: Fixed test for the instance
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.2.45
date: 2021-05-10T19:01:56.384997-04:00
packager: ""
changes:
- commit: a9f4749fb821be83bc00884e1fbd5d7de929f624
note: Fixed error in the instance controller
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: bfb7b690a7b2670bad78e167cd409544c783658f
note: Added new error handler
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.2.44
date: 2021-05-05T15:35:27.258593-04:00
packager: ""
changes:
- commit: 7f556d7baea82d2865473a62227d6cfbb2bacf3b
note: Merge branch 'master' of https://github.com/civo/civogo
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 2459ccd5996ba324d34c314eba018dbd956682c0
note: Added the pool option to kubernestes object
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.2.43
date: 2021-05-04T14:36:19.830021-04:00
packager: ""
changes:
- commit: 0f3b7fb64f1abf43b0d2cca474d5e99ecf4fdc14
note: Added change to kubernetes and volume
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 47dce610da9a7723127fec2e1eb889aa22149082
note: Add cluster_id to volume creation
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 7a917e8e0bea22b2562d9d55b4d1e781c4416900
note: Fix CHANGELOG
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 419cda25a3b238ca9e7e9b8764b0ac8b34580da2
note: Add GetVolume call to save always returning then filtering down to a single volume
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 4884e404fea291d97a45ef152627546468e1cb5b
note: Add Status to volume
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 093df491fff19409feba5c1ec00a864761e63f73
note: Added region to volume attach/detach
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 9c1df9d1265f68cf4e43c71765b2b3a14c6097c9
note: Update CHANGELOG for 0.2.38
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 89995b6a3c11fa719cf4032fde44ef1aac7235a2
note: Update VolumeConfig to have a namespace attribute
author:
name: Andy Jeffries
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: d629abae9e8d247bbaad1c7d219818cc12d6dac4
note: |-
Update fake_client.go
Change the exported comment
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- semver: 0.2.37
date: 2021-04-08T18:36:06.453078-04:00
packager: ""
changes:
- commit: cd0f7879862db418cffc6ac247592581f172bc54
note: Added new methods for DiskImage
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.2.36
date: 2021-04-06T17:50:34.823396-04:00
packager: ""
changes:
- commit: af03bb1f5ad66e9052487dd0c8a58a6841bf3ccf
note: Added omitempty to kubernetes config, that way we only send the filled fields
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: dc3ea1df0ae34e25cc3f58941464de50cc37c1bc
note: Updated the changelog
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.2.35
date: 2021-04-02T09:06:28-04:00
packager: Andy Jeffries <[email protected]>
changes:
- commit: 772d0a1612fbf038120f1aa3dc4200b7550b4e50
note: Merge branch 'master' of https://github.com/civo/civogo
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: c47419cea0066134990e87d1e2e737a6b84c7088
note: Fixed error in the code, added a new handler for network error
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: ed132dec901c76543ccef5fac8f6288f80187db1
note: Updated the changelog
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 43e5e9a89fb7bdf03d65682afebe0f07fade2b43
note: Added new fields to kubernetes struct
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 699e53929987df042438444281d58d8071363803
note: Updated the changelog
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 1e9c4c700ffaa9b0fc037ca667e3610f47871e06
note: Merge branch 'master' of https://github.com/civo/civogo
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: ff8a577c5c93b2258016910721533fa98de080f8
note: Fixed error in the struct for InstalledApplication in kubernetes
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 0cf2bd6e0417c94bf0461137d7aaa2298874bb8d
note: Updated the changelog
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: f173564c6be0f5b7d6e72d4274bf902afdc0280d
note: Added network to the firewall struct
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: e2bd46f772f32145e74633c0973c7edccf776b8e
note: Added GetDefaultRegion to the region
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 9c6173fb794c52dc6c33d1dd6f4117bb7d6cf2a3
note: Updated the changelog
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 79f15aa1d17f1641461787b0acaa41f6f4e71658
note: Added default field to the region
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: b45dffe1afcb096985322f20956734e4b80f74d8
note: Updated the changelog
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 19e61587c19d7e959a5fb67bc43d2e673c0cb4da
note: |-
Feature/add region (#50)
* Added the region to the client, also add new error to the handler and add region to kubernetes
* Update the civogo lib to use region in all request
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: dfcbfaecabd8590f6ce0cbd49fddd32f61075b4f
note: |-
Clusternames should be considered case insensitive (#49)
This commit makes the following changes:
* FindKubernetesCluster is case insensitive now
* Test FindKubernetesCluster for case insensitivity
The current implementation is not optimal though, as the fuzzy matching does not fully support Unicode.
However this should fix most issues for now.
author:
name: Björn Heinrichs
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: c237384c2566853c1874618b56f3808c0d57d343
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: c5ae6fb346f25352c77277c5494a75837e815aff
note: Fixed check in handler for errors
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 5564e23594cba6c56411471181fd4818e3234687
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 346fe0ff40991b8d166dee7bc68048925f20e0ce
note: |-
Fixed lint check in the actions
Close #47
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: a0333a838477b52afbe49d784c04c3a1a9c324d8
note: |-
Fixed some bugs in the error handler
Close #44 #45
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: ce2a8a202812a703836bb25deb3ad2c058b55b29
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 3c3da053c9c572c0cf8fa53fbdb34fb66ecadf76
note: Added option to use proxy if is present in the system
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: d6c63e6316bffa2d8475ad49aeb67a078aeec921
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 405567d04342264662a1b2534c7625f2dfc6c20d
note: |-
Fixed the recycle option in Kubernetes
Close #43
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 4b69a79706e406f55059e5001b56c48d851c71bf
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 8ac5d69e54e7a2062a658fcb408c9c3df36bbcb4
note: Updated all find function to all command
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: dd52c16377b510e6f3204428e91864f57b206bcb
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: e7cd9f3bf9eca1b133fe7ea581fe9e9082d9fb50
note: Fixed an error in the struct of the creation of intances
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: ede2e4c16f26ee40d2f6667b0a3ae6f5997f77d9
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: c1e741339cf2649d23be4221038a341f70354f72
note: Added two more error to the error handler
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: b0996760a7f270ab96b1fa1bddeca3fce677a523
note: Fixed error in the DNS test
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: d6191cc66fa48dd378750b1cbe1b7a916ed1581c
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 6e3d7b1e23638f3e547dfbf46721b73156de5f5b
note: Added new record type to DNS
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: fc9cd8ff4b520e066d91684776f14805029b5715
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 7a0e384f1a206b5e2947bfdb13d80cc6f36ace21
note: improved error handling in the library
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 0aa9f6bf5ff71f44df9898cd9b2e76b68b0d8749
note: |-
Update test.yml
remove macos
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 73500add744d21de8426963d233fb1130c88a354
note: |-
Update test.yml
use 'os' instead of 'platform' for job matrices
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: f3d121d848f622ab2484d64fc438deaa2b825f9c
note: |-
Update test.yml
Left alone Go 1.14 for the test
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 2df11af67fb7cb803025322e6b9ec3d01c62c5de
note: |-
Update test.yml
Remove test form Go 1.12 and added test form 1.15
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: c024bec299949116e03727b2b5a21c657267f3c9
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: d8b735350335f4d83b5aca63df666c0e0301c716
note: Updated all test
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 63a3ae563a9598e217d72f4556b498a689b27db1
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 4095fdfc81941f24ec77f72fe6b85a8c5f320667
note: Added constant errors to the lib
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: b11ac2760e0169dc9892d7787a0c61d8c7a50a84
note: Update the chnage log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 59a86819f532221f86fe0482eb5a6786c3253b85
note: Added FindTemplate fucntion to the template module
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 4cc1b488aa148a9733b6e2d3309264df8e57ba87
note: Update the change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 21b44c0e538c42e386ababbdaec877e28ca2d0e1
note: |-
Revert "Update the change log"
This reverts commit 8cfac7bccda269767dad34f431659476da3718a5.
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 8cfac7bccda269767dad34f431659476da3718a5
note: Update the change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: c983d56e0287a996bfb8ef625b4be075400b85e3
note: |-
Add constant errors (#41)
* Added a constant errors
* Added error handler to the system
* Modify the error handler for kubernetes module
* Fix message in the errors.go
* Added new feature
* Added all error declaration and the editorconfig
* Added the rest of the errors
* Added the decoder to the rest of controller
* Removed unnecessary comment
* Added a new error help to README
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: f6135e298230a0bab389fdcc1e9ff257e4b393b7
note: |-
Added CPU, RAM and SSD fields to Instance struct
and KubernetesInstance struct
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: b74d3224c16f179105b2ca0f604a8431279d9170
note: |-
Added new feature
added master_ip to the kubernetes response,
to be able to use it in the cli and in the terraform provider
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: c49389ab6568b274fd5d1127c0faf14fe06728b7
note: Fixed error in the cluster upgrade cmd
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 9c3921814c5ee645a864f0d762884d30752dd21a
note: Add the new UpgradeAvailableTo field to KubernetesCluster
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 59b86eba96a0a68b46c42b949dbbec76901875f7
note: |-
Change application struct in the kubernetes module (#39)
* fix(kubernetes): Change application struct
- Change the applications struct, the configuration field, add custom struct for that field
BREAKING CHANGE: No
* fix(kubernetes): Added comment in struct
- Added comment to the ApplicationConfiguration struct inside kubernetes module
BREAKING CHANGE: No
author:
name: Alejandro JNM
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: c1839b96b8a3ca88404da075e0bbf648f0f95d32
note: |-
Change application struct in kubernetes
Change the applications struct, the `default` field from string to bool
author:
name: Alejandro JNM
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 923b509b5ba5e589ad2ce0138e561ecbf192b9ee
note: |-
added new way to search in network
Add the option to search by Label when you use the FindNetwork
author:
name: Alejandro JNM
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 1906a5fcaf704a03f48ca52f2e66d38b32f134ce
note: |-
feat(kubernetes): new added option at the moment scaling down the cluster (#35)
Now if you are scaling down by one, you can give a hint on the node's
name to be destroyed using the node_destroy param
BREAKING CHANGE: No
author:
name: Alejandro JNM
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 6ce671a875acd36a36314b9a98fd3f864ce67cf7
note: |-
Add pagination for Kubernetes clusters (#34)
* (hotfix) changed the kubernetes cluster config
- Modify the kubernetes cluster config to add pagination
- Changed the old kubernetesCluster in favor of kubernetesItem
BREAKING CHANGE: No
* (hotfix) fixed comment
- fix comment inside kubernetes.go
BREAKING CHANGE: No
* (hotfix) fixed code style
- fix code style in kubernetes.go
BREAKING CHANGE: No
* refactor(kubernetes): modify the struct for kubernets object
- modify the struct for kubernets object
- fixed error in code
BREAKING CHANGE: No
author:
name: Alejandro JNM
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 77d299673245240c5e0e1804975de4d7aee02d9a
note: |-
(hotfix) change snapshot config
- remove `form` from snapshot config and change by `json`
BREAKING CHANGE: No
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: d0635c7e96f4509ebdabe9a4deb8acc0cc0c26d4
note: Change PublicIPRequired to a string to support IP moving
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: c73d51fa77fac7f76213c697982fce3c3dfe7f0d
note: |-
add template endpoints
* add new feature to Template module
- You can now list all templates, create a new one, update and delete any templates that belonged to the user
BREAKING CHANGE: No
author:
name: Alejandro JNM
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: d20f49e0bb1d86ab27b776e668a94f9cc006304d
note: Minor tweaks to SSH key struct
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: f5eab5e2065315493319829ed213b2732e80f154
note: |-
update the ssh key file
Fix some bug reported, in comment and variables
BREAKING CHANGE: No
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: fdf845a601aac8e283f0bdb580c41018d3b737cc
note: |-
Add new option to ssh
Now you can create, update and delete the ssh keys, at the same time we add ID to the client to return the ID when the backend does it, as in the case of creating an ssh key
BREAKING CHANGE: No
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 95ae34b13fe3a49d18805975a5691e7f37c93c63
note: Fail the build if any lint issues
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 588340b6dfe663e4b7b7dd13b5bc36f1523a538e
note: |-
add rename endpoint for firewall
Now you can rename a firewall using RenameFirewall function, It is no
longer necessary to delete the firewall to rename it
BREAKING CHANGE: No
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 0961777679546b5521fbc9a7bf0c0b292dd53c9b
note: |-
Updated the lib to use json and not form for all request
* We change the client to send all request in JSON format, to avoid build a custom form procesator
* Fix failing test - had trailing whitespace
* Change all test to use the new way in client.go
* Add Reason to the HTTPError struct, now we return the reason of the error from the server
author:
name: Alejandro JNM
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: a8ebeb95a5cd84ea46b5dedb487b276901580196
note: Add body to client error responses
author:
name: Andy Jeffries
email: [email protected]
committer:
name: Andy Jeffries
email: [email protected]
- commit: 5ccea39dd4e8bf03139b64e07f7af025b84c5cd8
note: |-
Merge pull request #25 from alejandrojnm/hostfix/add_function_firewall
Hostfix/add function firewall
author:
name: Andy Jeffries
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 7b07ee24a3525d8de8e3ee1dda8b755f5cdea526