Skip to content

Commit

Permalink
[release] release version 0.1.5 with bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TanVD committed Jun 2, 2020
1 parent d377d05 commit f8a71eb
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 20 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

# 0.1.5 - 2020-02-06
## Fixed
* Reflections dependency reverted to older version because of critical bug in it
* Fix for HTTPRequest -- sometimes user-agent can miss in APIGateway request

# 0.1.4 - 2020-31-05
## Added
* Spring Boot DSL -- Spring Boot serverless container and parser of it. Support dynamic and static routes,
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ plugins {
//Version of Kotlin should be 1.3.72+
kotlin("jvm") version "1.3.72" apply true

id("io.kotless") version "0.1.4" apply true
id("io.kotless") version "0.1.5" apply true
}
```

Expand All @@ -67,13 +67,13 @@ repositories {
}

dependencies {
implementation("io.kotless", "lang", "0.1.4")
implementation("io.kotless", "lang", "0.1.5")

//or for Ktor (Note, that `ktor-lang` depends on Ktor version 1.3.2)
//implementation("io.kotless", "ktor-lang", "0.1.4")
//implementation("io.kotless", "ktor-lang", "0.1.5")

//or for Spring Boot (Note, that `spring-boot-lang` depends on Spring Boot version 2.3.0.RELEASE)
//implementation("io.kotless", "spring-boot-lang", "0.1.4")
//implementation("io.kotless", "spring-boot-lang", "0.1.5")
}
```

Expand Down Expand Up @@ -180,11 +180,11 @@ Kotless is able to deploy existing Spring Boot or Ktor application to AWS server
need to set up plugin and replace existing dependency with appropriate Kotless DSL.

For **Ktor**, you should replace existing engine (e.g. `implementation("io.ktor", "ktor-server-netty", "1.3.2")`)
with `implementation("io.kotless", "ktor-lang", "0.1.4")`. Note, that this dependency bundles Ktor of version
with `implementation("io.kotless", "ktor-lang", "0.1.5")`. Note, that this dependency bundles Ktor of version
`1.3.2`, so you may need to upgrade other Ktor libraries (like `ktor-html-builder`) to this version.

For **Spring Boot** you should replace starter you use (e.g. `implementation("org.springframework.boot", "spring-boot-starter-web", "2.3.0.RELASE)`)
with `implementation("io.kotless", "spring-boot-lang", "0.1.4")`. Note, that this dependency bundles Spring Boot
with `implementation("io.kotless", "spring-boot-lang", "0.1.5")`. Note, that this dependency bundles Spring Boot
of version `2.3.0.RELEASE`, so you also may need to upgrade other Spring Boot libraries to this version.

Once it is done you may hit `deploy` task and make your application serverless. Note, that you still be able to
Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile

group = "io.kotless.examples"
version = "0.1.4"
version = "0.1.5"

plugins {
id("tanvd.kosogor") version "1.0.9" apply true
Expand Down
2 changes: 1 addition & 1 deletion examples/common/site-shared/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = "io.kotless.examples"
version = "0.1.4"
version = "0.1.5"

dependencies {
implementation("org.jetbrains.kotlinx", "kotlinx-html-jvm", "0.6.11")
Expand Down
4 changes: 2 additions & 2 deletions examples/kotless/shortener/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ group = rootProject.group
version = rootProject.version

plugins {
id("io.kotless") version "0.1.4" apply true
id("io.kotless") version "0.1.5" apply true
}


dependencies {
implementation("io.kotless", "lang", "0.1.4")
implementation("io.kotless", "lang", "0.1.5")

implementation("commons-validator", "commons-validator", "1.6")
implementation("com.amazonaws", "aws-java-sdk-dynamodb", "1.11.650")
Expand Down
4 changes: 2 additions & 2 deletions examples/kotless/site/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ group = rootProject.group
version = rootProject.version

plugins {
id("io.kotless") version "0.1.4" apply true
id("io.kotless") version "0.1.5" apply true
}

dependencies {
implementation("io.kotless", "lang", "0.1.4")
implementation("io.kotless", "lang", "0.1.5")

implementation(project(":common:site-shared"))

Expand Down
4 changes: 2 additions & 2 deletions examples/ktor/shortener/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ group = rootProject.group
version = rootProject.version

plugins {
id("io.kotless") version "0.1.4" apply true
id("io.kotless") version "0.1.5" apply true
}

dependencies {
implementation("commons-validator", "commons-validator", "1.6")
implementation("com.amazonaws", "aws-java-sdk-dynamodb", "1.11.650")

implementation("io.kotless", "ktor-lang", "0.1.4")
implementation("io.kotless", "ktor-lang", "0.1.5")
implementation("io.ktor", "ktor-html-builder", "1.3.2")
}

Expand Down
4 changes: 2 additions & 2 deletions examples/ktor/site/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ group = rootProject.group
version = rootProject.version

plugins {
id("io.kotless") version "0.1.4" apply true
id("io.kotless") version "0.1.5" apply true
}

dependencies {
implementation("io.kotless", "ktor-lang", "0.1.4")
implementation("io.kotless", "ktor-lang", "0.1.5")

implementation(project(":common:site-shared"))
}
Expand Down
4 changes: 2 additions & 2 deletions examples/spring/shortener/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ group = rootProject.group
version = rootProject.version

plugins {
id("io.kotless") version "0.1.4" apply true
id("io.kotless") version "0.1.5" apply true
}

dependencies {
implementation("commons-validator", "commons-validator", "1.6")
implementation("com.amazonaws", "aws-java-sdk-dynamodb", "1.11.650")

implementation("io.kotless", "spring-boot-lang", "0.1.4")
implementation("io.kotless", "spring-boot-lang", "0.1.5")
implementation("io.ktor", "ktor-html-builder", "1.3.2")
}

Expand Down
4 changes: 2 additions & 2 deletions examples/spring/site/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ version = rootProject.version


plugins {
id("io.kotless") version "0.1.4" apply true
id("io.kotless") version "0.1.5" apply true
}

dependencies {
implementation("io.kotless", "spring-boot-lang", "0.1.4")
implementation("io.kotless", "spring-boot-lang", "0.1.5")

implementation(project(":common:site-shared"))
}
Expand Down

0 comments on commit f8a71eb

Please sign in to comment.