Skip to content

Commit

Permalink
Prepare for 1.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
stanch committed Feb 8, 2023
1 parent c6aca68 commit 7ba8d3f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
```
Expand All @@ -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
Expand Down

0 comments on commit 7ba8d3f

Please sign in to comment.