1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
# Changelog
Notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Kubeclient release versioning follows [SemVer](https://semver.org/).
## 4.13.0 - 2025-10-15
### Added
- [v4.y] Add cgi gem to devel dependencies (#672)
### Changed
- [v4.y] use frozen strings (#668)
- [v4.y] Exclude windows-latest from truffleruby testing (#675)
- [v4.y] Add 3.3 and 3.4 to CI matrix (#671)
### Fixed
- [v4.y] Update k0s certs for CI (#671)
## 4.12.0 - 2024-06-18
### Added
- Add test coverage for Ruby 3.2 (#615)
- Allow a region when getting a signer for Aws::Sts (#507)
- Update the AWS STS endpoint to be regional as the method is now regional (#528)
- Assume role support for aws eks credentials (#630)
### Fixed
- [v4.y] Regenerated expired test TLS certs by running `test/config/update_certs_k0s.rb`.
- [v4.y] Regenerated expired test TLS certs (#611)
- Regenerated expired test TLS certs (#632)
### Changed
- Update actions/checkout (#590)
- chore(deps): update actions/checkout action to v4 (#619)
## 4.11.0 — 2022-12-22
### Removed
- Dropped support for EOL Ruby versions 2.5, 2.6. (#589)
### Added
- Relaxed dependency on `http` gem (used for watches) to allow 5.y.z versions. (#589)
- Specifically, http 5.1.1 may fix issues watching with IPv6. (#585)
## 4.10.1 — 2022-10-01
### Removed
- Dropped debug logging about bearer token options that was added in 4.10.0. (#577)
## 4.10.0 — 2022-08-29
### Added
- When using `:bearer_token_file`, re-read the file on every request. (#566 closed #561)
Kubernetes version 1.21 graduated [BoundServiceAccountTokenVolume feature][] to beta
and enabled it by default, so standard in-cluster auth now uses short-lived tokens.
This changes allows a long-lived `Client` object to keep working when the token file gets
rotated. It's not optimized at all, if you feel the performance overhead, please report!
[BoundServiceAccountTokenVolume feature]: https://github.com/kubernetes/enhancements/issues/542
## 4.9.3 — 2022-03-23
### Fixed
- VULNERABILITY FIX: Previously, whenever kubeconfig did not define custom CA
(normal situation for production clusters with public domain and certificate!),
`Config` was returning ssl_options[:verify_ssl] hard-coded to `VERIFY_NONE` :-(
Assuming you passed those ssl_options to Kubeclient::Client, this means that
instead of checking server's certificate against your system CA store,
it would accept ANY certificate, allowing easy man-in-the middle attacks.
This is especially dangerous with user/password or token credentials
because MITM attacker could simply steal those credentials to the cluster
and do anything you could do on the cluster.
This was broken IN ALL RELEASES MADE BEFORE 2022, ever since
[`Kubeclient::Config` was created](https://github.com/ManageIQ/kubeclient/pull/127/files#diff-32e70f2f6781a9e9c7b83ae5e7eaf5ffd068a05649077fa38f6789e72f3de837R41-R48).
[#554](https://github.com/ManageIQ/kubeclient/issues/554).
- Bug fix: kubeconfig `insecure-skip-tls-verify` field was ignored.
When kubeconfig did define custom CA, `Config` was returning hard-coded `VERIFY_PEER`.
Now we honor it, return `VERIFY_NONE` iff kubeconfig has explicit
`insecure-skip-tls-verify: true`, otherwise `VERIFY_PEER`.
[#555](https://github.com/ManageIQ/kubeclient/issues/555).
- `Config`: fixed parsing of `certificate-authority` file containing concatenation of
several certificates. Previously, server's cert was checked against only first CA cert,
resulting in possible "certificate verify failed" errors.
An important use case is a chain of root & intermediate cert(s) - necessary when cluster's CA
itself is signed by another custom CA.
But also helps when you simply concatenate independent certs. (#461, #552)
- Still broken (#460): inline `certificate-authority-data` is still parsed using `add_cert`
method that handles only one cert.
These don't affect code that supplies `Client` parameters directly,
only code that uses `Config`.
## 4.9.2 — 2021-05-30
### Added
- Ruby 3.0 compatibility (#500, #505).
### Removed
- Reduce .gem size by dropping test/ directory, it's useless at run time (#502).
## 4.9.1 — 2020-08-31
### Fixed
- Now should work with apiserver deployed not at root of domain but a sub-path,
which is standard with Rancher.
Notably, `create_...` methods were sending bad apiVersion and getting 400 error.
(#457, hopefully fixes #318, #418 and https://gitlab.com/gitlab-org/gitlab/-/issues/22043)
## 4.9.0 - 2020-08-03
### Added
- Support for `user: exec` credential plugins using TLS client auth (#453)
## 4.8.0 — 2020-07-03
### Added
- Support for server-side apply (#448).
### Fixed
- Declared forgotten dependency on jsonpath, needed for `gcp` provider with `cmd-path` (#450).
## 4.7.0 — 2020-06-14
### Fixed
- Ruby 2.7 compatibility: bumped minimum recursive-open-struct to one that works on 2.7 (#439).
- Ruby 2.7 warnings (#433, #438).
- Improved watch documentation, including behavior planned to change in 5.0.0 (#436).
### Added
- Google Application Default Credentials: Added `userinfo.email` to requested scopes, which is necessary for RBAC policies (#441).
## 4.6.0 — 2019-12-30
### Fixed
- AmazonEksCredentials was sometimes leaving base64 padding that IAM auth of the EKS cluster rejects. Now padding is always stripped. (#424, #423)
### Added
- Allow calling `watch_foos` methods with a block, simpler to use and guarantees closing the connection. (#425)
- Support `limitBytes` query parameter for `get_pod_log`. (#426)
## 4.5.0 — 2019-09-27
### Added
- Support `:resourceVersion` parameter in `get_foos` methods (similar to existing support in `watch_foos` methods). (#420)
- Relax dependency on `http` gem to allow both 3.x and 4.x. (#413)
## 4.4.0 — 2019-05-03
### Added
- GCP configs with `user[auth-provider][name] == 'gcp'` will execute credential plugin (normally the `gcloud config config-helper` subcommand) when the config specifies it in `cmd-path`, `cmd-args` fields (similar to `exec` support). This code path works without `googleauth` gem. Otherwise, `GoogleApplicationDefaultCredentials` path will be tried as before. (#410)
- `AmazonEksCredentials` helper for obtaining a token to authenticate against Amazon EKS. This is not currently integrated in `Config`, you will need to invoke it yourself. You'll need some aws gems that Kubeclient _does not_ include. (#404, #406)
### Changed
- OpenID Connect tokens which cannot be validaded because we cannot identify the key they were signed with will be considered expired and refreshed as usual. (#407)
## 4.3.0 — 2019-03-03
### Changed
- `GoogleApplicationDefaultCredentials` will now automatically be used by `Config` if the `user[auth-provider][name] == 'gcp'` in the provided context. Note that `user[exec]` is checked first in anticipation of this functionality being added to GCP sometime in the future. Kubeclient _does not_ include the required `googleauth` gem, so you will need to include it in your calling application. (#394)
### Added
- OpenID Connect credentials will automatically be used if the `user[auth-provider][name] == 'oidc'` in the provided context. Note that `user[exec]` is checked first. Kubeclient _does not_ include the required `openid_connect` gem, so you will need to include it in your calling application. (#396)
- Support for `json_patch_#{entity}` and `merge_patch_#{entity}`. `patch_#{entity}` will continue to use strategic merge patch. (#390)
## 4.2.2 — 2019-01-09
### Added
- New `http_max_redirects` option (#374).
### Changed
- Default max redirects for watch increased from 4 to 10, to match other verbs (#374).
## 4.2.1 — 2018-12-26
### Fixed
- For resources that contain dashes in name, there will be an attempt to resolve the method name based on singular name prefix or by replacing the dash in names with underscores (#383).
## 4.2.0 — 2018-12-20
### Added
- Support `user: exec: ...` credential plugins like in Go client (#363, #375).
### Security
- Really made `Kubeclient::Config.new(data, nil)` prevent external file lookups. (#372)
README documented this since 3.1.1 (#334) but alas that was a lie — absolute paths always worked.
Now this also prevents credential plugin execution.
Even in this mode, using config from untrusted sources is not recommended.
This release included all changes up to 4.1.1, but NOT 4.1.2 which was branched off later (4.2.1 does include same fix).
## 4.1.2 — 2018-12-26
### Fixed
- For resources that contain dashes in name, there will be an attempt to resolve the method name based on singular name prefix or by replacing the dash in names with underscores (#382).
## 4.1.1 — 2018-12-17
### Fixed
- Fixed method names for non-suffix plurals such as y -> ies (#377).
## 4.1.0 — 2018-11-28 — REGRESSION
This version broke method names where plural is not just adding a suffix, notably y -> ies (bug #376).
### Fixed
- Support custom resources with lowercase `kind` (#361).
- `create_security_context_constraint` now works (#366).
- `get_security_context_constraints.kind`, `get_endpoints.kind` are now plural as in kubernetes (#366).
### Added
- Add support for retrieving large lists of objects in chunks (#356).
## 4.0.0 — 2018-07-23
### Removed
- Bumped officially supported kubernetes versions to >= 1.3.
- Specifically `proxy_url` no longer works for <= 1.2 (#323).
### Fixed
- `proxy_url` now works for kubernetes 1.10 and later (#323).
### Changed
- Switched `http` gem dependency from 2.y to 3.y (#321).
## 3.1.2 — 2018-06-11
### Fixed
- Fixed `Kubeclient::Config.read` regression, no longer crashes on YAML timestamps (#338).
## 3.1.1 - 2018-06-01 — REGRESSION
In this version `Kubeclient::Config.read` raises Psych::DisallowedClass on legal yaml configs containing a timestamp, for example gcp access-token expiry (bug #337).
### Security
- Changed `Kubeclient::Config.read` to use `YAML.safe_load` (#334).
Previously, could deserialize arbitrary ruby classes. The risk depends on ruby classes available in the application; sometimes a class may have side effects - up to arbitrary code execution - when instantiated and/or built up with `x[key] = value` during YAML parsing.
Despite this fix, using config from untrusted sources is not recommended.
## 3.1.0 - 2018-05-27
### Fixed
- Fixed watch `.finish` sometimes caused `HTTP::ConnectionError` exception from the reading loop (#315).
### Added
- `get_pod_log` now has `timestamps`, `since_time` (#319) and `tail_lines` (#326) params.
- `Kubeclient::Config::Context#namespace` now set, if present in kubeconfig file (#308).
- Improved README directions for authenticating within a kubernetes cluster (#316).
- `Kubeclient::GoogleApplicationDefaultCredentials` helper for Google application default credentials (#213). Needs `googleauth` gem.
- New `as: :parsed` and `as: :parsed_symbolized` formats (#306).
- Allow setting default `as:` format for the whole client (#299, #305).
- Relaxed `recursive-open-struct` dependency to allow 1.1+ as well (#313).
## 3.0.0 - 2018-02-04
### Removed
- Dropped entity classes (`Kubeclient::Pod` etc.), only `Kubeclient::Resource` exists now (#292, #288).
- Ruby 2.0, 2.1 no longer supported (#253, #291).
### Fixed
- Added missing singular `get_security_context_constraint`, fixed `get_security_context_constraints` to mean plural (#261).
- Fixed `@http_proxy_uri` undefined warning (#261).
- Documentation fixes & improvements (#225, #229, #243, #296).
### Added
- `delete_options:` parameter to `delete_*` methods, useful for cascade delete (#267).
- `as: :raw` option for watch (#285).
- Now raises `Kubeclient::HttpError`. Rescuing `KubeException` still works but is deprecated. (#195, #288)
- 404 error raise `Kubeclient::ResourceNotFoundError`, a subclass of `HttpError` (#233).
- Include request info in exception message (#221).
- Ruby 2.4 and 2.5 are now supported & tested (#247, #295).
### Changed
- `Kubeclient::Config#context(nonexistent_context_name)` raises `KeyError` instead of `RuntimeError`.
- `update_*`, `delete_*`, `patch_*` now all return `RecursiveOpenStruct` consistently (#290).
- Many dependencies bumped (#204, #231, #253, #269).
## 2.5.2 - 2018-02-04
- Watch results are now `RecursiveOpenStruct` inside arrays too (#279).
- Fixed watch `.finish` sometimes caused `Errno::EBADF` exception from the reading loop (#280).
- Easing dependency version (#287, #301)
## 2.5.1 - 2017-10-12
No changes since 2.5.0, fixed packaging mistake.
## [2.5.0 - 2017-10-12 was YANKED]
### Added
- `as: raw` option for `get_*` methods returning a string (#262 via #271).
## 2.4.0 - 2017-05-10
|