id int64 0 10.2k | text_id stringlengths 17 67 | repo_owner stringclasses 232
values | repo_name stringclasses 295
values | issue_url stringlengths 39 89 | pull_url stringlengths 37 87 | comment_url stringlengths 37 94 | links_count int64 1 2 | link_keyword stringclasses 12
values | issue_title stringlengths 7 197 | issue_body stringlengths 45 21.3k | base_sha stringlengths 40 40 | head_sha stringlengths 40 40 | diff_url stringlengths 120 170 | diff stringlengths 478 132k | changed_files stringlengths 47 2.6k | changed_files_exts stringclasses 22
values | changed_files_count int64 1 22 | java_changed_files_count int64 1 22 | kt_changed_files_count int64 0 0 | py_changed_files_count int64 0 0 | code_changed_files_count int64 1 22 | repo_symbols_count int64 32.6k 242M | repo_tokens_count int64 6.59k 49.2M | repo_lines_count int64 992 6.2M | repo_files_without_tests_count int64 12 28.1k | changed_symbols_count int64 0 36.1k | changed_tokens_count int64 0 6.5k | changed_lines_count int64 0 561 | changed_files_without_tests_count int64 1 17 | issue_symbols_count int64 45 21.3k | issue_words_count int64 2 1.39k | issue_tokens_count int64 13 4.47k | issue_lines_count int64 1 325 | issue_links_count int64 0 19 | issue_code_blocks_count int64 0 31 | pull_create_at timestamp[s] | repo_stars int64 10 44.3k | repo_language stringclasses 8
values | repo_languages stringclasses 296
values | repo_license stringclasses 2
values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2,091 | smallrye/smallrye-graphql/507/506 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/506 | https://github.com/smallrye/smallrye-graphql/pull/507 | https://github.com/smallrye/smallrye-graphql/pull/507 | 1 | fix | Handling of LocalDateTime (and probably others) | As specified [here](https://download.eclipse.org/microprofile/microprofile-graphql-1.0.3/microprofile-graphql.html#scalars), the server generates, i.e. a `scalar DateTime` in the schema for a `LocalDateTime` parameter:
```
type Query {
hello(
"ISO-8601"
ping: DateTime
): String
}
"Scalar for Dat... | 4b04398363fe4e16ea2b23906f98f9772ef24344 | b8c9adce51fa0ee34430c2e93a2e84c87227e15a | https://github.com/smallrye/smallrye-graphql/compare/4b04398363fe4e16ea2b23906f98f9772ef24344...b8c9adce51fa0ee34430c2e93a2e84c87227e15a | diff --git a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/reflection/ParameterInfo.java b/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/reflection/ParameterInfo.java
index a554a679..6a1ddf9a 100644
--- a/client/implementation/src/main/java/io/smallrye/graph... | ['client/implementation/src/test/java/test/unit/ScalarBehavior.java', 'client/implementation/src/test/java/test/unit/ParametersBehavior.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/reflection/ParameterInfo.java'] | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 573,347 | 112,600 | 16,407 | 196 | 1,357 | 242 | 41 | 1 | 409 | 44 | 103 | 15 | 1 | 1 | 1970-01-01T00:26:44 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,087 | smallrye/smallrye-graphql/950/946 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/946 | https://github.com/smallrye/smallrye-graphql/pull/950 | https://github.com/smallrye/smallrye-graphql/pull/950 | 1 | fix | Typesafe Client: JsonException when a GraphQL error has a path that is actually `null` | ```json
{
"errors": [
{
"message": "some error message",
"locations": [{"line": 1, "column": 256}],
"path": ["foo", "bar", "baz"],
}
],
"data": {
"foo": [
{
"bar": null,
}
]
}
}
```
There was an error in `foo/bar/baz` that resulted in `fo... | ff1a3e5c74a216751dda31c60b2789cfab5be89f | 821067e6127dfaaf63cc8520f45f0d0b94c0cdb6 | https://github.com/smallrye/smallrye-graphql/compare/ff1a3e5c74a216751dda31c60b2789cfab5be89f...821067e6127dfaaf63cc8520f45f0d0b94c0cdb6 | diff --git a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/ResultBuilder.java b/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/ResultBuilder.java
index c4e14be5..dbf0cbbf 100644
--- a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/imp... | ['client/tck/src/main/java/tck/graphql/typesafe/ErrorBehavior.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/ResultBuilder.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 1,100,440 | 216,642 | 31,389 | 341 | 1,777 | 382 | 40 | 2 | 593 | 84 | 169 | 24 | 0 | 1 | 1970-01-01T00:27:08 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,088 | smallrye/smallrye-graphql/907/906 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/906 | https://github.com/smallrye/smallrye-graphql/pull/907 | https://github.com/smallrye/smallrye-graphql/pull/907 | 1 | fix | Handle errors with a `null` error `message` | The typesafe client throws a `java.lang.ClassCastException: class javax.json.JsonValueImpl cannot be cast to class javax.json.JsonString` if the response is something like:
```json
{
"errors": [
{
"message": null,
"locations": [
...
```
Reason: the `ResultBuilder` simply returns `jsonO... | bac875fe4eba77afa60d25013c47e100475d2c6e | 43ea1fff9f297b2e8d1c05f6a34032fab892163d | https://github.com/smallrye/smallrye-graphql/compare/bac875fe4eba77afa60d25013c47e100475d2c6e...43ea1fff9f297b2e8d1c05f6a34032fab892163d | diff --git a/client/api/src/main/java/io/smallrye/graphql/client/typesafe/api/GraphQLClientError.java b/client/api/src/main/java/io/smallrye/graphql/client/typesafe/api/GraphQLClientError.java
index 953adec1..06c00e48 100644
--- a/client/api/src/main/java/io/smallrye/graphql/client/typesafe/api/GraphQLClientError.java
... | ['client/tck/src/main/java/tck/graphql/typesafe/ErrorBehavior.java', 'client/api/src/main/java/io/smallrye/graphql/client/typesafe/api/GraphQLClientError.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/ResultBuilder.java'] | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 1,069,456 | 210,808 | 30,568 | 325 | 3,792 | 795 | 73 | 3 | 383 | 42 | 86 | 12 | 0 | 1 | 1970-01-01T00:27:05 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,097 | smallrye/smallrye-graphql/340/337 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/337 | https://github.com/smallrye/smallrye-graphql/pull/340 | https://github.com/smallrye/smallrye-graphql/pull/340 | 1 | fix | Support java.util.Date in queries from smallrye-graphql-client | I am using this library to fetch data from GitHub and I noticed that some types are not assembled correctly. This is what I have so far:
```java
@GraphQlClientApi(endpoint = "https://api.github.com/graphql")
@AuthorizationHeader(confPrefix = "github", type = AuthorizationHeader.Type.BEARER)
public interface Gi... | af0555254f21ab09bad79a37d2091087c4cac3dd | c1ca136b97d818dc91e42894ca9381437f974c43 | https://github.com/smallrye/smallrye-graphql/compare/af0555254f21ab09bad79a37d2091087c4cac3dd...c1ca136b97d818dc91e42894ca9381437f974c43 | diff --git a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientBuilderImpl.java b/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientBuilderImpl.java
index a4f150bf..41f30933 100644
--- a/client/implementation/src/main/java/io/smallrye/graph... | ['client/implementation/src/test/java/test/unit/ScalarBehavior.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientBuilderImpl.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/RequestBuilder.java', 'client/implementation/src/main/java/io/... | {'.java': 6} | 6 | 6 | 0 | 0 | 6 | 499,807 | 97,843 | 14,420 | 178 | 5,301 | 1,003 | 105 | 5 | 1,686 | 129 | 415 | 48 | 1 | 4 | 1970-01-01T00:26:35 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,096 | smallrye/smallrye-graphql/388/387 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/387 | https://github.com/smallrye/smallrye-graphql/pull/388 | https://github.com/smallrye/smallrye-graphql/pull/388 | 1 | fix | NPE: some validation errors don't provide a query path | Some validation errors don't provide a query path, e.g. `LoneAnonymousOperation`. This results in a NPE in the call to `toJsonArray` in line 75 of the `ExecutionErrorsService`.
Would it be better to provide an empty path or null? | 8d00415f83912e5c5b222c90b298ec0e585ed8dd | c47f2ba2398ab9e8889b06d28d1c4d0f55cfc70f | https://github.com/smallrye/smallrye-graphql/compare/8d00415f83912e5c5b222c90b298ec0e585ed8dd...c47f2ba2398ab9e8889b06d28d1c4d0f55cfc70f | diff --git a/server/implementation/src/main/java/io/smallrye/graphql/execution/error/ExecutionErrorsService.java b/server/implementation/src/main/java/io/smallrye/graphql/execution/error/ExecutionErrorsService.java
index a0df1b7f..372a08cf 100644
--- a/server/implementation/src/main/java/io/smallrye/graphql/execution/e... | ['server/implementation/src/main/java/io/smallrye/graphql/execution/error/ExecutionErrorsService.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 529,291 | 103,766 | 15,184 | 181 | 294 | 60 | 8 | 1 | 232 | 37 | 57 | 3 | 0 | 0 | 1970-01-01T00:26:38 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,089 | smallrye/smallrye-graphql/659/654 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/654 | https://github.com/smallrye/smallrye-graphql/pull/659 | https://github.com/smallrye/smallrye-graphql/pull/659 | 1 | fix | Issue with GraphQLClientApi Mutation | I have a simple GraphQL server and a Kotlin client as follows:
```
@ApplicationScoped
class PeopleService(
@ConfigProperty(name = "people.graphql.url")
private val peopleApiUrl: String
) {
var peopleApi: PeopleApi = GraphQlClientBuilder.newBuilder()
.endpoint(peopleApiUrl)
.bu... | fba8ff73cef0f6e559cbed2f45f21be257a11f4a | 6e6400a41da883d6cb589e6895d44b9b4dedc0b7 | https://github.com/smallrye/smallrye-graphql/compare/fba8ff73cef0f6e559cbed2f45f21be257a11f4a...6e6400a41da883d6cb589e6895d44b9b4dedc0b7 | diff --git a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/reflection/ParameterInfo.java b/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/reflection/ParameterInfo.java
index 33c705a2..6c3715bc 100644
--- a/client/implementation/src/main/java/io/smallrye/graph... | ['client/implementation/src/test/java/test/unit/ParametersBehavior.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/reflection/ParameterInfo.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 687,044 | 134,653 | 19,593 | 225 | 313 | 58 | 8 | 1 | 2,422 | 241 | 602 | 71 | 0 | 4 | 1970-01-01T00:26:54 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,084 | smallrye/smallrye-graphql/1103/1102 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/1102 | https://github.com/smallrye/smallrye-graphql/pull/1103 | https://github.com/smallrye/smallrye-graphql/pull/1103 | 1 | fixes | Maven plugin does not work if implementation-cdi module is in the classpath | Because in that case, it picks up the `io.smallrye.graphql.cdi.CdiLookupService` and tries to use that for injection validation (the `Bootstrap` class validates that all operation classes are beans), but it does not work because the CDI container is not properly initialized. We need to skip injection validation in the ... | c68ae4a0758e6bd5fe8064fd991141618303b23d | b3ebdc314b15824962f9b7f751a78824fb4087d7 | https://github.com/smallrye/smallrye-graphql/compare/c68ae4a0758e6bd5fe8064fd991141618303b23d...b3ebdc314b15824962f9b7f751a78824fb4087d7 | diff --git a/server/implementation-cdi/src/test/java/io/smallrye/graphql/execution/SchemaTest.java b/server/implementation-cdi/src/test/java/io/smallrye/graphql/execution/SchemaTest.java
index 24a4b48c..8801722d 100644
--- a/server/implementation-cdi/src/test/java/io/smallrye/graphql/execution/SchemaTest.java
+++ b/ser... | ['tools/maven-plugin/src/main/java/io/smallrye/graphql/mavenplugin/GenerateSchemaMojo.java', 'tools/gradle-plugin/plugin/src/main/java/io/smallrye/graphql/gradle/tasks/GenerateSchemaTask.java', 'server/implementation/src/test/java/io/smallrye/graphql/schema/SchemaTest.java', 'server/implementation/src/main/java/io/smal... | {'.java': 5} | 5 | 5 | 0 | 0 | 5 | 1,124,064 | 221,288 | 32,002 | 344 | 1,383 | 242 | 19 | 3 | 437 | 61 | 91 | 3 | 0 | 0 | 1970-01-01T00:27:14 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,093 | smallrye/smallrye-graphql/453/444 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/444 | https://github.com/smallrye/smallrye-graphql/pull/453 | https://github.com/smallrye/smallrye-graphql/pull/453 | 1 | fix | Non-Ascii-Characters sent to server | When we send a non-ASCII character to the GraphQL server, the encoding is being mixed up.
I've looked at the TCK and tried to add a `ö` to the `ScalarTestApi` string `123456789`, but when I add it to the `output.json` it doesn't accept the json. | 276b731a32e67ab53a14ae4256065f95941a0cc5 | cbcd9313009bf69ab4b33daed475e8d2f13c5c86 | https://github.com/smallrye/smallrye-graphql/compare/276b731a32e67ab53a14ae4256065f95941a0cc5...cbcd9313009bf69ab4b33daed475e8d2f13c5c86 | diff --git a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientProxy.java b/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientProxy.java
index df002a75..384b73b0 100644
--- a/client/implementation/src/main/java/io/smallrye/graphql/client/ty... | ['client/implementation/src/test/java/test/unit/HeaderBehavior.java', 'client/implementation/src/test/java/test/unit/GraphQlClientFixture.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientProxy.java'] | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 548,208 | 107,358 | 15,661 | 184 | 431 | 78 | 8 | 1 | 248 | 45 | 66 | 3 | 0 | 0 | 1970-01-01T00:26:42 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,094 | smallrye/smallrye-graphql/451/450 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/450 | https://github.com/smallrye/smallrye-graphql/pull/451 | https://github.com/smallrye/smallrye-graphql/pull/451 | 1 | fix | ClassCastException with Set as parameter | Hello,
as already discussed with @t1, there is an issue with GraphQl client.
We try to create a GraphQl mutation (GraphQl version 1.0.11) which receives a Set as parameter.
`void add(Set<AnyObjectType> values);`
It seems the RequestBuilder#buildParam() method should not use the specific List type but a more g... | 5d752a165bd2199c00637accba67cb4c2e85e9ce | 7a864830c7abbe2fff5c7192d32584eafb9073e3 | https://github.com/smallrye/smallrye-graphql/compare/5d752a165bd2199c00637accba67cb4c2e85e9ce...7a864830c7abbe2fff5c7192d32584eafb9073e3 | diff --git a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientProxy.java b/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientProxy.java
index bdbfe1cf..df002a75 100644
--- a/client/implementation/src/main/java/io/smallrye/graphql/client/ty... | ['client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/RequestBuilder.java', 'client/implementation/src/test/java/test/unit/ParametersBehavior.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientProxy.java'] | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 547,749 | 107,269 | 15,648 | 184 | 1,056 | 206 | 23 | 2 | 9,340 | 245 | 1,907 | 97 | 0 | 1 | 1970-01-01T00:26:42 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,095 | smallrye/smallrye-graphql/395/394 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/394 | https://github.com/smallrye/smallrye-graphql/pull/395 | https://github.com/smallrye/smallrye-graphql/pull/395 | 1 | fix | Typesafe Client: send Booleans not as String | E.g. mutations containing a `Boolean` non-primitive results in a String `true` or `false` but not in the proper literals. | 9b81d85734bf837fbeaeb9361034176f887e0920 | 38acf28b7373c3ce0a68acbc137178d181fcfaa2 | https://github.com/smallrye/smallrye-graphql/compare/9b81d85734bf837fbeaeb9361034176f887e0920...38acf28b7373c3ce0a68acbc137178d181fcfaa2 | diff --git a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/RequestBuilder.java b/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/RequestBuilder.java
index 3b6b5efb..4b01beee 100644
--- a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/i... | ['client/implementation/src/test/java/test/unit/MutationBehavior.java', 'client/implementation/src/test/java/test/unit/ParametersBehavior.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/RequestBuilder.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/im... | {'.java': 5} | 5 | 5 | 0 | 0 | 5 | 529,935 | 103,861 | 15,198 | 181 | 133 | 20 | 2 | 2 | 121 | 19 | 30 | 1 | 0 | 0 | 1970-01-01T00:26:39 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,092 | smallrye/smallrye-graphql/487/486 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/486 | https://github.com/smallrye/smallrye-graphql/pull/487 | https://github.com/smallrye/smallrye-graphql/pull/487 | 1 | fixes | Servlet module does not scan WEB-INF/lib JARs for MP GraphQL components | If annotated POJOs are located in a WAR's WEB-INF/classes directory, then everything works fine. But when running in Open Liberty with a WAR file that contains query/mutation/entity classes, etc in a JAR file in the WEB-INF/lib directory, those classes are not processed. Since these JARs are part of the classpath of t... | 7ae2014bef6f8f808aecfc7e2a1d8d36f1b758e6 | 8a3aac8e1d9bd55986a26b616e7d1009ba82fbb9 | https://github.com/smallrye/smallrye-graphql/compare/7ae2014bef6f8f808aecfc7e2a1d8d36f1b758e6...8a3aac8e1d9bd55986a26b616e7d1009ba82fbb9 | diff --git a/server/implementation-servlet/src/main/java/io/smallrye/graphql/servlet/IndexInitializer.java b/server/implementation-servlet/src/main/java/io/smallrye/graphql/servlet/IndexInitializer.java
index fe13a935..272751c4 100644
--- a/server/implementation-servlet/src/main/java/io/smallrye/graphql/servlet/IndexIn... | ['server/implementation-servlet/src/main/java/io/smallrye/graphql/servlet/IndexInitializer.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 551,449 | 108,013 | 15,717 | 184 | 129 | 34 | 2 | 1 | 394 | 63 | 85 | 1 | 0 | 0 | 1970-01-01T00:26:43 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,098 | smallrye/smallrye-graphql/333/332 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/332 | https://github.com/smallrye/smallrye-graphql/pull/333 | https://github.com/smallrye/smallrye-graphql/pull/333 | 1 | fix | Typesafe client: inherit `@Header`/`@AuthorizationHeader` annotations | Annotations on the parent of a `@GraphQlClientApi` interface are not recognized. | c179e7bae6371a5ef258aaabe52946274693b33c | 16ddf61f0ef7c27b27cdaf903450c4a4e529d003 | https://github.com/smallrye/smallrye-graphql/compare/c179e7bae6371a5ef258aaabe52946274693b33c...16ddf61f0ef7c27b27cdaf903450c4a4e529d003 | diff --git a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientBuilderImpl.java b/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientBuilderImpl.java
index b0674489..e27f5bd3 100644
--- a/client/implementation/src/main/java/io/smallrye/graph... | ['client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/GraphQlClientBuilderImpl.java', 'client/implementation/src/test/java/test/unit/AuthorizationHeaderBehavior.java', 'client/implementation/src/test/java/test/unit/HeaderBehavior.java', 'client/implementation/src/main/java/io/smallrye/graphql/c... | {'.java': 6} | 6 | 6 | 0 | 0 | 6 | 496,929 | 97,295 | 14,352 | 178 | 1,644 | 332 | 26 | 4 | 80 | 11 | 19 | 1 | 0 | 0 | 1970-01-01T00:26:35 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
2,090 | smallrye/smallrye-graphql/548/545 | smallrye | smallrye-graphql | https://github.com/smallrye/smallrye-graphql/issues/545 | https://github.com/smallrye/smallrye-graphql/pull/548 | https://github.com/smallrye/smallrye-graphql/pull/548 | 1 | fix | Graphql client handle UUID | Hi, I am writing tests for my graphql endpoint like follows
Endpoint
```java
package graphql
import types.Organization;
import io.quarkus.security.Authenticated;
@GraphQLApi
public class OrganizationResource {
@Authenticated
@Query
public Organization organization(@NonNull UUID id) {
... | f1a58345a19344ed6487d0ba92aca9e30348eaed | 4b8e47a19d723c6d4af339c27acda2fd78b0add2 | https://github.com/smallrye/smallrye-graphql/compare/f1a58345a19344ed6487d0ba92aca9e30348eaed...4b8e47a19d723c6d4af339c27acda2fd78b0add2 | diff --git a/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/json/JsonStringReader.java b/client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/json/JsonStringReader.java
index 3364d70a..24335f2d 100644
--- a/client/implementation/src/main/java/io/smallrye/graphql/cli... | ['client/implementation/src/test/java/test/unit/ScalarBehavior.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/json/JsonStringReader.java', 'client/implementation/src/main/java/io/smallrye/graphql/client/typesafe/impl/reflection/TypeInfo.java', 'client/implementation/src/main/java/i... | {'.java': 4} | 4 | 4 | 0 | 0 | 4 | 607,967 | 119,083 | 17,353 | 202 | 582 | 120 | 11 | 3 | 2,054 | 200 | 422 | 73 | 0 | 5 | 1970-01-01T00:26:46 | 132 | Java | {'Java': 2081470, 'JavaScript': 4025, 'Shell': 1757, 'Kotlin': 1745, 'HTML': 1357, 'CSS': 737} | Apache License 2.0 |
497 | gluufederation/oxtrust/1054/1053 | gluufederation | oxtrust | https://github.com/GluuFederation/oxTrust/issues/1053 | https://github.com/GluuFederation/oxTrust/pull/1054 | https://github.com/GluuFederation/oxTrust/pull/1054 | 1 | fix | Fix duplicate source server name: | # Description
The fix is already in master branch just need to move it to 3.1.4 as that is required for the next release
The corresponding issue was here https://github.com/GluuFederation/oxTrust/issues/1043. | 83ce8d6f0bce2317eca50640ed2555743f71d1e4 | 664eeed5b50503602a462364b1e12b1ebbe59325 | https://github.com/gluufederation/oxtrust/compare/83ce8d6f0bce2317eca50640ed2555743f71d1e4...664eeed5b50503602a462364b1e12b1ebbe59325 | diff --git a/server/src/main/java/org/gluu/oxtrust/action/ManagePersonAuthenticationAction.java b/server/src/main/java/org/gluu/oxtrust/action/ManagePersonAuthenticationAction.java
index 8faa9ef45..7918e6e68 100644
--- a/server/src/main/java/org/gluu/oxtrust/action/ManagePersonAuthenticationAction.java
+++ b/server/src... | ['server/src/main/java/org/gluu/oxtrust/action/ManagePersonAuthenticationAction.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 2,212,091 | 498,520 | 68,979 | 413 | 254 | 65 | 7 | 1 | 217 | 30 | 53 | 6 | 1 | 0 | 1970-01-01T00:25:32 | 127 | Java | {'Java': 2357692, 'HTML': 870626, 'JavaScript': 658438, 'CSS': 538961, 'SCSS': 28392, 'Handlebars': 5806, 'Python': 3149, 'Ruby': 1078} | MIT License |
1,385 | smallrye/smallrye-config/177/176 | smallrye | smallrye-config | https://github.com/smallrye/smallrye-config/issues/176 | https://github.com/smallrye/smallrye-config/pull/177 | https://github.com/smallrye/smallrye-config/pull/177 | 2 | fixes | 1.3.10 started returning Optional[false] for non existent boolean properties | In 1.3.9, `config.getOptionalValue("NON_EXISTENT_PROPERTY", Boolean.class)`, returns `Optional.empty`
In 1.3.10, the same call started returning `Optional[false]` instead. This is a backward incompatible change in behavior and is not consistent with the behavior for types other than boolean, for which this call stil... | 7b2258f9f7b494252b2db6d4dcb6d9428d44ff66 | bc2ab1199ecba8f9212a4a1197cfcdee90961cc2 | https://github.com/smallrye/smallrye-config/compare/7b2258f9f7b494252b2db6d4dcb6d9428d44ff66...bc2ab1199ecba8f9212a4a1197cfcdee90961cc2 | diff --git a/implementation/src/main/java/io/smallrye/config/Converters.java b/implementation/src/main/java/io/smallrye/config/Converters.java
index 6ffc789b..f5bac62e 100644
--- a/implementation/src/main/java/io/smallrye/config/Converters.java
+++ b/implementation/src/main/java/io/smallrye/config/Converters.java
@@ -5... | ['implementation/src/test/java/io/smallrye/config/ConvertersTestCase.java', 'implementation/src/main/java/io/smallrye/config/Converters.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 132,073 | 26,072 | 3,744 | 39 | 1,003 | 212 | 12 | 1 | 347 | 42 | 81 | 3 | 0 | 0 | 1970-01-01T00:26:13 | 127 | Java | {'Java': 1275680, 'Shell': 1439, 'Kotlin': 1341} | Apache License 2.0 |
494 | gluufederation/oxtrust/550/545 | gluufederation | oxtrust | https://github.com/GluuFederation/oxTrust/issues/545 | https://github.com/GluuFederation/oxTrust/pull/550 | https://github.com/GluuFederation/oxTrust/pull/550#issuecomment-303082148 | 1 | resolve | Update Grant Types | We need to add the following grant types:
- password
- client_credentials
- urn:ietf:params:oauth:grant-type:uma-ticket | 5f788cd2337e0b3ed75b0c9007d8a0ce3d2652f8 | 2caf57076da501050745b60dbbacf514c2011d07 | https://github.com/gluufederation/oxtrust/compare/5f788cd2337e0b3ed75b0c9007d8a0ce3d2652f8...2caf57076da501050745b60dbbacf514c2011d07 | diff --git a/server/src/main/java/org/gluu/oxtrust/action/UpdateClientAction.java b/server/src/main/java/org/gluu/oxtrust/action/UpdateClientAction.java
index 878d46cd1..ebb513eef 100644
--- a/server/src/main/java/org/gluu/oxtrust/action/UpdateClientAction.java
+++ b/server/src/main/java/org/gluu/oxtrust/action/UpdateC... | ['server/src/main/java/org/gluu/oxtrust/action/UpdateClientAction.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 2,492,901 | 573,731 | 81,163 | 504 | 328 | 73 | 5 | 1 | 123 | 14 | 30 | 4 | 0 | 0 | 1970-01-01T00:24:54 | 127 | Java | {'Java': 2357692, 'HTML': 870626, 'JavaScript': 658438, 'CSS': 538961, 'SCSS': 28392, 'Handlebars': 5806, 'Python': 3149, 'Ruby': 1078} | MIT License |
8,919 | rundeck/rundeck-cli/459/458 | rundeck | rundeck-cli | https://github.com/rundeck/rundeck-cli/issues/458 | https://github.com/rundeck/rundeck-cli/pull/459 | https://github.com/rundeck/rundeck-cli/pull/459 | 1 | fix | RUN-1002: rd projects scm perform project-commit issue | I seem to be unable to perform a project commit for multiple jobs using the cli.
Fail for multiple jobs that are surrounded by quotes:
```
rd projects scm perform --project=MyProject --integration="export" --field="message='Daily sync'" --action="project-commit" \\
--job="221533ab-6d50-4345-adda-1c2a5408ffae ... | 2b4d3d44a52847227e774ed09ca285d0414d378a | 6240fecb9b889846357d7888d80e068eb66411af | https://github.com/rundeck/rundeck-cli/compare/2b4d3d44a52847227e774ed09ca285d0414d378a...6240fecb9b889846357d7888d80e068eb66411af | diff --git a/rd-cli-tool/src/main/java/org/rundeck/client/tool/commands/projects/SCM.java b/rd-cli-tool/src/main/java/org/rundeck/client/tool/commands/projects/SCM.java
index 8648aff..0bc4eac 100644
--- a/rd-cli-tool/src/main/java/org/rundeck/client/tool/commands/projects/SCM.java
+++ b/rd-cli-tool/src/main/java/org/ru... | ['rd-cli-tool/src/main/java/org/rundeck/client/tool/commands/projects/SCM.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 662,402 | 137,537 | 20,265 | 196 | 774 | 176 | 7 | 1 | 1,212 | 126 | 379 | 37 | 0 | 4 | 1970-01-01T00:27:35 | 123 | Java | {'Java': 657161, 'Groovy': 193234, 'Shell': 3366, 'Dockerfile': 2799} | Apache License 2.0 |
1,379 | hapifhir/org.hl7.fhir.core/885/884 | hapifhir | org.hl7.fhir.core | https://github.com/hapifhir/org.hl7.fhir.core/issues/884 | https://github.com/hapifhir/org.hl7.fhir.core/pull/885 | https://github.com/hapifhir/org.hl7.fhir.core/pull/885 | 1 | fixes | "5.0.0-snapshot2" is missing from enumerations class | The new version: "5.0.0-snapshot2" was introduced ([In Constants](https://github.com/hapifhir/org.hl7.fhir.core/blob/master/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/model/Constants.java)), but the version wasn't added to [Enumerations](https://github.com/hapifhir/org.hl7.fhir.core/blob/master/org.hl7.fhir.r5/src/m... | f3fa8cae2452336c06775de90eb8dd2d0a225c94 | 1441141d95c8a89da068ac3463648c6687078d3e | https://github.com/hapifhir/org.hl7.fhir.core/compare/f3fa8cae2452336c06775de90eb8dd2d0a225c94...1441141d95c8a89da068ac3463648c6687078d3e | diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/model/Enumerations.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/model/Enumerations.java
index 163e96d32..7c205f623 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/model/Enumerations.java
+++ b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/mod... | ['org.hl7.fhir.r5/src/test/java/org/hl7/fhir/r5/test/ResourceTests.java', 'org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/model/Enumerations.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 206,367,491 | 45,406,310 | 4,414,018 | 6,919 | 3,852 | 1,009 | 28 | 1 | 369 | 15 | 106 | 1 | 2 | 0 | 1970-01-01T00:27:38 | 123 | Java | {'Java': 225424124, 'Batchfile': 790} | Apache License 2.0 |
1,378 | hapifhir/org.hl7.fhir.core/968/967 | hapifhir | org.hl7.fhir.core | https://github.com/hapifhir/org.hl7.fhir.core/issues/967 | https://github.com/hapifhir/org.hl7.fhir.core/pull/968 | https://github.com/hapifhir/org.hl7.fhir.core/pull/968 | 1 | fixes | maxValue contraint on decimal values is ignored and doesn't produce errors | ### Problem description
It seems, that the validator doesn't evaluate the maxValue constraint for decimal data types in profiles (**maxValueDecimal**). If the constraint is violated, no errors are produced. The following minimal example ([MedicationRequestWithDispenseRequestQuantityLimit.zip](https://github.com/hapi... | f0c53bd7a9968a410671e706ab322551485fbdd0 | 413f3a35430f83b8cd3e93b45a74efd792c9e369 | https://github.com/hapifhir/org.hl7.fhir.core/compare/f0c53bd7a9968a410671e706ab322551485fbdd0...413f3a35430f83b8cd3e93b45a74efd792c9e369 | diff --git a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/InstanceValidator.java b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/InstanceValidator.java
index b0f084daa..069635dcc 100644
--- a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/Instan... | ['org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/instance/InstanceValidator.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 211,817,684 | 46,676,623 | 4,513,967 | 7,132 | 760 | 178 | 4 | 1 | 7,161 | 569 | 1,870 | 164 | 19 | 0 | 1970-01-01T00:27:46 | 123 | Java | {'Java': 225424124, 'Batchfile': 790} | Apache License 2.0 |
1,377 | hapifhir/org.hl7.fhir.core/1041/1040 | hapifhir | org.hl7.fhir.core | https://github.com/hapifhir/org.hl7.fhir.core/issues/1040 | https://github.com/hapifhir/org.hl7.fhir.core/pull/1041 | https://github.com/hapifhir/org.hl7.fhir.core/pull/1041 | 1 | fixes | NullPointerException while comparing profiles | ### Problem Description
The validator throws an exception while comparing profiles, which constraint meta.profile to some fixed values.
### Steps to reproduce
Call the CLI version of validator as follows:
`java -jar validator_cli.jar -compare -dest "c:\\Dev\\fhir validator\\compare_results" -version 4.0.1 -ig k... | aaa5c9d6a4093ec3152a82a9ccd40be7966993fe | 84508415efc75a8d17924704870c9272965f2b9e | https://github.com/hapifhir/org.hl7.fhir.core/compare/aaa5c9d6a4093ec3152a82a9ccd40be7966993fe...84508415efc75a8d17924704870c9272965f2b9e | diff --git a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/conformance/ProfileUtilities.java b/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/conformance/ProfileUtilities.java
index 89d0e134a..151a12ad5 100644
--- a/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/conformance/ProfileUtilities.java
+++ b/org.hl7.fhir.r5/src... | ['org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/conformance/ProfileUtilities.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 216,077,932 | 47,531,690 | 4,540,085 | 7,153 | 108 | 24 | 2 | 1 | 6,082 | 428 | 1,848 | 81 | 14 | 1 | 1970-01-01T00:27:51 | 123 | Java | {'Java': 225424124, 'Batchfile': 790} | Apache License 2.0 |
1,376 | hapifhir/org.hl7.fhir.core/1098/1091 | hapifhir | org.hl7.fhir.core | https://github.com/hapifhir/org.hl7.fhir.core/issues/1091 | https://github.com/hapifhir/org.hl7.fhir.core/pull/1098 | https://github.com/hapifhir/org.hl7.fhir.core/pull/1098 | 1 | fixes | Pluralization code returning constant name instead of template for HAPI-FHIR test | The following test in HAPI-FHIR fails with the new pluralization error message:
FhirPathFilterInterceptorTest
It is now returning `org.hl7.fhir.exceptions.PathEngineException: FHIRPATH_LEFT_VALUE` where it previously gave the templated message: `org.hl7.fhir.exceptions.PathEngineException: Error performing *: lef... | 61e63b128a4c10f29bba4e07beb5b2a277ae46ff | f8fa68cc4a193383f43f6e551280e7323dc84e82 | https://github.com/hapifhir/org.hl7.fhir.core/compare/61e63b128a4c10f29bba4e07beb5b2a277ae46ff...f8fa68cc4a193383f43f6e551280e7323dc84e82 | diff --git a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/context/IWorkerContext.java b/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/context/IWorkerContext.java
index 0e420ebf6..db92e864a 100644
--- a/org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/context/IWorkerContext.java
+++ b/org.hl7.fhir.r4/src/main/java/org/hl7... | ['org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/context/IWorkerContext.java', 'org.hl7.fhir.r4/src/main/java/org/hl7/fhir/r4/utils/FHIRPathEngine.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 216,433,228 | 47,618,588 | 4,547,229 | 7,177 | 218 | 47 | 4 | 2 | 354 | 37 | 75 | 5 | 0 | 0 | 1970-01-01T00:27:55 | 123 | Java | {'Java': 225424124, 'Batchfile': 790} | Apache License 2.0 |
929 | openliberty/ci.maven/1498/1497 | openliberty | ci.maven | https://github.com/OpenLiberty/ci.maven/issues/1497 | https://github.com/OpenLiberty/ci.maven/pull/1498 | https://github.com/OpenLiberty/ci.maven/pull/1498 | 1 | fixes | FeatureModifiedException occurring often with multi-module project | Using https://github.ibm.com/was-svt/acme-ee
Most attempts to generate features result in two calls to the binary scanner and a FeatureModifiedException.
This especially does not make sense for the initial call to the binary scanner as there are no current features passed to the binary scanner. And on calls made afte... | 3ac9f7471d908f25776044e63821800b6a982cea | 2271d29bb9905cfca8c705a0b49c826d628511fa | https://github.com/openliberty/ci.maven/compare/3ac9f7471d908f25776044e63821800b6a982cea...2271d29bb9905cfca8c705a0b49c826d628511fa | diff --git a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java b/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java
index dea8e295..52bb2cc3 100644
--- a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/Generate... | ['liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 564,762 | 111,004 | 14,643 | 123 | 821 | 138 | 10 | 1 | 11,255 | 715 | 4,125 | 122 | 3 | 4 | 1970-01-01T00:27:31 | 118 | Java | {'Java': 1252613, 'Dockerfile': 4974, 'HTML': 1606, 'Shell': 473, 'Batchfile': 12} | Apache License 2.0 |
936 | openliberty/ci.maven/588/584 | openliberty | ci.maven | https://github.com/OpenLiberty/ci.maven/issues/584 | https://github.com/OpenLiberty/ci.maven/pull/588 | https://github.com/OpenLiberty/ci.maven/pull/588 | 1 | fixes | Issuing using `serverXmlFile` config parm in dev mode; parms with 'alias' don't propagate via mojo executor | Using a config parm like:
`<configFile>src/main/liberty/config/server.xml</configFile>`
leads to this failure in dev mode:
> [ERROR] Failed to execute goal io.openliberty.tools:liberty-maven-plugin:3.0.1:dev (default-cli) on project demo: Unable to execute mojo: Unable to parse configuration of mojo io.openliberty... | 4af2bd99885e79aed550a0a97a65985df7e76a17 | f60e03e9989a348a9667b1c8c0bc92516262c0f3 | https://github.com/openliberty/ci.maven/compare/4af2bd99885e79aed550a0a97a65985df7e76a17...f60e03e9989a348a9667b1c8c0bc92516262c0f3 | diff --git a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/DevMojo.java b/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/DevMojo.java
index d1ec8439..c12637f8 100644
--- a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/DevMojo.java
+++ b/liberty-maven-p... | ['liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/DevMojo.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 285,287 | 55,561 | 7,857 | 62 | 413 | 66 | 4 | 1 | 1,474 | 168 | 335 | 32 | 0 | 0 | 1970-01-01T00:26:08 | 118 | Java | {'Java': 1252613, 'Dockerfile': 4974, 'HTML': 1606, 'Shell': 473, 'Batchfile': 12} | Apache License 2.0 |
937 | openliberty/ci.maven/576/575 | openliberty | ci.maven | https://github.com/OpenLiberty/ci.maven/issues/575 | https://github.com/OpenLiberty/ci.maven/pull/576 | https://github.com/OpenLiberty/ci.maven/pull/576 | 1 | fixes | Dev mode misses configuration for deploy | Dev mode includes configuration for `install-apps`, but since that is now called `deploy`, dev mode needs to set that configuration properly. | 40acae091a517cb2777a85be57c195ad73a48e54 | ea58e53a4cd7d9c3aa1002ef0cd06ae491d309d0 | https://github.com/openliberty/ci.maven/compare/40acae091a517cb2777a85be57c195ad73a48e54...ea58e53a4cd7d9c3aa1002ef0cd06ae491d309d0 | diff --git a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/DevMojo.java b/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/DevMojo.java
index d011934c..f8e5ef3b 100644
--- a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/DevMojo.java
+++ b/liberty-maven-p... | ['liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/DevMojo.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 285,364 | 55,577 | 7,858 | 62 | 111 | 24 | 2 | 1 | 141 | 21 | 28 | 1 | 0 | 0 | 1970-01-01T00:26:08 | 118 | Java | {'Java': 1252613, 'Dockerfile': 4974, 'HTML': 1606, 'Shell': 473, 'Batchfile': 12} | Apache License 2.0 |
933 | openliberty/ci.maven/913/909 | openliberty | ci.maven | https://github.com/OpenLiberty/ci.maven/issues/909 | https://github.com/OpenLiberty/ci.maven/pull/913 | https://github.com/OpenLiberty/ci.maven/pull/913 | 1 | fixes | compile-jsp does not honor skip parameter | The compile-jsp goal does not honor the skip parameter. I think it probably should. | e01e137637b8d6c4b349a715329b96b14b0fb0be | 15e27c85f53f565462e4a470667d19c2d449e1a0 | https://github.com/openliberty/ci.maven/compare/e01e137637b8d6c4b349a715329b96b14b0fb0be...15e27c85f53f565462e4a470667d19c2d449e1a0 | diff --git a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/jsp/CompileJspMojo.java b/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/jsp/CompileJspMojo.java
index 241a6fd8..62899ffa 100644
--- a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/jsp/CompileJspMojo.java
+++ b/lib... | ['liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/jsp/CompileJspMojo.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 361,050 | 70,612 | 9,674 | 72 | 116 | 26 | 5 | 1 | 83 | 14 | 18 | 1 | 0 | 0 | 1970-01-01T00:26:37 | 118 | Java | {'Java': 1252613, 'Dockerfile': 4974, 'HTML': 1606, 'Shell': 473, 'Batchfile': 12} | Apache License 2.0 |
932 | openliberty/ci.maven/1308/1301 | openliberty | ci.maven | https://github.com/OpenLiberty/ci.maven/issues/1301 | https://github.com/OpenLiberty/ci.maven/pull/1308 | https://github.com/OpenLiberty/ci.maven/pull/1308 | 1 | fixes | In some cases blank lines are added to server.xml | The generateFeatures mojo adds a comment to server.xml indicating that a new file has been created to handle Liberty features generated by the mojo. In some cases adding that comment incorrectly adds multiple extra blank lines.
We need to find out what triggers this behaviour and either fix it or stop adding the co... | 990f2db1e14b3d69c1bd98791f6de931deb27d3e | 1a4a49dc33110088753911d5b9ce0102623d0eba | https://github.com/openliberty/ci.maven/compare/990f2db1e14b3d69c1bd98791f6de931deb27d3e...1a4a49dc33110088753911d5b9ce0102623d0eba | diff --git a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java b/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java
index 06428ada..ac686422 100644
--- a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/Generate... | ['liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 507,955 | 99,977 | 13,179 | 102 | 430 | 82 | 7 | 1 | 338 | 57 | 63 | 3 | 0 | 0 | 1970-01-01T00:27:17 | 118 | Java | {'Java': 1252613, 'Dockerfile': 4974, 'HTML': 1606, 'Shell': 473, 'Batchfile': 12} | Apache License 2.0 |
930 | openliberty/ci.maven/1378/1355 | openliberty | ci.maven | https://github.com/OpenLiberty/ci.maven/issues/1355 | https://github.com/OpenLiberty/ci.maven/pull/1378 | https://github.com/OpenLiberty/ci.maven/pull/1378 | 1 | fixes | Generate features, standalone goal with conflict throws RequiredFeatureModifiedException | Requires some investigation.
Running the generate-features goal standalone with a conflict, ie. on the demo-devmode project (https://github.com/OpenLiberty/demo-devmode/tree/main) with setting only feature specified in server.xml: `webProfile-7.0` the following exception is thrown:
com.ibm.ws.report.exceptions.Requ... | a595c9a9bc90e4f6a7823725ec73223f6dcac3b8 | d987dd900958a2990b9f7a7090f5f1b5e64cc721 | https://github.com/openliberty/ci.maven/compare/a595c9a9bc90e4f6a7823725ec73223f6dcac3b8...d987dd900958a2990b9f7a7090f5f1b5e64cc721 | diff --git a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java b/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java
index cce72745..a6eb3ddc 100644
--- a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/Generate... | ['liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 535,740 | 105,824 | 13,937 | 109 | 2,757 | 483 | 40 | 1 | 744 | 72 | 156 | 10 | 2 | 0 | 1970-01-01T00:27:22 | 118 | Java | {'Java': 1252613, 'Dockerfile': 4974, 'HTML': 1606, 'Shell': 473, 'Batchfile': 12} | Apache License 2.0 |
931 | openliberty/ci.maven/1351/1350 | openliberty | ci.maven | https://github.com/OpenLiberty/ci.maven/issues/1350 | https://github.com/OpenLiberty/ci.maven/pull/1351 | https://github.com/OpenLiberty/ci.maven/pull/1351 | 1 | fixes | Check correct dependencies for Java EE version | We currently check 'io.openliberty.features' but we should check 'javax.javaee-api'
- [x] Maven
- [x] Gradle | c64cdf1dfa268bb96e98c4fc2af305789f02f34c | 44058dafe800c9b65c2f99c1def749a7774a4762 | https://github.com/openliberty/ci.maven/compare/c64cdf1dfa268bb96e98c4fc2af305789f02f34c...44058dafe800c9b65c2f99c1def749a7774a4762 | diff --git a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java b/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java
index a0997a82..0cac1f55 100644
--- a/liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/Generate... | ['liberty-maven-plugin/src/main/java/io/openliberty/tools/maven/server/GenerateFeaturesMojo.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 533,213 | 105,373 | 13,874 | 109 | 925 | 217 | 17 | 1 | 112 | 15 | 32 | 4 | 0 | 0 | 1970-01-01T00:27:19 | 118 | Java | {'Java': 1252613, 'Dockerfile': 4974, 'HTML': 1606, 'Shell': 473, 'Batchfile': 12} | Apache License 2.0 |
8,962 | apache/incubator-wayang/226/225 | apache | incubator-wayang | https://github.com/apache/incubator-wayang/issues/225 | https://github.com/apache/incubator-wayang/pull/226 | https://github.com/apache/incubator-wayang/pull/226 | 1 | close | Operator Distinct One value | The distinct operator just shows one value independent of the value that could have | 5840b1de654804db5d0ad9ff6333c19ec2e64492 | 54046d6561cb24408ee393a4b402fd8970b5d2bb | https://github.com/apache/incubator-wayang/compare/5840b1de654804db5d0ad9ff6333c19ec2e64492...54046d6561cb24408ee393a4b402fd8970b5d2bb | diff --git a/wayang-platforms/wayang-flink/code/main/java/org/apache/wayang/flink/compiler/KeySelectorDistinct.java b/wayang-platforms/wayang-flink/code/main/java/org/apache/wayang/flink/compiler/KeySelectorDistinct.java
index 732c7453..38d33f8e 100644
--- a/wayang-platforms/wayang-flink/code/main/java/org/apache/wayan... | ['wayang-platforms/wayang-flink/code/main/java/org/apache/wayang/flink/compiler/KeySelectorDistinct.java', 'wayang-platforms/wayang-flink/code/test/java/org/apache/wayang/flink/operators/FlinkJoinOperatorTest.java', 'wayang-platforms/wayang-flink/code/test/java/org/apache/wayang/flink/operators/FlinkDistinctOperatorTes... | {'.java': 4} | 4 | 4 | 0 | 0 | 4 | 3,312,628 | 665,551 | 83,674 | 644 | 82 | 17 | 3 | 1 | 83 | 14 | 14 | 1 | 0 | 0 | 1970-01-01T00:27:31 | 115 | Java | {'Java': 4320410, 'Scala': 316955, 'Python': 242747, 'Vue': 46457, 'Shell': 32312, 'HTML': 17437, 'JavaScript': 15009, 'CSS': 13475, 'Groovy': 7176, 'Dockerfile': 2399, 'ANTLR': 1965, 'SCSS': 1094, 'Ruby': 1089} | Apache License 2.0 |
906 | mzmine/mzmine3/625/575 | mzmine | mzmine3 | https://github.com/mzmine/mzmine3/issues/575 | https://github.com/mzmine/mzmine3/pull/625 | https://github.com/mzmine/mzmine3/pull/625 | 1 | fixes | [Bug] Ion Identity: Cannot import custom adducts/modifications list from csv | ### Basic information
* My operating system: MacOS 12.3
* My MZmine version: 3.0.0-beta
### What happened
* Please describe what happened and how it differs from what you expected to happen.
I tried importing a custom adducts.csv file but it does not load desired adducts.
* Please include all parameter ... | de589e62b0e2c57cd2e6d84f833f99b2f0d913fc | 6cc2e4606411d854b05a0bb76008ba866ff43602 | https://github.com/mzmine/mzmine3/compare/de589e62b0e2c57cd2e6d84f833f99b2f0d913fc...6cc2e4606411d854b05a0bb76008ba866ff43602 | diff --git a/src/main/java/io/github/mzmine/parameters/parametertypes/MultiChoiceComponent.java b/src/main/java/io/github/mzmine/parameters/parametertypes/MultiChoiceComponent.java
index d361e3ec4..803a86a59 100644
--- a/src/main/java/io/github/mzmine/parameters/parametertypes/MultiChoiceComponent.java
+++ b/src/main/j... | ['src/main/java/io/github/mzmine/parameters/parametertypes/MultiChoiceComponent.java', 'src/main/java/io/github/mzmine/parameters/parametertypes/ionidentity/IonModificationComponent.java', 'src/main/java/io/github/mzmine/parameters/parametertypes/ionidentity/IonModificationParameter.java'] | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 10,984,385 | 2,560,723 | 312,770 | 2,043 | 10,993 | 2,489 | 262 | 3 | 909 | 136 | 209 | 26 | 0 | 1 | 1970-01-01T00:27:28 | 113 | Java | {'Java': 13983394, 'HTML': 212691, 'CSS': 76094, 'C++': 42644, 'C': 445} | MIT License |
8,566 | pgpainless/pgpainless/144/143 | pgpainless | pgpainless | https://github.com/pgpainless/pgpainless/issues/143 | https://github.com/pgpainless/pgpainless/pull/144 | https://github.com/pgpainless/pgpainless/pull/144 | 1 | fixes | addSubkey() ignores key flags | PGPainless ignores the user set key flags when adding a subkey like follows:
```
secretKey = PGPainless.modifyKeyRing(secretKey)
.addSubKey(
KeySpec.getBuilder(KeyType.ECDH(EllipticCurve._BRAINPOOLP512R1))
.withKeyFlags(KeyFlag.ENCRYPT... | 8fffa3079a87e88621f138f728e979ca1b235415 | 548bfff93f6794ce36891b2466f36922a0e59086 | https://github.com/pgpainless/pgpainless/compare/8fffa3079a87e88621f138f728e979ca1b235415...548bfff93f6794ce36891b2466f36922a0e59086 | diff --git a/pgpainless-core/src/main/java/org/pgpainless/key/generation/KeySpec.java b/pgpainless-core/src/main/java/org/pgpainless/key/generation/KeySpec.java
index 60639849..4ecce7be 100644
--- a/pgpainless-core/src/main/java/org/pgpainless/key/generation/KeySpec.java
+++ b/pgpainless-core/src/main/java/org/pgpainle... | ['pgpainless-core/src/main/java/org/pgpainless/key/modification/secretkeyring/SecretKeyRingEditor.java', 'pgpainless-core/src/main/java/org/pgpainless/key/modification/secretkeyring/SecretKeyRingEditorInterface.java', 'pgpainless-core/src/test/java/org/pgpainless/key/modification/AddSubKeyTest.java', 'pgpainless-core/s... | {'.java': 4} | 4 | 4 | 0 | 0 | 4 | 744,886 | 157,687 | 19,210 | 180 | 1,365 | 292 | 16 | 3 | 716 | 55 | 147 | 15 | 0 | 1 | 1970-01-01T00:27:04 | 113 | Java | {'Java': 2966256, 'Roff': 28531, 'HTML': 2502, 'Shell': 1768} | Apache License 2.0 |
8,585 | jenkinsci/code-coverage-api-plugin/703/689 | jenkinsci | code-coverage-api-plugin | https://github.com/jenkinsci/code-coverage-api-plugin/issues/689 | https://github.com/jenkinsci/code-coverage-api-plugin/pull/703 | https://github.com/jenkinsci/code-coverage-api-plugin/pull/703 | 1 | fixes | Computing Negative Deltas Doesn't Seem to Work | ### Jenkins and plugins versions report
Code Coverage API Version 4.4.0
### What Operating System are you using (both controller, and any agents involved in the problem)?
Linux Ubuntu Agent and Controller
### Reproduction steps
1. Have a project setup where code coverage is dropping when a pull request i... | 74a32a770930fd54edc7398b8b37c6b1e61bd2bd | 2c5fefa4a661af731c97c8b3f3cc802a16da9226 | https://github.com/jenkinsci/code-coverage-api-plugin/compare/74a32a770930fd54edc7398b8b37c6b1e61bd2bd...2c5fefa4a661af731c97c8b3f3cc802a16da9226 | diff --git a/plugin/src/main/java/io/jenkins/plugins/coverage/metrics/steps/CoverageQualityGateEvaluator.java b/plugin/src/main/java/io/jenkins/plugins/coverage/metrics/steps/CoverageQualityGateEvaluator.java
index 146213f9..082ce456 100644
--- a/plugin/src/main/java/io/jenkins/plugins/coverage/metrics/steps/CoverageQu... | ['plugin/src/test/java/io/jenkins/plugins/coverage/metrics/steps/CoverageQualityGateEvaluatorTest.java', 'plugin/src/main/java/io/jenkins/plugins/coverage/metrics/steps/CoverageQualityGateEvaluator.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 797,920 | 160,174 | 21,824 | 142 | 1,908 | 377 | 43 | 1 | 2,749 | 379 | 713 | 52 | 0 | 3 | 1970-01-01T00:28:05 | 106 | Java | {'Java': 1412733, 'JavaScript': 52828, 'HTML': 46388, 'XSLT': 19148, 'CSS': 5275, 'Shell': 1119} | MIT License |
173 | gradle/native-platform/258/259 | gradle | native-platform | https://github.com/gradle/native-platform/issues/259 | https://github.com/gradle/native-platform/pull/258 | https://github.com/gradle/native-platform/pull/258 | 1 | fixes | Stopping the watching causes a `timeout value is negative` exception | When we try to stop the watching, it is currently possible to end up with a negative timeout when trying to join the watcher thread. When this happens, we `join` method throws an `IllegalArgumentException`.
We should that the timeout to join the thread is always positive. This is where we stop watching: https://gith... | 6b26ec90012cc7fc0670c64a72c6274f7dfab8fd | fbaaf84713e3afe9c3a0e4dec08afc5dd671894a | https://github.com/gradle/native-platform/compare/6b26ec90012cc7fc0670c64a72c6274f7dfab8fd...fbaaf84713e3afe9c3a0e4dec08afc5dd671894a | diff --git a/file-events/src/main/java/net/rubygrapefruit/platform/internal/jni/AbstractFileEventFunctions.java b/file-events/src/main/java/net/rubygrapefruit/platform/internal/jni/AbstractFileEventFunctions.java
index b777c80..7d1a10b 100644
--- a/file-events/src/main/java/net/rubygrapefruit/platform/internal/jni/Abst... | ['file-events/src/main/java/net/rubygrapefruit/platform/internal/jni/AbstractFileEventFunctions.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 315,073 | 63,199 | 8,953 | 140 | 181 | 28 | 4 | 1 | 5,295 | 155 | 1,068 | 49 | 1 | 1 | 1970-01-01T00:26:45 | 104 | Java | {'Java': 346938, 'C++': 165077, 'Groovy': 162970, 'C': 5237, 'Kotlin': 285} | Apache License 2.0 |
172 | gradle/native-platform/261/260 | gradle | native-platform | https://github.com/gradle/native-platform/issues/260 | https://github.com/gradle/native-platform/pull/261 | https://github.com/gradle/native-platform/pull/261 | 1 | fixes | Report an error when the file watching thread stops | When `executeRunLoop0` throws an error in the file watcher thread, this goes unnoticed and the watching thread stops. That means that the watcher does not look for changes any more, even though it did not notify the client about this. This causes changes to go undetected, as for example shown in this Gradle issue: http... | 02fe1981f03befe54e48824e46c7d9bccb680009 | 2968564cb7a97e822d0ac4a68f087e1427caf3d2 | https://github.com/gradle/native-platform/compare/02fe1981f03befe54e48824e46c7d9bccb680009...2968564cb7a97e822d0ac4a68f087e1427caf3d2 | diff --git a/file-events/src/main/java/net/rubygrapefruit/platform/internal/jni/AbstractFileEventFunctions.java b/file-events/src/main/java/net/rubygrapefruit/platform/internal/jni/AbstractFileEventFunctions.java
index 7d1a10b..7db30b1 100644
--- a/file-events/src/main/java/net/rubygrapefruit/platform/internal/jni/Abst... | ['file-events/src/main/java/net/rubygrapefruit/platform/internal/jni/AbstractFileEventFunctions.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 315,139 | 63,211 | 8,955 | 140 | 1,157 | 175 | 16 | 1 | 362 | 55 | 82 | 1 | 1 | 0 | 1970-01-01T00:26:45 | 104 | Java | {'Java': 346938, 'C++': 165077, 'Groovy': 162970, 'C': 5237, 'Kotlin': 285} | Apache License 2.0 |
1,500 | hashgraph/hedera-mirror-node/234/195 | hashgraph | hedera-mirror-node | https://github.com/hashgraph/hedera-mirror-node/issues/195 | https://github.com/hashgraph/hedera-mirror-node/pull/234 | https://github.com/hashgraph/hedera-mirror-node/pull/234 | 1 | fixes | Record file hash mismatch with previous | **Detailed Description**
`File Hash Mismatch with previous` error still occurs even after the fix for #157.
**Actual Behavior**
1. Run record downloader
2. Run record parser
Wait until hash mismatch occurs.
**Expected Behavior**
Records download, verified and moved to valid with no errors.
**Environment:*... | 9a70800fd04d45f2183b89c83b92e3fde6bba115 | e6ec5769bd26f1aa65af6125be64418998324015 | https://github.com/hashgraph/hedera-mirror-node/compare/9a70800fd04d45f2183b89c83b92e3fde6bba115...e6ec5769bd26f1aa65af6125be64418998324015 | diff --git a/src/main/java/com/hedera/downloader/RecordFileDownloader.java b/src/main/java/com/hedera/downloader/RecordFileDownloader.java
index 0470d34b2..5c7e570e6 100644
--- a/src/main/java/com/hedera/downloader/RecordFileDownloader.java
+++ b/src/main/java/com/hedera/downloader/RecordFileDownloader.java
@@ -28,6 +2... | ['src/test/java/com/hedera/downloader/RecordFileDownloaderTestV1.java', 'src/main/java/com/hedera/downloader/RecordFileDownloader.java', 'src/test/java/com/hedera/downloader/RecordFileDownloaderTestV2.java'] | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 263,942 | 61,198 | 7,599 | 32 | 5,063 | 1,209 | 100 | 1 | 2,032 | 192 | 724 | 29 | 0 | 1 | 1970-01-01T00:26:08 | 103 | Java | {'Java': 8228904, 'JavaScript': 1607027, 'Go': 582284, 'Kotlin': 65844, 'PLpgSQL': 50429, 'Solidity': 45435, 'Gherkin': 33509, 'Shell': 27165, 'Mustache': 22158, 'Dockerfile': 17413, 'HTML': 1783, 'Python': 1445, 'CSS': 1425} | Apache License 2.0 |
1,499 | hashgraph/hedera-mirror-node/241/195 | hashgraph | hedera-mirror-node | https://github.com/hashgraph/hedera-mirror-node/issues/195 | https://github.com/hashgraph/hedera-mirror-node/pull/241 | https://github.com/hashgraph/hedera-mirror-node/pull/241 | 1 | fixes | Record file hash mismatch with previous | **Detailed Description**
`File Hash Mismatch with previous` error still occurs even after the fix for #157.
**Actual Behavior**
1. Run record downloader
2. Run record parser
Wait until hash mismatch occurs.
**Expected Behavior**
Records download, verified and moved to valid with no errors.
**Environment:*... | 95e521ed47e6be33861b2798a9f0334b7c00fa6c | 1c8a093b8066b38ee92d6fd8300d1b942073d1d2 | https://github.com/hashgraph/hedera-mirror-node/compare/95e521ed47e6be33861b2798a9f0334b7c00fa6c...1c8a093b8066b38ee92d6fd8300d1b942073d1d2 | diff --git a/src/main/java/com/hedera/downloader/RecordFileDownloader.java b/src/main/java/com/hedera/downloader/RecordFileDownloader.java
index cf5320e2d..8a6cca292 100644
--- a/src/main/java/com/hedera/downloader/RecordFileDownloader.java
+++ b/src/main/java/com/hedera/downloader/RecordFileDownloader.java
@@ -29,6 +2... | ['src/main/java/com/hedera/downloader/RecordFileDownloader.java', 'src/test/java/com/hedera/downloader/RecordFileDownloaderTest.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 251,836 | 58,166 | 7,231 | 34 | 5,186 | 1,239 | 104 | 1 | 2,032 | 192 | 724 | 29 | 0 | 1 | 1970-01-01T00:26:08 | 103 | Java | {'Java': 8228904, 'JavaScript': 1607027, 'Go': 582284, 'Kotlin': 65844, 'PLpgSQL': 50429, 'Solidity': 45435, 'Gherkin': 33509, 'Shell': 27165, 'Mustache': 22158, 'Dockerfile': 17413, 'HTML': 1783, 'Python': 1445, 'CSS': 1425} | Apache License 2.0 |
1,506 | hashgraph/hedera-mirror-node/48/42 | hashgraph | hedera-mirror-node | https://github.com/hashgraph/hedera-mirror-node/issues/42 | https://github.com/hashgraph/hedera-mirror-node/pull/48 | https://github.com/hashgraph/hedera-mirror-node/pull/48 | 1 | fixes | Crash on invalid account balance csv | Actual:
```console
2019-08-15 15:10:37,094 INFO [main ] configloader Loading configuration from ./config/config.json
2019-08-15 15:11:17,133 INFO [main ] balancelogger No balance file to parse found
2019-08-15 15:11:17,133 INFO [main ] balancelogger Last Balance processing done
2019-08-15 15:11:17,133 INFO ... | d1acd560b9547257b96b888e6fbca33931150009 | c33a1e1ba87838e80f7f65638433484432676cc2 | https://github.com/hashgraph/hedera-mirror-node/compare/d1acd560b9547257b96b888e6fbca33931150009...c33a1e1ba87838e80f7f65638433484432676cc2 | diff --git a/src/main/java/com/hedera/balanceFileLogger/BalanceFileLogger.java b/src/main/java/com/hedera/balanceFileLogger/BalanceFileLogger.java
index 0406598ed..3a5acffdc 100644
--- a/src/main/java/com/hedera/balanceFileLogger/BalanceFileLogger.java
+++ b/src/main/java/com/hedera/balanceFileLogger/BalanceFileLogger.... | ['src/main/java/com/hedera/balanceFileLogger/BalanceFileLogger.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 267,059 | 61,513 | 7,531 | 30 | 421 | 67 | 12 | 1 | 1,592 | 133 | 484 | 22 | 0 | 1 | 1970-01-01T00:26:06 | 103 | Java | {'Java': 8228904, 'JavaScript': 1607027, 'Go': 582284, 'Kotlin': 65844, 'PLpgSQL': 50429, 'Solidity': 45435, 'Gherkin': 33509, 'Shell': 27165, 'Mustache': 22158, 'Dockerfile': 17413, 'HTML': 1783, 'Python': 1445, 'CSS': 1425} | Apache License 2.0 |
1,498 | hashgraph/hedera-mirror-node/286/275 | hashgraph | hedera-mirror-node | https://github.com/hashgraph/hedera-mirror-node/issues/275 | https://github.com/hashgraph/hedera-mirror-node/pull/286 | https://github.com/hashgraph/hedera-mirror-node/pull/286 | 1 | fixes | Log AWS error messages on ListObjects failures | **Detailed Description**
During upgrade, there were no files being downloaded, due to SSL/ca-cert errors that were generated at debug-level for the AWS code, but nothing was logged in the mirror-node.
The AWS error was a "trustanchors parameter must be non-empty" error.
**Actual Behavior**
**Expected Behavior... | 0deb5e572e0a3b64d4124045ac1c43264531d8df | 1a12a0bbdcd31f3a9f183aaefd80f638a01ad4c9 | https://github.com/hashgraph/hedera-mirror-node/compare/0deb5e572e0a3b64d4124045ac1c43264531d8df...1a12a0bbdcd31f3a9f183aaefd80f638a01ad4c9 | diff --git a/src/main/java/com/hedera/configLoader/ConfigLoader.java b/src/main/java/com/hedera/configLoader/ConfigLoader.java
index 2ba652bf0..4297ab865 100644
--- a/src/main/java/com/hedera/configLoader/ConfigLoader.java
+++ b/src/main/java/com/hedera/configLoader/ConfigLoader.java
@@ -28,6 +28,7 @@ import com.google... | ['src/main/java/com/hedera/downloader/Downloader.java', 'src/main/java/com/hedera/configLoader/ConfigLoader.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 253,257 | 58,780 | 7,316 | 40 | 4,787 | 952 | 101 | 2 | 443 | 64 | 96 | 13 | 0 | 0 | 1970-01-01T00:26:08 | 103 | Java | {'Java': 8228904, 'JavaScript': 1607027, 'Go': 582284, 'Kotlin': 65844, 'PLpgSQL': 50429, 'Solidity': 45435, 'Gherkin': 33509, 'Shell': 27165, 'Mustache': 22158, 'Dockerfile': 17413, 'HTML': 1783, 'Python': 1445, 'CSS': 1425} | Apache License 2.0 |
1,497 | hashgraph/hedera-mirror-node/71/36 | hashgraph | hedera-mirror-node | https://github.com/hashgraph/hedera-mirror-node/issues/36 | https://github.com/hashgraph/hedera-mirror-node/pull/71 | https://github.com/hashgraph/hedera-mirror-node/pull/71#issuecomment-523539740 | 1 | fixes | Don't process partial files | Due to the nature of downloading to files and processing the files in separate processes, it's possible that processing could occur on a partially downloaded file. Whether it's polling for new files manually or using java's WatcherService, it's a possibility that the S3 downloader created the file, wrote some bytes but... | 5725dde42826cc3511bae74c6cd7009d2f881fed | a1d99c88a3c98e19b1ed57d193901537a48d811c | https://github.com/hashgraph/hedera-mirror-node/compare/5725dde42826cc3511bae74c6cd7009d2f881fed...a1d99c88a3c98e19b1ed57d193901537a48d811c | diff --git a/src/main/java/com/hedera/configLoader/ConfigLoader.java b/src/main/java/com/hedera/configLoader/ConfigLoader.java
index 28f64a7ea..492a8d046 100644
--- a/src/main/java/com/hedera/configLoader/ConfigLoader.java
+++ b/src/main/java/com/hedera/configLoader/ConfigLoader.java
@@ -355,6 +355,10 @@ public class C... | ['src/main/java/com/hedera/configLoader/ConfigLoader.java', 'src/main/java/com/hedera/downloader/AccountBalancesDownloader.java', 'src/main/java/com/hedera/downloader/Downloader.java', 'src/main/java/com/hedera/downloader/EventStreamFileDownloader.java', 'src/main/java/com/hedera/downloader/RecordFileDownloader.java', ... | {'.java': 6} | 6 | 6 | 0 | 0 | 6 | 266,279 | 62,008 | 7,589 | 30 | 10,678 | 2,553 | 250 | 6 | 1,142 | 190 | 224 | 9 | 0 | 0 | 1970-01-01T00:26:06 | 103 | Java | {'Java': 8228904, 'JavaScript': 1607027, 'Go': 582284, 'Kotlin': 65844, 'PLpgSQL': 50429, 'Solidity': 45435, 'Gherkin': 33509, 'Shell': 27165, 'Mustache': 22158, 'Dockerfile': 17413, 'HTML': 1783, 'Python': 1445, 'CSS': 1425} | Apache License 2.0 |
1,502 | hashgraph/hedera-mirror-node/193/192 | hashgraph | hedera-mirror-node | https://github.com/hashgraph/hedera-mirror-node/issues/192 | https://github.com/hashgraph/hedera-mirror-node/pull/193 | https://github.com/hashgraph/hedera-mirror-node/pull/193 | 1 | fixes | When address book, that is larger than a single transaction, is updated - mirror node stops processing | **Detailed Description**
Mainnet mirror node stopped processing (and could not continue processing after restart) when it encountered an address book update that was larger than a single transaction.
The address book update in mainnet was a FILEUPDATE followed by 2 FILEAPPEND operations. This broke the mirrornode... | bd4ceb2a2c334535c6cf41a6bad3d14daa1f3e82 | 245b89602df53d89689e16810282738e6ab0d754 | https://github.com/hashgraph/hedera-mirror-node/compare/bd4ceb2a2c334535c6cf41a6bad3d14daa1f3e82...245b89602df53d89689e16810282738e6ab0d754 | diff --git a/src/main/java/com/hedera/addressBook/NetworkAddressBook.java b/src/main/java/com/hedera/addressBook/NetworkAddressBook.java
index 763ac2ee5..3d075ee18 100644
--- a/src/main/java/com/hedera/addressBook/NetworkAddressBook.java
+++ b/src/main/java/com/hedera/addressBook/NetworkAddressBook.java
@@ -22,6 +22,7 ... | ['src/main/java/com/hedera/addressBook/NetworkAddressBook.java', 'src/main/java/com/hedera/recordFileLogger/RecordFileLogger.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 262,900 | 60,976 | 7,575 | 32 | 1,782 | 348 | 34 | 2 | 1,388 | 87 | 325 | 25 | 0 | 1 | 1970-01-01T00:26:07 | 103 | Java | {'Java': 8228904, 'JavaScript': 1607027, 'Go': 582284, 'Kotlin': 65844, 'PLpgSQL': 50429, 'Solidity': 45435, 'Gherkin': 33509, 'Shell': 27165, 'Mustache': 22158, 'Dockerfile': 17413, 'HTML': 1783, 'Python': 1445, 'CSS': 1425} | Apache License 2.0 |
1,503 | hashgraph/hedera-mirror-node/133/132 | hashgraph | hedera-mirror-node | https://github.com/hashgraph/hedera-mirror-node/issues/132 | https://github.com/hashgraph/hedera-mirror-node/pull/133 | https://github.com/hashgraph/hedera-mirror-node/pull/133 | 1 | fixes | RecordFileDownloader re-downloads same files over and over | The hash map in ApplicationStatus.java isn't static so when it's used by several classes, changes made by one don't propagate to the other. As a result, RecordFileDownloader and Downloader were managing two separate hash maps. | 7c1b352c86bb9b9712d3ab4b82c160b63e19bb13 | f7ef9da46ce2acc3b5184535df1d707586e65185 | https://github.com/hashgraph/hedera-mirror-node/compare/7c1b352c86bb9b9712d3ab4b82c160b63e19bb13...f7ef9da46ce2acc3b5184535df1d707586e65185 | diff --git a/src/main/java/com/hedera/databaseUtilities/ApplicationStatus.java b/src/main/java/com/hedera/databaseUtilities/ApplicationStatus.java
index 8d2847feb..30eab5987 100644
--- a/src/main/java/com/hedera/databaseUtilities/ApplicationStatus.java
+++ b/src/main/java/com/hedera/databaseUtilities/ApplicationStatus.... | ['src/main/java/com/hedera/databaseUtilities/ApplicationStatus.java', 'src/main/java/com/hedera/parser/RecordFileParser.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 252,987 | 58,622 | 7,272 | 30 | 320 | 43 | 3 | 2 | 226 | 35 | 47 | 1 | 0 | 0 | 1970-01-01T00:26:06 | 103 | Java | {'Java': 8228904, 'JavaScript': 1607027, 'Go': 582284, 'Kotlin': 65844, 'PLpgSQL': 50429, 'Solidity': 45435, 'Gherkin': 33509, 'Shell': 27165, 'Mustache': 22158, 'Dockerfile': 17413, 'HTML': 1783, 'Python': 1445, 'CSS': 1425} | Apache License 2.0 |
1,504 | hashgraph/hedera-mirror-node/59/57 | hashgraph | hedera-mirror-node | https://github.com/hashgraph/hedera-mirror-node/issues/57 | https://github.com/hashgraph/hedera-mirror-node/pull/59 | https://github.com/hashgraph/hedera-mirror-node/pull/59 | 1 | fixes | FileWatcher not notified of files created while down | `BalanceFileLogger` uses the Java file watching API to be notified of creates and updates of files that the downloader writes. However, if `BalanceFileLogger` is down while downloader writes them then there will be no notification. We need to look for new files on startup. | ca4696cc42aecdb6c56986b390ab4e69f63db65c | 2f7ce61451e9e12f4577d57948f600004d80afca | https://github.com/hashgraph/hedera-mirror-node/compare/ca4696cc42aecdb6c56986b390ab4e69f63db65c...2f7ce61451e9e12f4577d57948f600004d80afca | diff --git a/src/main/java/com/hedera/balanceFileLogger/BalanceFileLogger.java b/src/main/java/com/hedera/balanceFileLogger/BalanceFileLogger.java
index 3a5acffdc..de10c1c00 100644
--- a/src/main/java/com/hedera/balanceFileLogger/BalanceFileLogger.java
+++ b/src/main/java/com/hedera/balanceFileLogger/BalanceFileLogger.... | ['src/main/java/com/hedera/balanceFileLogger/BalanceFileLogger.java', 'src/main/java/com/hedera/fileWatcher/FileWatcher.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 269,660 | 62,093 | 7,612 | 30 | 19,981 | 3,753 | 462 | 2 | 273 | 44 | 56 | 1 | 0 | 0 | 1970-01-01T00:26:06 | 103 | Java | {'Java': 8228904, 'JavaScript': 1607027, 'Go': 582284, 'Kotlin': 65844, 'PLpgSQL': 50429, 'Solidity': 45435, 'Gherkin': 33509, 'Shell': 27165, 'Mustache': 22158, 'Dockerfile': 17413, 'HTML': 1783, 'Python': 1445, 'CSS': 1425} | Apache License 2.0 |
1,501 | hashgraph/hedera-mirror-node/213/203 | hashgraph | hedera-mirror-node | https://github.com/hashgraph/hedera-mirror-node/issues/203 | https://github.com/hashgraph/hedera-mirror-node/pull/213 | https://github.com/hashgraph/hedera-mirror-node/pull/213 | 1 | fixes | DB migration error | **Detailed Description**
ERROR [main ] o.f.c.i.c.DbMigrate Migration of schema "public" to version 1.8 - MigrateConfig failed! Changes successfully rolled back.
The issue affects any attempt to migrate the database (which running any of the services does) when:
- The database had not already migrated v1.8 of the D... | f6e13feadced118b964abb73a9b5a0a4829a0ae8 | 1df691351b0177f0dd04569911b3e76d66dc68f2 | https://github.com/hashgraph/hedera-mirror-node/compare/f6e13feadced118b964abb73a9b5a0a4829a0ae8...1df691351b0177f0dd04569911b3e76d66dc68f2 | diff --git a/src/main/java/com/hedera/databaseUtilities/DatabaseUtilities.java b/src/main/java/com/hedera/databaseUtilities/DatabaseUtilities.java
index ce51629af..7cc839716 100644
--- a/src/main/java/com/hedera/databaseUtilities/DatabaseUtilities.java
+++ b/src/main/java/com/hedera/databaseUtilities/DatabaseUtilities.... | ['src/main/java/db/migration/V1_8__MigrateConfig.java', 'src/main/java/com/hedera/databaseUtilities/DatabaseUtilities.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 264,090 | 61,221 | 7,598 | 32 | 8,948 | 1,940 | 213 | 2 | 1,375 | 192 | 308 | 27 | 0 | 0 | 1970-01-01T00:26:07 | 103 | Java | {'Java': 8228904, 'JavaScript': 1607027, 'Go': 582284, 'Kotlin': 65844, 'PLpgSQL': 50429, 'Solidity': 45435, 'Gherkin': 33509, 'Shell': 27165, 'Mustache': 22158, 'Dockerfile': 17413, 'HTML': 1783, 'Python': 1445, 'CSS': 1425} | Apache License 2.0 |
1,181 | adyen/adyen-android/1242/1234 | adyen | adyen-android | https://github.com/Adyen/adyen-android/issues/1234 | https://github.com/Adyen/adyen-android/pull/1242 | https://github.com/Adyen/adyen-android/pull/1242 | 1 | fixes | Crash on AwaitView when DNKA is active | **Describe the bug**
Application Crashes when trying to pay with MBWay with DNKA (Do Not Keep Activities) active, if the user goes to background and then to foreground again.
This is problematic because MBWay will force the user to navigate to a different app to confirm the payment, which can increase the probabili... | c2601443d8288a1cd4cfcc315a3a3644f2602c63 | 6ed7e3b4601b4822fc54a4ced0327c95f7f3a927 | https://github.com/adyen/adyen-android/compare/c2601443d8288a1cd4cfcc315a3a3644f2602c63...6ed7e3b4601b4822fc54a4ced0327c95f7f3a927 | diff --git a/await/src/main/java/com/adyen/checkout/await/AwaitView.java b/await/src/main/java/com/adyen/checkout/await/AwaitView.java
index 9c305fc26..73a09d0e5 100644
--- a/await/src/main/java/com/adyen/checkout/await/AwaitView.java
+++ b/await/src/main/java/com/adyen/checkout/await/AwaitView.java
@@ -123,6 +123,10 @... | ['await/src/main/java/com/adyen/checkout/await/AwaitView.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 579,687 | 119,249 | 17,138 | 189 | 81 | 17 | 4 | 1 | 5,095 | 247 | 960 | 71 | 1 | 1 | 1970-01-01T00:28:07 | 100 | Kotlin | {'Kotlin': 3298243, 'Java': 600315, 'Shell': 2967} | MIT License |
3,602 | azure/azure-sdk-tools/388/384 | azure | azure-sdk-tools | https://github.com/Azure/azure-sdk-tools/issues/384 | https://github.com/Azure/azure-sdk-tools/pull/388 | https://github.com/Azure/azure-sdk-tools/pull/388 | 2 | fixes | [Bug-Java] Nested interface is not shown. | The nested interface is not shown here, but it should be shown because it is an interface defined in an interface. Anything in an interface is public by default.
For example, https://apiview.dev/Assemblies/Review/bc9e446581a4475ca4df0a011c152da7
The Azure search API view doesn't show the inner nested interface [Bui... | 478a6f039e84e985df691047a2794681c29037b2 | 6eb476d214a6a850967e5588585dc78f07609eaf | https://github.com/azure/azure-sdk-tools/compare/478a6f039e84e985df691047a2794681c29037b2...6eb476d214a6a850967e5588585dc78f07609eaf | diff --git a/src/java/apiview-java-processor/src/main/java/com/azure/tools/apiview/processor/analysers/ASTAnalyser.java b/src/java/apiview-java-processor/src/main/java/com/azure/tools/apiview/processor/analysers/ASTAnalyser.java
index 5eb15d32..3ef55df7 100644
--- a/src/java/apiview-java-processor/src/main/java/com/azu... | ['src/java/apiview-java-processor/src/main/java/com/azure/tools/apiview/processor/analysers/util/ASTUtils.java', 'src/java/apiview-java-processor/src/main/java/com/azure/tools/apiview/processor/analysers/ASTAnalyser.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 63,760 | 12,190 | 1,679 | 18 | 2,975 | 562 | 56 | 2 | 543 | 49 | 134 | 5 | 2 | 0 | 1970-01-01T00:26:21 | 100 | C# | {'C#': 3648314, 'TypeScript': 1010241, 'Python': 790921, 'PowerShell': 770752, 'Java': 312306, 'C++': 185881, 'HTML': 176466, 'Swift': 137428, 'Go': 66983, 'JavaScript': 65011, 'Bicep': 46692, 'SCSS': 39650, 'CMake': 26255, 'Nunjucks': 19830, 'Shell': 13241, 'Smarty': 11608, 'CSS': 6089, 'Dockerfile': 5601, 'Batchfile'... | MIT License |
946 | jdi-testing/jdi-light/1506/1307 | jdi-testing | jdi-light | https://github.com/jdi-testing/jdi-light/issues/1307 | https://github.com/jdi-testing/jdi-light/pull/1506 | https://github.com/jdi-testing/jdi-light/pull/1506 | 1 | fix | Fix form methods() for forms that have more than one button on it | Could be checked in these branch
https://github.com/jdi-testing/jdi-light/tree/forms_methods_check
Here is the test for it
BootstrapFormTests.java:51 | c2d5ab6d4924efb8f9a4811b64c604d9ed1b56e6 | f04441d8d76425b42e22adb41629fb3941d3e5a8 | https://github.com/jdi-testing/jdi-light/compare/c2d5ab6d4924efb8f9a4811b64c604d9ed1b56e6...f04441d8d76425b42e22adb41629fb3941d3e5a8 | diff --git a/jdi-light-bootstrap-tests/src/main/java/io/github/com/sections/form/SupportMessageForm.java b/jdi-light-bootstrap-tests/src/main/java/io/github/com/sections/form/SupportMessageForm.java
index 9d6831694..e8c9e9cb4 100644
--- a/jdi-light-bootstrap-tests/src/main/java/io/github/com/sections/form/SupportMessag... | ['jdi-light/src/main/java/com/epam/jdi/light/common/UIUtils.java', 'jdi-light-bootstrap-tests/src/main/java/io/github/com/sections/form/SupportMessageForm.java', 'jdi-light-bootstrap-tests/src/test/java/io/github/epam/bootstrap/tests/composite/section/form/SimpleFormTests.java'] | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 654,884 | 151,229 | 18,629 | 312 | 176 | 36 | 3 | 1 | 154 | 14 | 35 | 5 | 1 | 0 | 1970-01-01T00:26:15 | 98 | Java | {'Java': 5910794, 'Gherkin': 47856, 'Shell': 14702, 'XSLT': 6290, 'Batchfile': 79} | MIT License |
9,363 | eclipse-vertx/vertx-codegen/193/192 | eclipse-vertx | vertx-codegen | https://github.com/eclipse-vertx/vertx-codegen/issues/192 | https://github.com/eclipse-vertx/vertx-codegen/pull/193 | https://github.com/eclipse-vertx/vertx-codegen/pull/193 | 1 | fixes | IndexOutOfBoundsException when processing javadocs | codegen will crash while processing javadocs that are:
```
/**
* @deprecated
* @see #handler(RoutingContext ctx)
* @param ctx the context
*/
``` | 4ac5bb3f00199619d607959caac1ab799f427f6b | 94cb4c7e572c222c219e676c709c7fa579fd0c82 | https://github.com/eclipse-vertx/vertx-codegen/compare/4ac5bb3f00199619d607959caac1ab799f427f6b...94cb4c7e572c222c219e676c709c7fa579fd0c82 | diff --git a/src/main/java/io/vertx/codegen/doc/Doc.java b/src/main/java/io/vertx/codegen/doc/Doc.java
index 0daa8c1d..f0c03fd1 100644
--- a/src/main/java/io/vertx/codegen/doc/Doc.java
+++ b/src/main/java/io/vertx/codegen/doc/Doc.java
@@ -49,7 +49,13 @@ public class Doc {
String name = matcher.group(2);
... | ['src/test/java/io/vertx/test/codegen/DocTest.java', 'src/main/java/io/vertx/codegen/doc/Doc.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 559,943 | 127,707 | 16,330 | 129 | 374 | 79 | 8 | 1 | 158 | 23 | 38 | 9 | 0 | 1 | 1970-01-01T00:25:29 | 98 | Java | {'Java': 1488211} | Apache License 2.0 |
243 | inl/blacklab/237/236 | inl | blacklab | https://github.com/INL/BlackLab/issues/236 | https://github.com/INL/BlackLab/pull/237 | https://github.com/INL/BlackLab/pull/237#issuecomment-994888174 | 1 | fixes | Retrieving hit group contents no longer works | It seems that since [this commit](https://github.com/INL/BlackLab/commit/fa8720487f8aee79ad8bd600ae98173e04abc4ec) BlackLab always launches a hitsWindow() search, even when there is a groupBy and viewGroup parameter, causing them to be ignored and group contents requests to return the entire (ungrouped) source hits.
| 1fe8377706234f5b46b9f85b97fa892ed2a418fc | 51971210049568bcc1c3c7421b5a34faf09b8fd3 | https://github.com/inl/blacklab/compare/1fe8377706234f5b46b9f85b97fa892ed2a418fc...51971210049568bcc1c3c7421b5a34faf09b8fd3 | diff --git a/server/src/main/java/nl/inl/blacklab/server/requesthandlers/RequestHandlerHits.java b/server/src/main/java/nl/inl/blacklab/server/requesthandlers/RequestHandlerHits.java
index f36cfa4b..e5283a86 100644
--- a/server/src/main/java/nl/inl/blacklab/server/requesthandlers/RequestHandlerHits.java
+++ b/server/sr... | ['server/src/main/java/nl/inl/blacklab/server/requesthandlers/RequestHandlerHits.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 3,518,144 | 740,705 | 99,981 | 600 | 1,892 | 389 | 27 | 1 | 319 | 37 | 85 | 2 | 1 | 0 | 1970-01-01T00:27:19 | 85 | Java | {'Java': 4301847, 'JavaScript': 55674, 'C': 19605, 'HTML': 7491, 'Makefile': 7075, 'Shell': 5159, 'Dockerfile': 4470, 'CSS': 1217, 'Stylus': 1142, 'XSLT': 311} | Apache License 2.0 |
353 | hazelcast/hazelcast-simulator/303/292 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/292 | https://github.com/hazelcast/hazelcast-simulator/pull/303 | https://github.com/hazelcast/hazelcast-simulator/pull/303 | 1 | fix | Stabilizer not Failing, error go unreported | Due to a simple error in test code I found this in worker.log
```
grepall worker.log iCacheCas
./worker-10.184.184.149-1-server/worker.log
INFO 2014-09-11 12:48:24,900 [Thread-0] com.hazelcast.stabilizer.worker.MemberWorker: --------------------------- Initializing test iCacheCas ---------------------------
id=... | 102611f184ba8e097e82e8695398e3afcf551f57 | 789659dfe2e6bdf65e9ac98a4351511e7b083852 | https://github.com/hazelcast/hazelcast-simulator/compare/102611f184ba8e097e82e8695398e3afcf551f57...789659dfe2e6bdf65e9ac98a4351511e7b083852 | diff --git a/stabilizer/src/main/java/com/hazelcast/stabilizer/tests/utils/ExceptionReporter.java b/stabilizer/src/main/java/com/hazelcast/stabilizer/tests/utils/ExceptionReporter.java
index 1f92e2fa1..f8efb749b 100644
--- a/stabilizer/src/main/java/com/hazelcast/stabilizer/tests/utils/ExceptionReporter.java
+++ b/stab... | ['stabilizer/src/main/java/com/hazelcast/stabilizer/tests/utils/ExceptionReporter.java', 'stabilizer/src/main/java/com/hazelcast/stabilizer/worker/MemberWorker.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 294,582 | 58,054 | 8,320 | 78 | 781 | 120 | 16 | 1 | 14,771 | 889 | 3,786 | 161 | 0 | 5 | 1970-01-01T00:23:30 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
342 | hazelcast/hazelcast-simulator/1325/1324 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/1324 | https://github.com/hazelcast/hazelcast-simulator/pull/1325 | https://github.com/hazelcast/hazelcast-simulator/pull/1325 | 1 | fix | SIMULATOR_USER rename warning | If the old 'USER' is found in Simulator properties, a big fat error should be given | 4c9b5b845a6d75f002b25e6127bf986ff4f8fc71 | 6e7f9dc259f0925cef9a99c36f09e2dc95df08d3 | https://github.com/hazelcast/hazelcast-simulator/compare/4c9b5b845a6d75f002b25e6127bf986ff4f8fc71...6e7f9dc259f0925cef9a99c36f09e2dc95df08d3 | diff --git a/simulator/src/main/java/com/hazelcast/simulator/common/SimulatorProperties.java b/simulator/src/main/java/com/hazelcast/simulator/common/SimulatorProperties.java
index 902a72d0e..7e4331681 100644
--- a/simulator/src/main/java/com/hazelcast/simulator/common/SimulatorProperties.java
+++ b/simulator/src/main/... | ['simulator/src/test/java/com/hazelcast/simulator/common/SimulatorPropertiesTest.java', 'simulator/src/main/java/com/hazelcast/simulator/common/SimulatorProperties.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 1,025,220 | 205,376 | 26,884 | 227 | 162 | 31 | 5 | 1 | 83 | 16 | 19 | 1 | 0 | 0 | 1970-01-01T00:24:48 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
341 | hazelcast/hazelcast-simulator/1366/1248 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/1248 | https://github.com/hazelcast/hazelcast-simulator/pull/1366 | https://github.com/hazelcast/hazelcast-simulator/pull/1366 | 1 | fixed | Problem starting members, doesn't lead to failure | When there is a problem starting members, this isn't translated to a nice and useful message
```
INFO 11:25:49 =========================================================================
INFO 11:25:49 Starting 2 Workers (2 members, 0 clients)...
FATAL 11:25:50 Could not create 1 member Worker on C_A1 (EXCEPTION_DURING... | c7af9b0b66fb0f19692b00e9c4d1d79c4f2ba165 | 5c913ce771a28a5d33056be57e5fbae3649aee77 | https://github.com/hazelcast/hazelcast-simulator/compare/c7af9b0b66fb0f19692b00e9c4d1d79c4f2ba165...5c913ce771a28a5d33056be57e5fbae3649aee77 | diff --git a/simulator/src/main/java/com/hazelcast/simulator/common/FailureType.java b/simulator/src/main/java/com/hazelcast/simulator/common/FailureType.java
index e3fb5f524..352c7024d 100644
--- a/simulator/src/main/java/com/hazelcast/simulator/common/FailureType.java
+++ b/simulator/src/main/java/com/hazelcast/simul... | ['simulator/src/main/java/com/hazelcast/simulator/common/FailureType.java', 'simulator/src/main/java/com/hazelcast/simulator/coordinator/FailureCollector.java', 'simulator/src/main/java/com/hazelcast/simulator/protocol/operation/FailureOperation.java', 'simulator/src/main/java/com/hazelcast/simulator/coordinator/Coordi... | {'.java': 4} | 4 | 4 | 0 | 0 | 4 | 1,032,470 | 206,930 | 27,075 | 228 | 3,152 | 615 | 51 | 4 | 1,968 | 218 | 577 | 33 | 0 | 1 | 1970-01-01T00:24:48 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
340 | hazelcast/hazelcast-simulator/1424/1423 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/1423 | https://github.com/hazelcast/hazelcast-simulator/pull/1424 | https://github.com/hazelcast/hazelcast-simulator/pull/1424 | 1 | fix | Bug in harakiri | The problem is in the startup of the harakiri monitor after a test completes. Instead of setting the actual key/value, the literal values are taken. So if you have your identity configured as '''bla/ec2.identity''', then '''bla/ec2.identity''' is the literal value.
The cause of this is the SimulatorProperties.asMap ... | d8d4ebf4f4b0b67e99d1cf289868b0daa41dee83 | db6a948f879dfacba235f8a67774256782100bb8 | https://github.com/hazelcast/hazelcast-simulator/compare/d8d4ebf4f4b0b67e99d1cf289868b0daa41dee83...db6a948f879dfacba235f8a67774256782100bb8 | diff --git a/simulator/src/main/java/com/hazelcast/simulator/common/SimulatorProperties.java b/simulator/src/main/java/com/hazelcast/simulator/common/SimulatorProperties.java
index d4638aefd..5ef21b522 100644
--- a/simulator/src/main/java/com/hazelcast/simulator/common/SimulatorProperties.java
+++ b/simulator/src/main/... | ['simulator/src/main/java/com/hazelcast/simulator/common/SimulatorProperties.java', 'simulator/src/main/java/com/hazelcast/simulator/coordinator/AgentUtils.java', 'simulator/src/main/java/com/hazelcast/simulator/utils/CloudProviderUtils.java'] | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 841,823 | 168,898 | 22,266 | 170 | 1,032 | 203 | 22 | 3 | 389 | 56 | 78 | 3 | 0 | 0 | 1970-01-01T00:24:49 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
344 | hazelcast/hazelcast-simulator/1168/1130 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/1130 | https://github.com/hazelcast/hazelcast-simulator/pull/1168 | https://github.com/hazelcast/hazelcast-simulator/pull/1168 | 1 | fixes | Parallel test suites | Currently test suites can't be run in parallel, because in the Agent only 1 testsuite can be active.
| 9b79fa3cfdefab472e5e1c0261150e7e8a51d75d | 2d5d77202337d6bc369d1f45f5a4fc91d3447f24 | https://github.com/hazelcast/hazelcast-simulator/compare/9b79fa3cfdefab472e5e1c0261150e7e8a51d75d...2d5d77202337d6bc369d1f45f5a4fc91d3447f24 | diff --git a/simulator/src/main/java/com/hazelcast/simulator/agent/Agent.java b/simulator/src/main/java/com/hazelcast/simulator/agent/Agent.java
index 03c687d95..a87eec8d6 100644
--- a/simulator/src/main/java/com/hazelcast/simulator/agent/Agent.java
+++ b/simulator/src/main/java/com/hazelcast/simulator/agent/Agent.java... | ['simulator/src/main/java/com/hazelcast/simulator/protocol/processors/AgentOperationProcessor.java', 'simulator/src/main/java/com/hazelcast/simulator/agent/FailureHandlerImpl.java', 'simulator/src/test/java/com/hazelcast/simulator/coordinator/FailureCollectorTest.java', 'simulator/src/main/java/com/hazelcast/simulator/... | {'.java': 20} | 20 | 20 | 0 | 0 | 20 | 982,145 | 196,691 | 25,645 | 225 | 7,106 | 1,407 | 160 | 11 | 101 | 18 | 23 | 2 | 0 | 0 | 1970-01-01T00:24:32 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
345 | hazelcast/hazelcast-simulator/1128/1123 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/1123 | https://github.com/hazelcast/hazelcast-simulator/pull/1128 | https://github.com/hazelcast/hazelcast-simulator/pull/1128 | 1 | fix | Remote: when fail fast, test not aborting | When deliberately causing a test failure by killing the members (and having the load generated by a client),the testcase runner doesn't complete
```
INFO 14:49:10 AtomicLongTest Running 00d 00h 00m 20s ( 6.67%) 54,600 ops 3,409.70 ops/s 292 µs (avg) 2,619 µs (99.9th) 19,628 µs (max)
INFO ... | 86e080b937212589215b80309a3bef116e9da3f9 | c3e7b452eb6aa26fe305dd41ab7ed91641aa9da7 | https://github.com/hazelcast/hazelcast-simulator/compare/86e080b937212589215b80309a3bef116e9da3f9...c3e7b452eb6aa26fe305dd41ab7ed91641aa9da7 | diff --git a/simulator/src/main/java/com/hazelcast/simulator/agent/Agent.java b/simulator/src/main/java/com/hazelcast/simulator/agent/Agent.java
index 49616abb7..03c687d95 100644
--- a/simulator/src/main/java/com/hazelcast/simulator/agent/Agent.java
+++ b/simulator/src/main/java/com/hazelcast/simulator/agent/Agent.java... | ['simulator/src/main/java/com/hazelcast/simulator/agent/FailureSender.java', 'simulator/src/test/java/com/hazelcast/simulator/agent/workerprocess/WorkerProcessFailureMonitorTest.java', 'simulator/src/main/java/com/hazelcast/simulator/agent/FailureSenderImpl.java', 'simulator/src/test/java/com/hazelcast/simulator/agent/... | {'.java': 9} | 9 | 9 | 0 | 0 | 9 | 955,217 | 191,509 | 24,947 | 223 | 2,545 | 451 | 46 | 7 | 2,410 | 277 | 892 | 23 | 0 | 1 | 1970-01-01T00:24:32 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
346 | hazelcast/hazelcast-simulator/855/854 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/854 | https://github.com/hazelcast/hazelcast-simulator/pull/855 | https://github.com/hazelcast/hazelcast-simulator/pull/855 | 1 | fixes | Race in PerformanceStateContainer | Because queue's are swapped, it can happen that a performancestate is added to a queue that moments later gets swapped out and processed. So you get an unprocessed PerformanceState on the queue which will never been seen
| 752e35a5e13d13210e8b2793dd0be0e18a5bf9cf | 74e25d4fc23495e8ddf8ac5729e48a1e6976413e | https://github.com/hazelcast/hazelcast-simulator/compare/752e35a5e13d13210e8b2793dd0be0e18a5bf9cf...74e25d4fc23495e8ddf8ac5729e48a1e6976413e | diff --git a/simulator/src/main/java/com/hazelcast/simulator/coordinator/PerformanceStateContainer.java b/simulator/src/main/java/com/hazelcast/simulator/coordinator/PerformanceStateContainer.java
index 210ab7998..282612137 100644
--- a/simulator/src/main/java/com/hazelcast/simulator/coordinator/PerformanceStateContain... | ['simulator/src/main/java/com/hazelcast/simulator/coordinator/PerformanceStateContainer.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 929,484 | 188,147 | 24,481 | 238 | 3,145 | 562 | 42 | 1 | 221 | 37 | 44 | 2 | 0 | 0 | 1970-01-01T00:24:25 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
347 | hazelcast/hazelcast-simulator/707/699 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/699 | https://github.com/hazelcast/hazelcast-simulator/pull/707 | https://github.com/hazelcast/hazelcast-simulator/pull/707 | 1 | fix | InterruptedException in PerformanceThread.run() | Happens from time to time when using external clients (don't know if it will fail on regular tests as well). It's after the testsuite completes, so performance results and probes are written. Maybe it's just not shutdown properly.
```
FATAL 13:58:43 Exception in PerformanceThread.run()
java.lang.RuntimeException: java... | 76278f9af558824f99db2bbed90e23f072a48d2c | 9aedd37210ec8519c8821ff4666c20453128cf0b | https://github.com/hazelcast/hazelcast-simulator/compare/76278f9af558824f99db2bbed90e23f072a48d2c...9aedd37210ec8519c8821ff4666c20453128cf0b | diff --git a/simulator/src/main/java/com/hazelcast/simulator/coordinator/remoting/AgentsClient.java b/simulator/src/main/java/com/hazelcast/simulator/coordinator/remoting/AgentsClient.java
index cc5b5a738..b961bbe36 100644
--- a/simulator/src/main/java/com/hazelcast/simulator/coordinator/remoting/AgentsClient.java
+++ ... | ['simulator/src/main/java/com/hazelcast/simulator/coordinator/remoting/AgentsClient.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 604,552 | 120,494 | 16,628 | 173 | 256 | 39 | 5 | 1 | 1,100 | 67 | 254 | 16 | 0 | 1 | 1970-01-01T00:23:56 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
348 | hazelcast/hazelcast-simulator/644/643 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/643 | https://github.com/hazelcast/hazelcast-simulator/pull/644 | https://github.com/hazelcast/hazelcast-simulator/pull/644 | 1 | fixes | IllegalThreadStateException for WorkerPerformanceMonitorThread | ```
Failure[
message='Worked ran into an unhandled exception'
type='Worker exception'
agentAddress=10.184.183.169
time=Tue May 19 15:52:34 UTC 2015
workerAddress=10.184.183.169:5702
workerId=worker-10.184.183.169-1-server
test=null unknown
cause=java.lang.IllegalThreadStateException
at j... | 7e4e7522e008a12fb2374ba28389b719500b4dfa | 80dbe23bb577efeca7e6cb999f50a39022be532e | https://github.com/hazelcast/hazelcast-simulator/compare/7e4e7522e008a12fb2374ba28389b719500b4dfa...80dbe23bb577efeca7e6cb999f50a39022be532e | diff --git a/simulator/src/main/java/com/hazelcast/simulator/worker/WorkerPerformanceMonitor.java b/simulator/src/main/java/com/hazelcast/simulator/worker/WorkerPerformanceMonitor.java
index a25a19ad6..676ab5f9e 100644
--- a/simulator/src/main/java/com/hazelcast/simulator/worker/WorkerPerformanceMonitor.java
+++ b/simu... | ['simulator/src/main/java/com/hazelcast/simulator/worker/WorkerPerformanceMonitor.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 588,758 | 117,228 | 16,187 | 171 | 1,641 | 260 | 33 | 1 | 1,289 | 66 | 287 | 37 | 0 | 2 | 1970-01-01T00:23:52 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
349 | hazelcast/hazelcast-simulator/631/629 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/629 | https://github.com/hazelcast/hazelcast-simulator/pull/631 | https://github.com/hazelcast/hazelcast-simulator/pull/631 | 1 | fixes | NPE in Provisioner when Simulator was compiled without git metadata | When you e.g. download the Simulator sources as ZIP archive from GitHub there is no git repository/metadata available.
If you compile Simulator and use it, the `Provisioner` fails with a NPE, because it tries to print the git revision of Simulator, which is not available in that case.
The issue will be the underlayin... | 2cd2b5f6ec58a86e6287b392c74fa48435067f3e | 6dde8d581d726021da748f499628911e2905abf8 | https://github.com/hazelcast/hazelcast-simulator/compare/2cd2b5f6ec58a86e6287b392c74fa48435067f3e...6dde8d581d726021da748f499628911e2905abf8 | diff --git a/simulator/src/main/java/com/hazelcast/simulator/common/GitInfo.java b/simulator/src/main/java/com/hazelcast/simulator/common/GitInfo.java
index 8fa9a3a90..783fd426b 100644
--- a/simulator/src/main/java/com/hazelcast/simulator/common/GitInfo.java
+++ b/simulator/src/main/java/com/hazelcast/simulator/common/... | ['simulator/src/main/java/com/hazelcast/simulator/common/GitInfo.java', 'simulator/src/test/java/com/hazelcast/simulator/common/GitInfoTest.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 582,238 | 115,719 | 15,988 | 166 | 1,967 | 365 | 36 | 1 | 1,029 | 94 | 253 | 20 | 0 | 1 | 1970-01-01T00:23:51 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
351 | hazelcast/hazelcast-simulator/321/320 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/320 | https://github.com/hazelcast/hazelcast-simulator/pull/321 | https://github.com/hazelcast/hazelcast-simulator/pull/321 | 1 | fixes | Performance measuring problem | ```
INFO 08:29:24 Operation-count: -3
INFO 08:29:24 Performance: -0.05 ops/s
```
One test failed and I got this output. How can operation count be negative.
| 1515bb7106e12486ca7183adac469b11082bc112 | 015fbde9d9b4da0cd11a315b721618ef1658a277 | https://github.com/hazelcast/hazelcast-simulator/compare/1515bb7106e12486ca7183adac469b11082bc112...015fbde9d9b4da0cd11a315b721618ef1658a277 | diff --git a/stabilizer/src/main/java/com/hazelcast/stabilizer/coordinator/TestCaseRunner.java b/stabilizer/src/main/java/com/hazelcast/stabilizer/coordinator/TestCaseRunner.java
index a36cb50ce..24d6edae5 100644
--- a/stabilizer/src/main/java/com/hazelcast/stabilizer/coordinator/TestCaseRunner.java
+++ b/stabilizer/sr... | ['stabilizer/src/main/java/com/hazelcast/stabilizer/coordinator/TestCaseRunner.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 318,623 | 63,100 | 9,027 | 94 | 1,318 | 254 | 20 | 1 | 160 | 25 | 51 | 7 | 0 | 1 | 1970-01-01T00:23:31 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
352 | hazelcast/hazelcast-simulator/313/312 | hazelcast | hazelcast-simulator | https://github.com/hazelcast/hazelcast-simulator/issues/312 | https://github.com/hazelcast/hazelcast-simulator/pull/313 | https://github.com/hazelcast/hazelcast-simulator/pull/313 | 1 | fixes | Failed to execute expir.run(), and Stabilizer Reports No exceptions, run as Normal | The logs show
```
/worker-10.233.78.201-2-client/worker.log
INFO 2014-09-15 14:38:07,554 [Thread-0] com.hazelcast.stabilizer.worker.MemberWorker: --------------------------- Initializing test expir ---------------------------
id=expir
INFO 2014-09-15 14:38:08,720 [Thread-2] com.hazelcast.stabilizer.worker.Mem... | 8ec51f52c5edb39e708098948540323abf50d4a1 | d6e5ec6245617e6dde4620fe0e170bcc29480a9d | https://github.com/hazelcast/hazelcast-simulator/compare/8ec51f52c5edb39e708098948540323abf50d4a1...d6e5ec6245617e6dde4620fe0e170bcc29480a9d | diff --git a/stabilizer/src/main/java/com/hazelcast/stabilizer/worker/MemberWorker.java b/stabilizer/src/main/java/com/hazelcast/stabilizer/worker/MemberWorker.java
index fd833ea0a..47117e9e8 100644
--- a/stabilizer/src/main/java/com/hazelcast/stabilizer/worker/MemberWorker.java
+++ b/stabilizer/src/main/java/com/hazel... | ['stabilizer/src/main/java/com/hazelcast/stabilizer/worker/MemberWorker.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 318,827 | 63,195 | 9,025 | 94 | 291 | 41 | 5 | 1 | 7,906 | 603 | 2,175 | 96 | 0 | 4 | 1970-01-01T00:23:30 | 82 | Java | {'Java': 2059436, 'Python': 155276, 'HCL': 41145, 'Shell': 18850, 'FreeMarker': 5802} | Apache License 2.0 |
3,550 | osgi/osgi/393/392 | osgi | osgi | https://github.com/osgi/osgi/issues/392 | https://github.com/osgi/osgi/pull/393 | https://github.com/osgi/osgi/pull/393 | 1 | fixes | Converter's DTOUtil is overly reliant on exceptions for normal execution flow | DTOUtil.isDTOType() [1] relies on exceptions to find out whether a class has a public constructor and to find out if it has any methods - as a DTO should have a public no-args constructor and no methods beyond the ones defined by Object.class.
This works but is wasteful and slow. We should implement a different str... | 5ef5da1c414217f7b55904b114a1fe5399000d42 | 002c3a9bf4b34709449b336def007b2acf820195 | https://github.com/osgi/osgi/compare/5ef5da1c414217f7b55904b114a1fe5399000d42...002c3a9bf4b34709449b336def007b2acf820195 | diff --git a/org.osgi.util.converter/src/org/osgi/util/converter/DTOUtil.java b/org.osgi.util.converter/src/org/osgi/util/converter/DTOUtil.java
index 08023923fa..8f4df68dfe 100644
--- a/org.osgi.util.converter/src/org/osgi/util/converter/DTOUtil.java
+++ b/org.osgi.util.converter/src/org/osgi/util/converter/DTOUtil.ja... | ['org.osgi.util.converter/src/org/osgi/util/converter/DTOUtil.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 6,354,242 | 1,484,750 | 190,548 | 1,391 | 900 | 208 | 24 | 1 | 469 | 65 | 106 | 5 | 1 | 0 | 1970-01-01T00:27:20 | 80 | Java | {'Java': 17339591, 'XSLT': 8082406, 'HTML': 1425271, 'JavaScript': 684425, 'CSS': 63392, 'Shell': 48677, 'Batchfile': 11308, 'C': 11077, 'Ruby': 10888, 'Python': 9377, 'Makefile': 8343, 'Perl': 7202, 'SystemVerilog': 5465, 'NewLisp': 4473, 'Roff': 64} | Apache License 2.0 |
367 | opencb/cellbase/30/22 | opencb | cellbase | https://github.com/opencb/cellbase/issues/22 | https://github.com/opencb/cellbase/pull/30 | https://github.com/opencb/cellbase/pull/30 | 1 | fix | Population frequencies web services must return all frequencies | When querying population frequencies like:
http://wwwdev.ebi.ac.uk/cellbase/webservices/rest/v3/hsapiens/genomic/region/3:1166675-1166675/snp
Only frequencies different from '1' are returned. MongoDB has to contain only those.
| e822567075b2bb5bf7787e54d2047ae4065289e0 | 25df6dfdb03081eb25d519744841bed0c55976f3 | https://github.com/opencb/cellbase/compare/e822567075b2bb5bf7787e54d2047ae4065289e0...25df6dfdb03081eb25d519744841bed0c55976f3 | diff --git a/cellbase-app/src/main/java/org/opencb/cellbase/app/transform/VariationParser.java b/cellbase-app/src/main/java/org/opencb/cellbase/app/transform/VariationParser.java
index 31276c943..03b9d0ad5 100644
--- a/cellbase-app/src/main/java/org/opencb/cellbase/app/transform/VariationParser.java
+++ b/cellbase-app/... | ['cellbase-mongodb/src/main/java/org/opencb/cellbase/lib/mongodb/serializer/MongoDBSerializer.java', 'cellbase-app/src/main/java/org/opencb/cellbase/app/transform/VariationParser.java', 'cellbase-core/src/main/java/org/opencb/cellbase/core/serializer/DefaultJsonSerializer.java'] | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 1,205,029 | 264,964 | 32,801 | 209 | 5,477 | 1,212 | 78 | 3 | 228 | 19 | 61 | 5 | 1 | 0 | 1970-01-01T00:23:42 | 79 | Java | {'Java': 3693062, 'JavaScript': 2458859, 'Python': 173114, 'Perl': 107545, 'CSS': 92703, 'R': 50286, 'Jupyter Notebook': 15424, 'Shell': 12696, 'HTML': 10388, 'Dockerfile': 4743, 'Mustache': 3207, 'Smarty': 396} | Apache License 2.0 |
366 | opencb/cellbase/160/139 | opencb | cellbase | https://github.com/opencb/cellbase/issues/139 | https://github.com/opencb/cellbase/pull/160 | https://github.com/opencb/cellbase/pull/160 | 1 | closes | Typo in RegionWS "clinical" | In RegionWSServer we can see the param "phenotpe" (should be "phenotype"):
```
@GET
@Path("/{chrRegionId}/clinical")
public Response getClinicalByRegion(@PathParam("chrRegionId") String query,
@DefaultValue("") @QueryParam("gene") String gene,
@De... | 618ab4a8da1ffa12071ea89a2865c24477110b4a | 95fb14a5b8ef0da60a130f24067266571e8a4780 | https://github.com/opencb/cellbase/compare/618ab4a8da1ffa12071ea89a2865c24477110b4a...95fb14a5b8ef0da60a130f24067266571e8a4780 | diff --git a/cellbase-server/src/main/java/org/opencb/cellbase/server/ws/genomic/RegionWSServer.java b/cellbase-server/src/main/java/org/opencb/cellbase/server/ws/genomic/RegionWSServer.java
index 5bf840a67..6d21c79e0 100755
--- a/cellbase-server/src/main/java/org/opencb/cellbase/server/ws/genomic/RegionWSServer.java
+... | ['cellbase-server/src/main/java/org/opencb/cellbase/server/ws/genomic/RegionWSServer.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 1,578,586 | 343,494 | 40,168 | 210 | 511 | 95 | 6 | 1 | 580 | 52 | 118 | 13 | 0 | 1 | 1970-01-01T00:24:02 | 79 | Java | {'Java': 3693062, 'JavaScript': 2458859, 'Python': 173114, 'Perl': 107545, 'CSS': 92703, 'R': 50286, 'Jupyter Notebook': 15424, 'Shell': 12696, 'HTML': 10388, 'Dockerfile': 4743, 'Mustache': 3207, 'Smarty': 396} | Apache License 2.0 |
365 | opencb/cellbase/161/158 | opencb | cellbase | https://github.com/opencb/cellbase/issues/158 | https://github.com/opencb/cellbase/pull/161 | https://github.com/opencb/cellbase/pull/161 | 1 | closes | Incorrect parameter description in 'build; command line help | The parameter data has this description:
Comma separated list of data to **download**: genome, gene, variation, regulation, protein, conservation, drug, clinvar, cosmic and GWAS CAatalog. 'all' build everything. [null]
'download' has to be replaced by 'build':
Comma separated list of data to **build**: genome, gene, ... | 618ab4a8da1ffa12071ea89a2865c24477110b4a | 0e69744f5d7f47395decadb5ada91b5d89dd5bd7 | https://github.com/opencb/cellbase/compare/618ab4a8da1ffa12071ea89a2865c24477110b4a...0e69744f5d7f47395decadb5ada91b5d89dd5bd7 | diff --git a/cellbase-app/src/main/java/org/opencb/cellbase/app/cli/CliOptionsParser.java b/cellbase-app/src/main/java/org/opencb/cellbase/app/cli/CliOptionsParser.java
index 6e0fb33fa..ae72d14ed 100644
--- a/cellbase-app/src/main/java/org/opencb/cellbase/app/cli/CliOptionsParser.java
+++ b/cellbase-app/src/main/java/o... | ['cellbase-app/src/main/java/org/opencb/cellbase/app/cli/CliOptionsParser.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 1,578,586 | 343,494 | 40,168 | 210 | 512 | 126 | 2 | 1 | 438 | 59 | 104 | 7 | 0 | 0 | 1970-01-01T00:24:02 | 79 | Java | {'Java': 3693062, 'JavaScript': 2458859, 'Python': 173114, 'Perl': 107545, 'CSS': 92703, 'R': 50286, 'Jupyter Notebook': 15424, 'Shell': 12696, 'HTML': 10388, 'Dockerfile': 4743, 'Mustache': 3207, 'Smarty': 396} | Apache License 2.0 |
1,389 | checkmarx-ltd/cx-flow/850/628 | checkmarx-ltd | cx-flow | https://github.com/checkmarx-ltd/cx-flow/issues/628 | https://github.com/checkmarx-ltd/cx-flow/pull/850 | https://github.com/checkmarx-ltd/cx-flow/pull/850 | 1 | fixes | CxFlow creates duplicate tickets/issues when ran in batch mode. | ### Description
> The original problem is that cxflow is processing the scan results twice if we run it in a batch mode (using --project parameter).
This is evident from the log as well as if there is any bug tracker configured, there are duplicate tickets getting created.
### Expected Behavior
CxFlow should ... | 4e11bda17c663a0c8bf71b7b1ff8f364ebfa4fd5 | 077b901c17975e8d0b0658703b7c7ce1e5f44d6d | https://github.com/checkmarx-ltd/cx-flow/compare/4e11bda17c663a0c8bf71b7b1ff8f364ebfa4fd5...077b901c17975e8d0b0658703b7c7ce1e5f44d6d | diff --git a/src/main/java/com/checkmarx/flow/CxFlowRunner.java b/src/main/java/com/checkmarx/flow/CxFlowRunner.java
index ab6f935f..582cb5d8 100644
--- a/src/main/java/com/checkmarx/flow/CxFlowRunner.java
+++ b/src/main/java/com/checkmarx/flow/CxFlowRunner.java
@@ -584,8 +584,7 @@ public class CxFlowRunner implements ... | ['src/main/java/com/checkmarx/flow/CxFlowRunner.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 1,619,716 | 326,691 | 51,534 | 404 | 232 | 43 | 3 | 1 | 1,117 | 156 | 249 | 32 | 0 | 0 | 1970-01-01T00:27:14 | 78 | Java | {'Java': 3089142, 'Gherkin': 137222, 'HTML': 53644, 'Groovy': 4121, 'Dockerfile': 2287, 'Mustache': 1528} | Apache License 2.0 |
244 | xenit-eu/dynamic-extensions-for-alfresco/144/143 | xenit-eu | dynamic-extensions-for-alfresco | https://github.com/xenit-eu/dynamic-extensions-for-alfresco/issues/143 | https://github.com/xenit-eu/dynamic-extensions-for-alfresco/pull/144 | https://github.com/xenit-eu/dynamic-extensions-for-alfresco/pull/144 | 1 | fix | WebScriptUtil.extractHttpServletResponse() not working. | The extractHttpServletResponse method of the WebScriptUtil falsy returns null.
Cause:
AnnotationWebscriptResponse
```
@Override
public WebScriptResponse getNext() {
if (response instanceof WrappingWebScriptResponse) {
return ((WrappingWebScriptResponse) response).getNext();
} else {
return null;... | cde4af44900f0ba860fa637b9669f0adefbd181d | 9e98420149ace0744e73e1478d112ae909aa3f53 | https://github.com/xenit-eu/dynamic-extensions-for-alfresco/compare/cde4af44900f0ba860fa637b9669f0adefbd181d...9e98420149ace0744e73e1478d112ae909aa3f53 | diff --git a/webscripts/src/main/java/com/github/dynamicextensionsalfresco/webscripts/AnnotationWebscriptResponse.java b/webscripts/src/main/java/com/github/dynamicextensionsalfresco/webscripts/AnnotationWebscriptResponse.java
index ba7dff76..8eefaa73 100644
--- a/webscripts/src/main/java/com/github/dynamicextensionsal... | ['webscripts/src/main/java/com/github/dynamicextensionsalfresco/webscripts/AnnotationWebscriptResponse.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 406,173 | 80,664 | 12,696 | 202 | 37 | 8 | 2 | 1 | 334 | 33 | 76 | 14 | 0 | 1 | 1970-01-01T00:25:05 | 77 | Java | {'Java': 828783, 'FreeMarker': 22656, 'Groovy': 10200, 'JavaScript': 3167, 'CSS': 1733} | Apache License 2.0 |
281 | ibissource/iaf/5261/5252 | ibissource | iaf | https://github.com/ibissource/iaf/issues/5252 | https://github.com/ibissource/iaf/pull/5261 | https://github.com/ibissource/iaf/pull/5261 | 1 | closes | Accept value */*;text/html; causes Json2XmlValidator to return XML instead of JSON | **❗ please do not add sensitive information in issues, you can provide extra information via email using issue number as reference ❗**
**Describe the issue**
When having an ApiListener with `produces="JSON"` and using the Json2XmlInputValidator to handle data conversion, we would like to respond with JSON.
When ... | 8fcf102ec7f18fdb8a10a56a4795b2d5660142d3 | 937c2ef33c2b05c934406a199c26454ad9fef32a | https://github.com/ibissource/iaf/compare/8fcf102ec7f18fdb8a10a56a4795b2d5660142d3...937c2ef33c2b05c934406a199c26454ad9fef32a | diff --git a/core/src/main/java/nl/nn/adapterframework/pipes/Json2XmlValidator.java b/core/src/main/java/nl/nn/adapterframework/pipes/Json2XmlValidator.java
index 70d668310..d800e076f 100644
--- a/core/src/main/java/nl/nn/adapterframework/pipes/Json2XmlValidator.java
+++ b/core/src/main/java/nl/nn/adapterframework/pipe... | ['core/src/main/java/nl/nn/adapterframework/pipes/Json2XmlValidator.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 6,990,285 | 1,600,466 | 196,456 | 1,188 | 545 | 110 | 4 | 1 | 841 | 97 | 221 | 15 | 2 | 0 | 1970-01-01T00:28:12 | 76 | Java | {'Java': 10343466, 'XSLT': 256796, 'JavaScript': 226501, 'HTML': 208226, 'CSS': 164473, 'SCSS': 79489, 'Less': 78481, 'Rich Text Format': 43789, 'Python': 14562, 'Batchfile': 8936, 'Dockerfile': 7406, 'PLSQL': 2825, 'TSQL': 2649, 'Shell': 1681, 'Roff': 1046, 'XQuery': 37} | Apache License 2.0 |
280 | ibissource/iaf/5190/5191 | ibissource | iaf | https://github.com/ibissource/iaf/issues/5191 | https://github.com/ibissource/iaf/pull/5190 | https://github.com/ibissource/iaf/pull/5190#issuecomment-1662309330 | 1 | closes | AWS S3 List does not work properly when > 1000 items in bucket | **❗ please do not add sensitive information in issues, you can provide extra information via email using issue number as reference ❗**
**Describe the issue**
The current implementation for the folderExists method in AWS S3 Filesystem is incorrect.
By calling `s3Client.listObjects(bucketName)` a truncated list of... | 87b8d466b58a0ba923e3e0934f020ce8650914e3 | 4f2d4a0227c54e659c3ad0be97d289ee6308d3a5 | https://github.com/ibissource/iaf/compare/87b8d466b58a0ba923e3e0934f020ce8650914e3...4f2d4a0227c54e659c3ad0be97d289ee6308d3a5 | diff --git a/core/src/main/java/nl/nn/adapterframework/filesystem/AmazonS3FileSystem.java b/core/src/main/java/nl/nn/adapterframework/filesystem/AmazonS3FileSystem.java
index 05c0df1a7..c3e093794 100644
--- a/core/src/main/java/nl/nn/adapterframework/filesystem/AmazonS3FileSystem.java
+++ b/core/src/main/java/nl/nn/ada... | ['core/src/main/java/nl/nn/adapterframework/filesystem/AmazonS3FileSystem.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 6,990,314 | 1,600,455 | 196,449 | 1,188 | 141 | 30 | 2 | 1 | 976 | 121 | 251 | 21 | 2 | 0 | 1970-01-01T00:28:10 | 76 | Java | {'Java': 10343466, 'XSLT': 256796, 'JavaScript': 226501, 'HTML': 208226, 'CSS': 164473, 'SCSS': 79489, 'Less': 78481, 'Rich Text Format': 43789, 'Python': 14562, 'Batchfile': 8936, 'Dockerfile': 7406, 'PLSQL': 2825, 'TSQL': 2649, 'Shell': 1681, 'Roff': 1046, 'XQuery': 37} | Apache License 2.0 |
9,873 | sirendii/advancedperipherals/452/444 | sirendii | advancedperipherals | https://github.com/SirEndii/AdvancedPeripherals/issues/444 | https://github.com/SirEndii/AdvancedPeripherals/pull/452 | https://github.com/SirEndii/AdvancedPeripherals/pull/452 | 2 | fixed | cardinal directions aren't working, contrary to the docs. | ### Describe
Mods: ONLY CC:Tweaked and Advanced Peripherals.
The inventory manager does not currently allow cardinal directions. (even though supposedly it should? according to the docs at least)
Please fix.
example script:
`manager = peripheral.find("inventoryManager")
manager.addItemToPlayer("UP", 50,... | 2ce920b4e178d8dc88b1e4cefd0e02bce1d55e71 | 04b0d76a3d778239e5f4490fab00fc02c9df578e | https://github.com/sirendii/advancedperipherals/compare/2ce920b4e178d8dc88b1e4cefd0e02bce1d55e71...04b0d76a3d778239e5f4490fab00fc02c9df578e | diff --git a/src/main/java/de/srendi/advancedperipherals/common/util/CoordUtil.java b/src/main/java/de/srendi/advancedperipherals/common/util/CoordUtil.java
index 7b75ab26..a11c27a0 100644
--- a/src/main/java/de/srendi/advancedperipherals/common/util/CoordUtil.java
+++ b/src/main/java/de/srendi/advancedperipherals/comm... | ['src/main/java/de/srendi/advancedperipherals/common/util/CoordUtil.java', 'src/main/java/de/srendi/advancedperipherals/lib/peripherals/BasePeripheral.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 653,893 | 138,107 | 16,157 | 227 | 3,217 | 617 | 54 | 2 | 1,166 | 172 | 287 | 45 | 0 | 0 | 1970-01-01T00:28:02 | 74 | Java | {'Java': 681712, 'Lua': 2017} | Apache License 2.0 |
9,872 | sirendii/advancedperipherals/466/464 | sirendii | advancedperipherals | https://github.com/SirEndii/AdvancedPeripherals/issues/464 | https://github.com/SirEndii/AdvancedPeripherals/pull/466 | https://github.com/SirEndii/AdvancedPeripherals/pull/466 | 1 | resolve | Inventory manager causes items to stop stacking | ### Describe
I have a computer that is supplying me constantly with items. One of witch are apples. Then I noticed that apples in my inventory and apples in the me system don't stack anymore. I looked into the item data and the mod appends "tag:{}" to the data
### Steps to reproduce
1. have an apple in the inv... | ea263532fd4a7b327d116a3ae7f40a2c14c3ffaa | b37786303705d3be741f6291da903ae57132f2d5 | https://github.com/sirendii/advancedperipherals/compare/ea263532fd4a7b327d116a3ae7f40a2c14c3ffaa...b37786303705d3be741f6291da903ae57132f2d5 | diff --git a/src/main/java/de/srendi/advancedperipherals/common/util/LuaConverter.java b/src/main/java/de/srendi/advancedperipherals/common/util/LuaConverter.java
index cc0e81e4..2b12f1d9 100644
--- a/src/main/java/de/srendi/advancedperipherals/common/util/LuaConverter.java
+++ b/src/main/java/de/srendi/advancedperiphe... | ['src/main/java/de/srendi/advancedperipherals/common/util/LuaConverter.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 655,683 | 138,594 | 16,208 | 227 | 108 | 24 | 2 | 1 | 1,087 | 163 | 298 | 35 | 1 | 0 | 1970-01-01T00:28:05 | 74 | Java | {'Java': 681712, 'Lua': 2017} | Apache License 2.0 |
9,871 | sirendii/advancedperipherals/491/490 | sirendii | advancedperipherals | https://github.com/SirEndii/AdvancedPeripherals/issues/490 | https://github.com/SirEndii/AdvancedPeripherals/pull/491 | https://github.com/SirEndii/AdvancedPeripherals/pull/491 | 2 | resolve | ME Bridge inconsistencies | ### Describe
_[I don't know why the modpack author of my pack used the 1.19.3 version for a 1.19.2 pack but it works either way.]_
_{If I'm being stupid for any reason, (didnt see something in changelogs, shouldnt do 2 bugs in one post, etc.), please let me know.]_
While trying to write a program to push a live ... | 15186b7687615202e3d6e3d848cc3df9d0746772 | 49ebb4d4c5d8edfe6ff486ffae548ccf8132196b | https://github.com/sirendii/advancedperipherals/compare/15186b7687615202e3d6e3d848cc3df9d0746772...49ebb4d4c5d8edfe6ff486ffae548ccf8132196b | diff --git a/src/main/java/de/srendi/advancedperipherals/common/addons/appliedenergistics/AppEngApi.java b/src/main/java/de/srendi/advancedperipherals/common/addons/appliedenergistics/AppEngApi.java
index d8a5a109..f87485fb 100644
--- a/src/main/java/de/srendi/advancedperipherals/common/addons/appliedenergistics/AppEng... | ['src/main/java/de/srendi/advancedperipherals/common/addons/appliedenergistics/AppEngApi.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 674,400 | 142,452 | 16,590 | 229 | 1,233 | 248 | 29 | 1 | 1,296 | 211 | 348 | 47 | 0 | 0 | 1970-01-01T00:28:09 | 74 | Java | {'Java': 681712, 'Lua': 2017} | Apache License 2.0 |
9,874 | sirendii/advancedperipherals/292/291 | sirendii | advancedperipherals | https://github.com/SirEndii/AdvancedPeripherals/issues/291 | https://github.com/SirEndii/AdvancedPeripherals/pull/292 | https://github.com/SirEndii/AdvancedPeripherals/pull/292 | 1 | closes | NullPointerException crash if trying to craft an item with 0 stock with ME bridge | ### Descripe
Own compiled build from current master as of writing, as AE Bridge is broken in latest release.
Game/server crashes if trying to craft an item is not in stock in the ME system.
I think the bug is here:
https://github.com/Seniorendi/AdvancedPeripherals/blob/8debb40a941977609bd80f9e9baf0b1f12a2f7d8... | 8debb40a941977609bd80f9e9baf0b1f12a2f7d8 | e20ffee72c30cf7eb6bb7502d5687f98908d2c7a | https://github.com/sirendii/advancedperipherals/compare/8debb40a941977609bd80f9e9baf0b1f12a2f7d8...e20ffee72c30cf7eb6bb7502d5687f98908d2c7a | diff --git a/src/main/java/de/srendi/advancedperipherals/common/addons/appliedenergistics/AppEngApi.java b/src/main/java/de/srendi/advancedperipherals/common/addons/appliedenergistics/AppEngApi.java
index 5c81a1a9..76db35db 100644
--- a/src/main/java/de/srendi/advancedperipherals/common/addons/appliedenergistics/AppEng... | ['src/main/java/de/srendi/advancedperipherals/common/addons/appliedenergistics/CraftJob.java', 'src/main/java/de/srendi/advancedperipherals/common/addons/appliedenergistics/AppEngApi.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 550,863 | 116,242 | 13,594 | 191 | 1,359 | 298 | 33 | 2 | 947 | 108 | 262 | 39 | 2 | 1 | 1970-01-01T00:27:30 | 74 | Java | {'Java': 681712, 'Lua': 2017} | Apache License 2.0 |
9,875 | sirendii/advancedperipherals/253/251 | sirendii | advancedperipherals | https://github.com/SirEndii/AdvancedPeripherals/issues/251 | https://github.com/SirEndii/AdvancedPeripherals/pull/253 | https://github.com/SirEndii/AdvancedPeripherals/pull/253 | 1 | fix | [BUG] BlockReader gives no usefull data | ### Descripe
When I use the BlockRader, it only spits out useless data. I don't think this is intentional.
### Steps to reproduce
1. set up BlockReader with chest at the front.
2. put something into the chest as a test.
3. control the block reader with `getBlockData`
### Multiplayer?
Yes
### Version
0.7.8r (La... | d3b8d1a82e093527f8fe5c5d019cf56c64a33236 | 763d54cebd403fc76f2bedcebd7a8ab6f244801c | https://github.com/sirendii/advancedperipherals/compare/d3b8d1a82e093527f8fe5c5d019cf56c64a33236...763d54cebd403fc76f2bedcebd7a8ab6f244801c | diff --git a/src/main/java/de/srendi/advancedperipherals/common/addons/computercraft/peripheral/BlockReaderPeripheral.java b/src/main/java/de/srendi/advancedperipherals/common/addons/computercraft/peripheral/BlockReaderPeripheral.java
index 8887e60f..350d7f18 100644
--- a/src/main/java/de/srendi/advancedperipherals/com... | ['src/main/java/de/srendi/advancedperipherals/common/addons/computercraft/peripheral/BlockReaderPeripheral.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 503,771 | 106,389 | 12,545 | 183 | 602 | 106 | 11 | 1 | 483 | 74 | 130 | 29 | 1 | 0 | 1970-01-01T00:27:21 | 74 | Java | {'Java': 681712, 'Lua': 2017} | Apache License 2.0 |
9,876 | sirendii/advancedperipherals/209/203 | sirendii | advancedperipherals | https://github.com/SirEndii/AdvancedPeripherals/issues/203 | https://github.com/SirEndii/AdvancedPeripherals/pull/209 | https://github.com/SirEndii/AdvancedPeripherals/pull/209 | 1 | fix | Inventory Manager api, slot argument behaviour is assumedly incorrect. | ### Description
The Inventory Manager api is dumb/broken.
addItemToPlayer slot designation does not choose where to place an item and instead chooses from which slot to take the item in the originating inventory/chest.
This functionality is stupid because in the alternative function, removeItemFromPlayer, the sl... | 13ca9b60b45474d72a50dd9864ab6b122a0570c7 | 50b18c6b762e247cd18176b6bc293eda02575e59 | https://github.com/sirendii/advancedperipherals/compare/13ca9b60b45474d72a50dd9864ab6b122a0570c7...50b18c6b762e247cd18176b6bc293eda02575e59 | diff --git a/src/main/java/de/srendi/advancedperipherals/common/addons/computercraft/peripheral/InventoryManagerPeripheral.java b/src/main/java/de/srendi/advancedperipherals/common/addons/computercraft/peripheral/InventoryManagerPeripheral.java
index 8e3c7db9..4f35eea8 100644
--- a/src/main/java/de/srendi/advancedperip... | ['src/main/java/de/srendi/advancedperipherals/common/addons/computercraft/peripheral/InventoryManagerPeripheral.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 599,496 | 127,132 | 15,197 | 209 | 5,160 | 944 | 88 | 1 | 1,614 | 254 | 351 | 37 | 0 | 0 | 1970-01-01T00:27:14 | 74 | Java | {'Java': 681712, 'Lua': 2017} | Apache License 2.0 |
2,048 | telstra/open-kilda/4957/4956 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4956 | https://github.com/telstra/open-kilda/pull/4957 | https://github.com/telstra/open-kilda/pull/4957 | 1 | closes | YFlow CRUD operations use nano seconds unit for max_latency/max_latency_tier2 fields | Create/Update/Patch/Get operations must use milliseconds unit for max_latency/max_latency_tier2 fields.
**Steps to reproduce:**
1. check potential Y flow path and find its latency X.
2. Create/Update/Patch/Get Y flow with `path_computation_strategy=max_latency` and `max_latency=2*x`, `max_latency_tier2=3*x`
*... | 805fca1ee0ba8c3a0dca11938ec18a0741a65aca | 09025bf5a91724c2ef6a12adfc484471e33a1b89 | https://github.com/telstra/open-kilda/compare/805fca1ee0ba8c3a0dca11938ec18a0741a65aca...09025bf5a91724c2ef6a12adfc484471e33a1b89 | diff --git a/src-java/northbound-service/northbound/src/main/java/org/openkilda/northbound/converter/YFlowMapper.java b/src-java/northbound-service/northbound/src/main/java/org/openkilda/northbound/converter/YFlowMapper.java
index ec1c93cd2..5ad68c413 100644
--- a/src-java/northbound-service/northbound/src/main/java/or... | ['src-java/northbound-service/northbound/src/main/java/org/openkilda/northbound/converter/YFlowMapper.java', 'src-java/northbound-service/northbound/src/test/java/org/openkilda/northbound/converter/YFlowMapperTest.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 11,204,386 | 2,338,758 | 286,979 | 3,056 | 627 | 168 | 8 | 1 | 411 | 41 | 102 | 12 | 0 | 0 | 1970-01-01T00:27:45 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,049 | telstra/open-kilda/4937/4938 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4938 | https://github.com/telstra/open-kilda/pull/4937 | https://github.com/telstra/open-kilda/pull/4937 | 1 | closes | Ingress mirror install excess pre ingress rule on switch | **Steps to reproduce:**
1. Create a flow
2. Create forward mirror on this flow
3. Get switch rules
**Expected result:**
one QinQ rule in table 1 (it has cookie `0x0080_0000_0***_****`)
**Actual result:**
two same QinQ rules in table 1. The only difference is rule priority | 720d3dcef0b5b07e46a26c4196e054a4f0142afe | 140ae5726272314a229e5fb7f1a63a3678c0c12d | https://github.com/telstra/open-kilda/compare/720d3dcef0b5b07e46a26c4196e054a4f0142afe...140ae5726272314a229e5fb7f1a63a3678c0c12d | diff --git a/src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/command/flow/ingress/IngressMirrorFlowSegmentInstallCommand.java b/src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/command/flow/ingress/IngressMirrorFlowSegmentInstallCommand.java
ind... | ['src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/command/flow/ingress/IngressMirrorFlowSegmentInstallCommand.java', 'src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/command/flow/ingress/IngressMirrorFlowSegmentRemoveCommand.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 11,199,502 | 2,337,781 | 286,879 | 3,056 | 2,024 | 400 | 48 | 2 | 284 | 45 | 81 | 10 | 0 | 0 | 1970-01-01T00:27:41 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,065 | telstra/open-kilda/4110/4106 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4106 | https://github.com/telstra/open-kilda/pull/4110 | https://github.com/telstra/open-kilda/pull/4110 | 1 | closes | Flow partial update clears 'inner_vlan_id' if not set | 1. Create flow with non-zero values in 'inner_vlan_id' fields
<details>
<summary>curl</summary>
```
curl --location --request POST 'http://localhost:8080/api/v2/flows' \\
--header 'Accept: application/json;charset=UTF-8' \\
--header 'Content-Type: application/json' \\
--header 'Authorization: Basic a2lsZGE... | 8158bf1cd10cce6e00373811a006db57cabf7966 | 25ba661f2af4173fc2b4c692130db55c59fbbe60 | https://github.com/telstra/open-kilda/compare/8158bf1cd10cce6e00373811a006db57cabf7966...25ba661f2af4173fc2b4c692130db55c59fbbe60 | diff --git a/src-java/nbworker-topology/nbworker-storm-topology/src/main/java/org/openkilda/wfm/share/mappers/RequestedFlowMapper.java b/src-java/nbworker-topology/nbworker-storm-topology/src/main/java/org/openkilda/wfm/share/mappers/RequestedFlowMapper.java
index a14c2169a..0b4cfa089 100644
--- a/src-java/nbworker-top... | ['src-java/nbworker-topology/nbworker-storm-topology/src/main/java/org/openkilda/wfm/share/mappers/RequestedFlowMapper.java', 'src-java/nbworker-topology/nbworker-storm-topology/src/test/java/org/openkilda/wfm/share/mappers/RequestedFlowMapperTest.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 8,369,449 | 1,747,735 | 219,322 | 2,361 | 280 | 74 | 4 | 1 | 1,680 | 158 | 471 | 54 | 2 | 2 | 1970-01-01T00:26:55 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,064 | telstra/open-kilda/4122/4142 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4142 | https://github.com/telstra/open-kilda/pull/4122 | https://github.com/telstra/open-kilda/pull/4122 | 1 | closes | WARNs form flowmonitoring topology `The command context is missing in input tuple` | There are a lot of warns form flow monitoring topology like `The command context is missing in input tuple`
Need to add command context into topology tuples | f75c9d68ede317f9d06529ac0cba49640417f97c | a177c73099ea1c2b605ab9cc3238fae288ee663f | https://github.com/telstra/open-kilda/compare/f75c9d68ede317f9d06529ac0cba49640417f97c...a177c73099ea1c2b605ab9cc3238fae288ee663f | diff --git a/src-java/flowmonitoring-topology/flowmonitoring-storm-topology/src/main/java/org/openkilda/wfm/topology/flowmonitoring/bolts/FlowCacheBolt.java b/src-java/flowmonitoring-topology/flowmonitoring-storm-topology/src/main/java/org/openkilda/wfm/topology/flowmonitoring/bolts/FlowCacheBolt.java
index 02ec248a0..... | ['src-java/flowmonitoring-topology/flowmonitoring-storm-topology/src/main/java/org/openkilda/wfm/topology/flowmonitoring/bolts/FlowCacheBolt.java', 'src-java/flowmonitoring-topology/flowmonitoring-storm-topology/src/main/java/org/openkilda/wfm/topology/flowmonitoring/bolts/IslCacheBolt.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 8,399,709 | 1,753,986 | 219,898 | 2,365 | 1,175 | 274 | 14 | 2 | 160 | 27 | 31 | 3 | 0 | 0 | 1970-01-01T00:26:55 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,051 | telstra/open-kilda/4871/4788 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4788 | https://github.com/telstra/open-kilda/pull/4871 | https://github.com/telstra/open-kilda/pull/4871 | 1 | resolves | Swap Endpoints operation response timeout if flow update is disabled in toggles | **Steps to reproduce:**
1. Disable `update_flow` in feature toggles
2. Send swap endpoint request `/v2/flows/swap-endpoint` (you can send it even for non existing flows)
**Expected result:**
Response with error
**Actual result:**
Response with timeout
| 89c7a0b92047a86aac271b6871b8772c1a063572 | 33e5fda32e4e699d12e42044fcab29c1e29f04c3 | https://github.com/telstra/open-kilda/compare/89c7a0b92047a86aac271b6871b8772c1a063572...33e5fda32e4e699d12e42044fcab29c1e29f04c3 | diff --git a/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/common/FlowProcessingWithHistorySupportFsm.java b/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/common/FlowProcessingWithHistorySupportFsm.java
index b475f... | ['src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/common/FlowProcessingWithHistorySupportFsm.java', 'src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/swapendpoints/FlowSwapEndpointsFsm.java', 'src-java/flowhs-topology/f... | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 11,184,813 | 2,334,663 | 286,564 | 3,054 | 4,560 | 894 | 85 | 3 | 264 | 34 | 63 | 10 | 0 | 0 | 1970-01-01T00:27:37 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,063 | telstra/open-kilda/4124/4141 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4141 | https://github.com/telstra/open-kilda/pull/4124 | https://github.com/telstra/open-kilda/pull/4124 | 1 | closes | Incorrect WARN messages `violates latency SLA` | Messages like
`Forward path for flow 'someflow' violates latency SLA 1000/0 ms` shouldn't be logged if maxLatency for flow is 0.
Also latency in log is incorrect. it must be in milliseconds but in fact it is in microseconds | f75c9d68ede317f9d06529ac0cba49640417f97c | 287211bd4712a1344cfae1b76cf1f7dd74fade57 | https://github.com/telstra/open-kilda/compare/f75c9d68ede317f9d06529ac0cba49640417f97c...287211bd4712a1344cfae1b76cf1f7dd74fade57 | diff --git a/src-java/flowmonitoring-topology/flowmonitoring-storm-topology/src/main/java/org/openkilda/wfm/topology/flowmonitoring/service/ActionService.java b/src-java/flowmonitoring-topology/flowmonitoring-storm-topology/src/main/java/org/openkilda/wfm/topology/flowmonitoring/service/ActionService.java
index 6b2918a... | ['src-java/flowmonitoring-topology/flowmonitoring-storm-topology/src/main/java/org/openkilda/wfm/topology/flowmonitoring/service/ActionService.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 8,399,709 | 1,753,986 | 219,898 | 2,365 | 420 | 104 | 8 | 1 | 227 | 39 | 57 | 3 | 0 | 0 | 1970-01-01T00:26:55 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,047 | telstra/open-kilda/4977/4976 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4976 | https://github.com/telstra/open-kilda/pull/4977 | https://github.com/telstra/open-kilda/pull/4977 | 1 | closes | Create LAG without `lacp_reply` in request causes 500 response | **Steps to reproduce:**
1. send request `POST /api/v2/switches/{switch_id}/lags` with body `{ "port_numbers": [12, 14]}` (without `lacp_reply`)
**Expected result:**
1. lacp_reply will be set to true by default
2. LAG will be created
**Actual result:**
500 Internal server error | 053438afae1b25a9fccf3492dcac22fcaa3bf4bf | f613b32c45986329ef0849697b2633965e01806c | https://github.com/telstra/open-kilda/compare/053438afae1b25a9fccf3492dcac22fcaa3bf4bf...f613b32c45986329ef0849697b2633965e01806c | diff --git a/src-java/northbound-service/northbound-api/src/main/java/org/openkilda/northbound/dto/v2/switches/LagPortRequest.java b/src-java/northbound-service/northbound-api/src/main/java/org/openkilda/northbound/dto/v2/switches/LagPortRequest.java
index 8d4362bd6..0c278e745 100644
--- a/src-java/northbound-service/n... | ['src-java/northbound-service/northbound-api/src/main/java/org/openkilda/northbound/dto/v2/switches/LagPortRequest.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 11,321,323 | 2,363,586 | 289,817 | 3,081 | 946 | 191 | 28 | 1 | 288 | 38 | 82 | 9 | 0 | 0 | 1970-01-01T00:27:47 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,060 | telstra/open-kilda/4252/4251 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4251 | https://github.com/telstra/open-kilda/pull/4252 | https://github.com/telstra/open-kilda/pull/4252 | 1 | closes | Kilda wouldn't reinstall meter with incorrect burst size | **Steps to reproduce (for local env):**
1. Deploy Kilda with any topology
2. Connect to lab_service container `docker exec -it lab_service-1 /bin/bash`
3. Remove broadcast rule `ovs-ofctl -O OpenFlow13 --strict del-flows ofsw2 priority=31768,udp,dl_dst=00:26:e1:ff:ff:ff,tp_dst=61231`
4. Modify broadcast meter `ovs-... | 1d1a98cebd8993258844de6aa5630995be6f4332 | 877e435ff88e3c9358383fb01f8bc234c181cc52 | https://github.com/telstra/open-kilda/compare/1d1a98cebd8993258844de6aa5630995be6f4332...877e435ff88e3c9358383fb01f8bc234c181cc52 | diff --git a/src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/switchmanager/SwitchManager.java b/src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/switchmanager/SwitchManager.java
index 28ee1be5d..49406e77d 100644
--- a/src-java/floodlight-service... | ['src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/switchmanager/SwitchManager.java', 'src-java/floodlight-service/floodlight-modules/src/test/java/org/openkilda/floodlight/switchmanager/SwitchManagerTest.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 9,043,224 | 1,883,640 | 234,767 | 2,523 | 2,018 | 419 | 26 | 1 | 1,322 | 183 | 332 | 19 | 0 | 0 | 1970-01-01T00:27:00 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,052 | telstra/open-kilda/4859/4810 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4810 | https://github.com/telstra/open-kilda/pull/4859 | https://github.com/telstra/open-kilda/pull/4859 | 1 | close | flows are not rerouted by flowMonitoring in case main path does not satisfy SLA (shrad_count > 1) | **Steps to reproduce:**
1. update `confd/vars/main.yaml`
```
kilda_flow_sla_check_shard_count: 2
```
2. build and start env with updated value;
3. create 3 the same flows with the `max_latency` strategy;
4. make sure that the path of all 3 flows are the same;
5. update path ( path does not satisfy SLA)
**E... | 344551a65964525809a3b2ef61c1764f31d72875 | 044f47cbc9478eb007ba2cdd270783c18c1b0c5d | https://github.com/telstra/open-kilda/compare/344551a65964525809a3b2ef61c1764f31d72875...044f47cbc9478eb007ba2cdd270783c18c1b0c5d | diff --git a/src-java/flowmonitoring-topology/flowmonitoring-storm-topology/src/main/java/org/openkilda/wfm/topology/flowmonitoring/fsm/FlowLatencyMonitoringFsm.java b/src-java/flowmonitoring-topology/flowmonitoring-storm-topology/src/main/java/org/openkilda/wfm/topology/flowmonitoring/fsm/FlowLatencyMonitoringFsm.java... | ['src-java/flowmonitoring-topology/flowmonitoring-storm-topology/src/main/java/org/openkilda/wfm/topology/flowmonitoring/fsm/FlowLatencyMonitoringFsm.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 11,179,634 | 2,333,550 | 286,431 | 3,052 | 1,335 | 281 | 30 | 1 | 762 | 113 | 199 | 21 | 0 | 1 | 1970-01-01T00:27:36 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,054 | telstra/open-kilda/4839/4838 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4838 | https://github.com/telstra/open-kilda/pull/4839 | https://github.com/telstra/open-kilda/pull/4839 | 1 | close | Switch Sync timeout if switch has 2 default rules with same cookie | **Steps to reproduce:**
1. Create excess default rule with existing default cookie.
OVS:
```
docker exec -it lab_service-1 bash
ovs-ofctl -O OpenFlow13 add-flow ofsw2 cookie=0x8000000000000002,priority=1,in_port=11,dl_src=00:05:95:41:ec:8c/ff:ff:ff:ff:ff:ff,actions=drop
```
2. validate switch
3. sync switch
... | 963619ef04bc826080d2ad92d0981ffb3478e4cd | 364af1081c314487be55974ec138841fc2fdd46a | https://github.com/telstra/open-kilda/compare/963619ef04bc826080d2ad92d0981ffb3478e4cd...364af1081c314487be55974ec138841fc2fdd46a | diff --git a/src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/command/rulemanager/BatchData.java b/src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/command/rulemanager/BatchData.java
index ac3c830e1..24dfc5338 100644
--- a/src-java/floodlight-ser... | ['src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/command/rulemanager/OfBatchHolder.java', 'src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/command/rulemanager/OfBatchExecutor.java', 'src-java/floodlight-service/floodlight-modules/src/main/java... | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 11,446,574 | 2,390,825 | 291,844 | 3,072 | 5,723 | 1,067 | 116 | 3 | 478 | 51 | 143 | 17 | 0 | 1 | 1970-01-01T00:27:34 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,055 | telstra/open-kilda/4812/4805 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4805 | https://github.com/telstra/open-kilda/pull/4812 | https://github.com/telstra/open-kilda/pull/4812 | 1 | close | Switch sync unable to handle misconfigured rules with the same cookie | Steps to reproduce:
1. Create two rules with the same cookie. One correct and one misconfigured.
2. Run switch sync on the switch.
Actual result:
Misconfigured rule is still on the switch.
Expected result:
No misconfigured rules on the switch. | e107f48b89025669a439cfaf16b37128fbe65cb7 | debecbc971d9d5f3afbcb32dd5f3417507c9e6ea | https://github.com/telstra/open-kilda/compare/e107f48b89025669a439cfaf16b37128fbe65cb7...debecbc971d9d5f3afbcb32dd5f3417507c9e6ea | diff --git a/src-java/swmanager-topology/swmanager-storm-topology/src/main/java/org/openkilda/wfm/topology/switchmanager/fsm/SwitchSyncFsm.java b/src-java/swmanager-topology/swmanager-storm-topology/src/main/java/org/openkilda/wfm/topology/switchmanager/fsm/SwitchSyncFsm.java
index c77cbea48..3c04b53c0 100644
--- a/src... | ['src-java/swmanager-topology/swmanager-storm-topology/src/main/java/org/openkilda/wfm/topology/switchmanager/fsm/SwitchSyncFsm.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 11,523,958 | 2,406,634 | 293,523 | 3,083 | 676 | 121 | 12 | 1 | 253 | 40 | 53 | 9 | 0 | 0 | 1970-01-01T00:27:32 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,056 | telstra/open-kilda/4767/4606 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4606 | https://github.com/telstra/open-kilda/pull/4767 | https://github.com/telstra/open-kilda/pull/4767 | 1 | close | [flowHistory] incorrect fowrawd/reverse Paths fields in beforeState section after updating flow endpoint | **Steps to reproduce:**
1. create a multi-switch flow `(00:00:00:00:00:00:00:02_7 - 00:00:00:00:00:00:00:03_8)`
2. update the flow (for example make single-switch flow `(00:00:00:00:00:00:00:02_7 - 00:00:00:00:00:00:00:02_8)`)
3. check an `update` action in flow history
**Expected result:**
The forward/revers... | 144c7d4e37ed8c688a857bb577cee5a43b96caa4 | 22b6dc278b6900edac9764685f1154687095a96e | https://github.com/telstra/open-kilda/compare/144c7d4e37ed8c688a857bb577cee5a43b96caa4...22b6dc278b6900edac9764685f1154687095a96e | diff --git a/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/update/actions/CompleteFlowPathRemovalAction.java b/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/update/actions/CompleteFlowPathRemovalAction.java
index a... | ['src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/update/actions/CompleteFlowPathRemovalAction.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 11,380,792 | 2,376,160 | 290,334 | 3,053 | 511 | 100 | 10 | 1 | 1,277 | 73 | 447 | 25 | 0 | 2 | 1970-01-01T00:27:29 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,057 | telstra/open-kilda/4402/4389 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4389 | https://github.com/telstra/open-kilda/pull/4402 | https://github.com/telstra/open-kilda/pull/4402 | 1 | resolves | SERVER_42_ISL_RTT_OUTPUT_COOKIE is not installed within InstallActions.INSTALL_DEFAULTS | **Steps to reroduce:**
enable islRtt on a switch;
delete rules from the switch (DROP_ALL)
install rules (INSTALL_DEFAULTS)
**Actual result:**
SERVER_42_ISL_RTT_OUTPUT_COOKIE is not installed
-9223372036854775780 (800000000000001c) - is missing
**Expected result:**
SERVER_42_ISL_RTT_OUTPUT_COOKIE is installe... | d7d0214f003fb23138fe95cc96ad4b18257023df | 53ea389fdb9feee0744f86e7a277e41040661dd4 | https://github.com/telstra/open-kilda/compare/d7d0214f003fb23138fe95cc96ad4b18257023df...53ea389fdb9feee0744f86e7a277e41040661dd4 | diff --git a/src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/kafka/RecordHandler.java b/src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/kafka/RecordHandler.java
index ef63a62d6..78ce8d8a1 100644
--- a/src-java/floodlight-service/floodlight-modu... | ['src-java/floodlight-service/floodlight-modules/src/test/java/org/openkilda/floodlight/kafka/RecordHandlerTest.java', 'src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/kafka/RecordHandler.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 9,504,449 | 1,984,049 | 245,840 | 2,578 | 370 | 62 | 4 | 1 | 362 | 35 | 94 | 12 | 0 | 0 | 1970-01-01T00:27:08 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,059 | telstra/open-kilda/4271/4267 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4267 | https://github.com/telstra/open-kilda/pull/4271 | https://github.com/telstra/open-kilda/pull/4271 | 1 | closes | reroute is not working for a 'vxlan' flow | **Steps to reproduce:**
1. find switch pair with two paths at least;
2. create a vxlan flow;
3. break the flow path(init auto reroute)
**Expected result:**
Flow is rerouted to an alternative path.
**Actual result:**
Flow is not rerouted.
Flow is stayed on the same path and moved to the DOWN status.
No er... | 180eb0b397b90cdeded5da366b52de1bacc4d2a8 | 896316451b9b83049b497032ea57b7c11208e599 | https://github.com/telstra/open-kilda/compare/180eb0b397b90cdeded5da366b52de1bacc4d2a8...896316451b9b83049b497032ea57b7c11208e599 | diff --git a/src-java/base-topology/base-storm-topology/src/main/java/org/openkilda/wfm/share/service/SpeakerFlowSegmentRequestBuilder.java b/src-java/base-topology/base-storm-topology/src/main/java/org/openkilda/wfm/share/service/SpeakerFlowSegmentRequestBuilder.java
index ce72aca06..c204a1a02 100644
--- a/src-java/ba... | ['src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/reroute/actions/InstallNonIngressRulesAction.java', 'src-java/base-topology/base-storm-topology/src/main/java/org/openkilda/wfm/share/service/SpeakerFlowSegmentRequestBuilder.java', 'src-java/flowhs-topology/flowhs-stor... | {'.java': 3} | 3 | 3 | 0 | 0 | 3 | 8,513,309 | 1,775,669 | 222,746 | 2,400 | 1,910 | 364 | 27 | 3 | 734 | 84 | 208 | 23 | 0 | 1 | 1970-01-01T00:27:02 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,037 | telstra/open-kilda/5090/2660 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/2660 | https://github.com/telstra/open-kilda/pull/5090 | https://github.com/telstra/open-kilda/pull/5090 | 1 | closes | GET Switch Rules is not showing proper rule information in the 'instructiion -> none' field | **Step to reproduce:**
1. get switch rules via NB `GET /v1/switches/{switch-id}/rules`
2. get switch rules via FL http://127.0.0.1:8081/wm/core/switch/00:00:00:00:00:00:00:02/flow/json
3. compare rules from item 1 against item 2;
**Actual result**
FL:
```
instructions: {
none: "drop"
}
```
NB:
```
"ins... | 2157f1f5c41464c63cbb705cf51fcf0b50e06bae | 7ea8356e924970459cc4d8f8c3dd703c3f981441 | https://github.com/telstra/open-kilda/compare/2157f1f5c41464c63cbb705cf51fcf0b50e06bae...7ea8356e924970459cc4d8f8c3dd703c3f981441 | diff --git a/src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/converter/OfFlowStatsMapper.java b/src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/converter/OfFlowStatsMapper.java
index ea6160a10..ab3caf116 100644
--- a/src-java/floodlight-service... | ['src-java/floodlight-service/floodlight-modules/src/main/java/org/openkilda/floodlight/converter/OfFlowStatsMapper.java', 'src-java/floodlight-service/floodlight-modules/src/test/java/org/openkilda/floodlight/converter/OfFlowStatsMapperTest.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 11,639,604 | 2,431,756 | 298,185 | 3,169 | 1,599 | 289 | 25 | 1 | 519 | 60 | 157 | 25 | 1 | 2 | 1970-01-01T00:27:56 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,046 | telstra/open-kilda/4981/4972 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4972 | https://github.com/telstra/open-kilda/pull/4981 | https://github.com/telstra/open-kilda/pull/4981 | 1 | closes | Can't update one switch Y flow | **Steps to reproduce:**
1. create one switch Y flow
```
{
"y_flow_id": "flow1",
"shared_endpoint": {
"port_number": 10,
"switch_id": "2"
},
"maximum_bandwidth": 10000,
"ignore_bandwidth": true,
"sub_flows": [
{
"flow_id": "sub1",
"endpoint": {
"inner_vlan_id": ... | 053438afae1b25a9fccf3492dcac22fcaa3bf4bf | 54427bd470c1ff37ce1c756840b6edff6e22bab5 | https://github.com/telstra/open-kilda/compare/053438afae1b25a9fccf3492dcac22fcaa3bf4bf...54427bd470c1ff37ce1c756840b6edff6e22bab5 | diff --git a/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/yflow/update/actions/ValidateYFlowAction.java b/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/yflow/update/actions/ValidateYFlowAction.java
index 9e2eb265f... | ['src-java/kilda-model/src/main/java/org/openkilda/model/YSubFlow.java', 'src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/yflow/update/actions/ValidateYFlowAction.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 11,321,323 | 2,363,586 | 289,817 | 3,081 | 1,513 | 332 | 27 | 2 | 979 | 100 | 284 | 53 | 0 | 2 | 1970-01-01T00:27:47 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,045 | telstra/open-kilda/4989/4988 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/4988 | https://github.com/telstra/open-kilda/pull/4989 | https://github.com/telstra/open-kilda/pull/4989 | 1 | closes | Can't update Y flow if one sub flow is one switch and other one is multi switch | **Steps to repoduse:**
1. Create Y flow where A-end == Z-end and B-end != Z-end
Example:
```
{
"y_flow_id": "flow1",
"shared_endpoint": {
"port_number": 10,
"switch_id": "2"
},
"maximum_bandwidth": 10000,
"ignore_bandwidth": true,
"sub_flows": [
{
"flow_id": "sub1",
"... | 142a4b059ba4345cd2063bc344b70eb76c406e9d | eab97bb7ddb95a564c570a2c37cd43269a536772 | https://github.com/telstra/open-kilda/compare/142a4b059ba4345cd2063bc344b70eb76c406e9d...eab97bb7ddb95a564c570a2c37cd43269a536772 | diff --git a/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/yflow/update/actions/ValidateYFlowAction.java b/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/yflow/update/actions/ValidateYFlowAction.java
index 71ae77073... | ['src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/yflow/update/actions/ValidateYFlowAction.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 11,323,831 | 2,364,156 | 289,861 | 3,081 | 666 | 155 | 14 | 1 | 979 | 101 | 292 | 56 | 0 | 2 | 1970-01-01T00:27:47 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,026 | telstra/open-kilda/5336/5320 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/5320 | https://github.com/telstra/open-kilda/pull/5336 | https://github.com/telstra/open-kilda/pull/5336 | 1 | closes | duplicated update event for in ha-flow history | steps to reproduce
1. create ha flow
2. update ha flow
3. get ha flow history
Actual result: ha flow history contains 2 update entries with the same data
Expected result: 1 update event in history
| 686d31220f1033595d7f1d4374544af5ba9c42fe | 7700161ca3ab72f35a32eb9b9e3f8bb0cb4330a0 | https://github.com/telstra/open-kilda/compare/686d31220f1033595d7f1d4374544af5ba9c42fe...7700161ca3ab72f35a32eb9b9e3f8bb0cb4330a0 | diff --git a/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/haflow/update/actions/UpdateHaFlowAction.java b/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/haflow/update/actions/UpdateHaFlowAction.java
index a34cf6a9f... | ['src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/haflow/update/actions/UpdateHaFlowAction.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 12,921,722 | 2,706,146 | 326,493 | 3,388 | 582 | 123 | 11 | 1 | 209 | 36 | 49 | 9 | 0 | 0 | 1970-01-01T00:28:12 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,028 | telstra/open-kilda/5290/5289 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/5289 | https://github.com/telstra/open-kilda/pull/5290 | https://github.com/telstra/open-kilda/pull/5290 | 1 | closes | Flow reroute has a wrong message in the flow history | When rerouting a simple flow there is a message in the flow history: HA-flow was validated successfully.
Steps to reproduce:
1. Create a flow with any parameters
2. Execute a reroute for this flow: `/flows/{id}/reroute`
3. Navigate to this flow's history: `/flows/{id}/history`, find the history event "flow rerou... | e3ee4889c8f783333291a11eec82137eaa0c062d | d8777f3db86d3fd22f365dacf6096f523efa5185 | https://github.com/telstra/open-kilda/compare/e3ee4889c8f783333291a11eec82137eaa0c062d...d8777f3db86d3fd22f365dacf6096f523efa5185 | diff --git a/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/reroute/actions/ValidateFlowAction.java b/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/reroute/actions/ValidateFlowAction.java
index e8ac62995..037ec78f7 ... | ['src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/reroute/actions/ValidateFlowAction.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 12,701,537 | 2,659,823 | 321,151 | 3,335 | 167 | 29 | 2 | 1 | 453 | 62 | 103 | 9 | 0 | 0 | 1970-01-01T00:28:09 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,030 | telstra/open-kilda/5262/5249 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/5249 | https://github.com/telstra/open-kilda/pull/5262 | https://github.com/telstra/open-kilda/pull/5262 | 1 | closes | HaFlow Create or Update: updateFlowMonitoring throws IllegalArgumentException | Steps to reproduce using the standard test topology:
- create an HA flow with a valid request parameters. For example, use the request below.
Expected result: HA flow is created, no errors in the log
Actual result: there is an error in the logs, however the flow was created successfully.
The same behavior happe... | 93b300f91c1b7fe07e3d648df6c4e850a4af4507 | 2c7aa73981cc5dbfbbde47ae96a30ddc3682b28c | https://github.com/telstra/open-kilda/compare/93b300f91c1b7fe07e3d648df6c4e850a4af4507...2c7aa73981cc5dbfbbde47ae96a30ddc3682b28c | diff --git a/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/haflow/update/actions/OnFinishedAction.java b/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/haflow/update/actions/OnFinishedAction.java
index 148ceaf61..b0... | ['src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/haflow/update/actions/OnFinishedAction.java', 'src-java/kilda-model/src/main/java/org/openkilda/model/HaSubFlow.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 12,735,549 | 2,667,235 | 322,324 | 3,364 | 1,015 | 206 | 20 | 2 | 2,847 | 243 | 814 | 93 | 0 | 3 | 1970-01-01T00:28:08 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,034 | telstra/open-kilda/5185/5175 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/5175 | https://github.com/telstra/open-kilda/pull/5185 | https://github.com/telstra/open-kilda/pull/5185 | 1 | closes | Y-flow get paths response has incorrect diverse flows after update | **Steps to reproduce:**
1. Create a Y flow via `POST /v2/y-flows`
```
{
"y_flow_id": "flow_1",
"shared_endpoint": {
"port_number": 10,
"switch_id": "9"
},
"maximum_bandwidth": 10000,
"ignore_bandwidth": true,
"sub_flows": [
{
"flow_id": "sub_1",
"endpoint": {
... | 26e8a99768a7f01580751ca333642ceacfcb3062 | bf7bcc3737b95b4c2d26a1ea1abecc42878ae3f3 | https://github.com/telstra/open-kilda/compare/26e8a99768a7f01580751ca333642ceacfcb3062...bf7bcc3737b95b4c2d26a1ea1abecc42878ae3f3 | diff --git a/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/yflow/update/actions/OnSubFlowUpdatedAction.java b/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/yflow/update/actions/OnSubFlowUpdatedAction.java
index 754... | ['src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/yflow/update/actions/OnSubFlowUpdatedAction.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 12,129,336 | 2,535,048 | 309,185 | 3,253 | 85 | 15 | 1 | 1 | 4,601 | 392 | 1,290 | 269 | 0 | 7 | 1970-01-01T00:28:03 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,035 | telstra/open-kilda/5166/5165 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/5165 | https://github.com/telstra/open-kilda/pull/5166 | https://github.com/telstra/open-kilda/pull/5166 | 1 | closes | HA-flow protected path is equal to main path | **Steps to reproduce:**
1. Create ha flow with protected path via `POST /v2/ha-flows` with enabled protected path
2. check that main ha-flow path and protected path does not intersect
You can do it by `GET /v2/ha-flows/{ha_flow_id}/paths` when issue https://github.com/telstra/open-kilda/issues/5148 will be ready or... | a345c686bd0f88526c2b9c1a4a9bb7c29c7808d3 | 3d0ca4808dcac4cc670f5bfbf5b5df4b87912523 | https://github.com/telstra/open-kilda/compare/a345c686bd0f88526c2b9c1a4a9bb7c29c7808d3...3d0ca4808dcac4cc670f5bfbf5b5df4b87912523 | diff --git a/src-java/base-topology/base-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/service/FlowPathBuilder.java b/src-java/base-topology/base-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/service/FlowPathBuilder.java
index 85b95d3f2..3fd3d4eec 100644
--- a/src-java/base-topology/ba... | ['src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/haflow/create/actions/ResourcesAllocationAction.java', 'src-java/kilda-persistence-tinkerpop/src/main/java/org/openkilda/persistence/ferma/repositories/FermaFlowPathRepository.java', 'src-java/kilda-persistence-orientdb... | {'.java': 5} | 5 | 5 | 0 | 0 | 5 | 12,101,173 | 2,529,364 | 308,526 | 3,247 | 4,983 | 1,014 | 93 | 4 | 481 | 67 | 120 | 10 | 1 | 0 | 1970-01-01T00:28:01 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,036 | telstra/open-kilda/5091/5084 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/5084 | https://github.com/telstra/open-kilda/pull/5091 | https://github.com/telstra/open-kilda/pull/5091 | 1 | closes | Flow updated after failed PATCH request | **Steps to reproduce:**
1. Create one switch flow with 0 vlan (or vlans)
```
{
"flow_id": "flow1",
"source": {
"inner_vlan_id": 0,
"port_number": 10,
"switch_id": "2",
"vlan_id": 0
},
"destination": {
"inner_vlan_id": 0,
"port_number": 11,
"switch_id": "2",
"vlan_i... | 2157f1f5c41464c63cbb705cf51fcf0b50e06bae | 085616a2db7dad9f4492636b499d623c6f907d61 | https://github.com/telstra/open-kilda/compare/2157f1f5c41464c63cbb705cf51fcf0b50e06bae...085616a2db7dad9f4492636b499d623c6f907d61 | diff --git a/src-java/nbworker-topology/nbworker-storm-topology/src/main/java/org/openkilda/wfm/topology/nbworker/services/FlowOperationsService.java b/src-java/nbworker-topology/nbworker-storm-topology/src/main/java/org/openkilda/wfm/topology/nbworker/services/FlowOperationsService.java
index 3ec36f4bd..ecb92f2a2 1006... | ['src-java/nbworker-topology/nbworker-storm-topology/src/main/java/org/openkilda/wfm/topology/nbworker/services/FlowOperationsService.java', 'src-java/nbworker-topology/nbworker-storm-topology/src/test/java/org/openkilda/wfm/topology/nbworker/services/FlowOperationsServiceTest.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 11,639,604 | 2,431,756 | 298,185 | 3,169 | 950 | 196 | 20 | 1 | 759 | 97 | 236 | 41 | 0 | 2 | 1970-01-01T00:27:56 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,067 | telstra/open-kilda/3987/3960 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/3960 | https://github.com/telstra/open-kilda/pull/3987 | https://github.com/telstra/open-kilda/pull/3987 | 1 | close | Flow loops: Installing the exact same loop twice leads to deletion of flow loop rules | 1. Create a flow
2. Create a flow loop on src
3. Repeat the same request from previous step
**Expected:** Flow loop rules are just re-installed
**Actual:** Flow loop rules are removed. Switch validation shows missing rules
test: `"Attempt to create the exact same flowLoop twice just re-installs the rules"` | 814b3510fa9701ae75c90ed64b4f2aaa29319adf | 24a912c37f6c16dfb0599466b189a936994a0044 | https://github.com/telstra/open-kilda/compare/814b3510fa9701ae75c90ed64b4f2aaa29319adf...24a912c37f6c16dfb0599466b189a936994a0044 | diff --git a/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/update/actions/UpdateFlowAction.java b/src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/update/actions/UpdateFlowAction.java
index 922cc4d67..8b820d7b1 100644... | ['src-java/flowhs-topology/flowhs-storm-topology/src/main/java/org/openkilda/wfm/topology/flowhs/fsm/update/actions/UpdateFlowAction.java'] | {'.java': 1} | 1 | 1 | 0 | 0 | 1 | 8,285,496 | 1,728,579 | 217,386 | 2,357 | 281 | 71 | 4 | 1 | 314 | 50 | 71 | 7 | 0 | 0 | 1970-01-01T00:26:50 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,038 | telstra/open-kilda/5079/5075 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/5075 | https://github.com/telstra/open-kilda/pull/5079 | https://github.com/telstra/open-kilda/pull/5079 | 1 | closes | flow_id in the request line is ignored while flow update | Steps
case 1
1) create flow (e.g. with flow_id = flow1) - POST [/v2/flows]
2) make **wrong** put request to update it - - PUT [/v2/flows/flow_not_match]
where body of the request contains flow_id = flow1
note: system shouldn't contain any flow with "flow_not_match" id
actual result: flow is updated successfull... | 49dc7cf975b3d44595e49c9329d72df4c435f87b | 97c4998939f7c99be379a7efc5586cb107a3f0bf | https://github.com/telstra/open-kilda/compare/49dc7cf975b3d44595e49c9329d72df4c435f87b...97c4998939f7c99be379a7efc5586cb107a3f0bf | diff --git a/src-java/northbound-service/northbound/src/main/java/org/openkilda/northbound/controller/v1/FlowController.java b/src-java/northbound-service/northbound/src/main/java/org/openkilda/northbound/controller/v1/FlowController.java
index 003911b8f..ad05eef1d 100644
--- a/src-java/northbound-service/northbound/sr... | ['src-java/northbound-service/northbound/src/test/java/org/openkilda/northbound/controller/v2/FlowControllerTest.java', 'src-java/northbound-service/northbound/src/test/java/org/openkilda/northbound/controller/v1/SwitchControllerTest.java', 'src-java/northbound-service/northbound/src/main/java/org/openkilda/northbound/... | {'.java': 9} | 9 | 9 | 0 | 0 | 9 | 11,509,471 | 2,403,454 | 294,496 | 3,136 | 1,865 | 382 | 26 | 4 | 1,055 | 169 | 271 | 24 | 0 | 0 | 1970-01-01T00:27:55 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
2,040 | telstra/open-kilda/5064/5063 | telstra | open-kilda | https://github.com/telstra/open-kilda/issues/5063 | https://github.com/telstra/open-kilda/pull/5064 | https://github.com/telstra/open-kilda/pull/5064 | 1 | closes | Can't patch flow with empty vlan stats and non zeros src/dst vlans | **Steps to reproduce:**
1. Create a flow with non empty Vlans stats and with 0 src and dst vlans via v2 API `POST /v2/flows`
```json
{
"flow_id": "flow1",
"source": {
"inner_vlan_id": 0,
"port_number": 10,
"switch_id": "00:00:00:00:00:00:00:01",
"vlan_id": 0
},
"destination": {
"... | a6cf9493858a2fc0ee18e43954a2bc4b278327af | 2818012ce1ae52b9ea7542f22bdbc60fd61d1378 | https://github.com/telstra/open-kilda/compare/a6cf9493858a2fc0ee18e43954a2bc4b278327af...2818012ce1ae52b9ea7542f22bdbc60fd61d1378 | diff --git a/src-java/nbworker-topology/nbworker-storm-topology/src/main/java/org/openkilda/wfm/topology/nbworker/services/FlowOperationsService.java b/src-java/nbworker-topology/nbworker-storm-topology/src/main/java/org/openkilda/wfm/topology/nbworker/services/FlowOperationsService.java
index baed2cba6..c1cd1ed1c 1006... | ['src-java/nbworker-topology/nbworker-storm-topology/src/main/java/org/openkilda/wfm/topology/nbworker/services/FlowOperationsService.java', 'src-java/nbworker-topology/nbworker-storm-topology/src/test/java/org/openkilda/wfm/topology/nbworker/services/FlowOperationsServiceTest.java'] | {'.java': 2} | 2 | 2 | 0 | 0 | 2 | 11,743,552 | 2,453,977 | 300,577 | 3,193 | 556 | 126 | 10 | 1 | 911 | 113 | 302 | 45 | 0 | 2 | 1970-01-01T00:27:55 | 71 | Java | {'Java': 16533357, 'Groovy': 2440542, 'TypeScript': 876184, 'Python': 375764, 'JavaScript': 369015, 'HTML': 366643, 'CSS': 234005, 'C++': 89798, 'Shell': 61998, 'Dockerfile': 30647, 'Makefile': 20530, 'Gherkin': 5609, 'CMake': 4314, 'Jinja': 1187} | Apache License 2.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.