conjur-api 5.2.1 → 5.3.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +10 -0
  3. data/.github/CODEOWNERS +10 -0
  4. data/.github/ISSUE_TEMPLATE/bug.md +42 -0
  5. data/.github/ISSUE_TEMPLATE/feature_request.md +27 -0
  6. data/.github/PULL_REQUEST_TEMPLATE.md +21 -0
  7. data/.gitignore +1 -0
  8. data/.gitleaks.toml +219 -0
  9. data/.overcommit.yml +16 -0
  10. data/.rubocop.yml +3 -0
  11. data/.rubocop_settings.yml +86 -0
  12. data/.rubocop_todo.yml +709 -0
  13. data/CHANGELOG.md +358 -177
  14. data/CONTRIBUTING.md +141 -0
  15. data/Gemfile +1 -1
  16. data/Jenkinsfile +27 -29
  17. data/LICENSE +202 -0
  18. data/README.md +19 -126
  19. data/SECURITY.md +42 -0
  20. data/bin/parse-changelog.sh +12 -0
  21. data/ci/codeclimate.dockerfile +6 -0
  22. data/conjur-api.gemspec +4 -1
  23. data/docker-compose.yml +2 -0
  24. data/features/authenticators.feature +33 -0
  25. data/features/host.feature +39 -9
  26. data/features/step_definitions/api_steps.rb +14 -3
  27. data/features/step_definitions/policy_steps.rb +40 -0
  28. data/features/support/env.rb +2 -0
  29. data/features/update_password.feature +2 -2
  30. data/features/user.feature +47 -6
  31. data/features_v4/support/env.rb +2 -0
  32. data/lib/conjur-api/version.rb +2 -2
  33. data/lib/conjur/acts_as_role.rb +15 -19
  34. data/lib/conjur/acts_as_user.rb +5 -1
  35. data/lib/conjur/api.rb +2 -0
  36. data/lib/conjur/api/authenticators.rb +35 -0
  37. data/lib/conjur/api/host_factories.rb +20 -19
  38. data/lib/conjur/{cast.rb → api/ldap_sync.rb} +14 -17
  39. data/lib/conjur/api/resources.rb +17 -21
  40. data/lib/conjur/api/router/v5.rb +39 -7
  41. data/lib/conjur/base.rb +19 -5
  42. data/lib/conjur/base_object.rb +31 -26
  43. data/lib/conjur/build_object.rb +13 -20
  44. data/lib/conjur/cert_utils.rb +14 -0
  45. data/lib/conjur/configuration.rb +1 -7
  46. data/lib/conjur/has_attributes.rb +6 -3
  47. data/lib/conjur/id.rb +22 -19
  48. data/lib/conjur/role_grant.rb +13 -18
  49. data/spec/api/host_factories_spec.rb +34 -0
  50. data/spec/api_spec.rb +55 -6
  51. data/spec/base_object_spec.rb +13 -0
  52. data/spec/cert_utils_spec.rb +92 -0
  53. data/spec/id_spec.rb +29 -0
  54. data/spec/ldap_sync_spec.rb +21 -0
  55. data/spec/spec_helper.rb +3 -0
  56. data/spec/uri_escape_spec.rb +14 -2
  57. data/test.sh +23 -1
  58. metadata +34 -12
  59. data/LICENSE.md +0 -195
  60. data/spec/cast_spec.rb +0 -21
