Releases: pyroraptor07/interactsh-rs
Releases · pyroraptor07/interactsh-rs
v0.3.0
This is an intermediate release to bump some dependency versions and fix a couple of things internally.
IMPORTANT NOTE: The 0.4 and possibly 0.5 releases are going to be major under the hood changes. The 0.4 release will include some changes to the existing public API.
Changed
- Removed duplicate default() method on ClientBuilder.
- Bumped base64 crate version to 0.21.
- Bumped rsa crate version to 0.8.
- Removed the weird ksuid concatenation in ClientBuilder in favor of simpler random string generation for subdomain and correlation ID.
v0.2.1
Readme fix, no library changes. See the v0.2.0 changelog below:
Added
- Added the ability to set proxies for the client to use. See the docs for
more info.
Changed
- Replaced thiserror with snafu for error implementions. There are some changes
to the error enum variants, check the docs if you depend on a specific variant. - Depreciated RegisteredClient::get_interaction_url() in favor of
RegisteredClient::get_interaction_fqdn(). This is purely for naming accuracy, it returns the
same string as RegisteredClient::get_interaction_url() did.
v0.2.0
Added
- Added the ability to set proxies for the client to use. See the docs for
more info.
Changed
- Replaced thiserror with snafu for error implementions. There are some changes
to the error enum variants, check the docs if you depend on a specific variant. - Depreciated RegisteredClient::get_interaction_url() in favor of
RegisteredClient::get_interaction_fqdn(). This is purely for naming accuracy, it returns the
same string as RegisteredClient::get_interaction_url() did.
v0.1.0
No library changes, just bumping from release candidate to a full release.
v0.1.0-RC2 (Release Candidate)
Changed
- Removed the "reqwest-" prefix from the TLS feature flags. The old TLS
feature flag names have been left in for now and just activate the new feature flags.
The changes are as follows:reqwest-rustls-tls
changed torustls-tls
reqwest-native-tls
changed tonative-tls
reqwest-native-tls-vendored
changed tonative-tls-vendored
v0.1.0-RC1 (Release Candidate)
Release candidate for the initial published crate version.
Added
- Initial client implementation
- Examples of use