From 428618e7211eef224a718bf4da3bc2a9e8fcc991 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Wed, 28 Mar 2018 15:30:13 +0100 Subject: [PATCH 1/9] Add com.snowplowanalytics.snowplow/ip_lookups/jsonschema/2-0-0 (closes #744) --- .../ip_lookups/jsonschema/2-0-0 | 90 +++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 schemas/com.snowplowanalytics.snowplow/ip_lookups/jsonschema/2-0-0 diff --git a/schemas/com.snowplowanalytics.snowplow/ip_lookups/jsonschema/2-0-0 b/schemas/com.snowplowanalytics.snowplow/ip_lookups/jsonschema/2-0-0 new file mode 100644 index 000000000..934a5d6d1 --- /dev/null +++ b/schemas/com.snowplowanalytics.snowplow/ip_lookups/jsonschema/2-0-0 @@ -0,0 +1,90 @@ +{ + "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", + "description": "Schema for MaxMind GeoIP2 ip lookups enrichment", + "self": { + "vendor": "com.snowplowanalytics.snowplow", + "name": "ip_lookups", + "format": "jsonschema", + "version": "2-0-0" + }, + + "type": "object", + "properties": { + "vendor": { + "type": "string", + "maxLength": 256 + }, + "name": { + "type": "string", + "maxLength": 256 + }, + "enabled": { + "type": "boolean" + }, + "parameters": { + "type": "object", + "properties": { + + "geo": { + "type": "object", + "properties": { + "database": { + "enum": ["GeoLite2-City.mmdb", "GeoIP2-City.mmdb"] + }, + "uri": { + "type": "string", + "format": "uri" + } + }, + "required": ["database", "uri"] + }, + + "isp": { + "type": "object", + "properties": { + "database": { + "enum": ["GeoIP2-ISP.mmdb"] + }, + "uri": { + "type": "string", + "format": "uri" + } + }, + "required": ["database", "uri"] + }, + + "domain": { + "type": "object", + "properties": { + "database": { + "enum": ["GeoIP2-Domain.mmdb"] + }, + "uri": { + "type": "string", + "format": "uri" + } + }, + "required": ["database", "uri"] + }, + + "connectionType": { + "type": "object", + "properties": { + "database": { + "enum": ["GeoIP2-Connection-Type.mmdb"] + }, + "uri": { + "type": "string", + "format": "uri" + } + }, + "required": ["database", "uri"] + } + + }, + "additionalProperties": false + } + }, + "required": ["name", "vendor", "enabled", "parameters"], + "additionalProperties": false +} From 3e5503085d6a98d43982ff6b17c74208cdd08a21 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Tue, 10 Apr 2018 16:35:11 +0100 Subject: [PATCH 2/9] Add com.mandrill/message_bounced/jsonschema/1-0-1 (closes #746) --- .../message_bounced/jsonschema/1-0-1 | 111 ++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 schemas/com.mandrill/message_bounced/jsonschema/1-0-1 diff --git a/schemas/com.mandrill/message_bounced/jsonschema/1-0-1 b/schemas/com.mandrill/message_bounced/jsonschema/1-0-1 new file mode 100644 index 000000000..cecd22965 --- /dev/null +++ b/schemas/com.mandrill/message_bounced/jsonschema/1-0-1 @@ -0,0 +1,111 @@ +{ + "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", + "description": "Schema for a Mandrill hard bounce event", + "self": { + "vendor": "com.mandrill", + "name": "message_bounced", + "format": "jsonschema", + "version": "1-0-1" + }, + + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "msg": { + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "_version": { + "type": "string" + }, + "bgtools_code": { + "type": "number" + }, + "bounce_description": { + "type": "string" + }, + "diag": { + "type": "string" + }, + "email": { + "type": "string" + }, + "metadata": { + "type": "object", + "properties": { + "user_id": { + "type": "number" + } + }, + "additionalProperties": true + }, + "sender": { + "type": "string" + }, + "state": { + "type": "string" + }, + "subaccount": { + "type": ["string", "null"] + }, + "subject": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "string" + } + }, + "ts": { + "type": "string", + "format": "date-time" + }, + "smtp_events": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + }, + "type": { + "type": "string" + }, + "diag": { + "type": "string" + }, + "source_ip": { + "type": "string" + }, + "destination_ip": { + "type": "string" + }, + "size": { + "type": "integer" + } + }, + "additionalProperties": true + } + }, + "resends": { + "type": "array" + }, + "template": { + "type": ["string", "null"] + } + }, + "additionalProperties": false + }, + "ts": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false +} From ad395b6ee64f98764f35da63a1024a08be034c49 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Tue, 10 Apr 2018 16:33:41 +0100 Subject: [PATCH 3/9] Add com.mandrill/message_clicked/jsonschema/1-0-1 (closes #747) --- .../message_clicked/jsonschema/1-0-1 | 239 ++++++++++++++++++ 1 file changed, 239 insertions(+) create mode 100644 schemas/com.mandrill/message_clicked/jsonschema/1-0-1 diff --git a/schemas/com.mandrill/message_clicked/jsonschema/1-0-1 b/schemas/com.mandrill/message_clicked/jsonschema/1-0-1 new file mode 100644 index 000000000..95c0ee21e --- /dev/null +++ b/schemas/com.mandrill/message_clicked/jsonschema/1-0-1 @@ -0,0 +1,239 @@ +{ + "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", + "description": "Schema for a Mandrill message clicked event", + "self": { + "vendor": "com.mandrill", + "name": "message_clicked", + "format": "jsonschema", + "version": "1-0-1" + }, + + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "ip": { + "type": "string" + }, + "location": { + "type": "object", + "properties": { + "city": { + "type": "string" + }, + "country_short": { + "type": "string" + }, + "country": { + "type": "string" + }, + "latitude": { + "type": "number" + }, + "longitude": { + "type": "number" + }, + "postal_code": { + "type": "string" + }, + "region": { + "type": "string" + }, + "timezone": { + "type": "string" + } + }, + "additionalProperties": false + }, + "msg": { + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "_version": { + "type": "string" + }, + "clicks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + }, + "url": { + "type": "string" + }, + "ip": { + "type": "string" + }, + "location": { + "type": ["string", "null"] + }, + "ua": { + "type": "string" + } + }, + "additionalProperties": true + } + }, + "email": { + "type": "string" + }, + "metadata": { + "type": "object", + "properties": { + "user_id": { + "type": "number" + } + }, + "additionalProperties": true + }, + "opens": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + }, + "ip": { + "type": "string" + }, + "location": { + "type": ["string", "null"] + }, + "ua": { + "type": "string" + } + }, + "additionalProperties": true + } + }, + "sender": { + "type": "string" + }, + "state": { + "type": "string" + }, + "subaccount": { + "type": ["string", "null"] + }, + "subject": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "string" + } + }, + "ts": { + "type": "string", + "format": "date-time" + }, + "resends": { + "type": "array" + }, + "smtp_events": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + }, + "type": { + "type": "string" + }, + "diag": { + "type": "string" + }, + "source_ip": { + "type": "string" + }, + "destination_ip": { + "type": "string" + }, + "size": { + "type": "integer" + } + }, + "additionalProperties": true + } + }, + "template": { + "type": ["string", "null"] + } + }, + "additionalProperties": false + }, + "ts": { + "type": "string", + "format": "date-time" + }, + "url": { + "type": "string" + }, + "user_agent_parsed": { + "type": "object", + "properties": { + "mobile": { + "type": "boolean" + }, + "os_company_url": { + "type": "string" + }, + "os_company": { + "type": "string" + }, + "os_family": { + "type": "string" + }, + "os_icon": { + "type": "string" + }, + "os_name": { + "type": "string" + }, + "os_url": { + "type": "string" + }, + "type": { + "type": "string" + }, + "ua_company_url": { + "type": "string" + }, + "ua_company": { + "type": "string" + }, + "ua_family": { + "type": "string" + }, + "ua_icon": { + "type": "string" + }, + "ua_name": { + "type": "string" + }, + "ua_url": { + "type": "string" + }, + "ua_version": { + "type": "string" + } + }, + "additionalProperties": false + }, + "user_agent": { + "type": "string" + } + }, + "additionalProperties": false +} From c4dc39e0a6c6d18821630cecb0b86b45c806c0de Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Tue, 10 Apr 2018 16:32:07 +0100 Subject: [PATCH 4/9] Add com.mandrill/message_delayed/jsonschema/1-0-1 (closes #748) --- .../message_delayed/jsonschema/1-0-1 | 111 ++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 schemas/com.mandrill/message_delayed/jsonschema/1-0-1 diff --git a/schemas/com.mandrill/message_delayed/jsonschema/1-0-1 b/schemas/com.mandrill/message_delayed/jsonschema/1-0-1 new file mode 100644 index 000000000..ca38b7e61 --- /dev/null +++ b/schemas/com.mandrill/message_delayed/jsonschema/1-0-1 @@ -0,0 +1,111 @@ +{ + "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", + "description": "Schema for a Mandrill message delayed event", + "self": { + "vendor": "com.mandrill", + "name": "message_delayed", + "format": "jsonschema", + "version": "1-0-1" + }, + + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "msg": { + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "_version": { + "type": "string" + }, + "clicks": { + "type": "array" + }, + "email": { + "type": "string" + }, + "metadata": { + "type": "object", + "properties": { + "user_id": { + "type": "number" + } + }, + "additionalProperties": true + }, + "opens": { + "type": "array" + }, + "sender": { + "type": "string" + }, + "smtp_events": { + "type": "array", + "items": { + "type": "object", + "properties": { + "destination_ip": { + "type": "string" + }, + "diag": { + "type": "string" + }, + "size": { + "type": "number" + }, + "source_ip": { + "type": "string" + }, + "ts": { + "type": "string", + "format": "date-time" + }, + "type": { + "type": "string" + } + }, + "additionalProperties": true + } + }, + "state": { + "type": "string" + }, + "subaccount": { + "type": ["string", "null"] + }, + "subject": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "string" + } + }, + "ts": { + "type": "string", + "format": "date-time" + }, + "resends": { + "type": "array" + }, + "template": { + "type": ["string", "null"] + } + }, + "additionalProperties": false + }, + "ts": { + "type": "string", + "format": "date-time" + }, + "diag": { + "type": "string" + } + }, + "additionalProperties": false +} From 0c7703b0a5d00bf03d3415e5c5774c9d55067e18 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Tue, 10 Apr 2018 16:30:41 +0100 Subject: [PATCH 5/9] Add com.mandrill/message_marked_as_spam/jsonschema/1-0-1 (closes #749) --- .../message_marked_as_spam/jsonschema/1-0-1 | 97 +++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 schemas/com.mandrill/message_marked_as_spam/jsonschema/1-0-1 diff --git a/schemas/com.mandrill/message_marked_as_spam/jsonschema/1-0-1 b/schemas/com.mandrill/message_marked_as_spam/jsonschema/1-0-1 new file mode 100644 index 000000000..099a787bd --- /dev/null +++ b/schemas/com.mandrill/message_marked_as_spam/jsonschema/1-0-1 @@ -0,0 +1,97 @@ +{ + "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", + "description": "Schema for a Mandrill message marked as spam event", + "self": { + "vendor": "com.mandrill", + "name": "message_marked_as_spam", + "format": "jsonschema", + "version": "1-0-1" + }, + + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "msg": { + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "_version": { + "type": "string" + }, + "clicks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + }, + "url": { + "type": "string" + } + }, + "additionalProperties": true + } + }, + "email": { + "type": "string" + }, + "metadata": { + "type": "object", + "properties": { + "user_id": { + "type": "number" + } + }, + "additionalProperties": true + }, + "opens": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": true + } + }, + "sender": { + "type": "string" + }, + "state": { + "type": "string" + }, + "subaccount": { + "type": ["string", "null"] + }, + "subject": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "string" + } + }, + "ts": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false + }, + "ts": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false +} From e915bb07e720c7d487b2db2e1362a7c1b7223030 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Tue, 10 Apr 2018 16:29:19 +0100 Subject: [PATCH 6/9] Add com.mandrill/message_opened/jsonschema/1-0-1 (closes #750) --- .../message_opened/jsonschema/1-0-1 | 236 ++++++++++++++++++ 1 file changed, 236 insertions(+) create mode 100644 schemas/com.mandrill/message_opened/jsonschema/1-0-1 diff --git a/schemas/com.mandrill/message_opened/jsonschema/1-0-1 b/schemas/com.mandrill/message_opened/jsonschema/1-0-1 new file mode 100644 index 000000000..8c03ff3c2 --- /dev/null +++ b/schemas/com.mandrill/message_opened/jsonschema/1-0-1 @@ -0,0 +1,236 @@ +{ + "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", + "description": "Schema for a Mandrill message opened event", + "self": { + "vendor": "com.mandrill", + "name": "message_opened", + "format": "jsonschema", + "version": "1-0-1" + }, + + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "ip": { + "type": "string" + }, + "location": { + "type": "object", + "properties": { + "city": { + "type": "string" + }, + "country_short": { + "type": "string" + }, + "country": { + "type": "string" + }, + "latitude": { + "type": "number" + }, + "longitude": { + "type": "number" + }, + "postal_code": { + "type": "string" + }, + "region": { + "type": "string" + }, + "timezone": { + "type": "string" + } + }, + "additionalProperties": false + }, + "msg": { + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "_version": { + "type": "string" + }, + "clicks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + }, + "url": { + "type": "string" + }, + "ip": { + "type": "string" + }, + "location": { + "type": "string" + }, + "ua": { + "type": "string" + } + }, + "additionalProperties": true + } + }, + "email": { + "type": "string" + }, + "metadata": { + "type": "object", + "properties": { + "user_id": { + "type": "number" + } + }, + "additionalProperties": true + }, + "opens": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + }, + "ip": { + "type": "string" + }, + "location": { + "type": ["string", "null"] + }, + "ua": { + "type": "string" + } + }, + "additionalProperties": true + } + }, + "sender": { + "type": "string" + }, + "state": { + "type": "string" + }, + "subaccount": { + "type": ["string", "null"] + }, + "subject": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "string" + } + }, + "ts": { + "type": "string", + "format": "date-time" + }, + "resends": { + "type": "array" + }, + "smtp_events": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + }, + "type": { + "type": "string" + }, + "diag": { + "type": "string" + }, + "source_ip": { + "type": "string" + }, + "destination_ip": { + "type": "string" + }, + "size": { + "type": "integer" + } + }, + "additionalProperties": true + } + }, + "template": { + "type": ["string", "null"] + } + }, + "additionalProperties": false + }, + "ts": { + "type": "string", + "format": "date-time" + }, + "user_agent_parsed": { + "type": "object", + "properties": { + "mobile": { + "type": "boolean" + }, + "os_company_url": { + "type": ["string", "null"] + }, + "os_company": { + "type": ["string", "null"] + }, + "os_family": { + "type": ["string", "null"] + }, + "os_icon": { + "type": ["string", "null"] + }, + "os_name": { + "type": ["string", "null"] + }, + "os_url": { + "type": ["string", "null"] + }, + "type": { + "type": ["string", "null"] + }, + "ua_company_url": { + "type": ["string", "null"] + }, + "ua_company": { + "type": ["string", "null"] + }, + "ua_family": { + "type": ["string", "null"] + }, + "ua_icon": { + "type": ["string", "null"] + }, + "ua_name": { + "type": ["string", "null"] + }, + "ua_url": { + "type": ["string", "null"] + }, + "ua_version": { + "type": ["string", "null"] + } + }, + "additionalProperties": false + }, + "user_agent": { + "type": "string" + } + }, + "additionalProperties": false +} From c3a3d0e77d282b784264d139c8f8811994088970 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Tue, 10 Apr 2018 16:27:55 +0100 Subject: [PATCH 7/9] Add com.mandrill/message_soft_bounced/jsonschema/1-0-1 (closes #751) --- .../message_soft_bounced/jsonschema/1-0-1 | 111 ++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 schemas/com.mandrill/message_soft_bounced/jsonschema/1-0-1 diff --git a/schemas/com.mandrill/message_soft_bounced/jsonschema/1-0-1 b/schemas/com.mandrill/message_soft_bounced/jsonschema/1-0-1 new file mode 100644 index 000000000..281dba361 --- /dev/null +++ b/schemas/com.mandrill/message_soft_bounced/jsonschema/1-0-1 @@ -0,0 +1,111 @@ +{ + "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", + "description": "Schema for a Mandrill message soft bounced event", + "self": { + "vendor": "com.mandrill", + "name": "message_soft_bounced", + "format": "jsonschema", + "version": "1-0-1" + }, + + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "msg": { + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "_version": { + "type": "string" + }, + "bgtools_code": { + "type": "number" + }, + "bounce_description": { + "type": "string" + }, + "diag": { + "type": "string" + }, + "email": { + "type": "string" + }, + "metadata": { + "type": "object", + "properties": { + "user_id": { + "type": "number" + } + }, + "additionalProperties": true + }, + "sender": { + "type": "string" + }, + "state": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "string" + } + }, + "ts": { + "type": "string", + "format": "date-time" + }, + "resends": { + "type": "array" + }, + "smtp_events": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + }, + "type": { + "type": "string" + }, + "diag": { + "type": "string" + }, + "source_ip": { + "type": "string" + }, + "destination_ip": { + "type": "string" + }, + "size": { + "type": "integer" + } + }, + "additionalProperties": true + } + }, + "subaccount": { + "type": ["string", "null"] + }, + "template": { + "type": ["string", "null"] + } + }, + "additionalProperties": false + }, + "ts": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false +} From 35ca01627e10f5be72463a3676508af948ad3a03 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Tue, 10 Apr 2018 16:26:06 +0100 Subject: [PATCH 8/9] Add com.mandrill/recipient_unsubscribed/jsonschema/1-0-1 (closes #752) --- .../recipient_unsubscribed/jsonschema/1-0-1 | 97 +++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 schemas/com.mandrill/recipient_unsubscribed/jsonschema/1-0-1 diff --git a/schemas/com.mandrill/recipient_unsubscribed/jsonschema/1-0-1 b/schemas/com.mandrill/recipient_unsubscribed/jsonschema/1-0-1 new file mode 100644 index 000000000..386f34b9c --- /dev/null +++ b/schemas/com.mandrill/recipient_unsubscribed/jsonschema/1-0-1 @@ -0,0 +1,97 @@ +{ + "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", + "description": "Schema for a Mandrill recipient unsubscribed event", + "self": { + "vendor": "com.mandrill", + "name": "recipient_unsubscribed", + "format": "jsonschema", + "version": "1-0-1" + }, + + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "msg": { + "type": "object", + "properties": { + "_id": { + "type": "string" + }, + "_version": { + "type": "string" + }, + "clicks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + }, + "url": { + "type": "string" + } + }, + "additionalProperties": true + } + }, + "email": { + "type": "string" + }, + "metadata": { + "type": "object", + "properties": { + "user_id": { + "type": "number" + } + }, + "additionalProperties": false + }, + "opens": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ts": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": true + } + }, + "sender": { + "type": "string" + }, + "state": { + "type": "string" + }, + "subaccount": { + "type": ["string", "null"] + }, + "subject": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "string" + } + }, + "ts": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false + }, + "ts": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false +} From 2b34a0d1ad86443ca840b3c11bed8071d6e9183b Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Tue, 10 Apr 2018 17:06:22 +0100 Subject: [PATCH 9/9] Prepare for release --- CHANGELOG | 11 +++++++++++ README.md | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 8d855be60..cc6c52eca 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +Release 89 (2018-04-11) +----------------------- +Add com.snowplowanalytics.snowplow/ip_lookups/jsonschema/2-0-0 (#744) +Add com.mandrill/recipient_unsubscribed/jsonschema/1-0-1 (#752) +Add com.mandrill/message_soft_bounced/jsonschema/1-0-1 (#751) +Add com.mandrill/message_opened/jsonschema/1-0-1 (#750) +Add com.mandrill/message_marked_as_spam/jsonschema/1-0-1 (#749) +Add com.mandrill/message_delayed/jsonschema/1-0-1 (#748) +Add com.mandrill/message_clicked/jsonschema/1-0-1 (#747) +Add com.mandrill/message_bounced/jsonschema/1-0-1 (#746) + Release 88 (2018-04-01) ----------------------- Add com.snowplowanalytics.snowplow.storage/postgresql_config/jsonschema/2-0-0 (#739) diff --git a/README.md b/README.md index 8a5508612..6a56931f1 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ limitations under the License. [travis]: https://travis-ci.org/snowplow/iglu-central [travis-image]: https://travis-ci.org/snowplow/iglu-central.png?branch=master -[release-image]: http://img.shields.io/badge/release-88-orange.svg?style=flat +[release-image]: http://img.shields.io/badge/release-89-orange.svg?style=flat [releases]: https://github.com/snowplow/iglu-central/releases [license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat