@toptal/davinci-ci 4.0.12-alpha-FX-NULL-extend-schema-generation-66a1c1b8.42 → 4.0.12

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,12 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.0.12
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2097](https://github.com/toptal/davinci/pull/2097) [`519f6b8b`](https://github.com/toptal/davinci/commit/519f6b8b022d71074142f3af1c0129a4f3fe9646) Thanks [@dependabot](https://github.com/apps/dependabot)!
8
+ - update dependency (`@commitlint/cli`)
9
+
3
10
  ## 4.0.11
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-ci",
3
- "version": "4.0.12-alpha-FX-NULL-extend-schema-generation-66a1c1b8.42+66a1c1b8",
3
+ "version": "4.0.12",
4
4
  "description": "Continuos integrations tools for frontend projects",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -36,14 +36,13 @@
36
36
  "url": "https://github.com/toptal/davinci/issues"
37
37
  },
38
38
  "dependencies": {
39
- "@commitlint/cli": "^17.4.0",
39
+ "@commitlint/cli": "^17.6.7",
40
40
  "@commitlint/config-conventional": "^17.1.0",
41
- "@toptal/davinci-cli-shared": "2.3.3-alpha-FX-NULL-extend-schema-generation-66a1c1b8.42+66a1c1b8",
41
+ "@toptal/davinci-cli-shared": "2.3.2",
42
42
  "danger": "^11.2.2",
43
43
  "markdown-table": "^2.0.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@jest/globals": "^29.4.2"
47
- },
48
- "gitHead": "66a1c1b8bc003f5f5010823b28fba42cf9822c04"
47
+ }
49
48
  }
@@ -115,6 +115,9 @@ pipeline {
115
115
  kubectl --namespace "${params.RELEASE}" get pods -o wide
116
116
 
117
117
  kubectl --namespace ${params.RELEASE} get pods --no-headers -o custom-columns=":metadata.name" | while read pod; do
118
+ echo "\nDescribe pod '\$pod'"
119
+ kubectl --namespace ${params.RELEASE} describe pods \$pod
120
+
118
121
  echo "\nFetching log tail for pod '\$pod'"
119
122
  kubectl --namespace ${params.RELEASE} logs \$pod --tail=10
120
123
  done