Skip to content

Commit ba18238

Browse files
baubakgadobe-bot
andauthored
Release (#210)
* Fixed Update the documentation regarding installation. Also added code example * [maven-release-plugin] prepare release log-parser-1.0.8 * [maven-release-plugin] prepare for next development iteration * [maven-release-plugin] prepare release log-parser-1.0.8.2 * [maven-release-plugin] prepare for next development iteration * Moving back to 1.0.9-SNAPSHOT * [maven-release-plugin] prepare release log-parser-1.0.9 * [maven-release-plugin] prepare for next development iteration * Fixing issue with javadoc * [maven-release-plugin] prepare release log-parser-1.0.10 * [maven-release-plugin] prepare for next development iteration * Updating release notes * finishing release notes * Fixing release notes * [maven-release-plugin] prepare release log-parser-1.11.0 * [maven-release-plugin] prepare for next development iteration * [maven-release-plugin] prepare release log-parser-1.11.1 * [maven-release-plugin] prepare for next development iteration * Preparing release * [maven-release-plugin] prepare release log-parser-1.11.2 * [maven-release-plugin] prepare for next development iteration * Preparing for 1.11.3 * Updating release notes * [maven-release-plugin] prepare release log-parser-1.11.3 * [maven-release-plugin] prepare for next development iteration --------- Co-authored-by: adobe-bot <Grp-opensourceoffice@adobe.com>
1 parent d959de3 commit ba18238

File tree

2 files changed

+64
-59
lines changed

2 files changed

+64
-59
lines changed

README.md

Lines changed: 63 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -14,62 +14,61 @@ The basic method for using this library is, that you create a definition for you
1414
## Table of contents
1515

1616
<!-- TOC -->
17-
18-
- [Installation](#installation)
19-
- [Maven](#maven)
20-
- [Running the Log Parser](#running-the-log-parser)
21-
- [Parse Definitions](#parse-definitions)
22-
- [Defining a Parsing](#defining-a-parsing)
23-
- [Defining an Entry](#defining-an-entry)
24-
- [How parsing works](#how-parsing-works)
25-
- [Anonymizing Data](#anonymizing-data)
26-
- [Code Example](#code-example)
27-
- [Import and Export of Parse Definitions](#import-and-export-of-parse-definitions)
28-
- [Importing a JSON File](#importing-a-json-file)
29-
- [Extracting Data from Logs](#extracting-data-from-logs)
30-
- [Using the Standard Method](#using-the-standard-method)
31-
- [Using the Log-Parser as an SDK](#using-the-log-parser-as-an-sdk)
32-
- [Writing your own SDK](#writing-your-own-sdk)
33-
- [Declaring a Default and Copy Constructor](#declaring-a-default-and-copy-constructor)
34-
- [Declaring the transformation Rules in setValuesFromMap](#declaring-the-transformation-rules-in-setvaluesfrommap)
35-
- [Declaring the Key](#declaring-the-key)
36-
- [Declare the HeaderMap, and ValueMap](#declare-the-headermap-and-valuemap)
37-
- [Assisting Exports](#assisting-exports)
38-
- [Code Structure](#code-structure)
39-
- [Searching and organizing log data](#searching-and-organizing-log-data)
40-
- [Search and Filter Mechanisms](#search-and-filter-mechanisms)
41-
- [Defining a Search Term](#defining-a-search-term)
42-
- [Enriching Log Data](#enriching-log-data)
43-
- [GroupBy Mechanisms](#groupby-mechanisms)
44-
- [Passing a list](#passing-a-list)
45-
- [Chaining GroupBy](#chaining-groupby)
46-
- [Comparing Log Data](#comparing-log-data)
47-
- [Creating a Differentiation Report](#creating-a-differentiation-report)
48-
- [Assertions and LogDataAssertions](#assertions-and-logdataassertions)
49-
- [Exporting Parse Results](#exporting-parse-results)
50-
- [Exporting Results to a CSV File](#exporting-results-to-a-csv-file)
51-
- [Exporting Results to an HTML File](#exporting-results-to-an-html-file)
52-
- [Exporting Results to an JSON File](#exporting-results-to-an-json-file)
53-
- [Command-line Execution of the Log-Parser](#command-line-execution-of-the-log-parser)
54-
- [Memory Guard Rails](#memory-guard-rails)
55-
- [Guard Rail Properties](#guard-rail-properties)
56-
- [File Entry Limitations](#file-entry-limitations)
57-
- [File Size Limitations](#file-size-limitations)
58-
- [Memory Limitations](#memory-limitations)
59-
- [Exporting Anomalies Report](#exporting-anomalies-report)
60-
- [Changelog](#changelog)
61-
_ [1.11.3 (In-Progress)](#1113--in-progress-)
62-
_ [1.11.2](#1112)
63-
_ [1.11.0](#1110)
64-
_ [1.0.10](#1010)
65-
_ [1.0.8.2](#1082)
66-
_ [1.0.8](#108)
67-
_ [1.0.7](#107)
68-
_ [1.0.6](#106)
69-
_ [1.0.5](#105)
70-
_ [1.0.4](#104)
71-
_ [1.0.3](#103)
72-
_ [1.0.1](#101)
17+
* [Installation](#installation)
18+
* [Maven](#maven)
19+
* [Running the Log Parser](#running-the-log-parser)
20+
* [Parse Definitions](#parse-definitions)
21+
* [Defining a Parsing](#defining-a-parsing)
22+
* [Defining an Entry](#defining-an-entry)
23+
* [How parsing works](#how-parsing-works)
24+
* [Anonymizing Data](#anonymizing-data)
25+
* [Code Example](#code-example)
26+
* [Import and Export of Parse Definitions](#import-and-export-of-parse-definitions)
27+
* [Importing a JSON File](#importing-a-json-file)
28+
* [Extracting Data from Logs](#extracting-data-from-logs)
29+
* [Using the Standard Method](#using-the-standard-method)
30+
* [Using the Log-Parser as an SDK](#using-the-log-parser-as-an-sdk)
31+
* [Writing your own SDK](#writing-your-own-sdk)
32+
* [Declaring a Default and Copy Constructor](#declaring-a-default-and-copy-constructor)
33+
* [Declaring the transformation Rules in setValuesFromMap](#declaring-the-transformation-rules-in-setvaluesfrommap)
34+
* [Declaring the Key](#declaring-the-key)
35+
* [Declare the HeaderMap, and ValueMap](#declare-the-headermap-and-valuemap)
36+
* [Assisting Exports](#assisting-exports)
37+
* [Code Structure](#code-structure)
38+
* [Searching and organizing log data](#searching-and-organizing-log-data)
39+
* [Search and Filter Mechanisms](#search-and-filter-mechanisms)
40+
* [Defining a Search Term](#defining-a-search-term)
41+
* [Enriching Log Data](#enriching-log-data)
42+
* [GroupBy Mechanisms](#groupby-mechanisms)
43+
* [Passing a list](#passing-a-list)
44+
* [Chaining GroupBy](#chaining-groupby)
45+
* [Comparing Log Data](#comparing-log-data)
46+
* [Creating a Differentiation Report](#creating-a-differentiation-report)
47+
* [Assertions and LogDataAssertions](#assertions-and-logdataassertions)
48+
* [Exporting Parse Results](#exporting-parse-results)
49+
* [Exporting Results to a CSV File](#exporting-results-to-a-csv-file)
50+
* [Exporting Results to an HTML File](#exporting-results-to-an-html-file)
51+
* [Exporting Results to an JSON File](#exporting-results-to-an-json-file)
52+
* [Command-line Execution of the Log-Parser](#command-line-execution-of-the-log-parser)
53+
* [Memory Guard Rails](#memory-guard-rails)
54+
* [Guard Rail Properties](#guard-rail-properties)
55+
* [File Entry Limitations](#file-entry-limitations)
56+
* [File Size Limitations](#file-size-limitations)
57+
* [Memory Limitations](#memory-limitations)
58+
* [Exporting Anomalies Report](#exporting-anomalies-report)
59+
* [Changelog](#changelog)
60+
* [1.11.3](#1113)
61+
* [1.11.2](#1112)
62+
* [1.11.0](#1110)
63+
* [1.0.10](#1010)
64+
* [1.0.8.2](#1082)
65+
* [1.0.8](#108)
66+
* [1.0.7](#107)
67+
* [1.0.6](#106)
68+
* [1.0.5](#105)
69+
* [1.0.4](#104)
70+
* [1.0.3](#103)
71+
* [1.0.1](#101)
7372
<!-- TOC -->
7473

7574
## Installation
@@ -84,7 +83,7 @@ The following dependency needs to be added to your pom file:
8483
<dependency>
8584
<groupId>com.adobe.campaign.tests</groupId>
8685
<artifactId>log-parser</artifactId>
87-
<version>1.11.2</version>
86+
<version>1.11.3</version>
8887
</dependency>
8988
```
9089

@@ -589,9 +588,15 @@ We have the possibility of exporting the anomalies report. This is done by calli
589588

590589
## Changelog
591590

592-
### 1.11.3 (In-Progress)
591+
### 1.11.3
593592

594593
- [#203](https://github.com/adobe/log-parser/issues/203) Have added possibilities, to control, log memory consumption.
594+
- Updated Dependencies:
595+
- commons-io: 2.19.0
596+
- commons-csv: 1.14.0
597+
- testng: 7.11.0
598+
- jackson-databind: 2.19.0
599+
- log4j: 2.24.3
595600

596601
### 1.11.2
597602

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<modelVersion>4.0.0</modelVersion>
1515
<groupId>com.adobe.campaign.tests</groupId>
1616
<artifactId>log-parser</artifactId>
17-
<version>1.11.3-SNAPSHOT</version>
17+
<version>1.11.4-SNAPSHOT</version>
1818
<packaging>jar</packaging>
1919
<name>${project.groupId}:${project.artifactId}</name>
2020
<description>A project that allows you to parse logs, and store them in a structured way.</description>

0 commit comments

Comments
 (0)