jay_api 27.1.0

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.
Files changed (74) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +786 -0
  3. data/README.md +61 -0
  4. data/jay_api.gemspec +38 -0
  5. data/lib/jay_api/abstract/connection.rb +50 -0
  6. data/lib/jay_api/abstract/constant_wait.rb +17 -0
  7. data/lib/jay_api/abstract/geometric_wait.rb +35 -0
  8. data/lib/jay_api/abstract/wait_strategy.rb +43 -0
  9. data/lib/jay_api/configuration.rb +115 -0
  10. data/lib/jay_api/elasticsearch/async.rb +72 -0
  11. data/lib/jay_api/elasticsearch/batch_counter.rb +76 -0
  12. data/lib/jay_api/elasticsearch/client.rb +96 -0
  13. data/lib/jay_api/elasticsearch/client_factory.rb +100 -0
  14. data/lib/jay_api/elasticsearch/errors/elasticsearch_error.rb +13 -0
  15. data/lib/jay_api/elasticsearch/errors/end_of_query_results_error.rb +22 -0
  16. data/lib/jay_api/elasticsearch/errors/query_execution_error.rb +15 -0
  17. data/lib/jay_api/elasticsearch/errors/query_execution_failure.rb +17 -0
  18. data/lib/jay_api/elasticsearch/errors/query_execution_timeout.rb +13 -0
  19. data/lib/jay_api/elasticsearch/errors/search_after_error.rb +13 -0
  20. data/lib/jay_api/elasticsearch/index.rb +223 -0
  21. data/lib/jay_api/elasticsearch/query_builder/aggregations/aggregation.rb +66 -0
  22. data/lib/jay_api/elasticsearch/query_builder/aggregations/avg.rb +56 -0
  23. data/lib/jay_api/elasticsearch/query_builder/aggregations/errors/aggregations_error.rb +17 -0
  24. data/lib/jay_api/elasticsearch/query_builder/aggregations/errors.rb +14 -0
  25. data/lib/jay_api/elasticsearch/query_builder/aggregations/filter.rb +67 -0
  26. data/lib/jay_api/elasticsearch/query_builder/aggregations/max.rb +51 -0
  27. data/lib/jay_api/elasticsearch/query_builder/aggregations/scripted_metric.rb +72 -0
  28. data/lib/jay_api/elasticsearch/query_builder/aggregations/sum.rb +57 -0
  29. data/lib/jay_api/elasticsearch/query_builder/aggregations/terms.rb +73 -0
  30. data/lib/jay_api/elasticsearch/query_builder/aggregations/top_hits.rb +49 -0
  31. data/lib/jay_api/elasticsearch/query_builder/aggregations/value_count.rb +50 -0
  32. data/lib/jay_api/elasticsearch/query_builder/aggregations.rb +168 -0
  33. data/lib/jay_api/elasticsearch/query_builder/errors/query_builder_error.rb +16 -0
  34. data/lib/jay_api/elasticsearch/query_builder/query_clauses/bool.rb +179 -0
  35. data/lib/jay_api/elasticsearch/query_builder/query_clauses/exists.rb +33 -0
  36. data/lib/jay_api/elasticsearch/query_builder/query_clauses/match_all.rb +22 -0
  37. data/lib/jay_api/elasticsearch/query_builder/query_clauses/match_clauses.rb +140 -0
  38. data/lib/jay_api/elasticsearch/query_builder/query_clauses/match_none.rb +22 -0
  39. data/lib/jay_api/elasticsearch/query_builder/query_clauses/match_phrase.rb +35 -0
  40. data/lib/jay_api/elasticsearch/query_builder/query_clauses/negator.rb +42 -0
  41. data/lib/jay_api/elasticsearch/query_builder/query_clauses/query_clause.rb +17 -0
  42. data/lib/jay_api/elasticsearch/query_builder/query_clauses/query_string.rb +50 -0
  43. data/lib/jay_api/elasticsearch/query_builder/query_clauses/range.rb +49 -0
  44. data/lib/jay_api/elasticsearch/query_builder/query_clauses/regexp.rb +39 -0
  45. data/lib/jay_api/elasticsearch/query_builder/query_clauses/term.rb +37 -0
  46. data/lib/jay_api/elasticsearch/query_builder/query_clauses/terms.rb +37 -0
  47. data/lib/jay_api/elasticsearch/query_builder/query_clauses/wildcard.rb +37 -0
  48. data/lib/jay_api/elasticsearch/query_builder/query_clauses.rb +163 -0
  49. data/lib/jay_api/elasticsearch/query_builder/script.rb +36 -0
  50. data/lib/jay_api/elasticsearch/query_builder.rb +196 -0
  51. data/lib/jay_api/elasticsearch/query_results.rb +111 -0
  52. data/lib/jay_api/elasticsearch/response.rb +43 -0
  53. data/lib/jay_api/elasticsearch/search_after_results.rb +58 -0
  54. data/lib/jay_api/elasticsearch/tasks.rb +36 -0
  55. data/lib/jay_api/elasticsearch/time.rb +18 -0
  56. data/lib/jay_api/errors/configuration_error.rb +22 -0
  57. data/lib/jay_api/errors/error.rb +8 -0
  58. data/lib/jay_api/git/errors/invalid_repository_error.rb +11 -0
  59. data/lib/jay_api/git/errors/missing_url_error.rb +13 -0
  60. data/lib/jay_api/git/gerrit/gitiles_helper.rb +58 -0
  61. data/lib/jay_api/git/repository.rb +356 -0
  62. data/lib/jay_api/id_builder.rb +52 -0
  63. data/lib/jay_api/mergeables/merge_selector/configuration.rb +29 -0
  64. data/lib/jay_api/mergeables/merge_selector/merger.rb +58 -0
  65. data/lib/jay_api/mergeables/merge_selector.rb +15 -0
  66. data/lib/jay_api/prior_version_fetcher_base.rb +66 -0
  67. data/lib/jay_api/properties_fetcher.rb +196 -0
  68. data/lib/jay_api/rspec/configuration.rb +46 -0
  69. data/lib/jay_api/rspec/git.rb +60 -0
  70. data/lib/jay_api/rspec/test_data_collector.rb +189 -0
  71. data/lib/jay_api/rspec.rb +9 -0
  72. data/lib/jay_api/version.rb +6 -0
  73. data/lib/jay_api.rb +9 -0
  74. metadata +215 -0
