@spinnaker/scripts 0.3.1 → 0.4.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,17 @@
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.4.0](https://github.com/spinnaker/deck/compare/@spinnaker/scripts@0.3.1...@spinnaker/scripts@0.4.0) (2023-12-07)
7
+
8
+
9
+ ### Features
10
+
11
+ * Expose spinnaker/kayenta to the plugin framework to allow us to create kayenta plugins in Deck ([#10072](https://github.com/spinnaker/deck/issues/10072)) ([dbf0574](https://github.com/spinnaker/deck/commit/dbf0574176cbbca781d970c64dfe49f6911ef8b8))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.3.1](https://github.com/spinnaker/deck/compare/@spinnaker/scripts@0.3.0...@spinnaker/scripts@0.3.1) (2023-10-16)
7
18
 
8
19
 
@@ -15,7 +15,9 @@ module.exports = {
15
15
  function spinnakerSharedLibraries() {
16
16
  // Updates here should also be added in core/src/plugins/sharedLibraries.ts
17
17
  const libraries = [
18
+ 'ajv',
18
19
  '@spinnaker/core',
20
+ '@spinnaker/kayenta',
19
21
  '@uirouter/core',
20
22
  '@uirouter/react',
21
23
  '@uirouter/rx',
@@ -23,6 +25,9 @@ function spinnakerSharedLibraries() {
23
25
  'prop-types',
24
26
  'react',
25
27
  'react-dom',
28
+ 'react-redux',
29
+ 'redux-actions',
30
+ 'reselect',
26
31
  'rxjs',
27
32
  'rxjs/Observable',
28
33
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spinnaker/scripts",
3
- "version": "0.3.1",
3
+ "version": "0.4.0",
4
4
  "description": "Spinnaker scripts",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -45,5 +45,5 @@
45
45
  "devDependencies": {
46
46
  "@types/yargs": "^17.0.3"
47
47
  },
48
- "gitHead": "217b75396c5ec25d9b2019a849593b0b8d52e916"
48
+ "gitHead": "20d6ca89f39a5f44a802a1ccaffd669587450d76"
49
49
  }