copilot-tap-extension 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3807,7 +3807,7 @@ function createSessionPort(initialSession = null) {
3807
3807
 
3808
3808
  // src/util/normalize.mjs
3809
3809
  function normalizeName(value, fallback = "") {
3810
- const normalized = String(value ?? "").trim().toLowerCase().replace(/[^a-z0-9._-]+/g, "-").replace(/^-+|-+$/g, "");
3810
+ const normalized = String(value ?? "").normalize("NFKC").trim().toLowerCase().replace(/[^\p{L}\p{N}\p{M}._-]+/gu, "-").replace(/^-+|-+$/g, "");
3811
3811
  return normalized || fallback;
3812
3812
  }
3813
3813
  function normalizeLifespan(value, fallback = LIFESPAN.TEMPORARY) {
package/dist/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "2.0.1"
2
+ "version": "2.0.2"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "copilot-tap-extension",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Copilot CLI extension for background event emitters, event streams, and session injection.",
5
5
  "type": "module",
6
6
  "license": "MIT",