kubernetes-client
Advanced tools
Comparing version 6.8.1 to 6.8.2
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="6.8.2"></a> | ||
## [6.8.2](https://github.com/godaddy/kubernetes-client/compare/6.8.1...6.8.2) (2019-01-28) | ||
### Bug Fixes | ||
* **typings:** remove `.loadSpec()` from declarations ([#406](https://github.com/godaddy/kubernetes-client/issues/406)) ([b17a0a9](https://github.com/godaddy/kubernetes-client/commit/b17a0a9)) | ||
<a name="6.8.1"></a> | ||
@@ -7,0 +17,0 @@ ## [6.8.1](https://github.com/godaddy/kubernetes-client/compare/6.7.1...6.8.1) (2019-01-12) |
@@ -49,3 +49,4 @@ 'use strict' | ||
const excludeFromAliasing = { | ||
apis: true | ||
apis: true, | ||
status: true | ||
} | ||
@@ -52,0 +53,0 @@ |
{ | ||
"name": "kubernetes-client", | ||
"version": "6.8.1", | ||
"version": "6.8.2", | ||
"description": "Simplified Kubernetes API client.", | ||
@@ -14,3 +14,4 @@ "main": "lib/index.js", | ||
"release": "standard-version --tag-prefix=''", | ||
"test": "standard && mocha 'lib/**/*.test.js' && npm run test-typings", | ||
"test": "standard && mocha 'lib/**/*.test.js' && npm run test-typings && npm run test-generated", | ||
"test-generated": "scripts/test-generated.sh", | ||
"test-typings": "tsc --project ./typings" | ||
@@ -17,0 +18,0 @@ }, |
@@ -114,10 +114,4 @@ import * as Api from 'kubernetes-client'; | ||
async function main3() { | ||
const client = new Client({ config: config.fromKubeconfig() }); | ||
await client.loadSpec(); | ||
} | ||
main0(); | ||
main1(); | ||
main2(); | ||
main3(); |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
837799
6730