mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 00:26:26 +00:00
docs(changelog): record the dotted-A.M.B.A. suffix fix (#356)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5
parent
7d00ec7925
commit
e2c311a5b4
@@ -49,6 +49,16 @@ per-file diff commands.
|
|||||||
"Compile example CV and cover letter" to two leg-suffixed names, so a branch-protection
|
"Compile example CV and cover letter" to two leg-suffixed names, so a branch-protection
|
||||||
rule requiring the old name needs updating once.
|
rule requiring the old name needs updating once.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- **`salary_lookup.py` never stripped the dotted "A.M.B.A." legal suffix** (#356) - the
|
||||||
|
`STRIP_PATTERNS` regex ended in `\.\b`, and a word boundary can't sit between a literal
|
||||||
|
dot and the space or end-of-string that follows it in real company names, so the
|
||||||
|
pattern was dead code: `"Arla Foods A.M.B.A."` normalized differently from
|
||||||
|
`"Arla Foods amba"` and fuzzy-matched at 86 instead of 100. The trailing dot is now
|
||||||
|
optional (`\.?\b`), both forms normalize identically, and two regression tests pin it.
|
||||||
|
Thanks @Ritik650.
|
||||||
|
|
||||||
## [1.6.0] - 2026-08-19
|
## [1.6.0] - 2026-08-19
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
Reference in New Issue
Block a user