Skip to content

Commit e7581e7

Browse files
committed
Release notes v6.10.0
1 parent 6699562 commit e7581e7

10 files changed

+33
-28
lines changed

_docs/generators/generators.md

+2-9
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@ title: Generators Overview
33
permalink: /docs/generators/
44
---
55

6-
The Context Mapper generators provide transformations to derive graphical Context Maps, [PlantUML diagrams](http://plantuml.com/),
7-
[Microservice Domain-Specific Langauge (MDSL)](https://microservice-api-patterns.github.io/MDSL-Specification/) (micro-)service contracts, and
8-
[Service Cutter](https://servicecutter.github.io/) input files from your CML context map. We also provide a [generic, template-based generator](/docs/generic-freemarker-generator/)
6+
The Context Mapper generators provide transformations to derive graphical Context Maps, [PlantUML diagrams](http://plantuml.com/), and
7+
[Microservice Domain-Specific Langauge (MDSL)](https://microservice-api-patterns.github.io/MDSL-Specification/) (micro-)service contracts from your CML context map. We also provide a [generic, template-based generator](/docs/generic-freemarker-generator/)
98
based on Freemarker which allows to generate arbitrary textual files.
109

1110
**Generators:**
1211
* [Graphical context maps](#graphical-context-maps)
1312
* [PlantUML diagrams](#plantuml-diagrams)
1413
* [MDSL (micro-)service contracts](#mdsl-micro-service-contracts)
15-
* [Service Cutter input files](#service-cutter-input-files)
1614
* [Generic, template-based textual generator (Freemarker Templating)](#generic-textual-generator-freemarker-templating)
1715

1816
## Using the Generators
@@ -103,11 +101,6 @@ This is an examplary [MDSL](https://microservice-api-patterns.github.io/MDSL-Spe
103101

104102
Learn more about the [MDSL](https://microservice-api-patterns.github.io/MDSL-Specification/) generator [here](/docs/mdsl/).
105103

106-
## Service Cutter Input Files
107-
Find out how to produce Service Cutter input to calculate possible service cuts or new bounded contexts [here](/docs/service-cutter/):
108-
109-
![Service Cutter DDD Sample](/img/service-cutter-ddd-sample.png)
110-
111104
## Generic Textual Generator (Freemarker)
112105
The generic, template-based generator allows you to generate arbitrary text files from CML Context Maps. It uses [Freemarker](https://freemarker.apache.org/) as its template engine and exposes the entire CML content as an object tree whose elements can be injected into the template.
113106

_docs/getting-started.md

-2
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,9 @@ Check out our [example models](/docs/examples/) and the [language reference](/do
108108
Once you created your first Context Map in CML you can use the following tools to evolve your model and generate other representations of your architecture:
109109

110110
* Use [Architectural Refactorings (ARs)](/docs/architectural-refactorings/) to evolve your model iteratively.
111-
* Let [Service Cutter](/docs/service-cutter-context-map-suggestions/) analyze your model and suggest new Context Maps on the basis of its [coupling criteria](https://github.com/ServiceCutter/ServiceCutter/wiki/Coupling-Criteria).
112111
* Generate [graphical Context Maps](/docs/context-map-generator/)
113112
* Generate [PlantUML](/docs/plant-uml/) component and class diagrams
114113
* Generate [MDSL](/docs/mdsl) (micro-)service contracts
115-
* Generate [Service Cutter](/docs/service-cutter/) input files
116114
* Generate [arbitrary textual files with Freemarker templates](/docs/generic-freemarker-generator/)
117115

118116
### Reverse Engineer Context Map and Bounded Contexts

_docs/ide-plugins-and-extensions/ide-support.md

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ The following table illustrates which features are already implemented in VS Cod
2323
| PlantUML generator | yes | yes |
2424
| MDSL generator | yes | yes |
2525
| Generic text file generator | yes | yes |
26-
| Service Cutter input file generators | yes | yes |
27-
| New service cut generator | yes | yes |
2826
| OOAD transformation: Derive Subdomain from user requirements | yes | yes |
2927
| OOAD transformation: Derive Bounded Context from Subdomains | yes | yes |
3028
| OOAD transformation: Derive frontend and backend systems | yes | yes |

_docs/modeling-tools/rapid-ooad.md

-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,6 @@ Once you derived your initial Bounded Contexts, you can:
303303
- [Graphical Context Map](/docs/context-map-generator/)
304304
- [PlantUML diagrams](/docs/plant-uml/)
305305
- [MDSL (micro-)service contracts](/docs/mdsl/)
306-
- [Service Cutter input files](/docs/service-cutter/)
307306
- [Generic output with Freemarker templates](/docs/generic-freemarker-generator/)
308307
- Use our [JHipster JDL generator template](/docs/jhipster-microservice-generation/) to generate microservices code from your Context Map.
309308

_docs/service-cutter/context-map-suggestions.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ title: Context Map Suggestions with Service Cutter
33
permalink: /docs/service-cutter-context-map-suggestions/
44
---
55

6+
<div class="alert alert-danger">
7+
<strong>Note:</strong> This feature has been <strong>deactivated</strong> with <a href="https://contextmapper.org/news/2023/11/24/v6.10.0-released/">release v6.10.0</a> of Context Mapper.
8+
</div>
9+
610
The [Service Cutter](http://servicecutter.github.io/) tool proposes a structured way to service decomposition. It suggests how a system could be decomposed into services according to 14 prioritized [coupling criteria](https://github.com/ServiceCutter/ServiceCutter/wiki/Coupling-Criteria). Domain model elements are required as input. The tool then applies graph clustering algorithms to identify possible *service cuts*, which are returned as output. The approach was proposed in [this paper](https://www.researchgate.net/publication/307873263_Service_Cutter_A_Systematic_Approach_to_Service_Decomposition).
711

812
## Context Mapper Integration

_docs/service-cutter/service-cutter-config-file.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ title: Service Cutter Configuration File (.servicecutter.yml)
33
permalink: /docs/service-cutter-config-file/
44
---
55

6+
<div class="alert alert-danger">
7+
<strong>Note:</strong> This feature has been <strong>deactivated</strong> with <a href="https://contextmapper.org/news/2023/11/24/v6.10.0-released/">release v6.10.0</a> of Context Mapper.
8+
</div>
9+
610
Context Mapper uses [Service Cutter](https://github.com/ServiceCutter/ServiceCutter/) to [propose new Context Maps (service decompositions)](/docs/service-cutter-context-map-suggestions/). There is also a [tutorial](/docs/systematic-service-decomposition/) that explains how this works.
711

812
However, since we do not provide a user interface to configure the coupling criteria priorities as the original [Service Cutter](https://github.com/ServiceCutter/ServiceCutter/) tool does, we provide a file called `.servicecutter.yml` that allows you to configure the service cutting engine.

_docs/standalone-usage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ permalink: /docs/library/
44
---
55

66
The Context Mapper DSL (CML) and its tools cannot only be used within Visual Studio Code or Eclipse, but also be integrated into other applications as a
7-
standalone library. This library allows you to parse CML files within a project, change the model programmatically, and unparse it back to CML. You can also use tools such as the [Architectural Refactorings](/docs/architectural-refactorings/) and the provided generators for [graphical context maps](/docs/context-map-generator/), [PlantUML](/docs/plant-uml/), [MDSL](/docs/mdsl/), [Service Cutter](/docs/service-cutter/), and [Freemarker templates](/docs/generic-freemarker-generator/).
7+
standalone library. This library allows you to parse CML files within a project, change the model programmatically, and unparse it back to CML. You can also use tools such as the [Architectural Refactorings](/docs/architectural-refactorings/) and the provided generators for [graphical context maps](/docs/context-map-generator/), [PlantUML](/docs/plant-uml/), [MDSL](/docs/mdsl/), and [Freemarker templates](/docs/generic-freemarker-generator/).
88

99
## Integration
1010
All our releases are not only published as IDE extensions or plugins, but as updates to the standalone library as well. This library is published into the [Maven Central repository](https://search.maven.org/artifact/org.contextmapper/context-mapper-dsl/) and can easily be integrated into your Maven or Gradle build:

_docs/tutorials/systematic-service-decomposition.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ permalink: /docs/systematic-service-decomposition/
44
image: /img/cm-og-image.png
55
---
66

7+
<div class="alert alert-danger">
8+
<strong>Note:</strong> This feature has been <strong>deactivated</strong> with <a href="https://contextmapper.org/news/2023/11/24/v6.10.0-released/">release v6.10.0</a> of Context Mapper.
9+
</div>
10+
711
Context Mapper provides a generator that decomposes your domain model into Bounded Contexts in a systematic manner. The service decomposition tool is based on [Service Cutter](https://github.com/ServiceCutter/ServiceCutter/). Based on a [catalog of 16 coupling criteria](https://github.com/ServiceCutter/ServiceCutter/wiki/Coupling-Criteria) and a graph clustering algorithm, the generator suggests how an application could be decomposed into Bounded Contexts, services, or components.
812

913
Note that it is not our goal to automate the job of domain modelers and software architects! The generated decompositions are just suggestions and can give you hints how your domain objects are coupled. Don't expect that the perfect decomposition is generated for you without questioning it.

_news/2023-11-24-v6.10.0-released.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: news
3+
title: "v6.10.0 Release Notes"
4+
author: Stefan Kapferer
5+
image: /img/cm-og-image.png
6+
---
7+
8+
Today we released version 6.10.0 of Context Mapper in order to fix the following two issues:
9+
10+
* The Context Mapper Visual Studio Code extension still exposed the vulnerable library log4j 1.2.17.
11+
* This issue was caused by our [Service Cutter library/integration](https://contextmapper.org/docs/service-cutter-context-map-suggestions/).
12+
* **Note** that we deactivated Service Cutter features in Context Mapper for the moment in order to remove this vulnerability.
13+
* Context Mapper 6.10.0 is now compatible with Eclipse 2023-09.
14+
* This was not the case for v6.9.0 ([#349](https://github.com/ContextMapper/context-mapper-dsl/issues/349)).
15+
16+
As always, if you have any issues or other feedback, please [let us know](/getting-involved/).

index.html

+2-13
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ <h3 class="text-center">Diagram and Contract Generation</h3>
7878
</div>
7979
</div>
8080
<div class="row features">
81-
<div class="col-sm-4">
81+
<div class="col-sm-6">
8282
<h1 class="text-center"><i class="fas fa-history" aria-hidden="true"></i></h1>
8383
<h3 class="text-center">Context Map Discovery Library</h3>
8484
<p>
@@ -88,18 +88,7 @@ <h3 class="text-center">Context Map Discovery Library</h3>
8888
<a class="btn btn-primary btn-lg" href="/docs/reverse-engineering/" role="button">Learn more</a>
8989
</p>
9090
</div>
91-
<div class="col-sm-4">
92-
<h1 class="text-center"><i class="fab fa-connectdevelop" aria-hidden="true"></i></h1>
93-
<h3 class="text-center">Systematic Service Decomposition</h3>
94-
<p>
95-
With the <strong>Service Cutter</strong> integration you can calculate new Context Maps that shall <strong>improve coupling and cohesion</strong> by using <strong>graph clustering</strong>
96-
algorithms and <strong>coupling criteria</strong>.
97-
</p>
98-
<p>
99-
<a class="btn btn-primary btn-lg" href="/docs/service-cutter-context-map-suggestions/" role="button">Learn more</a>
100-
</p>
101-
</div>
102-
<div class="col-sm-4">
91+
<div class="col-sm-6">
10392
<h1 class="text-center"><i class="far fa-file-code" aria-hidden="true"></i></h1>
10493
<h3 class="text-center">Code (Microservice) Generation</h3>
10594
<p>

0 commit comments

Comments
 (0)