Skip to content

Commit

Permalink
feat(release-notes): preparing for new [v0.1.9] release
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnwriter committed Nov 3, 2023
1 parent 08dc374 commit f1b13b9
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 9 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,22 @@ jobs:
export CARGO_HOME="${XDG_DATA_HOME:-$HOME/.cargo}"
export RUSTUP_HOME="${XDG_DATA_HOME:-$HOME/.rustup}"
export GOPATH="${XDG_DATA_HOME:-$HOME/.go}"
export PATH="$PATH:$HOME/.cargo/bin:$HOME/.go/bin"
export PATH="$PATH:$HOME/.cargo/bin"
export PATH="$PATH:$HOME/.go/bin"
export CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
- name: Install hyperfine
run: cargo install hyperfine

- name: Install gowitness
run: go install github.com/sensepost/gowitness@latest
run: |
go install github.com/sensepost/gowitness@latest
which gowitness || gowitness_path=$(find / -type f -name "gowitness" 2>/dev/null)
mv "$gowitness_path" /usr/local/bin/gowitness
- name: Get 100 URLs
run: |
curl -qfsSL "https://raw.githubusercontent.com/Azathothas/CertStream-Domains/main/Data/np_ccTLDs/certstream_domains_np_all_24h_httpx.txt" |
awk '/http/ {print $1}' |
sort -u |
head -n 100 > urls.txt
curl -qfsSL "https://raw.githubusercontent.com/Azathothas/CertStream-Domains/main/Data/np_ccTLDs/certstream_domains_np_all_24h_httpx.txt" | awk '/http/ {print $1}' | sort -u | head -n 100 > urls.txt
- name: Install hxn
run: cargo install hxn
Expand Down
30 changes: 28 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,47 @@

All notable changes to this project will be documented in this file.

## [0.1.8] - 2023-10-17
## [0.1.9] - 2023-11-03

### Features

- Bug-report,feature req templates
- [closes #34], Take full page screenshots of urls

### Miscellaneous Tasks

- Bench gowitness with hxn via ci/c
- Bump clap from 4.4.4 to 4.4.5
- Notes // docx for new release
- Bug-report,feature req templates
- Bump clap from 4.4.5 to 4.4.6
- Bump chromiumoxide from 0.5.1 to 0.5.3
- Bump tokio from 1.32.0 to 1.33.0
- Bump chromiumoxide from 0.5.3 to 0.5.4
- Bump reqwest from 0.11.20 to 0.11.22
- Print no title if url doesn't have one // closes #30
- Add AUR installation guide
- Show quote inside ascii block
- [closes #22] ignore danger certs // dns
- Bump clap from 4.4.6 to 4.4.7
- Bump futures from 0.3.28 to 0.3.29
- Use gh actions to test domains
- Use a long timeout to preserve domain ss
- Use long timeout // redirect msgs while installing deps
- Use multiple tabs to increase speed
- Test domains screenshots on the test commit
- Fixed typos to trigger action
- Trigger action on push
- Use multple tabs // timeout
- Manually install hyprfine than using binstall
- Fixed typos on path
- Fixed typosss
- Fixed typo with hyperfine

### Refactor

- Use verbose mode to grab info else don't even make a request
- Run domain tests on seprate job
- Soo, it's bash not zsh

## [0.1.7] - 2023-09-26

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 = "hxn"
version = "0.1.8"
version = "0.1.9"
edition = "2021"
authors = [ "PwnWriter < [email protected] >" ]
description = "Blazingly fast tool to grab screenshots of url/webpages from terminal."
Expand Down

0 comments on commit f1b13b9

Please sign in to comment.