Snowplow Micro 1.3.0 released

Snowplow Micro 1.3.0

We are happy to announce the release of Snowplow Micro version 1.3.0!

This release bumps Stream Collector from 2.3.1 to 2.6.0 and Enrich from 2.0.2 to 3.1.3, both providing exciting improvements. Check out the Steam Collector Releases and Enrich Releases for an overview of the changes from the previous versions!

A distroless image for Micro is also now provided, which benefits from being smaller and more secure, with the caveat of not having utilities such as a shell in the image. It is tagged as snowplow/snowplow-micro:1.3.0-distroless.

Finally, a welcome change of --collector-config and --iglu now being optional, as defaults are now provided for the collector config and iglu resolver, giving a much nicer command to run Micro (with default settings):

docker run -p 9090:9090 snowplow/snowplow-micro:1.3.0

compared to the previous:

docker run \
  --mount type=bind,source=$(pwd)/example,destination=/config \
  -p 9090:9090 \
  snowplow/snowplow-micro:1.2.1 \
  --collector-config /config/micro.conf \
  --iglu /config/iglu.json

How to update:

Snowplow Micro is published on Docker Hub. You simply need to update your docker commands to use the 1.3.0 tag. To try the distroless image, you can update your tag to 1.3.0-distroless

Links

Github: Release Version 1.3.0 ยท snowplow-incubator/snowplow-micro ยท GitHub
Docker Hub: https://hub.docker.com/r/snowplow/snowplow-micro

3 Likes