backend-manager 5.0.160 → 5.0.161
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.
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
# [5.0.161] - 2026-03-18
|
|
18
|
+
### Added
|
|
19
|
+
- Port conflict detection in `serve` command — checks and kills blocking processes before starting Firebase server
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- Unblocked common team/role email local parts (`user`, `email`, `mail`, `hello`, `info`, `admin`, `support`, `contact`) from validation blocklist, as these are legitimate addresses
|
|
23
|
+
|
|
17
24
|
# [5.0.160] - 2026-03-18
|
|
18
25
|
### Added
|
|
19
26
|
- Beehiiv `resolveSegmentIds()` — fetches segments from API, builds name→ID cache (same pattern as SendGrid)
|
package/package.json
CHANGED
|
@@ -37,10 +37,12 @@ const BLOCKED_LOCAL_PARTS = new Set([
|
|
|
37
37
|
'asdf', 'qwerty', 'zxcv', 'asd', 'qwe',
|
|
38
38
|
'aaa', 'bbb', 'xxx', 'zzz',
|
|
39
39
|
'abc', 'abc123', 'abcdef',
|
|
40
|
+
// Team
|
|
41
|
+
// 'user', 'email', 'mail', 'hello', 'info',
|
|
42
|
+
// 'admin', 'administrator', 'support',
|
|
43
|
+
// 'contact',
|
|
40
44
|
// Placeholder
|
|
41
|
-
'
|
|
42
|
-
'admin', 'administrator', 'support',
|
|
43
|
-
'contact', 'name', 'firstname', 'lastname',
|
|
45
|
+
'name', 'firstname', 'lastname',
|
|
44
46
|
'foo', 'bar', 'baz', 'foobar',
|
|
45
47
|
'null', 'undefined', 'none', 'anonymous',
|
|
46
48
|
]);
|