@rsdk/grpc.common 5.0.3 → 5.0.4-next.0
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
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.4-next.0](https://github.com/R-Vision/rsdk/compare/v5.0.3...v5.0.4-next.0) (2024-07-24)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* regex for grpc address ([de88c41](https://github.com/R-Vision/rsdk/commit/de88c41bfd836d3b45285fb8cbebfd0925aade0d))
|
|
11
|
+
|
|
6
12
|
## [5.0.3](https://github.com/R-Vision/rsdk/compare/v5.0.3-next.0...v5.0.3) (2024-07-24)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @rsdk/grpc.common
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdk/grpc.common",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.4-next.0",
|
|
4
4
|
"description": "Common grpc stuff",
|
|
5
5
|
"license": "Apache License 2.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"@rsdk/common": "*",
|
|
15
15
|
"@rsdk/core": "*"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "55a97875e0c4c86757c032782c39ab00f05ce5a0"
|
|
18
18
|
}
|
|
@@ -4,7 +4,7 @@ import type { PropertyParser } from '@rsdk/core';
|
|
|
4
4
|
/**
|
|
5
5
|
* FIXME: Doesn't support IPv6
|
|
6
6
|
*/
|
|
7
|
-
const PATTERN = /^([\w
|
|
7
|
+
const PATTERN = /^([\w._-]+):(\d{4,5})$/;
|
|
8
8
|
|
|
9
9
|
export class GrpcAddressParser implements PropertyParser<string> {
|
|
10
10
|
type(): string {
|