Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #187

Merged
merged 20 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
0443ca3
Fixed Update the documentation regarding installation. Also added cod…
baubakg Aug 23, 2022
d5d2fa0
[maven-release-plugin] prepare release log-parser-1.0.8
adobe-bot Aug 31, 2022
36959f8
[maven-release-plugin] prepare for next development iteration
adobe-bot Aug 31, 2022
538312c
Merge branch 'release' of https://github.com/adobe/log-parser into re…
baubakg Aug 31, 2022
d6fae75
Fixing conflicts
baubakg Oct 28, 2022
9dd3d76
[maven-release-plugin] prepare release log-parser-1.0.8.2
adobe-bot Oct 28, 2022
e230fb6
[maven-release-plugin] prepare for next development iteration
adobe-bot Oct 28, 2022
c1797fa
Moving back to 1.0.9-SNAPSHOT
baubakg Oct 28, 2022
2f8c8a7
Preparing release 1.0.9
baubakg May 28, 2024
e637958
[maven-release-plugin] prepare release log-parser-1.0.9
adobe-bot May 28, 2024
de09447
[maven-release-plugin] prepare for next development iteration
adobe-bot May 28, 2024
5bb23de
Fixing issue with javadoc
baubakg May 28, 2024
5e09c24
[maven-release-plugin] prepare release log-parser-1.0.10
adobe-bot May 28, 2024
8f173e7
[maven-release-plugin] prepare for next development iteration
adobe-bot May 28, 2024
100d202
Updating release notes
baubakg May 28, 2024
5da98f9
merging with main
baubakg Oct 4, 2024
97915e4
finishing release notes
baubakg Oct 4, 2024
2ac754c
Fixing release notes
baubakg Oct 4, 2024
852cf23
[maven-release-plugin] prepare release log-parser-1.11.0
adobe-bot Oct 4, 2024
f4a71b4
[maven-release-plugin] prepare for next development iteration
adobe-bot Oct 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ The basic method for using this library is, that you create a definition for you

## Table of contents
<!-- TOC -->

* [Installation](#installation)
* [Maven](#maven)
* [Running the Log Parser](#running-the-log-parser)
Expand Down Expand Up @@ -50,7 +49,7 @@ The basic method for using this library is, that you create a definition for you
* [Exporting Results to an JSON File](#exporting-results-to-an-json-file)
* [Command-line Execution of the Log-Parser](#command-line-execution-of-the-log-parser)
* [Changelog](#changelog)
* [1.11.0 (next version)](#1110--next-version-)
* [1.11.0](#1110)
* [1.0.10](#1010)
* [1.0.8.2](#1082)
* [1.0.8](#108)
Expand Down Expand Up @@ -471,7 +470,7 @@ You can get a print out of the command line options by running the command with
All reports are stored in the directory `log-parser-reports/export/`.

## Changelog
### 1.11.0 (next version)
### 1.11.0
- **(new feature)** [#10](https://github.com/adobe/log-parser/issues/10) We now have an executable for the log-parser. You can perform a log parsing using the command line. For more information please read the section on [Command-line Execution of the Log-Parser](#command-line-execution-of-the-log-parser).
- **(new feature)** [#127](https://github.com/adobe/log-parser/issues/127) You can now compare two LogData Objects. This is a light compare that checks that for a given key, if it is absent, added or changes in frequency.
- **(new feature)** [#154](https://github.com/adobe/log-parser/issues/154) We have a data enrichment feature, where you can enrich the log data with additional information. For further details please refer to the section on [Enriching Log Data](#enriching-log-data).
Expand All @@ -483,7 +482,7 @@ All reports are stored in the directory `log-parser-reports/export/`.
- [#110](https://github.com/adobe/log-parser/issues/110) Moved to Java 11
- [#169](https://github.com/adobe/log-parser/issues/169) We only keep one Parse Definition entry with the same title in a Parse Definition.
- [#157](https://github.com/adobe/log-parser/issues/157) Search terms ar no longer a Map of key and Objects. Instead, they are now a map of Parse Definition Entry names and Hamcrest Matchers. This may cause compilation errors for those using the search & filter functions. For migration purposes please refer to the section on [Defining a Search Term](#defining-a-search-term).
- [#57](https://github.com/adobe/log-parser/issues/57) Assertions are no longer an implicite assert equal method. We now allow Hamcrest Matchers for asserting. This can be one or more matchers.
- [#57](https://github.com/adobe/log-parser/issues/57) Assertions are no longer an implicit assert equal method. We now allow Hamcrest Matchers for asserting. This can be one or more matchers.
- [#119](https://github.com/adobe/log-parser/issues/119) Cleanup of deprecated methods, and the consequences thereof.
- [#137](https://github.com/adobe/log-parser/issues/137) We can now generate an HTML report for the differences in log data.
- [#185](https://github.com/adobe/log-parser/issues/185) Resolved issue with deserializing unexpected objects in SDK Log entries..
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.adobe.campaign.tests</groupId>
<artifactId>log-parser</artifactId>
<version>1.11.0-SNAPSHOT</version>
<version>1.11.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>A project that allows you to parse logs, and store them in a structured way.</description>
Expand Down