summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
AgeCommit message (Collapse)Author
2024-04-17Update usage in README (#409)HEADmaincyqsimon
* Update usage * Write changelog
2024-04-16CI: use sccache to speed up CI (#408)cyqsimon
* CI: use sccache to speed up CI * Write changelog * Only use sccache for non-cross targets
2024-04-16Update README (#407)cyqsimon
* Update README * Write changelog
2024-04-16CI: Enable more cross-compiled builds (#401)cyqsimon
* CI: Enable more aarch64 builds * Use cross for linux-aarch64-* builds * Use `macos-14` explicitly for now - https://github.com/orgs/community/discussions/116911 - https://github.blog/changelog/2024-04-01-macos-14-sonoma-is-generally-available-and-the-latest-macos-runner-image/ * Add targets in release.yaml * Write changelog * Fix typo * Passthrough `BANDWHICH_GEN_DIR` into cross container * Add armv7 targets
2024-04-16Temporarily disable UI tests (#406)cyqsimon
* Temporarily disable UI tests - Too many sporadic errors occlude actual problems; see #400 - These tests will be re-enabled once the big refactor is complete * Write changelog
2024-04-15Keep GitHub Actions up to date with GitHub's Dependabot (#403)Christian Clauss
* Keep GitHub Actions up to date with GitHub's Dependabot * [Keeping your actions up to date with Dependabot](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot) * [Configuration options for the dependabot.yml file - package-ecosystem](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem) * Write changelog --------- Co-authored-by: cyqsimon <28627918+cyqsimon@users.noreply.github.com>
2024-04-15CI: Remove `musl-tools` install step (#402)cyqsimon
* Test: what if we don't install MUSL tools? * Write changelog
2024-04-15Fix Windows FP discrepancy issue in test (#400)cyqsimon
* Fix Windows FP discrepancy issue in test * Write changelog
2024-04-15CI refactor (#399)cyqsimon
* CI refactor * Don't error when no bandwhich stderr files are found * Specify explicit target when running tests * Fix typo * Set `--color never` correctly for tests * Unset `--color never` - because the extraneous escape characters don't seem to be related to colours * Write changelog
2024-04-02Enable Android build (#384)Felix Obenhuber
* Support build for target_os android The target_os `android` is quite similar to `linux` but must be mentioned in the guards explicitly. Tested for target `aarch64-linux-android`. * Add target aarch64-linux-android to ci Use `cross` for building target `aarch64-linux-android`. In the `ci` workflow the matrix branch of `os` `ubuntu-latest` is used because the matrix organization is host os centric instead of target. Releases are build with `cross` for target `aarch64-linux-android`. Install `cross` if needed for a run. At the time of writing the latest release of `cross` can't build binaries for target `aarch64-linux-android` and it's common sense that the latest git tag or `master` shall be used [1]. [1] https://github.com/cross-rs/cross/issues/1222 * Add android related readme section
2024-04-01CI: Configure dependabot grouping (#395)cyqsimon
* CI: Configure dependabot grouping * Write changelog
2024-03-25Fix IPv6 socket detect logic (#383)cyqsimon
* Fix IPv6 socket detect logic * Write changelog
2024-03-25Apply suggestions from new clippy lint `clippy::assigning_clones` (#382)cyqsimon
* fix: clippy warnings * Additional fix * Write changelog --------- Co-authored-by: Krithic Kumar <krithickumarub@protonmail.com>
2024-03-25Remove unnecessary logging synchronisation (#381)cyqsimon
* Revert 89e1140 - simplelog is already thread safe - see https://github.com/Drakulix/simplelog.rs/issues/146 * Write changelog * Fix import for MacOS
2024-03-18feat: add `PID` column to `Process` table (#379)Krithic Kumar
* feat: add `PID` column to `Process` table * fix(tests): populate fake data with the correct `ProcessInfo` type * test: update snapshots * refactor: use more idiomatic rust * refactor: rename function from `get_proc_name` to `get_proc_info` * refactor: only display PID when width available is highest ref: https://github.com/imsnif/bandwhich/pull/165#issuecomment-620852892 * tests: update snapshots * chore: update CHANGELOG * fix: clippy warnings * Revert "fix: clippy warnings" This reverts commit e5f06cba1943d60b43a19957c42e3178c6916f69. We will do this separately for the sake of keeping a clean history * refactor: use `u32` for PID * refactor: more idiomatic rust --------- Co-authored-by: cyqsimon <28627918+cyqsimon@users.noreply.github.com>
2024-03-01chore(deps): bump clap from 4.4.18 to 4.5.1 (#373)dependabot[bot]
* chore(deps): bump clap from 4.4.18 to 4.5.1 Bumps [clap](https://github.com/clap-rs/clap) from 4.4.18 to 4.5.1. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.18...clap_complete-v4.5.1) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com># Last 10 commits: * Bump MSRV to 1.74 --------- Signed-off-by: dependabot[bot] <support@github.com># Last 10 commits: Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: cyqsimon <28627918+cyqsimon@users.noreply.github.com>
2024-03-01CI: use GitHub API to exempt dependabot from changelog requirement (#378)cyqsimon
* CI: use GitHub API to exempt dependabot from changelog requirement * Write changelog
2024-03-01Remove redundant imports (#377)cyqsimon
* Remove redundant imports - Now linted by clippy in 1.78 - See https://github.com/rust-lang/rust/pull/117772 * Write changelog * Remove Windows-only redundant imports in build script
2024-01-30CI: include generated assets in release archive (#359)cyqsimon
* CI: include generated assets in release archive * Write changelog
2024-01-30CI: strip release binaries for all targets (#358)cyqsimon
* CI: strip release binaries for all targets - This is now done using `rustc` flags directly * Write changelog
2024-01-28Generate completion & manpage (#357)cyqsimon
* Generate completion & manpage * Write changelog
2024-01-28Bump version to 0.22.1v0.22.1cyqsimon
2024-01-28Bump version to 0.22.0v0.22.0cyqsimon
2023-12-08Write changelog for all unreleased commitscyqsimon
This shouldn't be necessary in the future due to #331.
2023-12-08Show interface names (#340)ilyes-ced
* added interface names * some fixes * Set interface name in UI only once * Code style * Add changelog entry --------- Co-authored-by: cyqsimon <28627918+cyqsimon@users.noreply.github.com>
2023-11-12CI: ensure a changelog entry exists for each PR (#331)cyqsimon
* CI: ensure a changelog entry exists for each PR * Write CHANGELOG * Fix grep by adding `-P`
2023-10-16Bump version to 0.21.1v0.21.1cyqsimon
2023-10-16... and I forgot to keep changelog againcyqsimon
2023-09-19Bump version to 0.21.0cyqsimon
2023-09-11migrate structopt to clap (#285)liyixin
* migrate structopt to clap * add a entry in changelog * Move changelog entry from `Added` to `Fixed` --------- Co-authored-by: cyqsimon <28627918+cyqsimon@users.noreply.github.com>
2023-08-27Note fixes in changelogcyqsimon
2023-08-25docs(changelog): resolve-conf + trust-ad fixBrooks Rady
2020-10-15chore(release): 0.20.00.20.0Aram Drevekenin
2020-10-01docs(changelog): CLI dns server address flagAram Drevekenin
2020-09-29chore(release): 0.19.00.19.0Aram Drevekenin
2020-09-29docs(changelog): reconnect disconnected interfacesAram Drevekenin
2020-09-29docs(changelog): TUI upgradeAram Drevekenin
2020-09-20docs(changelog): fix build on freebsdAram Drevekenin
2020-09-20docs(changelog): ci changeAram Drevekenin
2020-09-14docs(changelog): window resizingAram Drevekenin
2020-09-11docs(changelog): rdns fixAram Drevekenin
2020-09-11fix(build): do not download windows build deps on other platforms0.18.1Aram Drevekenin
2020-09-11chore(release): 0.18.00.18.0Aram Drevekenin
2020-09-10docs(changelog): windows build and run supportAram Drevekenin
2020-09-08docs(changelog): man pageAram Drevekenin
2020-09-03docs(changelog): windows infrastructureAram Drevekenin
2020-09-02chore(release): 0.17.00.17.0Aram Drevekenin
2020-09-02docs(changelog): unitsAram Drevekenin
2020-09-01docs(changelog): chinese characters fixAram Drevekenin
2020-07-14docs(changelog): raw mode delimitersAram Drevekenin