Skip to content

Commit

Permalink
Prepare release 1.15.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DaGeRe committed Nov 15, 2023
1 parent 3e90a9a commit 40ffa65
Show file tree
Hide file tree
Showing 38 changed files with 52 additions and 45 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ license: "Apache-2.0"
message: "If you use this software, please cite https://doi.org/10.1016/j.simpa.2020.100019"
repository-code: "https://github.com/kieker-monitoring/kieker"
title: Kieker
version: "1.15.3"
version: "1.15.4"
7 changes: 7 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ http://kieker-monitoring.net) contains details on the changes.

Please refer to the Kieker User Guide for details on using Kieker.

* 1.15.4 (November 15, 2023)
- Update dependencies to avoid security issues:
- Update jersey-server to 3.0.12 (latest Java 8 release)i
- okhttp to 4.12.0
- javaassist to 3.29.2-GA
- groovy-all to 4.0.15

* 1.15.3 (November 6, 2023)
- Fix analysis problem: Allow analysis of multiple files again
- Fix analysis problem: Correctly interpret timeout for maxTraceDuration
Expand Down
2 changes: 1 addition & 1 deletion bin/dev/release-check-short.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# include common variables and functions
source "$(dirname $0)/release-check-common.sh"

KIEKER_VERSION="1.15.3"
KIEKER_VERSION="1.15.4"

