Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 45cb87e9e7 | |||
| 74a5b37e92 |
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2026-01-20 - 1.15.3 - fix(tests(nanonets))
|
||||||
|
allow '/' when normalizing invoice strings in tests
|
||||||
|
|
||||||
|
- Adjust regex in test/test.invoices.nanonets.ts to preserve forward slashes when cleaning invoice values
|
||||||
|
- Changed pattern from [^A-Z0-9-] to [^A-Z0-9\/-] to prevent accidental removal of '/' characters in invoice identifiers
|
||||||
|
|
||||||
## 2026-01-20 - 1.15.2 - fix(dev-deps)
|
## 2026-01-20 - 1.15.2 - fix(dev-deps)
|
||||||
bump devDependencies @push.rocks/smartagent to ^1.6.2 and @push.rocks/smartai to ^0.13.3
|
bump devDependencies @push.rocks/smartagent to ^1.6.2 and @push.rocks/smartai to ^0.13.3
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@host.today/ht-docker-ai",
|
"name": "@host.today/ht-docker-ai",
|
||||||
"version": "1.15.2",
|
"version": "1.15.3",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "Docker images for AI vision-language models including MiniCPM-V 4.5",
|
"description": "Docker images for AI vision-language models including MiniCPM-V 4.5",
|
||||||
|
|||||||
@@ -310,7 +310,7 @@ function extractInvoiceNumber(s: string | undefined): string {
|
|||||||
const match = clean.match(pattern);
|
const match = clean.match(pattern);
|
||||||
if (match) return match[1];
|
if (match) return match[1];
|
||||||
}
|
}
|
||||||
return clean.replace(/[^A-Z0-9-]/gi, '').trim() || clean;
|
return clean.replace(/[^A-Z0-9\/-]/gi, '').trim() || clean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user