Skip to content

Commit

Permalink
Add a changelog and create a release
Browse files Browse the repository at this point in the history
version bump from 2.8.3 => 2.9.0
  • Loading branch information
marcmo committed Oct 16, 2020
1 parent 7386fd4 commit 530d91d
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 11 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [2.9.0] - 10/16/2020
### Added
* Implement on-the-fly grabbing of file content.
The indexer can now be asked for a specific range of log entries
of a given file. No need to preprocess the file and store it.
* support for storing and loading of grab-metadata
* run async metadata creation in rust thread
* typesafe typescript API for Grabber
### Changed
* Opening *.pcapng files: pcap frames that do not contain valid DLT will not be flagged as error
* Moved rust/js-binding api functions to own package
* General async binding improvements
* avoid acknowledge of shutdown
* Get rid of Mutex lock for receiving events
from rust side
### Fixed
* correctly show all DLT messages in a single pcap frame (even if there are multiple)

## [2.8.3] - 10/12/2020
### Added
* Add options to order comments
Expand Down
4 changes: 2 additions & 2 deletions application/apps/indexer-neon/native/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion application/apps/indexer-neon/native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chipmunk_integration"
version = "0.1.0"
version = "0.2.0"
authors = ["Oliver Mueller <oliver.mueller@esrlabs.com>"]
license = "MIT"
build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions application/apps/indexer-neon/rakefile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@

desc 'test neon integration: dlt pcap indexing'
task dlt_pcap: [:clean, OUT_DIR, 'neon:rebuild'] do
call_test_function('testIndexingPcap', "#{LOCAL_EXAMPLE_DIR}/dlt/test.pcapng",
"#{LOCAL_EXAMPLE_DIR}/dlt/test.pcapng.out")
call_test_function('testIndexingPcap', "#{LOCAL_EXAMPLE_DIR}/dlt/pcap/test.pcapng",
"#{LOCAL_EXAMPLE_DIR}/dlt/pcap/test.pcapng.out")
end
task all: 'neon:dlt_nonverbose'

Expand Down
2 changes: 1 addition & 1 deletion application/apps/indexer/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion application/apps/indexer/dlt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dlt"
version = "0.1.0"
version = "0.2.0"
authors = ["Oliver Mueller <oliver.mueller@esrlabs.com>"]
edition = "2018"

Expand Down
3 changes: 1 addition & 2 deletions application/apps/indexer/dlt/src/dlt_pcap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,7 @@ impl futures::Stream for PcapMessageProducer {
}
Ok((_, ParsedMessage::Invalid)) => (),
Err(e) => {
trace!("error: {}", e);
warn!("PCAP payload did not contain a valid DLT message");
trace!("PCAP payload did not contain a valid DLT message, error: {}", e);
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion application/electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion application/electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chipmunk",
"version": "2.8.3",
"version": "2.9.0",
"chipmunk": {
"versions": {}
},
Expand Down

0 comments on commit 530d91d

Please sign in to comment.