File tree Expand file tree Collapse file tree 2 files changed +38
-2
lines changed
Expand file tree Collapse file tree 2 files changed +38
-2
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ All notable changes to this project will be documented in this file.
4+
5+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7+
8+ ## [ 1.0.1] - 2025-11-07
9+
10+ ### Added
11+ - 🎯 ** Target parameter shorthand support** - Now you can use simplified formats for local proxying:
12+ - Port only: ` apxy -t 3000 ` instead of ` apxy -t http://localhost:3000 `
13+ - With colon: ` apxy -t :3000 `
14+ - Host:port: ` apxy -t localhost:3000 `
15+ - Full URLs still work: ` apxy -t http://localhost:3000 `
16+
17+ - 🔧 ** Custom authentication parameter names** - Customize the URL parameter and header names for authentication:
18+ - ` --auth-param ` to set custom URL parameter name (default: ` token ` )
19+ - ` --auth-header ` to set custom header name (default: ` X-Auth-Token ` )
20+ - Example: ` apxy -t 3000 -a secret --auth-param apikey --auth-header Authorization `
21+
22+ ### Changed
23+ - Improved startup output to show configured authentication parameter names when enabled
24+ - Updated help text to reflect new options
25+
26+ ### Fixed
27+ - Better URL normalization for various input formats
28+
29+ ## [ 0.1.0] - 2025-11-06
30+
31+ ### Added
32+ - Initial release
33+ - Basic reverse proxy functionality
34+ - Optional authentication via URL parameter or header
35+ - Static binary compilation
36+ - Cross-platform support (ARM64, AMD64)
Original file line number Diff line number Diff line change 11[package ]
22name = " apxy"
3- version = " 0. 1.0"
3+ version = " 1.0.1 "
44edition = " 2021"
55authors = [" apxy contributors" ]
66description = " A simple reverse proxy with URL parameter or header authentication"
77license = " MIT"
8- repository = " https://github.com/YOUR_USERNAME /apxy"
8+ repository = " https://github.com/talkincode /apxy"
99readme = " README.md"
1010keywords = [" proxy" , " reverse-proxy" , " authentication" ]
1111categories = [" command-line-utilities" , " web-programming" ]
You can’t perform that action at this time.
0 commit comments