Skip to content

Version 1.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 22 Jun 18:10
· 54 commits to master since this release

The biggest new feature allowing files to be named on the command line. You no longer need to provide base-64 encoded config on the command line, but instead you can pass a file path for each of the --config and --resolver arguments. Here is an example of a docker command, in which the config files are mounted into the container:

docker run \
  -v /path/to/configs:/snowplow \
  snowplow/snowplow-bigquery-streamloader:1.4.0 \
  --config=/snowplow/config.hocon \
  --resolver=/snowplow/resolver.json

We also bumped the cats effect library from version 2 to version 3. This is a real under-the-hood type change, but it's a big step up onto a newer major version of our main runtime library.

Changelog

  • Bump google-cloud-storage to 2.7.2 (#293)
  • Bump google-cloud-pubsub to 1.119.0 (#292)
  • Bump google-cloud-bigquery to 2.13.0 (#291)
  • Use the http4s iglu registry lookup (#230)
  • Bump cats effect to 3.3.12 (#290)
  • Support config files passed on the command line (#282)