Skip to content

Commit

Permalink
Modify the node structure.
Browse files Browse the repository at this point in the history
- Modify the node structure so as to configure "TI Container" remotely
  like "Datalake".
  - Rename `Giganto` to `ConnectionlessAgent`.
  - Add a `ti_container` field of type `ConnectionlessAgent` within
    `node`.
  - Modify migration function `migrate_0_29_node`.
  - Add migration function `migrate_0_35_node`.

Close: #399
  • Loading branch information
kimhanbeom committed Jan 23, 2025
1 parent 3bf9df4 commit 999d9f8
Show file tree
Hide file tree
Showing 8 changed files with 383 additions and 62 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ file is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and
this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Modified the node structure so as to configure "TI Container" remotely like
"Datalake".
- Renamed `Giganto` to `ConnectionlessAgent`.
- Added a `ti_container` field of type `ConnectionlessAgent` within `node`.

## [0.34.0] - 2025-01-20

### Added
Expand Down Expand Up @@ -800,6 +809,7 @@ AsRef<[u8]>`). This change accommodates scenarios where the information stored
- Modified `FtpBruteForce` by adding an `is_internal` field which is a boolean
indicating whether it is internal or not.

[Unreleased]: https://github.com/petabi/review-database/compare/0.34.0...main
[0.34.0]: https://github.com/petabi/review-database/compare/0.33.1...0.34.0
[0.33.1]: https://github.com/petabi/review-database/compare/0.33.0...0.33.1
[0.33.0]: https://github.com/petabi/review-database/compare/0.32.0...0.33.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "review-database"
version = "0.34.0"
version = "0.35.0-alpha.1"
edition = "2021"

[dependencies]
Expand Down
14 changes: 7 additions & 7 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ use self::tables::StateDb;
pub use self::tables::{
AccessToken, AccountPolicy, Agent, AgentConfig, AgentKind, AgentStatus, AllowNetwork,
AllowNetworkUpdate, AttrCmpKind, BlockNetwork, BlockNetworkUpdate, Confidence,
CsvColumnExtra as CsvColumnExtraConfig, Customer, CustomerNetwork, CustomerUpdate, DataSource,
DataSourceUpdate, DataType, Filter, Giganto, IndexedTable, Iterable, ModelIndicator, Network,
NetworkUpdate, Node, NodeProfile, NodeTable, NodeUpdate, OutlierInfo, OutlierInfoKey,
OutlierInfoValue, PacketAttr, ProtocolPorts, Response, ResponseKind, SamplingInterval,
SamplingKind, SamplingPeriod, SamplingPolicy, SamplingPolicyUpdate, Structured,
StructuredClusteringAlgorithm, Table, Template, Ti, TiCmpKind, Tidb, TidbKind, TidbRule,
TorExitNode, TrafficFilter, TriagePolicy, TriagePolicyUpdate, TriageResponse,
ConnectionlessAgent, CsvColumnExtra as CsvColumnExtraConfig, Customer, CustomerNetwork,
CustomerUpdate, DataSource, DataSourceUpdate, DataType, Filter, IndexedTable, Iterable,
ModelIndicator, Network, NetworkUpdate, Node, NodeProfile, NodeTable, NodeUpdate, OutlierInfo,
OutlierInfoKey, OutlierInfoValue, PacketAttr, ProtocolPorts, Response, ResponseKind,
SamplingInterval, SamplingKind, SamplingPeriod, SamplingPolicy, SamplingPolicyUpdate,
Structured, StructuredClusteringAlgorithm, Table, Template, Ti, TiCmpKind, Tidb, TidbKind,
TidbRule, TorExitNode, TrafficFilter, TriagePolicy, TriagePolicyUpdate, TriageResponse,
TriageResponseUpdate, TrustedDomain, TrustedUserAgent, UniqueKey, Unstructured,
UnstructuredClusteringAlgorithm, ValueKind,
};
Expand Down
Loading

0 comments on commit 999d9f8

Please sign in to comment.