@spinnaker/core 0.10.0 → 0.11.3
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 +45 -0
- package/dist/config/settings.d.ts +8 -1
- package/dist/domain/IManagedEntity.d.ts +2 -1
- package/dist/index.js +33 -32
- package/dist/index.js.map +1 -1
- package/dist/managed/config/GitIntegration.d.ts +1 -1
- package/dist/managed/graphql/graphql-sdk.d.ts +36 -1
- package/dist/managed/utils/defaults.d.ts +2 -0
- package/package.json +2 -2
- package/src/config/settings.ts +9 -1
- package/src/domain/IManagedEntity.ts +1 -0
- package/src/managed/UnmanagedMessage.tsx +2 -5
- package/src/managed/config/Configuration.tsx +3 -3
- package/src/managed/config/GitIntegration.less +15 -0
- package/src/managed/config/GitIntegration.tsx +64 -1
- package/src/managed/externals/ManagedResourceConfig.tsx +2 -5
- package/src/managed/externals/ManagedResourceDetailsIndicator.tsx +2 -5
- package/src/managed/externals/managedResourceStatusConfig.tsx +12 -3
- package/src/managed/graphql/graphql-sdk.ts +55 -1
- package/src/managed/graphql/schema.graphql +51 -0
- package/src/managed/overview/artifact/ArtifactActionModal.tsx +3 -2
- package/src/managed/overview/baseStyles.less +12 -0
- package/src/managed/overview/queries.graphql +1 -0
- package/src/managed/utils/defaults.ts +13 -0
- package/src/managed/versionMetadata/MetadataComponents.tsx +1 -1
- package/src/managed/versionMetadata/VersionMetadata.less +4 -3
- package/src/managed/versionsHistory/VersionHeading.tsx +1 -1
- package/src/widgets/notifier/notifier.component.less +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,51 @@
|
|
|
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
|
+
## [0.11.3](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.11.2...@spinnaker/core@0.11.3) (2021-09-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **md:** fix version message style ([#9671](https://github.com/spinnaker/deck/issues/9671)) ([c5ff99a](https://github.com/spinnaker/deck/commit/c5ff99ac472645fdb5f931e221bc4d475335c086))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.11.2](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.11.1...@spinnaker/core@0.11.2) (2021-09-18)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **md:** replaced status with statusSummary ([#9669](https://github.com/spinnaker/deck/issues/9669)) ([4defe7f](https://github.com/spinnaker/deck/commit/4defe7f3df71c201533bda4f103e63b116859a96))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [0.11.1](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.11.0...@spinnaker/core@0.11.1) (2021-09-16)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* **core:** break words in notifications to prevent overflow ([#9665](https://github.com/spinnaker/deck/issues/9665)) ([9e15cc7](https://github.com/spinnaker/deck/commit/9e15cc7aaba7eb88bff64a1d618758de4e6476dd))
|
|
34
|
+
* **md:** Added DELETING state to resource states. ([#9659](https://github.com/spinnaker/deck/issues/9659)) ([dc36ccd](https://github.com/spinnaker/deck/commit/dc36ccdebdb1c2e20ac1f594f6b8418f470f3076))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
# [0.11.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.10.0...@spinnaker/core@0.11.0) (2021-09-15)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Features
|
|
44
|
+
|
|
45
|
+
* **md:** display manifest path and make it configurable ([#9657](https://github.com/spinnaker/deck/issues/9657)) ([c7faaef](https://github.com/spinnaker/deck/commit/c7faaef01ae89b6103f37fa0087a94e33c658d8c))
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
6
51
|
# [0.10.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.9.1...@spinnaker/core@0.10.0) (2021-09-14)
|
|
7
52
|
|
|
8
53
|
|
|
@@ -75,6 +75,13 @@ export interface IBannerSettings {
|
|
|
75
75
|
export interface INewApplicationDefaults {
|
|
76
76
|
chaosMonkey?: boolean;
|
|
77
77
|
}
|
|
78
|
+
export interface IManagedDeliveryURLs {
|
|
79
|
+
gettingStarted: string;
|
|
80
|
+
root: string;
|
|
81
|
+
pinning: string;
|
|
82
|
+
resourceStatus: string;
|
|
83
|
+
markAsBad: string;
|
|
84
|
+
}
|
|
78
85
|
export interface ISpinnakerSettings {
|
|
79
86
|
[key: string]: any;
|
|
80
87
|
analytics: {
|
|
@@ -121,9 +128,9 @@ export interface ISpinnakerSettings {
|
|
|
121
128
|
gitSources: string[];
|
|
122
129
|
hiddenStages: string[];
|
|
123
130
|
managedDelivery?: {
|
|
124
|
-
gettingStartedUrl?: string;
|
|
125
131
|
defaultManifest: string;
|
|
126
132
|
manifestBasePath: string;
|
|
133
|
+
urls?: Partial<IManagedDeliveryURLs>;
|
|
127
134
|
};
|
|
128
135
|
maxPipelineAgeDays: number;
|
|
129
136
|
newApplicationDefaults: INewApplicationDefaults;
|
|
@@ -13,7 +13,8 @@ export declare enum ManagedResourceStatus {
|
|
|
13
13
|
RESUMED = "RESUMED",
|
|
14
14
|
UNHAPPY = "UNHAPPY",
|
|
15
15
|
UNKNOWN = "UNKNOWN",
|
|
16
|
-
WAITING = "WAITING"
|
|
16
|
+
WAITING = "WAITING",
|
|
17
|
+
DELETING = "DELETING"
|
|
17
18
|
}
|
|
18
19
|
declare type DeprecatedStatus = 'OVERRIDE_PASS' | 'OVERRIDE_FAIL' | 'NOT_EVALUATED';
|
|
19
20
|
export declare type ConstraintStatus = DeprecatedStatus | MdConstraintStatus;
|