@serve.zone/interfaces 7.10.0 → 7.11.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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-06-10 - 7.11.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- add rolling deployment capability flag (service)
|
|
8
|
+
- Add optional rollingCapable property to service data contracts to indicate support for overlapping rolling deployments during updates.
|
|
9
|
+
- Document default behavior as stopping and archiving the previous deployment before starting a replacement.
|
|
10
|
+
|
|
3
11
|
## 2026-06-10 - 7.10.0
|
|
4
12
|
|
|
5
13
|
### Features
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@serve.zone/interfaces',
|
|
6
|
-
version: '7.
|
|
6
|
+
version: '7.11.0',
|
|
7
7
|
description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHVGQUF1RjtDQUNyRyxDQUFBIn0=
|
|
@@ -41,6 +41,12 @@ export interface IService {
|
|
|
41
41
|
imageVersion: string;
|
|
42
42
|
registryTarget?: IRegistryTarget;
|
|
43
43
|
deployOnPush?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* When true the service tolerates overlapping deployments during
|
|
46
|
+
* updates (rolling). Default false: the previous deployment is stopped
|
|
47
|
+
* and archived before a replacement deployment starts.
|
|
48
|
+
*/
|
|
49
|
+
rollingCapable?: boolean;
|
|
44
50
|
appTemplateId?: string;
|
|
45
51
|
appTemplateVersion?: string;
|
|
46
52
|
appStoreUpgradePolicy?: 'manual' | 'notify' | 'auto';
|
package/package.json
CHANGED
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/data/service.ts
CHANGED
|
@@ -46,6 +46,13 @@ export interface IService {
|
|
|
46
46
|
imageVersion: string;
|
|
47
47
|
registryTarget?: IRegistryTarget;
|
|
48
48
|
deployOnPush?: boolean;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* When true the service tolerates overlapping deployments during
|
|
52
|
+
* updates (rolling). Default false: the previous deployment is stopped
|
|
53
|
+
* and archived before a replacement deployment starts.
|
|
54
|
+
*/
|
|
55
|
+
rollingCapable?: boolean;
|
|
49
56
|
appTemplateId?: string;
|
|
50
57
|
appTemplateVersion?: string;
|
|
51
58
|
appStoreUpgradePolicy?: 'manual' | 'notify' | 'auto';
|