Skip to content

Commit

Permalink
Prepare for release version 1.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
morazow committed Jun 15, 2021
1 parent 2357318 commit 34ef626
Show file tree
Hide file tree
Showing 9 changed files with 63 additions and 31 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ scala:
- 2.12.12

env:
- EXASOL_DOCKER_VERSION="6.2.12-d1"
- EXASOL_DOCKER_VERSION="7.0.8"
- EXASOL_DOCKER_VERSION="6.2.15-d1"
- EXASOL_DOCKER_VERSION="7.0.10"

before_install:
- git fetch --tags
Expand Down
4 changes: 2 additions & 2 deletions doc/changes/changes_1.1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ converter and improved the documentation.

### Runtime Dependency Updates

* Added `org.apache.hadoop:hadoop-hdfs:3.3.0`
* Added `org.alluxio:alluxio-core-client-hdfs:2.5.0`
* Updated `org.apache.parquet:parquet-hadoop:1.11.1` to `1.12.0`

### Test Dependency Updates

* Added `org.apache.hadoop:hadoop-hdfs:3.3.0`
* Added `org.alluxio:alluxio-core-client-hdfs:2.5.0`
* Updated `org.scalatest:scalatest:3.2.3` to `3.2.6`
* Updated `org.mockito:mockito-core:3.7.7` to `3.8.0`
* Updated `org.testcontainers:localstack:1.15.1` to `1.15.2`
Expand Down
45 changes: 39 additions & 6 deletions doc/changes/changes_1.2.0.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,48 @@
# Cloud Storage Extension 1.2.0, released 2021-MM-DD
# Cloud Storage Extension 1.2.0, released 2021-06-15

Code name:
Code name: Fixed bug listing files on a path using asterisk

## Summary

## Bugs
In this release we fixed a bug related to listing files using asterisk on a
path. We also updated user guide and added link checker to detect broken links
in the project documentation.

* #146: Fixed issue listing files when asterisk is missing on a path (PR #149).
## Bugfixes

* #146: Fixed issue listing files when asterisk is missing on a path

## Documentation

* #141: Updated readme to reflect recent changes (PR #142).
* #143: Added broken links checker Github actions workflow (PR #148).
* #141: Updated readme to reflect recent changes
* #143: Added broken links checker Github actions workflow
* #151: Update user guide overview with additional sources

## Dependency Updates

### Runtime Dependency Updates

* Updated Scala version `2.12.12` to `2.12.14`
* Updated `org.apache.orc:orc-core:1.6.7` to `1.6.8`
* Updated `org.apache.hadoop:hadoop-aws:3.3.0` to `3.3.1`
* Updated `org.apache.hadoop:hadoop-azure:3.3.0` to `3.3.1`
* Updated `org.apache.hadoop:hadoop-azure-datalake:3.3.0` to `3.3.1`
* Updated `org.apache.hadoop:hadoop-client:3.3.0` to `3.3.1`
* Updated `org.apache.hadoop:hadoop-hdfs:3.3.0` to `3.3.1`

### Test Dependency Updates

* Updated `com.exasol:test-db-builder-java:3.1.1` to `3.2.0`
* Updated `com.exasol:exasol-testcontainers:3.5.1` to `3.5.3`
* Updated `org.scalatest:scalatest:3.2.6` to `3.2.9`
* Updated `org.mockito:mockito-core:3.8.0` to `3.11.1`
* Updated `org.testcontainers:localstack:1.15.2` to `1.15.3`
* Updated `com.dimafeng:testcontainers-scala-scalatest:0.39.3` to `0.39.5`

### Plugin Updates

