Skip to content

Commit 5dedd7e

Browse files
authored
Merge pull request #90 from JohT/renovate/axonframework-axonframework-4.x
Update dependency AxonFramework/AxonFramework to v4.9.1
2 parents a0972ac + 0e30a15 commit 5dedd7e

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/code-structure-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
env:
5151
CI_COMMIT_MESSAGE: Automated code structure analysis reports (CI)
5252
CI_COMMIT_AUTHOR: ${{ github.event.repository.name }} Continuous Integration
53-
AXON_FRAMEWORK_VERSION: 4.9.0
53+
AXON_FRAMEWORK_VERSION: 4.9.1
5454

5555
steps:
5656
- name: Checkout GIT Repository

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,24 @@ Contained within this repository is a comprehensive and automated code graph ana
2323

2424
Here is an overview of reports made with [Jupyter Notebooks](https://jupyter.org). For a detailed reference see [Jupyter Notebook Report Reference](#📈-jupyter-notebook-report-reference) below.
2525

26-
- [External Dependencies](./results/AxonFramework-4.9.0/external-dependencies/ExternalDependencies.md) contains detailed information about external library usage ([Notebook](./jupyter/ExternalDependencies.ipynb)).
27-
- [Internal Dependencies](./results/AxonFramework-4.9.0/internal-dependencies/InternalDependencies.md) is based on [Analyze java package metrics in a graph database](https://joht.github.io/johtizen/data/2023/04/21/java-package-metrics-analysis.html) and also includes cyclic dependencies ([Notebook](./jupyter/InternalDependencies.ipynb)).
28-
- [Method Metrics](./results/AxonFramework-4.9.0/method-metrics/MethodMetrics.md) shows how the effective number of lines of code and the cyclomatic complexity are distributed across the methods in the code ([Notebook](./jupyter/MethodMetrics.ipynb)).
29-
- [Node Embeddings](./results/AxonFramework-4.9.0/node-embeddings/NodeEmbeddings.md) shows how to generate node embeddings and to further reduce their dimensionality to be able to visualize them in a 2D plot ([Notebook](./jupyter/NodeEmbeddings.ipynb)).
30-
- [Object Oriented Design Quality Metrics](./results/AxonFramework-4.9.0/object-oriented-design-metrics/ObjectOrientedDesignMetrics.md) is based on [OO Design Quality Metrics by Robert Martin](https://www.semanticscholar.org/paper/OO-Design-Quality-Metrics-Martin-October/18acd7eb21b918c8a5f619157f7e4f6d451d18f8) ([Notebook](./jupyter/ObjectOrientedDesignMetrics.ipynb)).
31-
- [Overview](./results/AxonFramework-4.9.0/overview/Overview.md) contains overall statistics and details about methods and their complexity. ([Notebook](./jupyter/Overview.ipynb)).
32-
- [Visibility Metrics](./results/AxonFramework-4.9.0/visibility-metrics/VisibilityMetrics.md) is based on [Visibility Metrics and the Importance of Hiding Things](https://dzone.com/articles/visibility-metrics-and-the-importance-of-hiding-th) ([Notebook](./jupyter/VisibilityMetrics.ipynb)).
33-
- [Wordcloud](./results/AxonFramework-4.9.0/wordcloud/Wordcloud.md) contains a visual representation of package and class names ([Notebook](./jupyter/Wordcloud.ipynb)).
26+
- [External Dependencies](./results/AxonFramework-4.9.1/external-dependencies/ExternalDependencies.md) contains detailed information about external library usage ([Notebook](./jupyter/ExternalDependencies.ipynb)).
27+
- [Internal Dependencies](./results/AxonFramework-4.9.1/internal-dependencies/InternalDependencies.md) is based on [Analyze java package metrics in a graph database](https://joht.github.io/johtizen/data/2023/04/21/java-package-metrics-analysis.html) and also includes cyclic dependencies ([Notebook](./jupyter/InternalDependencies.ipynb)).
28+
- [Method Metrics](./results/AxonFramework-4.9.1/method-metrics/MethodMetrics.md) shows how the effective number of lines of code and the cyclomatic complexity are distributed across the methods in the code ([Notebook](./jupyter/MethodMetrics.ipynb)).
29+
- [Node Embeddings](./results/AxonFramework-4.9.1/node-embeddings/NodeEmbeddings.md) shows how to generate node embeddings and to further reduce their dimensionality to be able to visualize them in a 2D plot ([Notebook](./jupyter/NodeEmbeddings.ipynb)).
30+
- [Object Oriented Design Quality Metrics](./results/AxonFramework-4.9.1/object-oriented-design-metrics/ObjectOrientedDesignMetrics.md) is based on [OO Design Quality Metrics by Robert Martin](https://www.semanticscholar.org/paper/OO-Design-Quality-Metrics-Martin-October/18acd7eb21b918c8a5f619157f7e4f6d451d18f8) ([Notebook](./jupyter/ObjectOrientedDesignMetrics.ipynb)).
31+
- [Overview](./results/AxonFramework-4.9.1/overview/Overview.md) contains overall statistics and details about methods and their complexity. ([Notebook](./jupyter/Overview.ipynb)).
32+
- [Visibility Metrics](./results/AxonFramework-4.9.1/visibility-metrics/VisibilityMetrics.md) is based on [Visibility Metrics and the Importance of Hiding Things](https://dzone.com/articles/visibility-metrics-and-the-importance-of-hiding-th) ([Notebook](./jupyter/VisibilityMetrics.ipynb)).
33+
- [Wordcloud](./results/AxonFramework-4.9.1/wordcloud/Wordcloud.md) contains a visual representation of package and class names ([Notebook](./jupyter/Wordcloud.ipynb)).
3434

3535
### 📖 Graph Data Science Reports
3636

3737
Here are some reports that utilize Neo4j's [Graph Data Science Library](https://neo4j.com/product/graph-data-science). For a detailed reference of all CSV reports see [CSV Cypher Query Report Reference](#📃-csv-cypher-query-report-reference) below.
3838

39-
- [Centrality with Page Rank](./results/AxonFramework-4.9.0/centrality-csv/Centrality_Page_Rank.csv) ([Source Script](./scripts/reports/CentralityCsv.sh))
40-
- [Community Detection with Leiden](./results/AxonFramework-4.9.0/community-csv/Leiden_Communities.csv) ([Source Script](./scripts/reports/CommunityCsv.sh))
41-
- [Node Embeddings with HashGNN](./results/AxonFramework-4.9.0/node-embeddings-csv/Package_Embeddings_HashGNN.csv) ([Source Script](./scripts/reports/NodeEmbeddingsCsv.sh))
42-
- [Similarity with Jaccard](./results/AxonFramework-4.9.0/similarity-csv/Similarity_Jaccard.csv) ([Source Script](./scripts/reports/SimilarityCsv.sh))
43-
- [Topology Sort](./results/AxonFramework-4.9.0/artifact-topology-csv/TopologicalSortedArtifacts.csv) ([Source Script](./scripts/reports/TopologicalSortCsv.sh))
39+
- [Centrality with Page Rank](./results/AxonFramework-4.9.1/centrality-csv/Centrality_Page_Rank.csv) ([Source Script](./scripts/reports/CentralityCsv.sh))
40+
- [Community Detection with Leiden](./results/AxonFramework-4.9.1/community-csv/Leiden_Communities.csv) ([Source Script](./scripts/reports/CommunityCsv.sh))
41+
- [Node Embeddings with HashGNN](./results/AxonFramework-4.9.1/node-embeddings-csv/Package_Embeddings_HashGNN.csv) ([Source Script](./scripts/reports/NodeEmbeddingsCsv.sh))
42+
- [Similarity with Jaccard](./results/AxonFramework-4.9.1/similarity-csv/Similarity_Jaccard.csv) ([Source Script](./scripts/reports/SimilarityCsv.sh))
43+
- [Topology Sort](./results/AxonFramework-4.9.1/artifact-topology-csv/TopologicalSortedArtifacts.csv) ([Source Script](./scripts/reports/TopologicalSortCsv.sh))
4444

4545
## 📖 Blog Articles
4646

0 commit comments

Comments
 (0)