-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
4869 lines (4869 loc) · 113 KB
/
CHANGELOG
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
---
v1.5.0-pre.142:
- sha: adcafd645e970c1615d02180149617c173e0ea25
time: '1565043692'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: adcafd64
date: '2019-08-05'
- sha: 570d50e8cc2c17e7432034b0b51cb39c7ffa6346
time: '1565043679'
tags: []
message: Add artist models!
hash: 570d50e8
date: '2019-08-05'
- sha: b3259b850754e4e4155d2f79ec6c90e7422348d8
time: '1565040692'
tags: []
message: Revert the disk map on magick because apparently that just breaks everything.
hash: b3259b85
date: '2019-08-05'
- sha: 9070cbd8e1a7d191abfd23a1732e00ce4d33bb12
time: '1564706442'
tags: []
message: Add disk limit to config.
hash: 9070cbd8
date: '2019-08-02'
- sha: c55ca38e266c541697f8bbb983e0ffe438f40683
time: '1564706237'
tags: []
message: Add disk limit to config.
hash: c55ca38e
date: '2019-08-02'
---
v1.5.0-pre.141:
- sha: 6327094603a06785cc87bc893077888eb3667b5c
time: '1564624897'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: '63270946'
date: '2019-08-01'
- sha: 125b5c77eaf3e16af1417d80e9c6f8a1f6c86208
time: '1564624890'
tags: []
message: Missed one start_bridge call. Paperclips!
hash: 125b5c77
date: '2019-08-01'
---
v1.5.0-pre.140:
- sha: 55a0387c048d344220369081d072f34b39843390
time: '1564621776'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 55a0387c
date: '2019-08-01'
- sha: 04a5eb6f39895f7e687078a7a479550cea70fc3d
time: '1564621768'
tags: []
message: Only show processed images in image browse page.
hash: 04a5eb6f
date: '2019-08-01'
---
v1.5.0-pre.139:
- sha: 71e3ddbdf3a90ad1d1c924c39d4eb0844907b094
time: '1564617685'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 71e3ddbd
date: '2019-08-01'
- sha: af7c2b180f66be6c6c3985aa6d06ebe8202e23b0
time: '1564617676'
tags: []
message: Try and reconnect to Redis.
hash: af7c2b18
date: '2019-08-01'
- sha: b50db59ce132fd8a5871449b300e87e4bb17b980
time: '1564497684'
tags:
- ci skip
message: v1.5.0-pre.138
hash: b50db59c
date: '2019-07-30'
- sha: 2ca10b57f8b48a29939c0f24ee7bc08bf76804d8
time: '1564495686'
tags: []
message: Will doesn't maintain this anymore. There is no will, only Mau.
hash: 2ca10b57
date: '2019-07-30'
- sha: 88dde14ca56b75433fd3a3d4bb86d5bd7f75fd2a
time: '1564495570'
tags: []
message: Update README.md
hash: 88dde14c
date: '2019-07-30'
---
v1.5.0-pre.138:
- sha: 2ca10b57f8b48a29939c0f24ee7bc08bf76804d8
time: '1564495686'
tags: []
message: Will doesn't maintain this anymore. There is no will, only Mau.
hash: 2ca10b57
date: '2019-07-30'
- sha: 88dde14ca56b75433fd3a3d4bb86d5bd7f75fd2a
time: '1564495570'
tags: []
message: Update README.md
hash: 88dde14c
date: '2019-07-30'
---
v1.5.0-pre.137:
- sha: 6af4bc9bbfef95eb6d95f736ff0c4b7d93d55f85
time: '1564463233'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 6af4bc9b
date: '2019-07-30'
- sha: 8ef7faee346367fc812a6c2fefbb76d2cfda1742
time: '1564463223'
tags: []
message: Add GKE commands and try fixing cloudbuild.
hash: 8ef7faee
date: '2019-07-30'
- sha: b02b5153a86046e4a798161d00deb1bd3a84e88b
time: '1564461567'
tags:
- ci skip
message: v1.5.0-pre.136
hash: b02b5153
date: '2019-07-30'
- sha: 5c277e551a7aa1b5ce1e87bd40968d25a67f43c2
time: '1564460039'
tags: []
message: Use Kaniko executor for docker builds.
hash: 5c277e55
date: '2019-07-30'
- sha: 7730d5a889434af630fe45cc16f4d32a8db954a2
time: '1564459652'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 7730d5a8
date: '2019-07-30'
- sha: 46dcefc414828c91f6f25c7df640b9546e4d5705
time: '1564459646'
tags: []
message: Oh, I broke Cloudbuild.
hash: 46dcefc4
date: '2019-07-30'
---
v1.5.0-pre.136:
- sha: 5c277e551a7aa1b5ce1e87bd40968d25a67f43c2
time: '1564460039'
tags: []
message: Use Kaniko executor for docker builds.
hash: 5c277e55
date: '2019-07-30'
- sha: 7730d5a889434af630fe45cc16f4d32a8db954a2
time: '1564459652'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 7730d5a8
date: '2019-07-30'
- sha: 46dcefc414828c91f6f25c7df640b9546e4d5705
time: '1564459646'
tags: []
message: Oh, I broke Cloudbuild.
hash: 46dcefc4
date: '2019-07-30'
---
v1.5.0-pre.135:
- sha: 22ee2e5681ab1922753fdbc62364ace1af61ea56
time: '1564458420'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 22ee2e56
date: '2019-07-30'
- sha: a75ded6cb6466dbbb7d7de4db4489d3817749af7
time: '1564458393'
tags: []
message: Using NVM for production Docker image instead, since that seems to actually,
properly install the right Node version.
hash: a75ded6c
date: '2019-07-30'
---
v1.5.0-pre.134:
- sha: d9144bf0dd14625492c7045f32fd09319fb2160f
time: '1564455488'
tags: []
message: Add Sendgrid integration for Google Cloud.
hash: d9144bf0
date: '2019-07-30'
---
v1.5.0-pre.133:
- sha: a0f0a7c2d97a91ddd11f4eb6e1144dd0ba5bcd6f
time: '1563943144'
tags: []
message: Make a directory before copying files to it.
hash: a0f0a7c2
date: '2019-07-24'
---
v1.5.0-pre.132:
- sha: 9f0d24ef77eb34868c8c3bf6f6f76e9044cb2e3b
time: '1563598771'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 9f0d24ef
date: '2019-07-20'
- sha: 21c37b50143d7d6d2de97bc6479de55a930c4748
time: '1563598764'
tags: []
message: Add character version input.
hash: 21c37b50
date: '2019-07-20'
- sha: b2b46c117926b99aab2c8b7c399dda8c9341745e
time: '1563595960'
tags: []
message: Kube limits.
hash: b2b46c11
date: '2019-07-20'
---
v1.5.0-pre.131:
- sha: 8a5f88b826488ece7465a7145c7770eed2cb4cbd
time: '1563590734'
tags: []
message: 'Merge pull request #66 from eiwi1101/dependabot/bundler/chartkick-3.2.1'
hash: 8a5f88b8
date: '2019-07-20'
- sha: a269fc802997c360c7ba15bc8c9b3a5dd2d32dbf
time: '1563590054'
tags: []
message: Bump chartkick from 3.0.2 to 3.2.1
hash: a269fc80
date: '2019-07-20'
---
v1.5.0-pre.130:
- sha: 700f8b6d3d74fab43eb6b501ccc54e7e8aa466a0
time: '1563586631'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 700f8b6d
date: '2019-07-20'
- sha: c750ea67d2c1a10dde5a1566aaca56e71ace561e
time: '1563586625'
tags: []
message: A bit more force starting of the gcloud config on aws.
hash: c750ea67
date: '2019-07-20'
- sha: 0d359a575c516bee7441924dd9d88652f8100fb8
time: '1563586570'
tags: []
message: Add kubernetes resource requests.
hash: 0d359a57
date: '2019-07-20'
---
v1.5.0-pre.129:
- sha: acb3bd86f40081c2949122b3c2679bd24e1c0639
time: '1563582187'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: acb3bd86
date: '2019-07-20'
- sha: 67555f311e079f55461589bc8ca83eae1ce582e5
time: '1563582180'
tags: []
message: Debug the deploy.
hash: 67555f31
date: '2019-07-20'
---
v1.5.0-pre.128:
- sha: b0b54c514bd136f18e5412951d566309ab8e0f14
time: '1563579447'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: b0b54c51
date: '2019-07-19'
- sha: 2e2bfaee18451ce34da17457f6fd70815bccc45a
time: '1563579436'
tags: []
message: Use init instead of systemd :(
hash: 2e2bfaee
date: '2019-07-19'
---
v1.5.0-pre.127:
- sha: 9a7b3164427fb8d97f78a1b6c56f311092bb4f95
time: '1563537194'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 9a7b3164
date: '2019-07-19'
- sha: a315042b2c1f088598350924d932b4730750d444
time: '1563537187'
tags: []
message: Swallow queue errors.
hash: a315042b
date: '2019-07-19'
---
v1.5.0-pre.126:
- sha: 0e23e9b4a5526fbcd54d5947f30d1f0929775a14
time: '1563535269'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 0e23e9b4
date: '2019-07-19'
- sha: fbe2dc23e0dc9d08fb085c755332460863bebce9
time: '1563535263'
tags: []
message: Use systemctl to manage google port forwarding.
hash: fbe2dc23
date: '2019-07-19'
---
v1.5.0-pre.125:
- sha: eb19ddbf576d055b5564d8589b3696025b191bd0
time: '1562725118'
tags: []
message: Allow filter on violation type.
hash: eb19ddbf
date: '2019-07-10'
- sha: dd1efd845a1d138dc44ca2f1b979c2fdfbc6b67c
time: '1562725054'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: dd1efd84
date: '2019-07-10'
- sha: 57b0a76344ca5ee7e7354528a10e3d8253b96f0c
time: '1562724965'
tags: []
message: Fix moderation reports for removed characters.
hash: 57b0a763
date: '2019-07-10'
- sha: 90974ef1990bcffd5c92027f39634139b6a480db
time: '1562723912'
tags:
- ci skip
message: v1.5.0-pre.124
hash: 90974ef1
date: '2019-07-10'
- sha: 3d745687c6e67535e02b8a2c03ddca5ac57b854c
time: '1562722577'
tags: []
message: Conditional image on admin moderation cards.
hash: 3d745687
date: '2019-07-10'
- sha: d12e2897366cc10968db01c08679c2f471c878ed
time: '1562722476'
tags: []
message: Some more bug fixes. Probably related to invalid images during processing.
hash: d12e2897
date: '2019-07-10'
- sha: 30c13400ec39511fa43754217aaf94513e2cb503
time: '1562722097'
tags: []
message: Fix currentSize path bug thing.
hash: 30c13400
date: '2019-07-10'
- sha: 9e2e04975542f6c5c9f0296cb3f8c092e859714f
time: '1562721800'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 9e2e0497
date: '2019-07-10'
- sha: 4dca0342823c312b94d5788ce277bda541600132
time: '1562721794'
tags: []
message: Finalized admin reporting interface.
hash: 4dca0342
date: '2019-07-10'
---
v1.5.0-pre.124:
- sha: 3d745687c6e67535e02b8a2c03ddca5ac57b854c
time: '1562722577'
tags: []
message: Conditional image on admin moderation cards.
hash: 3d745687
date: '2019-07-10'
- sha: d12e2897366cc10968db01c08679c2f471c878ed
time: '1562722476'
tags: []
message: Some more bug fixes. Probably related to invalid images during processing.
hash: d12e2897
date: '2019-07-10'
- sha: 30c13400ec39511fa43754217aaf94513e2cb503
time: '1562722097'
tags: []
message: Fix currentSize path bug thing.
hash: 30c13400
date: '2019-07-10'
- sha: 9e2e04975542f6c5c9f0296cb3f8c092e859714f
time: '1562721800'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 9e2e0497
date: '2019-07-10'
- sha: 4dca0342823c312b94d5788ce277bda541600132
time: '1562721794'
tags: []
message: Finalized admin reporting interface.
hash: 4dca0342
date: '2019-07-10'
---
v1.5.0-pre.123:
- sha: e9a272bdda1f47a791b0a3fec046a9848f3b5d5b
time: '1562719797'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: e9a272bd
date: '2019-07-10'
- sha: f6ba3369dc55c85303c026955c45af2b99db3bfe
time: '1562719783'
tags: []
message: Fix report mailer for admins, add report to admin panel, add auto_resolve
button and pass button (which is useless right now)
hash: f6ba3369
date: '2019-07-10'
- sha: aecc202ab43b2ea71ac23686c5e80b377dbe911d
time: '1559207923'
tags: []
message: Add forum discussion & posts to GraphQL
hash: aecc202a
date: '2019-05-30'
- sha: ef115f8bc357bd934e1bb521b542220943b4343f
time: '1559205653'
tags: []
message: Add forum to GraphQL, add system_owned flag.
hash: ef115f8b
date: '2019-05-30'
- sha: 5574dec71238e2b26958d8f66031f7e5bd9d45da
time: '1559201353'
tags: []
message: Kube update config.
hash: 5574dec7
date: '2019-05-30'
---
v1.5.0-pre.122:
- sha: 6aaa02ef4565fa23d676f2b20872dae00aa71318
time: '1558933873'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 6aaa02ef
date: '2019-05-27'
- sha: 1c0dc0744ce0964634cb36ee0f70541ff5a90749
time: '1558933866'
tags: []
message: Recompile assets I guess.
hash: 1c0dc074
date: '2019-05-27'
- sha: d2a0ccf833b698969924051ad7e1e07c48146852
time: '1558933856'
tags: []
message: Recompile assets I guess.
hash: d2a0ccf8
date: '2019-05-27'
---
v1.5.0-pre.121:
- sha: b084e85471a41b80c5f12a5a7a968781fc7f5ffa
time: '1558932210'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: b084e854
date: '2019-05-27'
- sha: 5116765f593271f336f922b41e199d6b143e0497
time: '1558932205'
tags: []
message: Fix bundle, which sometimes breaks??
hash: 5116765f
date: '2019-05-27'
---
v1.5.0-pre.120:
- sha: bca931d94c0a4b73b5338f0d01099c9b8b452a2c
time: '1558927956'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: bca931d9
date: '2019-05-27'
- sha: 53564851fa236114f306d0b44b0ee5d51a7db245
time: '1558927950'
tags: []
message: Apply kube config.
hash: '53564851'
date: '2019-05-27'
---
v1.5.0-pre.119:
- sha: a07d77ffe94cc87db48d8941eed4f32dd2b37263
time: '1558901423'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: a07d77ff
date: '2019-05-26'
- sha: 6c35310f471eaf9bf3c774621abb77389312a8d2
time: '1558901417'
tags: []
message: Add cronjob to Kube.
hash: 6c35310f
date: '2019-05-26'
---
v1.5.0-pre.118:
- sha: e34c14f7f195180a5eaae4f1ace9823dada69696
time: '1558899359'
tags: []
message: Fix spec.
hash: e34c14f7
date: '2019-05-26'
- sha: 0d5e338bc262356bc18746cf3a6e3f5c71e7e66d
time: '1558807355'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 0d5e338b
date: '2019-05-25'
- sha: 0a72d1fd7fe5b4e1467d3ab6d0917944eeb0ed4c
time: '1558807349'
tags: []
message: Add counts to /health.json
hash: 0a72d1fd
date: '2019-05-25'
---
v1.5.0-pre.117:
- sha: c7c2ec3917d0ee58b70ea9ea56e8738239ec45ad
time: '1558802309'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: c7c2ec39
date: '2019-05-25'
- sha: 64d0fb5ad7f36f2f43c54dce9da3fc1c31bb6179
time: '1558600050'
tags: []
message: derp
hash: 64d0fb5a
date: '2019-05-23'
- sha: 17bcae5cea506d2cfbe9dcf826184a18d1ef2687
time: '1558597846'
tags: []
message: Attempt to fix Resque forking?
hash: 17bcae5c
date: '2019-05-23'
- sha: 4683cbc6846ce324380f84da6067baf225acd135
time: '1558593677'
tags: []
message: User severity for Goog?
hash: 4683cbc6
date: '2019-05-23'
- sha: dc939ae29adb5719e0c20f7c016b65ce956c733c
time: '1558592585'
tags: []
message: I'm a whole idiot.
hash: dc939ae2
date: '2019-05-23'
- sha: 4da1002b5b6a334a04700caa8ad3dbacd9bd2784
time: '1558588647'
tags: []
message: Directly run commands instead of using foreman in prod.
hash: 4da1002b
date: '2019-05-23'
- sha: edc3ad6d527f635ab295d14b37625eddb7099d21
time: '1558584195'
tags: []
message: Appender to STDOUT???
hash: edc3ad6d
date: '2019-05-23'
- sha: 01211aec62dbcfd0a33747d0b6cfeb011c751317
time: '1558576448'
tags: []
message: Add config map cache to kube.
hash: 01211aec
date: '2019-05-23'
- sha: 3dd42986abf2439a9396f95e9121e60de7150f4e
time: '1558570458'
tags: []
message: Add json logging again, without ougai.
hash: 3dd42986
date: '2019-05-23'
---
v1.5.0-pre.116:
- sha: 15389eee109349048971ed51a9312bbf08af24f6
time: '1558495907'
tags: []
message: Fix broken spec with image placeholder.
hash: 15389eee
date: '2019-05-22'
- sha: d765221e84fa453a67b4fb973fd71c4d65e3684b
time: '1558494770'
tags: []
message: Adjust queue priority to check out DPC's args, too.
hash: d765221e
date: '2019-05-22'
- sha: 521857cefaf3a00a58242415acd3b2d6f1dc6a33
time: '1558493738'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 521857ce
date: '2019-05-22'
- sha: 309690cde472dfaf0a18eeb19ebefa14660c4e84
time: '1558493732'
tags: []
message: Show a processing placeholder to appease the "broken" look.
hash: 309690cd
date: '2019-05-22'
---
v1.5.0-pre.115:
- sha: a50a43914b03cae79d33ef0587abfd4754e82c66
time: '1558491679'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: a50a4391
date: '2019-05-22'
- sha: bec368de645b8360a87520d63939b7c233335abc
time: '1558491674'
tags: []
message: Forgot to uh, add files.
hash: bec368de
date: '2019-05-22'
---
v1.5.0-pre.114:
- sha: 883d250ac293467c0375be645aa30e6a4cf552f3
time: '1558486896'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 883d250a
date: '2019-05-22'
- sha: 6b96bfe2713460f7192571e3ed3065033253020f
time: '1558486890'
tags: []
message: Add user avatar process in background, add queue priority to google for
admins.
hash: 6b96bfe2
date: '2019-05-22'
---
v1.5.0-pre.113:
- sha: 52161a3cbd713c2d050b9d0cc25f7f47dfb436b9
time: '1558438232'
tags: []
message: Fix specs and also split queue.
hash: 52161a3c
date: '2019-05-21'
- sha: bc77f609c374225b82105aa166fa59637a614446
time: '1558435452'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: bc77f609
date: '2019-05-21'
- sha: 30574bf8d51c5025b73226c4588175bde4c8a1c5
time: '1558435446'
tags: []
message: Use Resque for image_phash_job
hash: 30574bf8
date: '2019-05-21'
- sha: 57a7e926a3cc6a1d44c4e544eb9092cc6c202b32
time: '1558435204'
tags: []
message: Merge branch 'kube2'
hash: 57a7e926
date: '2019-05-21'
- sha: e371ce5a30af579e3f3288b32535535e0f6793e6
time: '1557700588'
tags: []
message: Notify after commit, not after create.
hash: e371ce5a
date: '2019-05-12'
- sha: bc9fb7ad8af956da123231c48a5f4c253db4a8e2
time: '1557700483'
tags: []
message: Remove transaction around conversation creation, since that seems to be
causing trouble with the GraphQL broadcast.
hash: bc9fb7ad
date: '2019-05-12'
- sha: b2c8fdb62b49c24402a25cabed0f3de855b09d63
time: '1557699988'
tags: []
message: Allow cable from Kube.
hash: b2c8fdb6
date: '2019-05-12'
- sha: 1b4a46a29699898ed7899369f0555cbd5cd519a8
time: '1557660214'
tags: []
message: Goooogle use resque, it's running, I promise.
hash: 1b4a46a2
date: '2019-05-12'
- sha: 55b6966d085c7db1872c67a0dcc3025bc0cf5620
time: '1557658159'
tags: []
message: Clear .env from Foreman startup.
hash: 55b6966d
date: '2019-05-12'
- sha: b9aac9b3b1e0831bfc68eaa9cc038c47d89684eb
time: '1557650127'
tags: []
message: Debug log redis path.
hash: b9aac9b3
date: '2019-05-12'
- sha: 6563ea38fcec3cfe90ac902880c6dac0049d91b5
time: '1557645383'
tags: []
message: Expose port at 3000 in prod.
hash: 6563ea38
date: '2019-05-12'
- sha: 88f2bf009eecefc596d24172f68c491fb6d5417a
time: '1557643356'
tags: []
message: User revision id!
hash: 88f2bf00
date: '2019-05-12'
- sha: 589fa28c6126dc267c252e4fc27d18837fbb9147
time: '1557641580'
tags: []
message: Env for all!
hash: 589fa28c
date: '2019-05-12'
- sha: b30387cb092f13025b4468a18c6833faaabd60c5
time: '1557640513'
tags: []
message: No circle because that image is very picky.
hash: b30387cb
date: '2019-05-12'
- sha: 16394ebaae5404f1f0f1f0b4e22d9e01e2cb770a
time: '1557636405'
tags: []
message: Increase node swap.
hash: 16394eba
date: '2019-05-12'
- sha: 41c3c1afea7db95ed8e31cd5183566756155d39c
time: '1557635937'
tags: []
message: Pull cloud build cache.
hash: 41c3c1af
date: '2019-05-12'
- sha: 4ab89fd1a4ef8c37b8cf0990a570b807419055b5
time: '1557635164'
tags: []
message: Limit node.
hash: 4ab89fd1
date: '2019-05-12'
- sha: b7dbbcdd394c929cb611c9775f651b1696e81a6a
time: '1557633940'
tags: []
message: Timeout in seconds?
hash: b7dbbcdd
date: '2019-05-12'
- sha: 35775da03f0c17b1cbc0469331de4cb9d657d32d
time: '1557633909'
tags: []
message: Fakkin commas.
hash: 35775da0
date: '2019-05-12'
- sha: 628fe9069216e41981c2c0912f4e74442376dc10
time: '1557633750'
tags: []
message: Fix yaml?
hash: 628fe906
date: '2019-05-12'
- sha: 52c81a639bcf4b38b70affd7da8589d68f4f1525
time: '1557633608'
tags: []
message: Kube kubing.
hash: 52c81a63
date: '2019-05-12'
- sha: 5085d78b5bb78dc7a5d5ef0bef37873bd2498e22
time: '1557625683'
tags: []
message: Development docker container runs!
hash: 5085d78b
date: '2019-05-12'
---
v1.5.0-pre.112:
- sha: 26f2d8b4171dad3f546e659414163ba2a3d5a1a1
time: '1558432178'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 26f2d8b4
date: '2019-05-21'
- sha: 1c8e2d283cb6fa20fcced97b68f3c5c7e50fd04c
time: '1558432173'
tags: []
message: Bind nohup outputs.
hash: 1c8e2d28
date: '2019-05-21'
---
v1.5.0-pre.111:
- sha: 0e577ac12b2b13e608d2cfd84a44f6256c42a3f7
time: '1558426607'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 0e577ac1
date: '2019-05-21'
- sha: f8fddf71cff02b7a153504b12983d81a83495b8e
time: '1558426603'
tags: []
message: Add kubeconfig env var.
hash: f8fddf71
date: '2019-05-21'
---
v1.5.0-pre.110:
- sha: 63b018686a253dfe57eb687405f925f4d7dbd305
time: '1558424367'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 63b01868
date: '2019-05-21'
- sha: abd87e6805c49cc7697d2ba49782c1e6990a1cf7
time: '1558424363'
tags: []
message: Don't fail if gcloud install exists.
hash: abd87e68
date: '2019-05-21'
---
v1.5.0-pre.109:
- sha: 24386ad2369519074be2decc21f0db3519bb83c2
time: '1558422851'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 24386ad2
date: '2019-05-21'
- sha: 676b51b1ec778e2adff586b8ae0dad215c3156e0
time: '1558422846'
tags: []
message: Yumdownloader also requires -y?
hash: 676b51b1
date: '2019-05-21'
---
v1.5.0-pre.108:
- sha: 2c0dc9ea18e227c63594faffd01100357c8782aa
time: '1558415816'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 2c0dc9ea
date: '2019-05-21'
- sha: fb30bac613a11deb1e4cddeaba65a392d2c21681
time: '1558415811'
tags: []
message: Yum -y was holding things up forever.
hash: fb30bac6
date: '2019-05-21'
---
v1.5.0-pre.107:
- sha: f983f79103f1e8202cb13bc79c29ea0db2e82761
time: '1558412506'
tags: []
message: Don't overwrite python, that broke AWS :(
hash: f983f791
date: '2019-05-21'
- sha: 2b24a2fc6efc5ef602c28fce9e36ea9ca62359ee
time: '1558412233'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 2b24a2fc
date: '2019-05-21'
- sha: 9064774a2225bb523e745da4517bb51e786fe44d
time: '1558412228'
tags: []
message: Config lint!
hash: 9064774a
date: '2019-05-21'
---
v1.5.0-pre.106:
- sha: 803a942487c1e649a1a0abd96450a1c7a91686dd
time: '1558406240'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 803a9424
date: '2019-05-21'
- sha: f09ed03c7e599eef34d00514a5e9f1e56eb6e908
time: '1558406232'
tags: []
message: Wow thanks YAML lint.
hash: f09ed03c
date: '2019-05-21'
---
v1.5.0-pre.105:
- sha: 0d30ee2a6519e72057a53dfe1b019bf4c2e9b233
time: '1558388567'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 0d30ee2a
date: '2019-05-20'
- sha: ac4b17a51f5624a8e9ac58a1e3dadea63a264470
time: '1558388563'
tags: []
message: Change gcloud repo setup?
hash: ac4b17a5
date: '2019-05-20'
---
v1.5.0-pre.104:
- sha: d479d0463a41d5619390836b44ab15522d1d412d
time: '1558387093'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: d479d046
date: '2019-05-20'
- sha: 5be4fa1b75b0e0815992faca2002a412a3b487d5
time: '1558387089'
tags: []
message: Add gcloud repo
hash: 5be4fa1b
date: '2019-05-20'
---
v1.5.0-pre.103:
- sha: 306d38080307cebb6cd36b9b644e0b602b640fdd
time: '1558385813'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 306d3808
date: '2019-05-20'
- sha: 9e0f31561bf8d9842cea3ff54001b03d82b22ecd
time: '1558385808'
tags: []
message: Fix kube tunnel?
hash: 9e0f3156
date: '2019-05-20'
---
v1.5.0-pre.102:
- sha: 3a38ba3b1e6cb753feb6c22f6a830a011f73bf50
time: '1558383946'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 3a38ba3b
date: '2019-05-20'
- sha: ea4b625e3916dc03ee55f65eb7f7a477fe0be7a0
time: '1558383941'
tags: []
message: Try configuring google cloud?
hash: ea4b625e
date: '2019-05-20'
- sha: 5027bc0b95badf83ca6fa56c29587b00a2c76e24
time: '1557616553'
tags: []
message: Merge branch 'kube'
hash: 5027bc0b
date: '2019-05-11'
- sha: 82e2a21e6e61aec473487f7aca013def02ca9877
time: '1556989584'
tags: []
message: Package redis chagne stuf.
hash: 82e2a21e
date: '2019-05-04'
- sha: 1bc7abb840d3d79d615ea6322becfd8c1fe5810c
time: '1556905009'
tags: []
message: Remove Ougai logging??
hash: 1bc7abb8
date: '2019-05-03'
---
v1.5.0-pre.101:
- sha: 66cc0503aaa91f27839e2f411f503f6f9895cb2d
time: '1556996668'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: 66cc0503
date: '2019-05-04'
- sha: 511906a6a0859788ef8dad21b077b37c8dd08009
time: '1556996651'
tags: []
message: DO WE HAVE FIX?
hash: 511906a6
date: '2019-05-04'
- sha: 8d6181ab158bb63fb39e87a692379717eb47cc49
time: '1556993630'
tags:
- ci skip
message: v1.5.0-pre.8
hash: 8d6181ab
date: '2019-05-04'
- sha: 4f8cb1b3323717f8dc0ad759aca86bcc09b5b7bb
time: '1556992877'
tags: []
message: Fix gcloud.
hash: 4f8cb1b3
date: '2019-05-04'
- sha: c0c202dbcdc6395a85cc6b380df0ac8bc0523c04
time: '1556992008'
tags: []
message: Actually remove logger.
hash: c0c202db
date: '2019-05-04'
- sha: f338173ea4e547eb4c64403a536a554983256f2b
time: '1556990823'
tags: []
message: Fix forum issue.
hash: f338173e
date: '2019-05-04'
- sha: e60e73522f3e19c4d634d788c54d683697c471bf
time: '1556990103'
tags: []
message: Fix error.
hash: e60e7352
date: '2019-05-04'
- sha: 6f2af5babc0f22d4bf77c74544ff4aa5dd8e887a
time: '1556990040'
tags: []
message: Revert "[ci skip] v1.5.0-pre.4"
hash: 6f2af5ba
date: '2019-05-04'
- sha: ba320a99fc813823cb0db19c96db5bdbb5d45fb6
time: '1556850579'
tags: []
message: Merge remote-tracking branch 'origin/master'
hash: ba320a99
date: '2019-05-03'
- sha: 04dd38adb6f3e4c8cca5a1f851cad171ee28e2ff
time: '1556850559'
tags: []
message: Dockerized and also ignoring beanstalk errors.
hash: 04dd38ad
date: '2019-05-03'
---
v1.5.0-pre.8: