From 4f1cef4ea264277c4af69f50aab72d8b5ca824a4 Mon Sep 17 00:00:00 2001 From: Tomasz Michalak Date: Fri, 8 May 2020 08:55:49 +0200 Subject: [PATCH 1/3] Fragments dependencies update --- build.gradle.kts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 40b6bb8..a750de9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -63,10 +63,13 @@ dependencies { implementation("io.knotx:knotx-fragments-supplier-html-splitter:${project.version}") implementation("io.knotx:knotx-fragments-supplier-single-fragment:${project.version}") implementation("io.knotx:knotx-fragments-assembler:${project.version}") - implementation("io.knotx:knotx-fragments-action-core:${project.version}") - implementation("io.knotx:knotx-fragments-handler-core:${project.version}") - implementation("io.knotx:knotx-fragments-handler-consumer-html:${project.version}") - implementation("io.knotx:knotx-fragments-handler-consumer-json:${project.version}") + implementation("io.knotx:knotx-fragments-action-library:${project.version}") + // tasks + implementation("io.knotx:knotx-fragments-task-handler:${project.version}") + implementation("io.knotx:knotx-fragments-task-factory-config:${project.version}") + implementation("io.knotx:knotx-fragments-task-handler-log-html:${project.version}") + implementation("io.knotx:knotx-fragments-task-handler-log-json:${project.version}") + // te implementation("io.knotx:knotx-template-engine-core:${project.version}") implementation("io.knotx:knotx-template-engine-handlebars:${project.version}") implementation("io.knotx:knotx-template-engine-pebble:${project.version}") From 611285a54bcf0535c315d4e67eb455a074e0d4f8 Mon Sep 17 00:00:00 2001 From: Tomasz Michalak Date: Fri, 8 May 2020 21:27:45 +0200 Subject: [PATCH 2/3] Rename task factory dependency. --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index a750de9..1cbb1a0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -66,7 +66,7 @@ dependencies { implementation("io.knotx:knotx-fragments-action-library:${project.version}") // tasks implementation("io.knotx:knotx-fragments-task-handler:${project.version}") - implementation("io.knotx:knotx-fragments-task-factory-config:${project.version}") + implementation("io.knotx:knotx-fragments-task-factory-default:${project.version}") implementation("io.knotx:knotx-fragments-task-handler-log-html:${project.version}") implementation("io.knotx:knotx-fragments-task-handler-log-json:${project.version}") // te From 1710e1e742362094b9d3848bb39bc2b64d9d5c0c Mon Sep 17 00:00:00 2001 From: Tomasz Michalak Date: Wed, 13 May 2020 14:42:47 +0200 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab094af..523b895 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ All notable changes to `knotx-stack` will be documented in this file. ## Unreleased List of changes that are finished but not yet released in any final version. +- [PR-110](https://github.com/Knotx/knotx-stack/pull/110) - Knotx/knotx-fragments#154 Fragments modules refactor. - [PR-100](https://github.com/Knotx/knotx-stack/pull/100) - Knotx/knotx-fragments#135 Extract actions Core & API. - [PR-97](https://github.com/Knotx/knotx-stack/pull/97) - Knotx/knotx-fragments#92 Extract HTML Fragment Event Consumer. - [PR-96](https://github.com/Knotx/knotx-stack/pull/96) - Knotx/knotx-fragements#73 Functional test for various HTTP methods.