conjur-api 5.2.0 → 5.3.3

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