From f49941a9ab959ed30fbcf7d261a2ee82f88c7c80 Mon Sep 17 00:00:00 2001 From: Ian Streeter Date: Fri, 25 Jun 2021 13:12:47 +0100 Subject: [PATCH] Prepare for release --- CHANGELOG | 25 +++++++++++++++++++ README.md | 4 +-- .../snowplow/postgres/api/DB.scala | 2 +- .../snowplow/postgres/api/SchemaState.scala | 2 +- .../snowplow/postgres/api/State.scala | 2 +- .../snowplow/postgres/api/TableState.scala | 2 +- .../snowplow/postgres/config/DBConfig.scala | 2 +- .../postgres/logging/Slf4jLogHandler.scala | 2 +- .../snowplow/postgres/package.scala | 2 +- .../snowplow/postgres/shredding/Entity.scala | 2 +- .../postgres/shredding/Shredded.scala | 2 +- .../snowplow/postgres/shredding/Type.scala | 2 +- .../snowplow/postgres/shredding/Value.scala | 2 +- .../snowplow/postgres/shredding/schema.scala | 2 +- .../postgres/shredding/transform.scala | 2 +- .../postgres/storage/CommentIssue.scala | 2 +- .../snowplow/postgres/storage/ddl.scala | 2 +- .../postgres/storage/definitions.scala | 2 +- .../snowplow/postgres/storage/query.scala | 2 +- .../snowplow/postgres/storage/sql.scala | 2 +- .../snowplow/postgres/storage/utils.scala | 2 +- .../postgres/streaming/UnorderedPipe.scala | 2 +- .../snowplow/postgres/streaming/data.scala | 2 +- .../snowplow/postgres/streaming/package.scala | 2 +- .../snowplow/postgres/streaming/sink.scala | 2 +- .../snowplow/postgres/Database.scala | 12 +++++++++ .../postgres/api/SchemaStateSpec.scala | 2 +- .../snowplow/postgres/api/StateSpec.scala | 2 +- .../snowplow/postgres/queryspec.scala | 2 +- .../postgres/shredding/TypeSpec.scala | 2 +- .../snowplow/postgres/config/Cli.scala | 2 +- .../postgres/config/LoaderConfig.scala | 2 +- .../snowplow/postgres/loader/Main.scala | 2 +- .../snowplow/postgres/streaming/source.scala | 2 +- .../config/CliSpec.scala | 2 +- 35 files changed, 71 insertions(+), 34 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a496d61..765bb0d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,28 @@ +Version 0.2.0 (2021-07-07) +-------------------------- +Add PubSub configuration to the example config file (#34) +Rename storage to output in config file (#33) +Use jsonb instead of varchar for complex enums (#31) +Add ability to disable CloudWatch metric reportings (#11) +Remove requirement to always use Kinesis Enhanced Fan Out (#14) +Bump postgresql to 42.2.0 (#15) +Bump schema-ddl to 0.13.1 (#27) +Bump log4s to 1.10.0 (#26) +Bump fs2 to 2.5.6 (#25) +Bump doobie to 0.13.4 (#24) +Bump fs2-google-pubsub to 0.17.0 (#23) +Bump fs2 aws to 3.1.1 (#22) +Bump circe to 0.14.1 (#30) +Bump cats-effect to 2.5.1 (#29) +Bump decline to 2.0.0 (#28) +Bump commons-codec to 1.15 (#21) +Use hocon for cli config instead of self-describing json (#20) +Build docker images for amd64 and arm64 architectures (#19) +Use AdoptOpenJDK 11 as docker base image (#18) +Publish to maven central instead of bintray (#17) +Attach jar files to github release (#10) +Fix type derivation of enum fields (#12) + Version 0.1.1 (2020-11-10) -------------------------- Add support for nullable fields (#6) diff --git a/README.md b/README.md index 41e944e..36c1788 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,12 @@ Assuming [Docker][docker] is installed: $ docker run --rm -v $PWD/config:/snowplow/config \ snowplow/snowplow-postgres-loader:latest \ --resolver /snowplow/config/resolver.json \ - --config /snowplow/config/config.json + --config /snowplow/config/config.hocon.sample ``` ## Copyright and License -Snowplow Postgres Loader is copyright 2020 Snowplow Analytics Ltd. +Snowplow Postgres Loader is copyright 2020-2021 Snowplow Analytics Ltd. Licensed under the **[Apache License, Version 2.0][license]** (the "License"); you may not use this software except in compliance with the License. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/DB.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/DB.scala index 40445a1..a3ec08d 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/DB.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/DB.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/SchemaState.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/SchemaState.scala index db917bf..b88a92a 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/SchemaState.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/SchemaState.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/State.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/State.scala index a544bec..deb7dbb 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/State.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/State.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/TableState.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/TableState.scala index ad917cb..72b7865 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/TableState.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/api/TableState.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/DBConfig.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/DBConfig.scala index 635946c..766f906 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/DBConfig.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/DBConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/logging/Slf4jLogHandler.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/logging/Slf4jLogHandler.scala index 2398145..9ce8dc2 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/logging/Slf4jLogHandler.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/logging/Slf4jLogHandler.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/package.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/package.scala index 9cfafe2..d6a29d3 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/package.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/package.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Entity.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Entity.scala index 5bca15b..ea7d7c3 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Entity.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Entity.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Shredded.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Shredded.scala index 3042bd9..fdaf0e9 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Shredded.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Shredded.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Type.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Type.scala index f713bf6..7384e1d 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Type.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Type.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Value.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Value.scala index 50c7962..b71e56e 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Value.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/Value.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/schema.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/schema.scala index 601dfae..7b5353d 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/schema.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/schema.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/transform.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/transform.scala index b1fa8a6..b2c9366 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/transform.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/shredding/transform.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/CommentIssue.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/CommentIssue.scala index 1705d87..9f56581 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/CommentIssue.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/CommentIssue.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/ddl.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/ddl.scala index e7718f0..3b695aa 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/ddl.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/ddl.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/definitions.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/definitions.scala index 0783dd7..12dcefb 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/definitions.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/definitions.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/query.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/query.scala index 00a925f..53dcf3d 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/query.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/query.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/sql.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/sql.scala index 9b4f357..af3be94 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/sql.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/sql.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/utils.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/utils.scala index 16d50b4..70826c0 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/utils.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/storage/utils.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/UnorderedPipe.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/UnorderedPipe.scala index 72af2f6..2b77528 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/UnorderedPipe.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/UnorderedPipe.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/data.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/data.scala index 8b7e0cf..a53e17f 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/data.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/data.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/package.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/package.scala index 9503f2e..028e4fc 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/package.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/package.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/sink.scala b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/sink.scala index c55848c..2535690 100644 --- a/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/sink.scala +++ b/modules/common/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/sink.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/Database.scala b/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/Database.scala index 13a79ef..aae93cc 100644 --- a/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/Database.scala +++ b/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/Database.scala @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. + * + * This program is licensed to you under the Apache License Version 2.0, + * and you may not use this file except in compliance with the Apache License Version 2.0. + * You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0. + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the Apache License Version 2.0 is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the Apache License Version 2.0 for the specific language governing permissions and limitations there under. + */ package com.snowplowanalytics.snowplow.postgres import java.net.URI diff --git a/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/api/SchemaStateSpec.scala b/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/api/SchemaStateSpec.scala index 50b9ba2..4bdaca2 100644 --- a/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/api/SchemaStateSpec.scala +++ b/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/api/SchemaStateSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/api/StateSpec.scala b/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/api/StateSpec.scala index b07c6ee..b80bd71 100644 --- a/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/api/StateSpec.scala +++ b/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/api/StateSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/queryspec.scala b/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/queryspec.scala index 3ea809d..564d391 100644 --- a/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/queryspec.scala +++ b/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/queryspec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/shredding/TypeSpec.scala b/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/shredding/TypeSpec.scala index 396aa89..f31e5b3 100644 --- a/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/shredding/TypeSpec.scala +++ b/modules/common/src/test/scala/com/snowplowanalytics/snowplow/postgres/shredding/TypeSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/Cli.scala b/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/Cli.scala index b46bb67..578343a 100644 --- a/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/Cli.scala +++ b/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/Cli.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/LoaderConfig.scala b/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/LoaderConfig.scala index bdf8193..068e73c 100644 --- a/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/LoaderConfig.scala +++ b/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/config/LoaderConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/loader/Main.scala b/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/loader/Main.scala index 59e13d6..93fbd1e 100644 --- a/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/loader/Main.scala +++ b/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/loader/Main.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/source.scala b/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/source.scala index b901e3b..7f3cffa 100644 --- a/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/source.scala +++ b/modules/loader/src/main/scala/com/snowplowanalytics/snowplow/postgres/streaming/source.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/loader/src/test/scala/com.snowplowanalytics.snowplow.postgres/config/CliSpec.scala b/modules/loader/src/test/scala/com.snowplowanalytics.snowplow.postgres/config/CliSpec.scala index 472ad16..57636ba 100644 --- a/modules/loader/src/test/scala/com.snowplowanalytics.snowplow.postgres/config/CliSpec.scala +++ b/modules/loader/src/test/scala/com.snowplowanalytics.snowplow.postgres/config/CliSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2020-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0.