data/CHANGELOG.md ADDED
@@ -0,0 +1,786 @@
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](https://keepachangelog.com/en/1.0.0/),
5
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ Please mark backwards incompatible changes with an exclamation mark at the start.
8
+
9
+ ## [Unreleased]
10
+
11
+ ## [27.1.0] - 2025-02-19
12
+
13
+ ### Added
14
+ - The `max` method to the `QueryBuilders::Aggregations` class.
15
+ - Added the `Aggregations::Max` class. To model Elasticsearch's `max`
16
+ aggregation type.
17
+
18
+ ## [27.0.0] - 2025-01-02
19
+
20
+ ### Fixed
21
+ - ! `QueryClauses#merge` no longer produces nested boolean clauses when two
22
+ boolean queries are merged.
23
+
24
+ ### Added
25
+ - The `#negate` and `#negate!` methods to the `QueryClauses` class.
26
+ - The `QueryClauses::Negator` class.
27
+ - The `QueryClauses::MatchNone` class and the corresponding `#match_none` method
28
+ to the `MatchClauses` module. This allows the use of Elasticsearch's
29
+ [match_none](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-all-query.html#query-dsl-match-none-query)
30
+ query to be used with the Query Builder
31
+ - The `QueryClauses::MatchAll` class and the corresponding `#match_all` method
32
+ to the `MatchClauses` module. This allows the use of Elasticsearch's
33
+ [match_all](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-all-query.html)
34
+ query to be used with the Query Builder
35
+ - `#merge` and `#merge!` to the `QueryClauses:Bool` class
36
+
37
+ ## [26.5.0] - 2024-12-06
38
+
39
+ ### Added
40
+ - `Elasticsearch::Index#delete_by_query_async`, a method that asynchronously
41
+ deletes the documents matching a query from the index
42
+ - `JayAPI::Elasticsearch::Async`, a class that provides functionality to
43
+ perform asynchronous operations on an Elasticsearch index
44
+ - `JayAPI::Elasticsearch::Tasks`, a class that represents Elasticsearch tasks
45
+ - Two additional optional parameters: `slices` and `wait_for_completion` to
46
+ `Elasticsearch::Index#delete_by_query`.
47
+ - `QueryBuilder::QueryClauses::MatchClauses#regexp`, a method that adds a
48
+ `JayAPI::Elasticsearch::QueryBuilder::QueryClauses::Regexp` clause to the
49
+ Query Clauses set.
50
+ - `QueryBuilder::QueryClauses::Regexp`, a class that represents a Regexp query
51
+ in Elasticsearch.
52
+
53
+ ## [26.4.0] - 2024-12-03
54
+
55
+ ### Added
56
+ - The `type` parameter to `Elasticsearch::Index`'s `#index` method. The
57
+ parameter can be set to `nil` to avoid the creation of nested documents.
58
+ - The `Aggregations::TopHits` class and the `Aggregations#top_hits` method. They
59
+ make it possible to use Elasticsearch's `top_hits` aggregations.
60
+
61
+ ## [26.3.0] - 2024-09-11
62
+
63
+ ### Added
64
+ - The `clone` method to the `QueryBuilder::Aggregations` class.
65
+
66
+ ### Fixed
67
+ - Merging two `QueryBuilder` instances now preserves nested aggregations.
68
+ - `QueryBuilder::Aggregations::ValueCount` no longer accepts nested aggregations.
69
+ - `QueryBuilder::Aggregations::Sum` no longer accepts nested aggregations.
70
+
71
+ ## [26.2.1] - 2024-09-05
72
+
73
+ ### Fixed
74
+ - `QueryBuilder::Aggregations::Avg` no longer accepts nested aggregations.
75
+ - `Elasticsearch::Client` will no longer retry requests when they fail with
76
+ one of the following errors: `BadRequest`, `Unauthorized`, `Forbidden`,
77
+ `Not Found`, `MethodNotAllowed`, `RequestEntityTooLarge`, `NotImplemented`.
78
+
79
+ ## [26.2.0] - 2024-08-13
80
+
81
+ ### Added
82
+ - The `Aggregations::ValueCount` class and the `Aggregations#value_count`
83
+ method. They make it possible to use Elasticsearch's `value_count`
84
+ aggregations.
85
+
86
+ ## [26.1.0] - 2024-08-12
87
+
88
+ ### Added
89
+ - The `Aggregations::Filter` class and the `Aggregations#filter` method. They
90
+ make it possible to use Elasticsearch's `filter` aggregations.
91
+
92
+ ## [26.0.0] - 2024-08-08
93
+
94
+ ### Changed
95
+ - ! The return value of `Aggregations#to_h`. Instead of returning only the
96
+ aggregations themselves as a `Hash` the method now returns a `Hash` with a
97
+ root `aggs` key under which the actual aggregations are placed.
98
+
99
+ ### Added
100
+ - The `Aggregations::Sum` class and `Aggregations#sum` method. They allow
101
+ Elasticsearch's `sum` aggregation to be used.
102
+ - The `clone` method to the `Aggregation` classes.
103
+ - The `aggs` method to the `Aggregation` classes. This allows Elasticsearch
104
+ aggregations to be nested allowing the creation of composite aggregations.
105
+ - The `none?` method to the `Aggregations` class.
106
+
107
+ ### Removed
108
+ ! The CLI. The Gem no longer offers a CLI. The CLI functionality has been
109
+ moved the `jay_cli` gem. Please install that gem instead.
110
+
111
+ ## [25.0.1] - 2024-07-10
112
+
113
+ ### Fixed
114
+ - An issue in the `PropertiesFetcher` class's `last` and `first` methods which
115
+ produced incorrect results when the `build_number` field resets, for example,
116
+ when build jobs are moved or re-created.
117
+
118
+ ## [25.0.0] - 2024-06-20
119
+
120
+ ### Removed
121
+ - ! The following methods from the `QueryBuilder::Aggregations` class:
122
+ `add`, `clear`, `[]`
123
+
124
+ ### Added
125
+ - The `terms`, `avg` and `scripted_metric` methods to the
126
+ `QueryBuilders::Aggregations` class. These replace the former `add` method.
127
+ - Added the `Aggregations::Avg` class. To model Elasticsearch's `avg`
128
+ aggregation type.
129
+ - Added the `Aggregations::ScriptedMetric` class. To model Elasticsearch's
130
+ `scripted_metric` aggregation type.
131
+ - Added the `Aggregations::Terms` class. To model Elasticsearch's `terms`
132
+ aggregation type.
133
+ - Added the `QueryBuilder::Script` class. The class represents a `script`ed
134
+ element in an Elasticsearch query (can be used with some query clauses and
135
+ aggregations).
136
+
137
+ ## [24.0.0] - 2024-04-29
138
+
139
+ ### Added
140
+ - Added the `merge` method to `QueryBuilder`
141
+ - Added the `merge` method to `Aggregations`
142
+ - Added the `merge` method to `QueryClauses`
143
+ - Added the `clone` method to `QueryClauses`
144
+ - Added the `empty?` method to `QueryClauses`
145
+ - Added the `clone` method to `QueryClauses::Bool`
146
+
147
+ ### Removed
148
+ - ! Removed the `query=` method from `QueryClauses::QueryString`
149
+ - ! Removed the `conditions` method from the `QueryBuilder` class.
150
+
151
+ ## [23.0.1] - 2024-03-12
152
+
153
+ ### Fixed
154
+ - Added a missing `require` of `faraday/error` to `JayAPI::Elasticsearch::Client`
155
+
156
+ ## [23.0.0] - 2024-03-12
157
+
158
+ ### Changed
159
+ - ! The `PriorVersionFetcherBase` class no longer accepts a `cluster_url` and a
160
+ `port` parameter, it now requires an already-initialized
161
+ `JayAPI::Elasticsearch::Client` object.
162
+
163
+ ## [22.2.0] - 2024-02-15
164
+
165
+ ### Added
166
+ - Added the `delete_by_query` method to the `Elasticsearch::Index` class.
167
+ - Added the `QueryClauses::Terms` class and the corresponding `#terms` method to
168
+ the `MatchClauses` module. These allow
169
+ [Elasticsearch's Terms query](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-terms-query.html)
170
+ to be used when making use of the `QueryBuilder` class.
171
+
172
+ ## [22.1.0] - 2023-12-18
173
+
174
+ ### Added
175
+ - Enhanced `ClientFactory#create` with new configurable parameters:
176
+ `max_attempts`, `wait_strategy` and `wait_time`.
177
+
178
+ ## [22.0.0] - 2023-12-15
179
+
180
+ ### Added
181
+ - A `Response` class that wraps around the raw Elasticsearch response Hash
182
+ - A `BatchCounter` class that keeps track of which batch of results the
183
+ QueryResults object is for.
184
+ - A `SearchAfterResults` class that is a QueryResults class but for the
185
+ Elasticsearch 'search_after' query type.
186
+ - Added 'search_after' param to Index#search, as a replacement for Scroll API.
187
+
188
+ ### Removed
189
+ - ! Scroll API feature is removed, because it is deprecated.
190
+
191
+ ## [21.0.2] - 2023-10-10
192
+
193
+ ### Fixed
194
+ - Fixed a `NoMethodError` that was introduced with `activesupport 7.1.0`.
195
+
196
+ ## [21.0.1] - 2023-09-22
197
+
198
+ ### Fixed
199
+ - Add missing double splat operators to the calls for methods with keyword
200
+ arguments. This fixes the `ArgumentError` being raised when running with
201
+ Ruby 3.0+
202
+ - Fixed the `Elasticsearch::ClientFactory` class's type-hint documentation.
203
+
204
+ ## [21.0.0] - 2023-09-14
205
+
206
+ ### Changed
207
+ - ! Changed the `PropertiesFetcher#all` method:
208
+ - The method can now take a block, if a block is given each of the fetched
209
+ documents will be yielded to the given block.
210
+ - If no block is given then an `Enumerator` is returned. Which can be used to
211
+ iterate or access each of the individual elements of the fetched set.
212
+ - The method no longer returns a `QueryResults` object.
213
+
214
+ ## [20.2.0] - 2023-08-09
215
+
216
+ ### Added
217
+ - Added `by_sut_revision` method to `PropertiesFetcher` class. This allows
218
+ build properties to be fetched by specifying the desired 'sut_revision'.
219
+
220
+ ## [20.1.0] - 2023-07-24
221
+
222
+ ### Added
223
+ - Requirements in RSpec tests whose results are being collected with the
224
+ `TestDataCollector` class can now be annotated with either `requirements` or
225
+ `refs`.
226
+
227
+ ## [20.0.1] - 2023-07-03
228
+
229
+ ### Fixed
230
+ - Fixed a set of `ArgumentError`s that were happening during the initialization of the
231
+ `JayAPI::Elasticsearch::Index`.
232
+
233
+ ## [20.0.0] - 2023-06-26
234
+
235
+ ### Added
236
+ - A wrapper class `JayAPI::Elasticsearch::Client` is introduced to wrap over
237
+ `Elasticsearch::Client` class. Its API is the same as the original Client,
238
+ but it will now retry a request a few times if one of the following errors
239
+ are raised:
240
+ * `Elasticsearch::Transport::Transport::ServerError`
241
+ * `Faraday::TimeoutError`
242
+
243
+ ### Changed
244
+ - !The Index class's constructor changed its signature to take an already
245
+ initialized JayAPI::Elasticsearch::Client object, instead of the parameters
246
+ needed to initialize it.
247
+
248
+ ## [19.0.0] - 2023-05-30
249
+
250
+ ### Removed
251
+ - ! Removed the `-b` switch from the J-Unit and C-Dash parsers. The parsers will
252
+ no longer read build properties files.
253
+
254
+ ### Changed
255
+ - ! Changed the J-Unit and C-Dash parsers, they will no longer read environment
256
+ variables from the environment, instead they require the Test Environment to
257
+ be specified in the configuration.
258
+
259
+ ## [18.0.0] - 2023-04-28
260
+
261
+ ### Changed
262
+ - ! Updated `activesupport` from `~> 6` to `~> 7`
263
+ - ! Updated `dredge` from `~> 0` to `~> 2`
264
+
265
+ ## [17.0.0] - 2023-04-25
266
+
267
+ ### Changed
268
+ - ! Set the minimum requirement for Ruby to 2.7.0
269
+
270
+ ## [16.0.1] - 2023-04-18
271
+
272
+ ### Fixed
273
+ - Restricted the version of the `ox` gem to `<= 2.14.14`
274
+
275
+ ## [16.0.0] - 2023-04-18
276
+
277
+ ### Changed
278
+ - ! Changed the `JayAPI::PropertiesFetcher` class. Instead of receiving all the
279
+ parameters to initialize an index internally it now takes an already
280
+ initialized `JayAPI::Elasticsearch::Index` object.
281
+
282
+ ## [15.8.1] - 2023-04-05
283
+
284
+ ### Fixed
285
+ - Fixed a bug in the `Elasticsearch::Index` class which caused the error message
286
+ to be empty when an error occurred during push and the error details were not
287
+ found in the first element of the response body.
288
+
289
+ ## [15.8.0] - 2023-03-30
290
+
291
+ ### Added
292
+ - Added the `json` as subcommand to the CLI's `import` command.
293
+
294
+ ## [15.7.0] - 2023-03-27
295
+
296
+ ### Added
297
+ - The `TestDataCollector` class will now push the remote URL of the repository
298
+ from which the tests are running to Elasticsearch.
299
+
300
+ ## [15.6.0] - 2023-03-24
301
+
302
+ ### Added
303
+ - Added the `TimestampHandler` class for the Parsers.
304
+ - Added the `JSON::Parser` class.
305
+ - Added a `#to_yaml` method to `Configuration`, which allows to print
306
+ the entire configuration in a human readable YAML format.
307
+ - If a search query causes an error, the corrupt query will be logged.
308
+
309
+ ## [15.5.0] - 2023-01-18
310
+
311
+ ### Added
312
+ - Improved the timestamp handling in the JUnit parser. The parser is now capable
313
+ of parsing JUnit files in which the `timestamp` attribute is given in the
314
+ `testsuite` tag, the `testcase` tag or both.
315
+
316
+ ## [15.4.0] - 2022-12-19
317
+
318
+ ### Added
319
+ - Added the possibility to use the `-m` command line switch when importing JUnit
320
+ tests to provide test meta-data. The meta-data is expected to be stored in
321
+ JSON files following ESR Labs's custom format for test meta-data.
322
+
323
+ ## [15.3.0] - 2022-11-29
324
+
325
+ ### Added
326
+ - Added functionality to merge, with specific rules, `JayAPI::Configuration` objects.
327
+
328
+ ## [15.2.1] - 2022-11-04
329
+
330
+ ### Fixed
331
+ - Fixed a bug in the methods `by_build_job` and `by_software_version` in the
332
+ `PropertiesFetcher` class that caused the wrong data to be fetched from
333
+ Elasticsearch for certain queries.
334
+
335
+ ## [15.2.0] - 2022-10-27
336
+
337
+ ### Changed
338
+ - Adapted the JUnit and CDash parsers to make them take the Test Environment
339
+ from the Configuration instead of taking it from a hardcoded set of
340
+ environment variables (backwards compatible).
341
+
342
+ ### Added
343
+ - Added a `deep_to_h` method to the `JayAPI::Configuration` class.
344
+ - Added a `with_indifferent_access` method to the `JayAPI::Configuration` class.
345
+
346
+ ## [15.1.0] - 2022-08-31
347
+
348
+ ### Added
349
+ - Extended the CDash parser implementation to allow it to use the Dredge gem to
350
+ extract meta-data from the source files and attach it to the test results
351
+ before pushing them to Elasticsearch.
352
+
353
+ ### Changed
354
+ - Removed the `jira-ruby` runtime dependency.
355
+
356
+ ## [15.0.0] - 2022-06-23
357
+
358
+ ### Changed
359
+ - Updated activesupport to version 6.x
360
+ - Changed the minimum Ruby version required by the gem to 2.5.0 (because of the
361
+ `activesupport` gem update).
362
+
363
+ ## [14.1.0] - 2022-06-21
364
+
365
+ ### Added
366
+ - Added a public Repository#open_or_clone! method.
367
+ - Added the JayAPI::Git::Repository#remote_url method.
368
+
369
+ ## [14.0.0] - 2022-06-15
370
+
371
+ ### Changed
372
+ - Updated the `elasticsearch` gem to version 7.9.0
373
+ - Changed the minimum Ruby version required by the gem to 2.4.0 (because of the
374
+ `elasticsearch` gem update).
375
+
376
+ ## [13.6.0] - 2022-06-09
377
+
378
+ ### Added
379
+ - Added the `cdash` subcommand to the `import` command that allows to parse
380
+ CDash XML files and import them to Elasticsearch.
381
+
382
+ ## [13.5.0] - 2022-06-07
383
+
384
+ ### Changed
385
+ - Changed the `QueryString` clause to allow the user to omit the `fields`
386
+ parameter.
387
+
388
+ ### Added
389
+ - Added the `Exists` query clause to Elasticsearch's `QueryBuilder`
390
+ - Added the `Term` query clause to Elasticsearch's `QueryBuilder`
391
+ - Added the `Range` query clause to Elasticsearch's `QueryBuilder`
392
+
393
+ ## [13.4.0] - 2022-04-28
394
+
395
+ ### Changed
396
+ - Moved the functions `document`, `each`, and `initialize` to the base
397
+ class `Parsers::Parser` so that both, `CDash::Parser` and `JUnit::Parser`
398
+ can also use them.
399
+ - Changed the attribute `version_array` to `existent_versions` for readability
400
+ purposes for the class `PriorVersionFetcherBase`.
401
+
402
+ ### Added
403
+ - Added a new parser `CDash::Parser` that is able to parse XML files in CDash
404
+ format.
405
+ - Added multiple classes `CDash::TestObject`, `CDash::Testing` that are able
406
+ to parse specific CDash XML tags and extract information from them.
407
+ - Added a class `CDash::TestSuite` that is responsible for collecting
408
+ `CDash::Test` objects and compute various information using those.
409
+
410
+ ## [13.3.0] - 2022-03-30
411
+
412
+ ### Fixed
413
+ - `PriorVesionFetcherBase` used the function `query` from `QueryBuilder` which
414
+ has changed its meaning. Fixed the issue by using `to_query` instead.
415
+
416
+ ### Added
417
+ - Added the `before` method to the `PropertiesFetcher` class.
418
+
419
+ ### Changed
420
+ - Changed the `after` method of the `PropertiesFetcher` class to use `>` instead
421
+ of `>=` when composing the query string (mainly to keep the two methods
422
+ consistent).
423
+
424
+ ### Changed
425
+ - Allows the `after` method from the `PropertiesFetcher` to take `String`s as
426
+ arguments. The string should of course be in format expected by Elasticsearch.
427
+
428
+ ## [13.2.0] - 2022-03-24
429
+
430
+ ### Added
431
+ - Added the `after` method to the `PropertiesFetcher` to fetch only properties
432
+ that were pushed after the given timestamp.
433
+
434
+ ## [13.1.0] - 2022-03-18
435
+
436
+ ### Added
437
+ - Added authentication params to the `Elasticsearch::Index` class constructor.
438
+ It is now possible to specify authentication credentials for the connection to
439
+ the Elasticsearch Clusters. The change is backwards compatible, if the cluster
440
+ has no authentication these parameters can be omitted altogether.
441
+
442
+ ## [13.0.0] - 2022-03-17
443
+
444
+ ### Changed
445
+ - Refactored the `PropertiesFetcher` class to make it more flexible. The Class
446
+ now allows the combination of multiple conditions and allows the caller to
447
+ decide if it wants the first, the last or all the Build Properties records.
448
+
449
+ ### Added
450
+ - Added a new class `PriorVersionFetcherBase` which is responsible for fetching
451
+ the previous software version from the one provided. For that it checks all
452
+ the versions on Jay to return a prior version that actually exists.
453
+ - Added the `MatchPhrase` query clause.
454
+
455
+ ## [12.1.0] - 2022-03-16
456
+
457
+ (yanked)
458
+
459
+ ## [12.0.0] - 2022-02-24
460
+
461
+ ### Changed
462
+ - Changed the name of the file that contains the `PropertiesFetcher` class to
463
+ match the name of the class.
464
+ - Changed the name of the `index` parameter of the `PropertiesFetcher` class's
465
+ constructor to `index_name` to make it consistent with the same parameter in
466
+ the `Elasticsearch::Index` class.
467
+ - Changed the way the `QueryBuilder` for Elasticsearch handles query clauses.
468
+ These are now handled by the `QueryClauses` class, which allows for multiple
469
+ types of query clauses. This also makes the API exposed by the `QueryBuilder`
470
+ class backwards incompatible.
471
+
472
+ ## [11.3.0] - 2022-02-03
473
+
474
+ ### Changed
475
+ - Modified the J-Unit parser to attach the build properties `version_code` and
476
+ `version_name` to each test suite.
477
+
478
+ ## [11.2.0] - 2022-01-20
479
+
480
+ ### Added
481
+ - Added the `--version` switch to the CLI.
482
+
483
+ ## [11.1.0] - 2021-10-29
484
+
485
+ ### Changed
486
+ - Expanded Jay API's J-Unit parser to make it work with the J-Unit files produced
487
+ by Gradle (this requires the build job name and number, the project name and
488
+ the version code to be provided via different means). Environment variables
489
+ and `build.proprties` files are supported for this purpose.
490
+
491
+ ## [11.0.0] - 2021-10-11
492
+
493
+ ### Changed
494
+ - Removed all the `JayAPI::JIRA` modules and tests due to their migration to
495
+ the `JIRATamer` gem.
496
+ - Change the way the `JayAPI::IDBuilder` class generates short IDs for test
497
+ cases. Instead of removing all special characters from the string before
498
+ computing the hash hyphens are now kept. This produces different Short IDs for
499
+ test cases whose names differ only by a minus sign.
500
+
501
+ ## [10.6.0] - 2021-10-07
502
+
503
+ ### Added
504
+ - Functionality to access the Elasticsearch Scroll API. This allows to surpass the
505
+ allowed query limit of data (default 10k docs).
506
+
507
+ ## [10.5.0] - 2021-08-19
508
+
509
+ ### Added
510
+ - Added the Aggregations feature to the Elasticsearch classes. This means:
511
+ - The `QueryBuilder` class can now take aggregations and add them to the
512
+ composed query.
513
+ - The `QueryResults` object is now aware of the possibility that a Query
514
+ result may contain an `aggregations` key and will provide direct access to
515
+ it. (The implementation here is very crude).
516
+ - Added the `Aggregations` class to manipulate aggregations when working with
517
+ a `QueryBuilder`.
518
+
519
+ ## [10.4.0] - 2021-08-13
520
+
521
+ ### Added
522
+ - Added the `PropertiesFetcher` class that is responsible for fetching build
523
+ properties from JAY when provided with proper configuration.
524
+
525
+ ## [10.3.0] - 2021-07-27
526
+
527
+ ### Added
528
+ - Added the `remotes` method to the `JayAPI::Git::Repository` class. The method
529
+ returns the list of Remote Repositories linked to the repository.
530
+ - Added the `GitilesHelper` module. A module with methods to handle Gerrit's
531
+ Gitiles URLs.
532
+
533
+ ## [10.2.1] - 2021-07-02
534
+
535
+ ### Fixed
536
+ - A bug in the `JIRA::CachedIssueBrowser`. When checking for known JIRA issues
537
+ for a specific test case id, it would check whether the string value of the issue
538
+ inside the ticket includes the specified test case id with 'include?' method. This
539
+ would only be the case when they are identical. For a lot of cases, the test case id
540
+ specified in a JIRA ticket is shorter and more general, so that it could encompass
541
+ many different test cases that share a common namespace. In those cases, however,
542
+ the current implementation would discard the relavant jira tickets, because their
543
+ annotated test case ids are shorter than the specified one, and hence could
544
+ not include it.
545
+ - Another issue in `JIRA::CachedIssueBrowser`. The class would split test case ids
546
+ inside a JIRA issue by using a regular expression. This would generate a list, with
547
+ different test case ids. However, sometimes empty elements would show up in the
548
+ list which are now filtered out.
549
+
550
+ ## [10.2.0] - 2021-06-09
551
+
552
+ ### Added
553
+ - Added a 'checkout' method to the JayAPI::Git::Repository class.
554
+
555
+ ## [10.1.0] - 2021-06-08
556
+
557
+ ### Added
558
+ - Added the `JIRA::CachedIssueBrowser` class. This class is a drop-in replacement
559
+ for the standard `JIRA::IssueBrowser` class. The major difference is that this
560
+ class fetches all the issues and builds a local cache with them, then it
561
+ performs a local search on the cache to find the issues related to a given
562
+ Test Case ID.
563
+
564
+ This is needed when a big number of failed test cases are expected. Querying
565
+ JIRA for each failed test case takes a huge amount of time whereas searching
566
+ the local cache is a lot faster, albeit it requires more memory and processing
567
+ power on the machine executing the search.
568
+
569
+ ### Fixed
570
+ - Fixed a bug in the `JIRA::IssueBrowser` class that caused the class to always
571
+ use the field `Testcase_ID` without any regard for the given field name. This
572
+ means that with a different field name issues would be found but never
573
+ returned because they would be discarded by the `filter_issues` method.
574
+
575
+ ## [10.0.0] - 2021-05-04
576
+
577
+ ### Changed
578
+ - Updates the `thor` gem to Version 1.1.0. The changes between `thor` 0.x and
579
+ 1.x do not affect `jay_api` directly as it is already compliant. But other
580
+ gems might need to add the `exit_on_failure?` method to their CLI classes.
581
+ - Documents the possibility of passing `nil` on the `url` parameter of the
582
+ `Repository` class' constructor. Adjusts the class to react correctly under
583
+ such circumstances. Tests were also added to verify the behaviour.
584
+
585
+ ## [9.0.0] - 2021-04-27
586
+
587
+ ### Added
588
+ - Added the `TestDataCollector` class. This class is a Formatter for `RSpec`
589
+ that allows the pushing of test results to Jay's Elasticsearch backend. Its
590
+ main purpose is to push the test results and in particular the annotated
591
+ **requirements** for projects whose tests are running on pure `RSpec` (i.e.
592
+ not inside Elite).
593
+
594
+ ### Changed
595
+ - Moved `rspec` from the development to the runtime dependencies. This is needed
596
+ because RSpec is now being included directly by one of the classes exposed by
597
+ the API.
598
+
599
+ ## [8.2.1] - 2021-04-14
600
+
601
+ ### Fixed
602
+ - Removed the security feature for the ERB evaluation on configuration files.
603
+ This was causing a `SecurityError` to be raised even when the statements
604
+ inside the files were perfectly safe. The feature will be disabled until the
605
+ root cause for the problem can be established and addressed.
606
+
607
+ ## [8.2.0] - 2021-04-12
608
+
609
+ ### Added
610
+ - Allow configuration files to use ERB, this allows (among other things) the use
611
+ of environmental variables inside the configuration files.
612
+
613
+ ## [8.1.0] - 2021-03-01
614
+
615
+ ### Added
616
+ - Add the `configuration_file` and `check_configration` methods to the
617
+ `JayAPI::CLI::Base` class. This methods allows the given configuration file
618
+ to be checked before it is loaded. Only basic checks are performed.
619
+
620
+ ## [8.0.0] - 2021-02-17
621
+
622
+ ### Added
623
+ - Added a `version_clause` method to the `QueryComposer` class. The method
624
+ allows subclasses to add a clause to restrict the query results to a
625
+ particular software version, branch, or in the case of certain OEMs a specific
626
+ cluster.
627
+
628
+ ### Changed
629
+ - `JIRA::IssueBrowser` will now catch `SocketError` as well.
630
+
631
+ ## [7.0.0] - 2021-01-12
632
+
633
+ ### Changed
634
+ - Allows the `IssueBrowser` class to receive a `Hash` of options in addition to
635
+ a `QueryComposer` class. This hash of options is then passed down to the
636
+ given `QueryComposer` class' constructor during initialization.
637
+
638
+ ## [6.0.0] - 2020-12-21
639
+
640
+ ### Changed
641
+ - `Elasticsearch::QueryResults#all` can now be called without a block. In this
642
+ case the method will return an `Enumerator` that can be used to iterate over
643
+ the whole set of documents. An `Enumerator` is also an `Enumerable` so the
644
+ whole spectrum of collection-based Ruby methods will be available.
645
+
646
+ ## [5.3.0] - 2020-12-11
647
+
648
+ ### Added
649
+ - Added a new module to elasticsearch that stores the time format recognized by
650
+ elasticsearch and provides a function that transforms time into this format.
651
+
652
+ ## [5.2.0] - 2020-11-06
653
+
654
+ ### Added
655
+ - Added the `source` method to the `JayAPI::Elasticsearch::QueryBuilder` class to allow
656
+ the user to extract only a subset of the document from Elasticsearch.
657
+
658
+ ## [5.1.0] - 2020-10-30
659
+
660
+ ### Added
661
+ - Added the `branches` method to the `JayAPI::Git::Repository` class to allow
662
+ the user to fetch the list of available branches.
663
+ - Added the `log` method to the `JayAPI::Git::Repository` class to allow the
664
+ user to get the list of commits in the current branch or a given branch.
665
+ - Added the `add_worktree` method to the `JayAPI::Git::Repository` class to
666
+ allow the user to create worktrees out of a repository.
667
+ - Added the `worktrees` method to the `JayAPI::Git::Repository` class to allow
668
+ the user to manipulate worktrees, list them, and remove them.
669
+
670
+ ## [5.0.0] - 2020-10-12
671
+
672
+ ### Changed
673
+ - Changed JIRA's `QueryComposer` class to filter out rejected tickets from the
674
+ results.
675
+
676
+ ## [4.1.0] - 2020-10-02
677
+
678
+ ### Added
679
+ - Added the `object` method to the `JayAPI::Git::Repository` class to allow the
680
+ user to fetch commit information by providing the commit `SHA1` or another Git
681
+ reference (tag, branch, etc).
682
+ - Added the `all` method to the `JayAPI::Elasticsearch::QueryResults` class, the
683
+ method allows the caller to easily iterate over all the records, not only the
684
+ ones in the current `QueryResults` objects but all the available records until
685
+ the whole result set has been traversed.
686
+
687
+ This is a very common task, therefore the code was abstracted to the API.
688
+
689
+ ### Fixed
690
+ - Fixed a bug in the `JayAPI::Elasticsearch::QueryBuilder` class that was
691
+ causing strings to be improperly escaped when building the query. The
692
+ quotation marks don't need to be escaped twice because this is being handled
693
+ by the JSON library when converting the query `Hash` to a JSON string.
694
+
695
+ ## [4.0.0] - 2020-09-15
696
+
697
+ ### Changed
698
+ - Changed the `JayAPI::Configuration` class to allow it to parse Hashes that are
699
+ nested inside arrays.
700
+
701
+ ## [3.0.0] - 2020-09-02
702
+
703
+ ### Added
704
+ - Added the necessary logic to generate the Short ID (`id`) and the Secure ID
705
+ (`id_secure`) for the Imported JUnit Test Cases
706
+
707
+ ### Changed
708
+ - Modifies the JUnit Parser it now receives a `project_name`, it uses it to
709
+ generate the Test Case ID.
710
+
711
+ ## [2.2.0] - 2020-08-09
712
+
713
+ ### Added
714
+ - Added the `collapse` method to the `Elasticsearch::QueryBuilder` class.
715
+ - Added some convenient methods to the `Elasticsearch::QueryResults` class:
716
+ `first`, `last`, `any?`
717
+
718
+ ### Fixed
719
+ - Moved the `empty?` method on the `Elasticsearch::QueryResults` class to the
720
+ delegator.
721
+
722
+ ## [2.1.0] - 2020-08-05
723
+
724
+ ### Added
725
+ - Added the `RequirementsExtractor` class for the JUnit Parser. The Class is
726
+ able to parse the output of the Test Suites and extract the requirements for
727
+ each of the Test Cases from it.
728
+ - Added the `IDBuilder` class to generate Short and Secure IDs for the Test
729
+ Cases.
730
+
731
+ ### Fixed
732
+ - Fixed a dependency issue with the `Ox` gem. The gemspec was requesting the Gem
733
+ on version >= 2.13.2 which was not really required and was causing issues when
734
+ trying to use the `jay_api` Gem inside Elise.
735
+
736
+ ## [2.0.0] - 2020-07-31
737
+
738
+ ### Fixed
739
+ - Fix a bug causing a `NoMethodError` when calling the `next_batch` method in
740
+ the `QueryResults` class. The error was occurring because the `search` method
741
+ in the `Index` class is returning an instance of the `QueryResults` class
742
+ instead of a simple Hash. This change is backwards incompatible because the
743
+ method no longer updates the state of the current instance but returns a
744
+ different instance instead.
745
+
746
+ ## [1.1.0] - 2020-07-23
747
+
748
+ ### Added
749
+ - Added the Import/Parse feature for J-Unit files:
750
+ * CLI for importing J-Unit files.
751
+ * Parsing and importing logic.
752
+
753
+ ### Fixed
754
+ - Locked the version of the elasticsearch gem to be less than `7.6.0` (because
755
+ that version requires Ruby >= 2.4.0)
756
+ - Fixed a bug that caused the Repository class to clone the repositories in the
757
+ wrong location (the name of the repository was being added twice to the path
758
+ because of the way the git gem works).
759
+
760
+ ### Changed
761
+ - Made the second parameter for `JayAPI::Errors::ConfigurationError` optional.
762
+
763
+ ## [1.0.0] - 2020-07-17
764
+
765
+ ### Added
766
+ - Added the Git::Repository class which features methods to perform lazy
767
+ cloning and fetching of git repositories and to update they as needed.
768
+ - Added Unit Tests for the `fetch_ticket` method.
769
+
770
+ ### Changed
771
+ - Changed the `fetch_ticket` method in the `JayAPI::JIRA::IssueBrowser` class to
772
+ raise an error when an invalid JIRA Ticket ID is given.
773
+
774
+ ## [0.2.0] - 2020-06-24
775
+
776
+ ### Added
777
+ - Added the IssueBrowser and QueryComposer classes for JIRA, they provide
778
+ functionality to search for issues by TestCase ID or to fetch an issue by its
779
+ ID.
780
+
781
+ ## [0.1.0] - 2020-06-18
782
+
783
+ ### Added
784
+ - Added the Elasticsearch related classes. They provide access to Elastic
785
+ Search functions and provide an easy interface to query, search and insert
786
+ records into an Elasticsearch Index