@@ -1,219 +1,400 @@
1
- # Latest
2
-
3
- # v5.2.1
4
-
5
- * Fix `Conjur::BuildObject#build_object` so it only tries to create
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [Unreleased]
8
+
9
+ ## [5.3.4] - 2020-10-29
10
+
11
+ ### Changed
12
+ - When rotating the currently logged in user's/host's API key, we now explictily
13
+ prevent use of `resource(<own_id>).rotate_api_key` for that action as the
14
+ `Conjur::API.rotate_api_key` should be used instead for that. This change is a
15
+ downstream enforcement of the stricter key rotation requirements on the server
16
+ covered by [this](https://github.com/cyberark/conjur/security/advisories/GHSA-qhjf-g9gm-64jq)
17
+ security bulletin.
18
+ [cyberark/conjur-api-ruby#181](https://github.com/cyberark/conjur-api-ruby/issues/181)
19
+
20
+ ## [5.3.3] - 2020-08-18
21
+ ### Changed
22
+ - Release process is updated to ensure that the published Ruby Gem matches a tag in this repository,
23
+ so that consumers of this gem can always reference the correct source code included in any given version.
24
+ [cyberark/conjur-api-ruby#173](https://github.com/cyberark/conjur-api-ruby/issues/173)
25
+
26
+ ## 5.3.2 - 2018-09-24
27
+ ### Added
28
+ - Add `Conjur::API.authenticator_list`, `Conjur::API.authenticator_enable`, and
29
+ ``Conjur::API.authenticator_disable` to inspect and manage authenticator status.
30
+
31
+ ## [5.3.1] - 2018-09-24
32
+ ### Added
33
+ - Updates URI path parameter escaping to consistently encode resource ids
34
+
35
+ ## [5.3.0] - 2018-06-19
36
+ ### Added
37
+ - Add `Conjur::API.ldap_sync_policy` for fetching the LDAP sync policy.
38
+
39
+ ## 5.2.1 - 0000-00-00
40
+ ### Fixed
41
+ - Fix `Conjur::BuildObject#build_object` so it only tries to create
6
42
  instances of objects for classes that inherit from BaseObject.
7
- * require `openssl` before using it.
8
-
9
- # v5.2.0
10
-
11
- * Adds support for the Role endpoint for searching and paging Role Members
12
- * Adds additional escaping to URL parameters on requests to handle special characters (e.g. spaces)
13
-
14
- # v5.1.0
15
-
16
- * Introduces backwards compatibility with Conjur 4.x for most API methods.
17
- * Adds the configuration setting `version`, which is auto-populated from the environment variable `CONJUR_VERSION`.
18
- * Adds support for the `authn-local` service, which can be used when the API client runs on the server.
19
-
20
- # v5.0.0
21
-
22
- * Provides compatibility with [cyberark/conjur](https://github.com/cyberark/conjur), Conjur 5 CE.
23
- * Changed license to Apache 2.0
24
-
25
- # v5.0.0-beta.4
26
-
27
- * Support for batch secret retrieval.
28
-
29
- # v5.0.0-beta.3
30
-
31
- * Removed hard dependency on older version of `rest-client` gem.
32
-
33
- # v5.0.0-beta.1
34
-
35
- * Migrated to be compatible with Conjur 5 API.
36
-
37
- # v4.31.0
38
-
39
- * Internal refactor to improve performance and facilitate caching.
40
-
41
- # v4.30.0
42
-
43
- The following enhancements require Conjur server 4.9.1.0 or later:
44
-
45
- * Supports filter and pagination of role-listing methods.
46
- * Supports non-recursive retrieval of role memberships.
47
- * Supports the +role+ field on `Conjur::RoleGrant`.
48
-
49
- On older server versions, the new options will be ignored by the server.
50
-
51
- # v4.29.2
52
-
53
- * `Conjur::API#resources` now supports `:owner` to retrieve all resources owned (directly or indirectly) by the indicated role. This capability has always been provided by the service, but was not exposed by the Ruby API.
54
-
55
- # v4.29.1
56
-
57
- * `Conjur::API#audit` now supports `:has_annotation` to retrieve audit events for resources annotated with the given name.
58
-
59
- # v4.29.0
60
-
61
- * Add `Conjur::API#new_from_token_file` to create an API instance from a file which contains an access token, which should be periodically updated by another process.
62
-
63
- # v4.28.2
64
43
 
65
- * Make sure certificate file is readable before trying to use it.
66
-
67
- # v4.28.1
68
-
69
- * `Conjur::API#ldap_sync_policy` now returns log events generated when
44
+ ### Added
45
+ - require `openssl` before using it.
46
+
47
+ ## 5.2.0 - 0000-00-00
48
+ ### Added
49
+ - Adds support for the Role endpoint for searching and paging Role Members
50
+ - Adds additional escaping to URL parameters on requests to handle special characters (e.g. spaces)
51
+
52
+ ## [5.1.0] - 2017-12-19
53
+ ### Added
54
+ - Introduces backwards compatibility with Conjur 4.x for most API methods.
55
+ - Adds the configuration setting `version`, which is auto-populated from the environment variable `CONJUR_VERSION`.
56
+ - Adds support for the `authn-local` service, which can be used when the API client runs on the server.
57
+
58
+ ## [5.0.0] - 2017-09-19
59
+ ### Added
60
+ - Provides compatibility with [cyberark/conjur](https://github.com/cyberark/conjur), Conjur 5 CE.
61
+
62
+ ### Changed
63
+ - Changed license to Apache 2.0
64
+ - *5.0.0-beta.4*
65
+ - - Support for batch secret retrieval.
66
+ - *v5.0.0-beta.3*
67
+ - - Removed hard dependency on older version of `rest-client` gem.
68
+ - *v5.0.0-beta.1*
69
+ - - Migrated to be compatible with Conjur 5 API.
70
+
71
+ ## [4.31.0] - 2017-03-27
72
+ ### Added
73
+ - Internal refactor to improve performance and facilitate caching.
74
+
75
+ ## [4.30.0] - 2017-03-07
76
+ ### Added
77
+ - The following enhancements require Conjur server 4.9.1.0 or later:
78
+ - Supports filter and pagination of role-listing methods.
79
+ - Supports non-recursive retrieval of role memberships.
80
+ - Supports the +role+ field on `Conjur::RoleGrant`.
81
+ - On older server versions, the new options will be ignored by the server.
82
+
83
+ ## [4.29.2] - 2017-02-22
84
+ ### Added
85
+ - `Conjur::API#resources` now supports `:owner` to retrieve all resources owned (directly or indirectly) by the indicated role. This capability has always been provided by the service, but was not exposed by the Ruby API.
86
+
87
+ ## 4.29.1 - 0000-00-00
88
+ ### Added
89
+ - `Conjur::API#audit` now supports `:has_annotation` to retrieve audit events for resources annotated with the given name.
90
+
91
+ ## [4.29.0] - 2017-02-01
92
+ ### Added
93
+ - Add `Conjur::API#new_from_token_file` to create an API instance from a file which contains an access token, which should be periodically updated by another process.
94
+
95
+ ## 4.28.2 - 0000-00-00
96
+ ### Added
97
+ - Make sure certificate file is readable before trying to use it.
98
+
99
+ ## [4.28.1] - 2016-11-30
100
+ ### Added
101
+ - `Conjur::API#ldap_sync_policy` now returns log events generated when
70
102
  showing a policy.
71
103
 
72
- # v4.28.0
73
-
74
- * Add `Conjur::API#ldap_sync_policy` to fetch the policy to use to
104
+ ## [4.28.0] - 2016-11-16
105
+ ### Added
106
+ - Add `Conjur::API#ldap_sync_policy` to fetch the policy to use to
75
107
  bring Conjur and the LDAP server into sync.
76
108
 
77
- * Remove `Conjur::API#ldap_sync_now` and `Conjur::API#ldap_sync_jobs`
78
-
79
- # v4.27.0
109
+ ### Removed
110
+ - Remove `Conjur::API#ldap_sync_now` and `Conjur::API#ldap_sync_jobs`
80
111
 
81
- * Add `Conjur::API#resources_permitted?"
82
-
83
- * `Conjur::API#ldap_sync_now` now accepts an options Hash which will
112
+ ## 4.27.0 - 0000-00-00
113
+ ### Added
114
+ - Add `Conjur::API#resources_permitted?"
115
+ - `Conjur::API#ldap_sync_now` now accepts an options Hash which will
84
116
  be passed on to the `/sync` entrypoint. The old argument list is
85
117
  maintained for backwards compatibility.
86
-
87
- * `Conjur::Api#resources` now supports `:has_annotation` for
118
+ - `Conjur::Api#resources` now supports `:has_annotation` for
88
119
  retrieving Conjur resources that have an annotation with the given
89
120
  name.
90
121
 
91
- # v4.26.0
92
-
93
- * expose admin_option in the role graph (only populated by Conjur 4.8 and later)
122
+ ## [4.26.0] - 2016-07-01
123
+ ### Added
124
+ - expose admin_option in the role graph (only populated by Conjur 4.8 and later)
94
125
 
95
- # v4.25.1
96
-
97
- * Fix token refresh when using `with_privilege`, `with_audit_roles`,
126
+ ## [4.25.1] - 2016-06-22
127
+ ### Fixed
128
+ - Fix token refresh when using `with_privilege`, `with_audit_roles`,
98
129
  and `with_audit_resources`.
99
130
 
100
- # v4.25.0
101
-
102
- * Add a workaround for a bug in Conjur <4.7 where long-running operations
131
+ ## [4.25.0] - 2016-06-17
132
+ ### Added
133
+ - Add a workaround for a bug in Conjur <4.7 where long-running operations
103
134
  (such as policy load) would sometimes fail with 404 after five minutes.
104
135
 
105
- # v4.24.1
106
-
107
- * Clarify the handling of the dry-run argument to `Conjur::API#ldap_sync_now`.
136
+ ## [4.24.1] - 2016-06-10
137
+ ### Changed
138
+ - Clarify the handling of the dry-run argument to `Conjur::API#ldap_sync_now`.
108
139
 
109
- # v4.24.0
140
+ ## [4.24.0] - 2016-05-24
141
+ ### Added
142
+ - Add `Conjur::API#ldap_sync_now` (requires Conjur 4.7 or later).
143
+ - Don't trust the system clock and don't check token validity. Rely on the server to verify the token instead, and only try to refresh if enough time has passed locally (using monotonic clock for reference where available).
144
+ - Don't try refreshing the token if the required credentials are not available.
110
145
 
111
- * Add `Conjur::API#ldap_sync_now` (requires Conjur 4.7 or later).
112
- * Don't trust the system clock and don't check token validity. Rely on the
113
- server to verify the token instead, and only try to refresh if enough time
114
- has passed locally (using monotonic clock for reference where available).
115
- * Don't try refreshing the token if the required credentials are not available.
116
-
117
- # v4.23.0
118
-
119
- * Add `with_audit_roles` and `with_audit_resources` to `Conjur::API`
146
+ ## [4.23.0] - 2016-04-22
147
+ ### Added
148
+ - Add `with_audit_roles` and `with_audit_resources` to `Conjur::API`
120
149
  to add additional roles and resources to audit records generated by
121
150
  requests
122
151
 
123
- * Fix encoding of spaces in some urls.
124
-
125
- # v4.22.1
152
+ ### Fixed
153
+ - Fix encoding of spaces in some urls.
126
154
 
127
- * `bootstrap` creates host and webservice `conjur/expiration`.
155
+ ## [4.22.1] - 2016-04-13
156
+ ### Added
157
+ - `bootstrap` creates host and webservice `conjur/expiration`.
128
158
 
129
- # v4.22.0
130
-
131
- * Add `show_expired` argument to `Conjur::Variable#value` to allow
159
+ ## [4.22.0] - 2016-03-08
160
+ ### Added
161
+ - Add `show_expired` argument to `Conjur::Variable#value` to allow
132
162
  retrieval of values of expired variables.
133
- * Properly assign ownership of bootstrap-created webservice resources to the `security_admin` group.
134
-
135
- # v4.21.0
136
-
137
- * Add extensible Bootstrap commands as API methods.
138
- * `bootstrap` grants `reveal` and `elevate` to the `security_admin` group.
139
- * `bootstrap` creates `webservice:authn-tv`.
140
- * `bootstrap` creates an `auditors` group and gives `reveal` privilege to it.
141
-
142
- # v4.20.1
143
-
144
- * BUGFIX: Better handling for unicode and special characters in user ids.
145
-
146
- # v4.20.0
147
-
148
- * Add support for Host Factory functionality (replaces conjur-asset-host-factory plugin).
149
- * Add support for sending audit events (replaces conjur-asset-audit-send plugin).
150
- * Add support for variable expiration. Variable expiration is available in version 4.6 of the Conjur server.
151
- * Add `Conjur::API` methods to querying service versions : `service_version`, `service_names`, `appliance_info`.
152
- * Add `Conjur::API` method for querying server health: `appliance_health(remote_host=nil)`
153
- * Support ISO8601 duration strings as arguments in variable expiration methods.
154
- * Add support for CIDR restrictions
155
-
156
- # v4.19.1
157
-
158
- * BUGFIX: Allow Configuration to parse several certs in a string
159
-
160
- # v4.19.0
161
-
162
- * Rename `sudo` to `elevate` throughout the spec and docstrings. This is an incompatible change, but it
163
- occurs before the Conjur 4.5 server that implements `elevate` is released.
164
-
165
- # v4.18.0
166
-
167
- * Add method `global_privilege_permitted?` to facilitate working with Conjur 4.5 global privileges.
163
+ - Properly assign ownership of bootstrap-created webservice resources to the `security_admin` group.
164
+
165
+ ## [4.21.0] - 2016-03-02
166
+ ### Added
167
+ - Add extensible Bootstrap commands as API methods.
168
+ - `bootstrap` grants `reveal` and `elevate` to the `security_admin` group.
169
+ - `bootstrap` creates `webservice:authn-tv`.
170
+ - `bootstrap` creates an `auditors` group and gives `reveal` privilege to it.
171
+
172
+ ## [4.20.1] - 2016-02-18
173
+ ### Fixed
174
+ - BUGFIX: Better handling for unicode and special characters in user ids.
175
+
176
+ ## [4.20.0] - 2016-02-05
177
+ ### Added
178
+ - Add support for Host Factory functionality (replaces conjur-asset-host-factory plugin).
179
+ - Add support for sending audit events (replaces conjur-asset-audit-send plugin).
180
+ - Add support for variable expiration. Variable expiration is available in version 4.6 of the Conjur server.
181
+ - Add `Conjur::API` methods to querying service versions : `service_version`, `service_names`, `appliance_info`.
182
+ - Add `Conjur::API` method for querying server health: `appliance_health(remote_host=nil)`
183
+ - Support ISO8601 duration strings as arguments in variable expiration methods.
184
+ - Add support for CIDR restrictions
185
+
186
+ ## 4.19.1 - 0000-00-00
187
+ ### Fixed
188
+ - BUGFIX: Allow Configuration to parse several certs in a string
189
+
190
+ ## [4.19.0] - 2015-08-28
191
+ ### Changed
192
+ - Rename `sudo` to `elevate` throughout the spec and docstrings. This is an incompatible change, but it occurs before the Conjur 4.5 server that implements `elevate` is released.
193
+
194
+ ## 4.18.0 - 0000-00-00
195
+ ### Added
196
+ - Add method `global_privilege_permitted?` to facilitate working with Conjur 4.5 global privileges.
168
197
 
169
- # v4.17.0
198
+ ## 4.17.0 - 0000-00-00
199
+ ### Added
200
+ - Add handling for `X-Forwarded-For` and `X-Conjur-Privilege` ("conjur sudo")
201
+ - Transform embedded whitespace in certificate string into newlines
170
202
 
171
- * Add handling for `X-Forwarded-For` and `X-Conjur-Privilege` ("conjur sudo")
172
- * Transform embedded whitespace in certificate string into newlines
203
+ ## [4.16.0] - 2015-04-28
204
+ ### Added
205
+ - Add ssl_certificate option to allow certs to be provided as strings (helpful in heroku)
206
+ - Add `Conjur::Configuration#apply_cert_config!` method to add certs from `#cert_file` and `#ssl_certificate` to the default cert store.
173
207
 
174
- # v4.16.0
175
- * Add ssl_certificate option to allow certs to be provided as strings (helpful in heroku)
176
- * Add `Conjur::Configuration#apply_cert_config!` method to add certs from `#cert_file` and `#ssl_certificate`
177
- to the default cert store.
178
- # v4.15.0
179
- * Extensive documentation improvements
180
- * A few additional methoods, for example `Conjur::API#public_key_names`.
208
+ ## [4.15.0] - 2015-04-23
209
+ ### Added
210
+ - Extensive documentation improvements
211
+ - A few additional methoods, for example `Conjur::API#public_key_names`.
181
212
 
182
- # v4.14.0
213
+ ## [4.14.0] - 2015-03-26
214
+ ### Added
215
+ - Bump rest-client version, remove the troublesome mime-types patch
216
+ - Make sure SSL certificate verification is enabled
217
+ - Bugfix: Don't escape ids twice when listing records
218
+ - Add a stub so that require 'conjur-api' works
219
+ - Lots of doc updates
183
220
 
184
- * Bump rest-client version, remove the troublesome mime-types patch
185
- * Make sure SSL certificate verification is enabled
186
- * Bugfix: Don't escape ids twice when listing records
187
- * Add a stub so that require 'conjur-api' works
188
- * Lots of doc updates
221
+ ## [4.13.0] - 2015-02-11
222
+ ### Added
223
+ - Add GID handling utilities
189
224
 
190
- # v4.13.0
225
+ ## [4.12.0] - 2015-01-27
226
+ ### Added
227
+ - Add the API method `role_graph` for retrieving role relationships in bulk
191
228
 
192
- * Add GID handling utilities
229
+ ## 4.11.2 - 0000-00-00
230
+ ### Added
231
+ - Patch rest-client's patch of mime-types to support lazy loading
193
232
 
194
- # v4.12.0
233
+ ### Removed
234
+ - Remove 'wrong' dependency for faster loading
195
235
 
196
- * Add the API method `role_graph` for retrieving role relationships in bulk
236
+ ## 4.11.0 - 0000-00-00
237
+ ### Fixed
238
+ - Fixed bug retrieving `Variable#version_count`
239
+ - Include CONJUR_ENV in `Conjur.configuration`
197
240
 
198
- # v4.11.2
241
+ ### Added
242
+ - Add `cert_file` option to `Conjur.configuration`
199
243
 
200
- * Patch rest-client's patch of mime-types to support lazy loading
201
- * Remove 'wrong' dependency for faster loading
244
+ ## [4.10.2] - 2014-09-22
245
+ ### Added
246
+ - Authn token is refetched before the expiration
247
+ - Support for configuration `sticky` option is discarded
248
+ - Resource#exists? refactored -- no overloading, code from exists.rb used
249
+ - Tests use Rspec v3 and reset configuration between test cases
202
250
 
203
- # v4.11.0
251
+ ## [4.10.1] - 2014-09-04
252
+ ### Added
253
+ - Resource#exists? returns true if access to resource is forbidden
254
+ - Thread-local configuration for working with different endpoints
204
255
 
205
- * Fixed bug retrieving `Variable#version_count`
206
- * Include CONJUR_ENV in `Conjur.configuration`
207
- * Add `cert_file` option to `Conjur.configuration`
256
+ ## [4.10.0] - 2014-08-15
257
+ ### Added
258
+ - User#update
259
+ - Added Users#find_users
208
260
 
261
+ ## [4.9.2] - 2014-08-05
262
+ ### Changed
263
+ - Always construct Heroku service names that are valid Heroku names
264
+ - authz resource#exists? anticipates a result of 403 Forbidden, and interprets this as true
265
+ - Provide a method to detect whether each configuration setting has been explicitly set via the environment
209
266
 
210
- # v.4.10.2
211
- * Authn token is refetched before the expiration
212
- * Support for configuration `sticky` option is discarded
213
- * Resource#exists? refactored -- no overloading, code from exists.rb used
214
- * Tests use Rspec v3 and reset configuration between test cases
267
+ ## [4.9.1] - 2014-07-17
268
+ ### Changed
269
+ - Require rest-client gem version 1.6.7, as version 1.7 has bugs in SSL certificate trust options
215
270
 
271
+ ## [4.9.0] - 2014-06-06
272
+ ### Changed
273
+ - Layer and Pubkeys are now part of the core API
216
274
 
217
- # v.4.10.1
218
- * Resource#exists? returns true if access to resource is forbidden
219
- * Thread-local configuration for working with different endpoints
275
+ ## [4.8.0] - 2014-05-23
276
+ ### Added
277
+ - Variable#variable_values, batch fetching of variables to support the new conjur env command
278
+
279
+ ## [4.7.2] - 2014-03-18
280
+
281
+ ## [4.7.1] - 2014-03-13
282
+
283
+ ## [4.6.1] - 2014-02-28
284
+
285
+ ## [4.6.0] - 2014-01-11
286
+
287
+ ## [4.4.1] - 2013-12-23
288
+
289
+ ## [4.4.0] - 2013-12-23
290
+
291
+ ## [4.3.0] - 2013-11-19
292
+
293
+ ## [4.1.1] - 2013-10-24
294
+
295
+ ## [2.7.1] - 2013-10-24
296
+
297
+ ## [4.0.0] - 2013-10-17
298
+
299
+ ## [2.5.1] - 2013-07-26
300
+
301
+ ## [2.4.0] - 2013-06-05
302
+
303
+ ## [2.3.1] - 2013-06-03
304
+
305
+ ## [2.2.3] - 2013-05-31
306
+
307
+ ## [2.2.2] - 2013-05-23
308
+
309
+ ## [2.2.1] - 2013-05-20
310
+
311
+ ## [2.2.0] - 2013-05-16
312
+
313
+ ## [2.1.8] - 2013-05-15
314
+
315
+ ## [2.1.7] - 2013-05-10
316
+
317
+ ## [2.1.6] - 2013-04-30
318
+
319
+ ## [2.1.5] - 2013-04-24
320
+
321
+ ## [2.1.4] - 2013-04-24
322
+
323
+ ## [2.1.3] - 2013-04-12
324
+
325
+ ## [2.1.2] - 2013-04-12
326
+
327
+ ## [2.1.1] - 2013-03-29
328
+
329
+ ## [2.1.0] - 2013-03-25
330
+
331
+ ## [2.0.1] - 2013-03-14
332
+
333
+ ## [2.0.0] - 2013-13-12
334
+
335
+ [Unreleased]: https://github.com/cyberark/conjur-api-ruby/compare/v5.3.4...HEAD
336
+ [5.3.4]: https://github.com/cyberark/conjur-api-ruby/compare/v5.3.3...v5.3.4
337
+ [5.3.3]: https://github.com/cyberark/conjur-api-ruby/compare/v5.3.1...v5.3.3
338
+ [5.3.1]: https://github.com/cyberark/conjur-api-ruby/compare/v5.3.0...v5.3.1
339
+ [5.3.0]: https://github.com/cyberark/conjur-api-ruby/compare/v5.1.0...v5.3.0
340
+ [5.1.0]: https://github.com/cyberark/conjur-api-ruby/compare/v5.0.0...v5.1.0
341
+ [5.0.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.31.0...v5.0.0
342
+ [4.31.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.30.0...v4.31.0
343
+ [4.30.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.29.2...v4.30.0
344
+ [4.29.2]: https://github.com/cyberark/conjur-api-ruby/compare/v4.29.0...v4.29.2
345
+ [4.29.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.28.1...v4.29.0
346
+ [4.28.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.28.0...v4.28.1
347
+ [4.28.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.26.0...v4.28.0
348
+ [4.26.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.25.1...v4.26.0
349
+ [4.25.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.25.0...v4.25.1
350
+ [4.25.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.24.1...v4.25.0
351
+ [4.24.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.24.0...v4.24.1
352
+ [4.24.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.23.0...v4.24.0
353
+ [4.23.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.22.1...v4.23.0
354
+ [4.22.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.22.0...v4.22.1
355
+ [4.22.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.21.0...v4.22.0
356
+ [4.21.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.20.1...v4.21.0
357
+ [4.20.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.20.0...v4.20.1
358
+ [4.20.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.19.1...v4.20.0
359
+ [4.19.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.19.0...v4.19.1
360
+ [4.19.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.16.0...v4.19.0
361
+ [4.16.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.15.0...v4.16.0
362
+ [4.15.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.14.0...v4.15.0
363
+ [4.14.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.13.0...v4.14.0
364
+ [4.13.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.12.0...v4.13.0
365
+ [4.12.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.10.2...v4.12.0
366
+ [4.10.2]: https://github.com/cyberark/conjur-api-ruby/compare/v4.10.1...v4.10.2
367
+ [4.10.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.10.0...v4.10.1
368
+ [4.10.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.9.2...v4.10.0
369
+ [4.9.2]: https://github.com/cyberark/conjur-api-ruby/compare/v4.9.1...v4.9.2
370
+ [4.9.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.9.0...v4.9.1
371
+ [4.9.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.8.0...v4.9.0
372
+ [4.8.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.7.2...v4.8.0
373
+ [4.7.2]: https://github.com/cyberark/conjur-api-ruby/compare/v4.7.1...v4.7.2
374
+ [4.7.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.6.1...v4.7.1
375
+ [4.6.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.6.0...v4.6.1
376
+ [4.6.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.4.1...v4.6.0
377
+ [4.4.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.4.0...v4.4.1
378
+ [4.4.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.3.0...v4.4.0
379
+ [4.3.0]: https://github.com/cyberark/conjur-api-ruby/compare/v4.1.1...v4.3.0
380
+ [4.1.1]: https://github.com/cyberark/conjur-api-ruby/compare/v2.7.1...v4.1.1
381
+ [2.7.1]: https://github.com/cyberark/conjur-api-ruby/compare/v4.0.0...v2.7.1
382
+ [4.0.0]: https://github.com/cyberark/conjur-api-ruby/compare/v2.5.1...v4.0.0
383
+ [2.5.1]: https://github.com/cyberark/conjur-api-ruby/compare/v2.4.0...v2.5.1
384
+ [2.4.0]: https://github.com/cyberark/conjur-api-ruby/compare/v2.3.1...v2.4.0
385
+ [2.3.1]: https://github.com/cyberark/conjur-api-ruby/compare/v2.2.3...v2.3.1
386
+ [2.2.3]: https://github.com/cyberark/conjur-api-ruby/compare/v2.2.2...v2.2.3
387
+ [2.2.2]: https://github.com/cyberark/conjur-api-ruby/compare/v2.2.1...v2.2.2
388
+ [2.2.1]: https://github.com/cyberark/conjur-api-ruby/compare/v2.2.0...v2.2.1
389
+ [2.2.0]: https://github.com/cyberark/conjur-api-ruby/compare/v2.1.8...v2.2.0
390
+ [2.1.8]: https://github.com/cyberark/conjur-api-ruby/compare/v2.1.7...v2.1.8
391
+ [2.1.7]: https://github.com/cyberark/conjur-api-ruby/compare/v2.1.6...v2.1.7
392
+ [2.1.6]: https://github.com/cyberark/conjur-api-ruby/compare/v2.1.5...v2.1.6
393
+ [2.1.5]: https://github.com/cyberark/conjur-api-ruby/compare/v2.1.4...v2.1.5
394
+ [2.1.4]: https://github.com/cyberark/conjur-api-ruby/compare/v2.1.3...v2.1.4
395
+ [2.1.3]: https://github.com/cyberark/conjur-api-ruby/compare/v2.1.2...v2.1.3
396
+ [2.1.2]: https://github.com/cyberark/conjur-api-ruby/compare/v2.1.1...v2.1.2
397
+ [2.1.1]: https://github.com/cyberark/conjur-api-ruby/compare/v2.1.0...v2.1.1
398
+ [2.1.0]: https://github.com/cyberark/conjur-api-ruby/compare/v2.0.1...v2.1.0
399
+ [2.0.1]: https://github.com/cyberark/conjur-api-ruby/compare/v2.0.0...v2.0.1
400
+ [2.0.0]: https://github.com/cyberark/conjur-api-ruby/releases/tag/v2.0.0