forked from snowplow/snowplow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1964 lines (1881 loc) · 118 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
Release 84 Steller's Sea Eagle (2016-10-07)
-------------------------------------------
Common: standardise sbt-assembly settings (#2900)
Common: refactor Kinesis release CI/CD (#2887)
Common: update script to sync ap-south-1 (Mumbai) Snowplow Hosted Assets bucket (#2903)
Scala Stream Collector: bump to 0.8.0 (#2886)
Scala Stream Collector: add scala_ into artifact filename in Bintray (#2843)
Scala Stream Collector: use nuid query parameter value to set the 3rd party network id cookie (#2512)
Scala Stream Collector: configurable cookie path (#2528)
Scala Stream Collector: call Config.resolve() to resolve environment variables in hocon (#2879)
Stream Enrich: bump to 0.9.0 (#2728)
Stream Enrich: bump Scala Tracker to 0.3.0 (#2898)
Stream Enrich: bump Scala Common Enrich to 0.24.0 (#2729)
Stream Enrich: tolerate trailing slashes for paths in IP Lookups Enrichment configuration (#2744)
Stream Enrich: call Config.resolve() to resolve environment variables in hocon (#2878)
Kinesis Elasticsearch Sink: bump to 0.8.0 (#2885)
Kinesis Elasticsearch Sink: bump Scala Tracker to 0.3.0 (#2899)
Kinesis Elasticsearch Sink: allow parametrized timeouts for jest client (#2897)
Kinesis Elasticsearch Sink: does not take into account buffer configurations (#2895)
Kinesis Elasticsearch Sink: error messages are not helpful (#2896)
Kinesis Elasticsearch Sink: ensure field names do not contain any dots (#2894)
Kinesis Elasticsearch Sink: add support for Elasticsearch 2.x (#2525)
Kinesis Elasticsearch Sink: call Config.resolve() to resolve environment variables in hocon (#2880)
StorageLoader: remove all JSON Path files (#2905)
Redshift: remove all Redshift DDL for Iglu Central schemas (#2904)
Release 83 Bald Eagle (2016-09-06)
----------------------------------
Scala Tracker: bump git submodule to 0.3.0 (#2726)
ActionScript 3.0 Tracker: bump git submodule to 0.3.0 (#2727)
Scala Common Enrich: bump to 0.24.0 (#2715)
Scala Common Enrich: add SQL Query Enrichment (#2321)
Scala Common Enrich: add POST support to IgluAdapter (#1184)
Scala Hadoop Enrich: bump to 1.8.0 (#2716)
Scala Hadoop Enrich: bump Scala Common Enrich to 0.24.0 (#2717)
Scala Hadoop Enrich: add test for SQL Query Enrichment (#2718)
Scala Hadoop Enrich: make resolver config in JobSpecHelpers injectable (#2825)
EmrEtlRunner: bump to 0.22.0 (#2784)
EmrEtlRunner: bump Ruby version to 2.2.3 (#2869)
EmrEtlRunner: bump Sluice to 0.4.0 (#1708)
EmrEtlRunner: bump Contracts to 0.9 (#2789)
EmrEtlRunner: rebuild Gemfile.lock (#2872)
EmrEtlRunner: add version recognition of currently installed commons-codec (#2735)
EmrEtlRunner: update snowplow-ami4-bootstrap.sh to take optional commons-codec version argument (#2713)
EmrEtlRunner: fix bug with double compression in shred step if enrich skipped (#2586)
EmrEtlRunner: pass GZIP compression argument to S3DistCp as "gz" not "gzip" (#2679)
EmrEtlRunner: update hadoop_enrich version in config.yml.sample to 1.8.0 (#2756)
EmrEtlRunner: replace deprecated Dir.exists? with Dir.exist? (#2799)
EmrEtlRunner: fix contract for fatal_with (#2810)
EmrEtlRunner: use region-specific Snowplow Hosted Assets buckets (#2813)
EmrEtlRunner: disable contract on build_fix_filenames due to Contracts issue #238 (#2828)
Storage: add Kinesis S3 git submodule (#2706)
StorageLoader: bump to 0.8.0 (#2785)
StorageLoader: bump Ruby version to 2.2.3 (#2870)
StorageLoader: bump Sluice to 0.4.0 (#2786)
StorageLoader: bump Contracts to 0.9 (#2790)
StorageLoader: add explicit mime-types dependency (#2805)
StorageLoader: rebuild Gemfile.lock (#2871)
StorageLoader: use Northern Virginia endpoint not global endpoint for us-east-1 (#2748)
StorageLoader: replace module_function everywhere with self (#2801)
StorageLoader: fix broken contracts (#2461)
StorageLoader: write JSON path for com.amazon.aws.lambda/s3_notification_event (#2590)
StorageLoader: write JSON path for com.snowplowanalytics.snowplow/application_foreground/jsonschema/1-0-0 (#2857)
StorageLoader: write JSON path for com.snowplowanalytics.snowplow/application_background/jsonschema/1-0-0 (#2856)
StorageLoader: write JSON path for com.snowplowanalytics.snowplow/application_error/jsonschema/1-0-0 (#2855)
Redshift: add Redshift DDL for com.snowplowanalytics.snowplow/application_foreground/jsonschema/1-0-0 (#2854)
Redshift: add Redshift DDL for com.snowplowanalytics.snowplow/application_background/jsonschema/1-0-0 (#2853)
Redshift: add Redshift DDL for com.snowplowanalytics.snowplow/application_error/jsonschema/1-0-0 (#2852)
Redshift: add Redshift DDL for com.amazon.aws.lambda/s3_notification_event/jsonschema/1-0-0 (#2589)
Release 82 Tawny Eagle (2016-08-08)
-----------------------------------
Common: publish each Kinesis app individually to Bintray (#2492)
Kinesis Elasticsearch Sink: bump to 0.7.0 (#2816)
Kinesis Elasticsearch Sink: configure transport port (#2102)
Kinesis Elasticsearch Sink: add support for HTTP protocol (#2092)
Kinesis Elasticsearch Sink: unify logger configuration (#1699)
Release 81 Kangaroo Island Emu (2016-06-16)
-------------------------------------------
Documentation: fix broken link in Thrift Schemas' README.md (#2498)
Common: add encrypted S3 credentials to .travis.yml (#2673)
Common: delete publish-kinesis-release.bash (#2711)
Android Tracker: bump git submodule to 0.5.4 (#2710)
JavaScript Tracker: bump git submodule to 2.6.1 1. (#2708)
Objective-C Tracker: bump git submodule to 0.6.1 (#2709)
Golang Tracker: add git submodule (#2619)
Scala Common Enrich: bump to 0.23.1 (#2699)
Scala Common Enrich: bump commons codec to 1.10 (#2691)
Stream Enrich: bump to 0.8.1 (#2701)
Stream Enrich: bump Scala Common Enrich to 0.23.1 (#2700)
Hadoop Event Recovery: update README instructions (#2348)
Hadoop Event Recovery: add continuous deployment (#2692)
Hadoop Event Recovery: rename from Scala Hadoop Bad Rows (#2694)
Hadoop Event Recovery: allow source row to be transformed with JavaScript (#2223)
Hadoop Event Recovery: capitalize Snowplow correctly in copyright notices (#2641)
StorageLoader: write JSON path for com.clearbit/person (#2631)
StorageLoader: write JSON path for com.clearbit/company (#2632)
StorageLoader: write JSON path for com.amazon.aws.lambda/java_context (#2560)
Redshift: add Redshift DDL for com.clearbit/person/jsonschema/1-0-0 (#2633)
Redshift: add Redshift DDL for com.clearbit/company/jsonschema/1-0-0 (#2634)
Redshift: add Redshift DDL for com.amazon.aws.lambda/java_context/jsonschema/1-0-0 (#2559)
Release 80 Southern Cassowary (2016-05-30)
------------------------------------------
Common: add CI/CD for Kinesis apps (#2621)
Common: add Bintray credentials to .travis.yml (#2618)
Common: change Kinesis pipeline status from "Beta" to "Production-ready" in READMEs (#2629)
Config: update config/iglu_resolver.json version to 1-0-1 (#2479)
Scala Stream Collector: bump to 0.7.0 (#2595)
Scala Stream Collector: increase tolerance of timings in tests (#2614)
Scala Stream Collector: send nonempty response to POST requests (#2606)
Scala Stream Collector: crash when unable to find stream instead of hanging (#2583)
Scala Stream Collector: stop using deprecated Config.getMilliseconds method (#2570)
Scala Stream Collector: move example configuration file to examples folder (#2566)
Scala Stream Collector: upgrade the log level for reports of stream nonexistence from INFO to ERROR (#2384)
Scala Stream Collector: crash rather than hanging when unable to bind to the supplied port (#2551)
Scala Stream Collector: bump Spray version to 1.3.3 (#2522)
Scala Stream Collector: bump Scala version to 2.10.5 (#2565)
Scala Stream Collector: fix omitted string interpolation (#2561)
Stream Enrich: bump to 0.8.0 (#2596)
Stream Enrich: bump Common Enrich to 0.23.0 (#2612)
Stream Enrich: bump Iglu Scala Client to 0.4.0 (#2688)
Stream Enrich: add configuration setting for MaxRecords (#2610)
Stream Enrich: use nonEmpty method to check whether lists are empty (#2608)
Stream Enrich: refactor functions to avoid return keyword (#2607)
Stream Enrich: upgrade the log level for reports of stream nonexistence from INFO to ERROR (#2598)
Stream Enrich: crash when unable to find stream instead of hanging (#2584)
Stream Enrich: add standard copyright notice to AbstractSourceSpec.scala (#2580)
Stream Enrich: make logging more succinct in case of failure (#1723)
Stream Enrich: move example configuration file to examples folder (#2567)
Stream Enrich: remove src/main/resolver.json.sample (#1932)
Stream Enrich: use json4s to combine the enrichment configuration JSONs (#2259)
Kinesis Elasticsearch Sink: bump to 0.6.0 (#2597)
Kinesis Elasticsearch Sink: add configuration setting for MaxRecords (#2611)
Kinesis Elasticsearch Sink: crash when unable to find stream instead of hanging (#2585)
Kinesis Elasticsearch Sink: move example configuration file to examples folder (#2568)
Release 79 Black Swan (2016-05-12)
----------------------------------
Documentation: removed closes from CHANGELOG tickets for R78 (#2534)
Common: changed Vagrantfile to use NFS and extra CPU cores by default (#2482)
Config: removed duplicated enabled property in ua_parser_config.json (#2424)
Config: enabled switched to false in currency_conversion_config.json (#2327)
Config: enabled switched to false in weather_enrichment_config.json (#2326)
EmrEtlRunner: bumped AMI version in example config to 4.5.0 (#2604)
EmrEtlRunner: updated hadoop_enrich version in config.yml.sample to 1.7.0 (#2661)
EmrEtlRunner: updated hadoop_shred version in config.yml.sample to 0.9.0 (#2662)
Scala Common Enrich: bumped user-agent-utils version to latest (#2516)
Scala Common Enrich: transaction item quantity type changed to JInteger (#2157)
Scala Common Enrich: bumped to 0.23.0 (#2486)
Scala Common Enrich: improved OWM error if user doesn't have historical weather (#2325)
Scala Common Enrich: added API Request Enrichment (#2051)
Scala Common Enrich: bumped Iglu Scala Client to 0.4.0 (#2333)
Scala Common Enrich: added HTTP Header Extractor Enrichment (#1373)
Scala Hadoop Enrich: bumped to 1.7.0 (#2446)
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.23.0 (#2485)
Scala Hadoop Enrich: bumped Iglu Scala Client to 0.4.0 (#2478)
Scala Hadoop Enrich: added test for API Request Enrichment (#2603)
Scala Hadoop Shred: bumped to 0.9.0 (#2480)
Scala Hadoop Shred: bumped Scala Common Enrich to 0.23.0 (#2481)
Scala Hadoop Shred: bumped Iglu Scala Client to 0.4.0 (#2449)
Release 78 Great Hornbill (2016-03-15)
--------------------------------------
Common: removed openjdk7 from .travis.yml (#2533)
Scala Common Enrich: bumped to 0.22.0
Scala Common Enrich: added handling for bad rows which are too long to print in full (#2419)
Kinesis: updated publish-kinesis-release.bash (#2477)
Scala Stream Collector: bumped to 0.6.0
Scala Stream Collector: added Scala Common Enrich as a library dependency (#2153)
Scala Stream Collector: added click redirect mode (#549)
Scala Stream Collector: configured the ability to use IP address as partition key (#2331)
Scala Stream Collector: converted bad rows to new format (#2006)
Scala Stream Collector: shared a single thread pool for all writes to Kinesis (#2369)
Scala Stream Collector: specified UTF-8 encoding everywhere (#2147)
Scala Stream Collector: made cookie name customizable, thanks @kazjote! (#2474)
Scala Stream Collector: added boolean collector.cookie.enabled setting (#2488)
Scala Stream Collector: made backoffPolicy fields macros (#2518)
Scala Stream Collector: updated AWS credentials to support iam/env/default not cpf (#1518)
Scala Kinesis Enrich: bumped to 0.7.0
Scala Kinesis Enrich: renamed to Stream Enrich (#2418)
Scala Kinesis Enrich: bumped Kinesis Client Library to 1.6.1 (#1823)
Scala Kinesis Enrich: bumped Scala Common Enrich to 0.21.0 (#2033)
Scala Kinesis Enrich: bumped Iglu Scala Client to 0.3.1 (#2080)
Scala Kinesis Enrich: configured the ability to use IP address as partition key (#2332)
Scala Kinesis Enrich: started emitting KCL metrics to CloudWatch (#2357)
Scala Kinesis Enrich: converted bad rows to new format (#1207)
Scala Kinesis Enrich: removed outdated comment about ClasspathPropertiesFileCredentialsProvider from sample config file (#1519)
Scala Kinesis Enrich: removed redundant documentation from README (#2032)
Scala Kinesis Enrich: updated test suite with valid self-describing JSONs (#2151)
Scala Kinesis Enrich: updated Scala Tracker to 0.2.0 and enabled EC2 context (#2109)
Scala Kinesis Enrich: updated to use new EtlPipeline (#1933)
Scala Kinesis Enrich: specified UTF-8 encoding everywhere (#2148)
Kinesis Elasticsearch Sink: bumped to 0.5.0
Kinesis Elasticsearch Sink: bumped Kinesis Client Library to 1.6.1 (#1824)
Kinesis Elasticsearch Sink: bumped Scala Common Enrich to 0.22.0 (#2152)
Kinesis Elasticsearch Sink: added mixed output mode (#2412)
Kinesis Elasticsearch Sink: added new canonical event fields (#2089)
Kinesis Elasticsearch Sink: moved the stream-type setting into the main sink configuration object (#2490)
Kinesis Elasticsearch Sink: made source and sink fields macros (#2519)
Kinesis Elasticsearch Sink: renamed Build object to match project (#2002)
Kinesis Elasticsearch Sink: converted bad rows to new format (#1208)
Kinesis Elasticsearch Sink: updated schema regular expression in line with Iglu Central (#1998)
Kinesis Elasticsearch Sink: cached the mapping of field name to field type (#2090)
Kinesis Elasticsearch Sink: specified UTF-8 encoding everywhere (#2149)
Kinesis Elasticsearch Sink: stopped sending timestamp instead of failure count (#1951)
Kinesis Elasticsearch Sink: made performance of conversion from TSV to JSON linear (#1847)
Kinesis Elasticsearch Sink: updated to latest version of EnrichedEvent (#2089)
Release 77 Great Auk (2016-02-28)
---------------------------------
Documentation: updated tracker status table (#1999)
Documentation: fixed incorrect entries in CHANGELOG (#2443)
Common: made optionality of Lingual and HBase in config.yml clearer (#2206)
Common: fixed OpenJDK build in Travis CI (#2447)
Scala Hadoop Enrich: bumped to 1.6.0
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.21.0 (#2442)
Scala Common Enrich: bumped to 0.21.0
Scala Common Enrich: fixed exception for invalid API key in currency conversion (#2441)
Scala Common Enrich: fixed exception on same currency conversion (#2437)
Scala Common Enrich: switched from javax.script to org.mozilla.javascript for JavaScriptEnrichment (#2453)
Scala Hadoop Shred: bumped to 0.8.0
Scala Hadoop Shred: bumped Iglu Scala Client to 0.3.2 (#2319)
EmrEtlRunner: bumped to 0.21.0
EmrEtlRunner: attached monitoring tags to jobflow (#425)
EmrEtlRunner: now throwing exception if processing thrift with --skip s3distcp or AMI 2.x.x (#1648)
EmrEtlRunner: added bootstrap action to prepare AMI >= 3.8.0 (#2320)
EmrEtlRunner: bumped Elasticity to 6.0.7 (#2400)
EmrEtlRunner: added support for Amazon EMR 4.x.x series (#1926)
EmrEtlRunner: prevented bad CLI options from throwing stack trace (#1930)
EmrEtlRunner: made error for nonempty processing bucket collector-agnostic (#1961)
EmrEtlRunner: bumped Ruby Tracker to 0.5.2 (#2143)
EmrEtlRunner: improved retry logic for EMR bootstrap timeouts (#2150)
EmrEtlRunner: excluded previously-built executables from the build (#2163)
EmrEtlRunner: added support for additional_info in EMR section of configuration (#2211)
EmrEtlRunner: added Elasticsearch stage to help message (#2323)
EmrEtlRunner: updated hadoop_enrich version in config.yml.sample to 1.6.0 (#2459)
EmrEtlRunner: updated hadoop_shred version in config.yml.sample to 0.8.0 (#2370)
EmrEtlRunner: removed snowplow-emr-etl-runner.sh (#2445)
StorageLoader: bumped to 0.7.0
StorageLoader: added support for supplying config file as Base64-encoded string (#2227)
StorageLoader: added ability to retrieve AWS credentials from EC2 role (#2226)
StorageLoader: excluded previously-built executables from the build (#2164)
StorageLoader: started printing stack trace for failures not caused by bad configuration (#2160)
StorageLoader: bumped Ruby Tracker to 0.5.2 (#2144)
StorageLoader: moved ANALYZE statements after VACUUM statements (#1361)
StorageLoader: added resolver config option to snowplow-runner-and-loader.sh (#2170)
StorageLoader: updated snowplow-runner-and-loader.sh to use JRuby binaries (#2233)
StorageLoader: removed snowplow-storage-loader.sh (#2444)
StorageLoader: wrote JSON Path file for com.optimizely/visitor_dimension event (#2436)
StorageLoader: wrote JSON Path file for com.optimizely/visitor_audience event (#2435)
StorageLoader: wrote JSON Path file for com.optimizely/visitor event (#2434)
StorageLoader: wrote JSON Path file for com.optimizely/variation event (#2433)
StorageLoader: wrote JSON Path file for com.optimizely/state event (#2432)
StorageLoader: wrote JSON Path file for com.optimizely/experiment event (#2431)
StorageLoader: wrote JSON Path file for io.augur.snowplow/identity_lite (#1958)
Redshift: wrote Redshift DDL for com.optimizely/visitor_dimension event (#2430)
Redshift: wrote Redshift DDL for com.optimizely/visitor_audience event (#2429)
Redshift: wrote Redshift DDL for com.optimizely/visitor event (#2428)
Redshift: wrote Redshift DDL for com.optimizely/variation event (#2427)
Redshift: wrote Redshift DDL for com.optimizely/state event (#2426)
Redshift: wrote Redshift DDL for com.optimizely/experiment event (#2425)
Redshift: added Redshift DDL for io.augur.snowplow/identity_lite (#1957)
Release 76 Changeable Hawk-Eagle (2016-01-26)
---------------------------------------------
Scala Hadoop Enrich: bumped to 1.5.1
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.20.1 (#2338)
Scala Common Enrich: bumped to 0.20.1
Scala Common Enrich: now using only base MIME type in content-type check for SendGrid Adapter (#2328)
Scala Hadoop Shred: bumped to 0.7.0
Scala Hadoop Shred: fixed good tests' checks for empty paths (#2278)
Scala Hadoop Shred: now deduplicating event_id and event_fingerprint pairs (#2246)
Scala Hadoop Shred: fixed incorrect event in SchemaValidationFailed1Spec (#2355)
Scala Hadoop Shred: updated tests to check atomic-events output (#2264)
Scala Hadoop Shred: now only writes atomic-events if JSONs shred successfully (#2245)
Scala Hadoop Shred: removed empty SchemaValidationFailed2Spec (#2271)
Scala Hadoop Shred: fixed test suite issue with multiple input lines (#2270)
EmrEtlRunner: updated hadoop_enrich version in config.yml.sample to 1.5.1 (#2339)
EmrEtlRunner: changed in bucket example in config.yml.sample to s3://my-in-bucket (#2358)
EmrEtlRunner: updated archive bucket examples in config.yml (#2368)
EmrEtlRunner: updated hadoop_shred version in config.yml.sample to 0.7.0 (#2360)
StorageLoader: wrote JSON Paths file for com.google.analytics.enhanced-ecommerce/action (#2136)
StorageLoader: wrote JSON Paths file for com.google.analytics.enhanced-ecommerce/actionFieldObject (#2135)
StorageLoader: wrote JSON Paths file for com.google.analytics.enhanced-ecommerce/impressionFieldObject (#2134)
StorageLoader: wrote JSON Paths file for com.google.analytics.enhanced-ecommerce/productFieldObject (#2133)
StorageLoader: wrote JSON Paths file for com.google.analytics.enhanced-ecommerce/promotionFieldObject (#2132)
Redshift: added Redshift DDL for com.google.analytics.enhanced-ecommerce/promotionFieldObject (#2131)
Redshift: added Redshift DDL for com.google.analytics.enhanced-ecommerce/productFieldObject (#2130)
Redshift: added Redshift DDL for com.google.analytics.enhanced-ecommerce/impressionFieldObject (#2129)
Redshift: added Redshift DDL for com.google.analytics.enhanced-ecommerce/actionFieldObject (#2128)
Redshift: added Redshift DDL for com.google.analytics.enhanced-ecommerce/action (#2127)
Release 75 Long-Legged Buzzard (2016-01-02)
-------------------------------------------
Scala Hadoop Enrich: bumped to 1.5.0
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.20.0 (#2200)
Scala Hadoop Enrich: added test for loading Urban Airship Connect ndjson files (#2168)
Scala Hadoop Enrich: added test for SendGrid Adapter (#2194)
Scala Common Enrich: bumped to 0.20.0
Scala Common Enrich: added JsonLoader for Urban Airship, Mixpanel et al (#2210)
Scala Common Enrich: added Adapter to pre-process Urban Airship events (#2167)
Scala Common Enrich: abstracted Mandrill `reformatParameters` function into Adapter (#2171)
Scala Common Enrich: added Adapter to pre-process SendGrid events (#1161)
EmrEtlRunner: bumped to 0.20.0
EmrEtlRunner: updated hadoop_enrich version in config.yml.sample to 1.5.0 (#2282)
EmrEtlRunner: added raw s3 -> hdfs step with group by (#2253)
EmrEtlRunner: added directory flattening code (#2232)
EmrEtlRunner: added support for ndjson loader format (#2251)
EmrEtlRunner: improved test coverage of runner.rb (#2250)
Redshift: added Redshift DDL for a com.sendgrid/processed event (#2172)
Redshift: added Redshift DDL for a com.sendgrid/dropped event (#2173)
Redshift: added Redshift DDL for a com.sendgrid/delivered event (#2174)
Redshift: added Redshift DDL for a com.sendgrid/deferred event (#2175)
Redshift: added Redshift DDL for a com.sendgrid/bounce event (#2176)
Redshift: added Redshift DDL for a com.sendgrid/open event (#2177)
Redshift: added Redshift DDL for a com.sendgrid/click event (#2178)
Redshift: added Redshift DDL for a com.sendgrid/spamreport event (#2179)
Redshift: added Redshift DDL for a com.sendgrid/unsubscribe event (#2180)
Redshift: added Redshift DDL for a com.sendgrid/group_unsubscribe event (#2181)
Redshift: added Redshift DDL for a com.sendgrid/group_resubscribe event (#2182)
Redshift: added Redshift DDL for com.urbanairship.connect/UNINSTALL event (#2283)
Redshift: added Redshift DDL for com.urbanairship.connect/TAG_CHANGE event (#2284)
Redshift: added Redshift DDL for com.urbanairship.connect/SEND event (#2285)
Redshift: added Redshift DDL for com.urbanairship.connect/RICH_READ event (#2286)
Redshift: added Redshift DDL for com.urbanairship.connect/RICH_DELIVERY event (#2287)
Redshift: added Redshift DDL for com.urbanairship.connect/RICH_DELETE event (#2288)
Redshift: added Redshift DDL for com.urbanairship.connect/REGION event (#2289)
Redshift: added Redshift DDL for com.urbanairship.connect/PUSH_BODY event (#2290)
Redshift: added Redshift DDL for com.urbanairship.connect/OPEN event (#2291)
Redshift: added Redshift DDL for com.urbanairship.connect/LOCATION event (#2292)
Redshift: added Redshift DDL for com.urbanairship.connect/IN_APP_MESSAGE_RESOLUTION event (#2293)
Redshift: added Redshift DDL for com.urbanairship.connect/IN_APP_MESSAGE_EXPIRATION event (#2294)
Redshift: added Redshift DDL for com.urbanairship.connect/IN_APP_MESSAGE_DISPLAY event (#2295)
Redshift: added Redshift DDL for com.urbanairship.connect/FIRST_OPEN event (#2296)
Redshift: added Redshift DDL for com.urbanairship.connect/CUSTOM event (#2297)
Redshift: added Redshift DDL for com.urbanairship.connect/CLOSE event (#2298)
StorageLoader: added JSON Path file for com.sendgrid/processed event (#2183)
StorageLoader: added JSON Path file for com.sendgrid/dropped event (#2184)
StorageLoader: added JSON Path file for com.sendgrid/delivered event (#2185)
StorageLoader: added JSON Path file for com.sendgrid/deferred event (#2186)
StorageLoader: added JSON Path file for com.sendgrid/bounce event (#2187)
StorageLoader: added JSON Path file for com.sendgrid/open event (#2188)
StorageLoader: added JSON Path file for com.sendgrid/click event (#2189)
StorageLoader: added JSON Path file for com.sendgrid/spamreport event (#2190)
StorageLoader: added JSON Path file for com.sendgrid/unsubscribe event (#2191)
StorageLoader: added JSON Path file for com.sendgrid/group_unsubscribe event (#2192)
StorageLoader: added JSON Path file for com.sendgrid/group_resubscribe event (#2193)
StorageLoader: added JSON Path file for com.urbanairship.connect/UNINSTALL event (#2299)
StorageLoader: added JSON Path file for com.urbanairship.connect/TAG_CHANGE event (#2300)
StorageLoader: added JSON Path file for com.urbanairship.connect/SEND event (#2301)
StorageLoader: added JSON Path file for com.urbanairship.connect/RICH_READ event (#2302)
StorageLoader: added JSON Path file for com.urbanairship.connect/RICH_DELIVERY event (#2303)
StorageLoader: added JSON Path file for com.urbanairship.connect/RICH_DELETE event (#2304)
StorageLoader: added JSON Path file for com.urbanairship.connect/REGION event (#2305)
StorageLoader: added JSON Path file for com.urbanairship.connect/PUSH_BODY event (#2306)
StorageLoader: added JSON Path file for com.urbanairship.connect/OPEN event (#2307)
StorageLoader: added JSON Path file for com.urbanairship.connect/LOCATION event (#2308)
StorageLoader: added JSON Path file for com.urbanairship.connect/IN_APP_MESSAGE_RESOLUTION event (#2309)
StorageLoader: added JSON Path file for com.urbanairship.connect/IN_APP_MESSAGE_EXPIRATION event (#2310)
StorageLoader: added JSON Path file for com.urbanairship.connect/IN_APP_MESSAGE_DISPLAY event (#2311)
StorageLoader: added JSON Path file for com.urbanairship.connect/FIRST_OPEN event (#2312)
StorageLoader: added JSON Path file for com.urbanairship.connect/CUSTOM event (#2313)
StorageLoader: added JSON Path file for com.urbanairship.connect/CLOSE event (#2314)
Data modeling: removed events enriched from web-recalculate (#2275)
Data modeling: added cookie-to-user-id map to web-recalculate (#2274)
Release 74 European Honey Buzzard (2015-12-22)
----------------------------------------------
Common: added encrypted OWM API key to .travis.yml (#2243)
Scala Hadoop Enrich: bumped to 1.4.0
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.19.0 (#2255)
Scala Common Enrich: bumped to 0.19.0
Scala Common Enrich: added weather enrichment (#456)
Scala Common Enrich: fixed issue with BC timestamp in ExtractEventTypeSpec (#2257)
Scala Common Enrich: fixed currency conversion enrichment's test for invalid API key (#2258)
StorageLoader: wrote JSON path file for org.openweathermap/weather (#2240)
Redshift: added Redshift DDL for org.openweathermap/weather (#2241)
Release 73 Cuban Macaw (2015-12-04)
-----------------------------------
EmrEtlRunner: bumped to 0.19.0
EmrEtlRunner: added hadoop_elasticsearch to config.yml.sample (#2124)
EmrEtlRunner: added support for Elasticsearch in targets section of config (#826)
EmrEtlRunner: bumped Elasticity to 6.0.5 (#2026)
EmrEtlRunner: stopped skipping the whole job just because enrich and shred are being skipped (#2049)
Scala Common Enrich: bumped Iglu Scala Client to 0.3.1 (#2079)
Scala Common Enrich: bumped version to 0.18.0
Scala Common Enrich: moved ScalazArgs into shared library (#2010)
Scala Common Enrich: removed executable bit from Scala source files (#2022)
Scala Common Enrich: removed JSON length checks (#2041)
Scala Common Enrich: removed truncation code (#2044)
Scala Common Enrich: stopped attempting to catch fatal errors (#2045)
Scala Hadoop Enrich: bumped to 1.3.0
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.18.0 (#2015)
Scala Hadoop Enrich: added Iglu Scala Client as an explicit dependency (#2115)
Scala Hadoop Enrich: added .forceToDisk to speed up run (#859)
Scala Hadoop Enrich: started using Scala Common Enrich's version of ScalazArgs (#2013)
Scala Hadoop Shred: bumped to 0.6.0
Scala Hadoop Shred: added .forceToDisk to common to speed up run (#2039)
Scala Hadoop Shred: bumped Iglu Scala Client to 0.3.1 (#2081)
Scala Hadoop Shred: bumped Scala Common Enrich to 0.18.0 (#2016)
Scala Hadoop Shred: applied truncation logic to atomic-events TSV (#2042)
Scala Hadoop Shred: processed enriched events for atomic.events removing JSON fields (#1731)
Scala Hadoop Shred: started using Scala Common Enrich's version of ScalazArgs (#2014)
Storage: fixed README's link to architecture image, thanks @miike! (#2156)
Hadoop Elasticsearch Sink: added. (#824)
StorageLoader: bumped to 0.6.0
StorageLoader: added tcpKeepAlive=true to JDBC for long-running COPYs via NAT (#2145)
StorageLoader: fixed setup guide link in README, thanks @diamondo25! (#2025)
StorageLoader: loaded atomic.events from shredded folder (#1795)
Postgres: bumped atomic.events to 0.7.0
Postgres: added migration script for 0.6.0 to 0.7.0 (#2047)
Postgres: removed JSON fields from atomic.events (#1949)
Redshift: bumped atomic.events to 0.8.0
Redshift: added migration script for 0.4.0 to 0.8.0 (#2155)
Redshift: added migration script for 0.5.0 to 0.8.0 (#2119)
Redshift: added migration script for 0.6.0 to 0.8.0 (#2120)
Redshift: added migration script for 0.7.0 to 0.8.0 (#2048)
Redshift: removed JSON fields from atomic.events (#1849)
Data Modeling: added separators to custom fingerprint in deduplication queries (#2198)
Data Modeling: renamed dvce_tstamp to dvce_created_tstamp in basic recipes (#2166)
Data Modeling: removed JSON fields from deduplication queries (#2197)
Release 72 Great Spotted Kiwi (2015-10-15)
------------------------------------------
Documentation: added Scala Tracker to 1-trackers/README.md (#2114)
Common: added forwarding of port 3000 to Vagrantfile for Clojure Collector (#2011)
Unity Tracker: added git submodule (#2113)
Clojure Collector: bumped to 1.1.0
Clojure Collector: added URI redirect ability (#1102)
Clojure Collector: added basic README for the java-servlet (#2012)
Scala Common Enrich: bumped to 0.17.0
Scala Common Enrich: added cookie extractor enrichment, thanks @kazjote! (#2072)
Scala Common Enrich: converted SnowplowAdapter from object to package (#2040)
Scala Common Enrich: added Adapter to pre-process URI redirect events (#1103)
Scala Hadoop Enrich: bumped to 1.2.0
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.17.0 (#2027)
Redshift: added Redshift DDL for a com.snowplowanalytics.snowplow/uri_redirect event (#1104)
Redshift: added Redshift DDL for com.amazon.aws.ec2/instance_identity_document (#2086)
Redshift: added Redshift DDL for org.ietf/http_cookie (#2096)
StorageLoader: wrote JSON Path file for com.snowplowanalytics.snowplow/uri_redirect event (#1105)
StorageLoader: wrote JSON path file for org.ietf/http_cookie (#2097)
StorageLoader: wrote JSON path file for com.amazon.aws.ec2/instance_identity_document (#2085)
Deduplication: added SQL queries to deduplicate without event fingerprint (#2110)
Deduplication: updated SQL queries to use event fingerprint (#2091)
Release 71 Stork-Billed Kingfisher (2015-10-02)
-----------------------------------------------
Enrich: added example event fingerprint enrichment configuration JSON (#1990)
EmrEtlRunner: bumped to 0.18.0
EmrEtlRunner: updated AMI version in config.yml.sample to 3.7.0 (#1959)
EmrEtlRunner: updated combine_configurations.rb to add ssl_mode: disable (#1996)
Scala Common Enrich: bumped to 0.16.0
Scala Common Enrich: added derived_tstamp enrichment (#1550)
Scala Common Enrich: added validation that v_collector is set (#1600)
Scala Common Enrich: added validation that collector_tstamp is set and valid (#1611)
Scala Common Enrich: added event_vendor/name/format/version to enriched event, thanks @danisola! (#1800)
Scala Common Enrich: ported JSON schema from Scala Hadoop Shred, thanks @danisola! (#1637)
Scala Common Enrich: bumped referer-parser to 0.3.0 (#1839)
Scala Common Enrich: changed etl_tstamp in EnrichmentManager from String to Joda DateTime (#1841)
Scala Common Enrich: added support for four new fields in CloudFront access logs (#1865)
Scala Common Enrich: bumped user-agent-utils to 1.16 (#1905)
Scala Common Enrich: changed BadRow class to use ProcessingMessages (#1936)
Scala Common Enrich: ensured that all timestamp fields are nonnegative (#1938)
Scala Common Enrich: started catching all exceptions in EtlPipeline (#1954)
Scala Common Enrich: added event_fingerprint enrichment (#1965)
Scala Common Enrich: bumped Iglu Scala Client to 0.3.0 (#1989)
Scala Common Enrich: renamed dvce_tstamp to dvce_created_tstamp (#1995)
Scala Common Enrich: started extracting true_tstamp from querystring (#1968)
Scala Hadoop Enrich: bumped to 1.1.0
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.16.0 (#1807)
Scala Hadoop Enrich: updated tests to expect bad row JSONs with timestamps and processing messages (#1751)
Scala Hadoop Enrich: updated to use new EtlPipeline (#1931)
Scala Hadoop Enrich: bad rows for Thrift payloads now contain the original Thrift record (#1950)
Scala Hadoop Enrich: simplified validation projection code (#1986)
Scala Hadoop Shred: bumped to 0.5.0
Scala Hadoop Shred: updated tests to expect bad row JSONs with timestamps and processing messages (#1953)
Scala Hadoop Shred: added clojars.org as a resolver (#1952)
Scala Hadoop Shred: bumped Scala Common Enrich to 0.16.0 (#1935)
Scala Hadoop Shred: started using BadRow case class from Scala Common Enrich (#1914)
Scala Hadoop Shred: upgraded to Hadoop 2.4 (#1720)
Scala Hadoop Shred: bumped Iglu Scala Client to 0.3.0 (#1221)
Redshift: bumped atomic.events to 0.7.0
Redshift: added migration script for 0.6.0 to 0.7.0 (#1988)
Redshift: added migration script for 0.5.0 to 0.7.0 (#2058)
Redshift: added event_vendor/name/format/version to atomic.events (#1801)
Redshift: updated wd_access_log_1.sql with 4 new fields and renamed "x_edge_request_type" to "x_edge_request_id" (#1940)
Redshift: added event_fingerprint to atomic.events (#1971)
Redshift: added true_tstamp to atomic.events (#1984)
Redshift: renamed dvce_tstamp to dvce_created_tstamp (#1993)
Redshift: added comment containing table version to atomic.events (#2020)
Redshift: added migration script for wd_access_log_1.sql 1-0-3 to 1-0-4 (#2029)
Postgres: bumped atomic.events to 0.6.0
Postgres: added migration script for 0.5.0 to 0.6.0 (#1987)
Postgres: added event_vendor/name/format/version to atomic.events (#1802)
Postgres: added event_fingerprint to atomic.events (#1970)
Postgres: added true_tstamp to atomic.events (#1985)
Postgres: renamed dvce_tstamp to dvce_created_tstamp (#1994)
Postgres: added comment containing table version to atomic.events (#2021)
StorageLoader: bumped to 0.5.0
StorageLoader: exposed sslmode connection option for loading Postgres and Redshift, thanks @dennisatspaceape! (#1980)
StorageLoader: updated wd_access_log_1.json with 4 new fields (#1941)
Data Modeling: updated web-incremental so failure is recoverable (#1974)
Data Modeling: renamed dvce_tstamp to dvce_created_tstamp (#2024)
Release 70 Bornean Green Magpie (2015-08-19)
--------------------------------------------
Common: added Ruby script to generate unified config.yml and iglu-resolver.json from runner.yml and loader.yml (#1774)
Common: aded postgres.yml to up.playbooks (#1767)
Common: added Vagrant push script to publish Ruby apps (#1784)
Enrich: moved enrichments folder out of EmrEtlRunner (#1574)
Enrich: changed campaign_attribution.json configuration to true (#1608)
EmrEtlRunner & StorageLoader: unified the config file format (#878)
EmrEtlRunner & StorageLoader: added support for compressing enriched events, thanks @danisola! (#1265)
EmrEtlRunner & StorageLoader: now supports environment variables in YML config files, thanks @epantera! (#1215)
EmrEtlRunner: bumped to 0.17.0
EmrEtlRunner: added retry logic for EMR bootstrap timeouts (#354)
EmrEtlRunner: added Snowplow event tracking (#678)
EmrEtlRunner: added tags for monitoring to config.yml (#1163)
EmrEtlRunner: improved hierarchy in config.yml (#1447)
EmrEtlRunner: added Snowplow tracking to config.yml (#1448)
EmrEtlRunner: moved Iglu resolver into dedicated CLI argument (#1542)
EmrEtlRunner: renamed archive step to archive_raw (#1543)
EmrEtlRunner: bumped Sluice to 0.2.2 (#1566)
EmrEtlRunner: removed use of symbols for properties in YAML configuration (#1572)
EmrEtlRunner: allowed nil for config.yml's bootstrap field (#1575)
EmrEtlRunner: simplified trail slash code now that nils are supported (#1588)
EmrEtlRunner: pinned Contracts to 0.7 (#1590)
EmrEtlRunner: now fails job if odd number of lzo files in processing (#1728)
EmrEtlRunner: added an early check that shredded is empty (#1749)
EmrEtlRunner: allowed config to be passed in via stdin (#1772)
EmrEtlRunner: added Rake task to build app (#1786)
EmrEtlRunner: moved Logging module into new Monitoring module (#1797)
EmrEtlRunner: ensured that _SUCCESS file is written last for enriched events in S3 (#1808)
EmrEtlRunner: replaced m1.small with m1.medium in config.yml, thanks @danrama! (#1826)
EmrEtlRunner: recovered from 500 error while checking job status (#1828)
EmrEtlRunner: recovered from IOError while checking job status (#1881)
EmrEtlRunner: changed .ruby-version to "jruby" (#1888)
EmrEtlRunner: now only accepts an array of in buckets (#1910)
EmrEtlRunner: validated output_compression configuration using contract (#1820)
EmrEtlRunner: handled exception when the connection times out when checking the cluster, thanks @danisola! (#1599)
EmrEtlRunner: bumped Elasticity to 6.0.3 (#1939)
Deduplication: added timetracking and updated schema name (#1962)
StorageLoader: bumped to 0.4.0
StorageLoader: allowed config to passed in via stdin (#1773)
StorageLoader: added ability to bundle as a JRuby fat jar (#675)
StorageLoader: started loading Postgres via stdin, thanks @mrwalker! (#624)
StorageLoader: added Snowplow event tracking (#679)
StorageLoader: updated to use EmrEtlRunner's expanded config.yml (#1191)
StorageLoader: pinned Contracts to 0.7 (#1497)
StorageLoader: moved "include Contracts" (#1499)
StorageLoader: renamed archive step to archive_enrich (#1544)
StorageLoader: bumped Sluice to 0.2.2 (#1567)
StorageLoader: removed use of symbols for properties in YAML configuration (#1573)
StorageLoader: added Rake task to build app (#1787)
StorageLoader: scrubbed credentials from stderr (#1918)
StorageLoader: added test suite (#1919)
StorageLoader: ensured that _SUCCESS file is written last for enriched events archived to S3 (#1814)
StorageLoader: started automatically converting "s3n" to "s3" in copy statements (#1937)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring.batch/emr_job_started (#1875)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring.batch/emr_job_succeeded (#1876)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring.batch/emr_job_failed (#1877)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring.batch/emr_job_status (#1878)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring.batch/jobflow_step_status (#1879)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring.batch/load_succeeded (#1884)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring.batch/load_failed (#1885)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring.batch/application_context (#1942)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring.batch/emr_job_started (#1870)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring.batch/emr_job_succeeded (#1871)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring.batch/emr_job_failed (#1872)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring.batch/emr_job_status (#1873)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring.batch/jobflow_step_status (#1874)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring.batch/load_succeeded (#1882)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring.batch/load_failed (#1883)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring.batch/application_context (#1943)
Release 69 Blue-Bellied Roller (2015-07-24)
-------------------------------------------
Incremental SQL Model: added the new incremental queries (#1857)
Incremental SQL Model: changed how query performance is tracked (#1855)
Incremental SQL Model: added new setup queries (#1853)
Incremental SQL Model: added migration queries (#1852)
Incremental SQL Model: updated the SQL runner playbook (#1851)
Incremental SQL Model: updated diagram (#1850)
Deduplication: added a step that deduplicates events (#1866)
Incremental SQL Model: replaced RANK with ROW_NUMBER (#1867)
Mobile SQL Model: added sessionization and DAU queries (#1891
SQL Models: renamed full and incremental to allow for more models ) (#1892)
StorageLoader: wrote JSON path file for com.snowplowanalytics.snowplow/client_session (#1922)
Redshift: added Redshift DDL for com.snowplowanalytics.snowplow/client_session (#1921)
Release 68 Turquoise Jay (2015-07-23)
-------------------------------------
EmrEtlRunner: bumped to 0.16.0
EmrEtlRunner: bumped Elasticity to 6.0.2 (#1903)
EmrEtlRunner: named the processing bucket in its associated "is not empty" error (#1911)
EmrEtlRunner: made in bucket an array (#1750)
EmrEtlRunner: determined path to Hadoop enrich based on its version (#1789)
EmrEtlRunner: added unit test for add_trailing_slashes function (#1904)
Release 67 Bohemian Waxwing (2015-07-13)
----------------------------------------
Common: added NFS and CORE configuration to Vagrantfile to enhance performance (#1831)
Scala Stream Collector: bumped to 0.5.0
Scala Stream Collector: stdout bad sink now prints to stderr (#1799)
Scala Stream Collector: added splitter for large event arrays (#941)
Scala Stream Collector: increased maximum record size from 50kB to 1MB (#1753)
Scala Stream Collector: added tests for splitting large requests (#1683)
Scala Stream Collector: updated bad rows to include timestamp (#1681)
Scala Stream Collector: handled case where IP is not present (#1680)
Scala Stream Collector: did some reorganisation and refactoring of the project (#1678)
Scala Stream Collector: added json4s dependency (#1673)
Scala Stream Collector: added bad stream (#1502)
Scala Common Enrich: bumped to 0.15.0
Scala Common Enrich: fixed JavascriptScriptEnrichmentSpec test to pass openjdk7 (#1793)
Scala Common Enrich: bumped scala-maxmind-iplookups to 0.3.0 (#1771)
Scala Common Enrich: bumped Scala Forex to 0.3.0 (#1770)
Scala Common Enrich: updated bad rows to include timestamp (#1577)
Scala S3 Sink: removed project from repo (#1672)
Scala Kinesis Enrich: bumped to 0.6.0
Scala Kinesis Enrich: bumped to Scala Common Enrich 0.15.0 (#1685)
Scala Kinesis Enrich: tries to send 503 records (#1756)
Scala Kinesis Enrich: made back-off fields macros (#1745)
Scala Kinesis Enrich: increased maximum record size to 1MB (#1736)
Scala Kinesis Enrich: logging all bad rows (#1722)
Scala Kinesis Enrich: exception installing MaxMind file must terminate (#1711)
Scala Kinesis Enrich: sending Snowplow hearbeat (#1406)
Scala Kinesis Enrich: allowed records of over 1Mb when running in local mode (#1663)
Scala Kinesis Enrich: fixed error when fetching MaxMind file from s3:// URI (#1645)
Scala Kinesis Enrich: sending a warning via Snowplow if no enrichment JSONs are retrieved from DynamoDB (#1621)
Scala Kinesis Enrich: sending failure to sink event to kinesis to Snowplow (#1798)
Scala Kinesis Enrich: etl_tstamp should be Redshift Formatted not raw (#1842)
Kinesis Elasticsearch Sink: bumped to 0.4.0
Kinesis Elasticsearch Sink: removed Scala Common Enrich as an assembly dependency (#1819)
Kinesis Elasticsearch Sink: bumped to Scala Common Enrich 0.15.0 (#1811)
Kinesis Elasticsearch Sink: allowed use of AWS creds instead of DefaultAWSCredentialsProviderChain (#1803)
Kinesis Elasticsearch Sink: app no longer hangs without shutting down (#1743)
Kinesis Elasticsearch Sink: updated the Elasticsearch version (#1734)
Kinesis Elasticsearch Sink: sent event to Snowplow on heartbeat (#1706)
Kinesis Elasticsearch Sink: added Scala Tracker dependency (#1705)
Kinesis Elasticsearch Sink: sending event to Snowplow when unable to write to Elasticsearch (#1704)
Kinesis Elasticsearch Sink: sending event to Snowplow on shutdown (#1703)
Kinesis Elasticsearch Sink: sending event to Snowplow on initialization (#1702)
Kinesis Elasticsearch Sink: initialized bad stream eagerly rather than lazily (#1677)
Kinesis Elasticsearch Sink: updated amazon-kinesis-connectors to 1.1.2 (#1675)
Kinesis Elasticsearch Sink: specifying character encoding in SnowplowElasticsearchTransformer (#1654)
Kinesis Elasticsearch Sink: updated bad rows to include timestamp (#1578)
Kinesis Elasticsearch Sink: moved location fields into elasticsearch section (#1517)
Kinesis Elasticsearch Sink: corrected shredding example in comment (#1276)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring/application_warning (#1809)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring/heartbeat (#1764)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring/sink_write_failed (#1763)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring/application_initialized (#1762)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring/application_shutdown (#1761)
Redshift: added Redshift DDL for com.snowplowanalytics.monitoring/stream_write_failed (#1844)
Redshift: added Redshift DDL for com.snowplowanalytics.snowplow/web_page (#1835)
Redshift: added migration script for 0.3.0 to 0.6.0 (#1832)
Redshift: added migration script for 0.4.0 to 0.6.0 (#1833)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring/application_warning (#1810)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring/heartbeat (#1760)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring/sink_write_failed (#1759)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring/application_initialized (#1758)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring/application_shutdown (#1757)
StorageLoader: wrote JSON path file for com.snowplowanalytics.monitoring/stream_write_failed (#1843)
StorageLoader: wrote JSON path file for com.snowplowanalytics.snowplow/web_page (#1836)
Release 66 Oriental Skylark (2015-06-16)
----------------------------------------
Documentation: replaced Hive ETL references with Kinesis Enrich in Scala Hadoop Enrich's README (#1671)
Documentation: fixed links in Scala Common Enrich's README.md, thanks @bigsnarfdude! (#1669)
Scala Tracker: added git submodule (#1724)
Scala Hadoop Enrich: bumped to 1.0.0
Scala Hadoop Enrich: renamed build to snowplow-hadoop-enrich (#1718)
Scala Hadoop Enrich: updated dependencies to Hadoop 2.4 (#1716)
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.14.0 (#1700)
Scala Hadoop Enrich: updated Core2015RefreshSpec to include JavascriptScriptEnrichment (#1746)
Scala Common Enrich: bumped to 0.14.0
Scala Common Enrich: added JavaScript scripting enrichment (#378)
Scala Common Enrich: made IpLookupsEnrichment error message more informative (#1426)
Scala Common Enrich: commons-codec dependency is no longer test-only (#1712)
Scala Common Enrich: bumped commons-lang3 to 3.4 (#1713)
Scala Common Enrich: made mkt_ and refr_ fields TSV safe, thanks @jasonbosco! (#1643)
Scala Common Enrich: updated JodaTime dependency to 2.2 (#1748)
Scala Common Enrich: now handles null message in stripInstanceEtc (#1622)
EmrEtlRunner: bumped to 0.15.0
EmrEtlRunner: now using new scala-hadoop-enrich jar path in Hosted Assets (#1719)
EmrEtlRunner: updated ami_version in config.yml to 3.6.0 (#1651)
EmrEtlRunner: added bootstrap action to prepare AMI 3.x for Snowplow (#1714)
EmrEtlRunner: now setting buffer for processing thrift in core-site.xml (#1715)
EmrEtlRunner: added S3DistpCp step for thrift files in processing (#1647)
EmrEtlRunner: added example javascript_script_config to enrichments folder (#1755)
StorageLoader: wrote JSON Path file for com.mparticle.snowplow/app_event (#1688)
StorageLoader: wrote JSON Path file for com.mparticle.snowplow/social_event (#1690)
StorageLoader: wrote JSON Path file for com.mparticle.snowplow/transaction_event (#1692)
StorageLoader: wrote JSON Path file for a com.mparticle.snowplow/session_context (#1694)
Redshift: added Redshift DDL for a com.mparticle.snowplow/app_event (#1686)
Redshift: added Redshift DDL for a com.mparticle.snowplow/social_event (#1689)
Redshift: added Redshift DDL for a com.mparticle.snowplow/transaction_event (#1691)
Redshift: added Redshift DDL for a com.mparticle.snowplow/session_context (#1693)
Data Modeling: removed restrictions in sessions and visitors-source (#1725)
Release 65 Scarlet Rosefinch (2015-05-08)
-----------------------------------------
Scala Stream Collector: bumped to 0.4.0
Scala Stream Collector: bumped Scalazon to 0.11 (#1504)
Scala Stream Collector: added support for PutRecords API (#1227)
Scala Stream Collector: added CORS support (#1165)
Scala Stream Collector: added CORS-style support for ActionScript3 Tracker (#1331)
Scala Stream Collector: added ability to disable third-party cookies (#1363)
Scala Stream Collector: removed automatic creation of stream (#1464)
Scala Stream Collector: added macros to config.hocon.sample (#1471)
Scala Stream Collector: logged the name of the stream to which records are written (#1503)
Scala Stream Collector: added shutdown hook to send stored events (#1535)
Scala Stream Collector: added configurable exponential backoff with jitter (#1592)
Scala Kinesis Enrich: bumped to 0.5.0
Scala Kinesis Enrich: bumped Scala Common Enrich to 0.13.1 (#1618)
Scala Kinesis Enrich: bumped Scalazon to 0.11 (#1492)
Scala Kinesis Enrich: bumped Kinesis Client Library to 1.2.1 (#1580)
Scala Kinesis Enrich: added ability to retrieve resolver and enrichments from DynamoDB (#1289)
Scala Kinesis Enrich: added support for PutRecords API (#1418)
Scala Kinesis Enrich: removed automatic creation of streams (#1465)
Scala Kinesis Enrich: fixed checkpointing (#1467)
Scala Kinesis Enrich: logged the name of the stream to which records are written (#1493)
Scala Kinesis Enrich: added macros to config.hocon.sample (#1513)
Scala Kinesis Enrich: moved Iglu resolver to dedicated CLI argument (#1534)
Scala Kinesis Enrich: updated README examples with new configuration (#1549)
Scala Kinesis Enrich: stopped retrying in the case of a ShutdownException or InvalidStateException (#1552)
Scala Kinesis Enrich: stopped ignoring region setting for DynamoDB table (#1576)
Scala Kinesis Enrich: updated test suite to accommodate changes (#1581)
Scala Kinesis Enrich: added Clojars as a resolver (#1586)
Scala Kinesis Enrich: added configurable exponential backoff with jitter (#1591)
Scala Kinesis Enrich: randomize partition keys for bad events (#1631)
Scala Kinesis Enrich: stopped sending records of over 50kB (#1649)
Kinesis Elasticsearch Sink: bumped to 0.3.0
Kinesis Elasticsearch Sink: made DynamoDB region configurable (#1583)
Kinesis Elasticsearch Sink: added macros to config.hocon.sample (#1515)
Kinesis Elasticsearch Sink: changed "connector" to "sink" in config (#1474)
Kinesis Elasticsearch Sink: stopped failing silently for inputs with fewer than 24 tab-separated fields (#1584)
Kinesis Elasticsearch Sink: stopped analyzing text fields by default (#1624)
Kinesis Elasticsearch Sink: removed automatic creation of bad stream (#1626)
Kinesis Elasticsearch Sink: randomized partition keys for failed records (#1633)
Kinesis LZO S3 Sink: bumped to 0.2.0
Kinesis LZO S3 Sink: removed automatic creation of stream (#1529)
Kinesis LZO S3 Sink: changed "connector" to "sink" in config (#1473)
Kinesis LZO S3 Sink: made DynamoDb region configurable (#1582)
Kinesis LZO S3 Sink: added macros to config.hocon.sample (#1472)
Kinesis LZO S3 Sink: changed the configuration to use the S3 region instead of the full endpoint URI (#1327)
Release 64 Palila (2015-04-16)
------------------------------
Common: added top-level data modeling folder (#1523)
Common: updated root README to include data modeling (#1612)
ActionScript 3.0 Tracker: added git submodule (#1546)
EmrEtlRunner: bumped to 0.14.0
EmrEtlRunner: bumped Elasticity to 4.0.5 (#758)
EmrEtlRunner: added support for specifying EMR service role (#1595)
EmrEtlRunner: added support for specifying EMR jobflow role (#1232)
Scala Common Enrich: bumped to 0.13.1
Scala Common Enrich: prevented UaParserEnrichment from creating a new Parser on every event (#1616)
Scala Hadoop Enrich: bumped to 0.14.1
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.13.1 (#1617)
Redshift: bumped atomic.events to 0.6.0
Redshift: added migration script for 0.5.0 to 0.6.0 (#1606)
Redshift: increased mkt_clickid to varchar(128) (#1605)
Redshift: removed legacy cubes (#1613)
Postgres: bumped atomic.events to 0.5.0
Postgres: added migration script for 0.4.0 to 0.5.0 (#1604)
Postgres: increased mkt_clickid to varchar(128) (#1603)
Postgres: removed legacy cubes (#1614)
Postgres: added user_id field to migration script for 0.3.0 to 0.4.0 (#1620)
Data Modeling: updated reference data.iso_country_codes so DISTSTYLE is ALL (#1393)
SQL Runner: added basic sessions / visits / page views model that can be pivoted on directly from any BI tool (#1273)
Looker: simplified LookML model and made it consistent with Redshift data models (#1522)
Release 63 Red-Cheeked Cordon-Bleu (2015-04-02)
-----------------------------------------------
Common: updated kinesis push to remove sub-folders from zipfile (#1378)
EmrEtlRunner: added example configuration JSONs for new enrichments (#1545)
Scala Common Enrich: bumped to 0.13.0
Scala Common Enrich: bumped referer-parser to 0.2.3 (#670)
Scala Common Enrich: converted transactions from given currency to base currency (#370)
Scala Common Enrich: bumped CampaignAttributionEnrichment version to 0.2.0 (#1338)
Scala Common Enrich: added mkt_clickid and mkt_network fields to POJO (#1073)
Scala Common Enrich: added derived_contexts field to POJO (#787)
Scala Common Enrich: added geo_timezone field to POJO (#787)
Scala Common Enrich: added etl_tags field to POJO (#1247)
Scala Common Enrich: added currency fields to POJO (#1316)
Scala Common Enrich: changed enrichment configuration to use SchemaCriterion rather than SchemaKey (#1353)
Scala Common Enrich: extracted original IP address from CollectorPayload headers (#1372)
Scala Common Enrich: extracted dvce_sent_tstamp from stm field (#1383)
Scala Common Enrich: added dvce_sent_tstamp to POJO (#1384)
Scala Common Enrich: added refr_domain_userid and refr_dvce_sent_tstamp to POJO (#1449)
Scala Common Enrich: added domain_sessionid field to POJO (#1538)
Scala Common Enrich: added derived_tstamp field to POJO (#1557)
Scala Common Enrich: populated refr_ fields based on page_url querystring (#1461)
Scala Common Enrich: populated domain_sessionid field based on "sid" parameter (#1541)
Scala Common Enrich: parsed the page URI in the EnrichmentManager (#1463)
Scala Common Enrich: added ua-parser enrichment (#62)
Scala Common Enrich: added ability to disable user-agent-utils enrichment (#792)
Scala Common Enrich: used Netaporter to parse querystrings if httpclient fails, thanks @danisola! (#1429)
Scala Hadoop Enrich: bumped to 0.14.0
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.13.0 (#1340)
Scala Hadoop Enrich: added integration tests for currency conversion enrichment (#1430)
Scala Hadoop Enrich: added tests for other new EnrichedEvent fields (#1337)
Scala Hadoop Shred: bumped to 0.4.0
Scala Hadoop Shred: bumped Scala Common Enrich to 0.13.0 (#1343)
Scala Hadoop Shred: bumped json4sJackson to 3.2.11 (#1344)
Scala Hadoop Shred: extracted JSONs from derived_contexts field (#786)
Scala Hadoop Shred: updated to reflect new enriched event format (#1332)
Scala Kinesis Enrich: bumped to 0.4.0
Scala Kinesis Enrich: bumped Scala Common Enrich to 0.13.0 (#1369)
Scala Kinesis Enrich: emitted updated EnrichedEvent (#1368)
Scala Kinesis Enrich: unified logger configuration, thanks @kazjote! (#1367)
Redshift: bumped atomic.events to 0.5.0
Redshift: added migration script for 0.4.0 to 0.5.0 (#1335)
Redshift: added refr_domain_userid and refr_dvce_tstamp to atomic.events (#1450)
Redshift: added dvce_sent_tstamp column (#1385)
Redshift: added foreign key constraint to all Redshift shredded tables (#1365)
Redshift: changed JSON field encodings to lzo (#1350)
Redshift: added etl_tags column (#1245)
Redshift: added column for mkt_clickid and mkt_network (#1093)
Redshift: widened domain_userid column to hold UUID (#1090)
Redshift: added Redshift DDL for ua_parser_context (#789)
Redshift: added new derived_contexts field (#784)
Redshift: updated ip_address to support IPv6 addresses (#656)
Redshift: added new currency fields (#366)
Redshift: added domain_sessionid column (#1539)
Redshift: widened structured event, URL, and referer fields (#1553)
Redshift: added derived_tstamp column (#1558)
Postgres: bumped atomic.events to 0.4.0
Postgres: added migration script for 0.3.0 to 0.4.0 (#1347)
Postgres: added refr_domain_userid and refr_dvce_tstamp to atomic.events (#1451)
Postgres: added dvce_sent_tstamp column (#1386)
Postgres: added column for geo_timezone (#1336)
Postgres: added etl_tags column (#1246)
Postgres: removed primary key constraint on event_id (#1187)
Postgres: added column for mkt_clickid and mkt_network (#1092)
Postgres: widened domain_userid column to hold UUID (#1091)
Postgres: added new derived_contexts field (#785)
Postgres: updated ip_address to support IPv6 addresses (#655)
Postgres: added new currency fields (#365)
Postgres: added domain_sessionid column (#1540)
Postgres: widened structured event, URL, and referer fields (#1554)
Postgres: added derived_tstamp column (#1559)
StorageLoader: wrote JSON Path file for ua_parser_context (#790)
Kinesis Elasticsearch Sink: bumped to 0.2.0
Kinesis Elasticsearch Sink: added new EnrichedEvent fields (#1345)
Kinesis Elasticsearch Sink: stopped verifying number of fields in enriched event (#1333)
Kinesis Elasticsearch Sink: changed organization to com.snowplowanalytics in BuildSettings (#1279)
Kinesis Elasticsearch Sink: renamed application.conf.example to config.hocon.sample (#1244)
Release 62 Tropical Parula (2015-03-17)
---------------------------------------
Common: updated `vagrant up` to work with latest Peru version (#1475)
Ruby Tracker: bumped git submodule to 0.4.1 (#1488)
Python Tracker: bumped git submodule to 0.6.0 (#1487)
PHP Tracker: bumped git submodule to 0.2.1 (#1486)
JavaScript Tracker: bumped git submodule to 2.3.0 (#1485)
Java Tracker: bumped git submodule to 0.7.0 (#1484)
Objective-C Tracker: renamed from iOS Tracker and bump git submodule to 0.3.2 (#1483)
EmrEtlRunner: bumped to 0.13.0
EmrEtlRunner: fixed copy to staging for Tomcat7 logs with hyphen after .txt (#1480)
EmrEtlRunner: added missing :archive: in BucketHash (#1475)
EmrEtlRunner: added support for custom bootstrap actions, thanks @danisola! (#1405)
EmrEtlRunner: removed time_diff as a dependency (#1352)
EmrEtlRunner: fixed breaking get_assets spec (#1287)
EmrEtlRunner: now tolerating more exception types in EmrJob's wait_for (#358)
EmrEtlRunner: bumped Contracts to 0.7 (#1498)
EmrEtlRunner: moved `include Contracts` into classes and modules (#1438)
Release 61 Pygmy Parrot (2015-03-02)
------------------------------------
Common: bumped VERSION file to r61-pygmy-parrot
Common: added Gradle to up.playbooks (#1270)
Common: added .travis.yml file and Travis button to repo (#1359)
Common: added Release button to README (#1428)
Common: added License button to README (#1427)
Clojure Collector: bumped to 1.0.0
Clojure Collector: updated access-valve to depend on Tomcat 8 classes (#1203)
Clojure Collector: updated .ebextensions to depend on Tomcat 8 (#1202)
Clojure Collector: added ability to disable third-party cookies (#1362)
Clojure Collector: added CORS support (#1146)
Clojure Collector: added CORS-style support for ActionScript3 Tracker (#1330)
Clojure Collector: added support for /:vendor/:version to HEAD (#1166)
Clojure Collector: now using UTF-8 for character encoding throughout (#1354)
Scala Common Enrich: bumped to 0.12.0
Scala Common Enrich: updated SnowplowAdapter to accept "charset=UTF-8" (#1424)
Scala Common Enrich: Base64 decoding does not specify UTF-8 charset (#1403)
Scala Common Enrich: removed incorrect extra layer of URL decoding from non-Bas64-encoded JSONs (#1396)
Scala Common Enrich: added support for ti_nm for transaction item name as well as ti_na (#1401)
Scala Common Enrich: added CloudfrontAccessLogAdapter (#1282)
Scala Common Enrich: made timestamp field of CollectorPayload an Option (#1417)
Scala Hadoop Enrich: bumped to 0.13.0
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.12.0 (#1395)
Scala Hadoop Enrich: added test for non-Base64-encoded JSON (#1394)
Scala Hadoop Enrich: updated tests to include Unicode (#1390)
Scala Hadoop Enrich: added integration test for CloudfrontAccessLogAdapter (#1423)
Scala Hadoop Bad Rows: removed .travis.yml (#1382)
EmrEtlRunner: bumped to 0.12.0
EmrEtlRunner: now appending region name to Clojure Collector log files (#1379)
EmrEtlRunner: added support for moving and archiving timestamped Clojure Collector log files (#1400)
EmrEtlRunner: now appending rather than prepending instance names to Clojure Collector log files (#1404)
EmrEtlRunner: changed Clojure Collector log timestamp format to match CloudFront logs (#1398)
EmrEtlRunner: added dedicated return code for no files to process (#1397)
EmrEtlRunner: now allowing tsv/*/* and json/*/* as :etl:collector_format (#1284)
EmrEtlRunner: now performing S3DistCp from processing for tsv/com.amazon.aws.cloudfront/* (#1431)
EmrEtlRunner: added output directory empty check prior to staging step (#1151)
StorageLoader: updated shell script to only run StorageLoader if EmrEtlRunner found files (#1399)
StorageLoader: wrote JSON Path file for a com.snowplowanalytics.snowplow/flash_context (#1305)
StorageLoader: wrote JSON Path file for a com.snowplowanalytics.snowplow/timing event (#1388)
StorageLoader: wrote JSON Path file for a com.amazon.aws.cloudfront/wd_access_log event (#1285)
StorageLoader: wrote JSON Path file for a com.google.analytics/cookies context (#1409)
StorageLoader: wrote JSON Path file for a com.snowplowanalytics.snowplow/desktop_context (#1421)
Redshift: added Redshift DDL for a com.snowplowanalytics.snowplow/timing event (#1387)
Redshift: added Redshift DDL for a com.snowplowanalytics.snowplow/flash_context (#1304)
Redshift: added Redshift DDL for a com.amazon.aws.cloudfront/wd_access_log event (#1286)
Redshift: added Redshift DDL for a com.google.analytics/cookies context (#1408)
Redshift: added Redshift DDL for a com.snowplowanalytics.snowplow/desktop_context (#1420)
Release 60 Bee Hummingbird (2015-02-03)
---------------------------------------
Common: added VERSION file in root to assist vagrant push (#1293)
Common: added vagrant push scripting to publish Kinesis apps (#1288)
Common: added lzo.yml to up.playbooks (#1325)
Thrift Raw Event: bumped Thrift version to 0.9.1 (#1225)
Thrift Raw Event: added collector-payload-1 and schema-sniffer-1 (#1322)
Thrift Raw Event: created a subproject for each Thrift class (#1298)
Thrift Raw Event: updated README and project description to reflect new structure (#1300)
Thrift Raw Event: renamed to thrift-schemas (#1299)
Scala Stream Collector: bumped to 0.3.0
Scala Stream Collector: started sending CollectorPayloads instead of SnowplowRawEvents (#1226)
Scala Stream Collector: added support for POST requests (#187)
Scala Stream Collector: added support for any {api-vendor}/{api-version} for GET and POST (#652)
Scala Stream Collector: stopped decoding URLs (#1217)
Scala Stream Collector: changed 1x1 pixel response to use a stable GIF (#1260)
Scala Stream Collector: renamed default.conf to config.hocon.sample (#1243)
Scala Stream Collector: started using ThreadLocal to handle Thrift serialization, thanks @denismo and @pkallos! (#1254)
Scala Stream Collector: added healthcheck for load balancers, thanks @duncan! (#1360)
EmrEtlRunner: bumped to 0.11.0
EmrEtlRunner: added "thrift" collector format (#1301)
EmrEtlRunner: implemented time_diff manually (#1310)
EmrEtlRunner: fixed failure reporting when jobflow step(s) created_at is nil (#1351)
Scala Common Enrich: bumped to 0.11.0
Scala Common Enrich: added schema-sniffer-1 and collector-payload-1 dependencies (#1296)
Scala Common Enrich: bumped user-agent-utils version to 1.14 (#1224)
Scala Common Enrich: changed EnrichedEvent field name to ip_organization (#1145)
Scala Common Enrich: changed "thrift" to "thrift-raw" in Loader object (#1302)
Scala Common Enrich: added tests for getLoader function (#558)
Scala Hadoop Enrich: bumped to 0.12.0
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.11.0 (#1294)
Scala Hadoop Enrich: added collector-payload-1 and snowplow-thrift-raw-event as test dependencies (#1248)
Scala Hadoop Enrich: added support for processing Thrift raw events, thanks @pkallos! (#538)
Scala Hadoop Enrich: added tests to Hadoop Enrich for processing Thrift raw events (#559)
Scala Kinesis Enrich: bumped to 0.3.0
Scala Kinesis Enrich: bumped Scala Common Enrich to 0.11.0 (#1295)
Scala Kinesis Enrich: renamed default.conf to config.hocon.sample (#1242)
Kinesis Elasticsearch Sink: added LICENSE-2.0.txt (#1329)
Kinesis LZO S3 Sink: added. Version 0.1.0, thanks @pkallos! (#1016)
Version 0.9.14 (2014-12-31)
---------------------------
Common: added dedicated Vagrant setup (#1266)
Common: added Quickstart section to README (#1268)
Common: added script to sync region-specific Snowplow Hosted Assets buckets (#1269)
CloudFront Collector: replaced 1x1 pixel with stable GIF (#1259)
Clojure Collector: bumped to 0.9.1
Clojure Collector: increased Tomcat's HTTP header tolerance to 64kB (#1249)
Clojure Collector: changed 1x1 pixel response to use a stable GIF (#1258)
EmrEtlRunner: bumped to 0.10.0
EmrEtlRunner: removed hyphen from the pattern match for Clojure Collector logs (#1194)
EmrEtlRunner: on job failure, log overall jobflow and individual step statuses (#1153)
Scala Common Enrich: bumped to 0.10.0
Scala Common Enrich: bumped Scala Iglu Client to 0.2.0 (#1222)
Scala Common Enrich: updated SnowplowAdapter to accept payload_data versions above 1-0-0 (#1220)
Scala Common Enrich: updated SnowplowAdapter to make charset=utf-8 optional (#1257)
Scala Common Enrich: added Adapter to pre-process Pingdom events (#1164)
Scala Common Enrich: added Adapter to pre-process PagerDuty events (#1158)
Scala Common Enrich: added Adapter to pre-process Mandrill events (#1061)
Scala Hadoop Enrich: bumped to 0.11.0
Scala Hadoop Enrich: bumped Scala Common Enrich to 0.10.0 (#1223)
Scala Hadoop Enrich: added test job for PingdomAdapter (#1176)
Scala Hadoop Enrich: added test job for PagerdutyAdapter (#1175)
Scala Hadoop Enrich: added test job for MandrillAdapter (#1171)
Scala Hadoop Enrich: added test job for more relaxed payload_data schema matching (#1235)
Scala Hadoop Shred: bumped to 0.3.0
Scala Hadoop Shred: bumped Scala Common Enrich to 0.10.0 (#1236)
Scala Hadoop Shred: bumped Iglu Scala Client to 0.2.0 (#1230)
Scala Hadoop Shred: loosened match criteria for unstructured events and contexts (#1231)
StorageLoader: wrote JSON Path file for com.pingdom/incident_notify_of_close event (#1182)
StorageLoader: wrote JSON Path file for com.pingdom/incident_assign event (#1181)
StorageLoader: wrote JSON Path file for com.pingdom/incident_notify_user event (#1251)
StorageLoader: wrote JSON Path file for com.pagerduty/incident event (#1177)
StorageLoader: wrote JSON Path file for com.mandrill/message_sent event (#1059)
StorageLoader: wrote JSON Path file for com.mandrill/message_bounced event (#1058)
StorageLoader: wrote JSON Path file for com.mandrill/message_opened event (#1057)
StorageLoader: wrote JSON Path file for com.mandrill/message_marked_as_spam event (#1056)
StorageLoader: wrote JSON Path file for com.mandrill/message_delayed event (#1055)
StorageLoader: wrote JSON Path file for com.mandrill/message_soft_bounced event (#1054)