@spinnaker/cloudfoundry 0.0.159 → 0.0.163

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,38 @@
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.0.163](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.162...@spinnaker/cloudfoundry@0.0.163) (2021-12-01)
7
+
8
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.0.162](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.161...@spinnaker/cloudfoundry@0.0.162) (2021-11-12)
15
+
16
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.0.161](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.160...@spinnaker/cloudfoundry@0.0.161) (2021-11-03)
23
+
24
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
25
+
26
+
27
+
28
+
29
+
30
+ ## [0.0.160](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.159...@spinnaker/cloudfoundry@0.0.160) (2021-10-05)
31
+
32
+ **Note:** Version bump only for package @spinnaker/cloudfoundry
33
+
34
+
35
+
36
+
37
+
6
38
  ## [0.0.159](https://github.com/spinnaker/deck/compare/@spinnaker/cloudfoundry@0.0.158...@spinnaker/cloudfoundry@0.0.159) (2021-10-01)
7
39
 
8
40
  **Note:** Version bump only for package @spinnaker/cloudfoundry
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spinnaker/cloudfoundry",
3
3
  "license": "Apache-2.0",
4
- "version": "0.0.159",
4
+ "version": "0.0.163",
5
5
  "module": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
7
7
  "scripts": {
@@ -13,7 +13,7 @@
13
13
  "lib": "npm run build"
14
14
  },
15
15
  "dependencies": {
16
- "@spinnaker/core": "^0.14.1",
16
+ "@spinnaker/core": "^0.16.0",
17
17
  "@uirouter/react": "1.0.7",
18
18
  "@uirouter/react-hybrid": "1.0.2",
19
19
  "angular": "1.6.10",
@@ -30,9 +30,9 @@
30
30
  },
31
31
  "devDependencies": {
32
32
  "@rollup/plugin-alias": "^3.1.2",
33
- "@spinnaker/eslint-plugin": "^3.0.0",
33
+ "@spinnaker/eslint-plugin": "^3.0.1",
34
34
  "@spinnaker/mocks": "1.0.7",
35
- "@spinnaker/scripts": "^0.2.2",
35
+ "@spinnaker/scripts": "^0.2.4",
36
36
  "@types/angular": "1.6.26",
37
37
  "@types/angular-ui-bootstrap": "0.13.41",
38
38
  "@types/enzyme": "3.10.3",
@@ -44,5 +44,5 @@
44
44
  "shx": "0.3.3",
45
45
  "typescript": "4.3.5"
46
46
  },
47
- "gitHead": "b36e5fa30e23cd60007e6839b0dab5e41bd410d5"
47
+ "gitHead": "59026ea6af7b81ffb8e8c59e18f43396906ddafb"
48
48
  }
@@ -1,4 +1,4 @@
1
- import { IArtifact, IExpectedArtifact } from '@spinnaker/core';
1
+ import type { IArtifact, IExpectedArtifact } from '@spinnaker/core';
2
2
 
3
3
  import { validateInputArtifacts, validateProducedArtifacts } from './BakeCloudFoundryManifestConfig';
4
4
 
@@ -1,4 +1,5 @@
1
- import { validateServiceBindingRequests, ServiceBindingRequests } from './CloudFoundryCreateServiceBindingsConfig';
1
+ import type { ServiceBindingRequests } from './CloudFoundryCreateServiceBindingsConfig';
2
+ import { validateServiceBindingRequests } from './CloudFoundryCreateServiceBindingsConfig';
2
3
 
3
4
  describe('Cloud Foundry Create Service Bindings Config', () => {
4
5
  describe('validate Service Binding Requests', () => {
@@ -1,9 +1,11 @@
1
- import React from 'react';
2
1
  import { mock } from 'angular';
2
+ import type { IStage } from 'core';
3
+ import { ApplicationModelBuilder, REACT_MODULE, SpinFormik, StageConfigField } from 'core';
3
4
  import { mount } from 'enzyme';
5
+ import React from 'react';
4
6
 
5
7
  import { mockServerGroupDataSourceConfig } from '@spinnaker/mocks';
6
- import { ApplicationModelBuilder, IStage, REACT_MODULE, SpinFormik, StageConfigField } from 'core';
8
+
7
9
  import { CloudFoundryCreateServiceBindingsStageConfigForm } from './CloudFoundryCreateServiceBindingsStageConfigForm';
8
10
 
9
11
  describe('<CloudFoundryCreateServiceBindingsStageConfigForm/>', function () {
@@ -1,9 +1,11 @@
1
- import React from 'react';
2
1
  import { mock } from 'angular';
3
2
  import { mount } from 'enzyme';
3
+ import React from 'react';
4
4
 
5
+ import type { IStage } from '@spinnaker/core';
6
+ import { ApplicationModelBuilder, REACT_MODULE, SpinFormik, StageConfigField } from '@spinnaker/core';
5
7
  import { mockServerGroupDataSourceConfig } from '@spinnaker/mocks';
6
- import { ApplicationModelBuilder, IStage, REACT_MODULE, SpinFormik, StageConfigField } from '@spinnaker/core';
8
+
7
9
  import { CloudFoundryDeleteServiceBindingsStageConfigForm } from './CloudFoundryDeleteServiceBindingsStageConfigForm';
8
10
 
9
11
  describe('<CloudFoundryDeleteServiceBindingsStageConfigForm/>', function () {
@@ -1,17 +1,13 @@
1
- import React from 'react';
2
- import { mock, noop, IScope } from 'angular';
1
+ import type { IScope } from 'angular';
2
+ import { mock, noop } from 'angular';
3
3
  import { mount, shallow } from 'enzyme';
4
+ import React from 'react';
4
5
 
5
- import {
6
- Application,
7
- ApplicationModelBuilder,
8
- ApplicationDataSource,
9
- IMoniker,
10
- IServerGroup,
11
- REACT_MODULE,
12
- } from '@spinnaker/core';
6
+ import type { Application, ApplicationDataSource, IMoniker, IServerGroup } from '@spinnaker/core';
7
+ import { ApplicationModelBuilder, REACT_MODULE } from '@spinnaker/core';
13
8
 
14
- import { AccountRegionClusterSelector, IAccountRegionClusterSelectorProps } from './AccountRegionClusterSelector';
9
+ import type { IAccountRegionClusterSelectorProps } from './AccountRegionClusterSelector';
10
+ import { AccountRegionClusterSelector } from './AccountRegionClusterSelector';
15
11
 
16
12
  describe('<AccountRegionClusterSelector />', () => {
17
13
  let $scope: IScope;