# lists the files included in an archive without extracting it
function cat_archive_content {
Expand Down
4 changes: 2 additions & 2 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"@type": "SoftwareSourceCode",
"license": "https://spdx.org/licenses/Apache-2.0",
"codeRepository": "https://github.com/kieker-monitoring/kieker",
"dateModified": "2023-11-06",
"dateModified": "2023-11-15",
"issueTracker": "https://kieker-monitoring.atlassian.net/",
"name": "Kieker",
"version": "1.15.3",
"version": "1.15.4",
"description": "Application-level monitoring and dynamic analysis of software systems are a basis for various tasks in software engineering research, such as performance evaluation and reverse engineering. The Kieker framework provides monitoring, analysis, and visualization support for these purposes.",
"referencePublication": "https://doi.org/10.1016/j.simpa.2020.100019",
"programmingLanguage": [
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
kiekerPackagenamebase = kieker
kiekerName = Kieker Framework
kiekerVersion = 1.15.3
kiekerVersion = 1.15.4
kiekerCopyright = Kieker Project

dirConfig = config
Expand Down
2 changes: 1 addition & 1 deletion kieker-common/src/kieker/common/util/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/
public final class Version {
// The VERSION string is updated by the Ant build file, which looks for the pattern: VERSION = <quote>.*<quote>
private static final String VERSION = "1.15.3"; // NOPMD (name equals classname)
private static final String VERSION = "1.15.4"; // NOPMD (name equals classname)

private static final String COPYRIGHT = "Copyright (c) 2006-2023 Kieker Project";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ The **Kieker** download site http://kieker-monitoring.net/download/
provides archives of the binary and source distribution, special
bundles, the Javadoc~API, as well as additional examples. For this quick
start guide, **Kieker's** binary distribution, e.g.,
``kieker-1.15.3-binaries.zip``, is required and must be downloaded. After
``kieker-1.15.4-binaries.zip``, is required and must be downloaded. After
having extracted the archive, you'll find the directory structure and
contents shown below

- ``kieker-1.15.3-binaries/``
- ``kieker-1.15.4-binaries/``

- ``bin`` Call scripts for old style **Kieker** tools
- ``build/libs`` **Kieker** framework libraries
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ the instrumentation of the application, and the actual monitoring.

The first step is to copy the **Kieker** jar-file
kieker-1.15.1-emf.jar to the lib/ directory of the example directory.
The file is located in the ``kieker-1.15.3/build/libs/`` directory of the
The file is located in the ``kieker-1.15.4/build/libs/`` directory of the
extracted **Kieker** archive (see download instructions). In the example
directory for this section, this file is already included, as
illustrated below.
Expand Down
2 changes: 1 addition & 1 deletion kieker-documentation/kieker-tools/Kieker-Tools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Kieker Tools
============

All tools can be found in the binary bundle
``(kieker-1.15.3-binaries.zip``) in the ``tools`` directory. The
``(kieker-1.15.4-binaries.zip``) in the ``tools`` directory. The
``tools`` directory contains a set of tools prepacked as tar and zip
archives. Each archive contains one tool with all its libraries and
start scripts. The start scripts are located in the ``bin`` directory
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# when using Kieker's Spring-based monitoring probes.
#
#--exec
# -javaagent:webapps/jpetstore/WEB-INF/lib/kieker-1.15.3-aspectj.jar
# -javaagent:webapps/jpetstore/WEB-INF/lib/kieker-1.15.4-aspectj.jar
# -Dkieker.monitoring.skipDefaultAOPConfiguration=true
# -Daj.weaving.verbose=true
# -Dorg.aspectj.weaver.showWeaveInfo=true
Expand Down
2 changes: 1 addition & 1 deletion kieker-examples/analysis/trace-analysis/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
2 changes: 1 addition & 1 deletion kieker-examples/monitoring/probe-aspectj/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
2 changes: 1 addition & 1 deletion kieker-examples/monitoring/probe-manual/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
2 changes: 1 addition & 1 deletion kieker-examples/monitoring/probe-spring/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
2 changes: 1 addition & 1 deletion kieker-examples/monitoring/sampler-jvm/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
2 changes: 1 addition & 1 deletion kieker-examples/monitoring/sampler-oshi/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
2 changes: 1 addition & 1 deletion kieker-examples/userguide/appendix-AMQP/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
2 changes: 1 addition & 1 deletion kieker-examples/userguide/appendix-JMS/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
2 changes: 1 addition & 1 deletion kieker-examples/userguide/appendix-Kafka/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
4 changes: 2 additions & 2 deletions kieker-examples/userguide/ch3-4--custom-components/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ This directory contains a pre-compiled Jar file which can be started with
the 'java' tool using the following commands:

-UNIX-like systems:
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar:lib/kieker-1.15.3-emf.jar -Dkieker.monitoring.configuration=src-resources/META-INF/kieker.monitoring.properties kieker.examples.userguide.ch3and4bookstore.Starter
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar:lib/kieker-1.15.4-emf.jar -Dkieker.monitoring.configuration=src-resources/META-INF/kieker.monitoring.properties kieker.examples.userguide.ch3and4bookstore.Starter
- Windows:
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar;lib\kieker-1.15.3-emf.jar -Dkieker.monitoring.configuration=src-resources/META-INF/kieker.monitoring.properties kieker.examples.userguide.ch3and4bookstore.Starter
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar;lib\kieker-1.15.4-emf.jar -Dkieker.monitoring.configuration=src-resources/META-INF/kieker.monitoring.properties kieker.examples.userguide.ch3and4bookstore.Starter

Alternatively, you can compile the sources and start the application using
'gradle' with the given 'build.gradle' file:
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
This directory contains a pre-compiled Jar file which can be started with
the 'java' tool using the following commands ('5' starts five requests):

To be able to run this example you need to copy the kieker-1.15.3-aspectj.jar into the library directory.
To be able to run this example you need to copy the kieker-1.15.4-aspectj.jar into the library directory.

- UNIX-like systems:
$ java -javaagent:lib/kieker-1.15.3-aspectj.jar -jar build/libs/BookstoreApplication.jar 5
$ java -javaagent:lib/kieker-1.15.4-aspectj.jar -jar build/libs/BookstoreApplication.jar 5
- Windows:
$ java -javaagent:lib\kieker-1.15.3-aspectj.jar -jar build/libs/BookstoreApplication.jar 5
$ java -javaagent:lib\kieker-1.15.4-aspectj.jar -jar build/libs/BookstoreApplication.jar 5

Alternatively, you can compile the sources and start the application using
'gradle' with the given 'build.gradle' file:
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ KIEKER_DIR="$1"
OUTDIR="$2"
EXAMPLE_LOG=${KIEKER_DIR}/examples/userguide/ch5--trace-monitoring-aspectj/testdata/kieker-20100830-082225522-UTC

KIEKER_VERSION="1.15.3"
KIEKER_VERSION="1.15.4"

TOOL_DIR=`mktemp -d`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ EXAMPLE_LOG=${KIEKER_DIR}/examples/userguide/ch5--trace-monitoring-aspectj/testd

TOOL_DIR=`mktemp -d`

KIEKER_VERSION="1.15.3"
KIEKER_VERSION="1.15.4"
ZIP_NAME="${KIEKER_DIR}/tools/trace-analysis-${KIEKER_VERSION}.zip"

( cd ${TOOL_DIR} ; unzip -o ${ZIP_NAME} )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ EXAMPLE_LOG=${KIEKER_DIR}/examples/userguide/ch5--trace-monitoring-aspectj/testd

TOOL_DIR=`mktemp -d`

KIEKER_VERSION="1.15.3"
KIEKER_VERSION="1.15.4"
ZIP_NAME="${KIEKER_DIR}/tools/trace-analysis-${KIEKER_VERSION}.zip"

( cd ${TOOL_DIR} ; unzip -o ${ZIP_NAME} )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ EXAMPLE_LOG=${KIEKER_DIR}/examples/userguide/ch5--trace-monitoring-aspectj/testd

TOOL_DIR=`mktemp -d`

KIEKER_VERSION="1.15.3"
KIEKER_VERSION="1.15.4"
ZIP_NAME="${KIEKER_DIR}/tools/trace-analysis-${KIEKER_VERSION}.zip"

( cd ${TOOL_DIR} ; unzip -o ${ZIP_NAME} )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ EXAMPLE_LOG=${KIEKER_DIR}/examples/userguide/ch5--trace-monitoring-aspectj/testd

TOOL_DIR=`mktemp -d`

KIEKER_VERSION="1.15.3"
KIEKER_VERSION="1.15.4"
ZIP_NAME="${KIEKER_DIR}/tools/trace-analysis-${KIEKER_VERSION}.zip"

( cd ${TOOL_DIR} ; unzip -o ${ZIP_NAME} )
Expand Down
8 changes: 4 additions & 4 deletions kieker-examples/userguide/manual-instrumentation/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ the 'java' tool using the following commands:
Monitoring:

-UNIX-like systems:
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar:lib/kieker-1.15.3-emf.jar kieker.examples.userguide.ch2bookstore.manual.BookstoreStarter
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar:lib/kieker-1.15.4-emf.jar kieker.examples.userguide.ch2bookstore.manual.BookstoreStarter
- Windows:
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar;lib\kieker-1.15.3-emf.jar kieker.examples.userguide.ch2bookstore.manual.BookstoreStarter
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar;lib\kieker-1.15.4-emf.jar kieker.examples.userguide.ch2bookstore.manual.BookstoreStarter

Analysis:

-UNIX-like systems:
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar:lib/kieker-1.15.3-emf.jar kieker.examples.userguide.ch2bookstore.manual.BookstoreAnalysisStarter </path/to/monitoring-log/>
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar:lib/kieker-1.15.4-emf.jar kieker.examples.userguide.ch2bookstore.manual.BookstoreAnalysisStarter </path/to/monitoring-log/>
- Windows:
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar;lib\kieker-1.15.3-emf.jar kieker.examples.userguide.ch2bookstore.manual.BookstoreAnalysisStarter <path\to\monitoring-log\>
$ java -cp build/libs/BookstoreApplicationMonitoringAnalysis.jar;lib\kieker-1.15.4-emf.jar kieker.examples.userguide.ch2bookstore.manual.BookstoreAnalysisStarter <path\to\monitoring-log\>

Alternatively, you can compile the sources and start the application using
'gradle' with the given 'build.gradle' file:
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kiekerVersion=1.15.3
kiekerVersion=1.15.4

0 comments on commit 40ffa65

Please sign in to comment.