From 7ba8d3f30ee82c3ca71ef7ac7238e77b2a5fe211 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 8 Feb 2023 14:28:26 +0000 Subject: [PATCH] Prepare for 1.5.0 release --- CHANGELOG | 4 ++++ README.md | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9ff731f..f2ab00d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Version 1.5.0 (2023-02-08) +-------------------------- +Add MICRO_IGLU_REGISTRY_URL and MICRO_IGLU_API_KEY environment variables (#132) + Version 1.4.0 (2023-01-31) -------------------------- Add the --output-tsv (-t) option that outputs [enriched TSV](https://docs.snowplow.io/docs/understanding-your-pipeline/canonical-event/understanding-the-enriched-tsv-format/) (#129) diff --git a/README.md b/README.md index 9d09d3c..8c5fa7d 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,12 @@ Snowplow Micro is hosted on Docker Hub ([snowplow/snowplow-micro][docker-micro]) The following command can be used to run Micro with the default configuration: ```bash -docker run -p 9090:9090 snowplow/snowplow-micro:1.4.0 +docker run -p 9090:9090 snowplow/snowplow-micro:1.5.0 ``` A [distroless][distroless-repo] image is also provided, which benefits from being smaller and more secure, with the downside of basic utilities (such as a shell) not being present in the image. -The distroless image is tagged as `snowplow/snowplow-micro:1.4.0-distroless` on Docker Hub. +The distroless image is tagged as `snowplow/snowplow-micro:1.5.0-distroless` on Docker Hub. #### Configuring Micro @@ -43,7 +43,7 @@ The configuration files must be placed in a folder that is mounted in the Docker docker run \ --mount type=bind,source=$(pwd)/example,destination=/config \ -p 9090:9090 \ - snowplow/snowplow-micro:1.4.0 \ + snowplow/snowplow-micro:1.5.0 \ --collector-config /config/micro.conf \ --iglu /config/iglu.json ``` @@ -67,16 +67,16 @@ example If you cannot use Docker, a Snowplow Micro jar file is hosted on the [Github releases][gh-releases]. As an example, run Micro as: ```bash -java -jar snowplow-micro-1.4.0.jar --collector-config example/micro.conf --iglu example/iglu.json +java -jar snowplow-micro-1.5.0.jar --collector-config example/micro.conf --iglu example/iglu.json ``` In case you also want an embedded Iglu, apply the same directory structure as shown above and run for example: ```bash # Unix -java -cp snowplow-micro-1.4.0.jar:example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json +java -cp snowplow-micro-1.5.0.jar:example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json # Windows -java -cp snowplow-micro-1.4.0.jar;example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json +java -cp snowplow-micro-1.5.0.jar;example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json ``` ### Send events and start testing