* Updated `com.eed3si9n:sbt-assembly:0.15.0` to `1.0.0`
* Updated `com.timushev.sbt:sbt-updates:0.5.2` to `0.5.3`
* Updated `com.typesafe.sbt:sbt-git:1.0.0` to `1.0.1`
* Updated `org.scoverage:sbt-coveralls:1.2.7` to `1.3.0
* Updated `org.scoverage:sbt-scoverage:1.6.1` to `1.8.2`
16 changes: 8 additions & 8 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ object Dependencies {

// Runtime dependencies versions
private val ImportExportUDFVersion = "0.2.0"
private val HadoopVersion = "3.3.0"
private val HadoopVersion = "3.3.1"
private val DeltaVersion = "0.7.0"
private val OrcVersion = "1.6.7"
private val OrcVersion = "1.6.8"
private val ParquetVersion = "1.12.0"
private val GoogleStorageVersion = "1.9.4-hadoop3"
private val SparkSQLVersion = "3.0.1"
private val AlluxioCoreHDFSVersion = "2.5.0"

// Test dependencies versions
private val ScalaTestVersion = "3.2.6"
private val ScalaTestVersion = "3.2.9"
private val ScalaTestPlusVersion = "1.0.0-M2"
private val MockitoCoreVersion = "3.8.0"
private val MockitoCoreVersion = "3.11.1"
private val HamcrestVersion = "2.2"
private val ExasolHamcrestMatcherVersion = "1.4.0"
private val ExasolTestDBBuilderVersion = "3.1.1"
private val ExasolTestContainersVersion = "3.5.1"
private val TestContainersLocalstackVersion = "1.15.2"
private val TestContainersScalaVersion = "0.39.3"
private val ExasolTestDBBuilderVersion = "3.2.0"
private val ExasolTestContainersVersion = "3.5.3"
private val TestContainersLocalstackVersion = "1.15.3"
private val TestContainersScalaVersion = "0.39.5"

val Resolvers: Seq[Resolver] = Seq(
"Exasol Releases" at "https://maven.exasol.com/artifactory/exasol-releases"
Expand Down
1 change: 0 additions & 1 deletion project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ object Settings {
// ScalaFmt settings
scalafmtOnCompile := true,
// Scoverage settings
coverageMinimum := 50,
coverageOutputHTML := true,
coverageOutputXML := true,
coverageOutputCobertura := true,
Expand Down
10 changes: 5 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@ addSbtPlugin("org.wartremover" % "sbt-wartremover-contrib" % "1.3.11")
// Adds a `assembly` task to create a fat JAR with all of its
// dependencies
// https://github.com/sbt/sbt-assembly
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.0.0")

// Adds most common doc api mappings
// https://github.com/ThoughtWorksInc/sbt-api-mappings
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.0")

// Adds Scala Code Coverage (Scoverage) used during unit tests
// http://github.com/scoverage/sbt-scoverage
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.8.2")

// Adds SBT Coveralls plugin for uploading Scala code coverage to
// https://coveralls.io
// https://github.com/scoverage/sbt-coveralls
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.2.7")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.0")

// Adds a `dependencyUpdates` task to check Maven repositories for
// dependency updates
// http://github.com/rtimush/sbt-updates
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.2")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.3")

// Adds a `scalafmt` task for automatic source code formatting
// https://github.com/lucidsoftware/neo-sbt-scalafmt
Expand All @@ -43,7 +43,7 @@ addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.10.0-RC1")

// Adds a `git` plugin
// https://github.com/sbt/sbt-git
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.1")

// Adds a `sbt-explicit-dependencies` plugin
// https://github.com/cb372/sbt-explicit-dependencies
Expand Down
2 changes: 1 addition & 1 deletion project/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ addSbtPlugin("com.lucidchart" % "sbt-scalafmt-coursier" % "1.16")

// Used to get updates for plugins
// see https://github.com/rtimush/sbt-updates/issues/10
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.2")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.3")
10 changes: 5 additions & 5 deletions sbtx
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@

set -o pipefail

declare -r sbt_release_version="1.4.6"
declare -r sbt_unreleased_version="1.4.6"
declare -r sbt_release_version="1.5.3"
declare -r sbt_unreleased_version="1.5.3"

declare -r latest_213="2.13.4"
declare -r latest_212="2.12.12"
declare -r latest_213="2.13.6"
declare -r latest_212="2.12.14"
declare -r latest_211="2.11.12"
declare -r latest_210="2.10.7"
declare -r latest_29="2.9.3"
Expand All @@ -48,7 +48,7 @@ declare -r buildProps="project/build.properties"

declare -r sbt_launch_ivy_release_repo="https://repo.typesafe.com/typesafe/ivy-releases"
declare -r sbt_launch_ivy_snapshot_repo="https://repo.scala-sbt.org/scalasbt/ivy-snapshots"
declare -r sbt_launch_mvn_release_repo="https://repo.scala-sbt.org/scalasbt/maven-releases"
declare -r sbt_launch_mvn_release_repo="https://repo1.maven.org/maven2"
declare -r sbt_launch_mvn_snapshot_repo="https://repo.scala-sbt.org/scalasbt/maven-snapshots"

declare -r default_jvm_opts_common="-Xms512m -Xss2m -XX:MaxInlineLevel=18"
Expand Down
2 changes: 1 addition & 1 deletion src/it/scala/com/exasol/cloudetl/BaseIntegrationTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import org.scalatest.funsuite.AnyFunSuite
trait BaseIntegrationTest extends AnyFunSuite with BeforeAndAfterAll {
private[this] val JAR_DIRECTORY_PATTERN = "scala-"
private[this] val JAR_NAME_PATTERN = "cloud-storage-extension-"
private[this] val DEFAULT_EXASOL_DOCKER_IMAGE = "7.0.8"
private[this] val DEFAULT_EXASOL_DOCKER_IMAGE = "7.0.10"

val network = DockerNamedNetwork("it-tests", true)
val exasolContainer = {
Expand Down

0 comments on commit 34ef626

Please sign in to comment.